blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 3 264 | content_id stringlengths 40 40 | detected_licenses listlengths 0 85 | license_type stringclasses 2
values | repo_name stringlengths 5 140 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 986
values | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 3.89k 681M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 23
values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 145
values | src_encoding stringclasses 34
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 2
classes | length_bytes int64 3 10.4M | extension stringclasses 122
values | content stringlengths 3 10.4M | authors listlengths 1 1 | author_id stringlengths 0 158 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
38e8b9456c8d566480d1316da0410549479cddd6 | 1df608097eadfb675c805b0ce8bbbbcd15b11a3d | /data_testing/test_macros.hpp | c8ccde694c38017b866608b2cefcb3f31665eedc | [] | no_license | sabjohnso/data | 53afaf47944eff7a54f2b2f8192b3ba600fa6af6 | fdf1b48f95672bf172e79af4e79859c78d4f5791 | refs/heads/master | 2020-03-22T01:59:37.988432 | 2018-07-01T15:55:53 | 2018-07-01T15:55:53 | 139,343,139 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,740 | hpp | #ifndef TEST_MACROS_HPP_INCLUDED_1448200748401194703
#define TEST_MACROS_HPP_INCLUDED_1448200748401194703 1
//
// ... Standard header files
//
#include <iostream>
#define DATA_TEST_PRINT_AUX( ... ) #__VA_ARGS__
#define DATA_TEST_PRINT( ... ) DATA_TEST_PRINT_AUX( __VA_ARGS__ )
#define DATA_FAIL( accum, ... ) \
... | [
"sabjohnso@yahoo.com"
] | sabjohnso@yahoo.com |
1d22ff1a83afd740fc0ea6809d870edd43854d67 | c08c76c06d3e48f2ce2493e22fca4f1f82839cbd | /10.8.8_ST_substr_position.cpp | 40079bc16bee169866da9fc741a8a4d6de876f82 | [] | no_license | fredeom/shen_book_solutions | 1d5ba1ce1d731849afaf7a08b679dfe76c6a0804 | a8396b1ffaaaf2696fd980504e7ec18f4d096646 | refs/heads/master | 2022-11-09T19:11:49.794742 | 2020-07-03T16:36:55 | 2020-07-03T16:36:55 | 275,020,209 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,615 | cpp | //
//
// Remake of https://e-maxx.ru/algo/ukkonen
//
//
#include <iostream>
#include <vector>
#include <map>
using namespace std;
const int inf = 1e9;
int COUNT = 0;
struct Node {
int l, r, id;
map<int, Node*> t;
Node *s;
Node *p;
Node(int l1 = -1, int r1 = -1): l(l1), r(r1), id(COUNT++) {};
void draw... | [
"smirnov@microline.ru"
] | smirnov@microline.ru |
7cb9a6a276b18187c20ec4efe0df378245be7415 | bd226417f1cc508a6fdadf8c996552184e89b34e | /competitive_coding/contests/Codechef/RE.Code2020/C.cpp | a555c1fb018a69db5562a1b25eddee1d5c7f027d | [
"MIT"
] | permissive | rupav/cp | 5876a42f5d86df482426b523fdeddcd84843c373 | 0b4c20ef3504472c1b0a9bbf586bb2daae9631c5 | refs/heads/main | 2023-02-24T23:21:31.930979 | 2021-01-30T06:08:15 | 2021-01-30T06:08:15 | 334,339,922 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 978 | cpp | #include<bits/stdc++.h>
using namespace std;
#define watch(x) cout << (#x) << " is " << (x) << endl
#define fr(i,n) for(int i=0; i<n; i++)
#define rep(i, st, en) for(int i=st; i<=en; i++)
#define repn(i, st, en) for(int i=st; i>=en; i--)
#define sq(a) (a*a)
typedef long long ll;
typedef pair<int, int> pii;
typedef pai... | [
"ruavwinchester@gmail.com"
] | ruavwinchester@gmail.com |
921f38ecc74c3f567d0f288bc11ef1ea95743d65 | ced0e9a69b30a7c4492291af41ed70d380410c76 | /FIT2049 - Week 3 Solution/EnemyKart.cpp | a1d1d27c100b000ff4d05b93cc560fc2113f0d19 | [] | no_license | mattskel/FIT2049Assignment2 | 38d89b481fb6a9b107504fd168322e6392336f66 | 714ff6db2fef3ef465c31f0379a15b87bed3a005 | refs/heads/master | 2020-04-23T21:12:57.255309 | 2016-09-23T08:24:01 | 2016-09-23T08:24:01 | 67,715,082 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,458 | cpp | #include "EnemyKart.h"
#include "MathsHelper.h"
#include <iostream>
EnemyKart::EnemyKart(Mesh* mesh,
Shader* shader,
Texture* texture,
Vector3 position,
int flag) :
Kart(mesh,shader,texture,position,NULL) {
m_moveSpeed = 3.0f; // Alter these to change the speed
m_turnSpeed = 2.0f; // Alter turn speed
m_fri... | [
"mattskelley@hotmail.com"
] | mattskelley@hotmail.com |
f339429e024027c3fa880156bb0ad77605925060 | e104df78ab10c424b52c3cc37e6e5e7572a00d1e | /3rdparty/OpenGL/include/Simd/SimdSse1Winograd.cpp | 642fce2ec68f0993139ed59d5cf054e0df0ec949 | [] | no_license | jsyang2207/ImageEvaluate | f50edc00b938f4ad9bd46e0cc68bc13b922f1600 | 59755d38fe48e169f2a02fca4e6f1929a8e5be6d | refs/heads/master | 2022-12-02T18:06:26.090997 | 2020-08-19T05:25:54 | 2020-08-19T05:25:54 | 288,387,109 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 156,591 | cpp | /*
* Simd Library (http://ermig1979.github.io/Simd).
*
* Copyright (c) 2011-2020 Yermalayeu Ihar.
*
* 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 limi... | [
"jsyang@4dreplay.com"
] | jsyang@4dreplay.com |
d55749546c949c65c24c3156d076e6e2196f088f | 5410981c017968306cb42c709b0b77174bb539f5 | /CSC3222/CSC3222Coursework 2020 2021/RigidBody.h | fd9b972be3a1c570cfa722723edb9b676b9cb8c8 | [] | no_license | JackGHopkins/CSC3222---Game-Simulations | d16ec2cc633a187e28222d0f9be6cd21cdaf569d | fa0f71443d25b1add3199802e7ba11663395819e | refs/heads/master | 2023-05-05T18:04:01.934537 | 2021-05-26T00:00:18 | 2021-05-26T00:00:18 | 337,052,482 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,607 | h | #pragma once
#include "../../Common/Vector2.h"
namespace NCL {
using namespace Maths;
namespace CSC3222 {
class RigidBody {
friend class GameSimsPhysics;
public:
RigidBody();
~RigidBody();
Vector2 GetPosition() const {
return position;
}
void SetPosition(const Vector2& newPosition) {
... | [
"jackghopkins@gmail.com"
] | jackghopkins@gmail.com |
f57db94ad78dc6aefd19bfe3f895faea03c15add | c23f0748ae0f464cea4be2ffa9c456163a7f7e02 | /arrays_string/rev.cpp | ecf70466cf4458e3265b8fcfb0b965288d330b4a | [] | no_license | arp5/crackingthecodinginterview | 86e9aad29beec82f4bf6340448bc4dd84dc35c36 | 2195883f0bf68116bedf3571d56fe963c5b4867c | refs/heads/master | 2021-04-28T21:34:17.296927 | 2017-01-01T06:57:55 | 2017-01-01T06:57:55 | 77,769,041 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 314 | cpp | //Write code to reverse a C-Style String. (C-String means that “abcd” is represented as
//!ve characters, including the null character.)
#include<iostream>
using namespace std;
void revstrC(string s){}
int main(){
char mystr[]="arpita";
//mystr = "star";
mystr[3] = 1;
cout << mystr<< endl;
return 0;
} | [
"noreply@github.com"
] | arp5.noreply@github.com |
dcbe12e9e7447ded4d9009a14f26f81e68a093bd | 78e7cd17efe19cc61a09efcbf63c4f83ad0c24e2 | /physics-baccarat_copy/generator/include/BaccGeneratorXe129m.hh | 51e7e8beb444af6d0feb50a9dbca7a65be614f23 | [] | no_license | bglenardo/CNG | 8ac15269b5e741ea4b4a714d3e62cc0691483eaa | ea98b55604a74c59216cbd04161d89592cf57e76 | refs/heads/master | 2020-05-31T04:34:44.208252 | 2015-12-03T00:29:34 | 2015-12-03T00:29:34 | 22,165,976 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,213 | hh | ////////////////////////////////////////////////////////////////////////////////
/* BaccGeneratorXe129m.hh
This is the header file for the Xe129m generator.
********************************************************************************
Change log
2013/11/20 - Initial submission (Vic)
*/
////////////////////////... | [
"bglenardo@gmail.com"
] | bglenardo@gmail.com |
772ae0b4dc1041a47eb8abf310c8de08ed0793b4 | d0276045ff88c6ad4969aa4deb929d1e2ed9efb7 | /Striver SDE SHEET/Day 3 (Arrays and Maths)/Reverse Pairs.cpp | 050ed168df715e27715f1c7c76b5f6b3cbf64b6f | [] | no_license | rishabhtyagi2306/Competitive-Programming | 2f4d6e34701d3012832e908341606fa0501173a4 | 269d42a89940eefa73c922b6f275596fe68add6a | refs/heads/master | 2023-07-12T18:05:17.366652 | 2021-08-29T18:30:09 | 2021-08-29T18:30:09 | 256,992,147 | 3 | 3 | null | 2020-10-02T05:43:31 | 2020-04-19T12:20:46 | C++ | UTF-8 | C++ | false | false | 1,503 | cpp | class Solution {
public:
void merge(vector<int> &a, int l, int mid, int r, int &ans)
{
int n = mid-l+1;
int m = r-mid;
int left[n], right[m];
int i, j, k;
for(i = 0; i < n; i++)
{
left[i] = a[i+l];
}
for(i = 0; i < m; i++)
... | [
"rishabhtyagi.2306@gmail.com"
] | rishabhtyagi.2306@gmail.com |
3ded3efcb080c80605e59ccd381baae913c567a0 | c86123c9dd3ed755029d61d57df0408fe3f67192 | /entities/bullet.cpp | 5d0f7bc535e111894be0948f710e5440ec2b0c60 | [] | no_license | Przemekkkth/Qt-C-SimpleGame | a894f88849a4ca225edd2af7c3b23059dadf63ff | 299966a49b7f057c2b1837ce702dde9fd4d8b866 | refs/heads/master | 2020-04-25T12:00:00.065361 | 2019-06-01T17:27:39 | 2019-06-01T17:27:39 | 172,764,026 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,691 | cpp | #include "bullet.h"
#include <QGraphicsScene>
#include "tools/sprite.h"
#include "bluebackground.h"
#include "tools/config.h"
#include "evil1.h"
#include "wall.h"
#include <QDebug>
static const double Pi = 3.14159265358979323846264338327950288419717;
static double TwoPi = 2.0 * Pi;
static qreal normalizeAngle(qreal ... | [
"pbadaruk@dashspace.io"
] | pbadaruk@dashspace.io |
c0d4b30c4f8f531edd5875921ad5223cbf53d276 | ed275d7bb2ee5eba732ceb02226b8161584761b5 | /fk/slience/coroutine/coroutine.cpp | efa086313ded2f520f6bba698809fd69b73bbd8e | [] | no_license | wangscript007/server_fk | 55b208139502a115f69657b08ac656b6442d6d3b | 7f4c57710f0d7f4a43018f4518a127358364c9db | refs/heads/master | 2022-01-28T23:25:14.457886 | 2019-05-05T07:23:09 | 2019-05-05T07:23:09 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,004 | cpp | #include "slience/coroutine/coroutine.hpp"
#include "slience/base/tls.hpp"
#include <cassert>
M_COROUTINE_NAMESPACE_BEGIN
#define gschedule base::tlsdata<_schedule_>::data()
unsigned int Coroutine::curid() {
_schedule_& schedule = gschedule;
if (schedule._curco) {
return schedule._curco->_id;
}
re... | [
"404558965@qq.com"
] | 404558965@qq.com |
1d9affb64e5a12dfe0d660e1244939b962f39e34 | a92b18defb50c5d1118a11bc364f17b148312028 | /src/prod/src/Store/TSEnumeration.cpp | 6832a14bc94a4629d7e0284d5743b41462760be9 | [
"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,750 | 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 nam... | [
"noreply-sfteam@microsoft.com"
] | noreply-sfteam@microsoft.com |
f9cba6b90f8541b834b74e5e58f9547fc18b2bc8 | c9e6e57d5b9ee314bf54dcf8b88607e8e6dc68ec | /Iris Engine/WaitForTimer.cpp | 99966de43d13db8284ff2ad2599ce67a305702c3 | [
"Libpng",
"LicenseRef-scancode-unknown-license-reference",
"BSD-3-Clause",
"IJG",
"MIT",
"Zlib",
"LicenseRef-scancode-warranty-disclaimer"
] | permissive | diegodan1893/Iris-Engine | 81d40757e187dbde81eeb45bf9bf97c1806140e6 | a2c527c7c586eb749f954a0fa10f0e040b4508d5 | refs/heads/master | 2022-11-05T16:39:54.436579 | 2022-04-25T17:19:50 | 2022-04-25T17:19:50 | 143,319,563 | 14 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 242 | cpp | #include "WaitForTimer.h"
#include "GameObjectManager.h"
WaitForTimer::WaitForTimer(GameObjectManager* gameObjectManager)
:gameObjectManager(gameObjectManager)
{
}
bool WaitForTimer::ready()
{
return gameObjectManager->timerFinished();
}
| [
"diegodan1893@gmail.com"
] | diegodan1893@gmail.com |
de1c0b373504a71972ec198633061de6e5fbdab1 | c82556c4b54502205761ab33cf31fd27eca1e8ab | /SystemC Model/hardware/fcfsinterconnect.hpp | ae34b3ee8deff386c5eba909e6542853c883a385 | [
"Apache-2.0"
] | permissive | PETAMC/MDPI-Applied-Sciences-2021 | ee248819de53eb56843d0303ba7822813adbdd8e | 25c7de4e1356ff69350409995085d7471d991cbd | refs/heads/main | 2023-04-08T12:46:48.514523 | 2021-05-31T03:42:29 | 2021-05-31T03:42:29 | 369,064,108 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 311 | hpp | #ifndef FCFS_INTERCONNECT_HPP
#define FCFS_INTERCONNECT_HPP
#include <hardware/interconnect.hpp>
class FCFSInterconnect
: public Interconnect
{
public:
FCFSInterconnect(const char* name)
: Interconnect(name) {};
};
#endif
// vim: tabstop=4 expandtab shiftwidth=4 softtabstop=4
| [
"ralf.stemmer@offis.de"
] | ralf.stemmer@offis.de |
08ab025cbbdd8ac610c2d75b931c57401627bf8b | 9b87a301583a802b9734b96fa4824bcd47db0f7e | /libraries/Filter/Filter.h | a66fb3d6262543f6f598e23b6aeb5086e76f8f0c | [] | no_license | alsaibie/RescueBot | 89221276a19e13e62fcf25f4cb8e3a4e3de4725e | 2318bbd0b373a98763bdf7e90e8710f9ad4f540a | refs/heads/master | 2021-01-10T14:23:46.709062 | 2014-11-05T19:39:08 | 2014-11-05T19:39:08 | 54,488,274 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 456 | h | //Low pass butterworth filter order=2 alpha1=0.5
#pragma once
class Filter
{
public:
Filter()
{
for(int i=0; i <= 3; i++)
v[i]=0.0;
}
private:
float v[4];
public:
float step(float x) //class II
{
v[0] = v[1];
v[1] = v[2];
v[2] = v[3];
v[3] = (1.809893300751e-2 * x)
+ ( 0.278059... | [
"ali@alsaibie.com"
] | ali@alsaibie.com |
0ca427f4fefef3cd1eadf41a15ab4b83bc4ffe4f | 97dba80026128e9296e575bb58b9cc7867bbc77f | /others/microsoft/B.cpp | 0e16c063c6ac19327272c09890e77e6254614f3f | [] | no_license | intfloat/AlgoSolutions | 5272be3dfd72485ff78888325a98c25b2623e3cb | 2f7b2f3c4c8a25eb46322e7f8894263ecd286248 | refs/heads/master | 2021-12-23T08:18:32.176193 | 2021-11-01T05:53:27 | 2021-11-01T05:53:27 | 9,474,989 | 18 | 4 | null | null | null | null | UTF-8 | C++ | false | false | 1,279 | cpp | #include <bits/stdc++.h>
#define FOR(i, n) for (int i = 0; i < (int)n; ++i)
using namespace std;
typedef long long ll;
typedef pair<int, int> pii;
const int INF = INT_MAX / 2;
char s[100005];
bool banned[1000];
inline bool check(int a, int b) {
return !banned[a * 26 + b];
}
int main() {
int n, m;
scanf("%d"... | [
"wangliangpeking@gmail.com"
] | wangliangpeking@gmail.com |
16c4895f2e5c0e0ed2785166220ce304a44169be | 721d70011e3b9447113b0f62d5e6bb00c54b7008 | /windows/mingw/i686-w64-mingw32/include/qedit.h | 81a33a01cb23f50dcc6f98270d6a26b31f28f0f2 | [
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-public-domain"
] | permissive | mrmoss/parrot_kinect | d8f3dd477dc6206d54f17266fc618e5e5705fde3 | 5e118c7b5a31bfa999cd3eb8777677f923fa80b0 | refs/heads/master | 2021-01-10T21:06:29.716162 | 2015-11-11T22:11:50 | 2015-11-11T22:11:50 | 8,966,232 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 28,021 | h | /*** Autogenerated by WIDL 1.5.25 from direct-x/include/qedit.idl - Do not edit ***/
#ifndef __REQUIRED_RPCNDR_H_VERSION__
#define __REQUIRED_RPCNDR_H_VERSION__ 475
#endif
#include <rpc.h>
#include <rpcndr.h>
#ifndef COM_NO_WINDOWS_H
#include <windows.h>
#include <ole2.h>
#endif
#ifndef __qedit_h__
#... | [
"mrmoss@alaska.edu"
] | mrmoss@alaska.edu |
251409539ac65353a084000fcb0e8f286da85348 | f0c72e77df916351858bffc6f6ace65cc3c7ec8e | /Libraries/LibWeb/DOM/Timer.cpp | a9bf2dcd4bd63b91fb604df76f8c9fd0a8b2001a | [
"BSD-2-Clause"
] | permissive | JacksiroKe/serenity | 9d9ae9aa241cc2de6c66b126e7a7a51b72271b5f | 0bcdb422a4f3c0f999933827557555feb1b25ae4 | refs/heads/master | 2022-12-28T10:23:59.642534 | 2020-10-18T00:23:12 | 2020-10-18T00:23:12 | 294,908,903 | 1 | 0 | BSD-2-Clause | 2020-10-18T00:23:13 | 2020-09-12T09:08:32 | null | UTF-8 | C++ | false | false | 2,323 | cpp | /*
* Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
* 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, t... | [
"kling@serenityos.org"
] | kling@serenityos.org |
aa95e0b77f3cd5b6c8ffdb6913eeacc70679788e | 083100943aa21e05d2eb0ad745349331dd35239a | /aws-cpp-sdk-kms/source/model/KeyListEntry.cpp | 39066bdbb3795758ff0e550bb34b100b14569c96 | [
"JSON",
"MIT",
"Apache-2.0"
] | permissive | bmildner/aws-sdk-cpp | d853faf39ab001b2878de57aa7ba132579d1dcd2 | 983be395fdff4ec944b3bcfcd6ead6b4510b2991 | refs/heads/master | 2021-01-15T16:52:31.496867 | 2015-09-10T06:57:18 | 2015-09-10T06:57:18 | 41,954,994 | 1 | 0 | null | 2015-09-05T08:57:22 | 2015-09-05T08:57:22 | null | UTF-8 | C++ | false | false | 1,599 | cpp | /*
* Copyright 2010-2015 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file... | [
"henso@amazon.com"
] | henso@amazon.com |
80287e1df82bfa3ba6816b51f649c02d8b58f1ef | 5583fb41ebc6e4ca1e3adf5bac5ceb94ba7b663e | /Operator logika.cpp | 8aa53572b96ef9d4876d89c6ce4dc296812c77e9 | [] | no_license | TRISMAN18/Latihan_operator_logika | fc9fd678f220036bd0a0c0243aea722e4f8ad085 | 0a3880fa0227a9c787d3c423b43663520addc915 | refs/heads/master | 2020-07-28T21:13:59.058450 | 2019-09-19T11:49:55 | 2019-09-19T11:49:55 | 209,539,486 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,276 | cpp | #include <iostream>
using namespace std;
int main(){
cout<<"A OR B"<<endl;
cout<<"0 OR 0 ="<<(0 || 0)<<endl;
cout<<"0 OR 0 ="<<(0 || 0)<<endl;
cout<<"0 OR 1 ="<<(0 || 1)<<endl;
cout<<"0 OR 1 ="<<(0 || 1)<<endl;
cout<<"1 OR 0 ="<<(1 || 0)<<endl;
cout<<"1 OR 0 ="<<(1 || 0)<<endl;
cout<<"1 OR 1 ="<<(1 ... | [
"noreply@github.com"
] | TRISMAN18.noreply@github.com |
3fb7309bfed7e838e203604c056a93a179900332 | 8e3a873596b1aa0e10ef109e78b2970ce9ba1aae | /week7/smart_obj/smart_ptr/object.h | af64ddb919f0481eb95ede97105309491137bad0 | [] | no_license | HelloJinoo/Object_Oriented | 7657c26c209217f5195878effbe6c1ea0c0a52d8 | 71218bb928ff704eabdeee54a59f4dbf8bccb9c5 | refs/heads/master | 2020-07-24T02:39:02.528038 | 2019-12-16T11:31:21 | 2019-12-16T11:31:21 | 207,776,718 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 368 | h |
#ifndef SMART_PTR_OBJECT_H
#define SMART_PTR_OBJECT_H
#include <iostream>
class Object{
private :
int val;
public :
Object();
explicit Object(int _val);
~Object();
int get() const;
Object operator+(const Object &obj);
Object operator-(const Object &obj);
Object operator*(const Object &obj);
O... | [
"wkdwlsdn9637@naver.com"
] | wkdwlsdn9637@naver.com |
a3adef9c87001e6ab4f68385a85dda50cc168e74 | f0f7fbce15f0b9e116cf97a3542f436d8be93b8d | /graphlearn/common/base/time_stamp.cc | 9dfd200b421342a522b2df2514b75413e5a1e3c9 | [
"Apache-2.0"
] | permissive | lorinlee/graph-learn | 2accd9bb4bd06b22778d1f42774c210aacc9681c | 1827c28c570c355e513f24b6a61a88457cfecdaf | refs/heads/master | 2022-12-15T12:43:26.914824 | 2020-09-15T10:39:16 | 2020-09-15T10:42:50 | 295,692,911 | 0 | 0 | Apache-2.0 | 2020-09-15T10:30:01 | 2020-09-15T10:30:01 | null | UTF-8 | C++ | false | false | 1,061 | cc | /* Copyright 2020 Alibaba Group Holding Limited. 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 by applicable law o... | [
"jackon.zhao@gmail.com"
] | jackon.zhao@gmail.com |
4b8d7c0c7020ae665b612b55f443fc57bfa7c3b7 | 63539d1fba8f4f8a4c64dcc5f3ecdc3e2c31b834 | /scripts/links/src/DynamicalVariables.cpp | e18f8cfb62ece349b5f5eb4f99313f4bf213a8a6 | [] | no_license | LipeiDu/cpu-vhb | dd022a3ff73fd81b94f8aa98a41d2b56d16ab533 | aa57de31158ab998d0b6a94fbed01e25f779b5f5 | refs/heads/master | 2021-06-03T07:33:39.359822 | 2018-10-17T16:57:20 | 2018-10-17T16:57:20 | 111,721,017 | 0 | 0 | null | 2018-10-17T16:57:22 | 2017-11-22T18:50:23 | Mathematica | UTF-8 | C++ | false | false | 135 | cpp | /home/derek/MEGA/hydro-resources/cpu-vh-with-fo/scripts/../rhic/rhic-trunk/src/main/cpp/edu/osu/rhic/trunk/hydro/DynamicalVariables.cpp | [
"everett.165@buckeyemail.osu.edu"
] | everett.165@buckeyemail.osu.edu |
4ddd8964597de4f2265a529c063ca25d0045d2d2 | 12043db0f57f5d9402a99507648bcbb4d9417452 | /Programming_Abstractions/Chapter_04/Exercise_05/Exercise_05/is_magic.cpp | d13b26284896e3d09ee58a6876949c2bd9628a5e | [] | no_license | daniellozuz/CPP | a8afb1ae3353bd483cf953fac8a70b0b1446023c | fdc8957158522fc27aa55a44b3e45333157b843f | refs/heads/master | 2021-05-12T08:31:17.581023 | 2018-03-07T23:41:45 | 2018-03-07T23:41:45 | 117,283,294 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,571 | cpp | #include <iostream>
#include <vector>
using namespace std;
bool is_magic_square(vector<vector<int>> &square);
int sum_line(vector<vector<int>> &square, int row, int col, int d_row, int d_col);
int main(void) {
vector<vector<int>> magic_square1 = {
{ 8, 1, 6 },
{ 3, 5, 7 },
{ 4, 9, 2 },
... | [
"daniel.zuziak@gmail.com"
] | daniel.zuziak@gmail.com |
d0411e57bbf510ceff88cb207ebb6974479b490e | d876dd989107ab970f91023a3c8ccc6fb230121d | /google/cloud/bigtable/internal/common_client.cc | 898d1e7ade19c539943b9a1799b392005cffb930 | [
"LicenseRef-scancode-unknown-license-reference",
"Apache-2.0"
] | permissive | corn2/google-cloud-cpp | f8af319c720219919135610336399de6f99c4216 | 054efad30977e2ca90e735f7aceb052a70f17662 | refs/heads/master | 2022-09-13T13:51:19.178844 | 2020-05-27T20:59:37 | 2020-05-27T20:59:37 | 267,444,529 | 3 | 0 | Apache-2.0 | 2020-05-27T23:08:45 | 2020-05-27T23:08:44 | null | UTF-8 | C++ | false | false | 1,522 | cc | // Copyright 2018 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in ... | [
"noreply@github.com"
] | corn2.noreply@github.com |
393ab3e36e19b5dc28d3a0d85651676c1ebfee3e | 483194ec10e6149c3245ff48c1857f48deba1578 | /External/asio/ip/detail/endpoint.hpp | eaefc2a73e2b289baf5f0ce52ef8fbea679ac244 | [] | no_license | davidroze/StormWebrtc | 3efc68c9e16b34da0728716f460f44ca8a50f59d | cd471d5107c3bfe0cb885caf81063915ad4d386a | refs/heads/master | 2021-05-08T16:43:43.539787 | 2018-02-04T10:05:43 | 2018-02-04T10:05:43 | 120,167,513 | 0 | 0 | null | 2018-02-04T08:24:11 | 2018-02-04T08:24:11 | null | UTF-8 | C++ | false | false | 3,792 | hpp | //
// ip/detail/endpoint.hpp
// ~~~~~~~~~~~~~~~~~~~~~~
//
// Copyright (c) 2003-2015 Christopher M. Kohlhoff (chris at kohlhoff dot com)
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
//
#ifndef ASIO_... | [
"nick.weihs@gmail.com"
] | nick.weihs@gmail.com |
613f6e18f1e8feb77b1ae93b52a309095a7020ad | fa2cec4d65c07cccbf7dfae3f39b66db76437f06 | /Examples/CAN_Test/samc21_can.h | f0a5514af532f447ed5f9516d33255b27411c33d | [] | no_license | niladridmgit/xplainedniladri | fc286657acbb8d876a322169a88c7bda07991bce | 99d59fb77f675bb30577fdce72e5f069fecedd85 | refs/heads/master | 2023-03-25T21:17:29.777356 | 2021-03-11T18:19:34 | 2021-03-11T18:19:34 | 345,077,138 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,513 | h | /**
* @file
* @author Scott Price <prices@hugllc.com>
* @copyright © 2017 Hunt Utilities Group, LLC
* @brief The include file for using the SAMC
* @details
*/
#ifndef _SAMC_CAN_H_
#define _SAMC_CAN_H_
#include "sam.h"
#include "mcan.h"
#include "mcan_helper.h"
#include "mcp_can_dfs.h"
#define MAX_CHAR_... | [
"niladri.dm.rsb@gmail.com"
] | niladri.dm.rsb@gmail.com |
b1102477eb8ff2f13e1ad2a0ff49e0438bbcf2d4 | b9face457a0982635ed952071806b94da5ee00e9 | /proj.ios_mac/Touchable.cpp | 30438bfe10f42e1daa22c0866734fb6b100a65a8 | [
"MIT"
] | permissive | Crasader/cheeze | d92e766ac69e6f7f1d3226fac98618c067df81bf | f1a7d375c6831896a7d9b3f7518657da11f28085 | refs/heads/master | 2020-11-29T04:03:06.828517 | 2016-12-09T07:00:49 | 2016-12-09T07:00:49 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,435 | cpp | #include "Touchable.h"
const std::string Touchable::LONG_TOUCH_KEY = "longTouch";
const float Touchable::LONG_TOUCH_SEC = 1.0f;
void Touchable::onLongTouch(Widget* widget, const Callback& action)
{
widget->setTouchEnabled(true);
widget->addTouchEventListener([&, action](Ref* ref, Widget::TouchEventType eventTy... | [
"nao.upper.field@gmail.com"
] | nao.upper.field@gmail.com |
d02f92efef29da5d0a9abf35771c4f75cc684203 | 5eb01b2eff25fb0d8fbbb00b02961e565ac3f415 | /widgetkit/filteroklineedit.h | 0e4041fae6752bcc4c0026793bcd8a363db3dea7 | [] | no_license | biglone/LT-PureCodes | 3ca6fc47731e2d566cd1c5389cce93e55768933a | 22d7ec1a1414bc99a16a050800a2cc9259546b9a | refs/heads/master | 2020-05-04T10:29:03.603664 | 2019-04-02T14:23:40 | 2019-04-02T14:23:40 | 179,088,457 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 461 | h | #ifndef FILTEROKLINEEDIT_H
#define FILTEROKLINEEDIT_H
#include "widgetkit_global.h"
#include "fancylineedit.h"
class WIDGETKIT_EXPORT FilterOkLineEdit : public FancyLineEdit
{
Q_OBJECT
public:
explicit FilterOkLineEdit(QWidget *parent = 0);
void setClearRightButton();
void setOkRightButton();
signals:
void fi... | [
"jjoyceu@gmail.com"
] | jjoyceu@gmail.com |
3445498614da1cf66142e1b9d2f878906cb86a56 | 82669371970438169ec34783c80f69146b0cb9d2 | /Source/Projet_Aaron/Mutation/AllergyMutation.cpp | e54e57bb4396701e853e10648e447fa3892ff941 | [] | no_license | LeProfyteur/Projet_Aaron | 9a4c0891e5f06e8f2eddcd2d81ed48b98d5ba3b9 | 52f442ec7ad542c3fe95873243ec9d4130ce6d46 | refs/heads/master | 2023-05-21T01:52:49.748079 | 2020-05-25T09:42:49 | 2020-05-25T09:42:49 | 238,959,399 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 327 | cpp | // Fill out your copyright notice in the Description page of Project Settings.
#include "AllergyMutation.h"
UAllergyMutation::UAllergyMutation()
{
}
void UAllergyMutation::OnEquip(FCharacterSkills& Skills)
{
Skills.Allergy = true;
}
void UAllergyMutation::OnUnEquip(FCharacterSkills& Skills)
{
Skills.Allergy = fa... | [
"louchez26@hotmail.fr"
] | louchez26@hotmail.fr |
60a29403e85effc37b3766a71bc88420a70afc9f | b769870a0bb62ef3dfbe860212fdb70568435128 | /GameAsteroids/GameAsteroids/GameAsteroids.h | 97c4398d99e82e6e33399e6b34a4d2e5374836fd | [] | no_license | smallinsect/MyGame | 50255b092ea75b2d869a1130ed3c79e6bdcc0c07 | 2fdd21567307fd4455d5dbcf3aa9f3234ebd67ad | refs/heads/master | 2021-02-07T08:07:15.108885 | 2021-02-04T14:20:31 | 2021-02-04T14:20:31 | 244,001,107 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 488 | h |
// GameAsteroids.h: PROJECT_NAME 应用程序的主头文件
//
#pragma once
#ifndef __AFXWIN_H__
#error "在包含此文件之前包含 'pch.h' 以生成 PCH"
#endif
#include "resource.h" // 主符号
// CGameAsteroidsApp:
// 有关此类的实现,请参阅 GameAsteroids.cpp
//
class CGameAsteroidsApp : public CWinApp
{
public:
CGameAsteroidsApp();
// 重写
public:
virtual BOO... | [
"513312514@qq.com"
] | 513312514@qq.com |
6f0f484e78236393075d77d49f5287df2ecdd9d2 | cedee59c1f3b7322ae08683565555eb2fe15444d | /node_modules/react-native/ReactCommon/fabric/components/view/TouchEvent.h | 86022f2b875aabfc285baaf8d50746f7f6e664b5 | [
"MIT",
"CC-BY-SA-4.0",
"CC-BY-4.0",
"CC-BY-NC-SA-4.0"
] | permissive | ildaneta/nlw-6-game-play | 279eecf6dd20116e83d46f3e7005616ad7601e47 | 646efcc67db37eaf04bb3c452fbf2e4c99f6d5a9 | refs/heads/main | 2023-06-20T19:29:56.023594 | 2021-07-18T00:16:30 | 2021-07-18T00:16:30 | 378,730,034 | 4 | 0 | MIT | 2021-07-18T00:16:30 | 2021-06-20T20:02:14 | TypeScript | UTF-8 | C++ | false | false | 1,266 | h | /*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
#pragma once
#include <react/debug/DebugStringConvertible.h>
#include <unordered_set>
#include <react/components/view/Touch.h>
... | [
"iildaemanoely@gmail.com"
] | iildaemanoely@gmail.com |
28537fd4e96d3a45f2ee71b1f3cece4b23c7d8ab | 3a0fd458f253a2284cb58608822c108a8601a553 | /CPTTRN1/CPTTRN1-16821829.cpp | 307a8423dc8523398758f75fd05012a8304c9a9f | [] | no_license | shahsid104/Spoj | df87a6017098828c29e0e03965c8be8247e1cec9 | 3f31829d66463b5ecd6623ff724bbb92e2bd88d0 | refs/heads/master | 2021-04-26T15:58:27.894539 | 2016-10-17T16:01:37 | 2016-10-17T16:01:37 | 71,153,790 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 455 | cpp | #include <iostream>
#include<stdio.h>
using namespace std;
int main() {
// your code goes here
int t,r,c;
scanf("%d",&t);
while(t--)
{
scanf("%d%d",&r,&c);
for(int i=1;i<=r;i++)
{
for(int j=1;j<=c;j++)
{
if(i%2==0)
{
if(j%2!=0)
printf(".");
else
printf("*");
}
els... | [
"Sid Shah"
] | Sid Shah |
f59ce1d898b78f0c07fbec438c773fe0fd376067 | fd54ba386f80bef6d4374bf92e9bddb56a1232c3 | /k2000/k2000App/src/k2000Main.cpp | 7371fb9169916dbc9729179128ca29b9471491b0 | [] | no_license | NSLS-II-CSX/xf23id1-ioc1 | 91bce9f45fea35dbc6fb7b6997b8553ebcf2d274 | 6e0c14c4520cabb1b87b5eb1b250550809426b37 | refs/heads/master | 2021-01-01T04:06:27.806098 | 2016-05-02T20:00:18 | 2016-05-02T20:00:18 | 57,917,438 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 405 | cpp | /* k2000Main.cpp */
/* Author: Marty Kraimer Date: 17MAR2000 */
#include <stddef.h>
#include <stdlib.h>
#include <stddef.h>
#include <string.h>
#include <stdio.h>
#include "epicsExit.h"
#include "epicsThread.h"
#include "iocsh.h"
int main(int argc,char *argv[])
{
if(argc>=2) {
iocsh(argv[1]);
... | [
"root@xf23id1-ioc1.cs.nsls2.local"
] | root@xf23id1-ioc1.cs.nsls2.local |
5e60912297542abc40297f5fda6bf8155a10b152 | fec81bfe0453c5646e00c5d69874a71c579a103d | /blazetest/src/mathtest/operations/dmatsmatsub/DDbMCa.cpp | 49e2993fbaee64f0ef230284029f38bd257dbe23 | [
"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,200 | cpp | //=================================================================================================
/*!
// \file src/mathtest/operations/dmatsmatsub/DDbMCa.cpp
// \brief Source file for the DDbMCa dense matrix/sparse matrix subtraction math test
//
// Copyright (C) 2012-2020 Klaus Iglberger - All Rights Reserved
//
... | [
"klaus.iglberger@gmail.com"
] | klaus.iglberger@gmail.com |
349c03aaaac4b1577bb323d522a1fe32dc2530e3 | 80b509a0d765b36d010558382d361e14c038d79d | /singleton.h | 2af98a8f50cc282408c2c8aaf02f111788c75dc4 | [] | no_license | MalithaDilshan/EMP | a9a7c0dfbd6a1e6261db42891fd6634f62d75a4e | 9a997e6a5ef021261092676bea6c83b3dc9195d8 | refs/heads/master | 2020-03-28T22:30:59.950565 | 2018-09-18T14:56:21 | 2018-09-18T14:56:21 | 149,236,819 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 948 | h | //**********************************************************//
// Use the singleton anti pattern access database securely. //
//**********************************************************//
#ifndef SINGLETON_H
#define SINGLETON_H
#include <iostream>
#include<string>
#include "datahandler.h"
using namespace std;
cla... | [
"malithakumarasiri93@gmail.com"
] | malithakumarasiri93@gmail.com |
1a206f36323d6b25411c2db655df1f1e42e4e215 | 3af0a15b5bef3e77dd5e1955a7b14a8b0573c48d | /LeetCode/Count and Say/main.cpp | a8e9aeb9aec8d76f8a540f801d1df7fd9f15c06b | [] | no_license | tinglai/Algorithm-Practice | 7ef98585e52585d6deed92e669c3af767d3e8033 | e51831e43e00e935d19e2a8ca934eede9d1f6367 | refs/heads/master | 2021-01-25T10:29:19.107639 | 2015-06-02T13:09:04 | 2015-06-02T13:09:04 | 25,283,963 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,060 | cpp | #include <iostream>
#include <string>
#include <deque>
using namespace std;
class Solution {
public:
string countAndSay(int n) {
string result;
if(n <= 0) return result;
deque<int> container;
container.push_back(1);
int count;
int val;
int lastElt;
unsigned int size;
for(int i = 0; i < n - 1; i+... | [
"laiting@umich.edu"
] | laiting@umich.edu |
377271a958f54f71f70d705eb9a13d858d7ae30f | 8ad562972b4e1e165dbf0291ed676fb9c0248be6 | /main.cpp | becd4411a1d8c871d2fa00fe83d64145c0306a60 | [] | no_license | jk5462/cs3113_pong | 63e34496328b0298c178827e4a07c59a46422518 | 8eaa531c1515d8bcfe4a76e56e18129097b40693 | refs/heads/master | 2020-08-01T21:28:40.256068 | 2019-09-28T22:58:32 | 2019-09-28T22:58:32 | 211,121,991 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,561 | cpp | #define GL_SILENCE_DEPRECATION
#ifdef _WINDOWS
#include <GL/glew.h>
#endif
#include <SDL.h>
#include <SDL_opengl.h>
#include <SDL_image.h>
#include "glm/mat4x4.hpp"
#include "glm/gtc/matrix_transform.hpp"
#include "ShaderProgram.h"
#define STB_IMAGE_IMPLEMENTATION
#include "stb_image.h"
#include "Entity.h"
SDL_Win... | [
"jhkim@superb-ai.com"
] | jhkim@superb-ai.com |
89c4425447d85e02583d6d56b1c7a29febff2329 | a4097c439563e70b12af187c63e30a5c57c5f699 | /labs/lab03_build_process/squeak_quack.cc | eec22eb2e417460165a44b6bb36bb3b47a5720b1 | [] | no_license | conorbrown327/Iteration-2 | 47551d0a40eef0c4cc5be9f0323a436c02aa7688 | 96660b4c29350281dec43b2accea6314adad50b5 | refs/heads/master | 2023-06-10T04:04:49.596300 | 2021-04-20T03:36:52 | 2021-04-20T03:36:52 | 381,190,663 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 289 | cc | //
// squeak_quack.cc
//
// Created by Seth Johnson on 2/5/15.
// Copyright (c) 2015 Seth Johnson. All rights reserved.
//
#include "squeak_quack.h"
#include <iostream>
using std::cout;
using std::endl;
void SqueakQuack::Quack() {
cout << "SQUEAK!!" << endl;
}
| [
"bende263@umn.edu"
] | bende263@umn.edu |
a9e4eea48226c36bbb6611fc9bbe209e355d48e1 | f7eea41b4bc57b548d547c4406a7bc04c8d9e7d9 | /1030/main.cpp | 0a97c9cbf495529606cfb139c68e4023bb9b5690 | [] | no_license | zhuhui1990/pat_advanced | 7d5e87cbe7dba76d8b7d1864a89851c4052c278a | b8c3afd85efd191baa73c86d311a2d2f74a28356 | refs/heads/master | 2021-05-01T02:25:21.605408 | 2017-01-24T15:11:57 | 2017-01-24T15:11:57 | 79,923,328 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,889 | cpp | #include <iostream>
#include <vector>
using namespace std;
struct Node{
vector<int> neighbour;
vector<int> dist;
vector<int> cost;
};
bool find(const vector<int>& v,const int& j){
for(int i=0;i<v.size();++i){
if(v[i]==j){
return true;
}
}
return false;
}
void DFS(int i,const int& d,int& cost,int& dist,... | [
"zhuhui.last@foxmail.com"
] | zhuhui.last@foxmail.com |
4d4608992a893583b26048568df3fec1b72ebab1 | 8475f2eeaae6e2861b764bfeb79d1603b7bfe233 | /LintCode!/371. 用递归打印数字.cpp | e345806a4d0092a1c413b3329d4bb6481d58fd38 | [] | no_license | danhuang-0/MyLintCode | 82cc2eb01199adcf88c5b56dd66bd01cb6e1e747 | c017247e91e98b4c5ba6465a30ce4f81e4fd358a | refs/heads/master | 2020-03-25T08:30:20.028950 | 2019-01-05T05:18:24 | 2019-01-05T16:47:54 | 143,616,150 | 1 | 0 | null | null | null | null | GB18030 | C++ | false | false | 832 | cpp | //// 递归N层,就需要每一层完成一位的添加
//
//#include <iostream>
//#include <vector>
//
//using namespace std;
//
//class Solution {
//public:
// /**
// * @param n: An integer
// * @return: An array storing 1 to the largest number with n digits.
// */
// void makeNums( vector<int> &vecNums, int nLevel, int nMaxLevel ){
... | [
"danhuang_0@163.com"
] | danhuang_0@163.com |
e55aab3f75ce940f002ab639e7c581faabc10612 | 64579720a172473bd0cfb07de79fd1dd0a8eccd8 | /ConsoleRPG/ItemSystem.cpp | ece0a0ab17bfe4737e044d276f805bfbfc3ebabd | [] | no_license | aliluyou90/consoleRPG | 060a1ad9631161b4f3054f96cbbcedc37fc4fe1d | b66e258e26ee6dbe23c34ec87dbf7c81e8cdcfb5 | refs/heads/master | 2021-01-21T15:58:06.258036 | 2017-05-24T05:15:55 | 2017-05-24T05:15:55 | 91,867,446 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,755 | cpp | #include "stdafx.h"
#include "ItemSystem.h"
ItemSystem::ItemSystem()
{
}
ItemSystem::~ItemSystem()
{
}
void ItemSystem::init(Character* character)
{
this->character = character;
this->state = true;
while (this->state) {
this->itemSysManu();
}
}
void ItemSystem::itemSysManu()
{
this->itemOninfo();
t... | [
"aliluyou90@gmail.com"
] | aliluyou90@gmail.com |
3e766273a1ca30052a684b74a8e2ddd83f987f68 | 86a9081a05b837ad0f0feaf6e003a1cbb276993f | /cg_exercises-cg_exercise_04/04_bvh_v5/cg_exercise_04/cglib/lib/glm/glm/gtx/perpendicular.inl | 0e02509a5bc66a17fbc4a9ea97434678f1c8d996 | [
"MIT",
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-happy-bunny",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | flex3r/cg_exercises | e2defd27427c251d5f0f567a8d192af8d87bca3c | 7c4b699a8211ba66710ac2137f0d460933069331 | refs/heads/master | 2020-12-11T14:06:15.052585 | 2018-02-11T13:58:23 | 2018-02-11T13:58:23 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 321 | inl | /// @ref gtx_perpendicular
/// @file glm/gtx/perpendicular.inl
namespace glm
{
template <typename vecType>
GLM_FUNC_QUALIFIER vecType perp
(
vecType const & x,
vecType const & Normal
)
{
return x - proj(x, Normal);
}
}//namespace glm
// CG_REVISION 923b9bac8f5225422060a543872d939f9f9f68dd
... | [
"n1085633848@outlook.com"
] | n1085633848@outlook.com |
53c972a128703cb7f5e3554d4debff0ed6e399b5 | a1fe4dc3a7a4911607ac55a2bd7da19b29f36849 | /libnet/net/Socket.h | d98e44556852f503d96733855abbcc9361d406a6 | [] | no_license | Monsterwi/myWebserver | 8964c6773abf637bea85dc2d2e8493590498a7dd | 264dd6079840188f76e39b88404b11edf70939c0 | refs/heads/main | 2023-07-27T03:55:28.671566 | 2021-09-10T14:46:26 | 2021-09-10T14:46:26 | 394,996,851 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,597 | h | #ifndef LIBNET_NET_SOCKET_H
#define LIBNET_NET_SOCKET_H
#include "libnet/base/noncopyable.h"
// struct tcp_info is in <netinet/tcp.h>
struct tcp_info;
namespace libnet
{
///
/// TCP networking.
///
namespace net
{
class InetAddress;
///
/// Wrapper of socket file descriptor.
///
/// It closes the sockfd when desct... | [
"53996386+Monsterwi@users.noreply.github.com"
] | 53996386+Monsterwi@users.noreply.github.com |
9b9963a605c241cb93b700e5ef48117b85ca419c | 6fea8d35315dbf883055bbe7123ea84bad35cec0 | /src/qt/pivx/forms/ui_lockunlock.h | 84bde8d1ec592b097e80909fbc21880c5ef06464 | [
"MIT"
] | permissive | PlutusCapital/core | caef5b3710bda17e062837ad6e4653c78065c318 | 9a02ab820245afdb2b3ab4bea621a78bfef37590 | refs/heads/master | 2023-01-04T01:36:55.766312 | 2020-10-29T09:11:15 | 2020-10-29T09:11:15 | 227,622,200 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,278 | h | /********************************************************************************
** Form generated from reading UI file 'lockunlock.ui'
**
** Created by: Qt User Interface Compiler version 5.5.1
**
** WARNING! All changes made in this file will be lost when recompiling UI file!
****************************************... | [
"sgoyanka@deqode.com"
] | sgoyanka@deqode.com |
8f6dfa39733282746c61fe45745cf5e551d67fd0 | c44fb0847f55d5a9a187e6e9518c1fa28957c480 | /AdvancedLib/DesignPattern/Responsibility/ResponserException.cpp | 7b3cd658c991e28514e6df72828c46a241852670 | [] | no_license | Spritutu/hiquotion_cpp | 54567d5d0e62c36415d94f851ef9631932480e33 | 39e35053f979f7b613075c6a582fe58333c95dff | refs/heads/master | 2022-03-29T13:08:54.752069 | 2020-01-21T05:00:19 | 2020-01-21T05:00:19 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 641 | cpp | // ResponserException.cpp: implementation of the CResponserException class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "Responsibility.h"
#include "ResponserException.h"
#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#... | [
"yxsylyh@163.com"
] | yxsylyh@163.com |
325331c0f5172c827918a433c48676f2d11bb5d9 | aa4497758a0690203bb3a40518339947227deb6f | /include/khronos/spirv.hpp | 17e8639499493dd0f1dedd343e8eefcc67a2ad3c | [
"MIT",
"NCSA",
"Apache-2.0"
] | permissive | shichangsheng/llpc | 68592d0f2f8aa499c94d7bb5ac0fb9d08dfbfa8d | b2e47a684ac1ba9bcddfc87afa9d2fffffd15c06 | refs/heads/master | 2023-06-22T00:59:29.012382 | 2021-07-08T10:51:31 | 2021-07-08T10:52:00 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,966 | hpp | /*
***********************************************************************************************************************
*
* Copyright (c) 2015-2021 Advanced Micro Devices, Inc. All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associ... | [
"Jax.Lin@amd.com"
] | Jax.Lin@amd.com |
13f7499782c7d097ee3f142f08ce2ef4f99cce8a | 92c9070dada74ea0b9cba5e66577581365574a50 | /list/list.cpp | cd7402289ed2c6c9296fe34ce9fcf2357bd10ce6 | [] | no_license | antosha417/chukanova2_0 | e4ed15a5d5c58a885c9dca690fa47f058c63e401 | 38fa3e0761553b6ef416cc657d9aec5a355050ee | refs/heads/master | 2020-05-25T19:18:01.135174 | 2018-04-26T17:23:11 | 2018-04-26T17:23:11 | 84,957,831 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,858 | cpp | //
// Created by Nikitos
//
#include <assert.h>
#include <iostream>
#include "list.h"
unsigned list::get_len(){
return len;
}
list::list(){
head = new Node();
len = 0;
}
list::~list(){
for(unsigned i = len - 1; i > 0; --i){
delete_from_num(i);
}
head = nullptr;
}
void list::add_to_... | [
"nishtak97@mail.ru"
] | nishtak97@mail.ru |
198e3ef946ff5fff4b5ac4623cc115dc07cae520 | f18c89e9cea4eef1bad741ec21bde571b2cf4843 | /SplashScreenStarter/SplashScreenStarter.cpp | 60993e1256f5819e209760d882e3fcbef9545de0 | [] | no_license | razdavidovich/Assembly-Software | e36c5e16d1ae50486928b911e4275302f0579faf | 0ada1c89b737e02e677ba013f61deca9597eb7e3 | refs/heads/master | 2023-06-01T06:31:22.017198 | 2021-08-08T07:53:24 | 2021-08-08T07:53:24 | 100,573,675 | 1 | 0 | null | 2023-05-11T15:11:41 | 2017-08-17T07:17:58 | TSQL | UTF-8 | C++ | false | false | 2,772 | cpp | // SplashScreenStarter.cpp : Defines the entry point for the application.
//
#include "stdafx.h"
#include "SplashScreenStarter.h"
#include "SplashScreen.h"
#include "Objidl.h"
#include <iostream>
#include <string>
#include "ResourceImageLoader.h"
#include "shlwapi.h"
#include "FileImageLoader.h"
#include <windows.h>... | [
"razd@Magma.local"
] | razd@Magma.local |
9c69e6568618052eb5d215c27506f133fe9f0056 | 9aea4ff0d16c58c5f81dbf1b171f67e268dcd1be | /Angine/Mesh.cpp | 38c76d9cf6afb044e2cef39ad74e96c4e6ba2ab1 | [] | no_license | sssilver/angine | aca8f3a4ce4c4a5ba06b60f42b1eaadb49eda0c6 | 6591e6798868014b4d8676cbdf261e3ce5632a0d | refs/heads/master | 2016-09-05T17:57:11.710096 | 2013-02-15T03:52:12 | 2013-02-15T03:52:12 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,174 | cpp | #include "Mesh.h"
Mesh::Mesh(void) :
m_vertexBuffer(0),
m_indexBuffer(0)
{
}
Mesh::~Mesh(void)
{
}
bool Mesh::initialize(ID3D11Device* device)
{
return this->initializeBuffers(device);
}
void Mesh::shutdown()
{
this->shutdownBuffers();
}
void Mesh::render(ID3D11DeviceContext* deviceContext)
{
... | [
"sssilver@gmail.com"
] | sssilver@gmail.com |
45f8d9898f3671d1d6f2ac69f50757766b711acc | 3fc1ee94ebece7022c99d69cad39c3710487a74a | /chrome/common/chrome_features.h | 0d98206e837d7a3b1d2ebe0e389e7518c3f5533a | [
"BSD-3-Clause"
] | permissive | vseal001/chromium | b78653699caa6d54f45401ad0d9e3e90c160b8fb | 474eca05898d2524072c2e3d962a866ddcfe37fc | refs/heads/master | 2023-01-15T05:05:41.728378 | 2018-08-07T12:38:42 | 2018-08-07T12:38:42 | 143,872,860 | 0 | 1 | null | 2018-08-07T12:52:25 | 2018-08-07T12:52:25 | null | UTF-8 | C++ | false | false | 9,915 | h | // Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// This file defines all the public base::FeatureList features for the chrome
// module.
#ifndef CHROME_COMMON_CHROME_FEATURES_H_
#define CHROME_COMMON_C... | [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
8e9f4170bbd19b3be99bfd23e55cf798e9eb6206 | 2ff43b5f55285bd9f0bc243ed81bfda1d75bdc27 | /8.其他/机器人抓取/重构/NCC/squirrel_perception_backup-hydro_dev/v4r/v4r/AttentionModule/example/ExmplMSR.cpp | 7895be9244013f0fcb307409d112c7f4fadbf26e | [] | no_license | Ivan-VV/3D-ObjectDetection-and-Pose-Estimation | 876d343aa5011228e15a43cb999586b09bfa313d | 4fbe1c32fcd0618ab237eaa12931626c8d88c4ac | refs/heads/master | 2022-02-20T03:27:58.829378 | 2019-06-17T06:51:48 | 2019-06-17T06:51:48 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,757 | cpp | /**
* Copyright (C) 2012
* Ekaterina Potapova
* Automation and Control Institute
* Vienna University of Technology
* Gusshausstraße 25-29
* 1040 Vienna, Austria
* potapova(at)acin.tuwien.ac.at
*
* This program is free software: you can redistribute it and/or modify
* it under the terms ... | [
"1253703632@qq.com"
] | 1253703632@qq.com |
32d9281ebae8e1f95d6bf723303b8176ba512aea | d7daa1c9473ed169db03c0a84581cfb20253a3d0 | /src/modules/file-formats/BMP/BMPModule.h | e1f00a0b80468cfc6ac4e176b4adb21e3ec002fa | [
"LicenseRef-scancode-other-permissive"
] | permissive | ksAlpha001/PCL | 8986a360478ae8d1b01491efb81df5308ddb21a6 | 5c2d45a4b5a9fceacc0be08dc07d9100f19b0b7b | refs/heads/master | 2023-03-15T01:48:32.964335 | 2017-05-01T08:50:05 | 2017-05-01T08:50:05 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,736 | h | // ____ ______ __
// / __ \ / ____// /
// / /_/ // / / /
// / ____// /___ / /___ PixInsight Class Library
// /_/ \____//_____/ PCL 02.01.03.0819
// ----------------------------------------------------------------------------
// Standard BMP File Format Module Version 01.00.03.0285
// ------------... | [
"juan.conejero@pixinsight.com"
] | juan.conejero@pixinsight.com |
a9b88935ecfbefa7b4212df2bd9ce6431918fe80 | 8f4aaf0620634d2ba574249e6cd219628df2cda2 | /IntegralFunc.cpp | c7b5510c90e454e5ee4d6b6ee817745bb5f6aaf7 | [] | no_license | moevm/gui-1h2018-27 | 3ab64ce282535cd87e8f9f5093f63819f3a6b1c0 | 84c10b8f223f1368d69bdfe3c254ddc5d6b95072 | refs/heads/master | 2021-01-25T11:39:14.822305 | 2018-05-05T23:02:47 | 2018-05-05T23:02:47 | 123,413,585 | 0 | 0 | null | null | null | null | WINDOWS-1251 | C++ | false | false | 979 | cpp | #include "stdafx.h"
#include <string>
#include <iostream>
using namespace std;
double value_at_a_point(string string, int& counter, double x, int& brct, bool& error);
double Integral(string string, double a, double b){
bool error = false;
double res = 0;
int counter = 0;
int brct = 0;
double help1, help2, help3;... | [
"vladnikitin486@yandex.ru"
] | vladnikitin486@yandex.ru |
16e9703a0076b8cccabd38bc098b75eeb263c9a1 | 41778ded99c3d573661983be345a325f1ec1115a | /caen.h | 219697efd48e6761ad53fca47ce027639044f8d2 | [] | no_license | ChronoBro/sort_7Li | f27f600c9876f7ac79cb665394b3949d68312401 | 5fb4338b5c9fdf690e0d6582eff953ca2956a11a | refs/heads/master | 2021-01-20T21:11:47.498108 | 2019-08-12T17:09:01 | 2019-08-12T17:09:01 | 60,623,927 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 546 | h | #ifndef CAEN
#define CAEN
#include <cstdlib>
/**
* !\brief handles the readout from a CAEN ADC,QDC,TDC
*
* This class deals with the read out from a number of
* CAEN VME modules
*/
class caen
{
public:
unsigned short number; // number of converted channels
unsigned short crate; // crate number
unsigned sh... | [
"lithium7@chp086.chemistry.wustl.edu"
] | lithium7@chp086.chemistry.wustl.edu |
9d8fd7b470d77ef9f7c4e904933405b630a1b060 | 25a70cb81e4d31fe4a71b8bec63c21089d88e0bf | /libsrc/spatialdata/spatialdb/SCECCVMH.icc | be11126c1cd349c0e7f25359193693bd1ba813e3 | [
"MIT"
] | permissive | koson/spatialdata | d7edd00b9dc086ba4cf279b63fbbafae69eed7ba | 5614ed4c00d96f3d4266891d4be3050b4b4a5ccf | refs/heads/master | 2021-01-14T12:27:39.417439 | 2015-05-18T18:38:52 | 2015-05-18T18:38:52 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,176 | icc | // -*- C++ -*-
//
// ----------------------------------------------------------------------
//
// Brad T. Aagaard, U.S. Geological Survey
//
// This code was developed as part of the Computational Infrastructure
// for Geodynamics (http://geodynamics.org).
//
// Copyright (c) 2010-2015 University of California, Davis
/... | [
"baagaard@usgs.gov"
] | baagaard@usgs.gov |
159dac52d7d8b4be8518c2b3d0edd2ea96b79686 | a3c2787f52301dee40a9064e084bb8a157967e83 | /数据结构代码/第二章(线性表和链表)/第一次acm计算/acm下多项式问题(综合).cpp | a9107d37cb47af9d5d8aedbe9532a9fac29c4325 | [] | no_license | welkin-qing/C | 509ea3807d84fe983be38c8c1c178bc7370008f7 | a812e1e1688b421a36f5645c1c1e37166bf5210c | refs/heads/master | 2020-03-17T20:49:34.799686 | 2018-07-17T06:35:50 | 2018-07-17T06:35:50 | 133,930,240 | 0 | 1 | null | null | null | null | GB18030 | C++ | false | false | 6,371 | cpp | /*
#include<stdio.h>
#include <stdlib.h>
typedef struct node
{
float coef;
int expn;
struct node *next;
}node;
//建立多项式
node *createpoly(int m)
{
node *head,*s,*r;
int e,i=0;
float c;
head = (node *)malloc(sizeof(node));
r = head;
scanf("(%f,%d)",&c,&e);
while(i!=m)
{
s = ... | [
"welkin.qing@foxmail.com"
] | welkin.qing@foxmail.com |
937b1533f316af264261c256df0696cb87f2b7e9 | 814b93aa2e8849cdb1ca7760cb356c3ede6f0970 | /Game/Boundary.cpp | 6f20e12b2c96d4f3229dd486e92aa6a221efd39f | [] | no_license | MatteoBre/graphics_engine_game | 2bf50a2475de32a16a491cf47513505253d6dff2 | e6f00363a88bbba008bff0b48fa186baf59abcf2 | refs/heads/main | 2023-02-09T16:31:46.931929 | 2021-01-05T21:39:58 | 2021-01-05T21:39:58 | 314,320,589 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 22 | cpp | #include "Boundary.h"
| [
"matteo.bresciani.997@gmail.com"
] | matteo.bresciani.997@gmail.com |
9125673a255d1440c6bb70b70b7a670f3285826f | ea1f258d5544148cf69d172bf2996c9d06b7c70c | /tb_supply.hpp | 4f9654b5a67f2139e75dd94957f38dc3d509266b | [] | no_license | TacBF/tb_rhs_edge.mountains_acr | a7e6c5452fc2653eede8eea9b25fd5e173180162 | 5adc15fefb1a8927c4d1467c9f90354159b915ea | refs/heads/master | 2021-01-19T20:31:18.683042 | 2017-04-17T14:39:22 | 2017-04-17T14:39:22 | 88,517,217 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,770 | hpp | class TacBF
{
class Supply
{
// Generates cargo IDs (More effecient broadcasting for these items + their ammo)
staticWeapons[] = {"RDS_M2StaticMG_MiniTripod_FIA", "RDS_M2StaticMG_FIA", "RDS_KORD_high_CSAT", "RDS_KORD_CSAT", "RDS_DSHKM_CSAT", "RDS_DSHkM_Mini_TriPod_CSAT", "RDS_M252_FIA", "RDS_2b14_82mm_CSAT", "... | [
"ballista.milsim@gmail.com"
] | ballista.milsim@gmail.com |
58e77f4651721815eb2d4565916e9a28ecdcf039 | d852ae6c0eebd3642613e3a27541de266b596e5a | /hl2sdk/Structs/keyvalues.h | 4ddf851498c3649918d76348dc3c65189dda45a2 | [] | no_license | METAMONDESU/l4d2Simple | e2fae38d54f20545d7e452eb2330e20d8a0241d9 | 9e002c787365f71a15d56ee11b1b2f71aa3c51ce | refs/heads/master | 2023-07-16T21:04:46.414787 | 2018-02-14T08:51:37 | 2018-02-14T08:51:37 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 626 | h | #pragma once
#include <Windows.h>
class KeyValues
{
public:
enum MergeKeyValuesOp_t
{
MERGE_KV_ALL,
MERGE_KV_UPDATE,
MERGE_KV_DELETE,
MERGE_KV_BORROW
};
private:
DWORD m_iKeyName : 24;
DWORD m_iKeyNameCaseSensitive1 : 8;
char* m_sValue;
wchar_t* m_wsValue;
union
{
int m_iValue;
float m_flValue... | [
"zonrex@live.cn"
] | zonrex@live.cn |
b8e19a8b5f8a986b200f0d11b8257683195c7f0e | 545527678641223a21ac1522d3dd9cb6a1b01a5a | /Handin2/src/app/discrete/state/simulation.cpp | 3001e0d8ac41e311e8c02765d9ddf211e4b90a0a | [] | no_license | kpagels/TIERTSHandin2 | 105bcc1b481e0c97811955b358f515fe249e5b2a | 314e4f20d7719107320aa0b8ffa8283e1a996e19 | refs/heads/master | 2021-07-16T07:00:13.246326 | 2017-10-15T20:10:25 | 2017-10-15T20:10:25 | 106,560,404 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 838 | cpp | #include "systemx/os/iostream.hpp"
#include "systemx/app/discrete/isystem.hpp"
#include "systemx/app/discrete/istatemachine.hpp"
#include "systemx/app/discrete/state/simulation.hpp"
#include "systemx/app/discrete/state/realtimeexecution.hpp"
namespace systemx {
namespace app {
namespace state {
namespace base... | [
"github.com@k-moeller.dk"
] | github.com@k-moeller.dk |
f829169f8a2a3f06991185bc41c351fb98989fe2 | 050e2bb9bfbd7d6874f0f7a4465419300cfa74fd | /src/stdendian.h | 847db07a6eb93755315548407f37e924f0b03491 | [
"MIT"
] | permissive | jdart1/Fathom | 0487161d1d3159d3b070860b84b574034b4dd181 | aeb9d696c230335a0ebafa36a931427d4a2698ad | refs/heads/master | 2023-08-18T18:47:31.160628 | 2023-08-13T15:23:22 | 2023-08-13T15:23:22 | 52,562,033 | 50 | 35 | MIT | 2022-11-26T17:43:13 | 2016-02-25T22:40:56 | C | UTF-8 | C++ | false | false | 8,943 | h | #ifndef _STDENDIAN_H_
#define _STDENDIAN_H_
/* from https://gist.github.com/michaeljclark/3b4fd912f6fa8bb598b3 */
/* modified to use functions not macros for bswap */
/* and added a fix for Cygwin */
/*
* stdendian.h
*
* This header defines the following endian macros as defined here:
* http://austingroupbugs... | [
"chess1@jondart.name"
] | chess1@jondart.name |
f09a87090db7d8a06366d68405a00ee5d37d7b04 | 4de2e83c40d3a01065cde56fed757e1f5ea55fb5 | /Final Project/Final Project/ERemployee.h | b396bf466da95ffb03301bc621edc1ae81ec267e | [] | no_license | j-tone/FinalProject273 | 4f2c3ad1721a98951e9edbc49fca6e5a3d6cc445 | f4f285c648468fec8be55291267c8eb1f8d7f4a9 | refs/heads/master | 2016-09-06T20:01:35.723154 | 2014-12-05T02:25:44 | 2014-12-05T02:25:44 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,394 | h | #ifndef EREMPLOYEE_H_
#define EREMPLOYEE_H_
#include "Patient.h"
#include <ctime>
#include <cstdlib>
using namespace std;
class ERemployee{
protected:
bool busy;
bool worked;
Patient* tendingTo;
int timeRemaining;
public:
ERemployee(){
busy = false;
}
void work(Records y, int time){
ti... | [
"jtoney17@my.whitworth.edu"
] | jtoney17@my.whitworth.edu |
77aa0f5f3d08caf037c17eb6d3dc43318c75531c | d3deae1e568e865326a74228323d92a7415bcb20 | /chrome/browser/chromeos/arc/tracing/arc_tracing_graphics_model.cc | 4375f33839b38039e82866e7a5002008cf24959c | [
"BSD-3-Clause"
] | permissive | bigbang009/chromium | 74826aba346f93e2f3cb7bdb087354d98c374c2e | ac67926cabbbf7e414b3fc8ce83ea2ebbd59d8a2 | refs/heads/master | 2023-01-13T08:14:22.715227 | 2019-04-11T16:40:18 | 2019-04-11T16:40:18 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 46,562 | cc | // Copyright 2019 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/arc/tracing/arc_tracing_graphics_model.h"
#include <algorithm>
#include "base/bind.h"
#include "base/json/json_reader.... | [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
37cfb6b51ee834aea3006cd8a97296e6d1e097e4 | caf0f69e7fe1b10e3335c588e23e90c5bde93735 | /TheEasiestProblemIsThisOne.cpp | e19df35832b31e327b5fa8ac966c3978c077a2af | [] | no_license | danielrotta/kattis | 7380e9e013ead6ed68b0725e2174167d8e2729a2 | fd35c54979dbd9ffe4e22878b1b0072e55600aa6 | refs/heads/master | 2021-03-29T04:48:13.319105 | 2020-03-18T23:56:32 | 2020-03-18T23:56:32 | 247,920,889 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 608 | cpp | #include <bits/stdc++.h>
using namespace std;
/**
*
* @author Daniel Rotta (dlr0032@auburn.edu)
* @version 8.8.2019
*/
static int N = 0, p = 11;
int sum (int sumIn);
int main() {
//improves reading and writing speeds.
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cin >> N;
while (N != 0) {
... | [
"danielrotta13@gmail.com"
] | danielrotta13@gmail.com |
8aec2ebcfa45a41e46f1ea4f7dfbb33ac84b5613 | e5a8f4c3f504bcf357d7b3c20d82e8c5c1d2075f | /includes/scat/signal.hpp | b6d0f5a9c796c95a72ace4eb20cec769c81be854 | [] | no_license | devast8a/scat | d92bedd7e764a4c308992a19d5c027eaf19d589a | d0aa1e09dcb7ff7426dbcec561dc86a02080035e | refs/heads/master | 2020-04-25T20:37:45.148235 | 2019-03-17T11:29:30 | 2019-03-17T11:29:30 | 173,054,723 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,150 | hpp | #ifndef SCAT_HEADER_SET_SIGNAL
#define SCAT_HEADER_SET_SIGNAL
#include <memory>
#include <vector>
// TODO: Make signal interface nicer
namespace scat {
namespace signal {
// TODO: Find a home for channel_t
using channel_t = size_t;
template<
class State,
class Reader
>
struct source {
public:
using sam... | [
"devast8a@whitefirex.com"
] | devast8a@whitefirex.com |
f33d1e6e774389728e2239859425321d5d1f6ddc | 34ec47abbff08f1b44af46e6d414242c4c079054 | /heapsort.cpp | 2da8204d14075f8482b1db78473b9ee231993ed0 | [] | no_license | gccross/snippets | 9b6692f9c31d1c06eb254800b3b07ed42af20625 | 6664702f442b97483aed9a029c5b70bbd5fa294a | refs/heads/master | 2021-01-11T12:36:04.760083 | 2020-10-04T18:06:00 | 2020-10-04T18:06:00 | 76,301,599 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,517 | cpp | #include <deque>
#include <iostream>
#include <functional>
using namespace std;
template <typename T, typename C>
void heapify(T arr[], size_t n, size_t i, C cmp)
{
deque<size_t> dq {i};
while (!dq.empty())
{
size_t cur = dq.front();
dq.pop_front();
if (cur < n)
{
size_t largest = i;
size_t l = 2*i... | [
"gcross@licmax.com"
] | gcross@licmax.com |
109787f86507364db3f33c8b66264f265586247d | 814bbf94e8cc5c56a98fda209203bf1cf5f25086 | /미분류/Baekjoon Online Judge/C++/BOJ_1629(pow함수 logn속도(repeated squaring)).cpp | f65fe9920de858f84c41c78340610b74962a43ac | [] | no_license | JW-1017/Algorithm | 9683fa71397a35855fc5ab7dc3dbfd8ea1d04367 | 9c8a2d7b306f38f5d09c2d799bade8023eb10b5a | refs/heads/master | 2020-12-03T08:11:32.887244 | 2018-10-05T19:11:19 | 2018-10-05T19:11:19 | 95,330,636 | 0 | 0 | null | null | null | null | UHC | C++ | false | false | 635 | cpp | #include <iostream>
using namespace std;
/*
input
10 11 12
output
4
https://www.acmicpc.net/problem/1629
/* Copyright (C) 2017 by Son */
int main() {
long long val = 1;
long long num, exponent, mod; // num : 곱하는 수, exponent : 곱하는 횟수, mod : 나누는 수(나중에 안쓰임) pow(num, exponent)를 log(n)으로
cin >> num >> exponent >> m... | [
"wldndsla8@naver.com"
] | wldndsla8@naver.com |
01925b0fd8798ebabc7eff7efc34e4ea23a709ae | 9f8245ba25bf794d176967a69dc18ccb92e814d5 | /MaxIncreasetoKeepCitySkyline.cpp | 72c2f55ad02838d2926afbf61e5dff53a969fad4 | [
"MIT"
] | permissive | Biswajee/Codestore | 80b86b9815cfd1d493105deec8512bc209f545d6 | 2428522b2af668d3797b98b57fc37419828c20b2 | refs/heads/master | 2023-07-04T04:18:22.242520 | 2021-08-07T15:51:05 | 2021-08-07T15:51:05 | 163,070,131 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 975 | cpp | #include <bits/stdc++.h>
#include <algorithm>
using namespace std;
class Solution {
public:
int maxIncreaseKeepingSkyline(vector<vector<int>>& grid) {
vector<int> skylineV;
vector<int> skylineH;
skylineV.resize(grid.size());
skylineH.resize(grid[0].size());
... | [
"roy.biswajeet161@gmail.com"
] | roy.biswajeet161@gmail.com |
c7aef2e9e98e411ed264678eded84a28e851b909 | acddced85122ee1b09f3378fcd36fb4443c37a8f | /src/qt/guiutil.cpp | ec87c9dad7e65dea439978199e01c44efe7a5bfd | [
"MIT"
] | permissive | zebbra2014/WildWestCoin | 546c9446d12cb7fe6d9abd3325e8fb58fc6c5325 | cb5c71765d697b9dedf4b82bbbbb2fe353e09c5a | refs/heads/master | 2021-01-15T15:25:12.956993 | 2014-05-13T20:44:58 | 2014-05-13T20:44:58 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 13,395 | cpp | #include "guiutil.h"
#include "bitcoinaddressvalidator.h"
#include "walletmodel.h"
#include "bitcoinunits.h"
#include "util.h"
#include "init.h"
#include <QString>
#include <QDateTime>
#include <QDoubleValidator>
#include <QFont>
#include <QLineEdit>
#include <QUrl>
#include <QTextDocument> // For Qt::escape
#include ... | [
"cryptowest@gmail.com"
] | cryptowest@gmail.com |
010f57db5b958cd4440cca06e36f866573e19363 | 3c54065067d47c765cb15dbed1cd021a0268f5ca | /cpp/tests/test_calibrate.cpp | 25f73f1eb295152b6fc891458192e68d045ca2b3 | [
"MIT"
] | permissive | mbaradad/corner-camera | 25dd6df389d061cc61561ca6cf82f7833f426a73 | b6e3308789075681f3f7b49a039bcf01ef61ded0 | refs/heads/master | 2021-04-15T16:30:44.910811 | 2018-11-13T15:16:32 | 2018-11-13T15:16:32 | 126,898,774 | 0 | 1 | null | 2018-03-26T22:47:18 | 2018-03-26T22:47:18 | null | UTF-8 | C++ | false | false | 875 | cpp | #include "CalibrationWindow.h"
int main()
{
const std::string datafolder = "/Users/vickieye/Dropbox (MIT)/shadowImaging/edgeImaging/data/testvideos_Mar04/";
// const std::string expfolder = datafolder + "experiments/";
const std::string expfolder = "/home/vickieye/Downloads/";
const std::string name = "blue_... | [
"vye1116@gmail.com"
] | vye1116@gmail.com |
15c88f1915f9b03bc0e2aae3ca17684464a9b606 | 6848e01655aa970251c767f22f463517d687843a | /src/external/omplext_odeint/boost/numeric/odeint/stepper/base/explicit_stepper_base.hpp | 8ec3d6ce39135ef437700cc6983268c423dfa816 | [
"BSL-1.0",
"BSD-3-Clause"
] | permissive | davetcoleman/ompl-release | 893b574695fa9e8b39cd798a08316e1b5b006c88 | 1a58a9eeafa894cbf396146e2a7012f9eb7d694b | refs/heads/master | 2021-01-10T12:50:11.617516 | 2012-10-17T13:16:02 | 2012-10-17T13:16:02 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,069 | hpp | /*
[auto_generated]
boost/numeric/odeint/stepper/base/explicit_stepper_base.hpp
[begin_description]
Base class for all explicit Runge Kutta steppers.
[end_description]
Copyright 2009-2011 Karsten Ahnert
Copyright 2009-2011 Mario Mulansky
Distributed under the Boost Software License, Version 1.0.
(See accomp... | [
"isucan@willowgarage.com"
] | isucan@willowgarage.com |
bac87595ac507906a6fe341e609ac23f60387f8f | 6fe78b7418df203b4402a32b5c024b5ef5279060 | /platform/shared/logging/RhoLogCat.h | 9da7f73c4e2daf70a95e0ee4609112e42bed3b02 | [
"MIT"
] | permissive | heathsmith/rhodes | ccabe7ffa3ac3560f54f9984504befbb5173dabc | 4fde9286c92ce4f8ed072509624646319919fce7 | refs/heads/master | 2020-12-25T05:19:23.974102 | 2011-02-22T21:59:47 | 2011-02-22T21:59:47 | 1,399,930 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 901 | h | #ifndef _RHOLOGCAT_H_
#define _RHOLOGCAT_H_
#include "common/RhoPort.h"
#include "RhoLogConf.h"
namespace rho {
class LogCategory{
String m_strName;
public:
LogCategory(const char* szName = "") : m_strName(szName){}
const String& getName()const{ return m_strName; }
bool isEmpty()const{ retu... | [
"evgeny@rhomobile.com"
] | evgeny@rhomobile.com |
1d36eaf85994ac1789769c7a80d80ae71baa35cd | ccb5f1b03b43b7b7dfaadf3142518d28f4097194 | /Create2DWindow/init.cpp | e1473552193a3a6402602b20d62e5fd722a23cac | [] | no_license | SonHai-code/Predator | 91cbd16eaeea104a4bb460902a802dd67e2d53eb | 23a90e59261b05cacdcb90b83bb771a91498fc55 | refs/heads/master | 2023-05-14T14:14:52.906544 | 2021-05-31T02:40:24 | 2021-05-31T02:40:24 | 372,358,843 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,096 | cpp |
#include "init.h"
void init()
{
int rendererFlags, windowFlags;
rendererFlags = SDL_RENDERER_ACCELERATED;
windowFlags = 0;
if (SDL_Init(SDL_INIT_VIDEO) < 0)
{
printf("Couldn't initialize SDL: %s\n", SDL_GetError());
exit(1);
}
if (Mix_OpenAudio(44100, MIX_DEFAULT_FORMAT, 2, 1024) == -1)
{
printf... | [
"haisp2002@gmail.com"
] | haisp2002@gmail.com |
b10169ee7b8fe4bb833cf38e84f6ce29ac519350 | 7e791eccdc4d41ba225a90b3918ba48e356fdd78 | /chromium/src/chrome/browser/ssl/bad_clock_blocking_page.h | 456df5508b2a4f0c8518e813b5dbc4c4120a1056 | [
"BSD-3-Clause"
] | permissive | WiViClass/cef-3.2623 | 4e22b763a75e90d10ebf9aa3ea9a48a3d9ccd885 | 17fe881e9e481ef368d9f26e903e00a6b7bdc018 | refs/heads/master | 2021-01-25T04:38:14.941623 | 2017-06-09T07:37:43 | 2017-06-09T07:37:43 | 93,824,379 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,842 | h | // 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.
#ifndef CHROME_BROWSER_SSL_BAD_CLOCK_BLOCKING_PAGE_H_
#define CHROME_BROWSER_SSL_BAD_CLOCK_BLOCKING_PAGE_H_
#include <string>
#include "base/callback.h"... | [
"1480868058@qq.com"
] | 1480868058@qq.com |
ebd553881b77ba5c7e2f451392e109d023e60d3c | 8ea1ba8865a4d8e57e6cf4dc8fdfd1852b59f01e | /DX 12 test engine/Shader.h | da2b642a6e1d1784d86972412fff0c65e4059b3d | [] | no_license | JustinWeq/DX-12-game-engine | 096e408088fc2c4cd5bf7ea2e6dd2762972a5f94 | cbf66e859bfcb81c3f5a879bed7c12c6d195a4d0 | refs/heads/master | 2021-01-22T05:53:49.565204 | 2016-12-19T06:07:50 | 2016-12-19T06:07:50 | 68,679,430 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,132 | h | #pragma once
#include "stdafx.h"
#include "D3DInterface.h"
#include <fstream>
#define PS_5_0 = "ps_5_0"
#define VS_5_0 = "vs_5_0"
// a simple shader class made to lower overhead for custom shaders.
class Shader
{
public:
//defualt shader-- constructs a new instance of Shader with defualt parameters
Shader();
//dec... | [
"JeremyRed@DESKTOP-H6SJ4CP"
] | JeremyRed@DESKTOP-H6SJ4CP |
aa1084e271caf6b23ac2d942cb1c85ccac812f02 | 984b91f28e1d61550ddcb7fcce9448b366a5d405 | /C++ 2016/hw5/Memory.h | 52aa7885b5a5d80508bbd779a7576951c86dd6bc | [] | no_license | rumeysakarakavak/Object-Oriented-Programming | ddc1dc28b6a1c8b42b3b37e319f8fc6dbc258395 | 1b94ba8b849ebee273354ad5a223e1d327f01355 | refs/heads/master | 2023-07-30T13:54:58.219895 | 2021-09-24T12:37:02 | 2021-09-24T12:37:02 | 409,956,255 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,431 | h | /*--------------------------------------------------------------------------*/
/* */
/* HW04_141044063_Rumeysa_Karakavak */
/* */
... | [
"noreply@github.com"
] | rumeysakarakavak.noreply@github.com |
a8a8bf72d934e18c6c44e9509176e7ae3fdf791b | f3349dcf26a056a4d9da5b83212bb2b5edb994da | /quickSort.cpp | 8bca83bfca2151906778ae53e57feafa7a06cbe9 | [] | no_license | islandev/InterViewSum | 0f8f6b28726a610c62ac6380c01495683017f781 | 2c11bc8300eaa9d0645a80f7ebe60bca88b553eb | refs/heads/master | 2020-05-22T14:26:19.333084 | 2014-10-10T17:32:12 | 2014-10-10T17:32:12 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 317 | cpp | void quickSort(int A[],int l,int h){
if(l>h) return;
int first=l;
int last=h;
int key=a[first];
while(first<last){
while(first<last&&a[last]>=key) --last;
a[first]=a[last];
while(first<last&&a[first]<=key) ++first;
a[last]=a[first];
}
a[first]=key;
quickSort(A,l,first-1);
quickSort(A,last+1,h);
} | [
"ben.wangdev@gmail.com"
] | ben.wangdev@gmail.com |
c18d1d91ef44dca106535f346155fa8ef635e7e6 | 8b8e51e94e61654a3f331b7e4fa6770d1b3dd4d7 | /TnbShipModeler/TnbLib/ShipModeler/Basic/Tools/ShipModeler_Basic_Tools.hxx | 239601590cd1b0fdea51353b02ec7df036d11db6 | [] | no_license | PayvandH/Tonb | 1ea829d6732a3645bbf117a8857af5600e9a5192 | 6964200f033ab0b53fc3f3bfa8d58ca9578ecc66 | refs/heads/master | 2023-01-12T21:24:30.491648 | 2020-11-13T17:12:09 | 2020-11-13T17:12:09 | 312,663,721 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,678 | hxx | #pragma once
#ifndef _ShipModeler_Basic_Tools_Header
#define _ShipModeler_Basic_Tools_Header
#include <Standard_TypeDef.hxx>
#include <memory>
#include <vector>
class TopoDS_Shape;
class gp_Ax2;
namespace tnbLib
{
// Forward Declarations
class Geo_xDistb;
class Marine_CmpSection;
namespace shipModelerLib
{
... | [
"aasoleimani86@gmail.com"
] | aasoleimani86@gmail.com |
c91d25b3f10b1955a482012f7a2dea0fd0cb5cb3 | 6f874ccb136d411c8ec7f4faf806a108ffc76837 | /code/Windows-classic-samples/Samples/Win7Samples/multimedia/WindowsAnimation/PriorityComparison/LayoutManager.cpp | 96caebe8410bf3391276d55963a5ef3316d65d37 | [
"MIT"
] | permissive | JetAr/ZDoc | c0f97a8ad8fd1f6a40e687b886f6c25bb89b6435 | e81a3adc354ec33345e9a3303f381dcb1b02c19d | refs/heads/master | 2022-07-26T23:06:12.021611 | 2021-07-11T13:45:57 | 2021-07-11T13:45:57 | 33,112,803 | 8 | 8 | null | null | null | null | UTF-8 | C++ | false | false | 14,526 | cpp | // THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
// ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
// THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
// PARTICULAR PURPOSE.
//
// Copyright (c) Microsoft Corporation. All rights reserved
#include "LayoutManager.h... | [
"126.org@gmail.com"
] | 126.org@gmail.com |
901692c67bbbbd4e394537c9e48b265758290366 | 5a770d60733315f1183cb550c28bb8a6f4b347e1 | /ui/system_set.cpp | 374503a99c9c4c17889ee00138e88e64b9fd031c | [
"Apache-2.0"
] | permissive | joke-lab/project | 1712249c24f8bf8418ae1e9815963a9b63df9da9 | ef5984d9ec0ad61b76b85f21c9ffc58fb99c94c9 | refs/heads/main | 2023-07-23T01:32:57.219480 | 2021-09-02T01:44:09 | 2021-09-02T01:44:09 | 402,252,834 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,875 | cpp | #include "system_set.h"
#include "ui_system_set.h"
system_set::system_set(QWidget *parent) :
QWidget(parent),
ui(new Ui::system_set)
{
ui->setupUi(this);
setAttribute(Qt::WA_QuitOnClose,false);
ini_set(); //站点信息设置函数的调用
QObject::connect(ui->confirm,SIGNAL(clicked(bool)),this,SLOT(con... | [
"noreply@github.com"
] | joke-lab.noreply@github.com |
a1a865030b11cd1b3c2b489d1376d5951a0eed78 | d27ca729b15e4bd20d468d36972ba55000db9371 | /src/hash.h | 4e990a92eb0d844221391e93f3cea95286f6381f | [
"MIT"
] | permissive | cognitio-project/cognitio | 2a2488884ea54148948da3b621fb73bde415674a | 722123667b5d44715b22f780ff5ee402ab884b16 | refs/heads/master | 2020-03-07T02:24:47.278247 | 2018-03-28T01:41:14 | 2018-03-28T01:41:14 | 127,208,444 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 19,012 | h | // Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2014 The Bitcoin developers
// Copyright (c) 2014-2015 The Dash developers
// Copyright (c) 2015-2017 The PIVX developers
// Copyright (c) 2017-2018 The Cognitio developers
// Distributed under the MIT software license, see the accompanying
// file COPYI... | [
"withallmyhrt@gmail.com"
] | withallmyhrt@gmail.com |
252167678bdf100cb0ce7cad1f987a687a3b5b30 | 911a03f76ba5313d66617acfe2b4ca0a0b89dff5 | /m8pushbox/M8PushBoxCell.cpp | 112b5ba14af8096882c245b3e1d0ff4718e8b256 | [] | no_license | houyhea/M8-PushBox | 60a8e50f8f152c2e310000c8caee1cd18b16ee11 | 664f085bc12d880804c30ba05850a61e6cbfcdd4 | refs/heads/master | 2021-01-01T17:41:59.636918 | 2014-08-10T03:51:30 | 2014-08-10T03:51:30 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 109 | cpp | #include "M8PushBoxCell.h"
M8PushBoxCell::M8PushBoxCell(void)
{
}
M8PushBoxCell::~M8PushBoxCell(void)
{
}
| [
"houyhea@126.com"
] | houyhea@126.com |
eaffa5e2d03461114cd360e9407d7821093a7a0a | 79027f27e14a0f42761727cda168959625de35d0 | /ogldev-source/Common/pipeline.cpp | ae24ae7350e6eefc6f63407aefd2b08dbe960c9b | [] | no_license | supertomatoXX/opengl | 137b5eb276c7e0812106d30463b67cc3a87fac20 | 1c15ae3daadfaa572801eadb73dff72533474eb1 | refs/heads/master | 2021-04-12T09:29:05.265050 | 2018-06-04T02:29:23 | 2018-06-04T02:29:23 | 126,462,163 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 3,191 | cpp | /*
Copyright 2010 Etay Meiri
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 3 of the License, or
(at your option) any later version.
This program is distributed... | [
"ckx0042@175game.com"
] | ckx0042@175game.com |
f6648341acbe8f5dd6ebc0744b4e15cad98cdff2 | 7abbbef9590f9c4b9469adcbae5ea8907478bf03 | /chromium_git/chromium/src/ios/chrome/browser/signin/ios_chrome_signin_status_metrics_provider_delegate.cc | aa1e73745c9cefa67bd8f1675bebfbd572ef8696 | [
"BSD-3-Clause"
] | permissive | GiorgiGagnidze/CEF | 845bdc2f54833254b3454ba8f6c61449431c7884 | fbfc30b5d60f1ea7157da449e34dd9ba9c50f360 | refs/heads/master | 2021-01-10T17:32:27.640882 | 2016-03-23T07:43:04 | 2016-03-23T07:43:04 | 54,463,340 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,847 | 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 "ios/chrome/browser/signin/ios_chrome_signin_status_metrics_provider_delegate.h"
#include "components/signin/core/browser/signin_manager.h"
#inc... | [
"ggagn12@freeuni.edu.ge"
] | ggagn12@freeuni.edu.ge |
147528f0a90cac8a572e6af205d1eb4aefdc0a8d | 32f9807703baf6581493553a3269ff702622edfb | /ios/aiai/aiai/srcCode/Tool/Network/userPage/userPage.pb.h | a4f45d00286b40f50567cb36dec639aa8fe010ed | [] | no_license | dafengchuixiaoshu/aiai | 8684deaa71fdd1b21d9784231edea2e66ba9a03b | d366f1489d4e805653e247603873b090639f1dfe | refs/heads/master | 2021-05-10T08:30:17.332605 | 2018-01-25T09:20:47 | 2018-01-25T09:20:47 | 118,889,963 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | true | 32,916 | h | // Generated by the protocol buffer compiler. DO NOT EDIT!
// source: userPage.proto
#ifndef PROTOBUF_userPage_2eproto__INCLUDED
#define PROTOBUF_userPage_2eproto__INCLUDED
#include <string>
#include <google/protobuf/stubs/common.h>
#if GOOGLE_PROTOBUF_VERSION < 2005000
#error This file was generated by a newer ve... | [
"qiuan@mogujie.com"
] | qiuan@mogujie.com |
9ba1984fc53d1131fc6d665375dd31d08cae04f6 | b4f19ec1b2956d336cf56a409546d9c7502106c3 | /Thanadolos World/CharacterSelectedErrorMessage.cpp | 31d46c047a1272a732cfebfabc21b3aca1680af9 | [] | no_license | w0dm4n/Thanadolos | d3095a8aec322270cf94d70f4709396ef6275cd2 | 35086d7658175735c6490a188d42580afdbd6c14 | refs/heads/master | 2021-03-16T05:54:11.638301 | 2017-06-19T22:54:17 | 2017-06-19T22:54:17 | 90,393,751 | 18 | 7 | null | null | null | null | UTF-8 | C++ | false | false | 479 | cpp | #include "Globals.h"
#include "CharacterSelectedErrorMessage.hpp"
CharacterSelectedErrorMessage::CharacterSelectedErrorMessage()
{
}
ushort CharacterSelectedErrorMessage::getId()
{
return id;
}
std::string CharacterSelectedErrorMessage::getName()
{
return "CharacterSelectedErrorMessage";
}
void... | [
"w0dm4n@hotmail.fr"
] | w0dm4n@hotmail.fr |
47fd63e5479270c9bd9ae7fa887f235848af6d3e | 5bc47dcf9ab0843b9d06bc25012bcb2f78874216 | /1332D.cpp | bd23d7ee66e5ffcb415025df9f6d25315842f72c | [] | no_license | MijaTola/Codeforce | 428f466248a4e9d42ac457aa971f681320dc5018 | 9e85803464ed192c6c643bd0f920f345503ac967 | refs/heads/master | 2021-01-10T16:27:12.479907 | 2020-10-14T15:00:14 | 2020-10-14T15:00:14 | 45,284,776 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 279 | cpp | #include <bits/stdc++.h>
using namespace std;
int ans[4][4];
int n,m;
int main() {
int k;
cin >> k;
cout << "4 4\n";
for (int i = 0; i < 4; ++i)
for (int j = 0; j < 4; ++j)
ans[i][j] = (1 << 19);
return 0;
}
| [
"mija.tola.ap@gmail.com"
] | mija.tola.ap@gmail.com |
d90f28041110979ac4e00cd3442367acd3f9b99f | 9b5edf3ad0be8476150beb6f815c82480a3881d4 | /INTTERUPT_ATTINY85/INTTERUPT_ATTINY85.ino | ddebc5a82139ee8444ee2a06ad4214d220232893 | [] | no_license | divyanshbhowmick/Getting-Hands-on-ATTINY-85 | e1cf297cf81badabce3f04d61be0bae5a69858b8 | 4ee11f6682b59ebd7ea4cba9532dc293b9d2ce68 | refs/heads/master | 2020-06-30T14:12:10.591677 | 2019-08-22T05:49:57 | 2019-08-22T05:49:57 | 200,852,316 | 0 | 0 | null | 2019-08-22T05:49:58 | 2019-08-06T13:00:31 | C++ | UTF-8 | C++ | false | false | 1,974 | ino | /**
Author: Divyansh Bhowmick
Description: Programming ATTINY85 using Arduino as ISP.
Language Used: Embedded C
Steps for programming the micro-controller ATTINY85.
1) Upload the Arduino ISP program onto Arduino UNO board
2) Connect Arduino with ATTINY 85
ATTINY85 PINS ARDUINO PINS
... | [
"noreply@github.com"
] | divyanshbhowmick.noreply@github.com |
2eff890c230be247e25e3da82d95eca52e931a14 | 0178312980eb4aa31e23d337ad3fbf244ba21ce9 | /sstt/libs/DX9Hook/imgui.cpp | 21a152dd5711e1074096d7ec1378978945f99e46 | [] | no_license | TheMrThor/sstt | b031aa626336a33d236a8135d706278de396df3d | 9cebfb7dc8bd69fdcc52c3b32d92ea8755b2bb82 | refs/heads/master | 2023-07-08T13:18:31.607103 | 2021-08-09T08:29:37 | 2021-08-09T08:29:37 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 404,746 | cpp | // dear imgui, v1.49 WIP
// (main code and documentation)
// See ImGui::ShowTestWindow() in imgui_demo.cpp for demo code.
// Newcomers, read 'Programmer guide' below for notes on how to setup ImGui in your codebase.
// Get latest version at https://github.com/ocornut/imgui
// Releases change-log at https://github.com/... | [
"hi@qrlk.me"
] | hi@qrlk.me |
620c5cf0b31a1e65949e99bc5060ed829c315de4 | bfbacd036bee71d44373db54277c6505a1d1edee | /src/CameraParams.cpp | eff059eee388291d5448f13b1d044fc20b15abd8 | [] | no_license | Subtlemon/image_reprojection_2016 | f53253424dd9689b035175b6bac7fa65a0c39206 | 0d980ed0ac14e6cffe8568fbcf7c77512f14d8fa | refs/heads/master | 2021-01-11T04:13:06.101434 | 2016-10-18T08:50:57 | 2016-10-18T08:50:57 | 71,205,259 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,591 | cpp | #include "CameraParams.h"
#include <math.h>
#include <iostream>
#ifndef PI
#define PI 3.14159265358979323846
#endif
/**
* @brief Simple Constructor.
*
* @param[in] altitude Altitude of plane (in any unit).
* @param[in] FOV_x Field of view along x-axis of camera (degrees).
* @param[in] FOV_y Field of view along y... | [
"harryliang1@gmail.com"
] | harryliang1@gmail.com |
2a1c92fccb87ef7f97637bde0aebe5d4bdbb451e | d28ef2a19bbd61553219434bda4d40046012d0e2 | /InAppPurchases/ApplicationCallbacksInitPlugin.h | 8da171297f6cd6cc973fcfa8d576b8b34cb6fa91 | [
"Apache-2.0"
] | permissive | razerofficial/marmalade-plugin-razer-sdk | be7ac5ce81f44ace523b0c31809bb5c5c0cfd14e | 3fc647cb2e36918f6fba61240771e7885725d920 | refs/heads/master | 2020-07-08T10:20:02.833188 | 2016-10-04T18:19:45 | 2016-10-04T18:19:45 | 66,681,236 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 841 | h | /*
* Copyright (C) 2012-2016 Razer, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or a... | [
"tim@tagenigma.com"
] | tim@tagenigma.com |
23473c9c66fdf49471846a89f0b5b7a5c51a422c | 83810fbfb76c6cef3591507dfacbd8eaf1097bac | /TorentMakerConsoleApplication/DxHelpres/DxDeviceMt.cpp | 7545e42e9e106b1790a3307951c32921a387701d | [
"MIT"
] | permissive | sssr33/TorrentMaker | 3c03126a611fad54e9df48fae87c6e8c75e4a64e | 75dc4b7b45c3c277342470f705e4a35264f942f7 | refs/heads/master | 2021-01-10T03:25:52.137480 | 2016-01-16T21:29:56 | 2016-01-16T21:29:56 | 47,291,238 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 430 | cpp | #include "DxDeviceMt.h"
IDWriteFactory *DxDeviceMt::GetDwriteFactory() const {
return this->dwriteFactory.Get();
}
ID2D1Factory1 *DxDeviceMt::GetD2DFactory() const {
return this->d2dFactory.Get();
}
ID3D11Device *DxDeviceMt::GetD3DDevice() const {
return this->d3dDev.Get();
}
ID2D1Device *DxDeviceMt::GetD2DDevic... | [
"sskr33@gmail.com"
] | sskr33@gmail.com |
c3e000468afa7673f376aa40e42ffaf01e759618 | 9ed0ca49d7fddf6ecb1784d15709a3235cba37b4 | /Source/Tools/Builder/BuildServer.cpp | 6a609504cb24894a06601ef5fbc51c8d8e39a647 | [
"MIT"
] | permissive | simeks/Sandbox | 1332422161924dd490bd70cac8d791a6bfb67492 | 394b7ab774b172b6e8bc560eb2740620a8dee399 | refs/heads/master | 2020-05-17T08:45:03.388896 | 2017-03-05T14:10:37 | 2017-03-05T14:10:37 | 83,967,032 | 0 | 0 | null | null | null | null | ISO-8859-1 | C++ | false | false | 14,045 | cpp | // Copyright 2008-2014 Simon Ekström
#include "Common.h"
#include "BuildServer.h"
#include "ShaderDatabase.h"
#include "DependencyDatabase.h"
#include "BuildUICallback.h"
#include <Foundation/Debug/Console.h>
#include <Foundation/Debug/ConsoleServer.h>
#include <Foundation/Filesystem/DirectoryWatcher.h>
#include <Fo... | [
"simon.ekstrom@gmail.com"
] | simon.ekstrom@gmail.com |
805cd560d4fb6d007e6dba523f57c4fa47954681 | 6536ad9a6c0e04db8866da9a3e54b01216da5f6d | /FilterSam.cpp | bbd6a0c746399c54e695a5a4669cf01b0e0dce73 | [] | no_license | amit21AIT/Cpp-programs-for-conversion-of-SAM-file-into-Fastq-files | ea5aa91c86139768c520b22aa4405a5fa46a33e9 | 08a8932536cb96b39e15aff9630b1d471e8df6c8 | refs/heads/master | 2021-07-07T08:13:22.661225 | 2019-06-20T18:48:42 | 2019-06-20T18:48:42 | 192,970,293 | 0 | 2 | null | 2020-10-01T10:10:15 | 2019-06-20T18:39:51 | C++ | UTF-8 | C++ | false | false | 1,401 | cpp | // this code writes unwanted reads onto the garbage.sam file and good reads into output.sam file
#include <bits/stdc++.h>
#include <fstream>
using namespace std;
int main()
{
ifstream in("input.sam");
ofstream f1("output.sam",ios::out|ios::app);
ofstream f2("garbage.sam",ios::out|ios::app);
... | [
"noreply@github.com"
] | amit21AIT.noreply@github.com |
bb02623f72a96793663b621e09ccaaa3c9f12da0 | 095ef689b5275f7b1d74a5df24b1e1708216027b | /src/capture/device_d3d.h | 49d7bf2060a8426f340f76c8ac44691483506634 | [
"MIT",
"Apache-2.0"
] | permissive | ogukei/cinderella-screen | 17bf2fbb329b6be0512d79d03676b3b21c1420a9 | f3fb188e521cd2d0f960b1ec19d8a28c014d7c53 | refs/heads/master | 2023-08-03T09:56:12.150920 | 2021-09-26T14:47:41 | 2021-09-26T14:47:41 | 406,015,800 | 0 | 0 | MIT | 2021-09-26T14:47:42 | 2021-09-13T14:54:20 | C++ | UTF-8 | C++ | false | false | 556 | h |
#pragma once
#include "winrt_base.hpp"
#include <winrt/Windows.Foundation.h>
#include <winrt/Windows.Foundation.Collections.h>
#include <winrt/Windows.Graphics.Capture.h>
#include <d3d11.h>
#include <dxgi1_2.h>
namespace imascs {
namespace capture {
winrt::com_ptr<ID3D11Device> CreateD3DDevice();
winr... | [
"noreply@github.com"
] | ogukei.noreply@github.com |
4e3b66666ea2cd3d25472baedbfd01c72f2a578c | 0aa325d6d4e71aa66aa6101781476493bab85d19 | /Talkers/Behaviours/T-13/B-182/O-183.hpp | ba1aa04571cc7b8f8d6074d54b4de38414bbfc8f | [] | no_license | valentin-dufois/Protocol-Bernardo | 7a14004bd85000e7f3cbd25e5952f258c0b9a99c | 0e2225bb7f170e7517d2d55ea5a4aff3667c8ca3 | refs/heads/master | 2022-04-03T09:48:39.971882 | 2020-02-18T22:18:47 | 2020-02-18T22:18:47 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 856 | hpp | //
// O-183.hpp
// Talkers
//
// Created by Valentin Dufois on 2020-02-03.
//
#ifndef O_183_hpp
#define O_183_hpp
#include "../../Output.hpp"
class O183: public Output {
public:
O183(): Output(183, // Output ID
false, // Is tree end ?
183, ... | [
"valentin@dufois.fr"
] | valentin@dufois.fr |
ca16497e6058ad4cfe77d7ea46bf1a94c7f08824 | a406721ca5e28b01f7fbfc7f7ad9d67cf0472a96 | /src/leddriver_dummy.cpp | 0b4fc909807b39a4cdea4c4be8b3dcaea8d80b3f | [
"MIT"
] | permissive | AllegorithmicSAS/esp32-ble-control | 7ca4dd03d48dad006c1c30c78f1afeec46b653cf | 8506057106a484a10666ab064fa4dd64c35858b3 | refs/heads/master | 2018-12-25T09:58:34.740632 | 2018-10-22T14:10:48 | 2018-10-22T14:10:48 | 108,952,668 | 2 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 1,172 | cpp | #include "leddriver.h"
#include <Arduino.h>
#include "logger.h"
static auto Log = Logger("LedDriverDummy");
static const auto DriverInfo = LedDriverInfo{
.nChannels = 1,
.name = "dummy driver"
};
// GPIO on which the built in led is connected (might vary depending on debug board)
// 2,5,16 a... | [
"clems71@gmail.com"
] | clems71@gmail.com |
ae05ec7afcfec2f2a0824122e08ba89b945947bb | 0eff74b05b60098333ad66cf801bdd93becc9ea4 | /second/download/git/gumtree/git_patch_hunk_2048.cpp | b700bdea35e6bbafb6339b41f3d998834c96904e | [] | 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 | 694 | cpp | status |= error("no reflog for '%s'", argv[i]);
continue;
}
recno = strtoul(spec + 2, &ep, 10);
if (*ep == '}') {
- cb.recno = -recno;
+ cb.cmd.recno = -recno;
for_each_reflog_ent(ref, count_reflog_ent, &cb);
} else {
- cb.expire_total = approxidate(spec + 2);
+ cb.cmd.expire_total = a... | [
"993273596@qq.com"
] | 993273596@qq.com |
f844875e7d8e9941590767a68499752faa08c19d | 71f4a843a32e1eb8caf178ded1e77ca6d8be4cee | /Interview Question/TEST100.CPP | d912de5ee649c902320ea56bd0fb8de74315eec7 | [] | no_license | suvaw/C-and-C-plus | e71a2d676ca7eb641d437bd6784b3d7abe4668d1 | ff27cfd5360e947d4be5bae2ba71ab306f612428 | refs/heads/main | 2022-12-30T01:22:11.985606 | 2020-10-04T18:47:14 | 2020-10-04T18:47:14 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 225 | cpp | #include<stdio.h>
#include<conio.h>
#include<string.h>
void main()
{
clrscr();
char p[]="suvadipmandal";
char t;
int i,j;
for(i=0,j=strlen(p);i<j;i++)
{
t=p[i];
p[i]=p[j-i];
p[j-i]=t;
}
printf("%s",p);
getch();
} | [
"suvadipmandal.1995@gmail.com"
] | suvadipmandal.1995@gmail.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.