blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 6 201 | content_id stringlengths 40 40 | detected_licenses listlengths 0 26 | license_type stringclasses 2
values | repo_name stringlengths 7 95 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 57
values | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 197k 639M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 11
values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 34
values | src_encoding stringclasses 18
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 2
classes | length_bytes int64 11 9.86M | extension stringclasses 27
values | content stringlengths 11 9.86M | authors listlengths 1 1 | author stringlengths 0 70 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
00cb46bc97de1d19ecfa25b34949dc7884ca9d6f | 3f80cc69cbe4ef9764aa55f7d823e6fc70ed77fe | /ISU/ISeeYou/Aflevering5/Lecture5_exercises/Opg3/MsgQueue.h | b92846f92b4ae89a7f157cd0c7771a741014db60 | [] | no_license | Epokhz/ISU_Stuffz | 6e2836b92c43140d4545ae07a14f5afb10ffa4ae | ebf3a67342c0f4208f008ac5c56b147df7ab00c3 | refs/heads/master | 2020-05-25T22:55:12.308441 | 2019-05-22T12:01:31 | 2019-05-22T12:01:31 | 188,024,077 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 638 | h | #include "Message.h"
#include <queue>
#include <pthread.h>
using namespace std;
class MsgQueue
{
public:
MsgQueue (unsigned long maxSize);
void send (unsigned long id, Message *msg = NULL);
Message *receive(unsigned long id);
~MsgQueue();
private:
struct Item
{
unsigned long int id_;
Message *msg_;
};
... | [
"au590540@uni.au.dk"
] | au590540@uni.au.dk |
b571a3d45d7c4995e667bb3034afa285c87bce53 | 3cf9e141cc8fee9d490224741297d3eca3f5feff | /C++ Benchmark Programs/Benchmark Files 1/classtester/autogen-sources/source-15629.cpp | 521c01bfaaebf779f7e34915df9ae5ab3133ce1c | [] | no_license | TeamVault/tauCFI | e0ac60b8106fc1bb9874adc515fc01672b775123 | e677d8cc7acd0b1dd0ac0212ff8362fcd4178c10 | refs/heads/master | 2023-05-30T20:57:13.450360 | 2021-06-14T09:10:24 | 2021-06-14T09:10:24 | 154,563,655 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 3,008 | cpp | struct c0;
void __attribute__ ((noinline)) tester0(c0* p);
struct c0
{
bool active0;
c0() : active0(true) {}
virtual ~c0()
{
tester0(this);
active0 = false;
}
virtual void f0(){}
};
void __attribute__ ((noinline)) tester0(c0* p)
{
p->f0();
}
struct c1;
void __attribute__ ((noinline)) tester1(c1* p);
struct c1 : virtual... | [
"ga72foq@mytum.de"
] | ga72foq@mytum.de |
a631cc5eefacd3539d84f004049a18bf1c087094 | 25ed526bb3961c406d843a3b3bdc5cc8871548fc | /cli/src/cli_command.cpp | 2583bdf67e08096fd33301cf52e384a504ac78c8 | [
"MIT"
] | permissive | kravtsun/au-sd | a31ce5900bd61e638e9aca9544be7e8f1bbcdafe | 23522ef932ccab76c6cb74faf6b9ce7dd438d6fc | refs/heads/master | 2020-04-06T03:58:21.776648 | 2017-05-23T20:41:53 | 2017-05-23T20:41:53 | 83,093,236 | 0 | 1 | null | 2017-06-08T21:27:43 | 2017-02-25T00:04:44 | C++ | UTF-8 | C++ | false | false | 208 | cpp | #include "cli_command.h"
namespace cli {
Command::Command(std::istream &is, std::ostream &os, const Command::ParamsListType ¶ms)
: is_(is)
, os_(os)
, params_(params)
{}
} // namespace cli
| [
"kravtsun@cvisionlab.com"
] | kravtsun@cvisionlab.com |
3bfa7af1c3160e63b3cf95caa9d5f8a446a4298a | 07ab8948c7dcf9ab6c76d93425ea377ada6be7b1 | /BRACU ACM Student Chapter/Online Workshop on Programming Skills DAY 02 ( C++ ) BRACU Number Theory/E.cpp | 352257b26972efaaec46794882582fe55d880e97 | [] | no_license | tanviranindo/Contest | 269ef5a17a64edff2e6ee61df5e5df1296093f51 | 68cc8070074cc1a076dde9c0454cbcace265d597 | refs/heads/master | 2023-04-22T11:15:15.711816 | 2021-04-29T19:27:34 | 2021-04-29T19:27:34 | 258,791,450 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 424 | cpp | #include<bits/stdc++.h>
using namespace std;
int gcd(int a, int b)
{
if (b == 0) return a;
else return gcd(b, a % b);
}
int main()
{
int N;
while(scanf("%d",&N)!=0)
{
int G=0;
if(N==0) break;
for(int i=1; i<N; i++)
{
for(int j=i+1; j<=N; j++)
{... | [
"tanviranindo@gmail.com"
] | tanviranindo@gmail.com |
d68b65ac59b4f999a6be557bae5b9de10d395f30 | 96a390c14952a07729906880594b7be1f8732b09 | /chrome/browser/chromeos/full_restore/arc_app_launch_handler.cc | 373d911b24404e11f83f74dfa5d61cf397781c35 | [
"BSD-3-Clause"
] | permissive | elielvipata/chromium-1 | 92d56e426729e32998c6bc2ced02d878face54c8 | 30066dc36c595ae0450ad93b5de8ad0554fcd427 | refs/heads/master | 2023-06-17T15:46:44.373673 | 2021-07-12T14:36:22 | 2021-07-12T14:36:22 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 20,711 | cc | // Copyright 2021 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/chromeos/full_restore/arc_app_launch_handler.h"
#include <utility>
#include <vector>
#include "ash/shell.h"
#include "base/call... | [
"chromium-scoped@luci-project-accounts.iam.gserviceaccount.com"
] | chromium-scoped@luci-project-accounts.iam.gserviceaccount.com |
10b58fd0526b4f042758d76f78318c6c90c8fc89 | 4e2d90ef3b17872ea3f4fc16832fb8815ffef985 | /LongestPelindromeSubstring.cpp | 7c1ce9177d02216663e41dfc75ea21e507a8c2ea | [] | no_license | shyam2797/DynamicProgramming | 16230065535dde0d86cb8eb078248b1ae03cdb7e | 8a7d4b2dde3c8c80c9e54f791c057a822fa74de1 | refs/heads/master | 2022-12-11T10:00:48.295336 | 2020-09-05T17:32:57 | 2020-09-05T17:32:57 | 290,374,350 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 785 | cpp | #include<bits/stdc++.h>
using namespace std;
int main()
{
int arr[]= {5,3,2,6,4,4,6,2,1,2,1,2,1,2,1,2,1,2};
int Size=sizeof(arr)/sizeof(arr[0]);
int S[Size][Size],Max=1;
for(int i=0; i<Size; i++)
{
S[i][i]=1;
}
for(int i=0; i<Size-1; i++)
{
if(arr[i]=arr[i+1])
{
... | [
"shyamsaini2797@example.com"
] | shyamsaini2797@example.com |
1f956bd0962526e7ac39cbb7b2714d3fce757ed0 | 45f2519ef788a2a88b509d913c8eeafafd249661 | /textureBMP.cpp | 78c5515999b83a86afc4356fa5c8ba563eee9ad9 | [] | no_license | ziniewiczp/OpenGL-Escalator | f14b118bad0980c99c935c15fbc7e88af891c874 | 7934cb2a75e133421f37814e7c7e8378cbfd6b72 | refs/heads/master | 2021-01-22T08:27:54.290050 | 2017-06-20T06:24:33 | 2017-06-20T06:24:33 | 92,615,921 | 0 | 1 | null | null | null | null | WINDOWS-1250 | C++ | false | false | 4,346 | cpp | /*
BMP texture loader
© Keith O'Conor 2005
keith.oconor @ {cs.tcd.ie, gmail.com}
*/
#include "textureBMP.h"
#include "glut.h"
textureBMP::textureBMP(const char *filename, const int textureId, const bool stereoMode){
byte *fileData;
BITMAPFILEHEADER fileHeader;
BITMAPINFOHEADER infoHeader;
... | [
"ziniewicz.p@gmail.com"
] | ziniewicz.p@gmail.com |
006ee2413eea0048e7c2c2f6503e50c513d8612b | 125aadd932577dea65634b86692769faca9ef97a | /thirdparty/ezEngine/Foundation/Reflection/Implementation/ReflectionUtils.cpp | 19325f07aeeae5bccecdd6da9cdd710628375238 | [] | no_license | Manuzor/LispCpp | f4a5904c0d528fee75c79d1703f71a58aed94a1e | d51d5a6b0356bb213d9994c8b782e00799fc025d | refs/heads/master | 2021-01-25T09:59:27.752495 | 2014-10-28T22:51:11 | 2014-10-28T22:54:16 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,253 | cpp | #include <Foundation/PCH.h>
#include <Foundation/Reflection/ReflectionUtils.h>
namespace
{
struct GetValueFunc
{
template <typename T>
EZ_FORCE_INLINE void operator()()
{
m_Result = static_cast<const ezTypedMemberProperty<T>*>(m_pProp)->GetValue(m_pObject);
}
const ezAbstractMemberProper... | [
"mjmaier@gmx.de"
] | mjmaier@gmx.de |
1ba9c75171bfa31b26dba5edee8d552f59a5a3c2 | 0d77a0d7f64033ca5e783e59cae53dda0fe5edf8 | /test/Scanf_main.cpp | d19006c934e77de936417893d3d5a5fe38d34164 | [] | no_license | wulincong/CPP | 6bb4a7c740d145bfcda8668904b217083bc6ce0c | 91395d734224a860ea161cff92daf22040f223c4 | refs/heads/master | 2023-04-28T05:54:21.011192 | 2023-04-22T01:02:24 | 2023-04-22T01:02:24 | 215,239,177 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 178 | cpp | #include "Scanf.h"
int main(int argc, char *argv[]){
char ch;
FILE *fp = fopen("Test.txt","r");
Scanf(fp, "%c",&ch);
printf("%c",ch);
return 0;
}
| [
"2389170337@qq.com"
] | 2389170337@qq.com |
c72b4012e80a65b4f1747b396ef9c624dcc84d32 | 087a0db88dee2c805d7999d43683b3e63e6623b5 | /Source/AnimalEffect/Environment/Tree.h | 82c2a18539619447d1b13d3ba934690fc7d46b0c | [] | no_license | Cobryis/AnimalEffect | 5bd061e87f93f2e74b489364e5d7869166c8c54b | 6ab38abe62c32fb8efe2fb6a63a973a1a17ee960 | refs/heads/master | 2023-01-05T05:16:22.550053 | 2020-10-17T16:15:48 | 2020-10-17T16:15:48 | 268,434,064 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 817 | h | // Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "Data/AEDataAsset.h"
#include "WorldGrid/WorldGridInterface.h"
#include "GameFramework/Actor.h"
#include "Tree.generated.h"
UCLASS()
class ANIMALEFFECT_API UTreeAsset : public UAEMetaAsset
, public IWorldGridInterface
{
GENERATED_BODY()
U... | [
"cobryis@gmail.com"
] | cobryis@gmail.com |
7e566a48d32f24053a484761419a4863ae385a91 | 0e4c9cf77219cde772f1d21cf30bf5c8e7b9a3b4 | /437.PathSumIII/MarkCSIE/PathSumIII/main.cpp | d1d39e8780628e972a6848b7dff8900065a70d18 | [] | no_license | LeetCodeBreaker/LeetCode | be25aa3ac2176083440dd27ce15c532e99e85e61 | 00a5ee2fc9ad38f34bb37ed64820a286057ff728 | refs/heads/master | 2021-01-17T03:48:36.961178 | 2020-06-07T15:24:49 | 2020-06-07T15:24:49 | 37,640,193 | 5 | 2 | null | 2015-07-15T15:29:21 | 2015-06-18T05:52:36 | C | UTF-8 | C++ | false | false | 1,504 | cpp | #include <iostream>
// Definition for a binary tree node.
struct TreeNode {
int val;
TreeNode *left;
TreeNode *right;
TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
};
class Solution
{
public:
int pathSum(const TreeNode* root, const int &sum)
{
if (root == nullptr)
{
return 0;
... | [
"markcsie@gmail.com"
] | markcsie@gmail.com |
aaef63bbde57e0da771a6684f4d0259df7b36dfb | ba8f56b4292be78b6df3cd423497f1962f855965 | /Frameworks/JuceModules/juce_gui_basics/native/juce_linux_X11_Windowing.cpp | 9c34f09ae183783e5dd1f7b39d13253d14cdf9ed | [
"MIT"
] | permissive | Sin-tel/protoplug | 644355f4dbf072eea68ac1e548f9f164b1364cc4 | 236344b1c3b1cc64d7dc01ea0c0c2a656bdc4ba1 | refs/heads/master | 2023-09-01T00:45:02.745857 | 2023-08-15T22:54:52 | 2023-08-15T22:54:52 | 151,246,506 | 17 | 4 | NOASSERTION | 2018-10-02T11:54:37 | 2018-10-02T11:54:37 | null | UTF-8 | C++ | false | false | 142,850 | cpp | /*
==============================================================================
This file is part of the JUCE library.
Copyright (c) 2017 - ROLI Ltd.
JUCE is an open source library subject to commercial or open-source
licensing.
By using JUCE, you agree to the terms of both the JUCE 5 End-User Lic... | [
"pierre@osar.fr"
] | pierre@osar.fr |
c4bc97c97cfe5ef90c39d2f1e74d27227bee87f0 | 2deb357c9708a98f629e356df640d1b9e812aa60 | /budujemy/main.cpp | 16bc729d05bdf94385260c9f1505c9cdcf6694c9 | [] | no_license | majkimge/CompetitiveProgrammingCode | 149f2eaae4763db16a6bef143ca037e46a5f3085 | d250be7703ad56072e914c2426f86b22305b3ac4 | refs/heads/main | 2023-01-20T07:30:36.769917 | 2020-11-24T16:51:07 | 2020-11-24T16:51:07 | 315,691,829 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 745 | cpp | #include <bits/stdc++.h>
#define lld long long
#define pb push_back
#define MAX 100009
#define INF 2000000000
using namespace std;
lld n,a,best;
lld wys[MAX];
lld koszt[MAX];
lld wyny[MAX];
int main()
{
scanf("%lld",&n);
for(int i=1;i<=n;++i){
scanf("%lld",&wys[i]);
}
... | [
"noreply@github.com"
] | noreply@github.com |
f1349227ee496ad519179bb705d0d88705cfe6e5 | 38c10c01007624cd2056884f25e0d6ab85442194 | /third_party/WebKit/Source/core/paint/ScrollbarPainter.h | e0e619a9c681f0c0614ddaf8bd1fbadd710f5172 | [
"BSD-3-Clause",
"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"
] | permissive | zenoalbisser/chromium | 6ecf37b6c030c84f1b26282bc4ef95769c62a9b2 | e71f21b9b4b9b839f5093301974a45545dad2691 | refs/heads/master | 2022-12-25T14:23:18.568575 | 2016-07-14T21:49:52 | 2016-07-23T08:02:51 | 63,980,627 | 0 | 2 | BSD-3-Clause | 2022-12-12T12:43:41 | 2016-07-22T20:14:04 | null | UTF-8 | C++ | false | false | 980 | h | // Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef ScrollbarPainter_h
#define ScrollbarPainter_h
#include "platform/heap/Handle.h"
#include "platform/scroll/Scrollbar.h"
namespace blink {
class ... | [
"zeno.albisser@hemispherian.com"
] | zeno.albisser@hemispherian.com |
8e5ae0ba29d2138f8aca06ceb14ab71828fc5362 | 847e8aca4c265bbc41c1021654372a396380a462 | /A3_Police/language_f_police/cfgPatches.hpp | dcc5942b2d544e4e2398c6c0f8da8d8f9aeeebc5 | [] | no_license | senicluxus/A3_Police | fc37aac6de30fc49fa8cd20a6a9edae00dbcf7a4 | 860a38be419a02a47a134a8ab3d4b74e2fde4c32 | refs/heads/main | 2023-06-15T11:27:30.488969 | 2021-07-01T21:09:11 | 2021-07-01T21:09:11 | 382,157,108 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 400 | hpp | class CfgPatches
{
class A3_Police_Language_F_Police
{
author = $STR_A3_A_AveryTheKitty;
name = "Arma 3 Police - Texts and Translations";
url = "https://steamcommunity.com/sharedfiles/filedetails/?id=2225865544";
requiredAddons[] = {A3_Police_Data_F_Police};
requiredVersion = 0.1;
units[] = {/* Auto-compi... | [
"senicluxus@gmail.com"
] | senicluxus@gmail.com |
5800bcca6f6884b41b392a50d61655212d610b23 | b99b0f6d8f188b15f9cb4ae801e033f6bb2c8f91 | /Algorithms_C-Plus-Plus_Part2.2/sorting/tree_sort.cpp | ae72ac345cd2f9ffbec86a58ab2a2d1f66aa2a7a | [] | no_license | alvarohenriquecz/Algorithms_C-Plus-Plus_Part2 | acec1b61ce714fa6bc4ed674d1746f74c78065e7 | f09e87dcfcfe813678b90f708df1845958a16fc8 | refs/heads/master | 2022-11-14T11:33:46.410786 | 2020-07-08T08:05:20 | 2020-07-08T08:05:20 | 274,775,766 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,250 | cpp | #include <iostream>
using namespace std;
struct Node
{
int key;
struct Node *left, *right;
};
struct Node *newNode(int item)
{
struct Node *temp = new Node;
temp->key = item;
temp->left = temp->right = NULL;
return temp;
}
void storeSorted(Node *root, int arr[], int &i)
{
if (root != NULL... | [
"alvarohenriquecz@gmail.com"
] | alvarohenriquecz@gmail.com |
d39cfb39fea6084e55aec45a3703d83675d0b57d | 2dcd0ab0570b507ee2b6233cb7d72ae1897875c6 | /TopCoder/SRM464Div1/ColorfulDecoration.cpp | 17c38f4461fa4d2bae685df4f44d22f20168406a | [] | no_license | ngmq/CompetitiveProgramming | 7db2f62f95e662a725571a82667e11099c65a75f | 2f13534dd5e28c2bb061bad4df1c88948197420b | refs/heads/master | 2022-02-11T02:33:46.541303 | 2022-01-30T21:33:40 | 2022-01-30T21:33:40 | 37,407,532 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 15,551 | cpp | #line 2 "ColorfulDecoration.cpp"
#include <iostream>
#include <cstdio>
#include <algorithm>
#include <cstring>
#include <string>
#include <vector>
#include <sstream>
// #include <map>
#include <set>
//#include <deque>
#include <queue>
#include <stack>
// #include <cstdlib>
// #include <climits>
// #include <functional... | [
"noreply@github.com"
] | noreply@github.com |
75924d4fe4119e962351ebeb5dd2b69af8edef25 | 5014bc1560490ac37e8c5d2562a2bfdb16727ea9 | /SDK/NanoCore/NanoCPP/tests/algorithms/25.generate.cpp | eb78ba6cd5a448e5b7ce26bb81317ae3f779af0f | [
"Apache-2.0"
] | permissive | PSP-Archive/Nanodesktop | 6fbf130d668dc9aa6afd06d8c4fff55a8cdcbdaf | 37f502dff47c1a0b11c2a9d65c8cdcde12591e39 | refs/heads/main | 2023-02-28T08:41:12.147204 | 2021-02-08T13:01:00 | 2021-02-08T13:01:00 | 337,077,653 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,916 | cpp | /***************************************************************************
*
* 25.generate.cpp - test exercising 25.2.6 [lib.alg.generate]
*
* $Id: 25.generate.cpp 510970 2007-02-23 14:57:45Z faridz $
*
***************************************************************************
*
* Licensed to the Apache Soft... | [
"pierluigiortenzi@gmail.com"
] | pierluigiortenzi@gmail.com |
826e231707c56fc367b5f7fa22126bdf1e55ed9b | c762444f01a7d53361b2f8d22d8845b0a802d8d9 | /vtr@2780988/blifexplorer/src/clockconfig.cpp | b8a040d328c80ad344ca6b1b711f6ad81eb34f66 | [
"LicenseRef-scancode-unknown-license-reference",
"MIT",
"MIT-Modern-Variant"
] | permissive | xibo-sun/VTR_with_Yosys | ef12ff0ee649e9376063a011cbcdf1208ee02094 | 2d8ef88fa8e6c9c66489e81f50f37dede6b1bb30 | refs/heads/master | 2023-02-23T10:27:58.243842 | 2023-02-11T00:51:35 | 2023-02-11T00:51:35 | 227,647,186 | 0 | 1 | MIT | 2023-02-11T00:51:37 | 2019-12-12T16:15:57 | C | UTF-8 | C++ | false | false | 1,201 | cpp | #include "clockconfig.h"
#include "ui_clockconfig.h"
ClockConfig::ClockConfig(QWidget *parent) :
QDialog(parent),
ui(new Ui::ClockConfig)
{
ui->setupUi(this);
}
ClockConfig::~ClockConfig()
{
delete ui;
}
void ClockConfig::on_buttonBox_accepted()
{
//set the ratios in Odin. :)
int i = 0;
f... | [
"sun@localhost.localdomain"
] | sun@localhost.localdomain |
3346858788df68ac393ec145d83ec6a9474e0e44 | 8ed64d957b1999a8b6b1aba7c5bea22a5c767d1a | /riegeli/chunk_encoding/simple_decoder.cc | 42f11fe3f94ac0789d8c3d04a56d4d14bf72bb44 | [
"Apache-2.0"
] | permissive | Bingo20/riegeli | 4b14b1793136ffdcb0d8682e964c496005f8f9fc | 2f2f1c72c30267cd2386607059f54b5214219c4c | refs/heads/master | 2021-04-16T14:30:01.324619 | 2020-03-21T11:07:13 | 2020-03-21T11:12:10 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,994 | cc | // Copyright 2017 Google LLC
//
// 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 ... | [
"qrczak@google.com"
] | qrczak@google.com |
b1dbac5e6527ec4532bccdf2dfed128f70d7f743 | 44a676b33c39798820bc1a6819b6cd6a156bf108 | /Bit Manip Practice/min-bit-operations.cpp | f073ea1fd844aa1da3f3dffdb646f72462b7e204 | [] | no_license | Mayank-MP05/CPP-Codes-Contests | 9111a02221ac64031f5516c88c36df039975f073 | f5113b4a84517df7ecce010da98f12aaf91e8259 | refs/heads/main | 2023-04-19T07:09:41.961955 | 2021-05-07T11:47:07 | 2021-05-07T11:47:07 | 354,313,141 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,929 | cpp | #include<bits/stdc++.h>
using namespace std;
#define fo(i,n) for(i=0;i<n;i++)
#define ll long long
#define deb(x) if(SHOW) cout << #x << "=" << x << endl
#define deb2(x, y) if(SHOW) cout << #x << "=" << x << "," << #y << "=" << y << endl
#define debArr(a,n) if(SHOW) for(int z=0;z<n;z++){ cout<<a[z]<<" "; } cout<<en... | [
"mayank5pande@gmail.com"
] | mayank5pande@gmail.com |
f8eadff15cd63296cd1ba6b8e5fd626989aa42e5 | 1d17c354e4f0c60a40b0d9a180d6c55df7d11e38 | /jni/libutils/jni/StreamingZipInflater.cpp | 8730878ad4b4f7fa21668bc07d12ae4f7d22b1dd | [
"Apache-2.0"
] | permissive | goodev/droidide | f217efc6754f510049a1976d4418f33a31babf89 | d23e6fb4add430c4b81e31697f011878dec64dde | refs/heads/master | 2020-04-12T18:59:59.956614 | 2014-10-03T11:55:28 | 2014-10-03T11:55:28 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,288 | cpp | /*
* Copyright (C) 2010 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless requir... | [
"Administrator@USER-J9L630860H"
] | Administrator@USER-J9L630860H |
3ce79245367be2a20d27aedcc22a81c3e7de8cb5 | 03b5b626962b6c62fc3215154b44bbc663a44cf6 | /src/keywords/_endif.h | 889a4c407335d2c144341ffddf086a23698f6eb7 | [] | no_license | haochenprophet/iwant | 8b1f9df8ee428148549253ce1c5d821ece0a4b4c | 1c9bd95280216ee8cd7892a10a7355f03d77d340 | refs/heads/master | 2023-06-09T11:10:27.232304 | 2023-05-31T02:41:18 | 2023-05-31T02:41:18 | 67,756,957 | 17 | 5 | null | 2018-08-11T16:37:37 | 2016-09-09T02:08:46 | C++ | UTF-8 | C++ | false | false | 208 | h | #ifndef _ENDIF_H
#define _ENDIF_H
#include "../object.h"
namespace n__endif {
class C_endif :public Object
{
public:
C_endif();
int my_init(void *p=nullptr);
};
}
using namespace n__endif;
#endif
| [
"hao__chen@sina.com"
] | hao__chen@sina.com |
bc5604be5579e165c533ea525cbb0b2802d058b2 | eebfd60a94004abd8d2459c2f6bb0b74018dc5f7 | /src/amg_solvers.cpp | c8952188b8f4523f40af5ca65654cea9d1e2872e | [] | no_license | kahnon/Poisson2D-amg-lib | b072bf15f15bd5834f3167fa64fa7fc5bb7cf4fd | d7cac64edb9899d65e8ee524b6183c9fe23a7491 | refs/heads/master | 2022-12-21T03:16:55.105896 | 2020-10-02T11:08:28 | 2020-10-02T11:08:28 | 300,580,042 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,094 | cpp | #include <vector>
#include <limits>
#include <math.h>
#include "amg_solvers.h"
#include "smoothing.h"
#include "amg_solve_components.h"
#include "matrix.h"
#include "amg_benchmark.h"
//sor solver with system matrix "matrix", rhs "rhs", damping parameter omega
//and guess phi. Iteration until max_norm of residual is ... | [
"kahnon@users.noreply.github.com"
] | kahnon@users.noreply.github.com |
027308f40a33b54f90ce02f5b4b52f31947fe63b | 101b45e1f7054ff20dccbf0fb3128edb68880780 | /legacy/qmmp_ui_example/renamedialog.cpp | 5ab6b4bf3beb56f38f6cdeac1cffef97a50d7fbc | [] | no_license | calupator/QMMP | 2803c0d2c07c13f6804456aa4058b3e17b8cba52 | b56617e0f1d1d0adabbb14008a3ab3f19d3cb3fc | refs/heads/master | 2023-04-01T09:38:09.317025 | 2021-04-11T20:31:10 | 2021-04-11T20:31:10 | 357,050,154 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 153 | cpp | #include "renamedialog.h"
renameDialog::renameDialog (QWidget *parent)
: QDialog (parent)
{
ui.setupUi (this);
}
renameDialog::~renameDialog()
{
}
| [
"trialuser02@90c681e8-e032-0410-971d-27865f9a5e38"
] | trialuser02@90c681e8-e032-0410-971d-27865f9a5e38 |
b0180da56ae854842636698337e51c8a929ac0ef | 9231ec805e1238984b2209cf6952a85af84d678d | /bcos-tool/test/unittests/libtool/VersionConvert.cpp | 846fb0bd834de1340bb1d9b56814b086d509fb54 | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | ywy2090/FISCO-BCOS | 775c359866bbadd59dbe651e3f1341dd127deb9f | f24d5b9a1abb3d224962877abd4c92e411e4de45 | refs/heads/master | 2023-07-26T17:17:55.173858 | 2023-04-04T04:52:03 | 2023-04-04T04:52:03 | 154,145,600 | 2 | 0 | Apache-2.0 | 2022-10-08T03:16:02 | 2018-10-22T13:06:41 | C++ | UTF-8 | C++ | false | false | 640 | cpp |
#include <bcos-tool/VersionConverter.h>
#include <bcos-utilities/Common.h>
#include <boost/test/tools/old/interface.hpp>
#include <boost/test/unit_test.hpp>
using namespace bcos;
using namespace bcos::tool;
namespace bcos
{
namespace test
{
BOOST_AUTO_TEST_CASE(testVersionConvert)
{
BOOST_CHECK_EQUAL(toVersionNu... | [
"noreply@github.com"
] | noreply@github.com |
3c0106f59efb88c2fb511870d879ae4b04946f34 | 9f170204f6976fe59d9ee74aa78f62b10663c051 | /third_party/sputnik/sputnik/depthwise/filter_tile.h | e015b3c75925f56f64a90bafcd977fd0ce013d46 | [
"Apache-2.0",
"BSD-2-Clause",
"BSD-3-Clause"
] | permissive | hercules261188/xformers | 04132b4c94bfb59ea9917ccf29800a049f924da9 | 71bab94cb954e6e291ca93d3bce5dffadab4286d | refs/heads/main | 2023-09-06T02:51:47.086611 | 2021-11-24T16:36:22 | 2021-11-24T16:36:22 | 431,593,450 | 1 | 0 | NOASSERTION | 2021-11-24T18:43:24 | 2021-11-24T18:43:23 | null | UTF-8 | C++ | false | false | 2,665 | h | // Copyright 2020 The Sputnik Authors.
//
// 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 agre... | [
"benjamin.lefaudeux@gmail.com"
] | benjamin.lefaudeux@gmail.com |
0511de1b4ad71bdf71e1966dfd12621b2f8ccc7e | 55f5d42e9e2cbfb2c3d41c1dd0050fbb6ad13781 | /get_Serial_32_demo/get_Serial_32_demo.ino | 04890a843610ed568465dff4b39384c095029649 | [] | no_license | juchani/respaldp | 97c2f4555134c376f132306dbe846adc7e7c0722 | 0e46792a35d076c45562e0b58cbaec3ae08cd4f5 | refs/heads/master | 2021-09-01T21:52:58.353039 | 2021-08-03T15:26:27 | 2021-08-03T15:26:27 | 134,037,744 | 0 | 0 | null | 2018-05-19T06:55:22 | 2018-05-19T06:51:54 | null | UTF-8 | C++ | false | false | 1,382 | ino | #include <WiFi.h>
#include <HTTPClient.h>
#include <SoftwareSerial.h>
SoftwareSerial rs232(26, 27);//rx-tx
const char* ssid = "juchani";/////red
const char* password = "12345678";//////////pasword
String url = "http://clinica.solucionespymes.com/apic/savedata?list=FREND";
unsigned long lastTime = 0;
unsigned long time... | [
"victorfrancojuchani@gmail.com"
] | victorfrancojuchani@gmail.com |
46186900bf2abfd869da2de1ec9c879abaed685a | 313fe96e1535a693484f363190749ab936eba063 | /shell/platform/common/cpp/client_wrapper/encodable_value_unittests.cc | 6784fa4b775f2c011fcbc4f538afab0528ba09e8 | [
"BSD-3-Clause"
] | permissive | nynny/engine_new | 082d4939fe9d0ad0deca86d2dd7ffe7eb49ee804 | 8156268f098ab6ccadad78de6296675d48adefc0 | refs/heads/master | 2020-05-14T13:45:16.264267 | 2019-04-17T04:44:05 | 2019-04-17T04:58:37 | 181,820,370 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 11,483 | cc | // Copyright 2013 The Flutter 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 "flutter/shell/platform/common/cpp/client_wrapper/include/flutter/encodable_value.h"
#include <limits>
#include "gtest/gtest.h"
namespace flutt... | [
"noreply@github.com"
] | noreply@github.com |
c7b84a23caaac034ad82eeb9440017c024e550f8 | ceb020fee45a01645f0b2adc118483c6cf296226 | /NumberOfRecentCalls.cpp | 0038ca0482fd2397e7635d425182074c7deaeba0 | [] | no_license | anaypaul/LeetCode | 6423c4ca1b0d147206c06ebb86c9e558a85077f2 | 667825d32df2499301184d486e3a674291c0ca0b | refs/heads/master | 2021-09-28T06:05:21.256702 | 2020-10-12T04:01:46 | 2020-10-12T04:01:46 | 153,226,092 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 957 | cpp | class RecentCounter {
public:
queue<int> q;
RecentCounter() {
}
int ping(int t) {
int x = 1;
if(t- q.front() <= 3000){
x += q.size();
q.push(t);
}else{
while(t- q.front()>3000 && !q.empty()){
q.pop();
}
... | [
"anay.paul2@gmail.com"
] | anay.paul2@gmail.com |
42c500f32900db9b4a13cc8baeacf7ae29bbe3f5 | fed9f14edb87cd975ac946e01e063df492a9929a | /src/hhkb2020/A.cpp | dcdbc609bb0695788e362c8ec1702dc5743f0bcd | [] | no_license | n-inja/kyoupro | ba91dd582488b2a8c7222242801cf3115ed7fd10 | 44c5a888984764b98e105780ca57d522a47d832d | refs/heads/master | 2021-01-01T06:52:59.655419 | 2020-10-17T13:28:35 | 2020-10-17T13:28:35 | 97,537,227 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 421 | cpp | #include <bits/stdc++.h>
using namespace std;
using ll = long long;
using vi = vector<int>;
using vll = vector<ll>;
using vvi = vector<vector<int>>;
using vvl = vector<vector<ll>>;
int main() {
cin.tie(nullptr);
ios::sync_with_stdio(false);
string s, t;
cin >> s >> t;
if (s == "Y") {
for (char c : t) c... | [
"mail@n-inja.me"
] | mail@n-inja.me |
b65470450e5d245292b8f6429f7efe601d6aa80a | 883ab57c7fc417e89d2c1dc977f29d0d7c4c94fa | /SDL_Collide.cpp | 45be1039589308c358bb176946327d999784c8c0 | [] | no_license | charnet3d/ENSAS-Fighter | 40a2e92c2591cc8475c3920edcbd0b0f84f6d390 | a15a821035342b2691b2d3d956bd6d8625011897 | refs/heads/master | 2020-05-25T17:26:28.820200 | 2016-07-11T13:47:55 | 2016-07-11T13:47:55 | 17,574,562 | 1 | 0 | null | null | null | null | ISO-8859-1 | C++ | false | false | 7,337 | cpp | /*
SDL_Collide: A 2D collision detection library for use with SDL
MIT License
Copyright 2005-2006 SDL_collide Team
http://sdl-collide.sourceforge.net
All rights reserved.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documenta... | [
"charnet3d@gmail.com"
] | charnet3d@gmail.com |
f56a01ffdd076f1a58420405edae1ad4545f15d4 | fb22522d72bc35979405e3ac07d0e4663c2ed6fc | /src/raid/io/manager.cpp | fc3bc1d63740b88cc545a84ed66065278e026133 | [] | no_license | DreadedX/raid | f9872785be5d49e6a03ae7ea126bf44662bf10f0 | 15cf52e9a2bc7c9e511dd06aec0fc04c027c6ddc | refs/heads/master | 2020-05-30T08:39:27.457741 | 2017-05-17T19:47:32 | 2017-05-17T19:47:32 | 70,187,823 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,624 | cpp | //----------------------------------------------
#include "typedef.h"
#include "raid/engine.h"
#include "flxr/spec.h"
#include "flxr/exceptions.h"
#include "logger.h"
//----------------------------------------------
/// @todo Make this not platform specific
void raid::FileManager::add_container(const std::string& cont... | [
"tim.huizinga@gmail.com"
] | tim.huizinga@gmail.com |
c5d886edd807b29962024608b51f71932920c828 | fec81bfe0453c5646e00c5d69874a71c579a103d | /blazetest/src/mathtest/operations/smatsmatadd/HCbUCa.cpp | 394e4df4c3740116222cd46beeb59ad59f5c0823 | [
"BSD-3-Clause"
] | permissive | parsa/blaze | 801b0f619a53f8c07454b80d0a665ac0a3cf561d | 6ce2d5d8951e9b367aad87cc55ac835b054b5964 | refs/heads/master | 2022-09-19T15:46:44.108364 | 2022-07-30T04:47:03 | 2022-07-30T04:47:03 | 105,918,096 | 52 | 7 | null | null | null | null | UTF-8 | C++ | false | false | 4,309 | cpp | //=================================================================================================
/*!
// \file src/mathtest/operations/smatsmatadd/HCbUCa.cpp
// \brief Source file for the HCbUCa sparse matrix/sparse matrix addition math test
//
// Copyright (C) 2012-2020 Klaus Iglberger - All Rights Reserved
//
//... | [
"klaus.iglberger@gmail.com"
] | klaus.iglberger@gmail.com |
23926276f8278be1d08073c5034dbe83d08a9de0 | dfff1eb0823f0ef1fd284e674f8c77453794f859 | /ASTGen.h | 1945fa2628027100b911406b76a34e6c7316f1c7 | [] | no_license | Lisa1999/SMLComplier | 4379ad77441b6a20bc4b3f2722bbd1f4057015bb | e967f5c302c73a2b76050120c91b1715013670ad | refs/heads/master | 2020-09-18T18:27:50.469605 | 2019-11-25T06:16:06 | 2019-11-25T06:16:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 65 | h | #pragma once
#include"GeneralFile.h"
class ASTGen {
public:
};
| [
"YAOXL819@outlook.com"
] | YAOXL819@outlook.com |
7000ab36d1e5ae2539c2541158d2562726db33a9 | 43317a28027bf058cb382f8b4587c5af09345ff5 | /tinyurl.cpp | fb435c5b3b531cfb0a4b45b24f6bacddaff77858 | [] | no_license | ScoobyKot/TinyUrl | 6b701e402057e85fd10d20cfece344686b554b1c | 309c8977214ce9a4cd7806f3a08ae0ec00640c1b | refs/heads/master | 2020-05-01T05:01:35.691761 | 2019-03-23T13:03:43 | 2019-03-23T13:03:43 | 177,289,666 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,694 | cpp | /*
[2 punkty] LeetCode Przygotwać bibliotekę wspomagającą tworzenie skróconych adresów URL.
W tym celu może pomóc Zdefniowanie metody generotora, która jest testowana w pierwszym kroku testów.
Na podstawie aktualnego stanu generatora (tablica 6 znaków) wyznacza następny stan.
Tablicę stanu można dalej... | [
"scoobykot@gmail.com"
] | scoobykot@gmail.com |
3f19238d0ea1c69840cd49a6c9612150fe7c772d | 5bb2d3364a529f7b15c97d2f3aa175e77af3c695 | /cf318A.cpp | f37893a916d0e8cc3b4fdc17272e9cda01f2c0ce | [] | no_license | suraj021/Codeforces-Solutions | c589cf3ff72aa5297d06e854c73aa2d587ed4257 | 7d669635778700c4772674865c7b7560abe2cf89 | refs/heads/master | 2021-01-17T02:22:27.159917 | 2018-06-23T15:12:05 | 2018-06-23T15:12:05 | 37,797,992 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 323 | cpp | #include <bits/stdc++.h>
using namespace std;
int main(){
long long int n, k, ans;
cin >> n >> k;;
if( n%2== 0 ){
if( k <= n/2 ){
ans= 2*k - 1;
}else{
k-= n/2;
ans= 2*k;
}
}else{
if( k<= n/2 + 1 ){
ans= 2*k - 1;
}else{
k= k- n/2 - 1;
ans= 2*k;
}
}
cout << ans << endl;... | [
"surajbora021@gmail.com"
] | surajbora021@gmail.com |
da0f4ae7d21a7b1da99ac6409e4f4bfc3485385d | d2d0e72fc04f4699595aa1946362e081c63fd69a | /SandBox/src/Parseur.cpp | 84c594c30fe279e0624f69d3a43ebf43a15fb490 | [] | no_license | T4ouf/Rainbow-Engine | f3b8e908dc0bef053efea2ec7c7fbb9a2478a663 | 5b57b9b20c6edecf7da90595e7ef9b13852ff6d5 | refs/heads/master | 2020-05-16T05:55:44.215733 | 2019-05-10T11:46:22 | 2019-05-10T11:46:22 | 182,830,198 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,908 | cpp | #include "Parseur.h"
Parseur::Parseur(std::string pathFile) {
path = pathFile;
// Initiate the structure
lvl.startPosX = 0.0f;
lvl.startPosY = 0.0f;
lvl.startPosZ = 0.0f;
lvl.levelPath = "";
lvl.musicPath = "";
lvl.endPosX = 0.0f;
lvl.endPosY = 0.0f;
lvl.endPosZ = 0.0f;
lvl.length = 0.0f;
lvl.width = 0.0f... | [
"thomasvonascheberg@hotmail.fr"
] | thomasvonascheberg@hotmail.fr |
a2b6d554c5edb61851bbc085244ebacb17007a57 | 9e37bb8dc004cc39f39aae340b5ca5e3223bbde0 | /174-15653.cpp | 425151891a832de5ac13ccaab284c2b31c476c5e | [] | no_license | yongsoonko/solved-problems | 5868823edfa2a5451b23b06e06ee7855b7073182 | 55dd3e0a1e40581f48a46b4ed78455d04de41ffc | refs/heads/master | 2022-11-19T15:23:39.938416 | 2020-04-07T03:37:15 | 2020-04-07T03:37:15 | 221,386,455 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,148 | cpp | #include <algorithm>
#include <array>
#include <iostream>
#include <queue>
#include <string>
#include <time.h>
#include <vector>
#define fi first
#define se second
using namespace std;
using ll = long long;
using pll = pair<ll, ll>;
using pii = pair<int, int>;
using ai3 = array<int, 3>;
struct Ball {
int i;
int ... | [
"goys5228@gmail.com"
] | goys5228@gmail.com |
91b56fc21987a7b0f55b66ff056846708075046b | 16cb55beea26cf910d8360a252d00578403d5044 | /leetcode_cpp/include/leetcode/problem_38.hpp | afec74e07ac1ef7a09f524f7edc294657cbc291b | [] | no_license | hbina/leetcode-solutions | 463141b28521b5983fe27b94652a6dcd2dd8e7d4 | e823d03a2723fa9599144056a2958ddb35aef2d7 | refs/heads/master | 2021-08-19T00:57:07.699954 | 2020-04-03T17:54:53 | 2020-04-03T17:54:53 | 152,827,421 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,069 | hpp | #pragma once
#include "util/generic/group_by.hpp"
#include <string>
#include <vector>
#include <algorithm>
// TODO :: Reimplement this using for-loops instead of recursion
namespace leetcode
{
template <
typename NumType,
typename OutputType = std::string>
static constexpr auto
countAndSay(const NumTyp... | [
"hanif.ariffin.4326@gmail.com"
] | hanif.ariffin.4326@gmail.com |
a03267c2d7bbbfb9257c8a1b241b726bb0811cb6 | a775a26cded574dcc5c090a0d78f6ccc626bdb64 | /partie.cpp | feec092c3f60ad560255c6b85082f178098cb08b | [] | no_license | Winnie75/TowerDefense | c0f522fdd1dc3bde0b94e4152ce41e0d413e56ea | 0638bdabbcab726e374a8e4b0cfc8d1e538fec3f | refs/heads/master | 2021-12-02T23:58:48.897791 | 2012-05-10T14:01:48 | 2012-05-10T14:01:48 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,507 | cpp | #include "partie.h"
#include <QTextStream>
#include <QFile>
Partie::Partie(QObject *parent) :
QObject(parent)
{
sonNiveau = new Niveau();
sonTerrain = NULL;
sonTimerDecompte = new QTimer();
sonTimerDecompte->start(1000);
QObject::connect(sonTimerDecompte, SIGNAL(timeout()), this, SLOT(decompte... | [
"geecko.dev@free.fr"
] | geecko.dev@free.fr |
da54f9ab64de7c21c14936c97daf5ad7e6b9208e | cffab619d884373b83f0b5040409ac9753f4e9ca | /LADA/oj2-dup.cpp | 6b21e34e4a7b4a3869eb5def0cb04d1dd2c8d87c | [
"MIT"
] | permissive | luyiming/CLRS | 15ff9c275f93710f34ca95eff4d0c3e6d537b852 | 84cee023d8f3bb8ff8ac3b417324006001ab1ea6 | refs/heads/master | 2021-01-19T07:43:05.222066 | 2017-05-15T05:01:19 | 2017-05-15T05:01:19 | 87,565,554 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,851 | cpp | #include <algorithm>
#include <cassert>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <iostream>
#include <limits>
#include <vector>
using namespace std;
int totalSize;
int cnt = 0;
const int NodeSize = 1000;
struct Node {
double x, y;
Node(int x, int y) : x(x), y(y) {}
Node(... | [
"luyimingchn@gmail.com"
] | luyimingchn@gmail.com |
5ef59f679b32d01f83370dbd60e94e4f8460c292 | 6b53372edb28341e5314e0939700e607063654ef | /src/fireengine.native.player/src/graphics/filtermode.h | 6c4044157199277b27a42129f66cedc94bd77481 | [
"MIT"
] | permissive | iamkevinf/FireEngine | a4d571eccb320ed75787bc31457940c86f755849 | abf440f7a1e5596165b08fcc691ce894dfe2faef | refs/heads/master | 2022-12-17T23:20:15.019484 | 2020-09-15T05:15:44 | 2020-09-15T05:15:44 | 282,367,530 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 182 | h | #ifndef __FILTER_MODE_H__
#define __FILTER_MODE_H__
namespace FireEngine
{
enum class FilterMode
{
Point,
Bilinear,
Trilinear
};
}
#endif // __FILTER_MODE_H__ | [
"fyc@time-vr.com"
] | fyc@time-vr.com |
ae857c7393343bd15cb55dee6006b74b01eb845b | 3b9b4049a8e7d38b49e07bb752780b2f1d792851 | /src/mash/app_driver/app_driver.cc | 24d4651f3868c513aa5dd9ad904acccedab5d97f | [
"BSD-3-Clause",
"Apache-2.0"
] | permissive | webosce/chromium53 | f8e745e91363586aee9620c609aacf15b3261540 | 9171447efcf0bb393d41d1dc877c7c13c46d8e38 | refs/heads/webosce | 2020-03-26T23:08:14.416858 | 2018-08-23T08:35:17 | 2018-09-20T14:25:18 | 145,513,343 | 0 | 2 | Apache-2.0 | 2019-08-21T22:44:55 | 2018-08-21T05:52:31 | null | UTF-8 | C++ | false | false | 4,323 | cc | // Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "mash/app_driver/app_driver.h"
#include <stdint.h>
#include "base/bind.h"
#include "base/message_loop/message_loop.h"
#include "components/mus/... | [
"changhyeok.bae@lge.com"
] | changhyeok.bae@lge.com |
3194f6cb395a7d3a2e72076982d6541b3043e9fd | 401bd5c11dbb27d7d39e7f412e2d69c04c64fb92 | /orderedhttest.cpp | 1c9a562aeb1e1fe51663accdc1db3285bec753ab | [] | no_license | Rebecca-Su/Hashing | 40685b1818080fa15178153406bbeeaa3fbca2cb | 1efa3feaf0bdada87f8bee96edd352286ea037d0 | refs/heads/master | 2022-12-23T14:19:51.457522 | 2020-09-22T21:51:56 | 2020-09-22T21:51:56 | 297,780,227 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,586 | cpp | #include "ordered.h"
int main() {
string command, param;
ChainedHashing chained_hash;
string thisLine;
while(!cin.eof())
{
getline(cin, thisLine);
if(thisLine.size() == 0)
break;
command = thisLine.substr(0, 1);
param = thisLine.substr(2, thisLine.si... | [
"r24su@uwaterloo.ca"
] | r24su@uwaterloo.ca |
266ad9776669ff58d7a79d9c07b0a20e3f1c8fc1 | 10e6dcf44471dc0b067d28b26243597d1cce6115 | /AnaModules/LArNeutrinoAna_module.cc | fe3fae59bf1e50c075cb6bce6928afe0bd357c76 | [] | no_license | SFBayLaser/uboonedev | e74d731ae6ba1d2906a2ceb71d5e271246dd53e2 | e8185ec205d98669da3d8c8102aa803ec240fbd8 | refs/heads/master | 2020-04-06T05:10:45.660399 | 2015-10-27T01:23:23 | 2015-10-27T01:23:23 | 36,940,805 | 0 | 3 | null | 2017-03-03T20:50:42 | 2015-06-05T15:40:43 | C++ | UTF-8 | C++ | false | false | 41,702 | cc | // LArNeutrinoAna_module.cc
// A basic "skeleton" to read in art::Event records from a file,
// access their information, and do something with them.
// See
// <https://cdcvs.fnal.gov/redmine/projects/larsoftsvn/wiki/Using_the_Framework>
// for a description of the ART classes used here.
// Almost everything you see... | [
"usher@slac.stanford.edu"
] | usher@slac.stanford.edu |
25b0d843773f8cefdf70ca004a60783d4d60259d | 470b2d817157d060789dd49926802344fa07f5c3 | /wificrack/FileSystemWatcher.cpp | 01ed59ca3d4f73f14d25047d1414cdcc63005254 | [] | no_license | xiangshuijiao/wificrack | 9d7bd63f4cf664757aee1153b5c58d6217b15726 | ac7a969935424b7400487c69c2d88b3bb9db9f6c | refs/heads/master | 2020-08-17T22:53:43.341468 | 2019-11-07T17:56:26 | 2019-11-07T17:56:26 | 215,720,535 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,880 | cpp | /*
* how to use:
* 可以通过
* #include "FileSystemWatcher.h"
* FileSystemWatcher *a =new FileSystemWatcher();
* a->addWatchPath("E:/Test")来监控指定的文件/目录,监控之后,就可以在对应的路径进行更新测试了。
*
* */
#include "FileSystemWatcher.h"
#include <QDir>
#include <QFileInfo>
#include <QDebug>
#include <QT... | [
"you@example.com"
] | you@example.com |
65dc0dbe13f0e05cf70c6dea42757c8ec933e691 | a92b18defb50c5d1118a11bc364f17b148312028 | /src/prod/src/data/interop/ReliableCollectionRuntimeImpl/StoreKeyValueEnumeratorCExports.cpp | f55aa32532fa2cd4140aeac6b5675726c1400bb0 | [
"MIT"
] | permissive | KDSBest/service-fabric | 34694e150fde662286e25f048fb763c97606382e | fe61c45b15a30fb089ad891c68c893b3a976e404 | refs/heads/master | 2023-01-28T23:19:25.040275 | 2020-11-30T11:11:58 | 2020-11-30T11:11:58 | 301,365,601 | 1 | 0 | MIT | 2020-11-30T11:11:59 | 2020-10-05T10:05:53 | null | UTF-8 | C++ | false | false | 4,930 | cpp | // ------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License (MIT). See License.txt in the repo root for license information.
// ------------------------------------------------------------
#include "stdafx.h"
using name... | [
"noreply-sfteam@microsoft.com"
] | noreply-sfteam@microsoft.com |
2c6f7629ddf1f3f628c9bf22abed418bd84909b7 | baf8a111c8f8f40c95ab532c867d40f99ae0a8aa | /Agenda/pessoajuridica.cpp | 63f9f7467a8edbb64dba4251b8f927d901b328d9 | [] | no_license | nafash/program | 34745c220057004bc637e888d92033a10c4f40ee | afa6296e8cfbf3618df0f946db63bb0a0da44962 | refs/heads/main | 2023-07-12T19:20:06.188155 | 2021-08-20T19:30:35 | 2021-08-20T19:30:35 | 398,376,845 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,286 | cpp | #include "pessoajuridica.h"
namespace tp2 {
PessoaJuridica::PessoaJuridica():
inscricaoSocial(0),
razaoSocial(""),
CNPJ("")
{
}
PessoaJuridica::PessoaJuridica(QString nome, QString endereco, QString email, QString CNPJ, int inscricaoSocial, QString razaoSocial):
inscr... | [
"75043839+nafash@users.noreply.github.com"
] | 75043839+nafash@users.noreply.github.com |
46507623acd440c826f32461d977c43ed3cb3415 | 1624de67cbed074dd130a1250b6e02965c399a2f | /C++PhotoEditor/C++PhotoEditor/Rectangle.cpp | cd38fc149394739499fe80e682bed6e93f6cc952 | [] | no_license | Ognjenjebot/PhotoEditor | 445e7213af6b5374f6c432a802ff919a815f8af8 | 4ec7a5f684b60043222279eafdcbbb6918b36ac8 | refs/heads/main | 2023-07-04T00:48:13.693377 | 2021-07-22T15:20:37 | 2021-07-22T15:20:37 | 388,486,159 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 381 | cpp | #include "Rectangle.h"
Rectangle::Rectangle(int x, int y, int width, int height)
{
this->x = x; this->y = y; this->width = width; this->height = height;
}
int Rectangle::getX() const
{
return this->x;
}
int Rectangle::getY() const
{
return this->y;
}
int Rectangle::getWidth() const
{
return this->width;
}... | [
"ognjen.stanojevic321@gmail.com"
] | ognjen.stanojevic321@gmail.com |
21621a2c40d3247a7113e160e07398aa87c05bc4 | 04a540847c1333c987a1957fd8d31197c594f6bb | /BOJ/10820_1.cpp | c95880ed96998b8a5f0e263129f322f1db6c976b | [] | no_license | k8440009/Algorithm | fd148269b264b580876c7426e19dbe2425ddc1ab | a48eba0ac5c9f2e10f3c509ce9d349c8a1dc3f0c | refs/heads/master | 2023-04-02T16:06:10.260768 | 2023-04-02T11:04:32 | 2023-04-02T11:04:32 | 200,506,643 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 343 | cpp | char *read_line(int fd)
{
char *buf;
char c;
int i;
int n_read;
buf = malloc(sizeof(char) * 50000);
if (buf == NULL)
return (NULL);
n_read = 0;
i = 0;
while (read(fd, &c, 1) > 0)
{
n_read++;
if (c == '\n')
break;
buf[i] = c;
i++;
}
if (n_read == 0)
{
free(buf);
return (NULL);
}
buf[i] =... | [
"k8440009@gmail.com"
] | k8440009@gmail.com |
855dbe41ca55370ff3e36444b653c640acd6b3bd | a0ab2bcf79c7e7f07f8917cbff4b04712e78d11a | /ch13/dense_RGBD/pointcloud_mapping.cpp | c2b2ce78a08d711af0a758e3a157dd85edfe388b | [] | no_license | mydream1994/slam_practice | fb41e1714ea75a772643aca0bb6437d85a1bd94b | f99a91f892b0825cea1b2e7a1838b6ff1721ff40 | refs/heads/master | 2020-03-25T19:27:48.300864 | 2018-08-09T01:22:55 | 2018-08-09T01:33:51 | 144,084,268 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,705 | cpp | #include <iostream>
#include <fstream>
#include <vector>
using namespace std;
#include "opencv2/core/core.hpp"
#include "opencv2/highgui/highgui.hpp"
#include <Eigen/Geometry>
//格式化字符串 处理图像文件格式
#include <boost/format.hpp>
//点云数据处理
#include <pcl/point_types.h>
#include <pcl/io/pcd_io.h>
#include <pcl/visualization/pcl_... | [
"568636643@qq.com"
] | 568636643@qq.com |
758d19cc77c25b69fbb885903fb1217d5ea54f9a | cd6b2186ca53fe47540558e043265767bb08d06e | /TuscaroraFW/Lib/DS/GenericMessages.h | a41f5a6509c6dc8d952ae950d8ecda41947cd125 | [] | no_license | Samraksh/Tuscarora | 699135be343665f3a10cc95ea5ddd638f4909a21 | c62be9345518b609c9332202625c500b716d1fce | refs/heads/master | 2021-03-30T17:37:03.919357 | 2017-07-20T18:25:04 | 2017-07-20T18:41:39 | 88,296,912 | 4 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 33,189 | h | //////////////////////////////////////////////////////////////////////////////////
// Tuscarora Software Suite. The Samraksh Company. All rights reserved.
// Please see License.txt file in the software root directory for usage rights.
// Please see developer's manual for implementation notes.
/////////////////////... | [
"bora.karaoglu@samraksh.com"
] | bora.karaoglu@samraksh.com |
f9690a97eff483cef5e131e3de61d137ba9662ae | e9eba901385b6fe7ae22b1b4c466a858ec4e4cd4 | /nachos_lab/lab5/lab5未完成challenge之前/filesys/filesys.cc | ee6bf81a5d9fdb260c56289b5fc1ab583998fcc1 | [] | no_license | Ydongd/nachos_lab | 733504ffecde0e1b0638c4246b885ecc5753c130 | dfeb7b516536e4673a4d26bf403a3d6ae832c13d | refs/heads/master | 2021-10-06T11:17:35.360895 | 2021-09-28T07:13:57 | 2021-09-28T07:13:57 | 175,534,618 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 18,392 | cc | // filesys.cc
// Routines to manage the overall operation of the file system.
// Implements routines to map from textual file names to files.
//
// Each file in the file system has:
// A file header, stored in a sector on disk
// (the size of the file header data structure is arranged
// to be precisely the size... | [
"1600012776@pku.edu.cn"
] | 1600012776@pku.edu.cn |
e7778d50218d393dbcda3a679c3566da81572816 | 589751b2c5b2ff224645a229cd1a46efc9410baf | /zlibrary/core/src/util/ZLKeyUtil.cpp | 512fd780a52e7837ba5f65ae8dadbc2765c75d42 | [] | no_license | temper8/Tizen-FBReader | aec1f4f880ef548cbafbe88d057048b32a863b01 | fe7b46bbd7ff33ea5aab13c81c30b3e7c91efa20 | refs/heads/master | 2020-04-12T07:33:46.833871 | 2014-12-23T01:36:48 | 2014-12-23T01:36:48 | 27,797,376 | 6 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,267 | cpp | /*
* Copyright (C) 2004-2010 Geometer Plus <contact@geometerplus.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any lat... | [
"temper8@gmail.com"
] | temper8@gmail.com |
e6f99edbcee1a6af48ce4611e46766bfc1d41a28 | 07e7ba58630ccbedc1117a7f3200bebec31e0262 | /src/sph-openmp-v1/Grid.h | 0f702738cd71577db1c1df2f6293cac3c1e1d35c | [] | no_license | skxu/FluidDynamics | 641931c4cd81f3ef937c4c49ebdb393d59b322d5 | c4815c2e8b4f966f0aa18b6398be864c78d448fd | refs/heads/master | 2020-06-05T22:31:27.682677 | 2014-12-09T15:04:45 | 2014-12-09T15:04:45 | 26,093,164 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,253 | h | #ifndef __GRID_H__
#define __GRID_H__
#include <vector>
#include <math.h>
#include <assert.h>
#include <stdio.h>
#include <pmmintrin.h>
#include "omp.h"
#include "Variables.h"
using namespace std;
class Grid{
public:
Grid(float xBound, float yBound, float zBound, float h, sim_state_t* s);
~Grid();
/* Call this ... | [
"alwong8@berkeley.edu"
] | alwong8@berkeley.edu |
01108c17e0c72b945714aec614a5e9d4750996c2 | 0483566b99e476dde4ec91ad912a90d8c2763ba8 | /camera.h | 97d3dfc0edd600473dd6040fe4cf5446d1dad736 | [
"MIT"
] | permissive | Joel714/GameProject | 4a1343276be948f6da575a930dc7b3acaf4e8072 | 417b0f65d2f2c9dde2d2bf68f6ac092501dfcabc | refs/heads/master | 2016-09-10T21:57:41.192169 | 2015-10-21T07:32:53 | 2015-10-21T07:32:53 | 42,841,848 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 326 | h | #ifndef _CAMERA_H_
#define _CAMERA_H_
#include <GL/gl.h>
class Camera{
private:
public:
int x, y;
Camera();
void drawSprite(int spriteX, int spriteY, int spriteHeight, int spriteWidth, float texCoords[][8], int texIndex);
void updatePosition(int playerX, int playerY, int mapHeight, int mapWidth);
};
#... | [
"joel.pedroza714@gmail.com"
] | joel.pedroza714@gmail.com |
c2ba396410e00ea2becec9869fc7ab52d8790757 | f34aafa1f0415de4db2d888a5d25ae341aa3e069 | /examples/example03.cpp | 99f24fdcb853f37d6208148472208e7b6f1991d4 | [
"MIT"
] | permissive | mambaru/wjrpc | 59fe91f0df5f8e861ae6d27e067c74b506a81322 | aabea1d07c707111c55a35e160b5a3f34e93ae5c | refs/heads/master | 2023-08-25T00:15:54.734860 | 2023-08-03T21:57:06 | 2023-08-03T21:57:07 | 71,155,902 | 5 | 2 | MIT | 2021-04-22T12:38:31 | 2016-10-17T15:59:20 | C++ | UTF-8 | C++ | false | false | 1,715 | cpp | #include "calc/api/plus.hpp"
#include "calc/api/plus_json.hpp"
#include <wjrpc/incoming/incoming_holder.hpp>
#include <wjrpc/outgoing/outgoing_holder.hpp>
#include <wjrpc/outgoing/outgoing_result.hpp>
#include <wjrpc/outgoing/outgoing_result_json.hpp>
#include <wjson/_json.hpp>
#include <iostream>
/**
* @example ex... | [
"migashko@gmail.com"
] | migashko@gmail.com |
e513771a8137a23fac6b19e5e638be90dc3b9b48 | 1f2959f7840e1656f9d051b5bec147b43254e2d7 | /oop/task8/imageleapscounter.cpp | 8adbe31e155e3764727f2112e240903f9a67ff72 | [] | no_license | zerlok/nsu-prog-all | 521509738f8b2b91e86b5589eea8f4397fcd5976 | 2ff5ebe8d40326d731fb4c7d2b2fc37f44831364 | refs/heads/master | 2022-11-13T21:45:48.072579 | 2017-09-20T19:05:08 | 2017-09-20T19:05:08 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,417 | cpp | #include "affinetransformation.h"
#include "imageleapscounter.h"
const double ImageLeapsCounter::_default_dx = 1.0;
const double ImageLeapsCounter::_default_dy = 0.0;
ImageLeapsCounter::ImageLeapsCounter(const ImagePNG &img)
: img(img),
width(img.get_width()),
height(img.get_height()),
_dx(_default_dx),
... | [
"denergytro@gmail.com"
] | denergytro@gmail.com |
a03209ebd3d61dbb54d765943a79af3e3b1106e8 | aacc7ecfb6a23aa5a13e7cd872d2c2ea3053858d | /Two Pointers/Remove Duplicates from Sorted Array.cpp | 19a33c6e597973ead5184808f2df35606ecd006b | [] | no_license | pranayagr/InterviewBit | 4dd7a300ced59920904dc2dedb9f1035a7201705 | 4031abac73dc56ee5f4b53ed797353d34d9362bd | refs/heads/main | 2023-05-13T01:11:14.979359 | 2021-06-04T18:26:23 | 2021-06-04T18:26:23 | 326,433,528 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 400 | cpp | int Solution::removeDuplicates(vector<int> &A) {
int n = A.size(), unq_num = 1;
if(n == 1) return 1;
for(int i = 1 ; i < n ; i++){
if(A[i] != A[i-1]){
unq_num++;
}
}
int r = 1, w = 1;
while(r < n && w < n){
if(A[r] != A[r-1]){
A[w] =... | [
"noreply@github.com"
] | noreply@github.com |
386260c520788d9ee390aa9a11223c4a79f44945 | e713cebc4b89883ad9d63221e47511772ed71bf8 | /Life/World.h | a0dd9385941acb54089fc789ed2aca4040cf02ce | [] | no_license | aportner/life | 84f96c27d77fab185a53219bc58cff7e80d61031 | 2d3b12cebf62edaac6d1eade73c2d48cbca90284 | refs/heads/master | 2020-06-29T11:17:19.642955 | 2016-08-23T03:54:29 | 2016-08-23T03:54:29 | 66,331,370 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 963 | h | #ifndef World_h
#define World_h
#include "CellTree.h"
/*
* The World class adds logic to traverse the CellTree to add/remove cells.
* This allows you to navigate 64-bit x/y coordinates by partitioning them
* via a tree (in this case a quad tree).
*/
class World {
public:
World() {}
// add a cell
Cell... | [
"aportner@gmail.com"
] | aportner@gmail.com |
43792fa56cdeb140b7b740706aaee2662420ffa6 | 9f69c4c61ca2a2082643f9316354826f6144e1f5 | /CSES/Range Queries/range_xor_queries.cpp | f7e24bbb99bd9c080b86d00cddb0fd51ab35cecd | [] | no_license | julianferres/Competitive-Programming | 668c22cf5174c57a2f3023178b1517cb25bdd583 | c3b0be4f796d1c0d755a61a6d2f3665c86cd8ca9 | refs/heads/master | 2022-03-23T05:56:53.790660 | 2022-03-18T14:29:33 | 2022-03-18T14:29:33 | 146,931,407 | 4 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 1,456 | cpp | /******************************************
* AUTHOR: JULIAN FERRES *
* INSTITUITION: FIUBA *
******************************************/
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef vector<ll> vi;
typedef pair<ll, ll> ii;
#define FIN ... | [
"julianferres@gmail.com"
] | julianferres@gmail.com |
d328038b2168cfe7d9a844457c16977ac3950f1c | 55987c29910ddd89800b3b46c83d9a01b8b62852 | /src/alco_edit_base.cpp | 4aeb96e305a88b01cd509bdb28f51d57968e6196 | [] | no_license | timurchak/AlcoMetr | ccf4a5bd1aaf78656a83177965da64c6aa342f15 | 8217bc0d9d8697014859dc8e5d17708429186aa5 | refs/heads/master | 2023-01-10T03:21:46.290604 | 2020-11-14T20:22:17 | 2020-11-14T20:22:17 | 300,037,417 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,325 | cpp | #include "alco_edit_base.h"
#include "ui_alco_edit_base.h"
AlcoEditBase::AlcoEditBase(AlcoBaseWorker* _baseWorker, QWidget* parent)
: QWidget(parent)
, ui(new Ui::AlcoEditBase)
, lay(new QDynamicGridLayout(4))
, baseWorker(_baseWorker)
, base(baseWorker->getMapAlco())
{
ui->setupUi(this);
a... | [
"timurchak@gmail.com"
] | timurchak@gmail.com |
e7ece8e681cc280989b0ada27730da5492bbc090 | 761915f4aa660f6dc8b77a313ce1c789b3d722c0 | /orb_blend/LapBlend/LapBlend.cpp | 13520e9118acb847f2aca1ff050780a94983e19e | [] | no_license | hunandy14/orb_blend | 10824171568468bf957b2d0fa86f0ea73c8dfcab | 224a9a69bd49b99fb3ef3a3a2b1a764ea3e29149 | refs/heads/master | 2020-03-21T05:57:53.756843 | 2018-06-29T09:35:56 | 2018-06-29T09:35:56 | 138,190,902 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 24,659 | cpp | /*****************************************************************
Name :
Date : 2018/04/12
By : CharlotteHonG
Final: 2018/04/12
*****************************************************************/
#include <iostream>
#include <vector>
#include <algorithm>
#include <cmath>
#include <timer.hpp>
using namespace std;
#i... | [
"hunandy14@gmail.com"
] | hunandy14@gmail.com |
93b4db8661a106308a30237f8ba55d9967347940 | 682a576b5bfde9cf914436ea1b3d6ec7e879630a | /components/material/nodes/toolbar/MaterialTabToolbar.h | cbb0ff37fb747b2f918ca13960904880829bad89 | [
"MIT",
"BSD-3-Clause"
] | permissive | SBKarr/stappler | 6dc914eb4ce45dc8b1071a5822a0f0ba63623ae5 | 4392852d6a92dd26569d9dc1a31e65c3e47c2e6a | refs/heads/master | 2023-04-09T08:38:28.505085 | 2023-03-25T15:37:47 | 2023-03-25T15:37:47 | 42,354,380 | 10 | 3 | null | 2017-04-14T10:53:27 | 2015-09-12T11:16:09 | C++ | UTF-8 | C++ | false | false | 2,355 | h | /**
Copyright (c) 2016 Roman Katuntsev <sbkarr@stappler.org>
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, merg... | [
"sbkarr@stappler.org"
] | sbkarr@stappler.org |
0c12b6343ad9b9675b50a63b53d36f43b78da3b8 | 0911178d2bafe0e4c7aad63a7702327c44dc8fb5 | /src/devel/include/franka_gripper/HomingActionResult.h | 58712aa6b66a1e12dc20eda44e1ef5532ac1e312 | [] | no_license | yscholty/yannic_robot | 18f1f8b269064209bc939430f2fd1a2f02499bc0 | ed065951bc554968e134db3766671ef004f10408 | refs/heads/main | 2023-06-20T15:00:27.871702 | 2021-07-15T14:07:39 | 2021-07-15T14:07:39 | 363,857,722 | 1 | 0 | null | 2021-06-14T13:34:19 | 2021-05-03T08:00:48 | Makefile | UTF-8 | C++ | false | false | 9,405 | h | // Generated by gencpp from file franka_gripper/HomingActionResult.msg
// DO NOT EDIT!
#ifndef FRANKA_GRIPPER_MESSAGE_HOMINGACTIONRESULT_H
#define FRANKA_GRIPPER_MESSAGE_HOMINGACTIONRESULT_H
#include <string>
#include <vector>
#include <map>
#include <ros/types.h>
#include <ros/serialization.h>
#include <ros/built... | [
"yscholty@aol.com"
] | yscholty@aol.com |
9ee833cde942568d0e67bf5e351a74e38b88d90e | d515ceafa5ae2d187ab6315e1b66cdfee615dabc | /homeworks/Gayane_Nerkararyan/Shared_ptr/my_shared_ptr.cpp | b84137c344a519ed74f8d567b3d423d939e4cc11 | [] | no_license | Internal-Trainings-Vanadzor/Internal-Trainings | 9e08f8901d467c6e57e1da18de4a349cd6def6dc | b37ec79c352dfba06e6bed9b3bed95cd175616c9 | refs/heads/master | 2021-01-10T17:55:19.724266 | 2015-10-20T19:34:04 | 2015-10-20T19:34:04 | 36,315,296 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,081 | cpp | #include<iostream>
#include "my_shared_ptr.h"
my_shared_ptr::my_shared_ptr()
:m_memory(NULL)
{
m_count = new int (0);
}
my_shared_ptr::my_shared_ptr(int* memory)
:m_memory(memory)
{
if (memory != NULL)
{
m_count = new int (1);
}
else
{
m_count = new int (0);
}
}
my_shared_ptr::my_shared_ptr(my_shared_ptr... | [
"imagin1@yandex.ru"
] | imagin1@yandex.ru |
23eca5c81e46d2bc4082e9fae72739259378d4de | fd2c3a26e156296fb0936b7d9af7f81ab4cb53e1 | /phorm/except.h | be4109467fe48d3219391ead2e186aced7a72b7b | [] | no_license | spetz911/http-server | 950a2923e159313d56a30c409ccdf38726d61e67 | 00ae5e3f19795d78c4ea22e65a4fee8df24bf769 | refs/heads/master | 2020-06-05T00:19:11.346005 | 2012-10-30T13:20:36 | 2012-10-30T13:20:36 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,271 | h | /**
* Common definitions and routines for the TDMN project.
*
* 2011. Written by NatSys Lab. (info@natsys-lab.com).
*/
#ifndef __TDMN_H__
#define __TDMN_H__
#include <assert.h>
#include <errno.h>
#include <execinfo.h>
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sstream... | [
"spetz911@gmail.com"
] | spetz911@gmail.com |
7925faf929250772a0ef8390d00b5f46f2f59ee8 | 372ed1ff376208447c8eaa32294e939cb88cf6af | /cpp01/ex06/main.cpp | 887f8a7c9fc729a4cfdef2878af10f47fb7c7f66 | [] | no_license | IamLena/s21_cpp | 0b78ab9d76a2417d688a7af0f9e6777108fefb02 | 8d771e350f604c75d2e0013e49fbfe1b26ec8b8c | refs/heads/master | 2023-02-27T08:31:04.233744 | 2021-02-08T01:15:41 | 2021-02-08T01:15:41 | 329,557,012 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,318 | cpp | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* main.cpp :+: :+: :+: ... | [
"helly.luchina@gmail.com"
] | helly.luchina@gmail.com |
d9325460d7f6c76008bcfd78ed640eeef1b9e974 | f4367e9ab6cec456cc716a411ff89ffea1318849 | /SDL Game/SDL Game/Engine/Components/Transforms/Transform.cpp | 60fc6127d57ec8c8b86261ac5de75d78b545bef6 | [
"MIT"
] | permissive | BrunoAOR/SDL-Game | 5a3d3d47cab279c5d4ad2e279b8f5ba33a111cba | 090a09e2c19d18b000769f353c5e7727d60fe5f6 | refs/heads/master | 2021-01-22T14:49:36.914345 | 2017-11-18T13:29:07 | 2017-11-18T13:29:07 | 100,718,943 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,905 | cpp | #include "Transform.h"
#define _USE_MATH_DEFINES
#include <math.h>
#include "Engine/EngineUtils.h"
#include "Engine/Components/ComponentType.h"
Transform::Transform()
: m_localPosition(Vector2(0,0))
, m_localRotation(0)
, m_localScale(Vector2(1,1))
, m_worldPosition(Vector2(0, 0))
, m_worldRotation(0)
, m_worl... | [
"brunoorla@gmail.com"
] | brunoorla@gmail.com |
eb75056ed82fa1ecd50dedd5fc8d1d6f02a2bfd1 | a1a56ba3059d64b36d1609e8999df2273140e84e | /of_v0.8.0_osx_Chinese/examples/math 数学/noiseField2dExample二维随机噪点/src/testApp.cpp | d0f6c9542af0af4bdafbd8264f1b7d37b581c8a5 | [
"MIT"
] | permissive | XuXo/openFrameworks_Chinese | ae4a5aeee7d16ee4570f4d852f8f5bb31a85be62 | 2118e8d796bf638dfbed38971d502891e066acc8 | refs/heads/master | 2020-12-11T05:53:45.697198 | 2014-06-09T22:52:36 | 2014-06-09T22:52:36 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,824 | cpp | /*
This example demonstrates how to use a two dimensional slice of a three
dimensional noise field to guide particles that are flying around. It was
originally based on the idea of simulating "pollen" being blown around by
the wind, and implemented in the Processing:
http://www.openprocessing.org/visuals/?visualID... | [
"bestpaul1985@gmail.com"
] | bestpaul1985@gmail.com |
5336de50a5200a65be8ca02925c9ef285eaa2541 | 95a21e51d1ee52c05c8f491ae174ac8af90da028 | /java/cpp/dataStructures/searchTrees/TreeMap.cpp | 48d158ac571c00fe6a5367548f0c8c765926d905 | [] | no_license | HarryWei/grafalgo | aeef008c9c39ebf9242c4c70058e5dfdd4993fdf | d3a21279dc7c26b694f6e8e346b00d69bbeca912 | refs/heads/master | 2020-04-14T21:28:04.793254 | 2016-05-11T17:32:03 | 2016-05-11T17:32:03 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,262 | cpp | /** @file TreeMap.cpp
*
* @author Jon Turner
* @date 2011
* This is open source software licensed under the Apache 2.0 license.
* See http://www.apache.org/licenses/LICENSE-2.0 for details.
*/
#include "TreeMap.h"
/** Constructor for TreeMap, allocates space and initializes map.
* N1 is the max number of... | [
"jonturner53@gmail.com"
] | jonturner53@gmail.com |
61882473183e149ecf8ff7236cb3749bdd05c321 | 073f9a3b6e9defde09bdb453d7c79a2169c4a31b | /tlb.cc | f998b302b4a6114c1fde5fd7db3e32171a00d134 | [] | no_license | kenrick95/code-archive | 9dc1c802f6d733ad10324ed217bacd3d4b2c455f | 72c420353e3aa7b18af6970b6a81f710c4f5d1b0 | refs/heads/master | 2021-03-24T12:47:52.016103 | 2018-07-08T13:22:46 | 2018-07-08T13:22:46 | 69,313,404 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,269 | cc | #include "copyright.h"
#include "tlb.h"
#include "syscall.h"
#include "machine.h"
#include "thread.h"
#include "system.h"
#include "utility.h"
//----------------------------------------------------------------------
// UpdateTLB
// Called when exception is raised and a page isn't in the TLB.
// Figures out what t... | [
"kenrick95@gmail.com"
] | kenrick95@gmail.com |
e1593408b635e887e4fcd770252e21366ebb7daf | 2fd1af12b6fb4e80e3a4f7abe6cb5a7678da1197 | /SW_Expert_Academy/S:W_문제해결_기본/1228.cpp | 030fec2588b68b6e2805de8a71077bc075b238d7 | [] | no_license | KangSeungIl/Algorithm | 7d9db15051241e55548fb08e04d2bfa89dee9604 | 8ea4a38f539f219796390094e2d7db15923dacdf | refs/heads/master | 2020-04-09T02:37:59.715922 | 2019-01-06T05:01:08 | 2019-01-06T05:01:08 | 159,948,293 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,406 | cpp | #include <iostream> // 1228 암호문1
#include <vector>
using namespace std;
int main() {
int T = 10;
for(int testCase=1; testCase <=T; testCase++) {
int N;
cin >> N;
vector <int> result(10);
for(int i=0; i<N; i++) {
int temp;
cin >> temp;
... | [
"tmddlf51@naver.com"
] | tmddlf51@naver.com |
dd8eeb2dc05e545a30e75923bb80076662772d92 | 3fee62a27cffa0853e019a3352ac4fc0e0496a3d | /zCleanupCamSpace/ZenGin/Gothic_II_Classic/API/zParticle.h | fcd29ff26588f5673f847e6aaf92b23de16b3041 | [] | no_license | Gratt-5r2/zCleanupCamSpace | f4efcafe95e8a19744347ac40b5b721ddbd73227 | 77daffabac84c8e8bc45e0d7bcd7289520766068 | refs/heads/master | 2023-08-20T15:22:49.382145 | 2021-10-30T12:27:17 | 2021-10-30T12:27:17 | 422,874,598 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 17,486 | h | // Supported with union (c) 2018-2021 Union team
#ifndef __ZPARTICLE_H__VER2__
#define __ZPARTICLE_H__VER2__
namespace Gothic_II_Classic {
const int zPARTICLE_MAX_GLOBAL = 4096;
enum zTPFX_EmitterShape {
zPFX_EMITTER_SHAPE_POINT,
zPFX_EMITTER_SHAPE_LINE,
zPFX_EMITTER_SHAPE_BOX,
zPFX_EMITTER_SHAPE... | [
"amax96@yandex.ru"
] | amax96@yandex.ru |
dce216f585d034a6f5ba336573c3d470ae829a7f | 19957b4fde7487ac9e9135f3321a71c2585c56d0 | /ecoin/src/init.h | e1d2c6bd28a29069482d5ec0a0582774909166b7 | [
"MIT"
] | permissive | pinklite34/ecoin | 335cd39587709aa5304cc766653a3e267a9dae70 | 3bf39f0d8ede043bbf7230fbbded5d9c6c22a08d | refs/heads/master | 2021-03-21T19:19:52.137093 | 2020-03-14T17:40:04 | 2020-03-14T17:40:04 | 247,323,557 | 0 | 0 | null | 2020-03-14T17:37:30 | 2020-03-14T17:37:29 | null | UTF-8 | C++ | false | false | 494 | h | // Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2014 The Bitcoin, Novacoin, and Ecoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef BITCOIN_INIT_H
#define BITCOIN_INIT_H
#include "walle... | [
"epsylon@riseup.net"
] | epsylon@riseup.net |
3c8029bd1065a0b03a54c41d3e72b9b1697d70cd | df81135b7711691086abe2832bc97377d905c8e9 | /2016.02.21 PathMove/DirectX3D_Framework_1.4/cTransform.cpp | 1fc9bd7111407fe27ac86176fce340b9f23f7fb0 | [] | no_license | kwansu/3DEngineProgramming_Practice | b52b806e569cec4457701308dd2390ce2670b537 | 26d43c251b7e9f810784dffb19ff0bfd19419d49 | refs/heads/master | 2023-04-21T16:54:10.951063 | 2021-05-17T06:32:15 | 2021-05-17T06:32:15 | 368,079,698 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,849 | cpp | #include "stdafx.h"
#include "cTransform.h"
cTransform::cTransform()
: m_vPos(0, 0, 0)
, m_vDir(0, 0, 1)
, m_vRot(0, 0, 0)
{
D3DXMatrixIdentity(&m_matWorld);
m_matR = m_matT = m_matS = m_matWorld;
}
cTransform::~cTransform()
{
}
void cTransform::SetPosition(const D3DXVECTOR3 * pvPos)
{
m_vPos = *pvPos;
}
vo... | [
"kwansu91@naver.com"
] | kwansu91@naver.com |
8bd9e77165ec1f9e0b324a7b4a16f68c88b38df9 | 1e965ef0826daecc28b69863168e152a7a3b1125 | /source/core/include/Material.h | 2d92ef58abc75798f6c058a26d2dac4abe63ffd1 | [
"Unlicense"
] | permissive | Betaoptics/Graphical-Programming | 419ee3593d16bcd7ca875a27f9310f5021fe9e5f | 1aa9d149aa8d7b2fecd0cdcd1329ed3ef970bc1e | refs/heads/main | 2023-05-09T14:01:35.664521 | 2021-05-28T09:52:19 | 2021-05-28T09:52:19 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 640 | h | /**
* ============================================================================
* Name : Material.h
* Part of : Simple OpenGL graphics engine framework
* Description : simple material
* Version : 1.00
* Author : Jani Immonen, <realdashdev@gmail.com>
* ======================================... | [
"M3268@student.jamk.fi"
] | M3268@student.jamk.fi |
5b408e9aed0e7b2a59d4dad0d5ecc3465a0d0e36 | fdc1089c220773339b04d05c4f190f1fb4fb57b2 | /day-3/greatest-common-divisor.cpp | 61548041186cb37d95f8975f142baade2795749e | [] | no_license | suraj-kumbhar/30-days-job-challenge | b7847df6735327305c08cce85589625b2bdc2e99 | d4c98390c8db00bff4547005ccc543eaef5bf2e0 | refs/heads/master | 2022-11-22T07:03:23.533494 | 2020-07-20T06:32:45 | 2020-07-20T06:32:45 | 273,182,691 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 518 | cpp | // Greatest Common Divisor
// Given 2 non negative integers m and n, find gcd(m, n)
// GCD of 2 integers m and n is defined as the greatest integer g such that g is a divisor of both m and n.
// Both m and n fit in a 32 bit signed integer.
// Example
// m : 6
// n : 9
// GCD(m, n) : 3
// https://www.interviewbit... | [
"surajkannankumbhar@gmail.com"
] | surajkannankumbhar@gmail.com |
47e6ab7901bd3cbc7183b372b01cf6e5c2bf1850 | 90938cd781bc521eb05d46e20e635d94617132a7 | /project4/source/modes.cpp | d2f85c20c27853f9fb43fe7ff99dab9c9325f23f | [] | no_license | fonstelien/FYS4150 | 1f1daf33052cad598a2b1f7e9509969a80019b77 | 0e6cf60d44919950485600b2d9e998f2106b47aa | refs/heads/master | 2023-02-09T11:05:53.486396 | 2021-01-04T21:43:30 | 2021-01-04T21:43:30 | 288,813,427 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,195 | cpp | #include "utils.hpp"
/* Loops over temperature range T1 to T2 with steps dT. Lattice size LxL.
Returns result arma::mat. Simulation runs for equilibration_cycles before
logging of results begins. Total runs = equilibration_cycles + cycles. */
mat temp_range(int L, double entropy, double T1, double dT, double T... | [
"olav.fonstelien@gmail.com"
] | olav.fonstelien@gmail.com |
a827030f694e81788ff4def61f8a97d6ba9ddf55 | efed5d60bf0e4b9cca6a64dc4d5da460848eac46 | /jp2_pc/Source/Lib/Renderer/RenderType.hpp | fba6a72b015f447c017ba507c5a0dbade9d66475 | [] | no_license | Rikoshet-234/JurassicParkTrespasser | 515b2e0d967384a312d972e9e3278954a7440f63 | 42f886d99ece2054ff234c017c07e336720534d5 | refs/heads/master | 2022-04-24T01:16:37.700865 | 2020-03-28T01:21:14 | 2020-03-28T01:21:14 | null | 0 | 0 | null | null | null | null | WINDOWS-1252 | C++ | false | false | 7,441 | hpp | /***********************************************************************************************
*
* Copyright © DreamWorks Interactive. 1996
*
* Contents:
* Base class for renderer's types that are within a scene.
*
* Bugs:
*
* To do:
* Replace virtual rptr_const<CBioMesh>* rpbmCast() const with the right ... | [
"crackedcomputerstudios@gmail.com"
] | crackedcomputerstudios@gmail.com |
da995e742c89cbe952d3c93fc1b45be5f8c7a221 | 135310f251c8a074c7bfe662d06ed37826afa7b4 | /include/litehtml/box.h | d5635f4416411c23ea6579d902d6a0a15bac20e9 | [
"BSD-3-Clause"
] | permissive | axle-h/SdlPanelUi | 829acf5158a63d1b2663e8dfb7eb5b989113a771 | e0be2d30d7a38923504e16d1ee5d9fb90c9e11b1 | refs/heads/master | 2020-04-04T01:01:07.748180 | 2015-04-17T15:23:46 | 2015-04-17T15:23:46 | 31,613,484 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,203 | h | #pragma once
#include "object.h"
namespace litehtml
{
class html_tag;
enum box_type
{
box_block,
box_line
};
class box : public object
{
public:
typedef litehtml::object_ptr<litehtml::box> ptr;
typedef std::vector< litehtml::object_ptr<litehtml::box> > vector;
protected:
int m_box_top;
int ... | [
"alex.haslehurst@gmail.com"
] | alex.haslehurst@gmail.com |
51092588415df4d7807fa7500d81a27b5c2fdafc | 27bb5ed9eb1011c581cdb76d96979a7a9acd63ba | /aws-cpp-sdk-cognito-sync/source/model/GetIdentityPoolConfigurationRequest.cpp | f6df74ef589c88d392bcd5032ce77446e966bef5 | [
"Apache-2.0",
"JSON",
"MIT"
] | permissive | exoscale/aws-sdk-cpp | 5394055f0876a0dafe3c49bf8e804d3ddf3ccc54 | 0876431920136cf638e1748d504d604c909bb596 | refs/heads/master | 2023-08-25T11:55:20.271984 | 2017-05-05T17:32:25 | 2017-05-05T17:32:25 | 90,744,509 | 0 | 0 | null | 2017-05-09T12:43:30 | 2017-05-09T12:43:30 | null | UTF-8 | C++ | false | false | 1,036 | cpp | /*
* Copyright 2010-2016 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" fil... | [
"henso@amazon.com"
] | henso@amazon.com |
944246190d712e4400a64e61c8bb228e834dea99 | 27a7b51c853902d757c50cb6fc5774310d09385a | /[Client]LUNA/PetResurrectionDialog.h | 9898e79a4ebbd7fe53cca65d620087930ed18277 | [] | no_license | WildGenie/LUNAPlus | f3ce20cf5b685efe98ab841eb1068819d2314cf3 | a1d6c24ece725df097ac9a975a94139117166124 | refs/heads/master | 2021-01-11T05:24:16.253566 | 2015-06-19T21:34:46 | 2015-06-19T21:34:46 | 71,666,622 | 4 | 2 | null | 2016-10-22T21:27:35 | 2016-10-22T21:27:34 | null | UTF-8 | C++ | false | false | 575 | h | #pragma once
#include "./interface/cdialog.h"
class cIconDialog;
class CVirtualItem;
class CItem;
class CPetResurrectionDialog :
public cDialog
{
cIconDialog* mIconDialog;
CVirtualItem* mSourceItem;
CItem* mUsedItem;
MSG_DWORD3 mMessage;
public:
CPetResurrectionDialog(void);
virtual ~CPetResurrectionDialo... | [
"brandonroode75@gmail.com"
] | brandonroode75@gmail.com |
e7a3879b536a2a43b931a20f302696f636e7cc94 | 9264ad419b73883a69fb02688ddc3ee40c53edbd | /Codechef/AUGLONG-STRINGRA.cpp | dd9b6214a57c83aff2e98476e2f35659e4e5089b | [] | no_license | manish1997/Competitive-Programming | 6d5e7fb6081d1a09f8658638bddcd1c72495c396 | b7048f770f7db8ac0bc871d59f1973482f79668f | refs/heads/master | 2021-01-13T04:31:13.082435 | 2020-03-22T20:32:04 | 2020-03-22T20:32:04 | 79,900,759 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,118 | cpp | #include <bits/stdc++.h>
using namespace std;
#define ll long long
#define si(n) scanf("%d",&n)
#define sll(n) scanf("%lld",&n)
#define pin(n) printf("%d\n",n)
#define plln(n) printf("%lld\n",n)
#define pis(n) printf("%d ",n)
#define plls(n) printf("%lld ",n)
#define rep(i, start, end) for(int i=start; i<end; i++)
#def... | [
"manu1.uec2014@gmail.com"
] | manu1.uec2014@gmail.com |
6bfdcdd7f3421f22bb1e8681c6addd5767eb03c3 | ac2a669ab120792ec314d28cf3fb58d325bc40fb | /wuduo/base/Thread.h | cf0e2d2d950df8856ec265e7d582b7547f63baed | [] | no_license | torn4do/wuduo | 5da8f8312268f94132d8f77cb6a6140ac3221a89 | 1cb1bb044e9cd3383166aa2b5d8d233472230df9 | refs/heads/master | 2021-01-19T20:06:10.264005 | 2017-04-24T13:18:43 | 2017-04-24T13:18:43 | 88,471,156 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 879 | h | #ifndef WUDUO_BASE_THREAD_H
#define WUDUO_BASE_THREAD_H
#include <pthread.h>
#include <functional>
#include <memory>
#include <unistd.h>
#include <sys/syscall.h>
#include "Noncopyable.h"
namespace wuduo
{
namespace CurrentThread
{
pid_t tid()
{
return static_cast<pid_t>(::syscall(SYS_gettid));
}
}
class Threa... | [
"torndo1102@163.com"
] | torndo1102@163.com |
d39e480a86ac36ab9b33e1731f5081861135d5bf | a9e308c81c27a80c53c899ce806d6d7b4a9bbbf3 | /engine/xray/core/sources/script_engine_wrapper.h | 56d256b22150a4a4bde187a4d867011fea0753ab | [] | no_license | NikitaNikson/xray-2_0 | 00d8e78112d7b3d5ec1cb790c90f614dc732f633 | 82b049d2d177aac15e1317cbe281e8c167b8f8d1 | refs/heads/master | 2023-06-25T16:51:26.243019 | 2020-09-29T15:49:23 | 2020-09-29T15:49:23 | 390,966,305 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,910 | h | ////////////////////////////////////////////////////////////////////////////
// Created : 06.03.2009
// Author : Dmitriy Iassenev
// Copyright (C) GSC Game World - 2009
////////////////////////////////////////////////////////////////////////////
#ifndef SCRIPT_ENGINE_WRAPPER_H_INCLUDED
#define SCRIPT_ENGINE_WRAPPER_... | [
"loxotron@bk.ru"
] | loxotron@bk.ru |
3941bd23f3f686d12d4d78c2ce4421380ceef158 | 481f182a92429ef5658e4749e355d2f8dc24dcd5 | /main.cpp | 72765c31ddad647fbdf006f201bfc7b842dc9f6a | [] | no_license | v-lavrushko/Learning | f09730d9e96746826faf6009d976b6d8294902f2 | 1f1ac83ac5d60d5f9748a91bf50038e61f57a461 | refs/heads/master | 2021-01-01T04:01:46.746259 | 2018-01-26T14:36:30 | 2018-01-26T14:36:30 | 97,101,863 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 903 | cpp | #include <iostream>
using namespace std;
void primes(unsigned long long int *arr2, unsigned long long int start, unsigned long long int end) {
unsigned long long int arr1[25000], i = 2, k = 0;
arr1[0] = 2;
arr1[1] = 3;
for (unsigned long long int x = 4; x < end + 1; x++) {
for (unsigned long l... | [
"noreply@github.com"
] | noreply@github.com |
83683f1536f8f413b5c6e564417e98c23628ed30 | 6b660cb96baa003de9e18e332b048c0f1fa67ab9 | /External/SDK/Proposal_SL_CoD_Chapter5_classes.h | 5e3c9492d822c94a9e956d622017f9e96daf2187 | [] | no_license | zanzo420/zSoT-SDK | 1edbff62b3e12695ecf3969537a6d2631a0ff36f | 5e581eb0400061f6e5f93b3affd95001f62d4f7c | refs/heads/main | 2022-07-30T03:35:51.225374 | 2021-07-07T01:07:20 | 2021-07-07T01:07:20 | 383,634,601 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 819 | h | #pragma once
// Name: SoT, Version: 2.2.0.2
/*!!DEFINE!!*/
/*!!HELPER_DEF!!*/
/*!!HELPER_INC!!*/
#ifdef _MSC_VER
#pragma pack(push, 0x01)
#endif
namespace CG
{
//---------------------------------------------------------------------------
// Classes
//------------------------------------------------------------... | [
"Massimo.linker@gmail.com"
] | Massimo.linker@gmail.com |
0f8b15089ce2f0fb7b3d8c9f5a11c2a7440e6f77 | 5246133c32392ed5bb95df383b06d6d7b4443254 | /kits/interface/DosControlLook.cpp | f7cfda0280248c67e80a5b60f49c5bb612a56614 | [
"MIT"
] | permissive | D-os/libb2 | 428b483a59c0548bf7858ced6d513e3c514d9e9a | b9d0ad771c104b1463692095073ba4fcef05ecbf | refs/heads/main | 2023-04-14T08:10:14.943219 | 2023-04-11T17:32:38 | 2023-04-11T17:34:39 | 125,916,877 | 8 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 15,067 | cpp | #define CHECKBOX_BOX_SIZE 12.0f
#define CHECKBOX_TEXT_PADDING 5.0f
#include "DosControlLook.h"
#include <Bitmap.h>
#include <Control.h>
#include <Font.h>
#include <String.h>
#include <Window.h>
using namespace BPrivate;
DosControlLook::DosControlLook() {}
DosControlLook::~DosControlLook() {}
BAlignment DosControl... | [
"tomasz@sterna.link"
] | tomasz@sterna.link |
9510dab2a1358e3d99bf055450c564369e543c6b | cdf92aa3a8a49dc044306c125356cca26910dbda | /src4/static/INDI2/oldEIRlibs/eirExe/eirExe.cpp | 1b8c04eb1b08a22d10709ec29ddd22d4ab144ff4 | [
"MIT"
] | permissive | eirTony/INDI1 | b7c5d2ba0922a509b32d9d411938ecdc0f725109 | 07fe9eff4fb88c6c2d636c94267ea8734d295223 | refs/heads/master | 2020-01-23T21:22:49.833055 | 2016-11-26T07:43:06 | 2016-11-26T07:43:06 | 74,568,244 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 43 | cpp | #include "eirExe.h"
eirExe::eirExe()
{
}
| [
"totto@eclipseir.com"
] | totto@eclipseir.com |
c37c9ba3f122e4cdb3c0d2f1778324a06359415d | cf86574f8dc83ac340b9f7816fb55c1583c3b5c8 | /ios/Pods/Flipper-Folly/folly/String-inl.h | 3e0dfe05cbe5c7cf4a3d652838bcb7f5383b859b | [
"Apache-2.0",
"MIT"
] | permissive | juxtin/yarnu | 94b9f6068ebf3dd46b02173eb2cb9b394a06c969 | a3c3748a6738283644f252f87244880ca430c2f4 | refs/heads/master | 2022-12-30T07:17:56.708695 | 2020-09-28T19:29:02 | 2020-09-28T19:29:02 | 299,406,578 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 19,918 | h | /*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* 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 ... | [
"juxtin@github.com"
] | juxtin@github.com |
15db677843c574dfba7905dbc26900e72f2d1d71 | d2d6aae454fd2042c39127e65fce4362aba67d97 | /build/iOS/Debug/include/Fuse.Controls.RegularPolygon.h | d2a6658ee900a0cc984ad632049b63c22923f707 | [] | no_license | Medbeji/Eventy | de88386ff9826b411b243d7719b22ff5493f18f5 | 521261bca5b00ba879e14a2992e6980b225c50d4 | refs/heads/master | 2021-01-23T00:34:16.273411 | 2017-09-24T21:16:34 | 2017-09-24T21:16:34 | 92,812,809 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,755 | h | // This file was generated based on '/Users/medbeji/Library/Application Support/Fusetools/Packages/Fuse.Controls.Primitives/1.0.2/shapes/$.uno'.
// WARNING: Changes might be lost if you edit this file directly.
#pragma once
#include <Fuse.Animations.IResize.h>
#include <Fuse.Binding.h>
#include <Fuse.Controls.Shape.h>... | [
"medbeji@MacBook-Pro-de-MedBeji.local"
] | medbeji@MacBook-Pro-de-MedBeji.local |
a4571d43e3118139834e1a5ccfa3c4f28de775f7 | 6a9c13837bcf73fa64d1974eb3ae383aace3cf37 | /thirdparty_builtin/googletest/googlemock/test/gmock-matchers-misc_test.cc | 0c7aa4994222d11ec4b5d35201fdf4fa6349344c | [
"Apache-2.0",
"BSD-3-Clause",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | LLNL/blt | 93fb69ddf7fe86bbc1a3c975d4b36f70dbf0fec9 | d57f7995ff8299e4612e74ec94e35eacde93cf40 | refs/heads/develop | 2023-09-06T07:51:57.666876 | 2023-08-23T22:23:17 | 2023-08-23T22:23:17 | 83,483,519 | 228 | 66 | BSD-3-Clause | 2023-08-23T22:23:19 | 2017-02-28T21:59:28 | C++ | UTF-8 | C++ | false | false | 61,799 | cc | // Copyright 2007, Google Inc.
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// * Redistributions of source code must retain the above copyright
// notice, this list of conditions ... | [
"a.bernede@woptim.dev"
] | a.bernede@woptim.dev |
9b4f03b5e8e89d85c7bd421cd2288bb3391136c8 | 470fae08316b55246ab01675ac5013febfb13eee | /src/server/game/Server/Packets/TalentPackets.cpp | c852f46de9da81ee556cf8e04bc8c4f4b2b170b8 | [] | no_license | adde13372/shadowcore | 8db6fb6ccc99821e6bd40237a0c284ce7cf543c2 | aa87944193ce02f6e99f7b35eceac5023abfca1b | refs/heads/main | 2023-04-01T07:38:39.359558 | 2021-04-03T07:54:17 | 2021-04-03T07:54:17 | 354,320,611 | 4 | 8 | null | 2021-04-03T15:02:49 | 2021-04-03T15:02:49 | null | UTF-8 | C++ | false | false | 3,671 | cpp | /*
* Copyright 2021 ShadowCore
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2 of the License, or (at your
* option) any later version.
*
* This program is distributed... | [
"81566364+NemoPRM@users.noreply.github.com"
] | 81566364+NemoPRM@users.noreply.github.com |
7952fe4a6618a509f5d237bacd8986329606fac7 | 15d44c4869cdd917083de807b98b8edb97df5714 | /Dynamic programming assignment -1/roy and coin boxes.cpp | c78fad1bafc7879818cc0c9bec54dae59b20ceeb | [] | no_license | imhkr/Eminence-CP-dec | 03140c93cc9c05bb56d6d7221c1f63d1ee09bb9b | b899a2f7ad1bccbd4aff48d028d0a0d9df436e9b | refs/heads/master | 2021-10-28T07:47:28.723101 | 2019-04-22T19:44:34 | 2019-04-22T19:44:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,025 | cpp | #include <bits/stdc++.h>
using namespace std;
int dp[1000001] = {0};
int dp2[1000001] = {0};
int r_sum[1000001] = {0};
int main()
{
int t,n;
scanf(" %d",&t);
scanf(" %d",&n);
for(int i=0;i<n;i++)
{
int x,y;
scanf(" %d %d",&x,&y);
//We mark the ranges, this will help us fill up the dp
dp[x] += 1;
dp[y+1] ... | [
"noreply@github.com"
] | noreply@github.com |
9eca36264138e4d0ac319d0a16cea0bc433f38c5 | 627cd624fa23cdcb28b449b4c831cc1ff924da40 | /INFIX TO PREFIX CONVERTER/main.cpp | e36edd898628a5510defe14bc198394390a4f671 | [] | no_license | Taha-Imtiaz/Data-Structures | 5e7c09e0edae59f11610d45fbbbf71a35b695319 | 4b60f3f72df1dfc47b6518057820d46b883ee83f | refs/heads/master | 2020-11-24T05:37:32.706901 | 2019-12-14T08:02:05 | 2019-12-14T08:02:05 | 227,987,081 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,790 | cpp | #include <stdio.h>
#include <stdlib.h>
#include<conio.h>
#include<iostream>
#include<string>
//void Innfix(string);
using namespace std;
struct node
{
string value;
struct node *next;
};
/*void Innfix(string input)
{
for(int i=0;i<input.length();i++)
{
cout<<input[i]<<endl;
}
}*/
struct St... | [
"tahaimtiaz1996@gmail.com"
] | tahaimtiaz1996@gmail.com |
f14631398fc129052216f53eae58b35003a5fb54 | 3f18ca377ffd9e73c3dacf12decf78c7c7994757 | /src/unique_path.hh | 0fec51e7870f60d332eae5d1bf3c6548e4739b0a | [
"BSD-2-Clause"
] | permissive | xanloboi/lnav | 070c1bc738e6e2b380cea1b8a4d96a7423b81a8e | c52240a25d02781b06bc0c8f386315ee5c3e2c10 | refs/heads/master | 2023-09-04T08:55:43.739825 | 2021-10-28T16:22:08 | 2021-10-28T16:22:08 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,827 | hh | /**
* Copyright (c) 2018, Timothy Stack
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* * Redistributions of source code must retain the above copyright notice, this
* list of condi... | [
"timothyshanestack@gmail.com"
] | timothyshanestack@gmail.com |
48e4b585cbb9945dd03e034266a284e40499eaa5 | f975b58d8afae4588f4808c77c6207a4372d68fb | /SlidingTilePuzzleNode.cpp | 89faf805ea705f94644ca54360f83fbb1867006f | [] | no_license | coderodde/libidpp | 533dacf03a3c3f281e163193100154c2ef3ac076 | 3fd18056149461080a83c0a6ec012fb423ee037a | refs/heads/master | 2020-04-18T12:26:20.801270 | 2019-02-09T09:14:46 | 2019-02-09T09:14:46 | 167,533,234 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,017 | cpp | #include "SlidingTilePuzzleNode.hpp"
#include <algorithm>
#include <cmath>
#include <iomanip>
#include <ios>
#include <iostream>
#include <ostream>
#include <string>
void SlidingTilePuzzleNode::checkOnSlideUp() const
{
if (m_zero_tile_y == 0) {
ZeroTileOutsideException exception(std::string("'m_zero_tile_... | [
"rodion.efremov@helsinki.fi"
] | rodion.efremov@helsinki.fi |
255616d4e1ce54555dfb4d772591bcb849946d56 | fd67b98f57273d307a71030ab67a37045b9ed7de | /Codechef/DYNAMO - Chef and Dynamo.cpp | 015132bcd56e1d17e053dd68b3567bded227a358 | [] | no_license | ngandhi369/Competitive_Programming | 5c16012b0074b2c36648bdcdc544c71d4699b93f | abb39c8903e49da2e7415501c3b011e21dc73c2f | refs/heads/master | 2023-01-02T06:38:43.848913 | 2020-10-28T18:21:58 | 2020-10-28T18:21:58 | 286,952,040 | 0 | 0 | null | 2020-09-18T09:39:01 | 2020-08-12T07:53:28 | C++ | UTF-8 | C++ | false | false | 586 | cpp | #include<iostream>
#include<cstdio>
#include<cmath>
using namespace std;
int main()
{
int t,n,k;
long long int a,b,c,d,e,s;
cin>>t;
for(int i=0;i<t;i++)
{
cin>>n>>a;
s=a+2*(unsigned long long)pow(10,n);
cout<<s<<endl;
fflush(stdout);
cin>>b;
c=(unsigne... | [
"gandhinirdosh@gmail.com"
] | gandhinirdosh@gmail.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.