blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 3 264 | content_id stringlengths 40 40 | detected_licenses listlengths 0 85 | license_type stringclasses 2
values | repo_name stringlengths 5 140 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 905
values | visit_date timestamp[us]date 2015-08-09 11:21:18 2023-09-06 10:45:07 | revision_date timestamp[us]date 1997-09-14 05:04:47 2023-09-17 19:19:19 | committer_date timestamp[us]date 1997-09-14 05:04:47 2023-09-06 06:22:19 | github_id int64 3.89k 681M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 22
values | gha_event_created_at timestamp[us]date 2012-06-07 00:51:45 2023-09-14 21:58:39 ⌀ | gha_created_at timestamp[us]date 2008-03-27 23:40:48 2023-08-21 23:17:38 ⌀ | gha_language stringclasses 141
values | src_encoding stringclasses 34
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 2
classes | length_bytes int64 3 10.4M | extension stringclasses 115
values | content stringlengths 3 10.4M | authors listlengths 1 1 | author_id stringlengths 0 158 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
59338016fd6d55021365620a4e595bdf43a8cc28 | 95809243d68745337017f5b0bde1cc6862a47407 | /src/300.cpp | 96b9ad850d0eacff24546f06986fd5823418ff85 | [] | no_license | liuyaqiao/Algorithms | 403ea768f5cf39583e86b86baca84c05c0e34f65 | 14193efc60bd3ec9cef48e777fdba022ce190285 | refs/heads/master | 2020-04-07T11:52:14.974453 | 2019-03-22T17:04:32 | 2019-03-22T17:04:32 | 158,344,870 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 912 | cpp | class Solution {
public:
int lengthOfLIS(vector<int>& nums) {
//corner case
if (nums.size() == 0) {
return 0;
}
if (nums.size() == 1) {
return 1;
}
//init
vector<int> dp(nums.size());
for (int i = 0; i < nums.size(); i+... | [
"liu.yaqi@husky.neu.edu"
] | liu.yaqi@husky.neu.edu |
a67440cfab94044c990e190af36ad02c082c4243 | 67b31056866e6cfa3e9631f3bd7552da4d2c7beb | /code-arduino/code-arduino.ino | 6b9234b47f9b130167f88d8599ba05ddbc967473 | [
"MIT"
] | permissive | Matheus-Pontes/Serial-Tkinter-Pic-Arduino | d1b69e35015ded7deb8b0cc358ad7726c19295d9 | 4ea6fd6a5a332bc08dc510bc3721d5cf523cb5a9 | refs/heads/master | 2023-08-11T12:23:53.479858 | 2021-10-12T21:46:19 | 2021-10-12T21:46:19 | 285,647,984 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,734 | ino | /* ===========================================
* Algoritmo que laz a leitura do LM35
* e converte em kelvin(K) e fahrenheit(°F)
* e tambem um teste de leds
*
* Integration with Python Interface (tkinter)
* ===========================================
*/
const int sensor = A0; // Pino AN0... | [
"pontesm10@outlook.com"
] | pontesm10@outlook.com |
be27918b1c7fe577525e5a873a819aa2bb311f0a | 9c937188dd41d9ede155bc6e0e7c1d5c8c825b09 | /CSSO-Tema6/CSSO-Tema6/CSSO-Tema6.cpp | 722c7e4965607b84921392bb0694b6c1bac5f417 | [] | no_license | DorianPopa/CSSO-FII | 47588d8a0d59b0262b05e26844c6e7fb71f52282 | b9a156bc748539891c3818dba31c7c8e80c388ab | refs/heads/master | 2023-08-23T12:07:52.333421 | 2021-10-21T14:11:27 | 2021-10-21T14:11:27 | 219,007,995 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,502 | cpp | // CSSO-Tema6.cpp : This file contains the 'main' function. Program execution begins and ends there.
//
#define _WINSOCK_DEPRECATED_NO_WARNINGS
#include <windows.h>
#include <stdio.h>
#include "CommandHandler.h"
#pragma comment(lib, "Ws2_32.lib")
int recvfromTimeOutUDP(SOCKET socket, long sec, long usec)
{
// Setu... | [
"popa.dorian98@gmail.com"
] | popa.dorian98@gmail.com |
de4eb67c8d33ac2dcabb38dbf8f5d60a75d2922c | a569fb03d0cb162983b1c22f3f907d5777dafdb0 | /laba7/CAVL.cpp | fef6fc394302c58553e7d03202e6391df1280cc0 | [] | no_license | moskovets/TiSD_all | a7a44ed636da3814b89d72f4dc57bf3dc30b3283 | b89695497e444f5bc96a5cd5e6deadf035bce1ed | refs/heads/master | 2021-05-04T06:52:04.488177 | 2016-12-13T15:50:02 | 2016-12-13T15:50:02 | 70,521,942 | 3 | 2 | null | 2016-11-01T16:55:20 | 2016-10-10T19:36:43 | C++ | UTF-8 | C++ | false | false | 5,222 | cpp | //
// Created by moskov on 05.12.16.
//
#include "CAVL.h"
template <typename T>
void CAVL<T>::free_tree(AVL_Node<T> * &tmp) {
if(tmp) {
free_tree(tmp->left);
free_tree(tmp->right);
delete tmp;
}
}
template <typename T>
CAVL<T>::~CAVL() {
free_tree(head);
count_of_element = 0;
... | [
"moskovets@yandex.ru"
] | moskovets@yandex.ru |
9000a92d8ed2afcd995fed85b2e0c76cce36dbad | f9b962990b85bb47462a55caf31376f7e786f964 | /GhostCore/play/pressure.cpp | 93977d156295bf3633035a34352af1cc3ca5aa51 | [] | no_license | nagisasaka/INSTRUMENTS-GHOST-PLAY | 90f46d8a7551daf73a461b4cdd5082860967fda5 | a2a0809f49c1410355c315380f4ca08f9b628f8e | refs/heads/master | 2021-01-10T22:13:43.487509 | 2011-11-26T19:07:55 | 2011-11-26T19:07:55 | 2,857,225 | 2 | 0 | null | null | null | null | SHIFT_JIS | C++ | false | false | 32,321 | cpp | /*
* Ghost Play - Autonomous Violin-Player Imitation Device
*
* Copyright (C) 2009-2012 Masato Fujino <fujino@fairydevices.jp>
*
* 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 v... | [
"fujino@fairydevices.jp"
] | fujino@fairydevices.jp |
a35cb5b21bf87ae47b1bf81908b14cb1be38b600 | e26aae81d4b8f5ecd4bda2e133c8f567fc243c66 | /Source/dooble_about.cc | 5bdb78a495d79b73888bcf46b65c3a4cb4fd96f3 | [
"BSD-2-Clause",
"BSD-3-Clause"
] | permissive | yourAlginis/dooble | 3794fe4ad5523f52a836272cf6c1a7f01747a4c6 | 90537c9d561ee9e1331d1499ce378ab486c25f80 | refs/heads/master | 2023-07-05T07:19:37.755461 | 2021-08-14T20:07:21 | 2021-08-14T20:07:21 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,261 | cc | /*
** Copyright (c) 2008 - present, Alexis Megas.
** All rights reserved.
**
** Redistribution and use in source and binary forms, with or without
** modification, are permitted provided that the following conditions
** are met:
** 1. Redistributions of source code must retain the above copyright
** notice, this lis... | [
"textbrowser@gmail.com"
] | textbrowser@gmail.com |
83624ee698b421381de6ffcb1529e13d4222198a | ded20af005253b4c7afa2d19b50dc811fc77d8c2 | /cs140/lab7/double_checker.cpp | 0e967d5734582425091d3f0996a4b36a99bb0621 | [] | no_license | bopopescu/projects-2 | 8f1df5fa70204502eabc5cd912ecf507897bd8d8 | 49c978b3c9f17804e4b90acdc7a474b401d48019 | refs/heads/master | 2021-09-02T08:39:53.804832 | 2018-01-01T01:59:34 | 2018-01-01T01:59:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 976 | cpp | #include <fcntl.h>
#include "code_processor.h"
void Code_Processor::Double_Check_Internals()
{
int fd;
int npn;
User *u;
map <string, User *>::iterator uit;
set <string>::iterator pit;
npn = 0;
for (uit = Names.begin(); uit != Names.end(); uit++) {
u = uit->second;
for (pit = u->phone_numbe... | [
"W4D3@users.noreply.github.com"
] | W4D3@users.noreply.github.com |
cfd058b58b852c9d9dc909338073309423299ea6 | 35cdd76c43de6251c179a61f1309e09aa884bac2 | /src/ConnectTest/protobuf/person.pb.h | 774f746d2c1d8c5353444a94bf73800398777ff9 | [
"BSD-3-Clause"
] | permissive | bmjoy/mjserver | 04e9679e19214294f782c7df6bdf02994e1ae3b8 | 712aa488199ab7b94070f00b73d61543a1612e0f | refs/heads/master | 2020-03-06T22:54:48.756764 | 2017-06-08T12:59:45 | 2017-06-08T12:59:45 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | true | 18,848 | h | // Generated by the protocol buffer compiler. DO NOT EDIT!
// source: person.proto
#ifndef PROTOBUF_person_2eproto__INCLUDED
#define PROTOBUF_person_2eproto__INCLUDED
#include <string>
#include <google/protobuf/stubs/common.h>
#if GOOGLE_PROTOBUF_VERSION < 2006000
#error This file was generated by a newer version ... | [
"358197995@qq.com"
] | 358197995@qq.com |
7ac62f5a1581693fc56371c3807f0876aebd138d | ad28b63a95825167e9e015db4fe9c98f3c14a49e | /QVideoRenderWidget.cpp | 6bd9b3d8678daa75ea1809109c46330764e617a6 | [] | no_license | ZhouYing-bit/QtRenderYUV420P | 23dc6c53eaf0cf6bc495eda2957a8c3cd9136658 | aff82f570bc1c2b704e1873649069d4993359854 | refs/heads/main | 2023-07-18T01:35:54.009036 | 2021-09-02T06:06:22 | 2021-09-02T06:06:22 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 7,770 | cpp | #include "QVideoRenderWidget.h"
#include <QWeakPointer>
#include <QPointer>
#include <QOpenGLVertexArrayObject>
#include <QOpenGLTexture>
#include <QOpenGLShaderProgram>
#include <QOpenGLBuffer>
#include <QTimer>
#include <thread>
#include <memory>
#include <iostream>
#include <cstdlib>
#include <cstdint>
#define GLV... | [
"chengkeke@xdf.cn"
] | chengkeke@xdf.cn |
bbdaad8eab2ed7e0b856b4f3a6b00574a0771908 | 50071106b807a17cbfa81ed9f14603e9d85dab79 | /3Sicht/Temp/il2cppOutput/il2cppOutput/Il2CppGenericMethodPointerTable.cpp | eecdf8ddcaf9c35bf834092ca801d6dc0259606d | [] | no_license | JoJoMat/3Sicht_3 | 2b14f2f09dae6e2475bec46eeb28f2f8b3d666a2 | d9dd3219b17c899f7e74c83b3d347985ec7173bf | refs/heads/master | 2020-03-17T06:26:17.011640 | 2018-06-26T21:50:10 | 2018-06-26T21:50:10 | 133,355,449 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 804,566 | cpp | #include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <cstring>
#include <string.h>
#include <stdio.h>
#include <cmath>
#include <limits>
#include <assert.h>
#include "class-internals.h"
#include "codegen/il2cpp-codegen.h"
extern "C" void Array_Internal... | [
"Dschella3@googlemail.com"
] | Dschella3@googlemail.com |
aad8ef24d92e48588a7a79d74e2dbb510162ccf8 | c1c31746504efe1f3e3da41167063d3a08c5b53b | /sources/mainwindow.h | bb67540d13810b489a5d4b1f228eb6559d1ebb6c | [
"LicenseRef-scancode-other-permissive"
] | permissive | KiraFL/BHL_desktop | 297f73799319052d2a97d1c08bc72a8ff9c81557 | f74a1fd0d54263678792aec9e745a3d768e2077f | refs/heads/master | 2020-05-01T01:11:52.174274 | 2019-03-16T11:18:25 | 2019-03-16T11:18:25 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 628 | h | /*
*Copyright (c) 2019 BHL-Studio
* The headder of main widget backend defines
*/
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
private:
Ui::MainWindow *ui;
public:
explicit MainWindow(... | [
"bpr@BPR"
] | bpr@BPR |
e4f8c7c2097562d37b2ea9b972878204592c2f70 | 9eff39be8e67d9b5e8e02070a2c25c17bb538327 | /p10940_.cpp | 9b96d362e9e308cb2f6d15546d4e5dd9b1fc2bc4 | [] | no_license | sakibakon/UVA_online_judge | 44308316a1d2852e93df606767927211e6f49bba | 998e01200b3f3c71a3d7f3db03d90e9bf7cc650a | refs/heads/master | 2020-08-24T02:45:06.344800 | 2019-10-22T07:34:56 | 2019-10-22T07:34:56 | 216,749,738 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,121 | cpp | #include<cstdio>
#include<queue>
using namespace std;
int ans [500000 + 5];
int main ()
{
ans [1] = 1;
ans [2] = 2;
int next = 2;
for ( int i = 3; i <= 500000; i++ ) {
if ( i < next ) next = 2;
ans [i] = next;
next += 2;
}
int n;
while ( scanf ("%d", &n) && n )... | [
"sakibakon1@gmail.com"
] | sakibakon1@gmail.com |
c4d6d1b1ce9ddba4154bf53f3a978b27720d620b | cd760911bb9c4b150a3cf4447d693ce033240a79 | /PCL_1.8.0/include/pcl-1.8/pcl/recognition/cg/hough_3d.h | 199de4d251805cf82e3b29282105bedcf3f31704 | [] | no_license | northpolepanda/calvinx-common | 72eaecc3cb5bfb26cea815598d2d15e026795a3e | ee570c450b6f43b20c49428558d8ff043c4c0edb | refs/heads/master | 2022-01-22T12:59:03.461115 | 2019-07-16T03:21:04 | 2019-07-16T03:21:04 | 197,110,937 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 22,880 | h | /*
* Software License Agreement (BSD License)
*
* Point Cloud Library (PCL) - www.pointclouds.org
* Copyright (c) 2010-2012, Willow Garage, Inc.
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following condi... | [
"michaelchan_wahyan@yahoo.com.hk"
] | michaelchan_wahyan@yahoo.com.hk |
5f4fdf1c4b4b02ab11b79a42bf39c500b217dd5c | 02bdbf1a2c6bb28f44b1414655c1d105acec77a6 | /Tree.h | 55040886edf08e2970af379874d597118ef96807 | [] | no_license | hemprasad/ObjectRecognition | 6c2fd02451abe38d6b465df9237c9179dff47eb3 | bdabdd9ceea1fd7f025dd63ccb32535950d7648d | refs/heads/master | 2021-01-18T17:23:21.313154 | 2013-04-09T01:16:28 | 2013-04-09T01:16:28 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,164 | h | #ifndef __TREE_H__
#define __TREE_H__
#include <map>
#include <vector>
template<class T>
class Tree{
public:
Tree() {}
Tree (T _root): root(_root) {
children[_root] = vector<T>();
}
// This could only be called when root is not set yet.
void SetRoot (T _root) {
if (children.count(_root) == 0) {
root =... | [
"rashirishi@gmail.com"
] | rashirishi@gmail.com |
b026bb8e01f2daac351dfe88d1057a97d8eaa31d | 2c5a434d3b74938757342b6cab58e1b9138e3f9a | /boj/silver/11726.cpp | af915d2ecc665c0c0a1622423539396ee0de82ee | [] | no_license | Park18/Algorithm | a2406eeee6586709be9c3175a56c486c2729270b | d9128c17675662e87b5b9672b94f825d5a8d27f5 | refs/heads/master | 2023-01-18T17:36:33.456560 | 2020-11-26T10:16:04 | 2020-11-26T10:16:04 | 261,787,778 | 0 | 1 | null | null | null | null | UHC | C++ | false | false | 978 | cpp | /**
* @date 20.05.06
* @brief BOJ 11726
* @url https://www.acmicpc.net/problem/11726
*/
#include <iostream>
using namespace std;
namespace boj
{
namespace silver
{
/**
* @brief DP를 이용한 문제풀이
*/
void solution()
{
int count[1001]; // 1<=n<=1000
count[1] = 1; // 초기값1
count[2] = 2; // 초기값2
int n;
... | [
"sowooni35@naver.com"
] | sowooni35@naver.com |
0faa2c7f080d6da404a165cb47958a610a29bb32 | 0019f0af5518efe2144b6c0e63a89e3bd2bdb597 | /antares/src/servers/app/drawing/Painter/AGGTextRenderer.cpp | 3341c2b0c7317a0b1208bc7f9b8e2a848c74f37a | [] | no_license | mmanley/Antares | 5ededcbdf09ef725e6800c45bafd982b269137b1 | d35f39c12a0a62336040efad7540c8c5bce9678a | refs/heads/master | 2020-06-02T22:28:26.722064 | 2010-03-08T21:51:31 | 2010-03-08T21:51:31 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,308 | cpp | /*
* Copyright 2005-2009, Stephan Aßmus <superstippi@gmx.de>.
* Copyright 2008, Andrej Spielmann <andrej.spielmann@seh.ox.ac.uk>.
* All rights reserved. Distributed under the terms of the MIT License.
*/
#include "AGGTextRenderer.h"
#include <agg_basics.h>
#include <agg_bounding_rect.h>
#include <agg_conv_segment... | [
"michael@Inferno.(none)"
] | michael@Inferno.(none) |
b121faa4af90b79b99241c46b8568f5863672dbc | fa53215c65feeca53ecf48979db129b9eec77086 | /external/Box2D/Dynamics/Contacts/b2ContactSolver.cpp | 0dc740342a054dfaa714899ce58ce56298b85305 | [] | no_license | stubma/cocos2dx-classical | 66d57304dc1cc8834d672a087f2b979d0e1a993c | 42da4ee120ce9a0a97da344117c48e91c146c56d | refs/heads/master | 2021-01-24T08:17:10.706511 | 2018-05-30T03:04:10 | 2018-05-30T03:04:10 | 26,906,938 | 138 | 57 | null | null | null | null | UTF-8 | C++ | false | false | 27,998 | cpp | /*
* Copyright (c) 2006-2011 Erin Catto http://www.box2d.org
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
* arising from the use of this software.
* Permission is granted to anyone to use this software for any purpose,
* i... | [
"stubma@gmail.com"
] | stubma@gmail.com |
426ead0453905d2f185b9c5f0e73e73a27305e96 | de05ee304d5aeebfbf29b9aedf9c7587fe940ac7 | /T_POTEGA/t_potega.cpp | baeab16c883b185f0a2aaad8dfcfa7d2ccec97d1 | [] | no_license | bplatak/spoj | 1ee4cf4469c57d6a440b26b49f9795092f20f8cc | 6f55f3c2ed4a91bff7061ae61b41f9c7706f77b6 | refs/heads/master | 2022-03-13T03:03:17.141554 | 2014-11-11T18:06:05 | 2014-11-11T18:06:05 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 461 | cpp | #include <iostream>
using namespace std;
int pmf(int a, int b, int m)
{
int i;
int result = 1;
long int x = a%m;
for (i=1; i<=b; i<<=1)
{
x %= m;
if ((b&i) != 0)
{
result *= x;
result %= m;
}
x *= x;
}
return result%m;
}
int main()
{
int t;
... | [
"bartosz.platak2@philips.com"
] | bartosz.platak2@philips.com |
0d52702d184bb80b19ded33aa03a811b283ee175 | d2aac593538c407c7d54b2efbdf1008b1ccbc6c3 | /FinalExam/4.cpp | bdd2b6a970a7d75ec5f417d03ded839fe7039958 | [] | no_license | kunghua999/CS31 | afd867cdd14859f75a7571fb4dd95612b8ddc82b | cfc50dfd4250a717e55e8963def5f0e5a5821ac1 | refs/heads/master | 2021-05-01T23:35:34.020272 | 2016-12-31T17:45:39 | 2016-12-31T17:45:39 | 77,750,556 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 603 | cpp | #include <iostream>
#include <string>
using namespace std;
int foo( string s )
{
if (s.size () < 1)
return -1;
int mult = 1;
int offs = 0;
switch (s[0])
{
case '-':
mult = -1;
break ;
case '+':
mult = 1;
break ;
default :
offs = 1;
break ;
}
return mult * (s[1 - offs ] - '0');
}
int ... | [
"kunghua927@hotmail.com"
] | kunghua927@hotmail.com |
3b778b9e8406952bb14696350ce7d979e66361b5 | b27264fbdf7197404fa906c85da0a7b415a0a4a8 | /p3/funciones.cpp | cea4cfc7c77e49b4fcb6faa72dc0fda3a79131d7 | [] | no_license | fernansd/Algoritmica | 1bc27d5a6e5a6d6bc035f7df66a688d8eb0fbbce | de21931edffa125c88142035ccc4d879e3c86b89 | refs/heads/master | 2020-04-06T03:31:52.039635 | 2017-01-08T15:47:31 | 2017-01-08T15:47:31 | 70,077,556 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,617 | cpp | #include <random>
#include <algorithm>
#include "funciones.hpp"
template<typename T>
int obtenerMaxMin(Conjunto<T>& c, T& min, T& max, int i, int j)
{
// Las comparaciones que se cuentan son las incluidas en el algoritmo
// teòrico, en realidad se usan más comparaciones debido a requisitos
// de la implementación... | [
"fernandosd24@gmail.com"
] | fernandosd24@gmail.com |
2f41562668b4a51a20153b66441646a14a5d72d1 | c34b1da33b420c516786a8b63a5353c694f6a796 | /PageTable.cpp | a61bdfbc802233e11ad121ac6d97b3a39fa1c320 | [] | no_license | brendanAlbert/cs351_vmm | fe1a4d179b0f82906f297e4e759689c885e6abf1 | ae90ea4e6e5bd24813434c67caa44aa68d2ec97f | refs/heads/master | 2020-05-22T13:50:22.047758 | 2019-05-13T07:25:07 | 2019-05-13T07:25:07 | 186,367,014 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 646 | cpp | // Page Table class implementation file
#include "PageTable.h"
using namespace std;
// Constructor
PageTable::PageTable()
{
for (int i = 0; i < PAGE_TABLE_SIZE; i++)
{
page_table[i].page.value_ = UINT32_MAX;
page_table[i].frame.value_ = UINT32_MAX;
}
}
// method checks if pagenumber is in the page table
int P... | [
"alber123@mail.chapman.edu"
] | alber123@mail.chapman.edu |
ca10de438b3795a4927c1c813eded55223a0c457 | a45b76c5a858a55a0d2165a18ca5ea68fac28977 | /Source/RtsGame/RtsUserWidget.cpp | 6f2f66a422cf25c73894c2333d615f2655fb1097 | [] | no_license | ArthurKacprzak/3DGameEngineCreation | 8d6e5e8b55c1596840c2ca0ea7e18ace034dd50d | 55a5bb86cd81e77be8b2f39d755bab0fa2805856 | refs/heads/master | 2023-02-12T19:02:14.941006 | 2021-01-11T23:27:21 | 2021-01-11T23:27:21 | 303,353,355 | 0 | 0 | null | 2020-10-20T18:00:39 | 2020-10-12T10:14:11 | C | UTF-8 | C++ | false | false | 625 | cpp | // Fill out your copyright notice in the Description page of Project Settings.
#include "RtsUserWidget.h"
#include "UMG/Public/Components/Button.h"
#include "UMG/Public/Components/Image.h"
#include "Components/CanvasPanelSlot.h"
#include "Components/Widget.h"
#include "Blueprint/WidgetTree.h"
void URtsUserWidget::Na... | [
"arthur.kacprzak@eptiech.eu"
] | arthur.kacprzak@eptiech.eu |
91a1a0aec91ed2848d2e1b510334c5e03ee2a5e8 | 9ec137ae6893c2f964f01e350e8bdfec16784196 | /softEngine/src/se/windows/includes/system/Application.hpp | 592ec0241324385c78215d19ae489f6c0c1e1355 | [
"MIT"
] | permissive | DetrembleurArthur/engineTools | 6fdac888efa674c81ec6e4fd04eaa35814bb656d | 486fbd081a6519adc03162ab8f51e1ec1254c17c | refs/heads/master | 2022-04-02T16:42:50.937590 | 2020-01-04T16:08:44 | 2020-01-04T16:08:44 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,772 | hpp | #ifndef APPLICATION_HPP
#define APPLICATION_HPP
#include <SFML/Graphics.hpp>
#include <string>
#include <iostream>
#include <vector>
#include <map>
#include "Updater.hpp"
#include "EventHandler.hpp"
#include "Utilities.hpp"
#include "Thread.hpp"
#include <string>
#include <ctime>
#include <cstdlib>
namespace se
{
c... | [
"mb624967@skynet.be"
] | mb624967@skynet.be |
a953c00027fd9fd89afea63bb5a3c1047a06ae93 | 06ae4ff6033d8d7ba028ff4db09784c4e13ff47e | /src/ofxBlackMagic/Utils.cpp | 523d02da300159730e320357a15e2a82f80c9f66 | [
"MIT"
] | permissive | gameoverhack/ofxBlackmagic2 | 155650cf4b7b5badbf88cea10ed6a1a25ab87559 | 318e0c1721028a3a679d9ad614fa041d89b3b9dc | refs/heads/master | 2021-01-16T22:05:24.661210 | 2014-07-23T07:11:52 | 2014-07-23T07:11:52 | 23,906,005 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 981 | cpp | #include "Utils.h"
#include <iostream>
namespace ofxBlackmagic {
namespace Utils {
#pragma mark CoManager
//---------
CoManager CoManagerInstance = CoManager();
//---------
CoManager::CoManager() {
auto result = CoInitialize(NULL);
if (FAILED(result)) {
throw(std::exception("ofxBlackma... | [
"elliot@kimchiandchips.com"
] | elliot@kimchiandchips.com |
0a6292d43769e247eeefa46d5d698f0565454910 | befd896d301d3040fbd6ccda39aa217bf388a0a4 | /tensorflow/compiler/xla/service/gpu/gemm_thunk.cc | 74282c568c09921dbeec2e9cce79b6c73b6ea592 | [
"Apache-2.0"
] | permissive | mktshhr/tensorflow-theta | 98369caf55f676c6ae9a5c82ab151bb53d395f36 | fe378e1b690d97ed24bad144dee9efffce893c86 | refs/heads/master | 2020-03-26T14:29:34.200902 | 2018-10-21T13:39:56 | 2018-10-21T13:39:56 | 144,990,240 | 5 | 2 | Apache-2.0 | 2018-10-21T13:39:57 | 2018-08-16T13:17:25 | C++ | UTF-8 | C++ | false | false | 19,042 | cc | /* Copyright 2017 The TensorFlow Authors. 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 or a... | [
"gardener@tensorflow.org"
] | gardener@tensorflow.org |
01663cc96c4e46c118e53387766ffce8fa4de91a | 07c61596c1fba2e2a7034fe5af9707794ea2e2c1 | /Luogu/CF600B.cpp | 3104bd7b1c0407b208b957b739f9ad32381bdf12 | [] | no_license | H-Shen/Collection_of_my_coding_practice | 2fcb2f8fef9451ad4a3a9c063bbf6a34ea5966b4 | 6415552d38a756c9c89de0c774799654c73073a6 | refs/heads/master | 2023-08-24T21:19:08.886667 | 2023-08-22T03:47:39 | 2023-08-22T03:47:39 | 180,731,825 | 8 | 1 | null | 2021-08-13T18:25:25 | 2019-04-11T06:48:09 | C++ | UTF-8 | C++ | false | false | 2,303 | cpp | #include <bits/extc++.h>
using namespace std;
using namespace __gnu_pbds;
using ll = long long;
#define CODEFORCES
#ifdef CODEFORCES
namespace IO {
template <typename T>
inline
void read(T& t) {
int n = 0; int c = _getchar_nolock(); t = 0;
while (!isdigit(c)) n |= c == '-', c = _getchar_n... | [
"haohu.shen@ucalgary.ca"
] | haohu.shen@ucalgary.ca |
d8d6b848901ef634827df6fb829fdd173083da1a | 2f557f60fc609c03fbb42badf2c4f41ef2e60227 | /RecoParticleFlow/PFClusterProducer/plugins/PFBadHcalPseudoClusterProducer.cc | 6d599b24502c88de9077601486221a7dbce55bbd | [
"Apache-2.0"
] | permissive | CMS-TMTT/cmssw | 91d70fc40a7110832a2ceb2dc08c15b5a299bd3b | 80cb3a25c0d63594fe6455b837f7c3cbe3cf42d7 | refs/heads/TMTT_1060 | 2020-03-24T07:49:39.440996 | 2020-03-04T17:21:36 | 2020-03-04T17:21:36 | 142,576,342 | 3 | 5 | Apache-2.0 | 2019-12-05T21:16:34 | 2018-07-27T12:48:13 | C++ | UTF-8 | C++ | false | false | 7,371 | cc | // system include files
#include <iostream>
#include <memory>
// user include files
#include "FWCore/Framework/interface/Frameworkfwd.h"
#include "FWCore/Framework/interface/stream/EDProducer.h"
#include "FWCore/Framework/interface/Event.h"
#include "FWCore/Framework/interface/EventSetup.h"
#include "FWCore/Framework... | [
"gpetruc@gmail.com"
] | gpetruc@gmail.com |
0e5810165184374d7b7f041c55cba361fd594299 | 36145e7b9d6eed08a0b38eb34404e69dc5c6b6e4 | /00.HeaderFiles/LinkedList.h | 93e708fec2210c043452178a42eeec5d87ded2b9 | [] | no_license | clay-curry/Data_Structure_Library-CPP | 3778f11bc8bd8558c31cc6e7ff0e40b8f9af9c15 | 0515dd39aef9aadf7e355d61fa390caf03c0c1c9 | refs/heads/master | 2023-05-12T15:46:33.846835 | 2021-06-06T00:29:39 | 2021-06-06T00:29:39 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,034 | h | #ifndef __LINKEDLIST__H
#define __LINKEDLIST__H
#include "AbstractLinkedList.h"
template<typename DT> class LinkedList : public AbstractLinkedList<DT>
{
protected:
DT* _info;
LinkedList<DT>* _next;
void copy(const LinkedList<DT>&);
public:
LinkedList();
LinkedList(const DT&);
LinkedList(const DT&, L... | [
"claycurry34@ou.edu"
] | claycurry34@ou.edu |
1e6b8613046b1c5f251cb901a124065316e7678e | 6b660cb96baa003de9e18e332b048c0f1fa67ab9 | /External/SDK/AD_ThirdPerson_PlayerPirate_Male_Unfit_classes.h | a3282e3c44e89a9f41671b18b814246c9618431f | [] | 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 | 903 | 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 |
ac124ff38172d1dd88c38fa0e3820500679591ee | 66eb517787f2fb4421bc4f6742d4ba52e56d614d | /code/engine/gkSystem/source/gkSystemProfiler.cpp | d897ea65d052243b20424bbcc4e752d8dc604aa4 | [] | no_license | tylearymf/gkEngine | 56b5722c92f70225263d6a8606491b840b4ef99d | 207c64943a415633b0315a1f556f32ba133d1c56 | refs/heads/master | 2021-01-18T09:29:58.391308 | 2016-03-15T10:57:55 | 2016-03-15T10:57:55 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 31,995 | cpp | #include "gkSystemStableHeader.h"
#include "gkSystemProfiler.h"
#include "IRenderer.h"
#include "IAuxRenderer.h"
#include "ICamera.h"
#include "IResourceManager.h"
#include "IMaterial.h"
#include "ITask.h"
#include "IMesh.h"
#define MAKE_SWITCH( x ) \
gkCVar* var = gEnv->pCVManager->getCVar( _T( #x ));\
... | [
"kaimingyi@163.com"
] | kaimingyi@163.com |
979dcffc84c7e7aa088e792fd74867500bef2ee2 | 4c8e8e40700a723bd1e1bdfeb663bc9c2a10734c | /gengine/Texture2D.cpp | e1f3fb9755b9119caa61626842363784644185be | [
"MIT"
] | permissive | andrewpham/Genesis-Engine | e160099fbfa64c0a13b60db99397ed58f8e2daf6 | 7e3f35fbb21ffb3820b4ea39c030f0db5eb8f8d5 | refs/heads/master | 2021-01-21T04:44:00.822425 | 2019-05-31T18:18:14 | 2019-05-31T18:18:14 | 39,921,173 | 6 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,446 | cpp | /*******************************************************************
** This code is part of Breakout.
**
** Breakout is free software: you can redistribute it and/or modify
** it under the terms of the CC BY 4.0 license as published by
** Creative Commons, either version 4 of the License, or (at your
** option) any la... | [
"drew.t.pham@gmail.com"
] | drew.t.pham@gmail.com |
af4ecabcdefcf5d38942bbdeddc6bdb6465e78ec | 8c66d1fe6ecde6f66f3eaf5b5db220da3930c7ab | /codeforces/1100/B.cpp | f3eda9dca0ac8fcfc47e42d608b5c95f509abe1d | [] | no_license | Hasanul-Bari/codeforces | 0af70eda9dee3e7ddefc63560538e986dda0c141 | 1a074980ccdc2cd97a0a6a85f1f89da0343407b3 | refs/heads/master | 2023-06-03T07:52:28.584598 | 2021-04-12T14:39:00 | 2021-06-17T18:08:03 | 334,670,088 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 587 | cpp | #include<bits/stdc++.h>
#define faster ios :: sync_with_stdio(0); cin.tie(0); cout.tie(0);
#define ll long long
#define ull unsigned long long
#define pb push_back
const double PI = acos(-1.0);
using namespace std;
int f[100009],a[100009];
int main()
{
faster;
int n,m,t=1,x;
cin>>n>>m;
... | [
"hasanul.bari.hasan96@gmail.com"
] | hasanul.bari.hasan96@gmail.com |
160545f8acf62d1566783aeca365b8c92f156fab | fb550b9b09c01f4046f37cb6c17ca70f52421b51 | /src/model/ChunkStackGenerator.h | b8530cc579c445ca28bdf923d14869ed460de1ed | [] | no_license | DasElias/Voxelcraft | 0f2a1e6469471b5af5e123f5202bb2e9975127bc | d7cae2172d424b9aa1496614001893b421315b7e | refs/heads/master | 2020-07-27T04:19:51.700396 | 2019-11-09T09:27:16 | 2019-11-09T09:27:16 | 208,865,443 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 309 | h | #pragma once
#include <glm/vec2.hpp>
namespace vc {
class ChunkStack;
class Level;
class ChunkStackGenerator {
public:
ChunkStackGenerator() = default;
virtual ~ChunkStackGenerator() = default;
virtual ChunkStack* generateChunkStack(Level& level, glm::ivec2 chunkStackCoordinates) =0;
};
}
| [
"elias.horner@student.htldornbirn.at"
] | elias.horner@student.htldornbirn.at |
025fc0b1b4fc46ee098cee511884ed74a0616c06 | 994ac46ead0b003aaf742f0e5aab738f9adf7870 | /studios/DesignPatternsStudio/DesignPatternsStudio.cpp | 05e5bc46acea0196037879bb7ba2782260f7ac5a | [] | no_license | emilyposner12/cse332s-fl17-seunghan.bae | 3ee9ab7155d2c65b14e8e904187c6d0a90e11849 | c3b8225e684c7de45b82b91b66b53939e049660d | refs/heads/master | 2023-03-15T15:59:34.781370 | 2018-11-15T02:03:12 | 2018-11-15T02:03:12 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,072 | cpp | // DesignPatternsStudio.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include "DesignPatternsStudio.h"
#include <vector>
using namespace std;
int main(int argc, char * argv[])
{
Giraffe g;
Ostrich o;
/* vector<Animal *> vtr;
vtr.push_back(&g);
vtr.push_back(... | [
"seunghan@seunghans-mbp.dhcp.wustl.edu"
] | seunghan@seunghans-mbp.dhcp.wustl.edu |
111644d4183573370314d2312f69270d99fc6286 | 980b4735da4ac1882bf74d0d40530f2370fa9389 | /yesod.old/test/mpl/front_back.cpp | 7d0156d3ced4adb9f05254693484924bdf6f502c | [] | no_license | oakad/ucpf | 24790c6f8247e16b8ef48bc3012da15bdd775205 | cb832e39776237af5fd901e3942d671af37a8005 | refs/heads/master | 2021-03-16T07:17:54.219223 | 2017-04-01T05:57:33 | 2017-04-01T05:57:33 | 337,931 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,095 | cpp | /*=============================================================================
Copyright (c) 2000-2004 Aleksey Gurtovoy
Copyright (c) 2013 Alex Dubov <oakad@yahoo.com>
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at http://www.boost.org... | [
"oakad@yahoo.com"
] | oakad@yahoo.com |
1e6d7b39ec7a566f80ef3efba9fb3e0534b8fa78 | dd02b3be967ba45c70354f9d9c0411899f536780 | /codec.cpp | 6fbd5f314b90c54e9736f3cd5a4dc7e37f8d8efd | [] | no_license | dragon101788/hui5-hulua | 04332f4109644b404cc1c798e0ac86ac204a22ed | dd60ab219409fc972c4be08f8aa691152d39a1b1 | refs/heads/master | 2020-06-02T02:08:55.449800 | 2015-07-13T08:53:06 | 2015-07-13T08:53:06 | 37,994,988 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 21,850 | cpp | #include <stdio.h>
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#include <string.h>
#include <fcntl.h>
#include <sys/mman.h>
#include <sys/ioctl.h>
#include <errno.h>
#include <signal.h>
#include <linux/fb.h>
#include <getopt.h>
#include <termios.h>
#include <png.h>
#... | [
"dragon101788@sina.com"
] | dragon101788@sina.com |
234dc1449848ac3863bddd9b3f55519a2856e660 | 75fe5fcd800e3adc53993c16c2020b37790acc23 | /tp1/chilkat/include/CkAuthAzureSASW.h | ef2e447604d6055b29b260544c81d483a8df0b6e | [] | no_license | ignitz/2018_1_ri | 1791a5c4cb738b9a8d571d2d77d4d844671ada70 | ae6096192f5e00991fbad8701a3c9595a288a1ac | refs/heads/master | 2021-04-15T05:58:18.139578 | 2018-05-21T01:45:02 | 2018-05-21T01:45:02 | 126,904,087 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,365 | h | // CkAuthAzureSASW.h: interface for the CkAuthAzureSASW class.
//
//////////////////////////////////////////////////////////////////////
// This header is generated for Chilkat 9.5.0.72
#ifndef _CkAuthAzureSASW_H
#define _CkAuthAzureSASW_H
#include "chilkatDefs.h"
#include "CkString.h"
#include "CkWide... | [
"ignitzhjfk@gmail.com"
] | ignitzhjfk@gmail.com |
ac3abfb7e431d384e92c1c5dc22c1ceace758f47 | 56fee40dfcdf1208c57706df84171bf974840655 | /utility/mesh.hpp | d71e9955c914c9087c9f639627232c210e5c0f35 | [] | no_license | university-of-newcastle-COMP3320/OpenGL-Tutorials | d2cb020b99ca51f45a6311488bd8c766bb456e39 | 4d703cdc287fde3278590e56a4b350ec11141e1e | refs/heads/master | 2023-07-25T14:24:38.741938 | 2021-09-07T04:05:33 | 2021-09-07T04:05:33 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,148 | hpp | #ifndef UTILITY_MESH_HPP
#define UTILITY_MESH_HPP
#include <cstddef> // for offsetof
#include <iostream>
#include <string>
#include <vector>
// For python style string formatting
#include "fmt/format.h"
// For matrix and vector arithmetic
#include "glm/glm.hpp"
#include "glm/gtc/type_ptr.hpp"
// clang-format off
/... | [
"c3124185@uon.edu.au"
] | c3124185@uon.edu.au |
a9cf220320ac14ba64f971262295bdbb5bd7a9a6 | d62701bf63f1562b17a8dc1ecd0865d98bd5b36b | /win32Consl/SymolLink.h | de313b27582e3092e166ff04be6384ec59badd78 | [] | no_license | weskitt/WindowsFormsApp1 | 47cce314d27d8e7cac955233a378fe1d12617460 | 9a1f43e3322e9f517085ccc4ba19d1bf3d395fa5 | refs/heads/master | 2021-01-20T15:03:01.645416 | 2017-09-22T04:22:41 | 2017-09-22T04:22:41 | 90,705,792 | 1 | 0 | null | null | null | null | GB18030 | C++ | false | false | 1,134 | h | #pragma once
using namespace std;
class SymolLink
{
map<wchar_t, SymbolLinkAttr> subWords;
map<wchar_t, SymbolLinkAttr>::iterator iter;
//当wchar_t=‘空’,且SymbolLinkAttr->ALONE==true时,判断为独立词
public:
//查找link操作
bool IfLink(wchar_t key) {
if (subWords.find(key) == subWords.end())
return false; //不存在
else
... | [
"weskitt@hotmail.com"
] | weskitt@hotmail.com |
80fbd4ff8094194f60263e3e19492e3dc32c8f05 | d16963744d81996734be49703c66fa5aa33df4b3 | /src/1.0/RakNet/Source/ReadyEvent.cpp | 31a45807b024be2b863a38bbad4131e715044de7 | [
"BSD-3-Clause",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | heinezen/IPcurve | e20645138e17d81ebc9639dd1c69f9213932a581 | e4a7c75f25cedf95df3c9799d17a85bf7a3ca088 | refs/heads/master | 2021-01-11T15:13:24.860654 | 2018-11-23T14:55:34 | 2018-11-23T14:55:34 | 80,321,249 | 17 | 3 | null | 2018-11-22T18:56:13 | 2017-01-29T00:49:24 | C | UTF-8 | C++ | false | false | 20,021 | cpp | #include "ReadyEvent.h"
#include "RakPeerInterface.h"
#include "BitStream.h"
#include "MessageIdentifiers.h"
#include "RakAssert.h"
int ReadyEvent::ReadyEventNodeComp( const int &key, ReadyEvent::ReadyEventNode * const &data )
{
if (key < data->eventId)
return -1;
else if (key==data->eventId)
return 0... | [
"michi.hostettler@cern.ch"
] | michi.hostettler@cern.ch |
4cf89974767686f9cc120f7691501e5df8a1997a | 701e68c1497f5273354c5c967288a9c7d5242f9c | /examples/llnl-examples/zfpsynth/zfp5/tcase.h | 5284e9e68bd59816acbdca26ace5e98678aa022f | [
"NCSA",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | anikau31/systemc-clang | b56673b42c90b14f8ac95ce027461533e9c198d5 | b8e2c3721392988b26d53629dc19d5c52c1443e9 | refs/heads/master | 2023-09-01T15:27:15.538724 | 2023-08-28T16:07:21 | 2023-08-28T16:07:21 | 12,997,501 | 66 | 23 | NOASSERTION | 2023-05-26T16:25:29 | 2013-09-21T15:39:56 | C++ | UTF-8 | C++ | false | false | 15,311 | h | #ifndef TCASE_H
#define TCASE_H
#include <algorithm> // min, max
#include "../shared2/zhw.h"
#include "zbatch.h"
#define CEIL(n,s) ((((n)+((s)-1)) / (s)) * (s))
//-----------------------------------------------------------------------------
// CPU cycle counter
//----------------------------------------------------... | [
"zhwu95@gmail.com"
] | zhwu95@gmail.com |
d954851cc8cef0a09582fdf71e265033cfa070fd | 7ba5b5d0f18f939aa22f8651b18e464e9696a0bb | /platform/posix/timer.cc | c51aa2a3f442c17df522c6fa634975a9f17b5676 | [] | no_license | nzmichaelh/nppilot | 626d9b6124fbbfdc5dcd36028d60673d96514728 | 5c03c4f5cb5fb801601548966254cc6d0a888aa9 | refs/heads/master | 2021-01-10T18:07:34.560811 | 2014-02-22T18:33:31 | 2014-02-22T18:33:31 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 598 | cc | #include "timer.h"
#include "debug.h"
struct Binding;
struct Binding
{
Timer* ptimer;
const Timer::Fixed* pfixed;
};
Binding _bindings[50];
void Timer::tick_all()
{
for (Binding* pbinding = _bindings; pbinding->ptimer != nullptr; pbinding++) {
pbinding->ptimer->tick(*pbinding->pfixed);
}
}
... | [
"michaelh@juju.net.nz"
] | michaelh@juju.net.nz |
de2bacd17f5d1a8e6ece07853b434f6fb052e647 | dc4595c159b2023a4ee399951406da7109860c98 | /tools/bench/sources/bench_vector_atan.cpp | 7d88d8a6b5ca642f351e0639d32b8b27955a4449 | [
"MIT"
] | permissive | nfrechette/rtm | ef447fb41d2d997ed622973309cd4446551f0d2b | 5cba8603d2efb32895e2961e91f56999f04ed79b | refs/heads/develop | 2023-08-14T09:59:06.464608 | 2023-07-30T15:32:49 | 2023-07-30T17:24:45 | 155,649,584 | 613 | 37 | MIT | 2023-09-07T02:09:43 | 2018-11-01T02:17:19 | C++ | UTF-8 | C++ | false | false | 7,987 | cpp | ////////////////////////////////////////////////////////////////////////////////
// The MIT License (MIT)
//
// Copyright (c) 2020 Nicholas Frechette & Realtime Math contributors
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (th... | [
"zeno490@gmail.com"
] | zeno490@gmail.com |
e44a1ec3e20fabaec680d1b916e21bb8e085bf4c | 2bc835b044f306fca1affd1c61b8650b06751756 | /urlmon/utils/afxtempl.h | 571a193bbc9e94c16c1e3ca767584227b2aadc1c | [] | no_license | KernelPanic-OpenSource/Win2K3_NT_inetcore | bbb2354d95a51a75ce2dfd67b18cfb6b21c94939 | 75f614d008bfce1ea71e4a727205f46b0de8e1c3 | refs/heads/master | 2023-04-04T02:55:25.139618 | 2021-04-14T05:25:01 | 2021-04-14T05:25:01 | 357,780,123 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 54,601 | h | // This is a part of the Microsoft Foundation Classes C++ library.
// Copyright (C) 1992-1995 Microsoft Corporation
// All rights reserved.
//
// This source code is only intended as a supplement to the
// Microsoft Foundation Classes Reference and related
// electronic documentation provided with the library.
// See t... | [
"polarisdp@gmail.com"
] | polarisdp@gmail.com |
b6604044957c6523c5d74fd150467f7795cdd65f | d84852c821600c3836952b78108df724f90e1096 | /exams/2558/02204111/1/midterm/2_2_713_5320502389.cpp | 82a323de86c18bfb437bba3e1f54dd9d616679f4 | [
"MIT"
] | permissive | btcup/sb-admin | 4a16b380bbccd03f51f6cc5751f33acda2a36b43 | c2c71dce1cd683f8eff8e3c557f9b5c9cc5e168f | refs/heads/master | 2020-03-08T05:17:16.343572 | 2018-05-07T17:21:22 | 2018-05-07T17:21:22 | 127,944,367 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,179 | cpp | #include<iostream>
#include<cmath>
using namespace std;
int main()
{
int a,b,c,e,r;
char ave,sum;
double h,w,d;
cout<<"Welcome to The Fantastic Tiles!!"<<endl;
cout<<"Please enter room size in meter (H x W x D):";
cin>>h>>w>>d;
cout<<"Please select floor tile...(A/B/C):";
cin>>a;
//... | [
"38048354+btcup@users.noreply.github.com"
] | 38048354+btcup@users.noreply.github.com |
2f4fadd9344a976d1d1dbb617b4270aba0baff25 | b42cfdf99629d74a0f8711d03f0088f0e5905906 | /course_1.4/backup.cpp | b68b16b13aa582bde6b1c7c71fc3e405665c6ef8 | [] | no_license | changan1995/mbedOS | 739fe504a3ba360c2c513e5e2c7b1cb56fb9afb4 | 31c5f0990f5633a524b27c65a6bd2ac52b43b7a6 | refs/heads/master | 2021-01-20T09:07:42.785616 | 2017-05-27T06:59:58 | 2017-05-27T06:59:58 | 90,225,574 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,305 | cpp | #include "mbed.h"
#include <string>
#include <vector>
#include <inttypes.h>// seems to not in mbed OS5?
#include "mbedtls/entropy_poll.h"
#include <sstream>
DigitalOut led(LED1);
Thread blinky_thread;
int counter;
class BlinkArgs
{
public:
BlinkArgs(){
clear();
}
void clear(){
position=... | [
"Quankang.Wang@arm.com"
] | Quankang.Wang@arm.com |
193c16c72332f4e5c04bb524d5db22954d02e085 | 9bab169b128b891d1b099b516b908b7eac44d25b | /src/process_info_win.cpp | f26d3b1d506a2300dcac2457c9fd3af23e52ac79 | [
"MIT"
] | permissive | yinlei/tengine | f5b49f4c6603fa512c220ad1612fbe66a9aa7fc5 | 9ecbb0699675717fc2ad6bfd1f51338e42814dd4 | refs/heads/master | 2021-01-13T05:47:38.858569 | 2017-03-21T13:21:56 | 2017-03-21T13:21:56 | 76,639,337 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,507 | cpp | #include "process_info.hpp"
#include "system_info.hpp"
#include <psapi.h>
#pragma comment(lib,"psapi.lib")
namespace tengine
{
int64_t convertFileTimeToUtc(const FILETIME* ftime)
{
if (NULL != ftime)
{
LARGE_INTEGER li;
li.LowPart = ftime->dwLowDateTime;
li.HighPart = ftime->dwHighDateTime;
retur... | [
"yinl@uc888.cn"
] | yinl@uc888.cn |
0d56d8345e450c83a7de0c7e960a3e5285c6bb05 | 14b4e31ca9ece892d8915f6b49b4e4c0dffb2cb1 | /explosivo/Emitter.cpp | 056be11b326f934a6c68f7bae1bb4dde24a667c6 | [
"MIT"
] | permissive | L1quid/Explosivo | 6bac5926293255fa310210b86df661a61eaf208b | b94250ed6ee43ecfda4cfa70ddb366a8990d15d1 | refs/heads/master | 2021-06-21T16:25:09.338977 | 2016-12-21T18:15:43 | 2016-12-21T18:15:43 | 1,281,174 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,285 | cpp | #include <windows.h>
#include <math.h>
#include "Emitter.h"
#include "config.h"
#include "explosivo.h"
extern unsigned int WIDTH, HEIGHT;
Emitter::Emitter()
{
reset();
}
Emitter::~Emitter()
{
m_streamlets.Empty(true);
}
void Emitter::reset()
{
m_age = 0.0;
m_cx = m_cy = 0;
m_x_offset = m_y_offset = 0;
}
... | [
"dan@shup.com"
] | dan@shup.com |
6c0ad2a2b95a9e32d92aef0127f0bb5d473be600 | bd9f9d3937f7ea8a825e1d9b61fb5493f88b4653 | /src/log/ConsoleLog.cpp | a5aaa70345a155c103d7c39a2fac80e33c639f43 | [] | no_license | tea2code/fantasy-rts | ba3b0b73975d4c6d4c986a36f11002073b40995f | c38b43edb7ec54f18768564c42859195bc2477e4 | refs/heads/master | 2021-01-20T02:48:03.999913 | 2015-02-07T10:12:10 | 2015-02-07T10:12:10 | 15,477,479 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 863 | cpp | #include "ConsoleLog.h"
#include <boost/format.hpp>
#include <iostream>
frts::ConsoleLog::ConsoleLog()
{
}
void frts::ConsoleLog::debug(const std::string& module, const std::string& msg)
{
print("Debug", module, msg);
}
void frts::ConsoleLog::error(const std::string& module, const std::string& msg)
{
prin... | [
"stefan4875@gmail.com"
] | stefan4875@gmail.com |
e2ee3b12e4e386cdd15f90990bfa6e36e7229c41 | 5d6ed82523cea35facf0ca83cd608b840fbfdbd5 | /src/SbgDriver.cpp | b9b69fbbfa33c9942d8082af27dd5eb0a1225556 | [] | no_license | rpng/sbg_driver | ce1bee602144f43ae337a98b562217006777d46b | e7cef38644f5f72ed9a47837815ec8f6f2205fdd | refs/heads/master | 2021-01-22T08:39:26.325361 | 2017-05-28T01:17:42 | 2017-05-28T01:17:42 | 92,628,279 | 1 | 0 | null | 2017-05-27T22:51:01 | 2017-05-27T22:51:01 | null | UTF-8 | C++ | false | false | 15,012 | cpp | #include "sbg_driver/SbgDriver.h"
#include "boost/date_time/posix_time/posix_time_types.hpp"
#include <diagnostic_updater/diagnostic_updater.h>
using namespace sbg_driver;
/**
* Class constructor
* Will open the connection and register the callback
*/
SbgDriver::SbgDriver(ros::NodeHandle nh)
: nh(nh),
... | [
"pgeneva@udel.edu"
] | pgeneva@udel.edu |
49e28220aa3e62fdfa7055e81b747a1d76ab4c75 | 44e3327925ad4391cdfa2ce70bb5b4e9472943e5 | /libawesome/libawesome/awesome.hpp | 821ee1570e52a5b33c4fa0f507fd9783a8a1e646 | [] | no_license | phejet/cmake_example | ab0dc3bc2ca064ce1b555b3629e125a62f6b804b | d39417d8f1acdf5903a51ad36301e063595148dd | refs/heads/master | 2020-05-19T13:58:15.815789 | 2015-04-16T13:41:06 | 2015-04-16T13:41:06 | 34,057,327 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 102 | hpp | #pragma once
namespace Awesome
{
class Main
{
public:
void sayHello();
};
} // namespace Awesome
| [
"phejet@gmail.com"
] | phejet@gmail.com |
deb20c7005cae91807973faf660cae75fe5c483e | 4d07ffb7e064246f545af2fec810010c1208e3a0 | /DishwasherProjectNewest.cpp | c07da1a90e5140c14580692414428fa2641d857f | [] | no_license | fatimahachem/dishwasher-project | b1190794c8b160b4133fb66b978ca3859559dca1 | 3efc3f7411e2e1cedcccc23e68b2d9d83a8b67b2 | refs/heads/master | 2020-09-17T05:31:57.795326 | 2019-12-02T22:54:35 | 2019-12-02T22:54:35 | 223,514,920 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,226 | cpp | // DishwasherProject.cpp : This file contains the 'main' function. Program execution begins and ends there.
#include <16F877a.h>
#fuses HS, NOLVP, NOWDT, PUT
#use delay (clock = 20000000)
//LEDs
#define RED_LED PIN_D5
#define YELLOW_LED PIN_D6
#define GREEN_LED PIN_D7
//Segment 1
#define SEGMENT_A1 PIN_B0
#define SEGM... | [
"fatima@fatimahachem.com"
] | fatima@fatimahachem.com |
e4ec95092edf5c5792e830b4200d9454305b553d | 7a8c3d3923534da1822d225c675d7090b09fbc37 | /arduino/libraries/ITEADLIB_Arduino_Nextion-master/NexText.cpp | d182c09303c9c825b129e8b8eaadc44783df1423 | [
"MIT"
] | permissive | ZeroWorkshop/ZeroBlocklyLite | 357f31c7a36ca10962bed9f965805e4e818780e3 | 58d8e8fd59b38a4db00147ba7d2798a5dfc3419f | refs/heads/master | 2022-12-22T21:53:09.568937 | 2021-01-06T09:27:55 | 2021-01-06T09:27:55 | 252,426,559 | 1 | 2 | null | 2022-12-10T06:00:26 | 2020-04-02T10:39:31 | C | UTF-8 | C++ | false | false | 4,837 | cpp | /**
* @file NexText.cpp
*
* The implementation of class NexText.
*
* @author Wu Pengfei (email:<pengfei.wu@itead.cc>)
* @date 2015/8/13
* @copyright
* Copyright (C) 2014-2015 ITEAD Intelligent Systems Co., Ltd. \n
* This program is free software; you can redistribute it and/or
* modify it under the term... | [
"36092823+ZeroWorkshop@users.noreply.github.com"
] | 36092823+ZeroWorkshop@users.noreply.github.com |
a707f6e43fcc838338e22d11e49a5934fa9ade2f | 4b4ab8dcab747913d105a687d64b3dec00b0789d | /Switch_Http/Switch_HttpInterfaceBase.cpp | 60d373822ca22944089f931e95c9b39bb2acd72d | [
"MIT"
] | permissive | woutercharle/switch | 8f90a1b5266b7aef3ee199de0767910f486c21b7 | 632f48fde60d071fdda0b4e7655db0a8354b5ef4 | refs/heads/master | 2020-04-17T11:12:03.744878 | 2019-01-19T20:02:21 | 2019-01-19T20:02:21 | 166,531,427 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 16,980 | cpp | /*?*************************************************************************
* Switch_HttpInterfaceBase.cpp
* -----------------------
* copyright : (C) 2013 by Wouter Charle
* email : wouter.charle@gmail.com
*
**************************... | [
"wouter.charle@gmail.com"
] | wouter.charle@gmail.com |
09e4df02db4fa33e4697abffc35313674ed164e5 | abf2afb7921441e3caafe6c852232b9233dd218c | /119.cpp | 9d5cfdc36420fc45d1ea7681bf8cf454e6327606 | [] | no_license | farhapartex/uva-solutions | 97e2a01ea2db571932c8f673708ffcf657ac2a16 | d14d2be95c60d3474befe4c0625ae0c9ec01749a | refs/heads/master | 2020-05-23T20:59:01.588640 | 2019-05-17T08:14:05 | 2019-05-17T08:14:05 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,182 | cpp | #include<iostream>
#include<cstdio>
#include<stack>
#include<queue>
#include<vector>
#include<algorithm>
#include<map>
#include<cstring>
#include<sstream>
#include<cmath>
using namespace std;
const double pi = 2*acos(0);
#define pf printf
#define sc scanf
#define pb push_back
#define MIN(x,y) ((x) < (y) ? (x) : (y))
... | [
"hasan08sust@gmail.com"
] | hasan08sust@gmail.com |
2322e258a9ab374f5ef777fe672ef25309dbad87 | 834d7f8c80fee88a00ad0c7a06605d6a8dbb0343 | /source/poznamky/2011-03-30-racionalizacia/a.cpp | 91a08b6a24836dfcef1eb922c0c19065409f4600 | [] | no_license | breviar-sk/Liturgia-hodin-online | 57f7a1392a8dc57e83b02c493b66fe7c15d9e709 | a1156cc61233876a58f20ea9475a1722048a18c5 | refs/heads/master | 2023-03-18T19:08:31.316179 | 2023-03-16T03:00:04 | 2023-03-16T03:00:04 | 1,878,182 | 19 | 8 | null | 2022-08-19T07:26:31 | 2011-06-10T21:57:25 | C++ | WINDOWS-1250 | C++ | false | false | 2,431 | cpp | #define PRILEP_REQUEST_OPTIONS (pom2, pom3, prvy_ampersand) {
/* 2006-07-31: pridané odovzdanie parametra pre jazyk */
if(_global_jazyk != JAZYK_SK){
sprintf(pom3, ((prvy_ampersand == ANO)? HTML_AMPERSAND : STR_EMPTY)"%s=%s", STR_JAZYK, skratka_jazyka[_global_jazyk]);
strcat(pom2, pom3);
Log("\tPrilepil som aj ... | [
"ri.kralovic@gmail.com"
] | ri.kralovic@gmail.com |
3354939e1e367a44439c96ce5e6faec16cbed721 | 037c7a8bc39146c31449e248f8a9c025ec1c01d0 | /02.device/arduino/chapter3/ultra_ex01_lcd_h/Ultra.h | 15fcb9afa304d7b21e235befd74e4eea8c52e8af | [] | no_license | cooluks2/iot | e62874624bc06acbe5647fed35f6ec62bd582e7f | e452b29f0c6967dad9b11207c3b5189cec385497 | refs/heads/master | 2023-01-22T17:19:58.456577 | 2020-11-20T11:36:34 | 2020-11-20T11:36:34 | 292,755,019 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 161 | h | #pragma once
#include <Arduino.h>
class Ultra {
protected:
int echo;
int trig;
public:
Ultra(int echo, int trig);
int read();
}; | [
"cooluks2@gmail.com"
] | cooluks2@gmail.com |
6892e1b529ea838630ff715afd06263e699326f0 | d23296108c883bff30d13a05a3710ae82804a015 | /A/344A.cpp | bb677deb18008441ddbd7186aabb8bc8effb09a7 | [] | no_license | rishabhs-s/Codeforces | 99583b140a97147f4e4320ec9dd754f71ffac255 | d1d9f7c3cf6af0af2622be0d30d4e369a017d9b7 | refs/heads/main | 2023-07-05T14:26:20.349736 | 2021-05-09T07:17:29 | 2021-05-09T07:17:29 | 363,628,615 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 206 | cpp | #include<bits/stdc++.h>
using namespace std;
int main(){
int n;
int c=0;
cin>>n;
int a[n];
for(int i=0;i<n;i++){
cin>>a[i];
}
for(int i=0;i<n;i++){
if(a[i]!=a[i+1]){
c++;
}
}
cout<<c;
}
| [
"47741140+rishabhs-s@users.noreply.github.com"
] | 47741140+rishabhs-s@users.noreply.github.com |
2e1b29b795b6ff3a75642fa87138c7fb710d91ab | dc7579e2f2572f9df50d5034a6dc6e2f842f70ef | /node_modules/hummus/src/FormXObjectDriver.cpp | b5b8d7f77e81f3d439754a29ea2d44c4bcdfcc72 | [
"Apache-2.0"
] | permissive | adityainterwork/pdf-microservice | 0e98f1369c2868c93efdcd4e2594da826ced1272 | 551c627beb4c512a9c9b1dddce96db3adb3f3722 | refs/heads/master | 2020-05-16T19:33:01.171714 | 2019-04-25T05:07:11 | 2019-04-25T05:07:11 | 183,262,555 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,120 | cpp | /*
Source File : FormXObjectDriver.cpp
Copyright 2013 Gal Kahana HummusJS
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
Unles... | [
"aditya@interwork.biz"
] | aditya@interwork.biz |
4e415ca6bec655de8917c1d157b3b44f79ff918b | 4cdc129237eafabe2647f09fdb5e257958c26a2e | /common/mpiHao/test/mpi_fun_test.cpp | 2c6453494b3ee6c46ad0cdd0e339c0df47bd3606 | [] | no_license | hshi/AFQMCLAB | d6cf2faa02d212c1a7f008148b9fcd5e2c386241 | 79c668bdbdf9c7097e4292dd58831b09b9fbcb4b | refs/heads/master | 2020-04-02T18:34:37.358694 | 2018-10-25T16:46:59 | 2018-10-25T16:46:59 | 126,272,964 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,980 | cpp | #include "../include/mpi_fun.h"
#include "../../testHao/gtest_custom.h"
using namespace std;
#ifdef MPI_HAO
TEST (MPIBcast, bool)
{
bool i= false;
if(MPIRank()==0) i= true;
MPIBcast(i);
EXPECT_TRUE( i );
}
TEST (MPIBcast, int)
{
int i=0;
if(MPIRank()==0) i=2;
MPIBcast(i);
EXPECT_EQ... | [
"boruoshihao@gmail.com"
] | boruoshihao@gmail.com |
9000e67e0e82cba9f165423644acb08c95ddcee5 | 568c36ac50f821e81eec1ccde2312191f54183e2 | /RecoCTPPS/PixelLocal/plugins/CTPPSPixelTrackAnalyzer.cc | 7a4dfebc3e3eab05db5559cd592f01a5e102d169 | [] | no_license | fabferro/ctpps_withHector | 168353b6948c6a9c5c50340f11acc1f7374a8da9 | 47598142f32440474ba0395d49e9e7800509375c | refs/heads/master | 2021-09-05T05:55:01.644890 | 2018-01-17T10:08:01 | 2018-01-17T10:08:01 | 113,447,796 | 0 | 1 | null | 2018-01-17T10:08:02 | 2017-12-07T12:23:57 | Python | UTF-8 | C++ | false | false | 10,580 | cc |
#include "RecoCTPPS/PixelLocal/interface/CTPPSPixelTrackAnalyzer.h"
#include "Geometry/VeryForwardGeometryBuilder/interface/CTPPSGeometry.h"
#include "Geometry/Records/interface/VeryForwardMisalignedGeometryRecord.h"
#include "DataFormats/GeometryVector/interface/LocalPoint.h"
#include "DataFormats/GeometryVector/in... | [
"Fabrizio.Ferro@ge.infn.it"
] | Fabrizio.Ferro@ge.infn.it |
4636371577c5274ebafc49fe125ffa699390f64d | 82d6a09628bd3307ba68c840dd7de21df0ceda2a | /Portfolio/ContactDatabase/RecordList2.cpp | 2e6c4ddeeedc903b2b1cd219cd43c9fb3725ed82 | [] | no_license | brummetj/Record_Database_Avl_tree | 993f22613d5b6360730e95273f6bc18127b6d5dd | 482bc7409996f397b670b8aed084869bc6c2361d | refs/heads/master | 2021-01-16T22:37:09.607241 | 2016-09-16T21:59:28 | 2016-09-16T21:59:28 | 68,416,973 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 28,554 | cpp | //
// ContactList2.cpp
// Data Structures Final Project
//
// Created by Joshua Brummet on 5/2/16.
// Copyright © 2016 C++. All rights reserved.
//
#include <iostream>
#include <fstream>
#include <vector>
#include "RecordList.h"
#include "RecordType.h"
#include "AVLtree.h"
#include "AVLnode.h"
#include <sstream>
... | [
"joshua.brummet@ucdenver.edu"
] | joshua.brummet@ucdenver.edu |
fb9c03e31bfbffb4c436a4a0b1b9f47aa334ebe2 | b54176bbc1ff129aad21de18b21318340d23241e | /multistrand_modified/src/system/statespace.cc | 1cad92d3c8aa451d2e4b2eac9ecd1a54271e1ea5 | [
"MIT"
] | permissive | DNA-and-Natural-Algorithms-Group/FPEI | ed06aa231097f8eee8a74dad9c439a6f1f3fbb08 | 23c531ac841da66593ee486297c0237eeed130db | refs/heads/master | 2020-06-11T00:39:11.843963 | 2020-04-26T01:11:31 | 2020-04-26T01:11:31 | 193,805,828 | 3 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 4,330 | cc | /*
Copyright (c) 2017 California Institute of Technology. All rights reserved.
Multistrand nucleic acid kinetic simulator
help@multistrand.org
*/
/*
* Created on: Feb 23, 2018
* Author: Frits Dannenberg
*
* This class collects every visited state, and transitions between visited states.
* Afte... | [
"nasimzf@newcastle.cs.ubc.ca"
] | nasimzf@newcastle.cs.ubc.ca |
2f04e09d1061abf735fe4cefa6cfd584c6004d21 | e829bdbbe6342c8e0b808b34086689168526c940 | /src/raytracing/Camera.h | 5946ce9f96dad9a7b2c7df87b36be7340f6c09f5 | [
"MIT",
"Unlicense",
"LicenseRef-scancode-public-domain"
] | permissive | mosra/magnum-examples | 885b22e2599c1c0ceca0afa56f262c8f81d326ac | 029081c7f89c7a751ac8bfcc6bbb5e409bb1554f | refs/heads/master | 2023-08-22T11:24:48.502172 | 2023-08-09T15:21:13 | 2023-08-09T15:21:13 | 2,791,179 | 270 | 107 | Unlicense | 2023-08-09T15:26:31 | 2011-11-16T21:28:15 | C++ | UTF-8 | C++ | false | false | 3,076 | h | #ifndef Magnum_Examples_RayTracing_Camera_h
#define Magnum_Examples_RayTracing_Camera_h
/*
This file is part of Magnum.
Original authors — credit is appreciated but not required:
2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019,
2020, 2021, 2022, 2023 — Vladimír Vondruš <mosra@centru... | [
"mosra@centrum.cz"
] | mosra@centrum.cz |
591d5c1805eb9770bd14c4cb4972969878fdcdc9 | bf040659b432f9402b11e039be0ffb8c2228be3c | /readMatrix.cpp | 37f4b6c529fccc468c07ac580996d27ab0f2f701 | [] | no_license | raghavdogra/ParallelProgramming | 6f981ff873e7e7149b9e90f5953808544585c719 | de879e6df3826caaa21d58136d9ab5cf099d37af | refs/heads/master | 2021-06-27T06:47:49.521777 | 2017-05-08T05:50:47 | 2017-09-15T03:52:33 | 103,610,998 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,028 | cpp | #include <iostream>
#include <fstream>
#include <sstream>
#include <sys/time.h>
#include <cilk/cilk.h>
using namespace std;
#define COUNT 4096
int main () {
string line;
char s1, s2;
int i, j,k, value;
int** X = new int*[COUNT];
int** Y = new int*[COUNT];
int** Z = new int*[COUNT];
struct timeval star... | [
"tg840562@login4.stampede.tacc.utexas.edu"
] | tg840562@login4.stampede.tacc.utexas.edu |
88ffca6e4afcc5a9900d14b33d1326ea667b95fe | 1820744e6d2da1cf00e096feaa3d16fe5f9f8663 | /Graph/include/Test.h | 69566b57e5a5c697ea446cf53c4532e7dd095e64 | [] | no_license | trialblazer/DataStructure | ad8f2236bdc8775210e8b646f7c5fdbaf0578f0e | 1940db7c24b73d92a437fa7f248b17b9f80b747a | refs/heads/master | 2021-01-19T02:11:47.810496 | 2016-07-25T06:47:01 | 2016-07-25T06:47:01 | 53,742,109 | 1 | 0 | null | null | null | null | GB18030 | C++ | false | false | 4,182 | h | #ifndef TEST_H
#define TEST_H
#include <iostream>
#include <windows.h>
#include "Graph_Matrix.h"
#include "Graph_Lnk.h"
#include <conio.h>
#include <stdlib.h>
#include <stdio.h>
using namespace std;
#define MAXSIZE 10
/// Graph_Matrix测试类
template <class T> class Test {
void creat();
void insert_v();
voi... | [
"zhaopengtao0122@foxmail.com"
] | zhaopengtao0122@foxmail.com |
d8bd3990ea855b91a32077c4e5f5f30402a2e657 | 8d19ab53401030209dd7e5e655bdb0e2952bfa7e | /toonz/sources/include/toonz/cleanupparameters.h | dcef310a78853886665dd361718b664703e74010 | [
"BSD-3-Clause"
] | permissive | deruji/opentoonz | 825a74af1dbc89c62991458a352650c4ef766fde | ad5f6141388f796c5146876916c812bf1b1f0ff9 | refs/heads/master | 2021-05-03T09:41:12.454051 | 2016-04-22T21:08:08 | 2016-04-22T21:08:08 | 54,891,799 | 0 | 0 | null | 2016-04-22T21:08:08 | 2016-03-28T12:49:04 | C++ | UTF-8 | C++ | false | false | 4,529 | h |
#ifndef CLEANUPPARAMETERS_INCLUDED
#define CLEANUPPARAMETERS_INCLUDED
//Qt includes
#include <QString>
//Toonz includes
#include "tfilepath.h"
#include "toonz/targetcolors.h"
#include "tcamera.h"
#include "tpalette.h"
#undef DVAPI
#undef DVVAR
#ifdef TOONZLIB_EXPORTS
#define DVAPI DV_EXPORT_API
#define DVVAR DV_EX... | [
"shimizu.toshihiro@gmail.com"
] | shimizu.toshihiro@gmail.com |
3bfe044dd1feb05905dd24e83a7a049c4cc05bf9 | 86df6f8f4f3c03cccc96459ad82bcdf3bf942492 | /leetcode/combination-sum-ii.cc | a9d7b97075177de97a9af98746795bfa8852d268 | [] | no_license | bdliyq/algorithm | 369d1fd2ae3925a559ebae3fa8f5deab233daab1 | e1c993a5d1531e1fb10cd3c8d686f533c9a5cbc8 | refs/heads/master | 2016-08-11T21:49:31.259393 | 2016-04-05T11:10:30 | 2016-04-05T11:10:30 | 44,576,582 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,482 | cc | // Question: https://leetcode.com/problems/combination-sum-ii/
#include <vector>
#include <iostream>
#include <algorithm>
using namespace std;
class Solution {
public:
vector<vector<int> > combinationSum2(vector<int>& candidates, int target) {
vector<int> path;
vector<vector<int> > ans;
so... | [
"liyongqiang01@baidu.com"
] | liyongqiang01@baidu.com |
e6b59c72a5bf258973b28390991866332d999e79 | 56bbd61c3bad30b4aa525fa5542569ccd7102436 | /Gridding_cpu/Gridding_cpu/Gridding.cpp | e156bcf569bde7ad9dd7f3fdec75563f1dcad4d9 | [] | no_license | SiNcSaD/Cuda | 4d2d2b29b4fe11a1a3149c1bad24434c31057e2b | 318a1879ca4e072d8dd3f351ff46dd292f31eea0 | refs/heads/master | 2021-01-12T09:18:51.202955 | 2017-02-17T02:14:44 | 2017-02-17T02:14:44 | 81,316,899 | 0 | 0 | null | null | null | null | BIG5 | C++ | false | false | 1,462 | cpp | #include <opencv2\core\core.hpp>
#include <opencv2\highgui\highgui.hpp>
#include <opencv2\opencv.hpp>
#include <stdio.h>
#include <time.h>
#define gridWidth 100
#define gridHeight 100
int main()
{
/// 建立IPL
IplImage *imgSrc = cvLoadImage("C:\\Users\\user\\Desktop\\Gridding.jpg");
IplImage *imgOutput = cvCreateImag... | [
"generation0987740903@gmail.com"
] | generation0987740903@gmail.com |
d7c64669a5ffb69d7988d669f061ff47fc8b806f | ac8e27210d8ae1c79e7d0d9db1bcf4e31c737718 | /lib/Target/ARM/MCTargetDesc/ARMInstPrinter.cpp | 45be1ee96342166d7817267d446e4430e8871191 | [
"NCSA",
"LLVM-exception",
"Apache-2.0"
] | permissive | steleman/flang9 | d583d619bfb67d27a995274e30c8c1a642696ec1 | 4ad7c213b30422e1e0fcb3ac826640d576977d04 | refs/heads/master | 2020-11-27T09:50:18.644313 | 2020-03-07T14:37:32 | 2020-03-07T14:37:32 | 229,387,867 | 0 | 0 | Apache-2.0 | 2019-12-21T06:35:35 | 2019-12-21T06:35:34 | null | UTF-8 | C++ | false | false | 58,360 | cpp | //===-- ARMInstPrinter.cpp - Convert ARM MCInst to assembly syntax --------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===---------------------------... | [
"stefan.teleman@cavium.com"
] | stefan.teleman@cavium.com |
a918b839e292b1aa262162cdb264e8baed304fac | 31dec155a9e069adfcf209238677b49d23bf1694 | /libraries/MAX31855_RT/examples/max31855_demo6/max31855_demo6.ino | 7f828b1a9cbde06b57985cdd90800f23f1a68ed0 | [
"MIT",
"LicenseRef-scancode-warranty-disclaimer"
] | permissive | jantje/Arduino | 75a35cfb2e2ce7a1a78ba545ac30ac8c752d1aa8 | cd40e51b4eb9f8947aa58f278f61c9121d711fb0 | refs/heads/master | 2021-12-03T11:16:44.274410 | 2021-07-11T13:37:02 | 2021-07-11T13:37:02 | 382,966,519 | 0 | 0 | MIT | 2021-07-04T23:21:23 | 2021-07-04T23:21:22 | null | UTF-8 | C++ | false | false | 1,167 | ino | //
// FILE: max31855_demo6.ino
// AUTHOR: Rob Tillaart
// VERSION: 0.1.1
// PURPOSE: thermocouple lib demo setSeebeckCoefficient()
// DATE: 2015-12-06
// URL: https://github.com/RobTillaart/MAX31855_RT
//
#include "MAX31855.h"
const int doPin = 7;
const int csPin = 6;
const int clPin = 5;
MAX31855 tc(clPi... | [
"rob.tillaart@gmail.com"
] | rob.tillaart@gmail.com |
51a2ce3af0b66c425e1a8e04e7686cc582e6c01b | 160f91189b9627f0ddd9a95ff81a756313cb8d35 | /PhyLayr.h | ecfbc79ca8ad167b2d2e7626b693914ce5902528 | [] | no_license | shivinbhogal/A-PDU | 71f9154371798270bab5836140b6f31cae81df96 | 268eb8b34c7d5dc2ff63d1fe6883c0eaa9bda9be | refs/heads/master | 2016-09-05T18:08:50.739502 | 2015-05-04T19:04:40 | 2015-05-04T19:04:40 | 35,053,644 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 967 | h | //
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it wil... | [
"shivinblues@gmail.com"
] | shivinblues@gmail.com |
c08aaf55e0491dda4db0dde2c8ac84d02b683b4e | 58790459d953a3e4b6722ed3ee939f82d9de8c3e | /my/PDF插件/sdkDC_v1_win/Adobe/Acrobat DC SDK/Version 1/PluginSupport/Samples/SnippetRunner/Sources/snippets/Shared/CreateAnnotOCSnip.cpp | 8a2b3d4d7a06d76aff42329027ac14b0e4ea1c6e | [] | no_license | tisn05/VS | bb84deb993eb18d43d8edaf81afb753afa3d3188 | da56d392a518ba21edcb1a367b4b4378d65506f0 | refs/heads/master | 2020-09-25T05:49:31.713773 | 2016-08-22T01:22:16 | 2016-08-22T01:22:16 | 66,229,337 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 4,759 | cpp | /*********************************************************************
ADOBE SYSTEMS INCORPORATED
Copyright (C) 2000-2006 Adobe Systems Incorporated
All rights reserved.
NOTICE: Adobe permits you to use, modify, and distribute this file
in accordance with the terms of the Adobe license agreement
accompanying it... | [
"tisn05@gmail.com"
] | tisn05@gmail.com |
80fd71a42552892f77ee15f4108fff6c24d20609 | 5aa5c647fb683a3482bf403518a2a5c47cd48dbb | /Leetcode/Leetcode-1122.CPP | 99be5a88759393f8b1a30a6df14ff739005b2cf1 | [] | no_license | sanctum006/DSA | e3ec47597c6edc0e0f93f7ba466300b618ad2fcc | 6a5f551dc8575869d3c6c0f6d87ba5cef0d009e4 | refs/heads/main | 2023-08-07T21:57:02.519223 | 2021-09-15T17:41:58 | 2021-09-15T17:41:58 | 386,374,673 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,639 | cpp | /*
Given two arrays arr1 and arr2, the elements of arr2 are distinct, and all elements in arr2 are also in arr1.
Sort the elements of arr1 such that the relative ordering of items in arr1 are the same as in arr2. Elements that don't appear in arr2 should be placed at the end of arr1 in ascending order.
Example 1:
Inp... | [
"pushpendrayadav1057@gmail.com"
] | pushpendrayadav1057@gmail.com |
8b5e44b1383f8e107db706acadae6a126be9b96e | 4043d766cca5115c69bebb9847af2f905f78b46f | /cplusplus/learning/iostreamings/inpforchallenges/inp_loop.cpp | 4602cef19e530e8ef5392767e1ccd54f212960f1 | [
"Apache-2.0"
] | permissive | HypoChloremic/c | 07bd98bb5ad03f83bccde4dc37b441dc7c2ca2e1 | a027cda1f66c0bcae79c08bc3e90726a65a30b37 | refs/heads/master | 2021-11-07T02:08:56.659236 | 2021-11-01T22:23:30 | 2021-11-01T22:23:30 | 236,356,341 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 359 | cpp | #include <iostream>
using namespace std;
int main() {
int i = 0;
int sum = 0;
/*
Supposedly, this way, the loop will be continuing to
accept input until the an EOF (End-of-File conidition). This can be done with
`ctrl + D`
*/
while (cin >> i) {
sum += i;
}
cou... | [
"26204559+HypoChloremic@users.noreply.github.com"
] | 26204559+HypoChloremic@users.noreply.github.com |
5d97b12d3542b72af283e9197ea4812c53af7763 | 0f174c0938f269e8adb2b36e227867f534cfeed8 | /SFRTestDemo/main.cpp | 2a3c6fa149ef68820bfa5994191daccbb89d0ee6 | [] | no_license | lnengbo/sfrTest | fccc3fab6c97c263523a7fac285d20fdc6147f0a | 43b761940dd32bf84df1e0d3fa39dcd0ac0247a6 | refs/heads/master | 2023-05-09T07:50:03.204547 | 2021-06-08T02:31:54 | 2021-06-08T02:31:54 | 374,859,551 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 36,944 | cpp | #include "mainwindow.h"
#include <QApplication>
#include <iostream>
#include <opencv2/opencv.hpp>
#include <opencv2/features2d/features2d.hpp>
#include <QDebug>
#include <QTime>
#include "qcustomplot.h"
QCustomPlot *custplot;
QCustomPlot *custplotesf;
QCustomPlot *custplotlsf;
cv::Mat src, gray_src;
char *output_image... | [
"708951281@qq.com"
] | 708951281@qq.com |
e54caa55d415a91652fe9fdd13e5b32aacf6973e | 9030ce2789a58888904d0c50c21591632eddffd7 | /SDK/ARKSurvivalEvolved_WaterPipe_Metal_Intake_functions.cpp | ccb0e260d5c10cc5c84263af227300332e15a459 | [
"MIT"
] | permissive | 2bite/ARK-SDK | 8ce93f504b2e3bd4f8e7ced184980b13f127b7bf | ce1f4906ccf82ed38518558c0163c4f92f5f7b14 | refs/heads/master | 2022-09-19T06:28:20.076298 | 2022-09-03T17:21:00 | 2022-09-03T17:21:00 | 232,411,353 | 14 | 5 | null | null | null | null | UTF-8 | C++ | false | false | 1,524 | cpp | // ARKSurvivalEvolved (332.8) SDK
#ifdef _MSC_VER
#pragma pack(push, 0x8)
#endif
#include "ARKSurvivalEvolved_WaterPipe_Metal_Intake_parameters.hpp"
namespace sdk
{
//---------------------------------------------------------------------------
//Functions
//-----------------------------------------------------------... | [
"sergey.2bite@gmail.com"
] | sergey.2bite@gmail.com |
8b75691d251f3d9c3cc49694cb2bcceb56b4d1c2 | be7f2ab05d5b4a7abb15198807ee8eefc10bacc1 | /ValenceViewer.cc | 0d6c568bf8e63a02237ed959608fa9be32da1571 | [] | no_license | ProblemsCracker/exercise1 | c171f49caec497030778324646b15a18127c8938 | c96223a988ff04f7e00bae1a2566945a9d288847 | refs/heads/master | 2016-09-06T09:33:34.108978 | 2014-04-10T17:14:57 | 2014-04-10T17:14:57 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,699 | cc | //=============================================================================
//
// Code framework for the lecture
//
// "Surface Representation and Geometric Modeling"
//
// Mark Pauly, Mario Botsch, Balint Miklos, and Hao Li
//
// Copyright (C) 2007 by... | [
"lwbshr@gmail.com"
] | lwbshr@gmail.com |
3d678f5cf2e46c1ebfc4f24bced6c0288d317cb3 | 04a10b99fe0b82bfd038643638d40cf316a18bd1 | /file_system/shell/logout.cpp | 52b2ef03a035326cf97a20d15ef277a468ab7c8c | [] | no_license | xinnjie/simple_file_system | 47de2b495e774aa8643d6c6316a4f1a4e1273516 | 3570939f5397582c2f76cb47e646e4223bea16ab | refs/heads/master | 2020-03-22T07:35:49.582822 | 2018-07-22T16:43:27 | 2018-07-22T16:43:27 | 139,710,649 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 557 | cpp | //
// Created by capitalg on 2018/7/10.
//
#include <iostream>
#include "logout.h"
using namespace std;
logout::logout(IDEio &ideio, Bcache &bcache, Icache &icache, Dir &dir, SysFile &sysfile, Proc &cur_proc, Ftable &ftable)
: abstract_cmd(ideio, bcache, icache, dir, sysfile, cur_proc, ftable) {
}
int logou... | [
"772516890@qq.com"
] | 772516890@qq.com |
04f8fbc4966db67e0768163305e495bc5b878a84 | 58eb1c72bc0f02276f1fb99a5995f44751752752 | /utils/minValPos.cpp | f032fe8d08356adecf5abca0176d0b3390714977 | [] | no_license | rzel/fgi | 0ab2e2cb594f9068b4aef00f8e706aeb375dbad2 | e5a3f4b05d90f9bc882a2ae2b9952c64f17bb40b | refs/heads/master | 2021-06-07T11:41:57.427143 | 2016-11-04T13:27:05 | 2016-11-04T13:27:05 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,313 | cpp | #include <stdlib.h>
#include <string.h>
#include <math.h>
#include <time.h>
#include "mex.h"
int W, H; // image width, height
// mex function call:
void mexFunction(int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[])
{
if(nrhs < 3) { mexErrMsgTxt("FGS must be called with 6 arguments. Please see FGS.m for mor... | [
"liyu.sice.bupt@gmail.com"
] | liyu.sice.bupt@gmail.com |
bde4b3d5ab4a6637a3f6a215eed4f834936981fb | 233676e340835a58e8041bdc82c313e599af415c | /aslam_optimizer/aslam_backend/include/aslam/backend/DenseQRLinearSolverOptions.h | c76c37c872c98a5703a2a9f94a950473f78c1663 | [
"BSD-3-Clause"
] | permissive | ethz-asl/kalibr | 9213daa87ed191ce1e05fba9f7424204c2d9734c | 94bb8437a72a0d97a491097a7085bf3db4f93bba | refs/heads/master | 2023-08-29T17:04:47.774244 | 2023-08-14T02:08:46 | 2023-08-14T02:08:46 | 20,293,077 | 3,744 | 1,341 | NOASSERTION | 2023-09-10T02:18:47 | 2014-05-29T12:31:48 | C++ | UTF-8 | C++ | false | false | 2,436 | h | /******************************************************************************
* Copyright (C) 2012 by Jerome Maye *
* jerome.maye@gmail.com *
* *
... | [
"schneith@ethz.ch"
] | schneith@ethz.ch |
d0d12388c842d4f5a1945bb3c631f559296860a0 | 6c142dfb9667a14402f5432e58fc84f5deeb99c9 | /Cargo Game/UI.h | 10390de472002cb995f4755232bad3620d864352 | [
"Zlib"
] | permissive | Dullstar/Mining-Slapfight | 07654432463c62d68089da6937dfd24bb1a8e589 | a4361a187a42cc544468a799db3961fbae1736f0 | refs/heads/main | 2023-05-27T10:18:09.615293 | 2021-05-12T05:03:06 | 2021-05-12T05:03:06 | 293,332,252 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,994 | h | #pragma once
#include <memory>
#include <string>
#include <allegro5/allegro.h>
#include "constants.h"
#include "Objects.h"
#include "Units.h"
#include "RNG.h"
// File contains UI elements and a container for them.
// As with objects, this is so we don't have a bunch of files that are only a few lines each.
struct UI;... | [
"awesomesuperninja742@gmail.com"
] | awesomesuperninja742@gmail.com |
abc7d908c2018dd792615aea0ca778da6618242d | 480ef178622c12adbadb37d204ee7afc7be5a8d3 | /Cpp/71-80/Minimum Window Substring.cpp | 327606b8a385737a81fd88dc91490c21b71390aa | [] | no_license | talentlei/leetcode | 9e71154af31c1fe563f7ad8f64dbc442d1148108 | edf983bffe51ba7842446957ae9f34af6decb917 | refs/heads/master | 2021-01-19T07:43:16.483054 | 2015-07-07T15:20:09 | 2015-07-07T15:20:09 | 30,535,746 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,128 | cpp | /**
* runtime: 132ms
* error: too many
*
*/
string minWindow(string s, string t) {
if(s.size()==0||t.size()==0) return "";
unordered_map<char,int> myMap;
unordered_map<char,int> temp;
for(auto ch: t)
myMap[ch]++;
string res="";
... | [
"chenlei_0630@163.com"
] | chenlei_0630@163.com |
f0586c321d9987b564507b19fc9254dcd98d1839 | aa723782eda1643dd910f08e2c4fdb493c4662c1 | /C++/[VN-ZOOM] C & C++ Full/[VN-ZOOM] C & C++ Full/Giao trinh C++/thet ke do hoa dinh huong doi tuong voi c++/CPP/AFFINE.CPP | bec2f0fc3036f70f9ea0edc0f94e22973b6e9c1f | [] | no_license | congthanh97/laptrinhc | 422879fb267cccbb8e5964170942f9bffe73e5af | b15a5030a762674a35f65f71dfc8f38b3345ba1c | refs/heads/master | 2022-04-22T20:39:51.307263 | 2020-04-19T01:24:43 | 2020-04-19T01:24:43 | 238,343,006 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,351 | cpp | // Ngon ngu C++3.0
// Viet boi Huynh van Duc
// Thang 11/2000
// Cai dat trong "Thiet ke do hoa dinh huong doi tuong voi C++"
#include "affine.hpp"
Affine::Affine(): Matrix(4)
{
SetId();
}
Affine::Affine(float a): Matrix(3)
{
SetId();
float t = RAD_PER_DEG*a, c = cos(t), s = sin(t);
Set(0, 0, c);
Set(1, 1, c);
... | [
"41881944+Root1166@users.noreply.github.com"
] | 41881944+Root1166@users.noreply.github.com |
27ba1588b6017f4986599794f3a9bdb3da608df5 | 03883c63b16a2221eebd5e2d2a150a6db0bd4117 | /strings/lib/include/string_split.hpp | 2fd876df5cc5ebb0e357d4fc737b95716b898a96 | [] | no_license | ilyasemikin/AlgorithmsAndStructures | e42a5307cac91e6178562ca80d2bb40a7f53730f | 7b2b22d709967c922ce6cdb8a420e2a810fa5574 | refs/heads/master | 2021-04-21T06:01:44.971048 | 2020-09-07T09:47:50 | 2020-09-07T09:47:50 | 249,754,932 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 184 | hpp | #pragma once
#include <string>
#include <string_view>
#include <vector>
namespace learn {
std::vector<std::string> split_into_words(const std::string &input, char delim = ' ');
} | [
"iasemikin@gmail.com"
] | iasemikin@gmail.com |
6f9493c349c71025f935a57e29e3ca4c9d72441a | 9220de40dd75f54a948419142a8136d9fe108f8a | /GameNinjaGaiden/CGameBase.h | a032fd4b78f6ac99af3b91d4251ffe98ca157adc | [] | no_license | NguyenHieu1995/GameNinjaGaiden | ca1556f999dde843341b29bd36d858653403b895 | a3b1bc59788168b42c9c2c2ffd71733b8346da64 | refs/heads/master | 2021-02-17T20:07:23.612936 | 2020-03-05T09:56:59 | 2020-03-05T09:56:59 | 243,140,350 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 824 | h | #pragma once
#include <Windows.h>
#include "CDirectX.h"
#include "CConstant.h"
class CGameBase
{
public:
virtual ~CGameBase();
protected:
CGameBase();
static CGameBase* _pInstance;
protected:
bool _isAlived;
bool _isPaused;
public:
bool IsAlive();
bool IsPause();
virtual void Run();
virtual void Exit();
... | [
"nguyenhieu01673@gmail.com"
] | nguyenhieu01673@gmail.com |
fb8c412e0dfedadcc4f6f5dcbdb0e6307e971798 | 30c9b025738f8f9cc4767d496ff1805f57d57dee | /src/config/unit_upgrade_configs.hpp | 11dcdb7f5c0e03019a216f54728a184e3a688eac | [] | no_license | June-Wu/Feast-or-Famine | a20cb6f4f42a72d0ff5397a2ee32d52868026b48 | ef8fb6528e90c61c62858ade5a61705514db14c4 | refs/heads/main | 2023-05-01T04:30:11.076129 | 2021-05-18T02:43:50 | 2021-05-18T02:43:50 | 363,041,039 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,663 | hpp | #include <map>
#include <vector>
// each unit has a map for upgrade paths. the key is used to represent the level and the value is a vector
// vector[0] = cost to upgrade to next level
// vector[1] = health to be added to sell_price
// vector[2] = value to be modified
// each unit will have potential 3 upgrades on b... | [
"junewu.cs@gmail.com"
] | junewu.cs@gmail.com |
b70786882d672d0424a5ed02cc946ee81d004616 | bf53c9dc6851b501b13fa89c6e2bd2cf775b0d67 | /geGL/src/Shader.cpp | 23c37142ce45e5dbe9260465dbe93b8d29874339 | [] | no_license | xchuki00/PGP | 2ca971dc9af7858b57407502c777c2819d56d689 | 3f4990f84260734b5758e3731bd088e099d00575 | refs/heads/master | 2023-01-28T09:57:57.710541 | 2020-11-23T14:05:08 | 2020-11-23T14:05:08 | 315,334,034 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,628 | cpp | #include<GPUEngine/geGL/Shader.h>
#include<GPUEngine/geGL/Program.h>
#include<sstream>
using namespace ge::gl;
/**
* @brief gets shader parameter
*
* @param pname name of parameter
*
* @return value of parameter
*/
GLint Shader::_getParam(GLenum pname)const{
assert(this!=nullptr);
GLint params;
this->_gl.... | [
"p.chukir@gmail.com"
] | p.chukir@gmail.com |
4f00ac7d76f2b1912a11265cfdb3c7c0e763fbad | 0eff74b05b60098333ad66cf801bdd93becc9ea4 | /second/download/squid/gumtree/squid_repos_function_5820_squid-3.5.27.cpp | 29fc01e405b0ecc7606f21abdd72d0b93b1a13e5 | [] | 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 | 105 | cpp | const char *
Auth::Basic::Config::type() const
{
return Auth::Basic::Scheme::GetInstance()->type();
} | [
"993273596@qq.com"
] | 993273596@qq.com |
9343cbee7376bc6d30de23fc020650dc40b78930 | 84864f862dec9171e958920f2c8e7c920fcef056 | /LeetCode/371. Sum of Two Integers.cpp | 76f44e0f8c95c26604b18e85b051457857ff5a63 | [] | no_license | Orcuslc/Learning | 7704950f8c09232dadbbde81ed82ddc0ca65172d | ffa856febd85235d17358178f1e288ffae7856cb | refs/heads/master | 2020-03-26T11:59:54.093395 | 2018-05-29T04:19:36 | 2018-05-29T04:19:36 | 47,269,920 | 4 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 198 | cpp | class Solution {
public:
int getSum(int a, int b) {
while(b != 0) {
int carry = (a&b) << 1;
a = a ^ b;
b = carry;
}
return a;
}
}; | [
"orcuslc@hotmail.com"
] | orcuslc@hotmail.com |
2f84a73a9a2ede4b367e8a4be902d745b8ab18ea | 6f6e378ea2a3e23d3ecefb1f8ff4e847a7dcda68 | /libember/Headers/ember/glow/GlowMatrixBase.hpp | cd206e5e04ed72008b3585e4d28ecde558608f04 | [
"LicenseRef-scancode-dco-1.1",
"BSL-1.0"
] | permissive | Lawo/ember-plus | 878b772f2dff07821019690ba91a72095bf68081 | b42f3143c89f093e01362da69fb39686d0f1bd9e | refs/heads/master | 2023-04-02T17:03:47.304757 | 2023-03-30T12:38:39 | 2023-03-30T12:38:39 | 40,001,159 | 99 | 54 | BSL-1.0 | 2023-03-06T08:30:53 | 2015-07-31T10:55:18 | C++ | UTF-8 | C++ | false | false | 14,205 | hpp | /*
libember -- C++ 03 implementation of the Ember+ Protocol
Copyright (C) 2012-2016 Lawo GmbH (http://www.lawo.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 __LIBEMBER_GLOW_GLOWMATRIXB... | [
"marius.keuck@l-s-b.de"
] | marius.keuck@l-s-b.de |
aacb0bd49981db12d45ea55bd15f3b01c38fc6cf | 8cc355e8465211f4384655f55472d50d080ce1ac | /objs__verybiggun.cpp | b5b0b9bee998e78de5a6f3639c7edeca58ac1c14 | [
"CC0-1.0"
] | permissive | pgrawehr/golgotha | 47fb1e47c9a2e7f24e0ce7dde188f884a5504438 | 94e0b448d7e7224e56c27b029dec80ca710ceb8b | refs/heads/master | 2023-06-29T12:04:11.302599 | 2022-03-19T08:09:59 | 2022-03-19T08:09:59 | 40,831,531 | 7 | 5 | null | null | null | null | UTF-8 | C++ | false | false | 5,837 | cpp | #include "pch.h"
/**********************************************************************
Golgotha Forever - A portable, free 3D strategy and FPS game.
Copyright (C) 1999 Golgotha Forever Developers
Sources contained in this distribution were derived from
Crack Dot Com's public release of Golg... | [
"pgrawehr@hotmail.com"
] | pgrawehr@hotmail.com |
11d973cfe0343c9a0bdc6c5464a9994c916cc923 | 9c7c3e1c9b76d23a9574520a817a6e74c50f7c8d | /air/330/phi | 7a66f5fd78f89222bb869e42b43a7cf25e7d10fe | [] | no_license | einsteinzhang/k-epsilon_RAS-in-openFOAM | 20525f6a4e31c3832c7eeaae296099550ee76f7e | a3f3e3790fc7798bdafc0ab9fe42f831d8174106 | refs/heads/master | 2022-10-20T03:28:48.298669 | 2020-06-09T03:21:49 | 2020-06-09T03:21:49 | 270,980,331 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 737,331 | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 5.x |
... | [
"marble@tju.edu.cn"
] | marble@tju.edu.cn | |
0d017d2c573046b7f332ebd5802cbd010fb663a0 | 40b4f400349ae38efeb8f0ddc9a5f8a6bb765eb9 | /cluster-src/sf-kmeans-methods.cc | 6a12e62176eec601958168c40bb0cc3d7f65e615 | [] | no_license | YaweiZhao/VRKM_sofia-ml | 7f7607fb6a870d0c0bcb339164428b2efd9ad81d | 02b8b92953a12e3cd78a7cdfadd77ed8460d62d5 | refs/heads/master | 2021-09-18T23:33:40.323941 | 2018-07-21T17:40:27 | 2018-07-21T17:40:27 | 103,715,555 | 5 | 5 | null | null | null | null | UTF-8 | C++ | false | false | 59,083 | cc | //==========================================================================//
// Copyright 2009 Google Inc. //
// //
// Licensed under the Apache License, Version 2.0 (the "License"); //
... | [
"zhaoyawei@nudt.edu.cn"
] | zhaoyawei@nudt.edu.cn |
38613873d0d9b73ea7ea66607e51e6482f452394 | 39fe085377f3c7327e82d92dcb38083d039d8447 | /core/sql/sqlci/SqlciParser.h | 16e33e3b53319e706770ace9d8e015d27196cb5b | [
"Apache-2.0"
] | permissive | naveenmahadevuni/incubator-trafodion | 0da8d4c7d13a47d3247f260b4e67618c0fae1539 | ed24b19436530b2c214e4bf73280bc8e3f419669 | refs/heads/master | 2021-01-22T04:40:52.402291 | 2015-07-16T00:02:50 | 2015-07-16T00:02:50 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,809 | h | /**********************************************************************
// @@@ START COPYRIGHT @@@
//
// (C) Copyright 1994-2014 Hewlett-Packard Development Company, L.P.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You m... | [
"steve.varnau@hp.com"
] | steve.varnau@hp.com |
8828cefeea8d67a8bc7d98dc71696030e07f4bd6 | f92aabdd65222d7f137f75daf23997a5265f3b77 | /MacExperiment/ESTK.cmd/ESTK.cmd/ScCore/XML.hpp | bda3f2f7b3c1ac2f43013c62fd6a8e964cc713a0 | [
"MIT"
] | permissive | zwettemaan/ESTK.next | 1e1c9ade374fad7891e632383085a7f2a7e17bc7 | 2dced3824deae2daacb8cf9448891708cb449e4e | refs/heads/master | 2021-05-05T07:42:40.058854 | 2018-11-20T20:27:50 | 2018-11-20T20:27:50 | 118,879,533 | 4 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 287 | hpp | #ifndef __ScCore_XML__
#define __ScCore_XML__
#include "Root.hpp"
namespace ScCore {
//
// All of these signatures are guesswork!
// Many are bound to be incorrect - they're placeholders until
// they will be properly analyzed
//
class XML: Root {
public:
};
};
#endif
| [
"kris@rorohiko.com"
] | kris@rorohiko.com |
b3a9d01eb61c45294061de00e5d0e2f3789911c3 | 6ab8f50ffc2ae11be6b638d4cfe79878ae680d84 | /sources/NightModeController.h | d2414f3d105536a6f15f5d1df41b724ea858fd7c | [] | no_license | jeromelebel/bathroomfan | 0a212ae329910bb05cf8c405f9beef15f0b1393f | 9458ccf0fdc661ba0ace627fc05c6c217878c890 | refs/heads/master | 2020-07-01T23:46:09.476624 | 2019-11-10T01:23:30 | 2019-11-10T01:25:36 | 201,348,223 | 5 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 397 | h | #ifndef NightModeController_h
#define NightModeController_h
class PIRController;
class NightModeController {
public:
NightModeController();
~NightModeController();
void setPIRController(PIRController *pirController) { _pirController = pirController; };
void begin();
void loop();
bool isNight() const;
pr... | [
"jeromelebel@users.noreply.github.com"
] | jeromelebel@users.noreply.github.com |
46ce5963d9165d840364dce0de193f8e44ec00f5 | fa98aca1c0574c7d273b9e0e65c7ace5b5aade3a | /multi_pthread_pools/src/test/test_threadpool_main.cpp | 1da3b06ba32d1384010c92cc1cabf749229d8eba | [] | no_license | achilsh/demo | 860622209ea31a2adbd7f1c6f7a0ad2df4baa6a1 | dcdcabcb75c329c5ac6cdeb0c7e672c4de4f7fb1 | refs/heads/master | 2021-07-13T21:58:04.310813 | 2018-12-07T07:21:15 | 2018-12-07T07:21:15 | 133,545,473 | 0 | 0 | null | 2018-05-17T17:16:39 | 2018-05-15T16:42:45 | C++ | UTF-8 | C++ | false | false | 3,171 | cpp | #include <iostream>
#include <atomic>
#include <memory>
#include <unistd.h>
#include <stdio.h>
#include "ThreadManager.h"
#include <sys/time.h>
#include "PosixThreadFactory.h"
using namespace std;
using namespace THREAD_POOLS;
static std::atomic<int> m_atomicIndex(0);
static int64_t GetTimeCurMs()
{
struct time... | [
"hwshtongxin@126.com"
] | hwshtongxin@126.com |
3642b749b83ca6391f76cbf964c25a565a2d3790 | 053258c06c3d406b5e0fc30fad988c6668d6d0a8 | /Plugin/Source/UI/PanelModulation.h | 0ec1ae19883ca93bcb49cdb312a8583f83b444f8 | [] | no_license | HammyHavoc/preenfm2Controller | 0776be5b3c1aa28a5720c6d3cd9a6d6a61584e15 | b6ff6405ec33983dd3c4d3c557fd159751484fd9 | refs/heads/master | 2021-04-08T10:07:52.924738 | 2020-02-22T19:59:01 | 2020-02-22T19:59:01 | 248,765,595 | 0 | 0 | null | 2020-03-20T13:44:01 | 2020-03-20T13:44:01 | null | UTF-8 | C++ | false | false | 5,747 | h | /*
==============================================================================
This is an automatically generated GUI class created by the Projucer!
Be careful when adding custom code to these files, as only the code within
the "//[xyz]" and "//[/xyz]" sections will be retained when the file is loade... | [
"xavier.hosxe@gmail.com"
] | xavier.hosxe@gmail.com |
705b70e359895404e20ff54e920b161c1e8fb977 | b740ebeb9718b70d8035bb837d5571ed21bcf027 | /chart/CTableBlockHemodynamic.h | 8bf8ea7f4bd8073e78446aba41836527101d0b7e | [] | no_license | vit9000/chart | 84130608c4c29219220a0ae62a17e11ff771a6ea | 453e95a95beff61d98c8b22dd454c4e5789e69cf | refs/heads/master | 2021-05-10T20:13:22.672093 | 2018-05-01T09:54:13 | 2018-05-01T09:54:13 | 118,176,047 | 0 | 0 | null | null | null | null | WINDOWS-1252 | C++ | false | false | 6,852 | h | #pragma once
#include "CTableBlock.h"
class CTableBlockHemodynamic : public CTableBlock
{
int type;
public:
CTableBlockHemodynamic(const wstring& BlockName, const Rect& rectangle, IChartController* Controller, int Type)
: CTableBlock(BlockName, rectangle, Controller), type(Type)
{
}
void OnPaint(UGC& ugc) ov... | [
"vit9000@mail.ru"
] | vit9000@mail.ru |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.