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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
86ea37dffc852b01dd5cd8d454d9b3855fcac2f2 | c1582da0f3c1d762f6c78e613dfced5176bbfc83 | /Algorithms/p088_Merge_Sorted_Array/p088_Merge_Sorted_Array.cpp | 8581801dff6248ca5c7e1df7ab5cdc571fee044f | [] | no_license | lbingbing/leetcode | 08a90a4c018210a1f0182b5ef2ab55942d57da48 | f6019c6a04f6923e4ec3bb156c9ad80e6545c127 | refs/heads/master | 2020-05-21T16:30:06.582401 | 2016-12-15T06:44:49 | 2016-12-15T06:44:49 | 65,279,977 | 0 | 0 | null | 2016-08-27T04:19:27 | 2016-08-09T09:02:55 | Python | UTF-8 | C++ | false | false | 362 | cpp | class Solution {
public:
void merge(vector<int>& nums1, int m, vector<int>& nums2, int n) {
vector<int> nums1_1(nums1);
for(int i=0,j1=0,j2=0;i<m+n;++i){
if(j1<m&&(j2==n||nums1_1[j1]<nums2[j2])){
nums1[i] = nums1_1[j1++];
}else{
nums1[i] = nums... | [
"lbingbing@users.noreply.github.com"
] | lbingbing@users.noreply.github.com |
c02334026e3c6219c0e9e3517188caa1310beb33 | 62879de791a53070ff8309a4e118978c52afce50 | /lobster/src/lobster/natreg.h | fef7415d5987acc0a1fa1f4846603d1cfb4d2670 | [
"Zlib"
] | permissive | qyqx/treesheets | 1f28359535f250f61e84afb2fab36554ceacb4f0 | 39d367e0458a4b2879cffe9a3317e84ff8ab45c0 | refs/heads/master | 2022-07-15T23:09:54.100090 | 2022-06-30T01:29:50 | 2022-06-30T01:29:50 | 184,906,500 | 0 | 0 | Zlib | 2019-05-04T14:38:41 | 2019-05-04T14:38:41 | null | UTF-8 | C++ | false | false | 16,224 | h | // Copyright 2014 Wouter van Oortmerssen. 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 b... | [
"aardappel@gmail.com"
] | aardappel@gmail.com |
717ff980f7ea4305ff1f5901960f4b13dffd6a7f | e4e2397cbd4434873d5aeff49232147348a479b1 | /ehunter/thirdparty/graph-tools-master-0cd9399/src/graphalign/TracebackRunner.cpp | 369fb48f8360b9bdd04176b2eaf1234332ec243c | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference",
"BSD-3-Clause",
"GPL-3.0-or-later",
"Zlib",
"MIT",
"BSL-1.0",
"BSD-2-Clause",
"LicenseRef-scancode-polyform-strict-1.0.0"
] | permissive | Illumina/ExpansionHunter | c68b46356aadaea38b4649eb948f631a090146f6 | b22e63024b9fb6d481fc02f6a301dbbad74d503f | refs/heads/master | 2022-12-12T19:04:37.020106 | 2022-12-08T18:32:31 | 2022-12-08T18:32:31 | 73,416,041 | 154 | 48 | Apache-2.0 | 2022-10-20T07:18:35 | 2016-11-10T19:53:15 | C++ | UTF-8 | C++ | false | false | 3,769 | cpp | //
// GraphTools library
// Copyright 2017-2019 Illumina, Inc.
// All rights reserved.
//
// Author: Egor Dolzhenko <edolzhenko@illumina.com>
//
// 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 ... | [
"edolzhenko@illumina.com"
] | edolzhenko@illumina.com |
79cf0fe87def384e7195135c8629ce59252bdc9b | 5132580380403f44eaa99d3647690231889f1e3f | /LoggerTest/LoggerTest/LoggerTest.cpp | 0747a548d64d660264df3f7d2f87c102de233213 | [] | no_license | xxxMIBCxxx/Visual-Studio-2019 | 13a633009f073511b07eb36fa9bf04eefd7cad9c | 8ac422da2e71479bc3370e90f909d34d0ca8ede7 | refs/heads/master | 2020-08-28T19:49:28.167993 | 2019-10-27T04:20:57 | 2019-10-27T04:20:57 | 216,547,587 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 742 | cpp | // LoggerTest.cpp : このファイルには 'main' 関数が含まれています。プログラム実行の開始と終了がそこで行われます。
//
#include <iostream>
#include "CLogger.h"
int main()
{
BOOL bRet = FALSE;
CLogger cLog;
bRet = cLog.Open();
if (bRet == TRUE)
{
for (DWORD i = 0; i < 100; i++)
{
cLog.Output(LOG_OUTPUT_ERROR, "%04d - 0123456789ABCDEF",i);
... | [
"yuuki-miki-papa@i.softbank.jp"
] | yuuki-miki-papa@i.softbank.jp |
2b6f7ccedd7eea5e2d7e27419880935462e822be | 9a3b9d80afd88e1fa9a24303877d6e130ce22702 | /src/Providers/UNIXProviders/CDROMDrive/tests/CDROMDrive.Tests/UNIX_CDROMDriveFixture.cpp | e6942bc9ad31d71c0f04f8a8f9a43c799cdfa067 | [
"MIT"
] | permissive | brunolauze/openpegasus-providers | 3244b76d075bc66a77e4ed135893437a66dd769f | f24c56acab2c4c210a8d165bb499cd1b3a12f222 | refs/heads/master | 2020-04-17T04:27:14.970917 | 2015-01-04T22:08:09 | 2015-01-04T22:08:09 | 19,707,296 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,405 | cpp | //%LICENSE////////////////////////////////////////////////////////////////
//
// Licensed to The Open Group (TOG) under one or more contributor license
// agreements. Refer to the OpenPegasusNOTICE.txt file distributed with
// this work for additional information regarding copyright ownership.
// Each contributor lice... | [
"brunolauze@msn.com"
] | brunolauze@msn.com |
6d3defe3e9efeb520a12335c235caf2be651e11a | 877fff5bb313ccd23d1d01bf23b1e1f2b13bb85a | /app/src/main/cpp/dir7941/dir22441/dir22442/dir22443/dir22444/dir22445/file22526.cpp | 6f6cdd54e1c692b57d4948e3b961044414d40c13 | [] | no_license | tgeng/HugeProject | 829c3bdfb7cbaf57727c41263212d4a67e3eb93d | 4488d3b765e8827636ce5e878baacdf388710ef2 | refs/heads/master | 2022-08-21T16:58:54.161627 | 2020-05-28T01:54:03 | 2020-05-28T01:54:03 | 267,468,475 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 115 | cpp | #ifndef file22526
#error "macro file22526 must be defined"
#endif
static const char* file22526String = "file22526"; | [
"tgeng@google.com"
] | tgeng@google.com |
937282527d05b3069020c77c89a329716164e216 | b85c86757b3c75b3e00aa1075bd6720cbc1596b4 | /testMatrixArithmetic.cpp | 23be39343d6e3fe2c558b958e8b114937da3fed8 | [] | no_license | Alfred-N/Project_2_SF2565_Course | a75ddf16f282bb69124ed4c83c70c203306acaaa | 86843559944de714045df9f715cabd10b7a891f7 | refs/heads/main | 2023-08-29T01:23:21.029007 | 2021-11-02T15:28:25 | 2021-11-02T15:28:25 | 404,391,163 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,345 | cpp | #include "Header.h"
void testMatrixArithmetic()
{
Matrix a(3);
a.fillMatrix(0);
Matrix b = a; //create new matrix b using copy constructor
b.setElement(1, 1, 5.0);
a.printMatrix();
b.printMatrix();
Matrix c(2), e(2), f(2);
c = b; //copy assignment operator
c.printMatrix();
e.... | [
"alfredn@kth.se"
] | alfredn@kth.se |
8c01691818383aa89c0423532453207e0480d80d | 9bd35163a17a595bffab75b5efa35512701092ef | /133_div2c.cpp | c1d109db65b062cbd87bccc73cf008455e190181 | [] | no_license | atyamsriharsha/a2ojladderssolutionscodeforces | 162f6714ddb908c7f5723b5e6c8e8cc48951d97e | 9a540109aac702b7250a29e2a8fabb1c19338d04 | refs/heads/master | 2021-01-23T15:41:43.748147 | 2015-11-06T11:26:55 | 2015-11-06T11:26:55 | 42,813,908 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 766 | cpp | #include <bits/stdc++.h>
using namespace std ;
long long int of[2002];
int main()
{
long long int n, m, k;
cin >> n >> m >> k;
vector<long long int> res;
for(long long int i = 0; i < k; i++)
res.push_back(1);
if(k==1)
{
of[n+1] = 1;
for(long long int i=n;i<=m+n;i++)
{
if(o... | [
"atyamsriharsha@gmail.com"
] | atyamsriharsha@gmail.com |
bbe465886d67b963cb0c48ced8cae6df341e4bd7 | 1eb855d381b86949f3db55a96d0f8d058ef24b95 | /Classes/Scenes/LevelFinishScene.cpp | e772185f1c34e9aef6343a0023593ab688187388 | [] | no_license | VeremeenkoMaksim/OMG | 69927f99273bbaee634db03a3ee8819c6879e9f5 | e4da10e03d344e17c8c283de3c9fe0fbe93583e7 | refs/heads/master | 2023-02-05T20:28:38.232377 | 2020-12-30T05:47:30 | 2020-12-30T05:47:30 | 302,853,794 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,142 | cpp | #include "LevelFinishScene.h"
#include "MainMenu.h"
#include "Level_1.h"
USING_NS_CC;
Scene* LevelFinish::createScene()
{
return LevelFinish::create();
}
bool LevelFinish::init() {
if (!Scene::init())
{
return false;
}
auto director = cocos2d::Director::getInstance();
auto visibleSi... | [
"xaata3007@mail.ru"
] | xaata3007@mail.ru |
9d912307f72a2279b9b072774d1a3ac671d433c1 | 7e175677f53ca3b121958cfe21542c5eb18773f7 | /nao_behavior_tree/msg_gen/cpp/include/nao_behavior_tree/ROSAction.h | fabf3bd48534a248b93549e8a121e69f49424c84 | [] | no_license | olib26/nao_collaborative_motion | 840a91a85774bb95dd9adf14f50f8e7d56bad632 | 0501bbca16836baa21efbbcc2d0a8ba25277c9d1 | refs/heads/master | 2020-06-04T01:16:52.590075 | 2014-06-16T10:54:08 | 2014-06-16T10:54:08 | 16,542,850 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,720 | h | /* Auto-generated by genmsg_cpp for file /home/olivier/ros_workspace/nao_behavior_tree/msg/ROSAction.msg */
#ifndef NAO_BEHAVIOR_TREE_MESSAGE_ROSACTION_H
#define NAO_BEHAVIOR_TREE_MESSAGE_ROSACTION_H
#include <string>
#include <vector>
#include <map>
#include <ostream>
#include "ros/serialization.h"
#include "ros/built... | [
"olivier@olivier-GT70.(none)"
] | olivier@olivier-GT70.(none) |
f58e813c65d1ad8c5fb068bea127f374d54fef2c | 7a17d90d655482898c6777c101d3ab6578ccc6ba | /SDK/PUBG_ITslMainUMGHUDInitializer_classes.hpp | e50f23d109578ad0ced1116a6f4581b2521839eb | [] | no_license | Chordp/PUBG-SDK | 7625f4a419d5b028f7ff5afa5db49e18fcee5de6 | 1b23c750ec97cb842bf5bc2b827da557e4ff828f | refs/heads/master | 2022-08-25T10:07:15.641579 | 2022-08-14T14:12:48 | 2022-08-14T14:12:48 | 245,409,493 | 17 | 7 | null | null | null | null | UTF-8 | C++ | false | false | 751 | hpp | #pragma once
// PUBG (9.1.5.3) SDK
#ifdef _MSC_VER
#pragma pack(push, 0x8)
#endif
#include "PUBG_ITslMainUMGHUDInitializer_structs.hpp"
namespace SDK
{
//---------------------------------------------------------------------------
//Classes
//-------------------------------------------------------------------------... | [
"1263178881@qq.com"
] | 1263178881@qq.com |
e20b5e6c92e2f98ca348c5fe7d8f37481b86f7e5 | 0cef423396785070fdf410bd096dd378437cb399 | /main.cpp | de41e5fea3294e897c8eab7a5e9c89dd7e65ffab | [] | no_license | unr-f21/cs202-ctor-demo | e6d791bb956c7e4055f42b1e29d839cd0f574a3b | 9313af8f08536afc8fd927ad8b71cd871ccbe6ab | refs/heads/master | 2023-07-18T05:11:39.229526 | 2021-09-07T21:52:32 | 2021-09-07T21:52:32 | 403,800,172 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 238 | cpp | #include <iostream>
#include "cat.h"
int main() {
Cat sarah(10);
Cat tim(1234);
Cat fred = tim;
std::cout << fred.getAge() << std::endl;
std::cout << tim.getAge() << std::endl;
tim.setAge(12);
tim.speak();
} | [
"keithlancaster@unr.edu"
] | keithlancaster@unr.edu |
8a8a7ae7f165892fe3b477697158e99f4ae32408 | 59c93350ae355aae5e377e149d3f427092235536 | /amstong_num.cpp | 34a540a92b84abfb760c113dc72ee16131d39f58 | [] | no_license | Akshatashet123/type_to_code | 4ae0376b9c9d3f53e7b1a73dcc9166bf46acca95 | ea864219f88a214e9b77cd536ec227356c9db128 | refs/heads/master | 2022-12-01T07:09:07.510817 | 2020-08-16T10:12:32 | 2020-08-16T10:12:32 | 287,308,071 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 424 | cpp | #include<stdio.h>
int ams_num(int arr[100],int n);
int main(){
int n,a[100],i;
scanf("%d",&n);
for(i=0;i<=n;i++){
scanf("%d",&a[i]);
ams_num(a,n);
}
return 0;
}
int ams_num(int arr[100],int n)
{
int i,temp,rem,sum;
for(i=0;i<=n;i++){
sum=0;
temp=arr[i];
while(arr[i]!=0){
rem=arr[i]%10;
sum=sum+rem*r... | [
"69043784+Akshatashet123@users.noreply.github.com"
] | 69043784+Akshatashet123@users.noreply.github.com |
3bc540a31e2bed7eebe51788b45b30498e99b5d3 | f506d08f44949f7edcfa9453dfefda3469a36356 | /main.cpp | ee66df840bf859702412508fb8e29d4c7b840e95 | [] | no_license | archi144/VKR | 06fddb421b222dbecdf71ff437381a6db9e05820 | 7ec6a7aca33f162eb61dd33dcc3cacf8c828bff8 | refs/heads/master | 2020-03-28T12:04:00.668833 | 2018-09-24T17:11:04 | 2018-09-24T17:11:04 | 148,267,698 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 196 | cpp | #include "mainwindow.h"
#include <QApplication>
#include <QtWidgets>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}
| [
"mechetin.arthur2013@gmail.com"
] | mechetin.arthur2013@gmail.com |
3f3ed8f582f11e6565ca667b3551c2d210d9f44d | 9e2c39ce4b2a226a6db1f5a5d361dea4b2f02345 | /tools/LePlatz/StatePersister/PlatzWriter.h | f526e18ac9fd45f6c8eecad4ea9c80c79677982f | [] | no_license | gonzalodelgado/uzebox-paul | 38623933e0fb34d7b8638b95b29c4c1d0b922064 | c0fa12be79a3ff6bbe70799f2e8620435ce80a01 | refs/heads/master | 2016-09-05T22:24:29.336414 | 2010-07-19T07:37:17 | 2010-07-19T07:37:17 | 33,088,815 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,497 | h |
/*
* LePlatz - A level editor for the Platz toolset (Uzebox - supports VIDEO_MODE 3)
* Copyright (C) 2009 Paul McPhee
*
* 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 ... | [
"pc.mcphee@gmail.com@08aac7ea-4340-11de-bfec-d9b18e096ff9"
] | pc.mcphee@gmail.com@08aac7ea-4340-11de-bfec-d9b18e096ff9 |
dea0dad628920baa61b70de039a10f6f356313c9 | 01fb828b3e5649a0cbb7da48254d47d37d2f041d | /tools/fractal-ui.cpp | eaf421bf768074d96881c7f261ab78465d84a3ec | [
"Apache-2.0"
] | permissive | renjiawei0401/cpp-test | a06c3abdb6c551dd1807e4ebe17ee85efc7f55fa | 9c4f22e3ec01b222e90e304bf502cc5caaba56fd | refs/heads/master | 2020-07-07T23:15:09.559765 | 2019-08-21T04:00:13 | 2019-08-21T04:00:20 | 203,502,368 | 0 | 0 | Apache-2.0 | 2019-08-21T05:47:52 | 2019-08-21T03:54:59 | C++ | UTF-8 | C++ | false | false | 5,868 | cpp | #include <GLFW/glfw3.h>
#include <fractal/fractal.h>
#include <stdlib.h>
#include <stdio.h>
#include <algorithm>
#include <iostream>
#include <vector>
int main()
{
GLFWwindow* window;
if (!glfwInit())
exit(EXIT_FAILURE);
window = glfwCreateWindow(640, 480, "Fractal UI", NULL, NULL);
if (!wind... | [
"renjiawei@superengine.com.cn"
] | renjiawei@superengine.com.cn |
2ecc986b26df7eb659a347e8b6b62477f01f2c4b | e91e89f5c749f92e7bd6666abe7d1fb214a30e13 | /external/services/phoenix_CC2016_service/src/phoenix_CC2016_service.cpp | b34c412a49bad83ba979a0d689f87fa417e38bee | [] | no_license | Aand1/drive_ros_trajectory_generator | 8e1257594eb43618b6a9d8530d1302ab75069203 | fe52980b9cbcc027d982645b89ce6e05a3f15c09 | refs/heads/master | 2021-01-20T10:00:10.204002 | 2017-07-04T15:52:16 | 2017-07-04T15:52:16 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,829 | cpp | #include "phoenix_CC2016_service/phoenix_CC2016_service.h"
namespace phoenix_CC2016_service {
bool Phoenix_CC2016Service::init() {
//set default values
m_state = RemoteControlState::DISCONNECTED;
m_oldState = RemoteControlState::DISCONNECTED;
m_driveMode = CCDriveMode::IDLE;
m_batteryVoltage = 8;
... | [
"toseban@gmail.com"
] | toseban@gmail.com |
b921f08da18f7a33b97d4d2cc267ad79ded9f16b | 7fcc382873e52f91208345efea4378df3c957f6d | /src/gardner.cc | c0fdb20ebb59c6b68a0a41b4b64f95568e2add6e | [] | no_license | khawatkom/sdranging | f260b52e1a64efd0ba807a4f3ec8949ae1c6afaf | 022446ecc182fb340e414848d9fd5029136909ff | refs/heads/master | 2021-04-12T12:30:22.470053 | 2016-04-11T12:00:20 | 2016-04-11T12:00:20 | 126,244,017 | 1 | 0 | null | 2018-03-21T21:40:53 | 2018-03-21T21:40:53 | null | UTF-8 | C++ | false | false | 1,272 | cc | #include <iostream>
#include <complex>
#include "gardner.h"
Gardner::Gardner(float wn, float zeta, int osf) {
float gain = 1.0/((1.0/M_PI)*osf); // gardner error gain is ~4, loop runs at 1/osf
gardner_osf = osf;
phase_inc = 1.0/osf;
phase_acc = 0;
integrator = 0;
g1 = (1-expf(-2*zeta*wn))/gain;
g2 = (1+expf(-... | [
"stefan@biereigel.de"
] | stefan@biereigel.de |
e1792407a973b17f038977282f8e883a26e37510 | e3f3db9ff6a02b92f130b0cf0afc411dd76e160b | /Crypto/Vigenere.cpp | c13cd3562cadc483f4c3e14b95010874b6035bac | [] | no_license | SamCWill/Crypto | 4f5a494951c943cc41de971783b21be70e4414cf | 72d4efda4995cb78bef91f1ac22b7086e9d71723 | refs/heads/master | 2021-08-28T16:29:15.411213 | 2017-12-12T18:56:57 | 2017-12-12T18:56:57 | 114,027,767 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,705 | cpp | #include "Vigenere.h"
#include "Common.h"
#include <iostream>
#include <cmath>
//encodes by looping through key, adding key character values to plaintext
string vigenere::encode(const string key, const string plaintext)
{
//check input
for(int i = 0; i < plaintext.size(); i++)
if(!isalpha(plaintext[i])... | [
"32207296+SamCWill@users.noreply.github.com"
] | 32207296+SamCWill@users.noreply.github.com |
802131e7b205f1b5196fca674747820f95c6b0c5 | 16fa0c00570948261e7af541cd0b5d7396f609fe | /Server/Professional.cpp | ca124535ea03aae2c6e1a3b8a44f9006e4a960e4 | [] | no_license | theonenottaken/E-commerce-with-Cpp | 12ba3ed1e455d905ec3f81ef705328cd0fe40af2 | 4d814161e778353badcdea27fc973184d2a70c02 | refs/heads/master | 2020-03-25T02:56:27.591354 | 2018-08-13T15:06:07 | 2018-08-13T15:06:07 | 143,314,564 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,598 | cpp |
/*******************************************************************************************
* Student Name: Caleb Shere Benjamin Wexler
* Exercise Name: Targil 5
* File Description: Professional.cpp
*******************************************************************************************/
#include "Professiona... | [
"theonenottaken@gmail.com"
] | theonenottaken@gmail.com |
0810868ee69ba4b868f18b78484f8cba91b127e5 | 6b2a8dd202fdce77c971c412717e305e1caaac51 | /solutions_5709773144064000_0/C++/zuko3d/main.cpp | 9119e57aa54214185f910a17bc3febe147830d65 | [] | no_license | alexandraback/datacollection | 0bc67a9ace00abbc843f4912562f3a064992e0e9 | 076a7bc7693f3abf07bfdbdac838cb4ef65ccfcf | refs/heads/master | 2021-01-24T18:27:24.417992 | 2017-05-23T09:23:38 | 2017-05-23T09:23:38 | 84,313,442 | 2 | 4 | null | null | null | null | UTF-8 | C++ | false | false | 1,128 | cpp | #include <vector>
#include <list>
#include <map>
#include <set>
#include <deque>
#include <queue>
#include <stack>
#include <bitset>
#include <algorithm>
#include <functional>
#include <numeric>
#include <utility>
#include <sstream>
#include <iostream>
#include <fstream>
#include <iomanip>
#include <cst... | [
"eewestman@gmail.com"
] | eewestman@gmail.com |
0267dffaee3b0706f2b37046fe1aa3d90c716637 | 9da63bc07c1b71ecc34db52f16e762cf5dfa9d6f | /dlls/IVI Foundation/IVI/Drivers/wx218x/Source/IWX218xFSK.cpp | f669824a92317b0fd50bc4837294d9665baf5cde | [] | no_license | tomdbar/cold-control | bd9f64a583793aa9ddefc8a1624948c3290d61bc | 4ed8aa46915aa9adf1eada1c6cebfd4778b6f42e | refs/heads/master | 2020-03-27T23:32:09.914576 | 2018-09-07T09:32:09 | 2018-09-07T09:32:09 | 147,326,156 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 20,293 | cpp | /******************************************************************************
*
* Copyright 2010-2012 Tabor Electronics Ltd.
* All rights reserved.
*
*******************************************************************... | [
"t.d.barrett91@gmail.com"
] | t.d.barrett91@gmail.com |
7aa0f6fb5d5859bae58087bc3955c6a86f47605a | 8e2d41f663c8321e066e46888ab4cfcdf8c3df36 | /third_party/libosmium/include/osmium/io/detail/pbf_decoder.hpp | 79e899ff85e753ce597c3a41ea4537e1d6e0e9d5 | [
"BSD-2-Clause",
"BSL-1.0",
"LicenseRef-scancode-unknown-license-reference",
"Apache-2.0"
] | permissive | Mapotempo/osrm-backend | 9023b182fb2f667705f26fd005b4449106302a95 | a62c10321c0a269e218ab4164c4ccd132048f271 | refs/heads/develop | 2021-01-21T16:49:10.480226 | 2015-11-04T05:56:26 | 2015-11-04T05:56:26 | 45,628,367 | 1 | 0 | BSD-2-Clause | 2019-02-04T18:10:37 | 2015-11-05T17:40:13 | C++ | UTF-8 | C++ | false | false | 39,047 | hpp | #ifndef OSMIUM_IO_DETAIL_PBF_DECODER_HPP
#define OSMIUM_IO_DETAIL_PBF_DECODER_HPP
/*
This file is part of Osmium (http://osmcode.org/libosmium).
Copyright 2013-2015 Jochen Topf <jochen@topf.org> and others (see README).
Boost Software License - Version 1.0 - August 17th, 2003
Permission is hereby granted, free of ... | [
"patrick.niklaus@student.kit.edu"
] | patrick.niklaus@student.kit.edu |
f19008d2c731f4354c7adac119aea56be1db36f2 | a5411e0b1108ca85e424e7095009661f36a315b0 | /pauseState.h | da61913d77f64dd2c625c57da92cb9dfb69edbdd | [] | no_license | andras-szabo/project-shmup | de402a4683cdaf2cc03d1864d1985b8380736b50 | 41003a62a74e59695bd35766f2ac125a9d91153b | refs/heads/master | 2020-05-18T15:16:58.238431 | 2014-05-27T09:56:25 | 2014-05-27T09:56:25 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 864 | h | #ifndef __shmup_project__pauseState__
#define __shmup_project__pauseState__
#include "engine.h"
#include "menus.h"
class cPauseState : public cState {
public:
cPauseState(cEngine*);
virtual void init();
virtual void run();
virtual void cleanup();
private:
void reset();
... | [
"andras.szabo.fin@gmail.com"
] | andras.szabo.fin@gmail.com |
b1c2fd8ec9e73efeed20446c99670f27727c2568 | 90c8c45db45431a305a5141b1f97b6233bfda9ab | /src/comp/GraphProfiler.h | fc5b47e214d716d5291cf89cdea18dbcf2d42177 | [
"MIT"
] | permissive | takahiro-itou/rannc | 6a29e13f91ffd481f0f929cdff5b6236fd7d831c | 7322c4a703c70684a1ba0f5832c2590c50fe59ce | refs/heads/main | 2023-09-06T05:54:48.636535 | 2021-11-16T02:55:01 | 2021-11-16T02:55:01 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,968 | h | //
// Created by Masahiro Tanaka on 2019/12/20.
//
#ifndef PYRANNC_GRAPHPROFILER_H
#define PYRANNC_GRAPHPROFILER_H
#include <torch/torch.h>
#include <ostream>
#include "graph/ir.h"
#include "torch/TorchDriver.h"
#include "torch/TorchUtil.h"
namespace rannc {
class ParamStorage;
class FunctionStorage;
struct GraphP... | [
"mtnk@nict.go.jp"
] | mtnk@nict.go.jp |
e8f07a27bffd7636c8d36e710a1852c5073b7d5a | 10f99e68647d37bdbf6a0d8d9eac0f2ad3a744a2 | /OverlordProject/Materials/DiffuseMaterial.cpp | 39829117efc445e15a9b21ee0151d7ec25aa1280 | [] | no_license | kiamvdd/bman | 2d66122286d84a09e274f1bd9195d9da9094363e | 4188a028e33b01fcc4819cae68782dac9dd8b3f1 | refs/heads/master | 2020-05-27T01:46:07.927314 | 2019-05-24T15:42:14 | 2019-05-24T15:42:14 | 188,440,834 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 991 | cpp | #include "stdafx.h"
#include "DiffuseMaterial.h"
#include "Content\ContentManager.h"
#include "Graphics\TextureData.h"
ID3DX11EffectShaderResourceVariable* DiffuseMaterial::m_pDiffuseSRVVariable = nullptr;
DiffuseMaterial::DiffuseMaterial() : Material(L"./Resources/Effects/PosNormTex3D.fx", L"")
{
}
DiffuseMaterial::... | [
"kiamvdd@outlook.com"
] | kiamvdd@outlook.com |
a8c4bbe94d11bd856234a90d573785694dfea6e4 | 1d928c3f90d4a0a9a3919a804597aa0a4aab19a3 | /c++/ClickHouse/2016/4/json_test.cpp | 5fd23546092b35250a2656c76194cb8c1fbd4759 | [] | no_license | rosoareslv/SED99 | d8b2ff5811e7f0ffc59be066a5a0349a92cbb845 | a062c118f12b93172e31e8ca115ce3f871b64461 | refs/heads/main | 2023-02-22T21:59:02.703005 | 2021-01-28T19:40:51 | 2021-01-28T19:40:51 | 306,497,459 | 1 | 1 | null | 2020-11-24T20:56:18 | 2020-10-23T01:18:07 | null | UTF-8 | C++ | false | false | 53,781 | cpp | #define NO_METRIKA
#include <common/Test.h>
#include <vector>
#include <string>
#include <common/JSON.h>
#include <boost/range/irange.hpp>
using namespace std::literals::string_literals;
enum class ResultType
{
Return,
Throw
};
struct GetStringTestRecord
{
std::string input;
ResultType result_type;
std::string... | [
"rodrigosoaresilva@gmail.com"
] | rodrigosoaresilva@gmail.com |
1f59d5d5351c06d94ae9b9ffc0f01262a64990ab | 7c238f3cd10ac54eb1eb827de45c5425dadfc305 | /piston/util/tangle_field.h | 63eb8d2f2e1657e5fef7d703b439508c2796ba44 | [] | no_license | aashish24/PISTON | 8d1d14deed953f29712a4094766c30eef6e27554 | e19f46a18e3ad85098bbefa916a9eda967d5f37d | refs/heads/master | 2021-01-18T04:49:30.802418 | 2012-06-26T21:57:05 | 2012-06-26T21:57:05 | 4,682,422 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,666 | h | /*
Copyright (c) 2011, Los Alamos National Security, LLC
All rights reserved.
Copyright 2011. Los Alamos National Security, LLC. This software was produced under U.S. Government contract DE-AC52-06NA25396 for Los Alamos National Laboratory (LANL),
which is operated by Los Alamos National Security, LLC for the U.S. Depa... | [
"lita.ollie@gmail.com"
] | lita.ollie@gmail.com |
70b94ca3e150974a1f396ddf0d7f6944eda22ce9 | 244725d586cdc7afdb1464d52a38fe62b28ee2f4 | /LearnWindow.cpp | 19ddf8d93757362da3ab77fe288086c0d47bbf71 | [] | no_license | Telamonide/MyWork | cd1fec121f2cf2c5e540a25a9910217ca02cfa8d | 4893829cd081161f9d52892041476a8c5a310114 | refs/heads/master | 2020-12-24T15:57:54.284191 | 2013-09-26T18:50:10 | 2013-09-26T18:50:15 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,284 | cpp | #include "LearnWindow.h"
LearnWindow::LearnWindow(QWidget *parent, QString datafile, QString wintitle) :
QDialog (parent)
{
LearnTextBrows=new QTextBrowser();
QFile LearnFile(datafile);
LearnFile.open(QFile::ReadOnly);
QByteArray data=LearnFile.readAll();
QString str=QString::fromUtf8(data);
... | [
"emepostbox@yandex.ru"
] | emepostbox@yandex.ru |
73e1f387d4304813e83241f55e817736a58e20b9 | 75dbecfa0239d99506362ff0d90ce7127336a1df | /src/code/cpp/day_12.cpp | 2ebb6b564f6aca2338c4abfd04509a2d4980fb48 | [] | no_license | matrasharma06/cp_sheets | ffd38f2bcee2140169b20fa20e46d9ff3c6e18e2 | 5cfa10dbcbdab84ebc8ee574746feb68e59cacf1 | refs/heads/main | 2023-06-03T04:39:44.459888 | 2021-06-20T18:12:09 | 2021-06-20T18:12:09 | 373,229,448 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,431 | cpp | #include <iostream>
#include <vector>
using namespace std;
class Person{
protected:
string firstName;
string lastName;
int id;
public:
Person(string firstName, string lastName, int identification){
this->firstName = firstName;
this->lastName = lastName;
this->id = identification;
}
void printP... | [
"ahampriyanshu@gmail.com"
] | ahampriyanshu@gmail.com |
c7d07698efa31f47446397b87ff114bfa3680abf | 9514c9dc5175ef760870405653798bef9fae3988 | /随机创建教务系统测试数据.cpp | d77dabc65c66522976baa77d646dac9579d23232 | [] | no_license | MaxBin12/Educational_Management_System | f08925822acac5526f673496f1519696e4563a8a | d3abba59aadb8474dbf0052be50c95861afd65ec | refs/heads/master | 2022-02-21T01:12:32.775819 | 2019-09-04T15:50:15 | 2019-09-04T15:50:15 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 126,714 | cpp | #define _CRT_SECURE_NO_WARNINGS
#include<iostream>
#include<string.h>
#include<algorithm>
#include<string>
#include<fstream>
#include<sstream>
#include<math.h>
#include<time.h>
#include <stdlib.h>
#include<Windows.h>
using namespace std;
string to_utf8(const wchar_t* buffer, int len)
{
int nChars = ::WideCharToMul... | [
"2506534280@qq.com"
] | 2506534280@qq.com |
dd2ed53450a72b75241f315f60ec561a37f161f0 | e130899190f8dda7c94c63a03c8f8d48d6b94243 | /HBNet/hbsocketthread.h | 441f1ce883308d8268ea7ad934d8fec9c55e708b | [] | no_license | jiutianhuanpei/IPC_Manager | 521c59799295d0d51e80dabce445a2286008833b | 9562e7bafeacd13c0bf9c1a1e5c6ec258c4937a3 | refs/heads/main | 2023-07-01T16:47:42.514479 | 2021-08-01T09:13:24 | 2021-08-01T09:13:24 | 386,146,145 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 649 | h | #ifndef HBSOCKETTHREAD_H
#define HBSOCKETTHREAD_H
#include <QThread>
#include "HBNet_global.h"
#include <QLocalSocket>
class HBNET_EXPORT HBSocketThread : public QThread
{
Q_OBJECT
public:
explicit HBSocketThread(quintptr socketDescriptor, QObject *parent = nullptr);
QString m_clientId;
... | [
"shenhongbang@163.com"
] | shenhongbang@163.com |
408a0992ecf726d21d6571818572aa5c520832c5 | 063cd9747fce29a213dd595c336d230cac43c061 | /lion/platform/linux.h | e1d04c60920675fd8f362295ccbe0ece54aa429f | [] | no_license | Sunhick/bazel-example | 8a8fda18b5d4d982d20c54f6ada829b97f917094 | dcca6a8020734fdf93db96b582f28d2bddd3b36f | refs/heads/master | 2021-05-06T11:34:10.229036 | 2017-12-30T06:01:51 | 2017-12-30T06:01:51 | 114,298,520 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 204 | h | /**
* linux.h - defines a generic ui elements for linux
*/
#ifndef LINUX_H
#define LINUX_H
#include "platform/ui.h"
class linux : public ui {
public:
void show() override;
};
#endif /* LINUX_H */
| [
"sunhick@gmail.com"
] | sunhick@gmail.com |
22fa010f44d5eb9997cbebf355daf3eef21b1133 | 01a42b69633daf62a2eb3bb70c5b1b6e2639aa5f | /SCUM_Marine_Cap_02_classes.hpp | 050d27ebfc6bf04c29b65c741dd003053c85c333 | [] | no_license | Kehczar/scum_sdk | 45db80e46dac736cc7370912ed671fa77fcb95cf | 8d1770b44321a9d0b277e4029551f39b11f15111 | refs/heads/master | 2022-07-25T10:06:20.892750 | 2020-05-21T11:45:36 | 2020-05-21T11:45:36 | 265,826,541 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 791 | hpp | #pragma once
// Scum 3.79.22573 (UE 4.24)
#ifdef _MSC_VER
#pragma pack(push, 0x8)
#endif
namespace Classes
{
//---------------------------------------------------------------------------
//Classes
//---------------------------------------------------------------------------
// BlueprintGeneratedClass Marine_Cap_02... | [
"65712402+Kehczar@users.noreply.github.com"
] | 65712402+Kehczar@users.noreply.github.com |
1bd30ab304af93692b0d45c74e52caf15a8927ed | d0fb46aecc3b69983e7f6244331a81dff42d9595 | /ccc/src/model/LaunchAuthenticationRequest.cc | 6e7e27b57c40e7deb5ee5171b59966b5ed8541f6 | [
"Apache-2.0"
] | permissive | aliyun/aliyun-openapi-cpp-sdk | 3d8d051d44ad00753a429817dd03957614c0c66a | e862bd03c844bcb7ccaa90571bceaa2802c7f135 | refs/heads/master | 2023-08-29T11:54:00.525102 | 2023-08-29T03:32:48 | 2023-08-29T03:32:48 | 115,379,460 | 104 | 82 | NOASSERTION | 2023-09-14T06:13:33 | 2017-12-26T02:53:27 | C++ | UTF-8 | C++ | false | false | 2,614 | cc | /*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by... | [
"sdk-team@alibabacloud.com"
] | sdk-team@alibabacloud.com |
f060f2d3f9ade54f50867111161ab3084ee2e171 | c376efab8d292c5494b45e380872bc77bdb60ca9 | /ModuleRaiser.h | def0f1c4692fbd823692c25df4178e64f3c3b4d1 | [
"NCSA",
"LicenseRef-scancode-generic-cla"
] | permissive | NatielleGoncalves/llvm-mctoll | b03b67ec19e5a58bc02ff53d11569367d603b412 | 554cc2a58f9d6aa3a0e79ad47132be23a7315417 | refs/heads/master | 2020-04-02T04:58:41.088677 | 2018-10-21T21:30:48 | 2018-10-21T21:30:48 | 154,045,937 | 0 | 0 | NOASSERTION | 2018-10-21T19:45:43 | 2018-10-21T19:45:43 | null | UTF-8 | C++ | false | false | 5,857 | h | //===-- ModuleRaiser.h - Object file dumping utility for llvm -------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===-------------------------------------------------------... | [
"aaron.smith@microsoft.com"
] | aaron.smith@microsoft.com |
adb22ffec26cf56cada2bff76fd100d06f07bbf5 | ea019377398f18f8fa4341448a09e49c1975e7ea | /Assignments/FractalSphereCoolness/Engine/Vec2.h | fe264b7e98c206fa4dbcc6ee4f406eaf30a82a43 | [] | no_license | jlfurtado/Neumont-GAT420-AI | 4bf6040a1b6af172062a02b1783e608b787d3f44 | e272feabe6d8b4ff5eb8bac460b305117f0d2a10 | refs/heads/master | 2021-09-26T06:26:30.797705 | 2018-07-22T20:04:01 | 2018-07-22T20:04:01 | 141,926,726 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,998 | h | #ifndef VEC2_H
#define VEC2_H
#include "ExportHeader.h"
#include "GameLogger.h"
#include <cmath>
// Justin Furtado
// 10/12/2016
// Vec2.h
// Vector of two floats for game math
namespace Engine
{
class ENGINE_SHARED Vec2
{
public:
Vec2()
: m_values{ 0.0f, 0.0f }
{
}
Vec2(float v)
: m_values{ v, v ... | [
"justin.l.furtado@gmail.com"
] | justin.l.furtado@gmail.com |
6be68241d39ed491903e9a8f4827298a28b1ae50 | 254eb8072168d9a27c897daa258b7f880ca2137a | /Tengai_Sengoku_Blade/Code/ModulePowerUPS.h | 905239462c84f5a5339b5826f48de87e6105e6b5 | [] | no_license | GerardClotet/Project1 | 3e07b9fa5f92f338107c118e9598260d2b61578c | 4d4f77918076ccc9bed6888329d994e22ba25eee | refs/heads/master | 2020-08-11T06:22:43.199249 | 2018-06-04T05:51:01 | 2018-06-04T05:51:01 | 214,507,381 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 914 | h | #ifndef __MODULEPOWERUPS_H__
#define __MODULEPOWERUPS_H__
#include "Module.h"
#include"ModuleCollision.h"
#define MAX_POWERUPS 20
enum pu_type
{
Blue,
Red
};
struct PowerUP
{
bool enabled;
Animation anim;
iPoint position;
pu_type type;
int h, w = 0;
Collider* collider = nullptr;
PowerUP();
PowerUP(const... | [
"wolfsea.yt@gmail.com"
] | wolfsea.yt@gmail.com |
d96798c2e89478ffd6d1e15cd0755daf5c6ae941 | 91938addb953d742f1f7c4abd1dd566fb40cb7a1 | /BMEarth.framework/PrivateHeaders/BmTool.hpp | 055d085e298bf583cb57405ede820ab2b4de477a | [
"MIT"
] | permissive | showzh20/BMEarthSDK | 984196b5a5845c993ab166e469ca591a1e73a60f | 83250d63ebb870f548387f32cbe1d38fc8735219 | refs/heads/main | 2023-09-01T14:12:14.884577 | 2021-10-15T08:21:13 | 2021-10-15T08:21:13 | 416,553,785 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,087 | hpp | //
// BmTool.hpp
// BigeEarth
//
// Created by HerryBabaer on 2020/12/30.
// Copyright © 2020 赵洪. All rights reserved.
//
#ifndef BmTool_hpp
#define BmTool_hpp
#include <string>
#include <vector>
#include <osgEarthSymbology/Color>
class BmTool {
public:
BmTool();
static std::vector<std::string> Bmsplite(... | [
"413043424@qq.com"
] | 413043424@qq.com |
0223819fe7dc713f3ed3840787d7b4193f65acf3 | 23ec33e86adfe96a0d49a88e91f880b2154b2c9b | /UVa/507.cpp | d535d85e18a8b9d15a054bf899dcf3b6b669fc2b | [] | no_license | ck89119/Algorithm | 88ee13e267406f8531b8625fbd2c20c807f535d4 | 94d39795706f07a8240b610927e709978a2ff5d6 | refs/heads/master | 2023-09-01T06:35:09.132142 | 2023-08-29T01:27:47 | 2023-08-29T01:27:47 | 30,058,525 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,507 | cpp | #include <bits/stdc++.h>
using namespace std;
#define dump(x) cerr << __LINE__ << " : "<< #x << " = " << (x) << endl
#define clr(a, x) memset(a, x, sizeof(a)) //0:0, -1:-1, INF:0x3f, -INF:0xc0
#define mp(a, b) make_pair(a, b)
#define pb(a) push_back(a)
#define lson l, m, rt << 1
#define rson m + 1, r, rt << 1 | 1
#... | [
"ck89119@gmail.com"
] | ck89119@gmail.com |
a21d577e53e85033a099511a2ca52f85ae67213f | 55c6327fda075c95068163bcedbb67baca01c107 | /test_suite/src/jsoncons_test.cpp | 316a1a3f285ddbaa210ee4c3a4854ebe703939a6 | [
"BSL-1.0"
] | permissive | avermaprimod/jsoncons | b460329bb9eea58d0e66d7a21bd70bd858dfdbe4 | 6e098fa506638733e520d54349ec339dc5339529 | refs/heads/master | 2021-01-14T14:02:12.583938 | 2013-11-22T06:32:22 | 2013-11-22T06:32:22 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 14,323 | cpp | // Copyright 2013 Daniel Parker
// Distributed under Boost license
#define BOOST_TEST_MAIN
#include <boost/test/unit_test.hpp>
#include "jsoncons/json.hpp"
#include "jsoncons/json_serializer.hpp"
#include "jsoncons/json_filter.hpp"
#include <sstream>
#include <vector>
#include <utility>
#include <ctime>
#include "my_c... | [
"danielaparker@yahoo.com"
] | danielaparker@yahoo.com |
bddbb6bcbf793f6482d03e9751abef165229d9ac | 31da22df170668fbade2d4f263626ff5e4059267 | /src/main.cpp | 4fc7bb94a16d0e4c4051c031573b9bb08b31b74c | [] | no_license | aman11dhanpat/Bulk-Image-Resizer | 241339a177903bd9a4b4de7fa2bee917c3efa969 | 65999b21b97c4e335f1a0cc842536efb2ad4b6ba | refs/heads/master | 2021-01-18T17:42:28.121906 | 2013-02-24T08:48:07 | 2013-02-24T08:48:07 | 69,609,569 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 474 | cpp | #include <iostream>
#include <vector>
#include <string>
#include <cstdlib>
#include <cstdio>
#include "process_io.h"
#include "img_proc.h"
using namespace std;
int main(int argc, char *argv[])
{
int ctr = 0;
process_io io ( argc , argv );
img_proc pic ( io.height , io.width, io.percent );
for ( int i = 0; i < io.... | [
"aman11dhanpat@gmail.com"
] | aman11dhanpat@gmail.com |
24828c754234d200c6ab5eca8c7dedf9ffb9fb6f | b68a75da80cd6cc81e3d2de3412a91e8aeb5807c | /material.h | b6a5937b43955072a978b69a5b6b7dce99b5068e | [] | no_license | tobiashaist/traceopen | 891bbf7d7bf29e63a80e34aae64d0c1489ba5737 | 140fefe0f6ed1e8efba5a98ee94b2950b9d65024 | refs/heads/master | 2021-01-20T01:23:27.285143 | 2017-07-24T07:42:17 | 2017-07-24T07:42:17 | 89,269,401 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,977 | h | ////////////////////////////////////////////////////////////
/// \file material.h
/// \brief include file for class Material
/// \date 07.04.2017
/// \author Tobias Haist (haist@ito.uni-stuttgart.de)
/// Institute of Applied Optics, University of Stuttgart ITO
/// Paffenwaldring 9
/// 70569 Stuttgart
/// German... | [
"haist@ito.uni-stuttgart.de"
] | haist@ito.uni-stuttgart.de |
f2bd650b264d0759749e5901f78f71681da1cb2d | 93832b1ca938dd966798c7f0faaa7d83fb7f28b6 | /TinyWing/Classes/HelloWorldScene.cpp | a0fc4343207b531ffdfb414ceea427ac9f0e8590 | [] | no_license | brucelevis/cocos2dx-dev | 57b01bdf6c5ac093f1d2a99615efa51ed7014533 | 7d891f1cb1936fd783a68c95c8830fdccf46d249 | refs/heads/master | 2021-01-14T13:06:14.969624 | 2015-04-25T16:04:13 | 2015-04-25T16:04:13 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,475 | cpp | //
// HelloWorldScene.cpp
// twxes10
//
// Created by diwwu on 5/16/12.
// Copyright __MyCompanyName__ 2012. All rights reserved.
//
#include "HelloWorldScene.h"
#include "SimpleAudioEngine.h"
using namespace cocos2d;
using namespace CocosDenshion;
#define PTM_RATIO 32
enum
{
kTagTileMap = 1,
kTagSpriteManager... | [
"pdpdds@9eae94da-17f8-0410-9712-9035c0ba4dfd"
] | pdpdds@9eae94da-17f8-0410-9712-9035c0ba4dfd |
b3822be175bf68db4a6bde967dc31e026bc03c3f | 85a551bf91551a73ec0093bbf8d2849848f02666 | /Engine KB-01/Engine KB-01/InputHandlerInterface.cpp | ddc8ab5120ce4143aeff0d1f84704570e24e2b50 | [] | no_license | gamer145/KB01 | 2b99c8a2b4754f6ec3a2bd3b9c349111ee73ab8a | 2bc53d884703eca08a3b9983e7edcc6d8a047cb4 | refs/heads/master | 2021-01-01T06:51:09.311939 | 2016-12-23T15:26:15 | 2016-12-23T15:26:15 | 24,053,152 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 142 | cpp | #include "InputHandlerInterface.h"
InputHandlerInterface::InputHandlerInterface()
{
}
InputHandlerInterface::~InputHandlerInterface()
{
}
| [
"dv.kramer@gmail.com"
] | dv.kramer@gmail.com |
51d893c2a918d6b353fa8f89a4683493e2b30681 | 306232bfafeb2b88e353c4ffa7fd9946654b15d8 | /BallPhysics/Solvers/UniformGridSolver.cpp | b8ce0690f36c3bfc20a4cd8fa9431442cad95ded | [
"Zlib"
] | permissive | Aloalo/Trayc | 35b9f1161e64d84e1ac35df0f03b46422af2b9a5 | 048e36934b1b4dc87449feaf6f89b0161b2d08af | refs/heads/master | 2020-04-12T02:22:36.696046 | 2019-06-01T11:38:09 | 2019-06-01T11:38:09 | 26,697,097 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,196 | cpp | /*
* Copyright (c) 2014 Jure Ratkovic
*/
#include "UniformGridSolver.h"
#include <thread>
#include <cmath>
using namespace glm;
using namespace std;
UniformGridSolver::UniformGridSolver(const SimulationParams &simParams)
: PhysicsSolver(simParams), mUnformGrid(simParams.mCubeSize, simParams.mBallRadius),
mCe... | [
"ratkovic.jure@gmail.com"
] | ratkovic.jure@gmail.com |
be8824a3dd661845f5b3fcf8ef40bce44d5305b6 | 761d2300072f89210f2af454a9ba64a842cdcde3 | /lab_1.cpp | 8c1e016aded8e6586e347b731ed6931c25cba8f1 | [] | no_license | DominikOziom/zadanie_nr_2 | 1672a361eb76b34bda2a15fa1dfcd0121c6e7505 | bd7a04214a4e60b7475db8bb3c2c29d8107f94d0 | refs/heads/master | 2020-05-17T03:55:31.062890 | 2014-03-25T02:25:28 | 2014-03-25T02:25:28 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,566 | cpp | #include <iostream>
#include <string>
#include "tablica.h"
using namespace std;
/*!
*\brief
* funkcja main() zawierajaca menu uzytkownika. Przy wywolaniu prosi
* o wybor odpowiedniej opcji, w wyniku ktorej wykonuje operacje na obiekcie
* tablicy dynamicznej. Uzywa funkcji zawartych w pliku tablica.h
*/
int main... | [
"dooz@poczta.onet.pl"
] | dooz@poczta.onet.pl |
d76090f0c3ef1bfcb9f461cc3cddee90d733a560 | cc7661edca4d5fb2fc226bd6605a533f50a2fb63 | /UnityEngine/SendMouseEvents.h | 3cc844761cc35eec7002307819515b03192da874 | [
"MIT"
] | permissive | g91/Rust-C-SDK | 698e5b573285d5793250099b59f5453c3c4599eb | d1cce1133191263cba5583c43a8d42d8d65c21b0 | refs/heads/master | 2020-03-27T05:49:01.747456 | 2017-08-23T09:07:35 | 2017-08-23T09:07:35 | 146,053,940 | 1 | 0 | null | 2018-08-25T01:13:44 | 2018-08-25T01:13:44 | null | UTF-8 | C++ | false | false | 116 | h | #pragma once
namespace UnityEngine
{
class SendMouseEvents : public Object // 0x0
{
public:
}; // size = 0x0
}
| [
"info@cvm-solutions.co.uk"
] | info@cvm-solutions.co.uk |
225b821701f172d4c83808e944cae89bce229a84 | f739df1f252d7c961ed881be3b8babaf62ff4170 | /softs/SCADAsoft/5.3.2/ACE_Wrappers/ace/Dirent_Selector.cpp | 36072bfd66b828d04d1a1416d7be020d51ce38e4 | [] | no_license | billpwchan/SCADA-nsl | 739484691c95181b262041daa90669d108c54234 | 1287edcd38b2685a675f1261884f1035f7f288db | refs/heads/master | 2023-04-30T09:15:49.104944 | 2021-01-10T21:53:10 | 2021-01-10T21:53:10 | 328,486,982 | 0 | 0 | null | 2023-04-22T07:10:56 | 2021-01-10T21:53:19 | C++ | UTF-8 | C++ | false | false | 1,312 | cpp | // $Id: Dirent_Selector.cpp 14 2007-02-01 15:49:12Z mitza $
#include "ace/Dirent_Selector.h"
#if !defined (__ACE_INLINE__)
#include "ace/Dirent_Selector.inl"
#endif /* __ACE_INLINE__ */
#include "ace/OS_NS_dirent.h"
#include "ace/OS_NS_stdlib.h"
ACE_RCSID (ace,
Dirent_Selector,
"$Id: Dirent_Se... | [
"billpwchan@hotmail.com"
] | billpwchan@hotmail.com |
9e2edb8356d72e969389dfcfedfdda0a57b90b16 | d1c24f4b5a7270fc9e06345658ddd78b2e8f9263 | /src/DebugOverlay.cpp | 38372e380da445067a304ac46d97519a1d7b4dc4 | [
"MIT"
] | permissive | kondrak/vk_playground | ef26e72bde618557106da96a08fb5b2be74f2742 | 9cadf4ec445fd607728026653a8092b8e78efb1b | refs/heads/master | 2020-03-08T00:12:42.516679 | 2019-04-08T17:31:51 | 2019-04-08T17:31:51 | 127,800,798 | 0 | 0 | MIT | 2018-08-10T16:57:56 | 2018-04-02T19:12:49 | C++ | UTF-8 | C++ | false | false | 440 | cpp | #include "DebugOverlay.hpp"
void DebugOverlay::OnUpdate( float dt )
{
if( m_debugFlags & DEBUG_SHOW_FPS )
m_text.OnFrameStart(dt);
}
void DebugOverlay::OnRender()
{
if (m_debugFlags & DEBUG_SHOW_FPS)
{
m_text.OnRender();
}
}
void DebugOverlay::OnKeyPress( KeyCode key )
{
switch( k... | [
"krzysztof.kondrak@gmail.com"
] | krzysztof.kondrak@gmail.com |
945971408940b8cca9e2a3c4931b4405e7c821d6 | bd0f9f9e7d0256dcad2b618c4443f62b5484bf73 | /src/MyPlugins/EventUtils.cpp | 3bd74dfd9fec60aa393a0281565f6b5da908d7dc | [] | no_license | ufft47/QingfengCalendar | 694a1be2a4b049dd02b7538dcf6a047e5a68657a | f0f485b23ced31acbbed1108d764dab234e7ac0a | refs/heads/master | 2021-05-31T08:57:37.283136 | 2015-10-14T14:46:30 | 2015-10-14T14:46:30 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 917 | cpp | #include "EventUtils.h"
#include <QDateTime>
#include <QLocale>
namespace {
static const int daysInAWeek = 7;
/*
Not the number of weeks per month, but the number of weeks that are
shown on a typical calendar.
*/
static const int weeksOnACalendarMonth = 6;
/*
The amount of... | [
"qidaizhe11@gmail.com"
] | qidaizhe11@gmail.com |
16e43249ccf85d714f6607a96d66468ef11d324f | d8e7a11322f6d1b514c85b0c713bacca8f743ff5 | /7.6.00.37/V76_00_37/MaxDB_ORG/sys/src/SAPDB/Logging/Log_ActionFile.hpp | 960b2ad820fa8a92d35e5c5f2ea79fce531f7992 | [] | no_license | zhaonaiy/MaxDB_GPL_Releases | a224f86c0edf76e935d8951d1dd32f5376c04153 | 15821507c20bd1cd251cf4e7c60610ac9cabc06d | refs/heads/master | 2022-11-08T21:14:22.774394 | 2020-07-07T00:52:44 | 2020-07-07T00:52:44 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,429 | hpp | /*!
@file Log_ActionFile.hpp
@author UweH
@ingroup ActionHandling
@brief handle operations on one file using the new file directory
\if EMIT_LICENCE
========== licence begin GPL
Copyright (c) 2000-2005 SAP AG
This program is free software; you can redistribu... | [
"gunter.mueller@gmail.com"
] | gunter.mueller@gmail.com |
b9898c7d211ceb01f94b51d55f22724ed7a6498d | 2f373ec819543c8b1da881610380990deafd0f07 | /src/base58.h | 3e564deb869f6901606c2f78196e7a4184ef6447 | [
"MIT"
] | permissive | rooblcoin/BARIUM | 6777883e9eaab0d7b65ffed8829c568c545c16e0 | 2fe97338ed1a7486270275a29d4bd18fe88213fa | refs/heads/master | 2020-03-06T18:59:40.290145 | 2018-03-27T17:00:14 | 2018-03-27T17:00:14 | 126,578,712 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 13,011 | h | // Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2012 The Bitcoin Developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
//
// Why base-58 instead of standard base-64 encoding?
// - Don't want 0OIl char... | [
"vfrcbv@debian.vfrcbv.org"
] | vfrcbv@debian.vfrcbv.org |
8289df84cdc0f6430f77c8f70729bca4d83c1aab | 15333f1086b15ff64ccc4a66764dea63aa94ca85 | /test/tests.cpp | 089684f2361aea1ea94fab8c82d95f17923bbaee | [] | no_license | agdt3/cpprt_old | d7b83b467760229890f35eec28e9ddb08bfaf99b | 15f8a412a6180121ce0e0cad7f3291a80bf4c930 | refs/heads/master | 2021-01-19T23:03:07.306869 | 2017-04-20T22:22:38 | 2017-04-20T22:22:38 | 88,916,317 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 113 | cpp | #include "test.h"
void RTTest::test_ray_pixel_conversion(){
}
void RTTest::test_sphere_intersection(){
}
| [
"pavel.a@aol.com"
] | pavel.a@aol.com |
b7db7e10859cf28b3cec7b010f34fc919ca08df7 | 696e35ccdf167c3f6b1a7f5458406d3bb81987c9 | /media/gpu/vaapi/vaapi_jpeg_decode_accelerator.cc | ed242eedbb2a678e90dd9e67797867f392773bf7 | [
"BSD-3-Clause"
] | permissive | mgh3326/iridium-browser | 064e91a5e37f4e8501ea971483bd1c76297261c3 | e7de6a434d2659f02e94917be364a904a442d2d0 | refs/heads/master | 2023-03-30T16:18:27.391772 | 2019-04-24T02:14:32 | 2019-04-24T02:14:32 | 183,128,065 | 0 | 0 | BSD-3-Clause | 2019-11-30T06:06:02 | 2019-04-24T02:04:51 | null | UTF-8 | C++ | false | false | 21,709 | 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 "media/gpu/vaapi/vaapi_jpeg_decode_accelerator.h"
#include <stddef.h>
#include <string.h>
#include <memory>
#include <utility>
#include <va/va... | [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
ee33ee326cd42e0c249a1f02b8df979db96b20a3 | fd0585bfd133bef878d954b14a61fbf9fc6697f5 | /ManualThrottle_0.2/ManualThrottle_0.2.ino | 90bb01523545114ff8ad3cc208ab6063f2fc64e5 | [] | no_license | graysontwigg/CC_100 | a3ffb57bd3b55b38aa5ac32b8d7aeae1e10368aa | 90fed4f400b36393b334f80bfdf0baa16b24951a | refs/heads/master | 2021-01-17T18:50:34.739953 | 2016-08-10T19:13:58 | 2016-08-10T19:13:58 | 65,173,673 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,755 | ino | /*
* This program is used as a simple hand throttle for a 1984 VW Jetta GLI as a stepping point for full PID control
*
* GRAYSON TWIGG
* 08/08/2016
*
* The control scheme is as follows:
* A servo is controlled via PWM(1000us to 2000us pulsewidth with 20ms period) to operate the throttle.
* The user flips a s... | [
"grayson.twigg@gmail.com"
] | grayson.twigg@gmail.com |
5989432b73f5a30c93384f8615e5dad444a990fe | a2e04e4eac1cf93bb4c1d429e266197152536a87 | /Cpp/SDK/ESailAnimationType_structs.h | 70e0c68e85546bc6d3b18719620da508eebf628c | [] | no_license | zH4x-SDK/zSoT-SDK | 83a4b9fcdf628637613197cf644b7f4d101bb0cb | 61af221bee23701a5df5f60091f96f2cf929846e | refs/heads/main | 2023-07-16T18:23:41.914014 | 2021-08-27T15:44:23 | 2021-08-27T15:44:23 | 400,555,804 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 636 | h | #pragma once
// Name: SoT, Version: 2.2.1.1
/*!!DEFINE!!*/
/*!!HELPER_DEF!!*/
/*!!HELPER_INC!!*/
#ifdef _MSC_VER
#pragma pack(push, 0x01)
#endif
namespace CG
{
//---------------------------------------------------------------------------
// Enums
//--------------------------------------------------------------... | [
"zp2kshield@gmail.com"
] | zp2kshield@gmail.com |
aeeb584be1a27e5eb0d4ba6e4ba60140732252de | 166729f27064d7565dac923450bd41c2fe6eb7a4 | /logdevice/common/membership/MembershipCodecFlatBuffers.h | 6fb73be3c60aba14460eb9683b34b37f3c9e9230 | [
"BSD-3-Clause"
] | permissive | abhishekg785/LogDevice | 742e7bd6bf3177056774346c8095b43a7fe82c79 | 060da71ef84b61f3371115ed352a7ee7b07ba9e2 | refs/heads/master | 2020-04-17T05:26:15.201210 | 2019-01-17T14:18:09 | 2019-01-17T14:23:57 | 166,278,849 | 1 | 0 | NOASSERTION | 2019-01-17T18:53:23 | 2019-01-17T18:53:22 | null | UTF-8 | C++ | false | false | 1,786 | h | /**
* Copyright (c) 2017-present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree.
*/
#pragma once
#include "logdevice/common/membership/Membership.h"
#include "logdevice/common/membership/Mem... | [
"facebook-github-bot@users.noreply.github.com"
] | facebook-github-bot@users.noreply.github.com |
b515abaf5d1aa01825101e70a2b550bb4c09d7c5 | f6aadcdfe202916b3e147df61962d10ea7edf15f | /src/rpi/rpi_hardware/RpiHardwareEncoder.cpp | 066060bab8b63b5e256614862844bac05ad93aff | [] | no_license | sdaujohnfan/summarization | 2e6f1d73478ec64975f63d24a5138baf50169e3a | ee72045028b7c7d562dae68cbed26c0839f9aeda | refs/heads/master | 2020-06-17T17:27:34.139651 | 2015-04-21T07:23:57 | 2015-04-21T07:23:57 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,703 | cpp | #include "rpi/rpi_hardware/RpiHardwareEncoder.h"
#include <string>
using std::string;
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <fcntl.h>
extern "C" {
#include "bcm_host.h"
#include "ilclient.h"
}
static void
print_def(OMX_PARAM_PORTDEFINITIONTYPE def)
{
printf("Port %u: %s %u/%u %u %u ... | [
"occqoo@gmail.com"
] | occqoo@gmail.com |
6b60499fe6417ca0d105b35d3d787ff15db50f56 | 17478d9298936093c31dc16c356fdbf5a9e5dd7f | /online-judge-solutions/Codeforces/373A.cpp | b49b2ce29ccc7bd08949ffae7816e2440b9115b5 | [] | no_license | lilberick/Competitive-programming | 5b381aa7cd7736e1040974cde302d0d50521fc9d | c0b160e4abbd2c6d459604b60b8fef5d97d8d576 | refs/heads/master | 2023-04-02T13:30:21.143442 | 2023-03-22T14:52:43 | 2023-03-22T14:52:43 | 137,540,270 | 2 | 1 | null | 2018-10-04T06:13:11 | 2018-06-15T23:39:21 | null | UTF-8 | C++ | false | false | 393 | cpp | //https://codeforces.com/problemset/problem/373/A
//Lang : GNU C++14
//Time : 15 ms
//Memory : 0 KB
#include<iostream>
#include<map>
using namespace std;
int main(){
int k;
while(cin>>k){
int n=16;
char x;
bool b=true;
map<int,int> m;
while(n--){
cin>>x;
if(x-'0'>=0 && x-'0'<=9) m[x-'0']++;
if(m[... | [
"lilberick@gmail.com"
] | lilberick@gmail.com |
fcc2cce1a837278572d443091b7f927f2d53ccfa | 9871fa4d1cbe596c881c75593da320c5b3949d94 | /libraries/chain/include/graphene/chain/protocol/fund_ops.hpp | ad9096541b83f9aa8b65f4f4f34884b381312bae | [
"MIT"
] | permissive | crashoveride1/blockchain | 8856041619d98a83657bcbce94c1bb3a976db8f3 | fc854cec6e449614b1fade1a89d9868361e39f37 | refs/heads/master | 2020-09-05T14:58:18.360544 | 2019-07-26T11:37:03 | 2019-07-26T11:37:03 | 220,138,142 | 1 | 0 | MIT | 2019-11-07T02:53:10 | 2019-11-07T02:53:08 | null | UTF-8 | C++ | false | false | 10,224 | hpp | #pragma once
#include <graphene/chain/protocol/referral_classes.hpp>
#include <graphene/chain/protocol/ext.hpp>
namespace graphene { namespace chain {
struct fund_options
{
struct payment_rate
{
// deposit period
uint32_t period = 0;
// percent for whole period
u... | [
"info@blockchain.mn"
] | info@blockchain.mn |
5d113913ec7124e9296155e01dd5f1a96b14ec83 | 1bfd698b2c1f5760734dc42632fe54c65a286086 | /IfcPlusPlus/src/ifcpp/IFC4/IfcMaterialConstituentSet.cpp | aec02bb40034064b183a59ffbf023836a5f880b6 | [] | no_license | wartburgritter0/old_IfcPlusPlus | c0bd0b784396c100d0d96fc7af6146a0325a9e1b | d0f9d81462b295990d3eb83c9c406d520840330e | refs/heads/master | 2021-05-27T21:54:14.456425 | 2014-06-03T21:23:14 | 2014-06-03T21:23:14 | 19,681,159 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,854 | cpp | /* -*-c++-*- IfcPlusPlus - www.ifcplusplus.com - Copyright (C) 2011 Fabian Gerold
*
* This library is open source and may be redistributed and/or modified under
* the terms of the OpenSceneGraph Public License (OSGPL) version 0.0 or
* (at your option) any later version. The full license is in LICENSE file
* in... | [
"fabian.gerold@gmail.com@06f6d6f3-f2e0-f239-6e86-ba6a5d17d3a5"
] | fabian.gerold@gmail.com@06f6d6f3-f2e0-f239-6e86-ba6a5d17d3a5 |
88f4a0add7e3995bcd8613811931eacc94db0d36 | 27226e0e4267966042ff12d848e85564a2be970c | /Functions/Task 3.cpp | 49eb1de18ea1a5b1ed463602e78a6087aef209da | [] | no_license | darinadailova/Uni-Introduction-to-Programming | 076c0e24c9c40bc5a2d184bd631d0529c189eace | 8c47b33fbd3cf6c53422339535f19decfeb5bded | refs/heads/main | 2023-04-10T14:10:53.699968 | 2021-04-24T13:23:30 | 2021-04-24T13:23:30 | 310,682,451 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 163 | cpp | #include<iostream>
int min(int a, int b) {
return ((a < b) ? (a) : (b));
}
int main() {
int a, b;
std::cin >> a >> b;
std::cout << min(a, b);
return 0;
}
| [
"darinadailova@gmail.com"
] | darinadailova@gmail.com |
a033a2b31654aba332d5903756989f436aba4ca5 | b37a8d8b0648bdfe192336f057affece6e12fd25 | /Code/arm9/source/Levels.cpp | 42d8a0c3df46535f710fe49d983720ec768e5785 | [] | no_license | jamesmp/epq | 326f68ce2472d418e2262e2b4a88b9b674cb68c7 | 8ec73c3132cb87a226ad7918bd78d33e7ceb64bf | refs/heads/master | 2021-01-10T22:00:16.116024 | 2013-12-08T16:39:25 | 2013-12-08T16:39:25 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,386 | cpp | #include "Levels.h"
#include "LevelMainMenu.h"
#include "LevelMainMenuBind.h"
#include "LevelTest.h"
#include "LevelTestBind.h"
#include "Level2.h"
#include "Level2Bind.h"
#include "Level3.h"
#include "Level3Bind.h"
#include "Level4.h"
#include "Level4Bind.h"
#include "Level5.h"
#include "Level5Bind.h"
#include "Level6... | [
"jamesp.mp@gmail.com"
] | jamesp.mp@gmail.com |
08da83fcd6dd1ae6f8beee7c6ae830937c6a8c4e | f3a52a8832519729d65c5c3c436db2000217703c | /Source/FSD/Public/GetFriendsListBlueprintCallProxy.h | 76679b2e194405d74c7fd12ffb7f68f28e989808 | [] | no_license | NicolasAubinet/virtual-rock-galactic | 50be56c6548cfd44b3187cb41e4e03847b2093e7 | e82ce900f1f88c7db0abdb1d69c2de31650ca628 | refs/heads/main | 2023-07-22T08:04:59.552029 | 2023-07-15T08:16:22 | 2023-07-15T08:16:22 | 425,605,229 | 22 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 1,064 | h | #pragma once
#include "CoreMinimal.h"
#include "BlueprintGetFriendsListDelegateDelegate.h"
#include "Net/OnlineBlueprintCallProxyBase.h"
#include "GetFriendsListBlueprintCallProxy.generated.h"
class UObject;
class UGetFriendsListBlueprintCallProxy;
UCLASS(Blueprintable)
class UGetFriendsListBlueprintCallProxy : publi... | [
"n.aubinet@gmail.com"
] | n.aubinet@gmail.com |
9bbb9999061b3db03be30dcd3c7d1a40edc119bd | 5f975169aeb67c7cd0a08683e6b9eee253f84183 | /algorithms/medium/0967. Numbers With Same Consecutive Differences.h | 43d4ac70e161b6576f449c345f1c4eebd527832d | [
"MIT"
] | permissive | MultivacX/leetcode2020 | 6b743ffb0d731eea436d203ccb221be14f2346d3 | 83bfd675052de169ae9612d88378a704c80a50f1 | refs/heads/master | 2023-03-17T23:19:45.996836 | 2023-03-16T07:54:45 | 2023-03-16T07:54:45 | 231,091,990 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,009 | h | // 967. Numbers With Same Consecutive Differences
// Runtime: 8 ms, faster than 50.96% of C++ online submissions for Numbers With Same Consecutive Differences.
// Memory Usage: 7.6 MB, less than 100.00% of C++ online submissions for Numbers With Same Consecutive Differences.
class Solution {
public:
vector<int> n... | [
"MultivacX@2020.china"
] | MultivacX@2020.china |
ccedfbd408667a73dd800f9de537145de6a4108d | 7f50f34c880d45563dbcd314037f553eab45747e | /grad.cpp | b6440bd94a08b61a9c404cf690583a63dd978759 | [] | no_license | Telzhanov/acm_fall_2 | e7c6f3e84027287fd5c0ad5f6774df6f8362d354 | 4d55efb90907b57c5b666be0e59bf3c72431b6ea | refs/heads/master | 2021-08-23T10:56:03.689957 | 2017-12-04T15:59:19 | 2017-12-04T15:59:19 | 113,063,453 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 939 | cpp | #include <iostream>
using namespace std;
char a[300][300];
bool used[300][300];
int n;
int m;
int counter=0;
void check(int x,int y){
if (a[x][y+1]=='#' && used[x][y+1]==false && (x>0 && x<=n) && (y>0 &&y<=m) ){
used[x][y+1]=true;
check(x,y+1);
}
if (a[x+1][y]=='#' && used[x+1][y]==false && (x>0 && x<=n) && (y>0... | [
"askhat491@gmail.com"
] | askhat491@gmail.com |
491a6ac7e0deb92d3227e148ec1a75fb969db7ba | 82babd2941457c205985ed7d17c5e510686ec890 | /build-ToDoList-Desktop_Qt_5_15_2_MinGW_64_bit-Debug/ui_mainwindow.h | 5c34c0f29043b2fcdaf6e23691d5d093572a9168 | [] | no_license | Francois-BONNIN/Coaching-Life-CPP | d34c5727544cd262f4f6a8d2e84e413c591b128a | 37d5039a1a740a12e58185fd0a28184717795cdd | refs/heads/main | 2023-05-14T13:01:30.331024 | 2021-05-30T21:54:10 | 2021-05-30T21:54:10 | 372,306,757 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 23,254 | h | /********************************************************************************
** Form generated from reading UI file 'mainwindow.ui'
**
** Created by: Qt User Interface Compiler version 5.15.2
**
** WARNING! All changes made in this file will be lost when recompiling UI file!
***************************************... | [
"292497@supinfo.com"
] | 292497@supinfo.com |
cfeb1d74ccf5510d1920c07a958b7ef1f66ad09b | bbfd4c929f3574ddb77f261b14a05b942774e6e6 | /Dynamic Programming/dungeon-princess.cpp | 8e066889f1c7bc6bafef573d54075e9d2f1b286c | [] | no_license | Dhrubajyoti12/interviewbit-problems | 1167440eb05aa133fdfa450cb034bedf84de3223 | b96481d19218b1031da3743ae351f635e41e1e6a | refs/heads/master | 2021-09-01T06:18:29.016337 | 2017-12-25T09:14:11 | 2017-12-25T09:14:11 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 623 | cpp | int Solution::calculateMinimumHP(vector<vector<int> > &A) {
// init dimensions
const int I = A.size(); const int J = A[0].size();
vector< vector<int> > sol(I, vector<int>(J, 0));
// init last row & column
sol[I-1][J-1] = max(1, -A[I-1][J-1]+1);
for(int j=J-2 ; j>-1 ; --j) sol[I-1][j] = max(1, sol[I-1][j+1] - ... | [
"orbay.altuntoprak@gmail.com"
] | orbay.altuntoprak@gmail.com |
2cd06a6032f90af636764895ff4c0e9c36c349a5 | d285b114bba417772afe2efe8ad17fe2c04c6fd2 | /shared.hpp | e2f0fb28822337ea5f52967b2587513b22dbcbae | [] | no_license | ghassenghouibi/Puissance4 | ca7c22f6e13a731f31f6d5c0939033913bf902ca | 3401b67bfb5f8e2241a0019d979f9bf07fb726a2 | refs/heads/master | 2020-05-01T01:49:49.801356 | 2019-09-18T11:07:48 | 2019-09-18T11:07:48 | 177,203,876 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 244 | hpp | /*
This file containes the grid of the game with width & height
*/
#ifndef __SHARED_HPP_
#define __SHARED_HPP_
#define W 4
#define H 4
typedef struct grid_t grid_t;
struct grid_t{
int colomn;
int line;
int grid[W][H];
};
#endif
| [
"ghouibi.ghassen@gmail.com"
] | ghouibi.ghassen@gmail.com |
363b99ed81449f8191a77fe85015a69819989074 | 96e7347db30d3ae35f2df119a18472cf5b251fa2 | /Classes/Native/System_Data_U3CModuleU3E3783534214.h | fd3cfab4c7b5590033111d42877863619bc2d0e0 | [] | no_license | Henry0285/abcwriting | 04b111887489d9255fd2697a4ea8d9971dc17d89 | ed2e4da72fbbad85d9e0e9d912e73ddd33bc91ec | refs/heads/master | 2021-01-20T14:16:48.025648 | 2017-05-08T06:00:06 | 2017-05-08T06:00:06 | 90,583,162 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 437 | h | #pragma once
#include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <stdint.h>
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <Mod... | [
"phamnguyentruc@yahoo.com"
] | phamnguyentruc@yahoo.com |
a9936c65dd309e6be6fc880ef188050ff006aa2d | 05fdaed120aaa3a887699f09cbc14080c82f07cd | /demo_05/tensor.cpp | 48832a5885c7c8f1daa417f3de616f2d43fb1c49 | [] | no_license | zideajang/cpp_tuts | ec975c1ad090bc81f994a07c352ea183a73bdad3 | 0b119d3ff3e15af4ba2a481a34a380b7da813eeb | refs/heads/main | 2023-08-04T21:49:34.153092 | 2021-09-27T02:08:32 | 2021-09-27T02:08:32 | 394,870,433 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 261 | cpp | #include <iostream>
#include<tuple>
#include "tensor.h"
using namespace std;
Tensor::Tensor(int h):h(h){}
Tensor::Tensor(int h,int w):h(h),w(w){}
Tensor::Tensor(int h, int w, int c):h(h),w(w),channel(c){}
tuple<int,int> Tensor::size(){
return {h, w};
} | [
"you@example.com"
] | you@example.com |
0af4a46ddb965221db620d711cd329759cf3868d | a228eba2c6e1fccea97c4118ad24359c15aa4b67 | /SystemCommon/DynamicLibrary.h | d6d7a3a73690ea404cf64745476f3e6f0ec2918c | [
"MIT",
"LicenseRef-scancode-public-domain",
"BSD-3-Clause",
"BSL-1.0"
] | permissive | XZiar/RayRenderer | 4352d73610eb4b4de21947eb1858da567d002e46 | 0785d59972e146e0590ab9f50592b1937251f83d | refs/heads/master | 2023-04-06T06:18:47.903830 | 2023-04-02T00:47:12 | 2023-04-02T00:47:12 | 80,962,917 | 22 | 5 | MIT | 2019-05-10T09:26:26 | 2017-02-05T02:19:36 | C++ | UTF-8 | C++ | false | false | 1,592 | h | #pragma once
#include "SystemCommonRely.h"
#include "common/FileBase.hpp"
namespace common
{
class DynLib
{
private:
void* Handle;
std::u16string Name;
explicit DynLib(void* handle, std::u16string&& name) noexcept : Handle(handle), Name(std::move(name)) {}
SYSCOMMONAPI void* GetFunction(std::string_view nam... | [
"czktc2007@gmail.com"
] | czktc2007@gmail.com |
5cd73461e30d8007eeaf9862377d287f25978cb9 | 5b4312ddc24f29538dce0444b7be81e17191c005 | /autoware.ai/1.12.0_cuda/build/autoware_map_msgs/devel/include/autoware_map_msgs/Signal.h | 94c57720cd060e46927c079c528dc3bb88c4acf1 | [
"MIT"
] | permissive | muyangren907/autoware | b842f1aeb2bfe7913fb2be002ea4fc426b4e9be2 | 5ae70f0cdaf5fc70b91cd727cf5b5f90bc399d38 | refs/heads/master | 2020-09-22T13:08:14.237380 | 2019-12-03T07:12:49 | 2019-12-03T07:12:49 | 225,167,473 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,083 | h | // Generated by gencpp from file autoware_map_msgs/Signal.msg
// DO NOT EDIT!
#ifndef AUTOWARE_MAP_MSGS_MESSAGE_SIGNAL_H
#define AUTOWARE_MAP_MSGS_MESSAGE_SIGNAL_H
#include <string>
#include <vector>
#include <map>
#include <ros/types.h>
#include <ros/serialization.h>
#include <ros/builtin_message_traits.h>
#inclu... | [
"907097904@qq.com"
] | 907097904@qq.com |
123efaabb4ab11d2f56b7e32ca8281f849c909da | 1cc5752ed2d80baf52dd3ac0c528ca4571fefe4c | /第七章排序/MaxHeap.cpp | a1f20bad5c43f022c2a322d54e923677ad7e61cc | [] | no_license | chenzhennan/code-for-wangdao | b3f5ae46f0e8b7bc74c76ee4a80e298ff1e2e4ba | dcbd4ce1f46ba687caa2b145d597c084e1f1bd04 | refs/heads/master | 2020-09-11T00:05:41.665832 | 2020-03-02T07:28:55 | 2020-03-02T07:28:55 | 221,874,699 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 751 | cpp | #include<iostream>
using namespace std;
void buildMaxHeap(int* A, int len){
for(int i = len/2;i>0;i--){
AdjustDown(A, i, len)
}
}
void AdjustDown(int* A, int k, int len){
int temp = A[k];
for(int i= 2k;i<len;i*=2){
if(A[i]<A[i+1])
i++;
if(temp<A[i]){
A[k... | [
"2734085147@qq.com"
] | 2734085147@qq.com |
677246fcbbc3f35809d228046e94bb87a105ffa5 | ec5279651924cdc4bc239025fbb660e602406e9d | /project/iteration3/libphoto/src/Tool.h | 26a3e86d488493384b2a3f660035e8ff12bce246 | [] | no_license | stevieMNwonder/FlashPhoto | afff2560eda8e1fcb4e5a90d9bc809c81dc990d5 | aa8d2977773851b0f7b99dc2ba7f28da8e63935f | refs/heads/master | 2021-01-15T10:52:44.850385 | 2016-08-10T21:58:21 | 2016-08-10T21:58:21 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 570 | h | //
// Tool.h
// Created by Jacob Grafenstein
//
#ifndef TOOL_H
#define TOOL_H
#include "ColorData.h"
#include "PixelBuffer.h"
class Tool {
public:
// This function will always be overwritten by the Tool subclass
float** getMask();
// Checks if the given tool is the active tool
int getMaskSize();
float ge... | [
"stevieMNfrisbie@gmail.com"
] | stevieMNfrisbie@gmail.com |
6bab24b19b06a0289c0c1f2fd3374289cb69d32c | 4d4822b29e666cea6b2d99d5b9d9c41916b455a9 | /Example/Pods/Headers/Private/GeoFeatures/boost/geometry/multi/core/tags.hpp | 4807f0d27f7e418da4e6de054f34addc4a917986 | [
"BSL-1.0",
"Apache-2.0"
] | permissive | eswiss/geofeatures | 7346210128358cca5001a04b0e380afc9d19663b | 1ffd5fdc49d859b829bdb8a9147ba6543d8d46c4 | refs/heads/master | 2020-04-05T19:45:33.653377 | 2016-01-28T20:11:44 | 2016-01-28T20:11:44 | 50,859,811 | 0 | 0 | null | 2016-02-01T18:12:28 | 2016-02-01T18:12:28 | null | UTF-8 | C++ | false | false | 73 | hpp | ../../../../../../../../../GeoFeatures/boost/geometry/multi/core/tags.hpp | [
"hatter24@gmail.com"
] | hatter24@gmail.com |
5dacd760de2864f170f5b0c7205af96519b97e29 | 4bcc9806152542ab43fc2cf47c499424f200896c | /tensorflow/compiler/mlir/op_or_arg_name_mapper.cc | f5912553f10dbe2e618d968aaa2d64db5ef6aa19 | [
"Apache-2.0",
"LicenseRef-scancode-generic-cla",
"BSD-2-Clause"
] | permissive | tensorflow/tensorflow | 906276dbafcc70a941026aa5dc50425ef71ee282 | a7f3934a67900720af3d3b15389551483bee50b8 | refs/heads/master | 2023-08-25T04:24:41.611870 | 2023-08-25T04:06:24 | 2023-08-25T04:14:08 | 45,717,250 | 208,740 | 109,943 | Apache-2.0 | 2023-09-14T20:55:50 | 2015-11-07T01:19:20 | C++ | UTF-8 | C++ | false | false | 5,793 | cc | /* Copyright 2019 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 |
7ff707bf2d1063439f8d5cd1fac4196e1de5e5e9 | 18851105ab95db56d613f1d5f202c8c0ba5b2c1e | /assignment4/3.cpp | 189901c916d3a842764eed46a7913575377e8ae5 | [] | no_license | ranaaditya/CSMI-11 | 672534035b680831cd4812cf1c4a875b287c1d12 | 3273f6826fe0b116d77ca64bc3015d99fafa2569 | refs/heads/master | 2022-11-17T07:34:39.098890 | 2020-07-15T05:55:50 | 2020-07-15T05:55:50 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,651 | cpp | #include <bits/stdc++.h>
using namespace std;
struct Node {
char data;
Node *left, *right;
};
Node* newNode(char data);
int search(char arr[], int strt, int end, char value);
Node* buildUtil(char in[], char post[], int inStrt,
int inEnd, int* pIndex)
{
if (inStrt > in... | [
"mail2aditya.rana98@gmail.com"
] | mail2aditya.rana98@gmail.com |
aa89b1ffd14aa5ec1831c6945b368584af6c1708 | 7c919da550660351db4d269651d269c9765a9d36 | /src/libzerocoin/ParamGeneration.cpp | 4aabde42b09ccaa8f04ae719dfef75ce2db0a035 | [
"MIT"
] | permissive | wyh136/innoket | f7673b8a1fd885598db949bd1bf7ac871beef005 | 27efcc929371de0eb8ea16420e2e6c63e207bcb5 | refs/heads/master | 2021-04-15T14:24:51.482275 | 2018-03-25T11:16:12 | 2018-03-25T11:16:12 | 126,707,143 | 0 | 0 | null | 2018-03-25T14:42:21 | 2018-03-25T14:42:20 | null | UTF-8 | C++ | false | false | 25,993 | cpp | /// \file ParamGeneration.cpp
///
/// \brief Parameter manipulation routines for the Zerocoin cryptographic
/// components.
///
/// \author Ian Miers, Christina Garman and Matthew Green
/// \date June 2013
///
/// \copyright Copyright 2013 Ian Miers, Christina Garman and Matthew Green
... | [
"36470139+Innoket@users.noreply.github.com"
] | 36470139+Innoket@users.noreply.github.com |
814d17dbce7f84726cc4581a987cf57dd04b7085 | 064c812442ce0cedfc400827d1fa2f8f4c4bb438 | /AutoDownloaded Codes/sshstamref/8243/8243.cpp17.cpp | 8b9aff1e469f0f8aaa9213f299f9f539c18d47fd | [] | no_license | TAMREF/problem-solving-storage | c1845571179771d33263cf03f3a26bff0cd75d53 | cab7bbe00343bd1bc4fe32a984a574f86aac545e | refs/heads/master | 2022-03-21T04:30:18.318602 | 2019-11-13T03:21:35 | 2019-11-13T03:21:35 | 78,931,251 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 834 | cpp | #include <bits/stdc++.h>
using namespace std;
const int mx = 300005;
int k, n;
vector<int> G[mx], C[mx];
void idfs(int x, int p){
for(int &u : G[x]){
if(u != p){
C[x].push_back(u);
idfs(u,x);
}
}
}
int dfs(int x){
int s = 0;
for(int &u : C[x]){
s += df... | [
"sluggeryck@naver.com"
] | sluggeryck@naver.com |
9530445f3effc75d4d6d2157d8790e5c9f80b603 | 6aa0bdb5b811a1b4c937d221062d44eabfceadd6 | /A1082.cpp | 79247d3a20040058959182b6d9c328e4c8221e68 | [] | no_license | panluDreamer/PAT-A | b438102be250cbc50cc2e61453de91a62045006c | 4fb39dd261b5163aab3744c380dfa275c5e20fa7 | refs/heads/master | 2021-07-03T09:45:56.681208 | 2017-09-25T09:26:37 | 2017-09-25T09:26:37 | 100,244,407 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,659 | cpp | #include<iostream>
#include<sstream>
#include<string>
using namespace std;
char *map[9] = { "","Shi","Bai","Qian","Wan","Shi","Bai","Qian","Yi" };
char *map_num[10] = { "ling","yi","er","san","si","wu","liu","qi","ba","jiu" };
string convert(char temp);
int main() {
int num;
cin >> num;
string a;
stringstream s;
s... | [
"2637396151@qq.com"
] | 2637396151@qq.com |
fad80b9b7fc2b45128038607439fa5ef6fa8edb0 | c0cce0e577f2e46e21d54f35859bcd9f3359ff8c | /Dynamic Programming/Minimum_sideway_jumps.cpp | 0d7f261f145ec6e5d2eb4508391e5a52552370fd | [
"MIT"
] | permissive | Razdeep/LeetCode-Solutions | 772e8be97a85896af779fdd32860c1f17d23807f | eb7ebd0576cdd092e9d09f99e008f2c9cae040f0 | refs/heads/master | 2023-08-01T01:02:38.055433 | 2023-07-19T05:01:06 | 2023-07-19T05:01:06 | 156,170,988 | 1 | 0 | MIT | 2022-10-30T08:28:52 | 2018-11-05T06:29:19 | C++ | UTF-8 | C++ | false | false | 1,230 | cpp | // https://leetcode.com/problems/minimum-sideway-jumps/
class Solution {
static constexpr int oo = int(1e9);
public:
int minSideJumps(vector<int>& obstacles) {
int n = int(obstacles.size());
vector<vector<int> > road(3, vector<int>(n + 1, 0));
vector<vector<int> > dp(3, vector<int>(n +... | [
"rrajdeeproychowdhury@gmail.com"
] | rrajdeeproychowdhury@gmail.com |
8d9267c697fa564380c26f6a47a2b46c4a96fc7d | 81e31a571f9263b317a60ab7e2fa6a62199aefa1 | /icm-1.1/icm/ObjectAdapter.h | 83abcf96b6f767ba760c9cfb498874d9f3801d41 | [] | no_license | qhjindev/icm | 66910f1db5b9cf549b31817e3e2adeada4babd17 | 9e2a659dcf8c4cdadb71e129eedb667efc817517 | refs/heads/master | 2020-05-17T05:37:21.762348 | 2015-01-08T02:16:08 | 2015-01-08T02:16:08 | 28,762,156 | 3 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,391 | h | #ifndef ICM_OBJECT_ADAPTER_H
#define ICM_OBJECT_ADAPTER_H
#include <string>
#include "icm/Reference.h"
#include "icm/Endpoint.h"
class Communicator;
class ServantManager;
class Object;
class ServerRequest;
class ServantLocator;
namespace IcmProxy
{
class Object;
}
class ObjectAdapter
{
public:
... | [
"qinghua@localhost.localdomain"
] | qinghua@localhost.localdomain |
77bf9663fed0b9865b978962121f59629d125dc8 | 133eb04840ce53645959799ca81c66a5b5fa9249 | /project1/src/fa.cpp | 0e0a86c2ef4382b0675f2bfa53790ab4b195839a | [] | no_license | asifmahmud/data_structures_and_algorithms | 8c3c59415563536a8242674d64ca1a968407f360 | a6759197a18c4fc32d7bab98a0e94970657dd915 | refs/heads/master | 2021-01-18T18:38:26.542776 | 2017-05-01T09:11:43 | 2017-05-01T09:11:43 | 86,868,727 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 3,305 | cpp | #include <string>
#include <iostream>
#include <fstream>
#include <vector> //For use with split function in ics46goody
#include "ics46goody.hpp"
#include "iterator.hpp"
#include "array_queue.hpp"
#include "array_priority_queue.hpp"
#include "array_set.hpp"
#include "array_map.hpp"
typedef ics::Array... | [
"amahmud@uci.edu"
] | amahmud@uci.edu |
bde6c6025e2f57b9d14788c1125f59789f278d93 | c91ff98c9159d11811fccf532ed71b78d8f87332 | /Lab09/Projeto09/p09b_implementacao/p09b_implementacao.ino | d0de0989279891510c757cdab4af0181594d5048 | [] | no_license | ghering166/Projetos-de-Microcontroladores | 920b104334376598908090df900d129ec3fcf964 | 5d517b2a23d6605835acc3d0e9bde4d29749ad84 | refs/heads/master | 2020-06-10T07:15:10.221606 | 2019-07-05T23:52:29 | 2019-07-05T23:52:29 | 193,615,671 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,522 | ino | //libs
#include <GFButton.h>
#include <ShiftDisplay.h>
//variables
GFButton botao1(A1);
GFButton botao2(A2);
String comandos[4] = { "frente", "tras", "esquerda","direita" };
int led1 = 10;
int led2 = 11;
ShiftDisplay display(4, 7, 8, COMMON_ANODE, 4, true);
int globalState = 0;
//functions
void se... | [
"gabriel.hering@yahoo.com.br"
] | gabriel.hering@yahoo.com.br |
76ce6bf5805120abb56e3f31ba19d3fb6cc9e3a2 | 1c83aef38de4e27f54d4664886a431b4fd2caea3 | /Engine/UI/UIElementGradient.refl.cpp | 9f10432aa04e5f1b2878ba75d7afff06158ba812 | [] | no_license | quinsmpang/StormBrewerEngine | 7a84494debe415c9216586ccfb7d1faf5e0e016f | 73f0f3874874909fdf97977737133f5996668410 | refs/heads/master | 2021-06-21T05:42:34.051588 | 2017-08-09T08:51:42 | 2017-08-09T08:51:42 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,794 | cpp |
#include "Engine/EngineCommon.h"
#include "Engine/UI/UIElementGradient.refl.meta.h"
#include "Engine/UI/UIElementExprBlock.h"
#include "Engine/Rendering/RenderUtil.h"
#include "Engine/Shader/ShaderManager.h"
#include "Runtime/UI/UIElementTypeRegister.h"
STORM_DATA_DEFAULT_CONSTRUCTION_IMPL(UIElementGradientInitData... | [
"nick.weihs@gmail.com"
] | nick.weihs@gmail.com |
3bb43572b12662bbd53ff51657da41fd70068db9 | 6fe2145d57a212db2b2794bdc0be9354da090a10 | /JLib/misc.cpp | 024d4073154fec040c85c65ad294c3c8145ab4ce | [] | no_license | jaespo/QtOub | b43cc6db026edc14d17489f1ea42209a7aa976a4 | d93d43cc49b5faa9a4f1ef524b54146c74a7b43e | refs/heads/master | 2020-12-03T07:35:08.285125 | 2017-07-07T16:18:57 | 2017-07-07T16:18:57 | 67,311,335 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 354 | cpp | ///////////////////////////////////////////////////////////////////////////
//
// (C) 2016 by Jeffery A Esposito
//
///////////////////////////////////////////////////////////////////////////
#include "misc.h"
//
// ctor of a CErrorInfo
//
jlib::CErrorInfo::CErrorInfo(int32_t vCode, const char *pzSrcFile)
{
mCode = ... | [
"jeffery.a.esposito@gmail.com"
] | jeffery.a.esposito@gmail.com |
c2b0887bc9df3a593dcf525109eb0e82a5c53259 | baf32fa1a4d3ac49b59c35f0a9226ff2a786fbc6 | /Dynamic Programming/AdityaVermaChannel-QnA/0-1 Knapsack RelatedQuestions/countsOfSubsetsSum.cpp | 032bf50992a065d633602bb45c2978b353e96df5 | [] | no_license | rajnishgeek/DSandAlgorithmPracticeSolution | 1ef24f140a2a5d9d435b7fa36edf77074473f7b6 | 2cdd988c286f61552bd92ae995415e613d8af2fa | refs/heads/master | 2023-07-14T21:15:24.016176 | 2021-09-01T18:00:04 | 2021-09-01T18:00:04 | 271,195,284 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 783 | cpp | #include<bits/stdc++.h>
using namespace std;
int countsOfSubsetSum(int arr[], int n, int sum)
{
int dp[n+1][sum+1];
//initialize 0th col with 1 and 0th row with 0 except [0][0]=1
for(int i=0;i<n+1;i++)
{
for(int j=0;j<sum+1;j++)
{
if(i==0)
dp[i][j]=0;
if(j==0)
dp[i][j]=1;
}
}
for(int i=1;i<... | [
"rajneeshsharma540@gmail.com"
] | rajneeshsharma540@gmail.com |
6b565c197f16b94340e0c148a8092884a0264d7b | 1c444bdf16632d78a3801a7fe6b35c054c4cddde | /include/bds/bedrock/pack/UIPackError.h | 73b3cb96221abf212795b03aec4269327a498e83 | [] | no_license | maksym-pasichnyk/symbols | 962a082bf6a692563402c87eb25e268e7e712c25 | 7673aa52391ce93540f0e65081f16cd11c2aa606 | refs/heads/master | 2022-04-11T03:17:18.078103 | 2020-03-15T11:30:36 | 2020-03-15T11:30:36 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 649 | h | #pragma once
#include <string>
#include "PackError.h"
#include <vector>
class UIPackError : public PackError {
public:
~UIPackError(); // _ZN11UIPackErrorD2Ev
virtual std::string getLocErrorMessageMap()const; // _ZNK11UIPackError21getLocErrorMessageMapB5cxx11Ev
virtual std::string getEventErrorMessageMa... | [
"honzaxp01@gmail.com"
] | honzaxp01@gmail.com |
84dde986a152af3d004753319b9850a964dae40a | de6f4e2e15fc24dd9f33c735892fd8ea09c90e11 | /src/main.cpp | c9d48bf871e646163d9622b70756528ad7eeb0a4 | [] | no_license | tolo38/3Docean | 8ffd6b9fc36dd53e23a329729818c946369802d1 | 9b18644d25ecece51750abb7cd3a7cd5d366966f | refs/heads/master | 2022-04-24T10:07:49.669812 | 2020-04-26T19:50:22 | 2020-04-26T20:00:14 | 258,807,979 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 68 | cpp |
#include "obj.hpp"
int main()
{
obj1 o;
o.disp1();
return 0;
}
| [
"loiodicethomas@yahoo.fr"
] | loiodicethomas@yahoo.fr |
72e27909d053493872eb60157adfa759025c32d0 | 07863061bd27b84efadf16cc5b3f498184e362e0 | /snes/alt/ppu-compatibility/render/cache.cpp | 4e3b7be7649497b65e47b3d928f12b838539a100 | [] | no_license | libretro/bsnes-libretro-cplusplus98 | a3c9fcd767c3a7323e29818f3deb263584c01897 | c6344291780aee6a8fc10c4378a4408b1757e172 | refs/heads/master | 2022-11-21T23:25:00.339868 | 2022-06-09T11:54:02 | 2022-06-09T11:54:02 | 961,617 | 7 | 18 | null | 2022-11-10T20:07:15 | 2010-10-04T20:01:24 | C++ | UTF-8 | C++ | false | false | 4,354 | cpp | #ifdef PPU_CPP
#define render_bg_tile_line_2bpp(mask) \
col = !!(d0 & mask) << 0; \
col += !!(d1 & mask) << 1; \
*dest++ = col
#define render_bg_tile_line_4bpp(mask) \
col = !!(d0 & mask) << 0; \
col += !!(d1 & mask) << 1; \
col += !!(d2 & mask) << 2; \
col += !!(d3 & mask) << 3; \
*dest++ = col
#d... | [
"maister@archlinux.us"
] | maister@archlinux.us |
adb40350f9726c4db4368d71e9cbdbe198a9d28f | e5f74db2b079783fbf923826e3ee0d061849a889 | /Code/DataProperty/modelTreeItemType.cpp | c83a45186c90431eaaa745f90bd8f217375f6c2e | [
"BSD-3-Clause"
] | permissive | sunhan01/FastCAE | 57b6ba145864978ffcc57dd4721a17d4b6c350f8 | 4e9e9aa1cc076bc3ba5d7823fb61e5b0a9dc2e72 | refs/heads/master | 2023-02-12T14:56:52.414267 | 2021-01-11T05:43:42 | 2021-01-11T05:43:42 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,799 | cpp | #include "modelTreeItemType.h"
#include <assert.h>
TreeItemType getTreeItemTypeByString(const QString& typeString)
{
TreeItemType type = Undefined;
if (typeString == "SimulationSetting") type = ProjectSimulationSetting;
else if (typeString == "SimulationSettingChild") type = ProjectSimulationSettingChild;
else if... | [
"libaojunqd@foxmail.com"
] | libaojunqd@foxmail.com |
ecebacb56e8877fafcf13c2a1c10098a9e4a91af | 316704c5ad8ac6dbbbe0b0653d6fc1a5c8c0784b | /LeoDeg.DXEngine/DirectXEngine/Graphics/Vertex.h | 21f4780c0cef97bd2909f651d45841c93030a135 | [] | no_license | leodeg/CPP.DirectXEngine | 721fee4b31aa0b67b8794acddebf21d19e081d3d | f0643a2f62099b15ede84b4e7b16c04493178fe6 | refs/heads/master | 2020-06-18T03:01:29.049247 | 2019-08-22T16:41:19 | 2019-08-22T16:41:19 | 196,144,426 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 974 | h | #pragma once
#include <DirectXMath.h>
namespace DXEngine
{
struct Vertex3D
{
Vertex3D ()
: position (0, 0, 0),
texCoord (0, 0),
normal (0.0f, 0.0f, 0.0f)
{ }
Vertex3D (float x, float y, float z)
: position (x, y, z),
texCoord (0, 0),
normal (0.0f, 0.0f, 0.0f)
{ }
Vertex3D (float ... | [
"rdkdvv@gmail.com"
] | rdkdvv@gmail.com |
446d7aeffbf365be8a11f9760f7dffc3bc740c64 | 531814d46d54e678c69f40a5ae7ffce06207fb10 | /.theano/compiledir_Linux-3.13--generic-x86_64-with-Ubuntu-14.04-trusty-x86_64-2.7.6-64/tmpnglOij/mod.cpp | 17570ab1dc3e2703c5137673f0e84705e6951d4f | [] | no_license | changyangloong/Theano-LSTM | 05e9f2f505fab5957b2798dd38f3cbc6d526201c | cd64d6c8770f1bdc031a737fa301286a2aa5db63 | refs/heads/master | 2020-04-01T09:55:26.973922 | 2015-12-20T22:13:33 | 2015-12-20T22:13:33 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 40,057 | cpp | #include <Python.h>
#include <iostream>
#include <math.h>
#include <numpy/arrayobject.h>
#include <numpy/arrayscalars.h>
#include <vector>
#include <algorithm>
//////////////////////
//// Support Code
//////////////////////
namespace {
struct __struct_compiled_op_15e5f1305637f0ba2c993cd6bfad37fc {
Py... | [
"ubuntu@ip-172-31-55-21.ec2.internal"
] | ubuntu@ip-172-31-55-21.ec2.internal |
d251a30fe1b38f7bb1a1418ab9eaf5fe02ebe817 | fa8687270f49e51f97ddb0f0acfd59f80e93e192 | /src/utility/String.hpp | 70bb719819105820b329cc2d1ca854f744e91b8d | [
"MIT"
] | permissive | angelfor3v3r/RE2-Mod-Framework | d1659bc0957cb5216e85533a8ecf31cd937527be | 63b3bd73df883c258566b7562754e692a6771d0c | refs/heads/master | 2021-07-18T04:11:09.967224 | 2021-05-12T12:45:28 | 2021-05-12T12:45:28 | 364,299,858 | 0 | 0 | MIT | 2021-05-04T15:21:16 | 2021-05-04T15:21:15 | null | UTF-8 | C++ | false | false | 671 | hpp | #pragma once
#include <string>
#include <string_view>
namespace utility {
//
// String utilities.
//
// Conversion functions for UTF8<->UTF16.
std::string narrow(std::wstring_view std);
std::wstring widen(std::string_view std);
std::string format_string(const char* format, va_list args);... | [
"praydog@gmail.com"
] | praydog@gmail.com |
c156ea960f68ee026a91c65eba4a5e8b726917c1 | 889828789903ab53aa1fd68927d61ab0b671c0e8 | /src/light/DeviceCommand/SpeedToLightDownDeviceCommand.cpp | 9a0d71bedeb1eaba481a99d0097b512ff26aa16f | [
"MIT"
] | permissive | eireenlightsystems/lightbackend | c0983e207e008c1e4ffeb19084305ca40fb05339 | b29c0e082fb224cfce74cf1479fd9120ded289b9 | refs/heads/master | 2020-04-25T21:45:34.089573 | 2019-02-28T14:40:27 | 2019-02-28T14:40:27 | 173,089,932 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 476 | cpp | #include "SpeedToLightDownDeviceCommand.h"
namespace light {
SpeedToLightDownDeviceCommand::SpeedToLightDownDeviceCommand() {
setCommandNumber(CommandNumber::SpeedToLightDown);
}
SpeedToLightDownDeviceCommand::SpeedToLightDownDeviceCommand(ulong gatewayId,
quint8 firstNode,
quint8 lastNode,
qui... | [
"rensfo@gmail.com"
] | rensfo@gmail.com |
6040049308147eeedf98cc3da6802d34752a79f6 | f146950d63ae1b18fc69ec6ba8f3081d68f38258 | /PcProc/MainFrm.h | 6ca6fd8eb89d694689bf92331d1a0cb736dc464a | [] | no_license | ewin66/pcsharefix64 | e46480f840f79562bc90e12f6f445b1212dca4c5 | fdba6377bb05b49a25a7db028fbac1edc4d96760 | refs/heads/master | 2022-11-26T11:09:22.579515 | 2020-07-24T03:29:12 | 2020-07-24T03:29:12 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 1,499 | h | // MainFrm.h : CMainFrame 类的接口
//
#pragma once
#include "MyProcessListView.h"
class CMainFrame : public CFrameWnd
{
public:
CMainFrame();
protected:
DECLARE_DYNAMIC(CMainFrame)
// 属性
public:
// 操作
public:
// 重写
public:
virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
// 实现
public:
virtual ~CMainFrame();
#... | [
"yaoyuan.bao@magic-shield.com"
] | yaoyuan.bao@magic-shield.com |
4b3f2c29cc83396a9f42976a8930b3d6904558ca | 9943ec3a6730477e5f5aeaf1c783658d2c8052f1 | /datatask/datatask_node.h | 97b01cf8a63d340082e1ffab36a70c8eff8878e6 | [] | no_license | 7zkeeper/emcds | 08ca7de707499510f5044cb724de1e8a700bccf0 | d19a7354e0ac3a304ade201d15f647910e84f4f6 | refs/heads/master | 2016-09-01T15:51:14.561886 | 2015-11-23T08:12:08 | 2015-11-23T08:12:08 | 46,101,277 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,589 | h | /* author : zhangqi
* filename : datatask_node.h
* version : 0.1
*/
#ifndef _DATATASK_NODE_H_
#define _DATATASK_NODE_H_
#include <boost/asio.hpp>
#include "redis/redisworker.h"
#include "zookeeper/ksm_zk.h"
#include "mongodb/em_mongodb.h"
#include "utility/utility.h"
class datatask_node
{
public:
datatask_node(... | [
"17621087@qq.com"
] | 17621087@qq.com |
1851604e876a70efb87d85cd8d457e31f2b3b12d | 293d62b2afbcfe0ca3f06f21320022afd802cafe | /RenderCore/render/wtf/HashSetTest.cpp | ac2b271306127293130462f7bb69ed981d6c1d41 | [
"Apache-2.0"
] | permissive | pouloghost/weexuikit | 9b2e911a3cc34f3b8ab9cf0b3c9e57d245583a4e | 2eaf54e4c1f4a1c94398b0990ad9767e3ffb9213 | refs/heads/master | 2022-02-20T05:49:23.025281 | 2019-08-14T03:17:52 | 2019-08-14T03:17:52 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,893 | cpp | /*
* Copyright (C) 2012 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions a... | [
"jianbai.gbj@taobao.com"
] | jianbai.gbj@taobao.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.