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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
9764620e3f57eddda3776a9483247d9ce62bab8a | 8ab24571e71dfef8ed0bae1748fa2a30cb6eb042 | /BOJ_test/1929_printPrimeNumber/1929_printPrimeNumber.cpp | 82124b81a94b783213e3759c783c775ff9901a8a | [] | no_license | ki815kaisian/BOJ_test | 816d52242195c6bbeb980d5695fcd4d5db045855 | edb1120703313f2a105c4d62ef16be4ea1a06b89 | refs/heads/master | 2021-05-01T20:32:24.578103 | 2019-10-02T08:11:18 | 2019-10-02T08:11:18 | 79,368,508 | 0 | 0 | null | 2017-01-26T08:41:49 | 2017-01-18T18:07:31 | C++ | UTF-8 | C++ | false | false | 419 | cpp | #include <stdio.h>
using namespace std;
int number[1000001] = { 0 };
int main(void)
{
int under = 0;
int upper = 0;
scanf("%d %d", &under, &upper);
number[0] = number[1] = 1;
for (int i = 2; i*i <= upper; i++) {
if (number[i] == 0) {
for (int j = i + i; j <= upper; j += i) {
number[j] = 1;
}
}
... | [
"ki815kaisian@gmail.com"
] | ki815kaisian@gmail.com |
60203109a568b7d6a82a757cf20f811ed6dfd01e | aca493ca1e4a86bb42e557b2015683680ea26f4a | /paint.h | 871c3ab12fd4cd97379d0aedd380bd84192de36e | [] | no_license | BridgeHill/bmp | 9eaa61ffc55a25fffd08660d3a03ad7493a7ae3c | fd19db4f324f9470156a6f9d5e4491e4e0ba0a45 | refs/heads/master | 2021-01-15T08:51:53.972382 | 2016-01-03T16:28:33 | 2016-01-03T16:28:33 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,143 | h | #ifndef PAINT_H
#define PAINT_H
#include "color.h"
#include "bmp32.h"
#include "QR_Encode.h"
class paint:public bmp32
{
public:
int setBcolor(union color_u Bcolor1);
int setBcolor(unsigned long ulg);
int setFcolor(union color_u Fcolor1);
int setFcolor(unsigned long ulg);
void setBrush(short r1);
void setErase(sh... | [
"huangjun.chn@outlook.com"
] | huangjun.chn@outlook.com |
3a043735788838a700c9a2afc3d0f53fca54dfd2 | 0eff74b05b60098333ad66cf801bdd93becc9ea4 | /second/download/git/gumtree/git_new_log_50.cpp | a31de8c23ad0baa482047a6c133df209e260e642 | [] | no_license | niuxu18/logTracker-old | 97543445ea7e414ed40bdc681239365d33418975 | f2b060f13a0295387fe02187543db124916eb446 | refs/heads/master | 2021-09-13T21:39:37.686481 | 2017-12-11T03:36:34 | 2017-12-11T03:36:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 101 | cpp | usage_msg_opt("-f only makes sense when writing a replacement",
git_replace_usage, options); | [
"993273596@qq.com"
] | 993273596@qq.com |
85969229be724aaab35ebe7150b5d8b7847a94e8 | 187c2f0d83eac13d3fdba74600e5154b89258428 | /generic/libc/stdio/vsnprintf.cpp | 9464f87d34bbae33b1ab59ecd86f8ce4b7ec562c | [] | no_license | ZeusJupiter/PowerPC-Demo-OS | 5bcbc33be267600cacd3da6dde5367d6e6807725 | 23f0f10ba21f9f76dd4fb51402c3b237b5a1be2c | refs/heads/master | 2020-04-02T01:40:56.799983 | 2018-10-30T05:49:10 | 2018-10-30T05:49:10 | 153,867,626 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 362 | cpp | /*
* File name: vsnprintf.cpp
*
* Created on: 2017年6月25日, 下午11:25:50
* Author: victor
* Toolchain:
* Language: C/C++
* description:
*/
#include <macros.h>
#include <types.h>
#include <stdio.h>
#include <stdarg.h>
BEG_EXT_C
int vsnprintf(char *str,size_t n,const char *fmt,va_list ap)
{
int res ... | [
"dangyuedong@baidu.com"
] | dangyuedong@baidu.com |
ab13c46a6771d239b37cfc51a8a5b64dde4bfd5e | eaba86a6412fb7c98781164c9754018a379a8214 | /config.cpp | 4feacc085e2881bfc6f8d9bc43b8e878001e6606 | [] | no_license | Shredorama/honestdayswork | ac18f9986ae8b3905386824582af4ea907df0cc6 | ac70a66330c5efdef3c2b4c97a8930dace1559ba | refs/heads/master | 2020-12-27T07:23:30.509614 | 2020-02-14T03:47:53 | 2020-02-14T03:47:53 | 237,812,980 | 0 | 0 | null | 2020-02-02T18:03:33 | 2020-02-02T18:03:33 | null | UTF-8 | C++ | false | false | 321,983 | cpp | enum
{
destructengine = 2,
destructdefault = 6,
destructwreck = 7,
destructtree = 3,
destructtent = 4,
destructno = 0,
destructman = 5,
destructbuilding = 1
};
class CfgMods
{
class ShredAnimals
{
dir="ShredAnimals";
picture="";
action="";
hideName=1;
hidePicture=1;
name="ShredAnimals";
credits=... | [
"60577277+Shredorama@users.noreply.github.com"
] | 60577277+Shredorama@users.noreply.github.com |
160b6ab9f19fdc60582532019e5e49e1f39d369e | 2933025b55b34ccf0242de29c41c71a119bfb819 | /2. Coding_Problems/Type1/sum of series 2.cpp | e9bfe49cdf30456489e88a44ea8c8de435a82315 | [] | no_license | rohitshakya/CodeBucket | 460050cf3cb5ae29eac0b92fb15ddc7a5a9d9d80 | 5c3632d5860873c74cce850eb33bd89fdd77ce0a | refs/heads/master | 2022-01-25T09:55:58.151327 | 2022-01-11T06:55:05 | 2022-01-11T06:55:05 | 253,870,196 | 2 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 328 | cpp | //print sum of first n terms of series:1-2+3-4+5......
#include<iostream>
using namespace std;
int main()
{
int sum=0,n;
cout<<"Enter number of terms"<<endl;
cin>>n;
for(int i=1;i<=n;i++)
{
int temp=i;
if(i%2==0)
{
temp=-i;
}
sum=sum+temp;
}
cout<<"sum of series upto first "<<n<<" terms is:"<<s... | [
"rohit.rkshakya@gmail.com"
] | rohit.rkshakya@gmail.com |
509c9c69ad22a2ac9a29cb544b319c5fd40ea1fb | 1d1f67e1a3f98871a1b9ba100704083e426fade9 | /Leet2019/PreimageSizeofFactorialZeroesFunction.cpp | 058bd50e335f890d75b46a2d0fc5299883011ca0 | [] | no_license | flameshimmer/leet2019.io | fae46200ed78fb0478db726b8c31e976e7d57001 | 47808dc97609f5a96c97a6fc703b98c75ad9a2b3 | refs/heads/master | 2022-07-22T10:51:10.651558 | 2022-07-07T18:05:48 | 2022-07-07T18:05:48 | 202,389,705 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 178 | cpp | #include "stdafx.h"
//
namespace Solution2019
{
namespace PreimageSizeofFactorialZeroesFunction
{
void Main() {
string test = "tst test test";
print(test);
}
}
}
| [
"Ning@ningmadev99.redmond.corp.microsoft.com"
] | Ning@ningmadev99.redmond.corp.microsoft.com |
7c131cffe50d055c51f8308503cff6bb5a455a1f | dce7fae275df536abacc8328e598a28ac927b8bd | /my_cpp_oop/Shapes.h | a9c7674c32ae5dee63c6539304a6f697782262f1 | [] | no_license | ILevchugov/oop_task | b10eaba0b3ac936a735a101cf9dc98a33ddf0b78 | 12fce1eea1ac555e8f61cd30d33e4a801611ecb0 | refs/heads/master | 2022-05-24T08:24:55.981423 | 2020-04-27T09:21:38 | 2020-04-27T09:21:38 | 258,524,083 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,268 | h | #pragma once
#define _USE_MATH_DEFINES
#include "Container.h"
#include <iostream>
#include <math.h>
#include "Base.h"
#include "Container.h"
#include <sstream>
static double const eps = 0.001;
class Shape : public Printable {
public:
Shape() {
++sm_count;
}
Shape(Shape const& shape) {
++sm_count;
}
virtua... | [
"van5364@ya.ru"
] | van5364@ya.ru |
aef3212101f3e39c7a4a93fad384eb5bcbe1f7bb | e06d1362e0146c472912585c097e04680f7b1a50 | /gameobject.h | ce7d0eef931fb4e18df78c2122ea02889305e124 | [] | no_license | duncansykes/RaylibArcadeGame | 1e47c4f45835241c67fb24e7fa3d6fbbc2f32cb1 | 900f165ddfed58d46be98164259a77dbc5d3e5f4 | refs/heads/main | 2023-02-27T13:59:16.708735 | 2021-02-02T05:53:07 | 2021-02-02T05:53:07 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,686 | h | //
// Created by s200490 on 25/01/2021.
//
#include <string>
#include "raylib.h"
#include "raymath.h"
#ifndef DEFAULT_GAMEOBJECT_H
#define DEFAULT_GAMEOBJECT_H
class gameobject {
public:
gameobject();
virtual ~gameobject();
void Update(float deltaTime);
void Draw();
void SetVelocity(Vector2 v... | [
"sykesduncan32@gmail.com"
] | sykesduncan32@gmail.com |
103074ab4ee9665ebcb5e472a0cd5db5833600b6 | d0764568a235e0fcc45324d2ad92c722d269171e | /catkin_ws/src/neural_networks/darknet_ros/darknet_ros/src/yolo_object_detector_node.cpp | 6758896f1f019eb6f874a6c9a4244f9ea3579fde | [] | no_license | edgarVazquez43/TAKESHI | ec2bd833d5cc31fcc5c3f527b7974b06d882f42d | 187dc0c1f934ea58d78ae03bd7c522550f5e4801 | refs/heads/master | 2022-08-20T16:19:11.322250 | 2020-05-12T19:09:31 | 2020-05-12T19:09:31 | 120,661,771 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 427 | cpp | /*
* yolo_obstacle_detector_node.cpp
*
* Created on: Dec 19, 2016
* Author: Marko Bjelonic
* Institute: ETH Zurich, Robotic Systems Lab
*/
#include <darknet_ros/YoloObjectDetector.hpp>
#include <ros/ros.h>
int main(int argc, char** argv)
{
ros::init(argc, argv, "darknet_ros");
ros::NodeHandle nodeHa... | [
"edgarvazquez1403@gmail.com"
] | edgarvazquez1403@gmail.com |
cc56ca0de51008a01cea450d3c60c46d3c766f59 | 2c101134f5c113ef98fa5ab846965ce6ee27ad0f | /maxHeight.cpp | e4bcbb20b205caa0b3fb25574b5fe8dee3eb9633 | [] | no_license | Gabriel0402/Leetcode_practice | 6a4282d4ce02c5611e39d3f956bb34e2b19efeb1 | f92b10b824ce04db4b689484011bbf3d506d532f | refs/heads/master | 2020-07-05T06:27:31.797868 | 2014-02-10T14:55:32 | 2014-02-10T14:55:32 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 859 | cpp | #include <iostream>
using namespace std;
/**
* Definition for binary tree
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode(int x) : val(x), left(NULL), right(NULL) {}
* };
*/
class Solution {
public:
int maxHeight(TreeNode *root)
{
if(root==NULL) r... | [
"zhuch@seas.upenn.edu"
] | zhuch@seas.upenn.edu |
f0e8055ae30fc7d5eddc7d88acc218932e7c0601 | b15e0aa36c90d33a8e76448a82915acfb1e16f50 | /448/lab8/Retailer.h | 5c40dc622493cabe799bdba990d7c912fcaf03d8 | [] | no_license | lcoblamm/EECS | 8f422c40d5b7ce5c8d3081fc7b3e2a6879e3675e | a04f4a05715b567e8aaf606b6484e33d3728caee | refs/heads/master | 2021-05-03T09:11:05.794206 | 2016-04-10T23:37:39 | 2016-04-10T23:37:39 | 30,848,029 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 918 | h | #ifndef RETAILER_H
#define RETAILER_H
#include <list>
#include <string>
#include "Good.h"
#include "Supplier.h"
class Retailer
{
public:
Retailer();
Retailer(std::string retailerName, std::string phone, std::string email, Supplier& supplier);
~Retailer();
void addGood(Good item);
bool acceptPayment(doubl... | [
"lynne.lammers@gmail.com"
] | lynne.lammers@gmail.com |
48c69a884ecacab920c330275628192d971a894c | 9da42e04bdaebdf0193a78749a80c4e7bf76a6cc | /third_party/gecko-15/win32/include/nsIDOMCSS2Properties.h | 8ed3bea494b185c1f55ce26f2394b2b89f71fb1b | [
"Apache-2.0"
] | permissive | bwp/SeleniumWebDriver | 9d49e6069881845e9c23fb5211a7e1b8959e2dcf | 58221fbe59fcbbde9d9a033a95d45d576b422747 | refs/heads/master | 2021-01-22T21:32:50.541163 | 2012-11-09T16:19:48 | 2012-11-09T16:19:48 | 6,602,097 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 293,594 | h | /*
* DO NOT EDIT. THIS FILE IS GENERATED FROM e:/builds/moz2_slave/rel-m-rel-xr-w32-bld/build/dom/interfaces/css/nsIDOMCSS2Properties.idl
*/
#ifndef __gen_nsIDOMCSS2Properties_h__
#define __gen_nsIDOMCSS2Properties_h__
#ifndef __gen_domstubs_h__
#include "domstubs.h"
#endif
/* For IDL files that don't want to in... | [
"haleokekahuna@gmail.com"
] | haleokekahuna@gmail.com |
f99d2aeddc3db4c8f9abb5c1e5105b913660dacc | 1a9ef412a09894302ca7df1fedd5d71e7da2f25f | /DP Problems/Kadane.cpp | d755ebdafb5c18155a329b8fbd7195b203497756 | [] | no_license | barnwal-anand/Interview_Preparation | ca87f2fb0cac19f9e6eefe1f8c4ed1e9724e41db | 4fd155ced74910e637b9d6453b2820b53cab7505 | refs/heads/master | 2023-07-19T07:33:34.927883 | 2023-07-07T22:22:47 | 2023-07-07T22:22:47 | 214,193,849 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,042 | cpp | // Largest Sum Contiguous Subarray
#include <iostream>
#include <climits>
using namespace std;
class Kadane {
private:
int *arr;
int size;
public:
Kadane(int size);
void getLargestSum(int &res, int &start, int &end);
};
Kadane::Kadane(int size) {
this->size = size;
arr = new int[... | [
"anandtalks2u@gmail.com"
] | anandtalks2u@gmail.com |
892218156352f5b7775a711e756835433bf5604b | e8166fb5d946a9d9212107ea7ef576426d56924d | /src/CSchemaProvider.h | 23b6a835c17b4b42506719cb786f230171c72cb6 | [
"MIT"
] | permissive | tans2MA/jsontool | 3d8726ccf027c8311199365e2b72f614d23b1525 | 7b1211dfda08166e473c236cc486f145d984f0b2 | refs/heads/master | 2022-12-22T11:13:24.781089 | 2020-10-04T14:33:31 | 2020-10-04T14:33:31 | 301,051,214 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 753 | h | #ifndef CSCHEMAPROVIDER_H__
#define CSCHEMAPROVIDER_H__
#include <string>
#include <vector>
#include <map>
#include "JsonConfig.h"
#include "rapidjson/schema.h"
class CSchemaProvider : public rapidjson::IRemoteSchemaDocumentProvider
{
public:
virtual const rapidjson::SchemaDocument* GetRemoteDocument(const char* ur... | [
"Shuilong.Tan@moodys.com"
] | Shuilong.Tan@moodys.com |
8138d6bdbca48cd4a59ad6c2a830410ea25818c2 | 24240f765d461af8ce704ed34667ddc53e995b07 | /2_LEETCODE/Easy/basics/deleteNodeLinkedList.cpp | 6e301ee11a283fb335f07fae8cbf18cfde0e91c2 | [] | no_license | Kun4lpal/CodePractice | af0c884e4c8c0036fe5cb525d4e438c6f1435d00 | 5ea616fb9088b74a462b8dbdb56a7d64255f8903 | refs/heads/master | 2020-03-30T11:45:47.545226 | 2018-10-02T11:59:56 | 2018-10-02T11:59:56 | 151,191,389 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 64 | cpp | void deleteNode(ListNode* node) {
*node = *node->next;
} | [
"kupaliwa@syr.edu"
] | kupaliwa@syr.edu |
31f27ec1a85529610c387cf09128b343cfe285de | af9c1566c7f8b7e30ee957ef40de647c1d86d17a | /tek2/cpp/cpp_bomberman/include/Menu.hh | c549a6daba737d6d797b51f747eabb70174e1448 | [] | no_license | Vasrek77/epitech-projects | 471b7503e189000ad1ab491915c950af4b661c01 | 6db30340f7accd04d037ba1ea2bc3e3ecd736251 | refs/heads/master | 2021-01-17T22:41:05.342477 | 2015-08-12T19:10:24 | 2015-08-12T19:10:24 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 605 | hh | #ifndef MENU_HH_
# define MENU_HH_
# include <iostream>
# include <list>
# include <Clock.hh>
# include <Input.hh>
# include "AItem.hh"
# include "MenuItem.hh"
# include "Bomb.hh"
# include "Cursor.hh"
class Menu
{
private:
std::list<ADrawableObject *> _items;
public:
Menu();
~Menu();
void addI... | [
"pierrick.gicquelais@epitech.eu"
] | pierrick.gicquelais@epitech.eu |
2fce973db3eeb0df9799e8c597a90e8b217e8422 | 5b8aaf1a97853defedaa7593891c4191612ff09b | /DayThree/DayThreePartTwo.cpp | 67fe22495c4436b5fa7d16756d7586e62ee68b10 | [] | no_license | star8kid/AdventOfCode2020 | 0ef98b7bd3be6200c13cf138895f12ce50ed1611 | 1d0b2ec2646bd422b0ea7e3bcd29451114462f58 | refs/heads/main | 2023-02-06T04:30:29.804196 | 2021-01-03T20:08:14 | 2021-01-03T20:08:14 | 318,045,287 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,684 | cpp | #include<iostream>
#include<string>
#include<vector>
using namespace std;
//Time Lapse: 28 minutes and 37 seconds
// (Yeah, I didn't know there were other datatypes than `int`, don't make fun of me)
uint64_t treeSlopeInterceptCount(vector<string> inputMap, int riseSlope, int runSlope){
int treeCount = 0;
i... | [
"2022younganthonyn@aaps.k12.mi.us"
] | 2022younganthonyn@aaps.k12.mi.us |
5b4d92c9fb26c4955f974c1c265dcc8d6aec0747 | d82942a903492663abd49dfed711fe10b21c7225 | /Box2D_v2.2.1/Testbed/Tests/Tutorial/Ball2.h | bd5538ab125393555010b14d4eaa30644ae977d1 | [] | no_license | dnunez02/sfml-project | da9438a238c2996d59b0c801f4c7f85740fe86e0 | f2340f2823da644ff4e3e212f7a2784f327afceb | refs/heads/master | 2016-09-03T06:34:30.286905 | 2013-08-08T19:08:02 | 2013-08-08T19:08:02 | 11,318,144 | 1 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 1,680 | h | #ifndef __BALL2_H__
#define __BALL2_H__
class Ball2 {
#define DEGTORAD 0.0174532925f
#define RADTODEG 57.2957795f
public:
float m_radius, m_angle;
b2Vec2 m_position, m_linearVelocity;
public:
Ball2(b2World *world, float radius){
m_radius = radius;
b2BodyDef myBodyDef;
myBodyDef.type = b2_dyna... | [
"dan@cs.tufts.edu"
] | dan@cs.tufts.edu |
f301cdaeac1d7498d3d0c6f33fb96249b2936c92 | aff3ddbb03d28e005c9d7a0654bfe158ebad25c0 | /Vestigium.cpp | aced53f90ae75db3fe6c18c7148a1841bb139c1a | [] | no_license | pradeep-kumar-1705807/Mytest | 600a3b10a65c71a6957bc0ce6f884d4892847776 | 9eea333def183f651753bb4b33a05ba0a42d4c7a | refs/heads/master | 2021-05-18T13:15:21.230079 | 2020-05-06T09:22:44 | 2020-05-06T09:22:44 | 251,258,032 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,228 | cpp | #include<bits/stdc++.h>
using namespace std;
void solve(vector<vector<int>> & matrix, int t)
{
int n=matrix.size();
int k=0,r=0,c=0;
for(int i=0;i<n;i++)
{
k+=matrix[i][i];
}
for(int i=0;i<n;i++)
{
int hashRow[1001]={0};
int hashCol[1001]={0};
bool flagRow=fal... | [
"1705807@kiit.ac.in"
] | 1705807@kiit.ac.in |
140ff6081eaae39b21abd9185b3726e783e7274e | c70e3981d2dc8b1ff0bee54171d485c268ca1ab1 | /hw1/hw1.h | 5a60022edb3d3d953476f8ee439955fe965a8b7c | [] | no_license | fishmingyu/THUEEOS | ab725bf9888134da1ad28da37681271bd6dbec4b | b4b855f340b01453d0ac5a3441ccf00b6c5ce72b | refs/heads/main | 2023-06-25T11:01:16.072081 | 2021-06-14T12:15:33 | 2021-06-14T12:15:33 | 374,101,028 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,355 | h | #include <cstring>
#include <ctime>
#include <iostream>
#include <fstream>
#include <pthread.h>
#include <queue>
#include <semaphore.h>
#include <unistd.h>
#include <vector>
struct Customer
{
pthread_t tid;
int id;
int counter;
int enter; // enter time
int begin; // serve begin time
int wait; ... | [
"1661342068@qq.com"
] | 1661342068@qq.com |
55f115c8ed1769f5f285512c448539b1f5525760 | 269e5ea9b2a845cef8026b61789fa50a31b6dca9 | /src/test/test_join_node_msg_key_matching.cpp | 25ed3597d00b118e0628e40798215893f5b6adcd | [
"Apache-2.0"
] | permissive | Formlabs/tbb | 79fc3524bfe5215486beb5a0ae363d84c5ef74ee | 2098cac88056b2e5b2c081c9fc13746f6735c270 | refs/heads/formlabs | 2021-07-09T10:08:16.547300 | 2021-04-26T16:39:08 | 2021-04-27T12:19:16 | 61,002,993 | 0 | 3 | Apache-2.0 | 2020-09-28T15:49:48 | 2016-06-13T03:01:06 | C++ | UTF-8 | C++ | false | false | 4,023 | cpp | /*
Copyright (c) 2005-2019 Intel Corporation
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 la... | [
"wenzel.jakob@epfl.ch"
] | wenzel.jakob@epfl.ch |
23aa208f8eb0f072c616ddcb765d0b3238ebc737 | 39930ecb367eefdef836b264a980b9d966cfe071 | /programme_9/src/main.cpp | 6cbbcc6438a91763e4c5709e5d4474de62e9e20c | [] | no_license | florian-devin/TP_openGL | b1129f5d437e36afecb3e4e7cfab809309bfd72b | 6643e8005cd4f06b3862bce5c69a3dacded48efb | refs/heads/master | 2023-01-19T20:30:17.582650 | 2020-12-02T10:41:41 | 2020-12-02T10:41:41 | 317,813,861 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 12,921 | cpp | /*****************************************************************************\
* TP CPE, 4ETI, TP synthese d'images
* --------------
*
* Programme principal des appels OpenGL
\*****************************************************************************/
#include <iostream>
#include <cstdlib>
#include <cstdio>
#... | [
"florian@PC_FIX_FLO"
] | florian@PC_FIX_FLO |
7e203418a8cb895604cf8303d50346a0774a75d7 | f977b4a1c94b6dddd01f57f8297cb04cc87c5a10 | /src/core/layers/poolinglayer.h | 2ebc1d4db8aad6e6994abb6fbcaa2bd4c770f1e1 | [] | no_license | JanHalozan/ConvolutionalNeuralNetwork | f1582dfb30c24752a9a0e57183df9304bca9b6f2 | e59da46c49c2bdf4ea7d8bf3fef7c7643d1344b5 | refs/heads/master | 2020-04-16T23:34:01.382438 | 2017-04-19T11:09:20 | 2017-04-19T11:09:20 | 48,693,390 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 789 | h | //
// poolinglayer.h
// ConvolutionalNeuralNetwork
//
// Created by Jan Haložan on 29/12/15.
// Copyright © 2015 JanHalozan. All rights reserved.
//
#ifndef poolinglayer_h
#define poolinglayer_h
#include "layer.h"
namespace sf
{
class PoolingLayer;
}
class sf::PoolingLayer : public sf::Layer
{
private:
... | [
"j.halozan@gmail.com"
] | j.halozan@gmail.com |
05a25b18fac0547d40c439b6aae115f70d17d7d2 | 7dd824a1d9224903b685c6768102fbca1d907316 | /annual/CJ14/C.cpp | 75e8afc6805a3a941f3a2e28feb2ced1aee10412 | [] | no_license | 1ridescent/ACM | c2a50f3619f9480e2bf4a7f690a12eb1574eb6b0 | 41f7b63655edd257eeab223bbaaf78d50960e789 | refs/heads/master | 2020-12-24T17:26:32.650345 | 2015-12-02T01:03:51 | 2015-12-02T01:03:51 | 20,510,103 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,078 | cpp | #include <iostream>
#include <algorithm>
#include <cstring>
using namespace std;
struct point
{
int x, y;
};
struct bdg
{
point ll, ur;
};
int dist(bdg a, bdg b)
{
int dx = min(abs(a.ll.x - b.ur.x), abs(a.ur.x - b.ll.x)) - 1;
int dy = min(abs(a.ll.y - b.ur.y), abs(a.ur.y - b.ll.y)) - 1;
//cout << "dx=" << dx << ... | [
"jasonmli02@gmail.com"
] | jasonmli02@gmail.com |
02aab4c4589ee26d2283940f2a95e947b8e36a7f | 29b6b38972a64f3a8336a9530445c603564cd159 | /BattleTank/Source/BattleTank/Projectile.cpp | 3d55ff70936f03398374e00b5cb015c9924d856a | [] | no_license | djidane535/BattleTank | 2bb3a25a2a0d868978b286316076714bd37e282b | ac9d52568962d64010ea017a40124da4aef9a228 | refs/heads/master | 2020-03-13T01:22:22.273490 | 2018-05-13T20:05:31 | 2018-05-13T20:05:31 | 130,902,622 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 959 | cpp | // Fill out your copyright notice in the Description page of Project Settings.
#include "Projectile.h"
#include "Runtime/Engine/Classes/GameFramework/ProjectileMovementComponent.h"
#include "Runtime/Engine/Classes/Engine/World.h"
// Sets default values
AProjectile::AProjectile()
{
// Set this actor to call Tick() ... | [
"djidane535@gmail.com"
] | djidane535@gmail.com |
98c42b39afe13714349b7861415206e8dc3529ac | ea47e149922214f3b8f3cbb700b8e0898978b084 | /torch/csrc/jit/passes/quantization.cpp | ff23b510ec872d7767155417695139e9bef1b481 | [
"BSD-2-Clause",
"BSD-3-Clause",
"LicenseRef-scancode-generic-cla",
"Apache-2.0"
] | permissive | kikaitech/pytorch | 8030c074ac4dfa055b2108f7052bd0a5d947a9c0 | 860790de8805856342a1bee37103184f47a0c26d | refs/heads/master | 2021-05-18T02:44:31.407362 | 2020-03-29T09:06:51 | 2020-03-29T09:09:00 | 251,065,731 | 0 | 0 | NOASSERTION | 2020-03-29T15:29:44 | 2020-03-29T15:29:43 | null | UTF-8 | C++ | false | false | 102,670 | cpp | #include <torch/csrc/jit/passes/quantization.h>
#include <torch/csrc/jit/passes/constant_pooling.h>
#include <torch/csrc/jit/passes/constant_propagation.h>
#include <torch/csrc/jit/passes/freeze_module.h>
#include <torch/csrc/jit/passes/fuse_linear.h>
#include <torch/csrc/jit/passes/graph_rewrite_helper.h>
#include <to... | [
"facebook-github-bot@users.noreply.github.com"
] | facebook-github-bot@users.noreply.github.com |
349cfdd5a57a1136eb31ea2a30ab9a886f33d323 | 00fea9459f8ed3955910a0e770af61278c93234b | /349Intersection_Two_Arrays.cpp | 58d00fa45fb098627443ffb602259d8c9de1e54f | [] | no_license | caomincan/leectcode | eff934db566d74e2b0e95b7d462c33dea06c1ee2 | 582e8ac8f37b9f62e90a94b860d4d99c0e530fe0 | refs/heads/master | 2022-12-01T23:32:56.505801 | 2020-08-12T00:51:20 | 2020-08-12T00:51:20 | 271,587,997 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 437 | cpp | class Solution {
public:
vector<int> intersection(vector<int>& nums1, vector<int>& nums2) {
unordered_set<int> total;
vector<int> ans;
for(auto n: nums1){
total.insert(n);
}
// find result
for(auto n: nums2){
if(total.find(n) != total.end()){
... | [
"micao@vt.edu"
] | micao@vt.edu |
b460c2afc4c86dd1a1e4d370243663001b952a2f | a7df494766b0478e3ab08a295838ffd3da5720ce | /Sartaj2nd/codes-1nd2nd/Data Structures, Algorithms, & Applications in C++, 2nd Edition/timeMatrix.cpp | 8e819427d372681c2aa03fe0e6658ff3d9dbd3b1 | [] | no_license | fwar34/DataStruct | 2e11a7720c3fab48d97dc591efb69d2772282814 | 37b9a51afd81d4f52ecea0f6ca467a3a1e8fd6da | refs/heads/master | 2021-01-23T01:52:26.696585 | 2019-01-04T09:52:58 | 2019-01-04T09:52:58 | 85,944,098 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 906 | cpp | // run time for add, multiply and transpose using class matrix
#include <iostream>
#include<time.h>
#include "matrix.h"
using namespace std;
#pragma optimize("t", on)
int main()
{
int n = 500; // matrix size
matrix<int> a(n,n), b(n,n), c(n,n);
int m = 500; // number of repetitions
// in... | [
"fwar34@126.com"
] | fwar34@126.com |
2513ed67ab0040e5516f5c544744803bff4da5f0 | 942db7940bec56ed0c660c1325232fbd70396cf2 | /Arduino_Nano_Serial_Case/Arduino_Nano_Serial_Case.ino | 5cf3757807e2145b178c5804e2dc917c84331355 | [
"MIT"
] | permissive | rukvih/Prototype-of-system-Smart-Home | d4adb78a831f880d8513055919c80c9274154ed0 | ad414166bfaa3f252e75105e256a04d0af4513e3 | refs/heads/master | 2020-12-24T13:43:49.985044 | 2016-05-13T09:14:36 | 2016-05-13T09:14:36 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 19,547 | ino | #include <Servo.h>
#include "Ultrasonic.h"
#include <SPI.h>
#include <Wire.h>
#define fadePin 5 //ванная
#define fadePin1 9 //периметр
#define fadePin2 3 //гостиная
#define fadePin3 6 //коридор
int val;
byte newinfo, ledDoorLap;
int clocktime;
int cltime;
int valPIR = 0;
int valpir;
int vallight;
int ... | [
"viva-os@mail.ru"
] | viva-os@mail.ru |
d8f430bcec9b669cee943f90c051e938d032d5d8 | 0ba81d0995a4bc6571cee6cb5cc4d87b80a3b7fd | /aten/src/ATen/native/cuda/GridSampler.cpp | c98ab7b2d31e99d0808d29e3baf200c9617af885 | [
"BSD-2-Clause",
"BSD-3-Clause",
"LicenseRef-scancode-generic-cla",
"BSL-1.0",
"Apache-2.0"
] | permissive | gml16/pytorch | 07abe1b0bca9923840069e460c68005f022af6a4 | fad60484572c490384c107cf625d484e34dc9bcf | refs/heads/master | 2022-05-06T03:07:11.825083 | 2022-04-01T15:10:37 | 2022-04-01T15:10:37 | 251,362,041 | 0 | 0 | NOASSERTION | 2020-03-30T16:22:49 | 2020-03-30T16:22:48 | null | UTF-8 | C++ | false | false | 2,895 | cpp | #define TORCH_ASSERT_ONLY_METHOD_OPERATORS
#include <ATen/native/cuda/GridSampler.h>
#ifndef AT_PER_OPERATOR_HEADERS
#include <ATen/Functions.h>
#include <ATen/NativeFunctions.h>
#else
#include <ATen/ops/empty.h>
#include <ATen/ops/empty_like.h>
#include <ATen/ops/grid_sampler_2d_backward_native.h>
#include <ATen/ops/... | [
"pytorchmergebot@users.noreply.github.com"
] | pytorchmergebot@users.noreply.github.com |
a571b1babaa0aa9ef6effff6253016a126bac7dd | 40c9df5f01ec6d9cfcbbc21f6d886dcc092b6f23 | /Wildcard_matching.cpp | cc321724d173631a2acdd172fe3d293288ef8bb9 | [] | no_license | ethanboyuan/LeetCode | aa5382023bca451febf36df5f96dad5e98d16105 | 9f22d72fc8a2c21147d93a6bad6931884e3dfa38 | refs/heads/master | 2016-09-10T01:12:29.414425 | 2014-11-01T10:34:03 | 2014-11-01T10:34:03 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,270 | cpp | #include <vector>
#include <iostream>
#include <string>
#include <stack>
#include <algorithm>
using namespace std;
class Solution {
public:
bool isMatch_Recursive(const char *s, const char *p) {
if(*p == '*'){
while(*p == '*') ++p;
if(*p == '\0') return true;
while(*s != '\0' &&... | [
"paul.boyuan@gmail.com"
] | paul.boyuan@gmail.com |
c1c46ba8504318a2892e2e7e2747d51a3dfbb722 | 0ac4fb044735c1d8db0276834f4728980655be57 | /WrenCommon/Source/EventHandling/Events/SetTargetEvent.h | c1304677067ad96abcdf8f280ef5eb1f0df759bb | [] | no_license | ericbfriday/wren | 87d0bc21f090d46f3bce40b70a495c82615861df | 5010309a705b7016c546215da01cb5f66e8910dd | refs/heads/master | 2020-12-08T20:38:15.428673 | 2019-12-01T06:52:41 | 2019-12-01T06:52:41 | 233,088,842 | 1 | 0 | null | 2020-01-10T16:40:05 | 2020-01-10T16:40:04 | null | UTF-8 | C++ | false | false | 471 | h | #pragma once
#include <string>
#include "Event.h"
#include "Components/StatsComponent.h"
class SetTargetEvent : public Event
{
public:
SetTargetEvent(const int gameObjectId, const std::string& targetName, StatsComponent* statsComponent)
: Event(EventType::SetTarget),
gameObjectId{ gameObjectId },
targetNam... | [
"drew.kestell@gmail.com"
] | drew.kestell@gmail.com |
e580adb8b4abebea10bb13f71806911d79815e23 | 94e9e063763fee0c27e0bf6c3127a1e129384f8c | /cpp/arrayStuff/arrayStuff/main.cpp | 41e9bae103238b4a69a49b261881ea8a205234cc | [] | no_license | frenchbread/learning | 5b66b5a735c51124b6216e6055eec9758d96c00c | a88e62e2feb583895c5b1b8860fcd8f0b8456146 | refs/heads/master | 2021-01-18T09:51:04.585707 | 2017-06-17T12:01:21 | 2017-06-17T12:01:21 | 27,572,299 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,899 | cpp | //
// main.cpp
// arrayStuff
//
// Created by Damir Mustafin on 19/11/15.
// Copyright (c) 2015 Damir Mustafin. All rights reserved.
//
#include "PFArrayD.h"
#include "PFArrayDBak.h"
#include <cstdlib>
#include <cstring>
#include <iostream>
using namespace std;
void testPFArrayDBak();
int main() {
cout << "... | [
"frenchthebread@gmail.com"
] | frenchthebread@gmail.com |
90f81163fd9352b499251b1749e700ead53193e8 | 0015191a758eaff526ceee730a53d535f1a292c5 | /include/pdk/base/time/internal/DateTimePrivate.h | 6ce8639aaba7aa4fd1f96319017f36decfde054e | [
"Apache-2.0"
] | permissive | wzugang/libpdk | 820097e564ea2024654dbceb009bd54b4b322711 | 72dd499328c5017f02ccb02389c14f50831481c6 | refs/heads/master | 2021-05-02T12:01:26.573947 | 2018-02-08T07:17:08 | 2018-02-08T07:17:08 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,827 | h | // @copyright 2017-2018 zzu_softboy <zzu_softboy@163.com>
//
// THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
// IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
// OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
// IN NO EVENT SHALL THE AUTHOR BE ... | [
"zzu_softboy@163.com"
] | zzu_softboy@163.com |
723ad46b6898ab09aeaa34230d74b45a95c6c94a | fd28c774c3d549d4fec899a213064c5f5a966eb9 | /QtGuiApplication/MyViewer.h | 0415913c6f2ad6642d2687ba4777e7f7e5aae94b | [] | no_license | Maxim-Doronin/CGAL | b01692f4f650a1ee21a5bb756d5e178cfed9c6f2 | fbca96d2ef8224c48e279217ac9d202a17a57be4 | refs/heads/master | 2021-08-28T00:50:17.001633 | 2017-12-09T10:19:17 | 2017-12-09T10:19:17 | 113,611,784 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,290 | h | #pragma once
#include <vector>
#include <QGLViewer/qglviewer.h>
#include <QMessageBox>
#include <QMouseEvent>
#include "BSpline.h"
#include "typedefs.h"
class MyViewer : public QGLViewer {
public:
MyViewer(QWidget* parent);
Points3 points;
bool isRemovePointMode = false;
bool isMovePointMode =... | [
"doronin.maxim.unn@gmail.com"
] | doronin.maxim.unn@gmail.com |
084c0ce501acc98a35bbd7cc4ef35a5dd34d3608 | 45c59e5f456f11f1714b2ddf976b62dfebecfa7d | /Case10/0/cz_solid_33/k | 5bdc2c107d57d224e03d7bf5e090e06046d917eb | [] | no_license | JoelWright24/Masters-Thesis-in-OpenFOAM | 9224f71cdb38e96a378996996c5c86235db9ee13 | b6c420b5054494a26a7d65a34835b27be9e0da4a | refs/heads/main | 2023-02-20T17:18:13.067439 | 2021-01-22T19:30:36 | 2021-01-22T19:30:36 | 332,039,823 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 890 | /*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: 6
\\/ M anipulation |
\*-------... | [
"67100764+JoelWright24@users.noreply.github.com"
] | 67100764+JoelWright24@users.noreply.github.com | |
2ed775db1a2600f67ed3dc15848a73d8bc3323ae | dba127f8a88db95386cbe21b221760d782cbdf67 | /IOCP_1/JIocp.cpp | 35feecbf50b491080d189073c3285a0eda5b166c | [] | no_license | 15831944/DirectX_Study | c1bd6fe1b8eb891bf49a5a3954234adf59abdb46 | e4832a079936dc1aa893b098375a1d228c7cc02b | refs/heads/master | 2021-10-20T09:19:15.305146 | 2019-02-27T06:30:56 | 2019-02-27T06:30:56 | null | 0 | 0 | null | null | null | null | WINDOWS-1252 | C++ | false | false | 3,187 | cpp | #include "JIocp.h"
#define SAFE_HANDLE_KILL(h) {if (h != INVALID_HANDLE_VALUE) { CloseHandle(h); }}
DWORD WINAPI JIocp::WorkThread(LPVOID pParam)
{
JIocp* iocp = (JIocp*)pParam;
DWORD Trans;
ULONG_PTR Key;
OVERLAPPED* Ov;
BOOL Ret;
while (TRUE)
{
if (WaitForSingleObject(iocp->m_ThreadKillEvent,1) == WAIT_OBJEC... | [
"kgcaschool@outlook.kr"
] | kgcaschool@outlook.kr |
54851b5a51dd5ab1ada430f580473d4894b09ae5 | 0dce0043384d823586da27473b4b9e206853257c | /nn_cxx_test.cc | a3ce04059f022049a6a9bd7175b3d058bf541ec9 | [] | no_license | lichao2014/nn_cxx | 6b077207a4473ea419be85fd01687bca042da02c | eb0e67eb975d9a4d30be8b21c5f3919759bc14e9 | refs/heads/master | 2020-03-26T18:55:23.209651 | 2018-08-19T11:14:53 | 2018-08-19T11:14:53 | 145,238,861 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,439 | cc | #include "nn_cxx.h"
#include "gtest/gtest.h"
#include "pipeline.h"
#include "reqrep.h"
using namespace nn_cxx;
class SocketTest : public testing::Test {
public:
void SetUp() override {
socket_.reset(new Socket(AF::SP, NN_PUSH));
}
void TearDown() override {
socket_.reset();
}
vo... | [
"240446892@qq.com"
] | 240446892@qq.com |
c73011cb8787f559ce3e721fb21031ab893a6b13 | 7fc7f2389e0c356ad853d4cb651ec3020493ee20 | /framework/src/Core/Network/Udp/UdpManager.cpp | 137276529b0d586d6deec624813e5c817467521c | [
"MIT"
] | permissive | gautier-lefebvre/cppframework | 50c5f5c2d83a4431a195578e7ce0c76bdf762913 | bc1c3405913343274d79240b17ab75ae3f2adf56 | refs/heads/master | 2021-01-10T11:16:40.589126 | 2016-09-21T19:10:54 | 2016-09-21T19:10:54 | 43,247,787 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 15,191 | cpp | #include <algorithm>
#include "Library/ThirdParty/cppformat/format.hh"
#include "Library/Tool/Converter.hpp"
#include "Library/Tool/Macro.hh"
#include "Core/Network/Udp/UdpManager.hh"
#include "Core/Network/Exception.hh"
using namespace fwk;
UdpManager::UdpManager(NotifiableThread& input, NotifiableThread& out... | [
"gautier.lfbvr@gmail.com"
] | gautier.lfbvr@gmail.com |
fe0b59a04385eefb169261f32283ea8a771f99ec | 30fd2d0e910b9b4339ea5a1f2d4ef079285d3bd7 | /Lib/Include/PersistentData.h | 8704e7a22fdfdeb6839baf4d1b5ce2359ba0c54b | [] | no_license | kiar40k/Big-Numbers | 3452c33902f0e63781139541552a2c2e14776839 | 7c4d6dc52deeeac2ac0cdded5a3b3c2ee510b327 | refs/heads/master | 2021-06-20T01:46:18.860052 | 2017-08-05T16:04:58 | 2017-08-05T16:04:58 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 927 | h | #pragma once
#include <XmlDoc.h>
class PersistentData {
private:
String m_name;
protected:
static const TCHAR *s_defaultName;
public:
PersistentData() : m_name(s_defaultName) {
}
void load(const String &fileName);
void save(const String &fileName);
static void checkTag(XMLNodePtr node, const T... | [
"jesper.gr.mikkelsen@gmail.com"
] | jesper.gr.mikkelsen@gmail.com |
b69338d398dfcd9800f875772da7d4a5e84c5771 | 1c9678ef5867d68999ce4fd358f545d68cd1c550 | /CPP-HW2/District.cpp | 9667681bb6b1ba49e2b6e9ba60962963739899fe | [] | no_license | Idokah/CPP-HW2 | 598dbe9efe71795a4f44f1399fa4b62b4884c448 | 2eb32be4e7c21ba8def432771d6aac02cee393df | refs/heads/master | 2023-02-08T22:27:33.689924 | 2020-12-29T18:09:23 | 2020-12-29T18:09:23 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,893 | cpp | #include "District.h"
#include "Citizen.h"
#include <math.h>
#include <iostream>
using namespace std;
char* getString(const char* input);
District::District(): votersPercentage(0), electionResultsSize(0), voteCount(0), citizenNum(0) {
this->name = nullptr;
this->id = -1;
this->representativeNum = 0;
... | [
"idokh@mta.ac.il"
] | idokh@mta.ac.il |
9b34fa832460f0ee2632123e6ace536a4223d2bc | 2fda9e8e3cce71f0b11c72df92d1b931b57ba572 | /tests/pxScene2d/test_pxPixel_h.cpp | 5fc033e7687cd7d96c27420d592ea26ea473d15b | [
"Apache-2.0"
] | permissive | mateusz-hobgarski-red/pxCore | 519385eabd37e23818c37b73577d232356001a22 | dddf99ed360c7fa4a98a40c92fc3d0ded864e841 | refs/heads/master | 2020-08-09T19:59:56.287360 | 2019-11-20T13:37:18 | 2019-11-20T13:37:18 | 214,161,586 | 1 | 0 | NOASSERTION | 2019-10-10T11:11:26 | 2019-10-10T11:11:23 | null | UTF-8 | C++ | false | false | 1,821 | cpp | /*
pxCore Copyright 2005-2018 John Robinson
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, s... | [
"mfiess@comcast.net"
] | mfiess@comcast.net |
cf0f9caa68819d43777fa389c4819fe616ffcbb7 | 9c48a0af704d3a49b0b57d0689d91bac8542c5af | /practice/04/c++/4/4/4.cpp | 5581bf1b349d728e9234c51366f384b6bf32aa40 | [] | no_license | emfortress/programming | e9cf105e12608f3c27c69d0c201490493f91cd6c | a36694b297360dfe421f4a73c7f7745e2972dedb | refs/heads/main | 2023-03-18T04:09:00.912656 | 2021-03-14T17:56:46 | 2021-03-14T17:56:46 | 306,659,040 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 751 | cpp | #include <iostream>
int main() {
setlocale(LC_ALL, "Russian");
int a, b;
std::cout << "Введите два целых числа, разделённых пробелом или новой строкой." << std::endl;
std::cin >> a >> b;
// Обмен без дополнительной переменной
a = a - b;
b = b + a;
a = b - a;
std::cout << "Значен... | [
"timur_trofanchuk@mail.ru"
] | timur_trofanchuk@mail.ru |
8eb1152b6289fd98a9827e066ed2ad544761904e | abe3240cfb598f3898f1009dba57de56a99ce8ff | /tests/raycast_test.cpp | f3a2570179b39b1b948da9ea43774dbf519a3588 | [] | no_license | patrickhadlaw/RGLEngine | 632cc4613d0a7156b6882c7b1cbc58702e01f79b | ced4c60d6d3f0442cfd13da92372315137d4f594 | refs/heads/master | 2022-10-28T13:58:55.406813 | 2022-09-06T02:12:36 | 2022-09-06T02:12:36 | 201,550,102 | 0 | 0 | null | 2022-09-06T02:12:37 | 2019-08-09T22:46:38 | C++ | UTF-8 | C++ | false | false | 4,904 | cpp | #include "rgle.h"
int main() {
return rgle::util::Tester::run([](rgle::util::Tester& tester) {
tester.expect("point clip should be inside", []() {
auto point = glm::vec3(1.0f, 1.0f, 1.0f);
auto plane = rgle::ray::Plane(glm::vec3(), glm::vec3(0.0f, 0.0f, 1.0f));
return plane.clip(point) == rgle::ray... | [
"patrickhadlaw@gmail.com"
] | patrickhadlaw@gmail.com |
a98fec7dc828c3093ec62b458791d5854ad476e4 | a1618f92a071589f60f39918f96df6c3abe7b4b2 | /tests/unit_tests/test_peerlist.cpp | 1f2144c03b81891b106e12b36531fbcbc6025708 | [
"BSD-3-Clause"
] | permissive | techqc/SiZ | f41b920aacfbef5c3a85ff15939e71b1fdba4a59 | bdf290705b2d553b4253df4ca97e4367c78f5a27 | refs/heads/master | 2021-09-10T09:30:39.193726 | 2018-03-23T19:35:18 | 2018-03-23T19:35:18 | 125,059,630 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,996 | cpp | // Copyright (c) 2018, SiZ, The Monero Project
//
// 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 o... | [
"37153171+techqc@users.noreply.github.com"
] | 37153171+techqc@users.noreply.github.com |
7470c77548b3b47a5e8a8b31524d31759a4046d9 | 18d0216007a6e89bf10a6ad18349950b24ed13f4 | /sicily_code/old/1231.cpp | 9716f1c2aee868fee8e7a1e9c0540381bfa52437 | [] | no_license | cuiweixie/soj_water_codes | 895e73bf0271854771551b2c4d764f8f4c3c3b8e | c3539ac875d4012ccb9243b7cca11557a4587666 | refs/heads/master | 2016-08-03T00:16:14.316397 | 2012-05-10T07:47:44 | 2012-05-10T07:47:44 | 4,281,555 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,909 | cpp | #include <iostream>
#include <string>
#include <cstring>
#include <stdio.h>
using namespace std;
long long int prime[500000];
bool isPrime[1000001];
void getPrime()
{
memset(isPrime,1,sizeof(isPrime));
prime[0] = 0;
for(long long int i=2;i<1000000;i++)
{
if(isPrime[i])prime[++prime[0]] = i;
for(... | [
"cuiweixie@gmail.com"
] | cuiweixie@gmail.com |
4c7766b6d26079880dc21810252a657efff85d17 | e01f1c3c5f3a0c421306f19649767a6722ac3e19 | /entitydisplay.h | 1dc9f4ead12141e2f22ef06d89a7b9cc7ad33e3b | [] | no_license | algogr/AlgoIceDroid | edde0ef7c39ce108294bdd7c396a64e888fbf626 | e47670aadfe245a3104a3707c3b0adc6336016f7 | refs/heads/master | 2021-01-20T11:00:37.547452 | 2014-10-11T16:12:21 | 2014-10-11T16:12:21 | 24,685,938 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 954 | h | #ifndef ENTITYDISPLAY_H
#define ENTITYDISPLAY_H
#include <QObject>
class EntityDisplay : public QObject
{
Q_OBJECT
Q_PROPERTY(QString title READ title WRITE setTitle)
Q_PROPERTY(QString value READ value WRITE setValue)
Q_PROPERTY(QString fieldname READ fieldname WRITE setFieldname)
Q_PROPERTY(QStr... | [
"jimpar@algo.gr"
] | jimpar@algo.gr |
69047c0b3a5a2d99becc206f330b3818d1206882 | ddfd906f4e2fd42b7162a96529af858fdf478dff | /4sem/saod/Курсовая/Includes/UsersList.h | 53c5f17df01dbf5cbe49e70f761c42394c6e1774 | [] | no_license | teploe-odealko/univer | 1627ecd714215cadf30538e16a94d06a9dc335b2 | 48aea299181ee73f4164a4eeba06014745de6c3b | refs/heads/master | 2021-01-03T20:31:59.679594 | 2020-06-08T12:27:42 | 2020-06-08T12:27:42 | 240,226,356 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 632 | h | #pragma once
#define UsersList_h
#include <string>
using namespace std;
struct UserNode
{
string last_name;
string phone_model;
};
class UsersList
{
private:
UserNode *users;
int max_num_of_users;
int current_num_of_users = 0;
public:
string operator_name;
UsersList(int, string);
int... | [
"din.latypov@gmail.com"
] | din.latypov@gmail.com |
18770ac11be62bcb3961356de9772c23f58e7b6b | 5146ef95cf61da886d565b292553f54ba5dc7b4e | /Assignment2/JUDGE_AND_SOLUTION/JUDGE/test_disjoint_set.cpp | ce4d4c42cabbb1ddd1065d15938a73f06f9d6ac7 | [] | no_license | dongyi-kim/ajou.datastructure.2018.spring | 3f4eb578abafce93509ec27573fd6f0978032263 | 8ab1cbcaa7218d14198970a6572e77e2ee77a10e | refs/heads/master | 2021-09-17T03:40:22.062900 | 2018-06-27T12:25:30 | 2018-06-27T12:25:30 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 738 | cpp | #include "main.h"
#include "graph.h"
#include "heap.h"
#include<string.h>
#include<stdlib.h>
#include<stdio.h>
#include<memory.h>
int main(int argc, char *argv[]){
int i;
int j;
char DATA_FOLDER[2048];
strcpy(DATA_FOLDER, argv[1]);
graph* g = read_graph(DATA_FOLDER);
disjoint_set* set = init_set(g->V);... | [
"waps12b@naver.com"
] | waps12b@naver.com |
5ad25e6eb9cd709fc99196eef8873a387a9c6111 | 616d9e83ac7b0dafc37bb0a753da79bc10c9bd6d | /week--04/day--01/airCraftCarrier/F35.cpp | 20b5a8ae480075ae068247533eddffd7a76be554 | [] | no_license | green-fox-academy/Teleeeee | 7c8428922497a9bd76ea43de903e840a9cbdeaa5 | b7b8eff32c79e1ee03684096ee0ca246db389079 | refs/heads/master | 2020-07-19T06:58:07.323979 | 2020-01-30T21:18:02 | 2020-01-30T21:18:02 | 206,396,188 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 153 | cpp | //
// Created by User on 30/09/2019.
//
#include "F35.h"
F35::F35() {
setMaxAmmo(12);
setAmmo(0);
setType("F35");
setBaseDamage(50);
}
| [
"lev9433@gmail.com"
] | lev9433@gmail.com |
175b3062783e4402c8a7fd160591e5cbc515735e | cf8ddfc720bf6451c4ef4fa01684327431db1919 | /SDK/ARKSurvivalEvolved_StorageBox_IndustrialGrinder_parameters.hpp | 47222abfa33c8578f7964c3a2e913626b587df9c | [
"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 | 6,039 | hpp | #pragma once
// ARKSurvivalEvolved (329.9) SDK
#ifdef _MSC_VER
#pragma pack(push, 0x8)
#endif
#include "ARKSurvivalEvolved_StorageBox_IndustrialGrinder_classes.hpp"
namespace sdk
{
//---------------------------------------------------------------------------
//Parameters
//-----------------------------------------... | [
"sergey.2bite@gmail.com"
] | sergey.2bite@gmail.com |
9be90c84d11ce82425724bd00dd201605d419358 | c603aa4b0f31526e2ccf8652a4d9e7ad8327ec6b | /object-detect/src/main.cpp | 8f1a8fd032fc1859738dfb34859218cc4ecd4928 | [] | no_license | Robotics-DAI-FMFI-UK/cu-lIllI | 75cc654b1fb328eff1a04ed1ee32699e7bc91d40 | 40df0269c72ec3912f75807d9727aae6b3c5e67f | refs/heads/master | 2023-06-07T21:12:53.499916 | 2023-06-01T21:33:10 | 2023-06-01T21:33:10 | 159,908,225 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 14,928 | cpp | #include <stdio.h>
#include <string.h>
#include <sl/Camera.hpp>
#include <opencv2/opencv.hpp>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include "objdet.h"
//#include "arm.cpp"
using namespace std;
using namespace sl;
cv::Mat slMat2cvMat(Mat& input);
string type2str(int type);
float compare(uch... | [
"pavel.petrovic@gmail.com"
] | pavel.petrovic@gmail.com |
3bf751a5cfcd091d5784030dce4b3eb89aefb944 | 73e5d2812ec4aa07dc9eacf11decb6a73e907d64 | /src/MIT_alice/MUILineCircleVisual.h | 17f6045b1f9d1bebb3b5e195d6fe92a2d4b3914e | [
"MIT"
] | permissive | midasitdev/aliceui | cdf781f84e2d488d0cc7083aa3c783937459ba76 | 3693018021892bcccbc66f29b931d9736db6f9dc | refs/heads/master | 2020-04-24T06:51:27.386806 | 2020-03-05T23:55:48 | 2020-03-05T23:55:48 | 171,779,938 | 10 | 5 | NOASSERTION | 2019-03-08T00:07:41 | 2019-02-21T01:44:39 | C++ | UTF-8 | C++ | false | false | 706 | h | #pragma once
#define MIDAS_SDK
#include "MUILinesVisual.h"
#include "MUICircleDef.h"
#include "HeaderPre.h"
namespace mit
{
namespace ui
{
class __MY_EXT_CLASS__ MUILineCircleVisual : public MUILinesVisual
{
MRUNTIME_DECL_KINDOF( MUILineCircleVisual );
public:
MU... | [
"skwoo@midasit.com"
] | skwoo@midasit.com |
8f08e50e077817fcbdbce65db8da26f5867dc267 | d32b701f6ccd833293c8571b5411fa55a57b0cb9 | /src/orient_module.cpp | bd53a3b6f28475f71e0a511d8913f6caee31f5e2 | [] | no_license | mitchellgordon95/GraphicsFromScratch | d0108795d50eb500a3d166602f761cad102e4ea7 | 30b678f713597a95370411eaf48450737a3d2399 | refs/heads/master | 2020-05-29T21:14:59.508395 | 2015-05-05T05:14:45 | 2015-05-05T05:14:45 | 35,078,624 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 952 | cpp | #include "orient_module.h"
#include "cli_pipeline.h"
#include <armadillo>
CLI_Orient::~CLI_Orient()
{
}
using namespace CLI_Pipeline;
using namespace arma;
void CLI_Orient::execute(std::vector<char *> ¶ms)
{
float a = CLI_Module::parseNumericalArg(params[0]);
float b = CLI_Module::parseNumericalArg(params[1]);... | [
"mitchell.gordon95@gmail.com"
] | mitchell.gordon95@gmail.com |
8607856aac8e3fbea08d2adf0c61c33ca35b8c5e | c9e3a15a9df784dd6e97334dd465e437726dd31c | /sources/prgm sol/traitement images/essai1.cpp | 938bed29ce03503ebcb8adc726f9b6aee216e503 | [] | no_license | thriller91/Cansat-SupOp | 75964e5484f88620f4b3468b5a8c526d2fcd9829 | 3fecc6433ff6a0d22d82ba238558d97c6c233fb4 | refs/heads/master | 2020-05-30T18:30:46.153984 | 2017-02-20T17:51:01 | 2017-02-20T17:51:01 | 2,622,802 | 0 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 1,469 | cpp | #include "highgui.h"
#include "cxcore.h"
#include <iostream>
#include <vector>
using namespace std;
using namespace cv;
int main( int argc, char** argv )
{
int rows,cols;
cv::Mat img3;
IplImage *img1,*img2,image;
std::vector<Mat> planes1,planes2;
if(argc<2){
std::cout<<"Usage: main <image-file-name>"<<std::end... | [
"zubair91@hotmail.fr"
] | zubair91@hotmail.fr |
52a7768d1bb0fce02b20b348aac40f498ccbdea1 | b400ea725f0f6d6cbb59fa801d56c8513c851993 | /include/hpp/foot/solvers/LPQPsolver.hh | 1348050561afe11167af74f850b3e99fdbedbad8 | [] | no_license | ggory15/HPP_foottrajectory | db43718ee5715573ca5e79d2d2b18d2645cb9560 | 11d136ce7234c6d437e0a8b8ddbd8ce9f7854da5 | refs/heads/master | 2020-03-28T17:04:42.451964 | 2018-10-19T14:42:04 | 2018-10-19T14:42:04 | 148,756,293 | 0 | 1 | null | 2018-09-14T15:31:05 | 2018-09-14T08:04:11 | CMake | UTF-8 | C++ | false | false | 1,828 | hh | #pragma once
#include <iostream>
#include <fstream>
// #include <eigenqp/LSSOL.h>
// #include <eigenqp/LSSOL_QP.h>
// #include <eigenqp/LSSOL_LP.h>
#include <qpOASES.hpp>
#include <hpp/foot/TrajectoryProblem.hh> // done
#include <hpp/foot/utils/defs.hh> // done
#include <hpp/foot/solvers/QP.hh>
#include <hpp/foot/s... | [
"ggory15@snu.ac.kr"
] | ggory15@snu.ac.kr |
3aeebfc2aceb1adbf1a5481edbe7afed3b715f42 | b7f3edb5b7c62174bed808079c3b21fb9ea51d52 | /chromeos/components/camera_app_ui/url_constants.cc | 96894c1d8bab757e4aa201eee81af9010c9cbb84 | [
"BSD-3-Clause"
] | permissive | otcshare/chromium-src | 26a7372773b53b236784c51677c566dc0ad839e4 | 64bee65c921db7e78e25d08f1e98da2668b57be5 | refs/heads/webml | 2023-03-21T03:20:15.377034 | 2020-11-16T01:40:14 | 2020-11-16T01:40:14 | 209,262,645 | 18 | 21 | BSD-3-Clause | 2023-03-23T06:20:07 | 2019-09-18T08:52:07 | null | UTF-8 | C++ | false | false | 389 | 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 "chromeos/components/camera_app_ui/url_constants.h"
namespace chromeos {
const char kChromeUICameraAppHost[] = "camera-app";
const char kChrome... | [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
777e87fe8fb1dccae1690c003f971c2ec9379754 | f153b04464e0bbe7c2db57f7b6c2d64d87f8953b | /leetcode/NumberOfBoomerangs.cpp | 13b52ebaee4fb4f7bb3bc88104b59f47c5527bbb | [] | no_license | alvas/ms_interview_100 | 82f4f7222db775c68b035dc616d812c63f3127a7 | 8587116a3c4227f71783e7dac42517b6561d17b0 | refs/heads/master | 2022-03-18T10:48:46.834899 | 2022-02-24T04:10:05 | 2022-02-24T04:10:05 | 16,854,684 | 4 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 10,617 | cpp | #include <iostream>
#include <map>
#include <unordered_map>
#include <vector>
using namespace std;
class Solution {
public:
int numberOfBoomerangs(vector<pair<int, int>>& points) {
int res = 0;
int sz = points.size();
for (int i = 0; i < sz; ++i) {
unordered_map<long, int> m;
... | [
"qingyun.oracle@gmail.com"
] | qingyun.oracle@gmail.com |
565a84d14033fc78aa3ba310f573d4e2a419a3dc | 5d01a2a16078b78fbb7380a6ee548fc87a80e333 | /ETS/Components/MM/EtsMmRisks/_IMmRvGrpAtomEvents_CP.H | 5ee06bb22200a034047d4cd4eef8b282f0c88c44 | [] | no_license | WilliamQf-AI/IVRMstandard | 2fd66ae6e81976d39705614cfab3dbfb4e8553c5 | 761bbdd0343012e7367ea111869bb6a9d8f043c0 | refs/heads/master | 2023-04-04T22:06:48.237586 | 2013-04-17T13:56:40 | 2013-04-17T13:56:40 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,947 | h |
// Wizard-generated connection point proxy class
// WARNING: This file may be regenerated by the wizard
#pragma once
template<class T>
class CProxy_IMmRvGrpAtomEvents :
public IConnectionPointImpl<T, &__uuidof(_IMmRvGrpAtomEvents)>
{
public:
HRESULT Fire_OnError( LONG ErrorCode, BSTR Symbol, BSTR ... | [
"chuchev@egartech.com"
] | chuchev@egartech.com |
ddbbcaa30874c15f8ec4f8fb4ee8f4fdccda485b | e1c054f36ea1eb0b2205d1dcfba2fc971731cb23 | /doublesetting.h | eab52bd00e4e718e93547475f0d95b94054454cd | [] | no_license | 62ocean/Qlink | fbc0c9ac69982786977e6e12e984d0db757aff64 | 56c9ea0013669c1061f8eb26aef86860d9cf8bae | refs/heads/master | 2023-08-25T19:43:13.509283 | 2021-09-17T05:54:08 | 2021-09-17T05:54:08 | 407,416,557 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 491 | h | #ifndef DOUBLESETTING_H
#define DOUBLESETTING_H
#include <QDialog>
#include <QButtonGroup>
namespace Ui {
class DoubleSetting;
}
class DoubleSetting : public QDialog
{
Q_OBJECT
public:
explicit DoubleSetting(QWidget *parent = nullptr);
~DoubleSetting();
private slots:
void startGame();
void can... | [
"ocean62yjl@gmail.com"
] | ocean62yjl@gmail.com |
44abd5774a1e12f49162f70b97c47115d5056451 | 27c1cb57c1608b65639c6194dc945a440df25473 | /cg_exercise_04/cglib/lib/glm/glm/gtx/optimum_pow.inl | b4f12cb7b217e44b265a1b03d2d4698fbf517ebe | [
"MIT",
"LicenseRef-scancode-warranty-disclaimer",
"BSD-2-Clause",
"LicenseRef-scancode-happy-bunny"
] | permissive | brankyy/CG | 41c7de721ffdba2aefda48db823521fb0d409710 | 217960504e0c723b73dab664e6ca0ccf3aeeeec8 | refs/heads/master | 2020-04-05T00:36:27.888286 | 2019-01-06T22:02:49 | 2019-01-06T22:02:49 | 156,395,913 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 494 | inl | /// @ref gtx_optimum_pow
/// @file glm/gtx/optimum_pow.inl
namespace glm
{
template<typename genType>
GLM_FUNC_QUALIFIER genType pow2(genType const& x)
{
return x * x;
}
template<typename genType>
GLM_FUNC_QUALIFIER genType pow3(genType const& x)
{
return x * x * x;
}
template<typename ... | [
"brankyy@gmail.com"
] | brankyy@gmail.com |
4e22c4f7a4fe690c83ff43a530f220b787ae7782 | a932933fc4cb848e7b3484e90cf8a6d26216cb09 | /Module03/ex01/ScavTrap.cpp | 1d1c9018fe126b7ffb3e1d1c7316d32556c41aca | [] | no_license | robijnvh/CPP | 77c0d3e8db475c2fd0596fa2eda99e50bc8e6d59 | 52b0b958453df484b276c5306db6d6f3c7b62c99 | refs/heads/master | 2023-05-03T11:07:45.368207 | 2021-05-26T09:44:44 | 2021-05-26T09:44:44 | 283,137,046 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,013 | cpp | /* ************************************************************************** */
/* */
/* :::::::: */
/* ScavTrap.cpp :+: :+: ... | [
"rvan-hou@f0r3s26.codam.nl"
] | rvan-hou@f0r3s26.codam.nl |
b632f39229a96dd9634c1624a0e1b3348c8ebd53 | 00fc56cab43c3eba4e3d6f724a2754466bf6312f | /mod5/project/src/calcBandI.cpp | c8157f0cf2a3801dc4d1cbd8964b6c42f92868a0 | [] | no_license | JohnJ-Led/cpp_based_projects | b6ec697f03172dc7bc41aac9ddaa341ca7367d31 | 3b9d990edab33dec9b25cc26516af7fb1a243553 | refs/heads/master | 2023-06-21T01:19:18.802716 | 2020-08-23T22:47:26 | 2020-08-23T22:47:26 | 289,593,078 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,177 | cpp | #include <iostream>
#include <iomanip>
#include <ios>
#include "calcBandI.h"
void calBandINoAddDeposits(double openAmt, double interestRate, int yearCount ){
//int monthCount = yearCount * 12;
double earnedInterest;
double totalEarned;
double totalInterest = 0;
int i;
int j;
double temp = ... | [
"jacob.ledthebox@gmail.com"
] | jacob.ledthebox@gmail.com |
dd5ee657c673eb566f9cdc8dd4de35f69c1d6c29 | 025b6f6daa885a43705876b0401b32d1713ca7ad | /roamfree/ROAMestimation/include/ROAMestimation/SpatialIndex/SpatialIndex.h | 33ad1bee41da895dd52f348db180b1dc167d14ac | [] | no_license | AIRLab-POLIMI/ROAMFREE | dcd1c3e1ff7de7905e4bad2a018178d1a8d6263a | a0f875a4e30455758b33b8dde2b13bdddd7302e6 | refs/heads/master | 2023-03-10T02:31:39.737671 | 2022-09-23T08:53:24 | 2022-09-23T08:53:24 | 39,181,027 | 33 | 12 | null | null | null | null | UTF-8 | C++ | false | false | 2,415 | h | /*
Copyright (c) 2013-2016 Politecnico di Milano.
All rights reserved. This program and the accompanying materials
are made available under the terms of the GNU Lesser Public License v3
which accompanies this distribution, and is available at
https://www.gnu.org/licenses/lgpl.html
Contributors:
Davide A. Cucci (da... | [
"davide.cucci@epfl.ch"
] | davide.cucci@epfl.ch |
1a14cdf902e9c1fdb0f9ce8ef307201dc843e365 | 2b31b6a58a6677f23422a07b9aebbc0ae89e8cb0 | /libvis/src/libvis/image_io_netpbm.h | d409e7ae857a51df465ee92b2c49a4d9e58d97d1 | [
"BSD-3-Clause"
] | permissive | SnowCarter/surfelmeshing | eef27c8d8797432f0706502e8507e45adee7323b | 5b1c8d160c1d64f5144b58309b725812d8e6e3ab | refs/heads/master | 2020-04-03T06:25:35.202401 | 2018-10-02T12:31:55 | 2018-10-02T12:31:55 | 155,074,298 | 1 | 0 | BSD-3-Clause | 2018-10-28T13:30:43 | 2018-10-28T13:30:42 | null | UTF-8 | C++ | false | false | 2,830 | h | // Copyright 2018 ETH Zürich, Thomas Schöps
//
// 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 follow... | [
"tom.schoeps@gmail.com"
] | tom.schoeps@gmail.com |
59cbfc7165a8e55e41184e69a9d93bd41550a2e1 | 2b5c710c9b372ad7e4d49e16852944aaf8926a07 | /DerivedSources/WebCore/JSSVGViewSpec.cpp | cb1ff2282fd125dafd649a69cadd0d615f5056fc | [
"Apache-2.0"
] | permissive | FMSoftCN/mdolphin-core | 8ce68f1055d3a38f6e46bd311f2c20b7afc183b8 | 48ffdcf587a48a7bb4345ae469a45c5b64ffad0e | refs/heads/master | 2022-04-09T22:16:12.602078 | 2020-02-11T10:06:11 | 2020-02-11T10:06:11 | 92,716,592 | 5 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,790 | cpp | /*
This file is part of the WebKit open source project.
This file has been generated by generate-bindings.pl. DO NOT MODIFY!
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation... | [
"vincent@minigui.org"
] | vincent@minigui.org |
da25ac7845cd82a3613baceebe9a0d02e08766fe | 7619eda583a979c6078c38d57b0fbeaaff44cc0a | /Pods/MMKVCore/Core/MemoryFile.cpp | e581dcb95f178bff38f8561b9b4e68d22a920f83 | [
"BSD-3-Clause",
"Zlib",
"LicenseRef-scancode-openssl",
"LicenseRef-scancode-ssleay-windows",
"OpenSSL",
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference",
"MIT"
] | permissive | mohsinalimat/WeChatSwift | f6ca421a4222b14016d2fe67dccf933788c287d0 | 574d0fd2b95d5fb79d978b9cd8652570fd42b3e8 | refs/heads/master | 2021-11-22T23:08:25.764547 | 2021-10-08T08:47:48 | 2021-10-08T08:47:48 | 217,524,779 | 1 | 0 | MIT | 2019-10-25T12:03:40 | 2019-10-25T12:03:40 | null | UTF-8 | C++ | false | false | 8,309 | cpp | /*
* Tencent is pleased to support the open source community by making
* MMKV available.
*
* Copyright (C) 2018 THL A29 Limited, a Tencent company.
* All rights reserved.
*
* Licensed under the BSD 3-Clause License (the "License"); you may not use
* this file except in compliance with the License. You may obtai... | [
"xshf87@126.com"
] | xshf87@126.com |
44f9bf7a3a5eb18bba1fb618925fe289fcdf7dac | 4d8941141571cca0b67f9d232bc29a3808029982 | /winter training/winter training day 3 A/main.cpp | f8d848028b3e0e54acbe989e0d33651a27f2404d | [] | no_license | 2003pro/code-of-acm | 38a10bf7504f895bffc74b82b3940d659008dedd | 6797ab837c9d41ed4db2faf0e0e57f7afb2de5ae | refs/heads/master | 2021-01-19T21:58:08.533594 | 2017-04-27T10:47:34 | 2017-04-27T10:47:34 | 88,726,025 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,129 | cpp | #include <bits/stdc++.h>
using namespace std;
typedef pair<int ,int> pii;
vector<pii> sk;
queue <string> p;
stack <char> p1;
stack <int> pp;
string tt;
char s1[1003];
int main()
{
string s,s2;
while(cin >> s){
if(s[0] == '(') s = s.substr(1,s.length()-2);
int l = s.length(),i,vis=0,flag = 0;
... | [
"张骥鹏"
] | 张骥鹏 |
5ce09bd348593139b714480c538bf1dcb165d861 | 4ec84d397a741bef5d390a638046086577461900 | /game/model/message_processor/message_processor.h | e4c6250e456b5217c3df93a17ed6daa4f585ebb3 | [] | no_license | luchengbiao/xqs_game | 186934d41b10a085650bf45bc0a496fb52d44582 | ce447bb923188a3ae13710033bcb074529a0d2e4 | refs/heads/master | 2020-04-05T06:17:55.699468 | 2019-03-21T10:40:26 | 2019-03-21T10:40:26 | 156,632,557 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,713 | h | #ifndef __GAME_MODEL_MESSAGE_PROCESSOR_MESSAGE_PROCESSOR_H__
#define __GAME_MODEL_MESSAGE_PROCESSOR_MESSAGE_PROCESSOR_H__
#include <stdint.h>
#include <memory>
#include <string>
#include <QObject>
#include "base/framework/observer_list.h"
#include "game/macros.h"
#include "channel_manager/channel_manager_global.h"
#inc... | [
"993925668@qq.com"
] | 993925668@qq.com |
824429cee4c8330dcf833c5cd8e3c8a63bea3b41 | a58ac1d4f118050f758281b72fb51f6fd37d8bd5 | /src/fsync.hpp | f62f90b9848a2da6e81e042a96971cb691609e54 | [
"MIT"
] | permissive | hilbix/mergerfs | cd9264908d478b5a1d801d1a0250ce4f812df0ee | 0165fb24d40c5aa28eadf450df5d40f7c554c52e | refs/heads/master | 2021-01-13T06:49:34.416501 | 2015-12-08T04:57:24 | 2015-12-08T04:57:24 | 47,934,663 | 0 | 0 | null | 2015-12-13T20:15:18 | 2015-12-13T20:15:17 | null | UTF-8 | C++ | false | false | 1,346 | hpp | /*
The MIT License (MIT)
Copyright (c) 2014 Antonio SJ Musumeci <trapexit@spawn.link>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitat... | [
"trapexit@spawn.link"
] | trapexit@spawn.link |
266edb5921ee1e456427f24f2764e57d9f09c646 | 90d2a91fd4931c6e0c8aca344c11dc43d7c00ebc | /3rd-party/yaml-cpp/src/exceptions.cpp | f298e54aa00e8ec053c977c7929baaed8fb2985a | [
"MIT",
"OML"
] | permissive | NavInfoNC/ncserver | 7fc412f967f9ccf15d2b6fc34513e6be57581d75 | 6713e6b78ea21d03d144652b48afe8b46db1e63c | refs/heads/master | 2022-01-02T05:25:40.615189 | 2021-12-29T10:03:41 | 2021-12-29T10:03:41 | 196,983,258 | 15 | 9 | MIT | 2021-12-02T09:42:49 | 2019-07-15T11:12:00 | C++ | UTF-8 | C++ | false | false | 2,147 | cpp | /*
Copyright (c) 2008-2015 Jesse Beder.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribut... | [
"zhangjs@mailbar.com"
] | zhangjs@mailbar.com |
89b70c6d1b80b2e67426fc40d80305b4d9dfdf1f | 25f1a35e2802ddab82f97c570491b9ad3599831e | /src/Deliverables/DediPro/MiscSettings.cpp | 609a01f228e164a9c5715d288b510769b9a96497 | [] | no_license | rockonedege/dediprog-SF1xx | 1a8f35378e08a49dca7fc21474bfef00a43c162a | de57583ea3ec90ac90132c08258bbe1bebf3cc3f | refs/heads/master | 2020-09-16T20:25:06.077225 | 2019-11-25T06:57:41 | 2019-11-25T06:57:41 | 223,880,292 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,024 | cpp | // MiscSettings.cpp : implementation file
//
#include "stdafx.h"
#include "DediPro.h"
#include "MiscSettings.h"
#include "PreferenceEx.h"
#include "dedicontext.h"
#include <boost/array.hpp>
// CMiscSettings dialog
IMPLEMENT_DYNAMIC(CMiscSettings, CPropertyPage)
CMiscSettings::CMiscSettings(Context::... | [
"rockonedge@live.com"
] | rockonedge@live.com |
e9bf8053dff7b2f3f06ebc5e0bc4f3a9be953313 | d0fb46aecc3b69983e7f6244331a81dff42d9595 | /live/include/alibabacloud/live/model/StopPlaylistResult.h | 26e6860e298ba280f15084b205cd8b0914cc25db | [
"Apache-2.0"
] | permissive | aliyun/aliyun-openapi-cpp-sdk | 3d8d051d44ad00753a429817dd03957614c0c66a | e862bd03c844bcb7ccaa90571bceaa2802c7f135 | refs/heads/master | 2023-08-29T11:54:00.525102 | 2023-08-29T03:32:48 | 2023-08-29T03:32:48 | 115,379,460 | 104 | 82 | NOASSERTION | 2023-09-14T06:13:33 | 2017-12-26T02:53:27 | C++ | UTF-8 | C++ | false | false | 1,362 | h | /*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | [
"sdk-team@alibabacloud.com"
] | sdk-team@alibabacloud.com |
af94524548bdfa8575170bba049307e89f429301 | 627d4d432c86ad98f669214d9966ae2db1600b31 | /unprocessed/tools/designer/src/lib/sdk/abstractwidgetfactory.cpp | a82d34e43835c43e43716588b8d4df85745883e8 | [] | no_license | fluxer/copperspice | 6dbab905f71843b8a3f52c844b841cef17f71f3f | 07e7d1315d212a4568589b0ab1bd6c29c06d70a1 | refs/heads/cs-1.1 | 2021-01-17T21:21:54.176319 | 2015-08-26T15:25:29 | 2015-08-26T15:25:29 | 39,802,091 | 6 | 0 | null | 2015-07-27T23:04:01 | 2015-07-27T23:04:00 | null | UTF-8 | C++ | false | false | 3,037 | cpp | /***********************************************************************
*
* Copyright (c) 2012-2015 Barbara Geller
* Copyright (c) 2012-2015 Ansel Sermersheim
* Copyright (c) 2012-2014 Digia Plc and/or its subsidiary(-ies).
* Copyright (c) 2008-2012 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.... | [
"ansel@copperspice.com"
] | ansel@copperspice.com |
a7fbd7755ef80f281f66d4420049f5c32586ea2d | 0fccd1748ee7be55039e7bbfb4820197b5a85f0b | /2D Game Engine/2D Game Engine/LevelManager.h | 971927bedf7486504c9856c7319e2b485fa904ea | [] | no_license | AustinChayka/C-Game | 11d297ac5fd38a280da4701ec16c5e18f8680c58 | 56bd96fddc38cb4bfca6f69c37748b1417a51d8a | refs/heads/master | 2022-02-13T02:39:14.724679 | 2019-05-30T22:10:43 | 2019-05-30T22:10:43 | 167,856,869 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 960 | h | #ifndef LevelManager_h
#define LevelManager_h
#include "StateManager.h"
#include <vector>
#include "ImageTile.h"
class StateManager;
class GameObject;
class ImageTile;
class Room;
class LevelManager {
public:
LevelManager();
~LevelManager();
void LoadLevel(int n);
void GenerateLevel(int size, int seed);
... | [
"austinchayka@gmail.com"
] | austinchayka@gmail.com |
275f4010861020409695a95f979e876e1f5fb323 | e8ab6a8108801dfedb694557626fd847651564e2 | /Dragon/include/operators/arithmetic/mul_op.h | 395b1d58ae91d1c057e426b4d3bd786acdbf0d51 | [
"BSD-2-Clause"
] | permissive | Spark001/Dragon-1 | 87f722bcb0feaec7fad29d923c60681cf9584267 | 310bcb5f6d9a6623bb58ed3d1ad02d1f440da474 | refs/heads/master | 2020-03-09T22:52:08.171500 | 2018-04-01T10:13:50 | 2018-04-01T10:13:50 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,108 | h | // ------------------------------------------------------------
// Copyright (c) 2017-preseent, SeetaTech, Co.,Ltd.
//
// Licensed under the BSD 2-Clause License.
// You should have received a copy of the BSD 2-Clause License
// along with the software. If not, See,
//
// <https://opensource.org/licenses/BSD-2-Cla... | [
"ting.pan@seetatech.com"
] | ting.pan@seetatech.com |
f81a1df9709d95e5145cd1b3b0ec26add599c567 | 68984cbb4191be1192daa6e7de3e3ff6b1acc4ce | /settings.cpp | 9fbd42236893b1cf656fa386f1b09964d8fa59ee | [] | no_license | xibeilang524/AntScope2 | 6699ef351c0d30f1d0649ed6d0b2823a53271c8a | 017bb23a5e58166f21358bf721a5f03db1c97ff0 | refs/heads/master | 2020-07-03T11:03:33.446503 | 2019-06-15T19:27:53 | 2019-06-15T19:27:53 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 33,490 | cpp | #include "settings.h"
#include "ui_settings.h"
#include "popupindicator.h"
#include "analyzer/customanalyzer.h"
#include "fqinputvalidator.h"
extern QString appendSpaces(const QString& number);
QString Settings::iniFilePath;
Settings::Settings(QWidget *parent) :
QDialog(parent),
ui(new Ui::Settings),
m_an... | [
"serg.butenko@gmail.com"
] | serg.butenko@gmail.com |
e1f8ad89e29e2b00c2733d0764fcea9c099022ca | 8730ff90ba4d16476f8c2da6de34d8e8817bd5b4 | /OOP345/W3_Class Templates/345_w3.cpp | 20627c4d7476a0f30bee75bda1bc1a7ab753252d | [] | no_license | muratbir/Seneca_College | 1d0da9c3845426dd761e510fe942c0d0c97add19 | b8f718123dbc9915a17c03821a2a10ec26136ace | refs/heads/master | 2020-08-01T11:10:23.163943 | 2019-04-17T21:37:59 | 2019-04-17T21:37:59 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,726 | cpp | // Workshop 3 - Class Templates
// 345_w3.cpp
// Chris Szalwinski
// 2018.05.17
#include <fstream>
#include <iostream>
#include <iomanip>
#include <string>
#include "KVList.h"
//#define CONSOLE
#ifndef CONSOLE
#define SOURCE input
#else
#define SOURCE std::cin
#endif
// display list of key-value pairs
//
template <ty... | [
"nickyoon89@gmail.com"
] | nickyoon89@gmail.com |
ca8a006d7dbed76702828783db00a35317d6f5e6 | 1763177bd131827bb6e2c8377fd429dca1d30f02 | /pathmet/firmware/source/pc.hpp | 76b8e030c48c8295cc7fe0b49c07944b9e4cd78d | [] | no_license | pathVu/pathmetarcgis | 79d3cd66aeefb30b457eac656299c8e923262499 | ec48e834a2e13de4af2ad3a31ef7a660a5a49a18 | refs/heads/master | 2023-03-16T06:16:32.945099 | 2021-03-11T17:51:26 | 2021-03-11T17:51:26 | 267,865,641 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,197 | hpp | #pragma once
#include <cstdint>
#include "circular_buffer.hpp"
extern "C" void pc_on_rx(const uint8_t*, uint32_t);
extern "C" uint32_t pc_tx_pending(void);
extern "C" void pc_get_tx(uint8_t* data, uint32_t size);
class PC {
public:
PC();
void init();
void update();
void write(const uint8_t* da... | [
"cjr105@case.edu"
] | cjr105@case.edu |
c62f80492f255988842e2647148eb7bac44a3aef | 3a4f120f3211a1482b8ba826f4922fa741c5586e | /ip/Pmods/PmodWIFI_v1_0/drivers/PmodWIFI_v1_0/examples/HTTPServer/ProcessClient.cpp | 9fb794141743739c3b41ae26131800ede7ea66a1 | [
"MIT"
] | permissive | Digilent/vivado-library | 7135129c7e4fec84d17e1fe037598bd2124085eb | cbfde215a27053004cb41d85535c4a1bd1673e14 | refs/heads/master | 2023-09-05T22:04:31.189589 | 2023-08-22T17:23:00 | 2023-08-22T17:23:46 | 46,139,497 | 512 | 327 | MIT | 2023-08-22T17:23:47 | 2015-11-13T18:23:02 | C | UTF-8 | C++ | false | false | 23,728 | cpp | /************************************************************************/
/* */
/* ProcessClient.cpp */
/* */
/* A chipKIT WiFi... | [
"tom.kappenman@wsu.edu"
] | tom.kappenman@wsu.edu |
d8ff64d8a35a2a3b012b947ef940caf2bcd9ad74 | 98ef9f82f45320df070f670eac258c8365113642 | /nowcoder/剑指offer/和为s的两个数.cc | 463c49195bf09011126b28db94a1e86c0135ffc6 | [] | no_license | FrankWork/LeetCode | abbf6125b57e143073f89daf5cbcbd8ff67bb78b | 6ec0c0d43cf4e8ef968051a4d125c4965d58e4f5 | refs/heads/master | 2021-01-22T07:27:43.963950 | 2018-11-12T08:44:18 | 2018-11-12T08:44:18 | 39,978,490 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 562 | cc | #include <iostream>
#include <vector>
#include <cstdio>
#include <cmath>
#include <algorithm>
using namespace std;
class Solution {
public:
vector<int> FindNumbersWithSum(vector<int> &nums,int sum) {
int l=0,r=nums.size()-1;
vector<int> res;
while(l<r){
int t=nums[l]+nums[r];
... | [
"lzh00776@163.com"
] | lzh00776@163.com |
4f82b2e7cb0c29608f1433c6d267f4f3355501e1 | e1402bc56b5eba90bcdd956a04f5571d89a7d100 | /skgrader/maxflow.cxx | 43c7076893fdb80bf626c60d12e64701615c04bc | [] | no_license | markverick/ioi-training | 5dc9248ad394de0272abafb54d52d90c5073fb27 | 57a15aa332a908b6044a8cb90b3c0b660ff13ae4 | refs/heads/master | 2018-12-13T01:28:01.326534 | 2018-10-23T18:26:04 | 2018-10-23T18:26:04 | 148,653,348 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,416 | cxx | #include<bits/stdc++.h>
#define X first
#define Y second
#define MP make_pair
#define EB emplace_back
#define MI 1000000000
using namespace std;
vector<int> adj[50135];
int s,t,n;
int state[50135];
int hsh[50135],result[50135];
vector<pair<int,int> > v;
inline void dfs(int idx,int cot,int p,int mul)
{
... | [
"sirapop741@gmail.com"
] | sirapop741@gmail.com |
738864566d92b9a12f711be5579328f925b9608b | 19765034e3c1e8968b4108c621e39b5bd509675e | /nuevo/automata-01pares/main.cpp | 176329ca660dee3e750d9c63f39eff325a745102 | [] | no_license | marco-gallegos/estructura-de-datos-2 | e30086c2606c033187cad24d8b46053598a1b0d5 | e85589705c1dbed4f7cc9728991407fc94b68780 | refs/heads/master | 2022-07-06T16:51:13.937772 | 2022-06-24T08:52:07 | 2022-06-24T08:52:07 | 32,251,992 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,187 | cpp | #include <QCoreApplication>
#include<iostream>
using namespace std;
// automata finito determinista que reconoce ceros y unos pares.
int tipoSimbolo(char c); //funcion para regresar el tipo de simbolo
int main()
{
//QCoreApplication a(argc, argv);
int matriz [][3]={//matriz de transiciones
{2,1,4},//q... | [
"ma_galeza@hotmail.com"
] | ma_galeza@hotmail.com |
ab2ff198ba858ac5148f30d91b4873afed2c1081 | 1dbf007249acad6038d2aaa1751cbde7e7842c53 | /cdn/include/huaweicloud/cdn/v1/model/CreateDomainResponseBodyContent.h | b43487ca7ac9481e6648218291e7981de8579dbf | [] | permissive | huaweicloud/huaweicloud-sdk-cpp-v3 | 24fc8d93c922598376bdb7d009e12378dff5dd20 | 71674f4afbb0cd5950f880ec516cfabcde71afe4 | refs/heads/master | 2023-08-04T19:37:47.187698 | 2023-08-03T08:25:43 | 2023-08-03T08:25:43 | 324,328,641 | 11 | 10 | Apache-2.0 | 2021-06-24T07:25:26 | 2020-12-25T09:11:43 | C++ | UTF-8 | C++ | false | false | 7,041 | h |
#ifndef HUAWEICLOUD_SDK_CDN_V1_MODEL_CreateDomainResponseBodyContent_H_
#define HUAWEICLOUD_SDK_CDN_V1_MODEL_CreateDomainResponseBodyContent_H_
#include <huaweicloud/cdn/v1/CdnExport.h>
#include <huaweicloud/core/utils/ModelBase.h>
#include <huaweicloud/core/http/HttpResponse.h>
#include <huaweicloud/cdn/v1/model/S... | [
"hwcloudsdk@huawei.com"
] | hwcloudsdk@huawei.com |
0fc664c413a14a57916edfe97d57e740344a6756 | ea13d60ca2b530a339d48e677723d35492d9177c | /02_module/ABKCommon/src/mmapStreamBuf.cxx | 9c733e0b8c0b30f6f4c426433fa48ad0f8c73923 | [
"MIT"
] | permissive | gledr/SMT_MacroPlacer | dab3e929b3edbb6bc346f9b9f9a44d76fd258239 | b5b25f0ce9094553167ffd4985721f86414ceddc | refs/heads/master | 2023-01-31T09:11:25.763888 | 2020-12-18T08:52:00 | 2020-12-18T08:52:00 | 251,312,468 | 5 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,808 | cxx | /**************************************************************************
***
*** Copyright (c) 1995-2000 Regents of the University of California,
*** Andrew E. Caldwell, Andrew B. Kahng and Igor L. Markov
*** Copyright (c) 2000-2010 Regents of the University of Michigan,
*** Saurabh N... | [
"sebastian.pointner@jku.at"
] | sebastian.pointner@jku.at |
d97aa36e36fb812d4f7e70d1d6e32c9d5b85a952 | 3d0021b222ddd65b36e61207a8382e841d13e3df | /adpcm.cpp | d6f3f0672247e4dfbbfcf3a6b9cefed8f550a0a5 | [] | no_license | default0/zeldablackmagic | 1273f5793c4d5bbb594b6da07cf70b52de499392 | f12078b4c3b22d80077e485657538398e8db3b0f | refs/heads/master | 2021-01-10T11:54:31.897192 | 2010-02-10T19:23:04 | 2010-02-10T19:23:04 | 51,330,005 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,127 | cpp |
/*
#include "common.h"
#include "adpcm.h"
// <pSXAuthor> you use the decoder class like:
// <pSXAuthor> adpcm::decoder d;
// <pSXAuthor> signed short buffer[...number of pcm bytes....];
// <pSXAuthor> packet *p=... pointer to start of adpcm data ...;
// <pSXAuthor> signed short *ptr=buffer; while ((p->flag... | [
"MathOnNapkins@99ff0a3e-ee68-11de-8de6-035db03795fd"
] | MathOnNapkins@99ff0a3e-ee68-11de-8de6-035db03795fd |
e1fd04e20dc1b10808c6f81fdb6131150365118a | 9e4a00de1ec07e7e88872ef60c42a49bf65dc2b0 | /Code/Libraries/Audio/src/soloudaudiosystem.h | 906a0b9468f16f3c257eafb887e9076749ae976a | [
"Zlib"
] | permissive | ptitSeb/Eldritch | 6a5201949b13f6cd95d3d75928e375bdf785ffca | 3cd6831a4eebb11babec831e2fc59361411ad57f | refs/heads/master | 2021-07-10T18:45:05.892756 | 2021-04-25T14:16:19 | 2021-04-25T14:16:19 | 39,091,718 | 6 | 4 | NOASSERTION | 2021-04-25T14:16:20 | 2015-07-14T18:03:07 | C | UTF-8 | C++ | false | false | 2,705 | h | #ifndef SOLOUDAUDIOSYSTEM_H
#define SOLOUDAUDIOSYSTEM_H
#include "audiosystemcommon.h"
#include "map.h"
#include "set.h"
#include "list.h"
#include "hashedstring.h"
#include "array.h"
#include "interpolator.h"
#include "simplestring.h"
#include "soloud.h"
#include "soloud_echofilter.h"
struct SoLoudPr... | [
"rajdakin@gmail.com"
] | rajdakin@gmail.com |
b7579e4cad8fbd259e5d5ee0cb9b61d6f66fb2a0 | 99cfd2020e2984f2d463978b5a134a2f1081d094 | /shashank/prime_till_n.cpp | f7350454f60dfaa406fb4b2ff0254e4b33954b5c | [
"MIT"
] | permissive | sekharkaredla/Cpp_Programs | 5e33ff5ee7a15fa6582d7d9319a78b3c19071b2a | e026d3322da5913e327033cb5d4787665998aef3 | refs/heads/master | 2021-05-09T07:07:51.674806 | 2018-01-29T08:12:23 | 2018-01-29T08:12:23 | 119,348,800 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 768 | cpp | #include<iostream>
using namespace std;
class num
{
int n,i,r,j,flag;
public:
void getdata()
{
cout<<"enter a number :";
cin>>n;
}
void loop()
{
for(i=1;i<=n;i++)
if(prime(i)==1)
cout<... | [
"sekhar.karedla@gmail.com"
] | sekhar.karedla@gmail.com |
baa4a7b7aed99f3503fdbb87f14ea0cec2d195dd | 64c6a76143ee2cbef6568865c032805d1536da60 | /sources/Bitmap.h | 78acaa8f01497a097b7895eb92b7379b4c326937 | [] | no_license | HaikuArchives/DwarfEngine | 5a6c2a2fbf7ff00191b26a261be146c7b21934ae | 51d772c23fba96c335a0de95c6dd40a3daa1ed28 | refs/heads/master | 2021-05-07T15:35:25.346098 | 2017-11-08T21:26:09 | 2017-11-08T21:26:09 | 110,032,368 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 3,159 | h | #ifndef D_BITMAP_H_
#define D_BITMAP_H_
/*
* The Dwarf Engine 3D Library
* copyright (c) 2000
*
* #include <license.txt>
*
*/
#include "Defs.h"
#include "Array.h"
#include "String.h"
#include "Buffer.h"
#include "Serializable.h"
#ifdef WIN32
// IGNORE is defined in winbase.h
#undef IGNORE
#end... | [
"waddlesplash@gmail.com"
] | waddlesplash@gmail.com |
3586587aa1a3a2bc352c177a3dea740ac705451b | 7a572c43d35f9f5bf026268ea36493f82e206846 | /jsoncpp/json_reader.cpp | e6d620e83ec266d072d6f15d9439b355a13957d0 | [] | no_license | xu561865/Test_Mac | f674cbd5c484b90135b8e5b46e951dc5f4cc6c09 | ff51c667d7f88ca976e948761e37ff329a4eb4b3 | refs/heads/master | 2021-01-10T01:20:38.259352 | 2016-09-09T09:22:43 | 2016-09-09T09:22:43 | 47,551,617 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 20,319 | cpp | #include "json/reader.h"
#include "json/value.h"
#include <utility>
#include <cstdio>
#include <cassert>
#include <cstring>
#include <iostream>
#include <stdexcept>
#if _MSC_VER >= 1400 // VC++ 8.0
#pragma warning( disable : 4996 ) // disable warning about strdup being deprecated.
#endif
namespace Json {
// Implem... | [
"xuyi561865@sina.com"
] | xuyi561865@sina.com |
acb1c79617ba4d2a9f928ef6efb7b0951d68fff2 | 4efd3bf53b563d06d98a5938fea0f9d758b006ad | /src/SynthLib2ParserExceptions.cpp | 0d44c8b0855d0ac662b649f885c2cdf836a81187 | [
"BSD-2-Clause"
] | permissive | sygus-tools/synthlib2parser | 7004903eec704138568b749414d2e0b8a5a0f3bd | a1e409024d7c9d64b5e986c9ef34242005c68250 | refs/heads/master | 2020-07-15T00:19:27.233199 | 2017-07-03T09:15:52 | 2017-07-03T09:15:52 | 94,301,766 | 3 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 3,271 | cpp | // SynthLib2ParserExceptions.cpp ---
//
// Filename: SynthLib2ParserExceptions.cpp
// Author: Abhishek Udupa
// Created: Sat Jan 18 16:42:40 2014 (-0500)
//
//
// Copyright (c) 2013, Abhishek Udupa, University of Pennsylvania
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or ... | [
"ammarbenkhadra@gmail.com"
] | ammarbenkhadra@gmail.com |
6cf8759f99479d0502629df24bada59371f70329 | 907ed11cf4d9b01483a31b582dd1fc9e739d5801 | /include/donutbreakdownchart.h | 1b4162703da3ab3034f5e936912b25e45e75d240 | [] | no_license | YmiR1710/BachelorWork | beacc265a102f345e47f1b99e481c3157bac712c | ae7449196a79c1cca9ae72e2d16f3c254fa55a1d | refs/heads/master | 2023-04-30T07:44:33.034982 | 2021-06-01T07:41:26 | 2021-06-01T07:41:26 | 337,137,522 | 0 | 0 | null | 2021-04-10T09:40:36 | 2021-02-08T16:29:06 | C++ | UTF-8 | C++ | false | false | 485 | h | #ifndef DONUTBREAKDOWNCHART_H
#define DONUTBREAKDOWNCHART_H
#include <QtCharts/QChart>
#include <QtCharts/QPieSeries>
QT_CHARTS_USE_NAMESPACE
class DonutBreakdownChart : public QChart
{
Q_OBJECT
public:
DonutBreakdownChart(QGraphicsItem *parent = nullptr, Qt::WindowFlags wFlags = {});
void addBreakdownSe... | [
"volianskyi@ucu.edu.ua"
] | volianskyi@ucu.edu.ua |
3bc0053c231a2be9bbe66e04124b9e0bc133993b | c7d44569192c48c84b9cca6d62286c04e9cb6468 | /include/process.h | 50a7758eb956b1d7cf967e7cb396a0e9710c678e | [
"MIT"
] | permissive | ddonco/CppND-System-Monitor | 5efb6be93dd385ddfdd8b436c036b32f798d5d7e | 45e54aacdce1838d3ebe1cadf9df603f5d9c85a1 | refs/heads/master | 2021-01-03T17:48:18.402566 | 2020-02-17T00:10:33 | 2020-02-17T00:10:33 | 240,176,500 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 491 | h | #ifndef PROCESS_H
#define PROCESS_H
#include <iostream>
#include <string>
/*
Basic class for Process representation
It contains relevant attributes as shown below
*/
class Process {
public:
Process(int pid = 0) : pid_(pid) { cpuUtil_ = this->CpuUtilization(); }
int Pid();
std::string User();
std::string Comm... | [
"donohue.d.f@gmail.com"
] | donohue.d.f@gmail.com |
7f1eb5d6903b82883f90e5c0b9fd33bd6e69f481 | 4130b36e09feb24f16bdbbc1fa3e1d6659c0d439 | /congcongclient/Classes/ClientHN_THJ/Game/MENJI/Setting/TLJSettingPanel.h | 573b82f7e119e1d5240753b0752ef0ea1b85d526 | [
"MIT"
] | permissive | cnceo/18_TTL | b48eaf46f93b289047769a89bbdb749c14720a42 | c8fc3fe7b7a0acad2b2cb5e80e96219b6257f0e4 | refs/heads/master | 2020-04-09T04:01:14.354570 | 2018-12-01T06:44:23 | 2018-12-01T06:44:23 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 752 | h | #pragma once
#include "CommonHeader/CommonHeader.h"
#include "GUI/CCControlExtension/CCControl.h"
#include "SimpleAudioEngine.h"
#include "Game/Script/SoundFun.h"
USING_NS_CC_EXT;
class TLJSettingPanel
: public cocos2d::Node
, public FvSingleton<TLJSettingPanel>
{
public:
TLJSettingPanel();
~TLJSettingPanel();
... | [
"taotingfu819@163.com"
] | taotingfu819@163.com |
877a6543eb81dd20377918dccda685f363e64b2d | 7a01fb04eda4110409e65f8880520bc4fcb8f4a6 | /Volume_100/10009.cpp | b7a5d23c38a3015d821685ffddd4d2e0626c48fc | [] | no_license | rawsk/AOJ | 392ee01226181163bc947645adc1e3cc70ca71ac | 2fbfd8cff3a824e539ed9896971ccdfa862a2d51 | refs/heads/master | 2021-05-31T22:25:32.637611 | 2016-06-23T08:24:40 | 2016-06-23T08:24:40 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 177 | cpp | #include <iostream>
#include <cmath>
#include <iomanip>
using namespace std;
int main(){
double r;
cin>>r;
cout<<fixed<<setprecision(5)<<r*r*M_PI<<" "<<2*r*M_PI<<endl;
}
| [
"jumpei@MacBook-Air.local"
] | jumpei@MacBook-Air.local |
233a9057287fa14ee25d091c2763ef9015a7285a | 889eeb8faad7f6e35d836ab353962b9202b47cd2 | /other/CppAlgs/mLib/mLibBinaryTree.cpp | 4c123c8f2b3b51270b90454ae945d9d6f707c811 | [] | no_license | blacksea3/Cpp-STL-test | 36e6bfb066b0a489796f002f83da8afa6ccc50d7 | 897a54149a8a84262b890505f400dcfb2938876f | refs/heads/master | 2020-06-08T12:26:53.438569 | 2020-02-12T03:17:16 | 2020-02-12T03:17:16 | 193,228,023 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 793 | cpp | #include "mLibBinaryTree.hpp"
#include <map>
namespace mLib
{
void mLibBinaryTreeClassTest()
{
mbinary_searchtree<int> mbs;
cout << mbs.remove(3) << endl;
mbs.inorder();
cout << endl;
cout << mbs.insert(3) << endl;
cout << mbs.insert(2) << endl;
cout << mbs.insert(1) << endl;
cout << mbs.insert(4) <... | [
"17865191779@163.com"
] | 17865191779@163.com |
ceabd88f700a98ebf520193f2f77ab05b38c406e | 494fd6214560ce59db881f2614b7820bd092349f | /Source/ZTGame/ZTGameProjectile.cpp | d8714ff37725e66f2af00a34397b1c301c5ef391 | [] | no_license | ShuTheWise/ZTGame | 4d0437feb1a76244879c2fa42e73f84bb304ccef | 8d32f4b4dba4a47624513326589accb22b8ec721 | refs/heads/master | 2020-06-24T08:21:09.085098 | 2019-07-30T08:55:46 | 2019-07-30T08:55:46 | 198,910,886 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,857 | cpp | // Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
#include "ZTGameProjectile.h"
#include "DestructibleCube.h"
#include "GameFramework/ProjectileMovementComponent.h"
#include "Components/SphereComponent.h"
AZTGameProjectile::AZTGameProjectile()
{
// Use a sphere as a simple collision representation
Collis... | [
"wookie.kandziora@gmail.com"
] | wookie.kandziora@gmail.com |
cc7fc05529d4280deda0c015110013d2af4c5b8b | ed1cd6b5bf756de2ae9e10e0a50b8a5908b7bbae | /src/PotThrowingApp.cpp | 7d894a099c3df1d8caec086b515f4dd6e6afb14b | [] | no_license | benthejack/PotThrowing | d5ae00f6f5fde78a0617262cf1df1be0b8e4936b | c69c5af6faa67eee5cf4718b8612058420f361e1 | refs/heads/master | 2020-04-15T22:48:00.882328 | 2013-07-16T04:46:30 | 2013-07-16T04:46:30 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,651 | cpp | #include "cinder/app/AppBasic.h"
#include "cinder/gl/gl.h"
#include "TubeGenerator.h"
#include "GeometryRenderer.h"
#include "LayerManager.h"
using namespace ci;
using namespace ci::app;
using namespace std;
using namespace EyeCandy::GeomUtils;
using namespace EyeCandy::GfxUtils;
class PotThrowingApp : public AppBa... | [
"benthejack@gmail.com"
] | benthejack@gmail.com |
711ece853d3b92e98e9c3022aa53d02f135a52cb | c9ee04b6f891c9aec01ce78b0ce939e4188e0c48 | /ping-pong/pong/pong.ino | ebd2e72dcddb6e2efcc45591f80298e40f64ae09 | [] | no_license | grzsud13/tinybrd-examples | 9ca6a6be897939e9fd919ffe6f1cad17bcf859e6 | 5243be51d079bcb2eed7f1e5443f8e01d5ac7f87 | refs/heads/master | 2021-01-18T02:15:05.427511 | 2016-07-29T15:33:30 | 2016-07-29T15:33:30 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 720 | ino | #include <SPI.h>
#include <Radio.h>
#define LED 1
void lightOn(unsigned tme = 1000) {
digitalWrite(LED, LOW);
delay(tme);
digitalWrite(LED, HIGH);
delay(tme);
}
void setup() {
// put your setup code here, to run once:
byte address[3] = {1, 0, 0};
Radio.begin(address, 100);
pinMode(LED, OUTPUT);
... | [
"rugowski@nhw.pl"
] | rugowski@nhw.pl |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.