blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 4 201 | content_id stringlengths 40 40 | detected_licenses listlengths 0 85 | license_type stringclasses 2
values | repo_name stringlengths 7 100 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 260
values | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 11.4k 681M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 17
values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 80
values | src_encoding stringclasses 28
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 2
classes | length_bytes int64 8 9.86M | extension stringclasses 52
values | content stringlengths 8 9.86M | authors listlengths 1 1 | author stringlengths 0 119 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
8746cfaf76720a64d0c4afb200d3d40f7c7d5a90 | 959a198f0102bb11775c9e69ddc625f9e52f4b63 | /lab4/ShapeDrawing4students/rectangle.cpp | 9b4658054be74e74db1c2f1527ce48291c1a5e32 | [] | no_license | kocimski/CPlusPlusLab | 45d0ba6ddd1b519b185d2c145bee00ba96dabb3c | a8ac1d4315043042a4eb12d7f08a703bb76f68ce | refs/heads/master | 2022-11-10T10:03:27.608478 | 2020-06-25T16:20:08 | 2020-06-25T16:20:08 | 248,291,136 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 322 | cpp | #include "rectangle.h"
#include <iostream>
Shapes::Rectangle::Rectangle(int x, int y, int xTo, int yTo)
{
this->x = x;
this->y = y;
this->xTo = xTo;
this->yTo = yTo;
}
bool Shapes::Rectangle::isIn(int x, int y) const {
return x >= this->x && x <= this -> xTo && y >= this->y && y <= this->yTo;
}
... | [
"pawelpoczta1201@o2.pl"
] | pawelpoczta1201@o2.pl |
244cc97ad96430efc9fdcc40769d632708e98174 | fe2362eda423bb3574b651c21ebacbd6a1a9ac2a | /VTK-7.1.1/Common/DataModel/vtkHierarchicalBoxDataIterator.h | 81044a589060bbe0d58b7e907ca3b763e962deac | [
"BSD-3-Clause"
] | permissive | likewatchk/python-pcl | 1c09c6b3e9de0acbe2f88ac36a858fe4b27cfaaf | 2a66797719f1b5af7d6a0d0893f697b3786db461 | refs/heads/master | 2023-01-04T06:17:19.652585 | 2020-10-15T21:26:58 | 2020-10-15T21:26:58 | 262,235,188 | 0 | 0 | NOASSERTION | 2020-05-08T05:29:02 | 2020-05-08T05:29:01 | null | UTF-8 | C++ | false | false | 1,523 | h | /*=========================================================================
Program: Visualization Toolkit
Module: vtkHierarchicalBoxDataIterator.h
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This softw... | [
"likewatchk@gmail.com"
] | likewatchk@gmail.com |
b1e54cf96478bdc962eea49404946e7a435e6d7a | c4e1b2fad57e164b1ec250d7ef58ca6b325be916 | /Sprout/W13/stringmatching.cpp | 703ac631ff9f088630d4e1677b36937966d03072 | [] | no_license | xSeanliux/CompetitiveProgramming | ab8030fdb0dc9c4e29e4cc8c52e020e6eb564372 | 011c7ad152d7090fa3e9143a27119a2192d68144 | refs/heads/master | 2023-06-08T11:00:48.826892 | 2023-05-25T22:58:43 | 2023-05-25T22:58:43 | 158,057,461 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,119 | cpp |
#include <iostream>
using namespace std;
string s, t;
int main(){
cin >> s >> t;
int ls = s.length(), lt = t.length();
int fail[ls + 10];
fail[0] = -1;
for(int i = 1; i < ls; i++){
int q = fail[i - 1];
while(q > 0 && s[q + 1] != s[i]) q = fail[q];
if(s[q + 1] == s[i]) q++;... | [
"zhxnliu@gmail.com"
] | zhxnliu@gmail.com |
3d50ddb280505450ac7eb5404c27d93e1060e9b9 | 1334014eaeffdde4886da49ce5f387c46a5cc23a | /2020-2/DataStructure/BTS/BTS.cpp | a0af05ce830b7cff9550be33206a5c55db3adbef | [] | no_license | gusah009/Algorithm | a85b1a4526a885b1f809c23c55565f453a5294c4 | 5da952e16a6f90f663706675812f042707aa7280 | refs/heads/main | 2023-07-31T17:28:20.404630 | 2021-09-05T06:14:00 | 2021-09-05T06:14:00 | 357,753,076 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,775 | cpp | #include <iostream>
#include <bits/stdc++.h>
using namespace std;
#define FOR(i, j) for(int i = 0; i < j; i++)
#define L node->left
#define R node->right
int N, depth;
string state, name;
bool exist;
typedef struct tree{
tree* left;
tree* right;
string name;
} Tree;
void insertNode(Tree* node)
{
if (node-... | [
"minion@bmeks.co.kr"
] | minion@bmeks.co.kr |
d85e66ecc87239e2c0f34ad3de5263bb803f24a9 | 0c667e9d5af64319d21780cce0a13ca186b31ad8 | /109_(有序链表转换为二叉搜索树)Convert Sorted List to Binary Search Tree/109_(有序链表转换为二叉搜索树)Convert Sorted List to Binary Search Tree.cpp | 4f5c0bf740e231f5fe9b4c2727c4537084eaa605 | [] | no_license | Longerhaha/Leetcode_Cpp | f6248f559ce37bef8fb2b6ef3dab7b753dd00c9b | 301196282f86b023f9549be08fcdcc45503649a6 | refs/heads/master | 2021-07-12T08:37:14.541975 | 2019-01-09T06:15:40 | 2019-01-09T06:15:40 | 146,104,579 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,404 | cpp | /**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode(int x) : val(x), next(NULL) {}
* };
*/
/**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode(int x... | [
"longerhaha@outlook.com"
] | longerhaha@outlook.com |
5ac9231547a4256df55e40347f8b43e2db4c8bf0 | 21553f6afd6b81ae8403549467230cdc378f32c9 | /arm/cortex/Freescale/MK20D10/include/arch/reg/axbs.hpp | a93e4a688d72f79d6a22de9c29afef30b073d641 | [] | no_license | digint/openmptl-reg-arm-cortex | 3246b68dcb60d4f7c95a46423563cab68cb02b5e | 88e105766edc9299348ccc8d2ff7a9c34cddacd3 | refs/heads/master | 2021-07-18T19:56:42.569685 | 2017-10-26T11:11:35 | 2017-10-26T11:11:35 | 108,407,162 | 3 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 4,427 | hpp | /*
* OpenMPTL - C++ Microprocessor Template Library
*
* This program is a derivative representation of a CMSIS System View
* Description (SVD) file, and is subject to the corresponding license
* (see "Freescale CMSIS-SVD License Agreement.pdf" in the parent directory).
*
* This program is distributed in the hope... | [
"axel@tty0.ch"
] | axel@tty0.ch |
32d2a12bb12e4a453ee743676467efb1841f2c8d | 8a62c13b40a2c05f2650f7e1585a262f70726273 | /Headers/choose.h | f44e9148b2d47d0f25bca7825fb3d62f01cfab14 | [] | no_license | Leslie5205912/Book_Manage_System | 226e1ae767d88fca2b1ae5108189181ac8047838 | 91a5505f43f76a8aa492dff6c47ddb27edaf70db | refs/heads/master | 2020-04-25T14:39:22.022084 | 2019-02-27T05:49:49 | 2019-02-27T05:49:49 | 172,848,807 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 455 | h | #ifndef CHOOSE_H
#define CHOOSE_H
#include <QDialog>
#include<insert.h>
#include<book_delete.h>
namespace Ui {
class Choose;
}
class Choose : public QDialog
{
Q_OBJECT
public:
explicit Choose(QWidget *parent = nullptr);
~Choose();
private slots:
void on_pushButton_clicked();
... | [
"noreply@github.com"
] | noreply@github.com |
311130c789cb0ce9a5546c28a107ca21e395c28e | a9fe3022423f50a8eb6e37e5a4c636c40f8d04fb | /deps/fdk-aac/libSACdec/src/sac_dec.cpp | a7b50df4452ae198868c032c73e55024b8935743 | [
"LicenseRef-scancode-warranty-disclaimer",
"FDK-AAC",
"LicenseRef-scancode-other-permissive",
"MIT"
] | permissive | toyobayashi/mishiro-core | f4f8601ca574abea4d27e68efb0c9fe60274403a | e10229b24733444f5cfc3b2b2a05256f0697b92e | refs/heads/master | 2021-11-25T13:29:42.630212 | 2021-11-01T08:14:53 | 2021-11-01T08:14:53 | 128,219,004 | 10 | 2 | MIT | 2020-06-17T09:42:59 | 2018-04-05T14:35:48 | JavaScript | UTF-8 | C++ | false | false | 55,612 | cpp | /* -----------------------------------------------------------------------------
Software License for The Fraunhofer FDK AAC Codec Library for Android
© Copyright 1995 - 2019 Fraunhofer-Gesellschaft zur Förderung der angewandten
Forschung e.V. All rights reserved.
1. INTRODUCTION
The Fraunhofer FDK AAC Codec Lib... | [
"lifenglin314@outlook.com"
] | lifenglin314@outlook.com |
61f4766894f594dc22aba8845debdbc9a48308e7 | 346a0f7c2f439686bfb8be58918bba33c412fd01 | /template_func.cpp | 7f7a65de42b39ee886fc93af1242bd552a4209d4 | [] | no_license | Anandoganiya/c-cpp | d01b712a59cc4fa299a8e958a7481c39348a0996 | a3f04255827758c2aff885a3cb4d974a4a636ac4 | refs/heads/master | 2023-01-14T08:16:28.282766 | 2020-11-23T08:52:53 | 2020-11-23T08:52:53 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 632 | cpp | //Template function implementing bubble sort
#include<iostream>
using namespace std;
template<class T>
void bubble(T v[],int n)
{
for(int i=0;i<n;i++)
for(int j=n-1;i<j;j--)
if(v[j]<v[j-1])
{
swap(v[j],v[j-1]);
}
}
template<class X>
void swap(X &x , X &y... | [
"31859828+Anandoganiya@users.noreply.github.com"
] | 31859828+Anandoganiya@users.noreply.github.com |
2631b4a05792ca3de97a328f11b0f15243c8d8c3 | fa38e49073de3676f9d636e66e74f21d2fc9a991 | /Upnp/ControlPoint/Services/Cpp/Core/CpLinnCoUkUi2.cpp | 6f0e003f353023f5e2e6304cc50f70008e72731c | [] | no_license | daviddw/oss-public | d80f362ce8ef9e52ece912f59a6fd7865ca50e7b | 0f13c078f8c2a2454572315e0e0d707ca0feb785 | refs/heads/master | 2022-01-16T21:32:49.366486 | 2012-10-30T09:49:26 | 2012-10-30T09:49:26 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 52,800 | cpp | #include <Core/CpLinnCoUkUi2.h>
#include <CpProxy.h>
#include <CpiService.h>
#include <Thread.h>
#include <AsyncPrivate.h>
#include <Core/CpDevice.h>
using namespace Zapp;
class SyncDisplayTestPatternLinnCoUkUi2 : public SyncProxyAction
{
public:
SyncDisplayTestPatternLinnCoUkUi2(CpProxyLinnCoUkUi2&... | [
"davidd@f930c5cb-86ff-4d92-8e31-4eab6bb26c19"
] | davidd@f930c5cb-86ff-4d92-8e31-4eab6bb26c19 |
e736c822cacdbb9aab4ec93b62e53bac56e31ae3 | 4e5cd0b82c188e2eb5e8562d01798314a9405eff | /src/test/TestTSLQueue.cpp | f579712237fcf492ded1bc3dcea81e9530641a1d | [
"MIT"
] | permissive | Stephen-Seo/UDPConnection | d31d0ba74ab7fe3675002fa1fabced723985db2c | 611287b377bcf4c4fa717134f6e938af5e161e83 | refs/heads/master | 2023-08-16T19:55:12.819429 | 2023-07-22T08:28:18 | 2023-07-22T08:28:33 | 233,561,342 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,458 | cpp | #include <gtest/gtest.h>
#include <future>
#include <functional>
#include "TSLQueue.hpp"
TEST(TSLQueue, PushTopPopSize) {
TSLQueue<int> q;
EXPECT_FALSE(q.top());
for(int i = 0; i < 10; ++i) {
EXPECT_EQ(i, q.size());
q.push(i);
}
for(int i = 0; i < 10; ++i) {
auto v = q.... | [
"seo.disparate@gmail.com"
] | seo.disparate@gmail.com |
2e91f4eb238a1bf205397459ee6c7870cfd1274c | 4f4de6e42893dd12a4e31fb23f8a265e56df480d | /source/backend/cpu/compute/ConvInt83x3.cpp | 048fdb91e94d28c4d5490bf7edc449e511792b5f | [
"Apache-2.0"
] | permissive | mapnn/MNN | 01fd680b14a3e04624576dffe393f1495f4202e1 | d203b50fef7107ef3ae5716e1aa2481aea6e8159 | refs/heads/master | 2023-02-12T02:31:34.512694 | 2020-12-31T07:17:51 | 2020-12-31T07:17:51 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 39,561 | cpp | #include "ConvInt83x3.hpp"
#include "backend/cpu/CPUBackend.hpp"
#include "core/Macro.h"
#include "core/Concurrency.h"
#include "ConvOpt.h"
#include "backend/cpu/compute/ConvOpt.h"
#include "Int8FunctionsOpt.h"
#include "CommonOptFunction.h"
#include "WinogradHelper.hpp"
#include "MNN/AutoTime.hpp"
#include <map>
#incl... | [
"shuhui.sh@alibaba-inc.com"
] | shuhui.sh@alibaba-inc.com |
0df2d6022d77bc8d1b01c9156d7d729253733c49 | 5ef7f5ba06b98319a5406dfa3b25c985257713d4 | /visa/iga/IGALibrary/Backend/Messages/MessageDecoderLSC.cpp | 3b6ae1e6398c8ca36ccdabb12a48054281a331e9 | [
"MIT"
] | permissive | intel/intel-graphics-compiler | 6a1ae1a84c541e967e70324492f22c941a02e38f | ea522543be6d042ec80e5db8e8878be31af68938 | refs/heads/master | 2023-09-03T20:31:55.215461 | 2023-08-29T18:31:52 | 2023-09-02T08:55:05 | 105,299,467 | 546 | 176 | NOASSERTION | 2023-08-23T08:57:03 | 2017-09-29T17:27:54 | C++ | UTF-8 | C++ | false | false | 41,590 | cpp | /*========================== begin_copyright_notice ============================
Copyright (C) 2020-2021 Intel Corporation
SPDX-License-Identifier: MIT
============================= end_copyright_notice ===========================*/
#include "MessageDecoder.hpp"
#include <utility>
using namespace iga;
enum LscOp... | [
"sys_igcbot@intel.com"
] | sys_igcbot@intel.com |
ee356d6d33ce1c7fbf743908839875fead6d58bb | ea99679b342d457b22832672e61eecb18512b25d | /src/core_io.h | 80760168d5c8531119ad1481466e4cbac5a5c979 | [
"MIT"
] | permissive | eletaNetwork/eletaNetwork | ab5cb586c8ce13380eba1eaa58327e3ecb9ec755 | c589089d189215d83a34534c82878d39b7cdda96 | refs/heads/master | 2020-03-08T19:27:51.153812 | 2018-04-13T06:01:43 | 2018-04-13T06:01:43 | 128,353,833 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,292 | h | // Copyright (c) 2009-2015 The Bitcoin Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef ELETACOIN_CORE_IO_H
#define ELETACOIN_CORE_IO_H
#include <string>
#include <vector>
class CBlock;
class CScript;
cl... | [
"38124337+eletaNetwork@users.noreply.github.com"
] | 38124337+eletaNetwork@users.noreply.github.com |
e5279fa87cb18b5be295e728ea2efc65804b4881 | cbe4f6d750a858f38204a9def935a25c385c6449 | /visitor11.cpp | 721852b77876ebe559e67761fb1d88189741469c | [] | no_license | dgodfrey206/Visitor11 | 909725f581b5cfc106446f96eddf8f85dee45676 | 3ff6da42b58406d728c8ad2c5b7c6c1e996cb530 | refs/heads/master | 2022-05-23T11:57:39.740553 | 2014-08-21T16:48:08 | 2014-08-21T16:48:08 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,711 | cpp | #include <iostream>
#include <memory>
#include <string>
// The Visitor Pattern
template<class T, class U>
std::unique_ptr<T> make_unique(U&& u)
{
return std::unique_ptr<T>(new T{std::forward<U>(u)});
}
template<class T, class... Args>
std::unique_ptr<T> make_unique(Args&&... args)
{
return std::unique_ptr<T>... | [
"david.godfrey99@gmail.com"
] | david.godfrey99@gmail.com |
7faf5d73cb013169cef22545571e1cb149fe990a | 417471d82b813ff2d386f8875e3f0b7836839d00 | /sources/detectors/include/ComptonG4Crystal.hh | b1bb77975ec4eaaba8d8c424a7f6d797c5b82b17 | [] | no_license | JeffersonLab/hallc_photon_comptong4 | e646a8ee7f16ca760b4c2dfc8328a1fc109fc4c8 | 88978b6532b011e7b1abf963184fde7cbe96c63a | refs/heads/master | 2020-12-29T18:51:48.850811 | 2016-06-09T19:16:01 | 2016-06-09T19:16:01 | 14,373,998 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,499 | hh | /*
* ComptonG4Crystal.hh
*
* Created on: Dec 03, 2014
* Author: Juan Carlos Cornejo <cornejo@jlab.org>
*/
#ifndef COMPTONG4CRYSTAL_HH_
#define COMPTONG4CRYSTAL_HH_
#include <VComptonG4SensitiveDetector.hh>
#include <ComptonG4EDepHit.hh>
#include <ComptonG4OpticalHit.hh>
#include <map>
#include <vector>
cl... | [
"cornejo@jlab.org"
] | cornejo@jlab.org |
29a64ff9e225c7b8730af0703576ba2ee80759ef | f22ebc1404ee597fecbb08ecba4bc01f7fbb0150 | /ch07/exercise7.40.cpp | 29e3a04f10e1651dbf2f328093d17318ef891afe | [] | no_license | matriiix67/cpp-primer | ccb3bd12771488090121d0f336cbb4bfd825f058 | ee10f444ecfb66c5dcf9b88a6af3766f98f152ed | refs/heads/master | 2021-01-21T04:44:31.816805 | 2018-04-02T10:15:00 | 2018-04-02T10:15:00 | 45,467,049 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 467 | cpp | #include <iostream>
#include <string>
class Book
{
public:
Book(unsigned isbn, std::string const& name, std::string const& author, std::string const& pubdate)
:isbn_(isbn), name_(name), author_(author), pubdate_(pubdate)
{ }
explicit Book(std::istream &in)
{
in >> isbn_ >> ... | [
"matriiix67@gmail.com"
] | matriiix67@gmail.com |
cd94c78a97eb6501eb653491f23c04aedfb40e54 | 29f2549998b45a046930f3b1c5e3024791b1be16 | /lib/Transforms/Instrumentation/RSProfiling.cpp | 9997d9dca98bf041acf76493dc4cd4eee37ebc3f | [
"NCSA"
] | permissive | fanfuqiang/iec-61131_new | eda210bd30a6a32e3d14c3d3e87f51b179124c72 | fde56fdefd60e33facaa07661e388ed6c916c763 | refs/heads/master | 2016-09-05T14:59:12.678870 | 2015-02-06T23:55:09 | 2015-02-06T23:55:09 | 30,048,552 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 23,836 | cpp | //===- RSProfiling.cpp - Various profiling using random sampling ----------===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===------------------------------------------------------... | [
"feqin1023@gmail.com"
] | feqin1023@gmail.com |
3b920cc619f615d465e83978ee9065a72dcb3c20 | 8c540a482bdf6217c3f72aebf8a13966a6b48dbe | /containers/matrix.cpp | 1b0fb3edb2fb6466234c905824f8aa486c63263c | [] | no_license | eyupgurel/workbench | 6633d131fac470ed981bcd193684b28948af1af6 | 4af3e71444f96a8ccff6bf594867daca48f2119e | refs/heads/master | 2020-04-21T16:17:29.864851 | 2019-10-16T19:45:30 | 2019-10-16T19:45:30 | 169,695,934 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,363 | cpp | //
// Created by egl on 6/17/19.
//
#include <numeric>
#include "matrix.h"
using namespace containers;
template<typename T,size_t N>
Matrix<T,N> containers::operator+(const Matrix<T,N>& m,const T& val){
Matrix<T,N> res=m;
res+=val;
return res;
}
template<typename T,size_t N>
Matrix<T,N> containers::ope... | [
"eyupgurel@gmail.com"
] | eyupgurel@gmail.com |
b19607066a6bbe8b22f4804ed3319dbac9e4272a | 5ed2ca9c903d78dec4f2abff005d39ed5f8c34b7 | /105. Construct Binary Tree from Preorder and Inorder Traversal/src/main.cpp | de29c8b6e31cc7e269f35d06cfbc721adf267d20 | [
"MIT"
] | permissive | zhenkunhe/LeetCode | 68faad793c06bc33a7ddf6431bf2fb6d400ea8ac | 17a9a4d63d21888c7e7d300d5e29201f8621fd63 | refs/heads/master | 2021-10-22T00:40:39.357907 | 2019-03-07T11:01:28 | 2019-03-07T11:01:28 | 111,090,427 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,747 | cpp | #include <iostream>
#include <algorithm>
#include <vector>
#include <unordered_map>
#include <tree.hpp>
using namespace std;
class Solution
{
public:
TreeNode* buildTree(vector<int>& preorder, vector<int>& inorder)
{
if ( preorder.size() == 0 ) return nullptr;
TreeNode *root = new TreeNode(preorder.front());
... | [
"zhenkunhe@gmail.com"
] | zhenkunhe@gmail.com |
936eb5e13c5724ce3d1a75227cec22f2ba2b34d0 | 6adaf5286b0d72fa4f0df4aa9abddccc4cdfd1c1 | /customtower/nklib/src/memory.cpp | bdefbc6c0e4b0f799b21dd9aa53de00553a4f879 | [
"MIT"
] | permissive | myumoon/customtower | 34b00212b7b3308b0b86b90ae04e94a7b87ac1af | 85980f5aea1f8b869069ed1da3a14491e2dc8968 | refs/heads/master | 2021-01-25T05:09:58.140180 | 2017-06-06T13:02:43 | 2017-06-06T13:02:43 | 93,515,235 | 0 | 0 | null | null | null | null | SHIFT_JIS | C++ | false | false | 748 | cpp | //=============================================================================
/*! @file memory.cpp
@brief メモリ操作
@author ryunosuke ide
@date 2013.05.06
*/
//=============================================================================
//-------------------------------インクルード-------------------------------
#inclu... | [
"ryumyu0120@gmail.com"
] | ryumyu0120@gmail.com |
4885a18348902308f01b7f1685617ab1fc842519 | b7881f178c7ecf030e1b540885181a617124b79a | /WildFireInstance/WildFireInstance.ino | 86524b46cf37b6771820fa817a96b41d928c2817 | [] | no_license | jrleeman/WeeStinkyMonitor | 7303137593d03d1edb46e46b7b8a0c7a64540f0f | 163c35c733fb1d93ffcd0b58dfa315b0f275762b | refs/heads/master | 2021-01-14T08:47:05.590178 | 2015-07-28T19:27:03 | 2015-07-28T19:27:03 | 39,889,353 | 0 | 0 | null | 2015-07-29T11:12:52 | 2015-07-29T11:12:49 | Arduino | UTF-8 | C++ | false | false | 7,336 | ino | /***************************************************
This is an example for the Adafruit CC3000 Wifi Breakout & Shield
Designed specifically to work with the Adafruit WiFi products:
----> https://www.adafruit.com/products/1469
Adafruit invests time and resources providing this open source code,
please sup... | [
"petmar@gmail.com"
] | petmar@gmail.com |
c9d0f78b58d063d01cb60faa829d0be9ea0dfe09 | 61bd9ef77bc11a903069b8e409e3b535dfcf9e4f | /include/Slicer.hpp | 7f68f4457afda2c506a039094ab536e522028011 | [] | no_license | justgook/SlicerLib | 72a20c78bedc02fbde5708d9437c4169379b8488 | 3da1f03076eea47718d69920474cf727a5d3fcee | refs/heads/master | 2020-05-14T13:50:41.569374 | 2014-12-26T12:03:34 | 2014-12-26T12:03:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 869 | hpp | #ifndef __Slicer_H_
#define __Slicer_H_
#include <lua.hpp>
#include "Exception.hpp"
#include "Base.hpp"
class Slicer: public Base {
public:
Slicer(const char *filename): Base(filename, 100) {
}
std::vector<std::string> exec(const char * stlFileContents) {
std::vector<std::string> layers;
... | [
"justgook@gmail.com"
] | justgook@gmail.com |
7b51608d640ca3ac359153a4423206e0cc7f72e4 | 08ed6218f7f4319d31b78e537ab91f40eca928e0 | /malloc1/main.cpp | 9dd9e067dc23d18c36fb63b4ef9ca5d7c48443ef | [] | no_license | 20141105055/malloc1 | 0d12f8164ad3fac093647b8eb11550338a90e39f | 1b4df2e6355bfac2e268fc17a57cbba8ff048634 | refs/heads/master | 2021-01-13T00:37:02.689111 | 2015-11-18T13:21:36 | 2015-11-18T13:21:36 | 46,420,097 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 676 | cpp | //
// main.cpp
// malloc1
//
// Created by 20141105055ljm on 15/11/18.
// Copyright (c) 2015年 20141105055ljm. All rights reserved.
//
#include <iostream>
//#define N 5
int main(int argc, const char * argv[]) {
// insert code here...
int *a;
int N;
int i,j,temp;
a=(int *)malloc(N*4);
... | [
"571836353@qq.com"
] | 571836353@qq.com |
5f61b9d061c671a4ae691a45dd92d6df4c53a888 | ad27bbc83b2e4cd4661d540e58d392b18436d78b | /operator_overload1.cpp | 8c2285d1cfe6d5f976bbffe76033170ea6f4545b | [] | no_license | sonofspring2/cpp_demo | 586a530abd469790a790c4dd65f7460ec12f989b | 4153c516b83e21f1beec0e56b48d79483352c4c9 | refs/heads/master | 2021-01-11T09:16:46.222432 | 2016-12-26T23:33:43 | 2016-12-26T23:33:43 | 77,392,293 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,525 | cpp | #include <iostream>
int gcd(int a, int b){
return b==0 ? a : gcd(b, a %b);
}
class Fraction{
private:
int m_numerator;
int m_denominator;
public:
Fraction(int numerator = 0, int denominator = 0):m_numerator(numerator),m_denominator(denominator){
}
void reduce()
{
int temp = gcd(m_numerator,m_denominator);
... | [
"mdai3@ncsu.edu"
] | mdai3@ncsu.edu |
17e132cd6e4c9c581244c89de536b4e6e81ad836 | e297aeafc02d479ce02a73cb602d178fd22eecb7 | /bomb.h | efc5e5666a4667cf2d7e61ca9a509e85951c4c09 | [] | no_license | mbnatafgi/EECE435LProject | c04b4adfe7b208df384964b60250561806e5505c | 8c149ac315d39f45ee9f09d01ba59ec3497cfdc1 | refs/heads/master | 2022-06-03T01:19:13.770563 | 2020-04-29T01:24:47 | 2020-04-29T16:21:22 | 121,501,940 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 176 | h | #ifndef BOMB_H
#define BOMB_H
#include "weapon.h"
class Bomb: public Weapon
{
public:
Bomb(int strength);
signals:
public slots:
void update();
};
#endif // BOMB_H
| [
"billonatafji"
] | billonatafji |
52161df8510efde4acd0b9be7b56f469ca680254 | 9bdc868dbc3910ae72a05ab66cf53d30dffab2a8 | /src/script/script.cpp | cadc32dbc77c58b6e52dc25e892a836ccb9bbbfe | [
"MIT"
] | permissive | YEPCOIN/Yep-Core | 6aa8a3750e8496509501b7ff4d663a2681854c96 | 541ada7485b28abe1429c400835ce228ca9a6903 | refs/heads/master | 2020-07-03T04:44:44.361866 | 2020-05-06T19:45:05 | 2020-05-06T19:45:05 | 201,787,182 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 11,217 | cpp | // Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2014 The Bitcoin developers
// Copyright (c) 2017-2019 The yep developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "script.h"
#include "tinyformat... | [
"ultrapoolcom@gmail.com"
] | ultrapoolcom@gmail.com |
6f56e899900edf92c44647d6c96f4c4b8e63fd46 | 0be8bd65e0d9fd5ea4bf7be3419bd05be2d57d36 | /branches/SmartGis.1.1.vs08/src/SmtGuiCore/Dlg2DFeatureInfo.cpp | 0e3cf23911330fafa031e73bcec5ff62e44cb972 | [] | no_license | jsccl1988/smartgis | d6b8018b115f43c6542c3156b63f187995a7920c | 6c5cbdbd3d939012eebb8bd19964815b60215bb4 | refs/heads/master | 2022-12-14T09:45:54.540512 | 2022-12-07T08:43:12 | 2022-12-07T08:43:12 | 55,857,404 | 4 | 3 | null | null | null | null | GB18030 | C++ | false | false | 3,643 | cpp | // Dlg2DFeatureInfo.cpp : 实现文件
//
#include "stdafx.h"
#include "Dlg2DFeatureInfo.h"
#include "gis_attribute.h"
#include "geo_geometry.h"
#include "bl_envelope.h"
#include "smt_logmanager.h"
// CDlg2DFeatureInfo 对话框
IMPLEMENT_DYNAMIC(CDlg2DFeatureInfo, CDialog)
CDlg2DFeatureInfo::CDlg2DFeatureInfo(CWnd... | [
"jsccl1988@gmail.com"
] | jsccl1988@gmail.com |
1d0beb74c0f695829635bcd361db760bfab48df6 | 5431502adf171a94aa16f742428bab8ad8340c75 | /esp8266-mp3/src/time.h | 8882308396d714c58ccbb490979ef8a33f343752 | [] | no_license | mxyue/platformIO-demo | 4dcf1c89c7c06886ea763f870d68077a2164672f | 8dd4cf3f49a07487a2f7915ce42953378d3ee673 | refs/heads/master | 2022-11-19T11:31:19.386069 | 2020-07-15T06:36:27 | 2020-07-15T06:36:27 | 279,757,133 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 108 | h | #ifndef TIME_H
#define TIME_H
class Time{
public:
static void Setup();
static void Loop();
};
#endif | [
"basicbox@126.com"
] | basicbox@126.com |
8d7daf876b1a3cab96144d032c99b4346ebb845f | 44ab57520bb1a9b48045cb1ee9baee8816b44a5b | /AssistTesting/Code/Editor/TerrainEditor/TerrainEditorAssistTesting/TestingLib.cpp | 1149bee262dd0a6798d4a039a3e2e69bbab5c329 | [
"BSD-3-Clause"
] | permissive | WuyangPeng/Engine | d5d81fd4ec18795679ce99552ab9809f3b205409 | 738fde5660449e87ccd4f4878f7bf2a443ae9f1f | refs/heads/master | 2023-08-17T17:01:41.765963 | 2023-08-16T07:27:05 | 2023-08-16T07:27:05 | 246,266,843 | 10 | 0 | null | null | null | null | GB18030 | C++ | false | false | 281 | cpp | /// Copyright (c) 2010-2023
/// Threading Core Render Engine
///
/// 作者:彭武阳,彭晔恩,彭晔泽
/// 联系作者:94458936@qq.com
///
/// 标准:std:c++20
/// 版本:0.9.1.2 (2023/07/31 19:27)
#include "System/SystemLib.h"
#include "CoreTools/CoreToolsLib.h"
| [
"94458936@qq.com"
] | 94458936@qq.com |
1d4a58107ecbfe6874e7825166db7318d022f9e2 | 3bfb4db44ae9f434a7c25fdbe2cfcd637369437f | /passbutter_driver/include/passbutter_driver/stepper_command_node.hpp | a3c2918816336ba0f0e1e8c5ec8fa29ddceaea5f | [
"MIT"
] | permissive | passbutter-robot/passbutter_hw_ros | 20b8820d61a38af5871d7df8c0e29240aff0d3f5 | ed5c53f54351e430ce56fd90b30e8459cfa9d6fa | refs/heads/main | 2023-03-04T21:21:26.188169 | 2021-02-21T22:08:44 | 2021-02-21T22:08:44 | 313,076,435 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 390 | hpp | #include <rclcpp/rclcpp.hpp>
#include <example_interfaces/msg/int32.hpp>
namespace passbutter_driver
{
class StepperCommandNode : public rclcpp::Node
{
private:
rclcpp::Publisher<example_interfaces::msg::Int32>::SharedPtr _steps;
rclcpp::TimerBase::SharedPtr _timer;
int _stepCount;
bool _reverse;
... | [
"manuel.meyer.extern@googlemail.com"
] | manuel.meyer.extern@googlemail.com |
1fc6b3c197c13b1621a4a61b76902c49b3ed3c49 | 18a3f93e4b94f4f24ff17280c2820497e019b3db | /BOSS/eformat/BadVersionIssue.h | d236a9c44bd0dce1fe3a7f3f4c42ce168c5ac52d | [] | no_license | jjzhang166/BOSS_ExternalLibs | 0e381d8420cea17e549d5cae5b04a216fc8a01d7 | 9b3b30f7874ed00a582aa9526c23ca89678bf796 | refs/heads/master | 2023-03-15T22:24:21.249109 | 2020-11-22T15:11:45 | 2020-11-22T15:11:45 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,707 | h | //Dear emacs, this is -*- c++ -*-
/**
* @file eformat/BadVersionIssue.h
* @author <a href="mailto:Andre.dos.Anjos@cern.ch">Andre DOS ANJOS</a>
* $Author: zhangy $
* $Revision: 1.1.1.1 $
* $Date: 2009/06/19 07:35:41 $
*
* @brief Exception thrown when versions do not match
*/
#ifndef EFORMAT_BADVERSIONISSUE_H
... | [
"r.e.deboer@students.uu.nl"
] | r.e.deboer@students.uu.nl |
d45f8103b797a47f520548f85fd6b48debf2f627 | fb29a164f4faf42aa4fe33d9bf3f72e010f7bb43 | /src/HyperscanEngine.h | 912d6c194dc286e5349d4f8bf83a57d4a35790e3 | [
"BSD-2-Clause"
] | permissive | ChoiJongKwon/regexbench | 54181167fee51e5f0d95039022939c0c327def0e | 2ebb1a9bb0badcfa83f6ba0881ac7d41dd9736a7 | refs/heads/master | 2021-01-18T22:24:16.280016 | 2016-03-19T06:15:55 | 2016-03-19T06:15:55 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 963 | h | // -*- c++ -*-
#ifndef REGEXBENCH_HYPERSCANENGINE_H
#define REGEXBENCH_HYPERSCANENGINE_H
#include <hs/hs_compile.h>
#include <hs/hs_runtime.h>
#include "Engine.h"
namespace regexbench {
class HyperscanEngine : public Engine {
public:
HyperscanEngine();
HyperscanEngine(const HyperscanEngine &) = delete;
Hypers... | [
"msk@dolbo.net"
] | msk@dolbo.net |
d64e8b9b56bd686e6ecf822d3c53b18074bd33e8 | 90485a9a5bac59e63151f3381bbf37a22266f042 | /MP4.Parser.Atom/MP4.ILOC.cpp | 27bbe5b4ff9d5e1973183f80f5db5855a81954e9 | [] | no_license | yodamaster/MP4Parse | e2fbd5d9a5ab25f77e64778a1233c6252222fcf2 | 2f6dfa580f8f9c71acd40feba6b01c1cd589ec5c | refs/heads/master | 2021-01-24T02:58:47.932151 | 2013-05-07T01:37:15 | 2013-05-07T01:37:15 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,083 | cpp | /*******************************************************************************
* Copyright (c) 2011, Jean-David Gadina <macmade@eosgarden.com>
* Distributed under the Boost Software License, Version 1.0.
*
* Boost Software License - Version 1.0 - August 17th, 2003
*
* Permission is hereby granted, free of cha... | [
"1875444804@qq.com"
] | 1875444804@qq.com |
e1ef1db88c0e7a7a674bba4f685de7b52edf30e6 | 5a9f6933390a0a623d7857de2098eb09e920e24b | /lab_5/3.cpp | 1e8fceb561b205680ba592efcca17855be9defe5 | [] | no_license | enderdaniil/OOP_labs | 137468539b17d54a8b771cf3e96c4f03524a58c6 | cce3734078f31f4548a65fc361586794f5f7dc50 | refs/heads/master | 2021-01-02T15:52:54.390142 | 2020-06-01T16:34:26 | 2020-06-01T16:34:26 | 239,691,455 | 0 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 729 | cpp | #include <iostream>
using namespace std;
class time
{
private:
int sec;
int hrs;
int min;
public:
time()
{
sec = 0;
hrs = 0;
min = 0;
}
time(int a, int b, int c)
{
sec = c;
min = b;
hrs = a;
}
void display()
{
cout << hrs << ":" << min << ":" << sec;
}
void add_time(time t1, time t2)
{
... | [
"noreply@github.com"
] | noreply@github.com |
5bd0b16fbf84ef46f4190f6e3621ecb250d4e887 | a04078faf89c87b81b15800c9a3d53b229c1ba20 | /estructuras/Ejercicios/10_recursividadNumPrimos.cxx | d5ba76a71cfc0ceaae66a5b367e124a833914f77 | [] | no_license | dbetm/algoritmia-programacion-y-estructuras-datos | 43f36dfbab5ae88b40cd0baec4a593850e194e03 | ce1922047c4a018f725b81834e43a75148b07780 | refs/heads/master | 2022-04-05T04:17:32.960769 | 2020-02-18T02:40:12 | 2020-02-18T02:40:12 | 67,320,653 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 748 | cxx | #include <iostream>
#include <cstdlib>
//Recursividad
using namespace std;
class Primo {
private:
public:
Primo();
bool esPrimo(int, int);
~Primo();
};
Primo::Primo() {}
bool Primo::esPrimo(int num, int divisor) {
if(num == 1) return false;
if(num == 2) return true;
if(div... | [
"davbetm@gmail.com"
] | davbetm@gmail.com |
2e4a3c335020952cf0fc1cbd75e1772ed7e42741 | 17df2fb9dc2d6dbddff8fd4262db74d1c5c6bab5 | /netease/major/05_dp/strategy/new/FRTax.cpp | 4a0f1232977e05beef0ad56069b4871faf2c61ab | [] | no_license | mumingv/cpp | 248a786e1a554a16c179a271ff630594e24e8639 | 8db212d4ea814449a489e11618385efc94e86a06 | refs/heads/master | 2020-04-06T14:12:51.421153 | 2016-12-04T10:59:13 | 2016-12-04T10:59:13 | 52,728,536 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 157 | cpp | #include <iostream>
#include "FRTax.h"
using namespace std;
// 法国的税
double FRTax::Calculate() {
cout << "Calculate called in FRTax" << endl;
}
| [
"mumingv@163.com"
] | mumingv@163.com |
ff3fbb6cc80378cf51253faaf820ecbc3e2d7dd9 | 19194c2f2c07ab3537f994acfbf6b34ea9b55ae7 | /android-32/android/widget/AbsListView_LayoutParams.def.hpp | c4ac5f8c6fc17def0eb7c0fb16944ff6d958c276 | [
"GPL-3.0-only"
] | permissive | YJBeetle/QtAndroidAPI | e372609e9db0f96602da31b8417c9f5972315cae | ace3f0ea2678967393b5eb8e4edba7fa2ca6a50c | refs/heads/Qt6 | 2023-08-05T03:14:11.842336 | 2023-07-24T08:35:31 | 2023-07-24T08:35:31 | 249,539,770 | 19 | 4 | Apache-2.0 | 2022-03-14T12:15:32 | 2020-03-23T20:42:54 | C++ | UTF-8 | C++ | false | false | 947 | hpp | #pragma once
#include "../view/ViewGroup_LayoutParams.def.hpp"
namespace android::content
{
class Context;
}
namespace android::view
{
class ViewGroup_LayoutParams;
}
namespace android::widget
{
class AbsListView_LayoutParams : public android::view::ViewGroup_LayoutParams
{
public:
// Fields
// QJniObjec... | [
"YJBeetle@gmail.com"
] | YJBeetle@gmail.com |
9539c47027b2a60a5de27e71f0481dc6934b74e2 | 9546b2c00eaefbe9eb57f4f14711214b2009dc3b | /ChronoEngine/src/unit_FEA/ChElementHexa_20.cpp | a1d250ce88734c77ffcc7a75d2fbe584c8524752 | [
"BSD-3-Clause"
] | permissive | globus000/cew | 671096366385805a8f4dbe2d2f8c185edb4163cb | 13d2a3c007239c8caccab2c5198ef5e8147369e1 | refs/heads/master | 2016-09-05T09:18:55.011986 | 2015-04-26T16:45:00 | 2015-04-26T16:45:00 | 34,566,328 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 343 | cpp | #include "ChElementHexa_20.h"
namespace chrono
{
namespace fea
{
ChElementHexa_20::ChElementHexa_20()
{
nodes.resize(20);
this->StiffnessMatrix.Resize(60,60);
this->ir = new ChGaussIntegrationRule;
this->SetDefaultIntegrationRule();
}
ChElementHexa_20::~ChElementHexa_20()
{
}
} // END_OF_NAMESPACE____
} /... | [
"zr_contact@mail.ru"
] | zr_contact@mail.ru |
fbe11dd6e55a7411bbbc514399b2487e801f4930 | df4801ee18b4e2d3e3cf71c7191bf5d75db38cb9 | /Util/IDTriple.cpp | 1e0b7329df7877b1baa963abbfde25354145b627 | [
"BSD-3-Clause"
] | permissive | pkumod/gStore | 86660495e14ec0880c4d652fff561bcebbea3573 | a31e2c256afbfd2035f4abddaeee8948178ae8ca | refs/heads/1.0 | 2023-07-24T00:29:22.814664 | 2023-07-13T15:13:00 | 2023-07-13T15:13:00 | 26,917,250 | 564 | 178 | BSD-3-Clause | 2022-10-05T06:46:26 | 2014-11-20T14:59:01 | C++ | UTF-8 | C++ | false | false | 692 | cpp |
#include "IDTriple.h"
bool IDTriple::operator < (const IDTriple& a) const
{
if(this->subject < a.get_subject()) return true;
else if(this->subject > a.get_subject()) return false;
else
{
if(this->predicate < a.get_predicate()) return true;
else if(this->predicate > a.get_predicate()) return false;
else
{
... | [
"liwenjiehn@pku.edu.cn"
] | liwenjiehn@pku.edu.cn |
53204ccc3b76f67110a21f621cf18e982cd1e6b4 | cfee198c3ec5225249fa2cdc66d1639c631c2b3f | /src/core/visual/win32/krmovie/ogg/AutoAnxSeekTable.h | 1793272d6bda184c572ab997689cc3f28b9af5c5 | [
"FTL",
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-unknown-license-reference",
"Libpng",
"Zlib",
"Apache-2.0",
"BSD-2-Clause-Views",
"BSD-2-Clause",
"BSD-3-Clause"
] | permissive | unlimit999/krkrz | adb1948797f668f2d225c4c66c39ac86292ac9df | 627bd42b67943071874a5fe1a9645b021bd6bc99 | refs/heads/master | 2021-01-15T14:24:40.775799 | 2016-04-26T13:39:08 | 2016-04-26T13:39:08 | 57,589,538 | 1 | 0 | null | 2016-05-01T07:47:12 | 2016-05-01T07:47:11 | null | UTF-8 | C++ | false | false | 715 | h | #pragma once
#include <libOOOggSeek.h>
#include <AutoOggSeekTable.h>
#include <string>
using namespace std;
class AutoAnxSeekTable : public AutoOggSeekTable
{
public:
#ifdef UNICODE
AutoAnxSeekTable(wstring inFileName);
#else
AutoAnxSeekTable(string inFileName);
#endif
virtual ~AutoAnxSeekTable(void);
//virt... | [
"info@kaede-software.com"
] | info@kaede-software.com |
5fc65d7fc0dd98cf59ab9ad741b8f39f747afdfd | 386687b3b39ba50e1fb57f1a5a62dc77c532af92 | /kern/drv/ahci/port/common.hpp | e978e121014bb38b97e4a83c496c724932373898 | [
"MIT"
] | permissive | SmartPolarBear/project-dionysus | cdb0c27a591416a84d9c97363b2d83fb79e856b3 | ec0f8aa3aa307b8e81dd06dc2d24669937df747d | refs/heads/master | 2022-02-13T15:48:17.610980 | 2022-01-24T14:45:11 | 2022-01-24T14:45:11 | 208,278,970 | 31 | 1 | MIT | 2022-01-24T06:34:39 | 2019-09-13T14:16:41 | C++ | UTF-8 | C++ | false | false | 316 | hpp | #pragma once
#include "system/types.h"
#include "system/memlayout.h"
#include "system/pmm.h"
#include "drivers/ahci/ahci.hpp"
#include "drivers/ahci/ata/ata.hpp"
#include "drivers/ahci/ata/ata_string.hpp"
#include "drivers/ahci/atapi/atapi.hpp"
error_code common_identify_device(ahci::ahci_port* port, bool atapi); | [
"clevercoolbear@outlook.com"
] | clevercoolbear@outlook.com |
d20b3534fa0b60547854dcfb2a256aca7de4303b | 5913c04d5cb74fe331cf8f401a33e6aa5b1cc9f5 | /CSCI2275/HW/HW2/assignment2.cpp | 8a728431787c2b17bc1a424c3919c508436e67ac | [] | no_license | Andrew123098/LearningCpp | 830708090ba7351283b34f0489e1600551f45e80 | 02913191e62f5850f6e7dba10a816c1b5029c512 | refs/heads/master | 2023-01-31T23:55:02.197646 | 2020-12-13T06:41:39 | 2020-12-13T06:41:39 | 291,550,446 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,360 | cpp | /* Andrew Brown / 9/10/2020 / HW2 / CSCI 2275 / Dr. Rhonda Hoenigman */
/*input
garageSale.txt
*/
#include <iostream>
#include <sstream>
#include <fstream>
#include <string>
#include <vector>
#include "MessageBoard.h"
using namespace std;
// Main function run
int main(int argc, char *argv[])
{
MessageBoard mb; ... | [
"andrewb1230@gmail.com"
] | andrewb1230@gmail.com |
eb037c901b42c30ce30e4cc067c4fd8fb0807c58 | a5ab1c1743fa0472198ac834b83101ef1289c445 | /人脸检测/ProDlg.cpp | 50523153026d8d0c595ae30ad95a69d1406b79db | [] | no_license | ywydigital/FaceDetection | 391e1db0d8a9ce7261622a0e5afe13715eb03c54 | 072efa379a01b55b8901242d40842f468527d3d7 | refs/heads/master | 2021-01-25T03:19:57.399849 | 2015-04-27T15:50:39 | 2015-04-27T15:50:39 | 34,673,997 | 0 | 1 | null | null | null | null | GB18030 | C++ | false | false | 528 | cpp | // ProDlg.cpp : 实现文件
//
#include "stdafx.h"
#include "Face.h"
#include "ProDlg.h"
#include "afxdialogex.h"
// CProDlg 对话框
IMPLEMENT_DYNAMIC(CProDlg, CDialogEx)
CProDlg::CProDlg(CWnd* pParent /*=NULL*/)
: CDialogEx(CProDlg::IDD, pParent)
{
}
CProDlg::~CProDlg()
{
}
void CProDlg::DoDataExchange(CDataExchange* p... | [
"ying930628@163.com"
] | ying930628@163.com |
43526196730c7e8f8a326bf52abf6bd873dc3e0e | ff09ffc4064ddcb1b042ece3dd25c3b04e3f1de3 | /rasterizer_fast.h | 595b95996255d989472811ddbaa0195f7645528d | [
"MIT"
] | permissive | ZhenwenHe/voxelizer | 3aa02be8061284c3345b13d1d5cc833b3790262e | 351bb5f56672d283ce08a1f9dccfc20725c2bdb9 | refs/heads/master | 2023-04-04T09:20:56.645034 | 2021-04-10T16:36:26 | 2021-04-10T16:38:42 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,708 | h | #pragma once
#include "polyhedron/mesh/polyhedron.h"
#include "polyhedron/glm_ext/glm_extensions.h"
#include "index_buffer.h"
#include "raster_results.h"
#include "checks.h"
#include "buffer.h"
#include "timer.h"
#include <set>
#include <unordered_set>
#include <omp.h>
namespace rasterize {
//! generates a vox... | [
"dgdanielf@gmail.com"
] | dgdanielf@gmail.com |
a625e2f0aa2c454310e282068b83cf1c459d9cf9 | e70316f88b896d51a4820993b63bd3a575b849ec | /CodeGeneration/generator/else_expr.hpp | 03645cc4edcc851b52908d4ef6d5612289141089 | [
"Unlicense"
] | permissive | tedi21/SisypheReview | 0e634a2f24a3eb464dab3c050b7337462d0c8442 | a3eb490bf7d049e54ce845d4b4ae6da156927cd2 | refs/heads/master | 2023-02-09T08:11:52.522055 | 2022-07-31T16:09:22 | 2022-07-31T16:10:21 | 61,547,357 | 0 | 0 | Unlicense | 2023-02-04T12:00:11 | 2016-06-20T12:50:37 | C | ISO-8859-2 | C++ | false | false | 813 | hpp | /**
* @class else_expr
* @date 15/10/2012
* @author Teddy DIDÉ
* @version 2.0
* @brief
*/
#ifndef ELSE_EXPR_HPP
#define ELSE_EXPR_HPP
#include "if_generator.hpp"
#include "condition.hpp"
namespace gen {
class else_expr
: public cond_expr < else_expr >
{
public:
template <class T__>
... | [
"teddy.dide@gmail.com"
] | teddy.dide@gmail.com |
c4a752423d07f71634a81a3dbb7e637232c06d87 | 17bced0d17c54b4eb98a457e22ede2e764143ee0 | /FTP.cpp | c794f39df228a6e73175c9d3052dc1efd110dfed | [] | no_license | DogAddan/FTPClient | 073604715af0c92e37744e18d921dc14e991b9e3 | f6b3766ccb51bea57a3df4b3a5395ac2597fc0e7 | refs/heads/master | 2020-05-02T20:31:42.605513 | 2019-03-28T12:28:59 | 2019-03-28T12:28:59 | 178,194,363 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,917 | cpp | #include "FTP.h"
#include <iostream>
#include <fstream>
#include <fcntl.h>
#include <sys/stat.h>
#include <time.h>
using namespace std;
//连接FTP服务器
void FTP::linkServer(void)
{
//发送用户名
socketSend->sendMsg("USER %s\n","EOS1811");
//接收
socketSend->recvMsg();
//发送密码
socketSend->sendMsg("PASS %s\n","ooss1811");
... | [
"1074711738@qq.com"
] | 1074711738@qq.com |
c1733188b6706d43f9cb513ae6fb080766c3c9d5 | 98c21813a931b393279c49b195fad14c0ae17e24 | /src/allocators.h | c2e5cf3beb9770043dfb669d4c4129f9279eeca0 | [
"MIT"
] | permissive | zapcard/zapcard | 67b941ba46c48c1d4e01e74587946cc03f4007b1 | daf3414dd9b9ef11b76a167d39d7b7ade4f2a2a8 | refs/heads/master | 2020-07-03T14:17:54.860546 | 2017-04-04T13:37:29 | 2017-04-04T13:37:29 | 75,870,754 | 3 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 9,044 | h | // Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2013 The Zapcard developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef BITCOIN_ALLOCATORS_H
#define BITCOIN_ALLOCATORS_H
#include <map>
#include... | [
"dev@zapcard.org"
] | dev@zapcard.org |
ef915793129a4955e08c4f25e79e641b54a9592f | 64e4fabf9b43b6b02b14b9df7e1751732b30ad38 | /src/chromium/gen/gen_combined/third_party/blink/public/mojom/loader/previews_resource_loading_hints.mojom-shared.h | 1107aec7f13f4591452903f02f667a9485299f04 | [
"BSD-3-Clause"
] | permissive | ivan-kits/skia-opengl-emscripten | 8a5ee0eab0214c84df3cd7eef37c8ba54acb045e | 79573e1ee794061bdcfd88cacdb75243eff5f6f0 | refs/heads/master | 2023-02-03T16:39:20.556706 | 2020-12-25T14:00:49 | 2020-12-25T14:00:49 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,196 | h | // Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef THIRD_PARTY_BLINK_PUBLIC_MOJOM_LOADER_PREVIEWS_RESOURCE_LOADING_HINTS_MOJOM_SHARED_H_
#define THIRD_PARTY_BLINK_PUBLIC_MOJOM_LOADER_PREVIEWS_RESOU... | [
"trofimov_d_a@magnit.ru"
] | trofimov_d_a@magnit.ru |
9b836dc4d2e5c78bb756630bb15d6b48a70c0163 | 06528d98efc84b07df2a06cba9e70b350d3deb1b | /vm/virtualmemorymanager.cc | 6955b674b336352faf5437ae33248a1080761c6b | [] | no_license | nickkray/project3_170 | 4e73a0c4f460205fa7a2e0f4f072ec31d88e68bf | ae130b263a38a52e4c7ce3b9384e24fbb62e19bb | refs/heads/master | 2021-06-17T04:21:45.144712 | 2017-06-06T19:57:20 | 2017-06-06T19:57:20 | 92,564,085 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,006 | cc | /*
* VirtualMemoryManager implementation
*
* Used to facilitate demand paging through providing a means by which page
* faults can be handled and pages loaded from and stored to disk.
*/
#include <stdlib.h>
#include <machine.h>
#include "virtualmemorymanager.h"
#include "system.h"
VirtualMemoryManager::VirtualMem... | [
"nray@umail.ucsb.edu"
] | nray@umail.ucsb.edu |
e72d3b5a191fb42ad758458041f7ee87e0d2190e | b89f06087affcb6ecbaa325132c0bf50899b7793 | /OpenGLCodeBase/Graphics For Games/Graphics Coursework/EnjoyColladaMesh.h | 9328d608e430e79badab791b591d36ad665d2cf0 | [] | no_license | Vin-Han/OpenGL-CodeBase-Easy | 9eec2a3c8a09bb8dd4b44b7ca15ce85cd945359b | 144391eaa75211d929d34e8c571971e8291bbeca | refs/heads/master | 2021-02-05T12:30:50.748292 | 2020-02-28T14:26:34 | 2020-02-28T14:26:34 | 243,780,351 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 236 | h | #pragma once
#include "EnjoyCollada.h"
#include "../../nclgl/Mesh.h"
class EnjoyColladaMesh: public EnjoyCollada
{
public:
EnjoyColladaMesh(const char* path);
~EnjoyColladaMesh();
void Draw();
std::vector<Mesh*> ChildMeshes;
};
| [
"b9000838@newcastle.ac.uk"
] | b9000838@newcastle.ac.uk |
fe48c499e83f2b684d79b658c0f0558605583e4e | e3c0499cc58c9fbec887a2e85672d5e29588f9e0 | /opt/if_opt.h | 32f5a7b084aac47754c1d89df6d6facebd06eb31 | [
"BSD-3-Clause"
] | permissive | stevenknown/xoc | bf19fba2a7851f0c91d62846b61f12000993fa94 | 3514aaf0d742e7c1bff956f5a5e96a92102abe8a | refs/heads/master | 2023-05-14T10:18:34.851859 | 2023-04-29T08:15:24 | 2023-04-29T08:15:24 | 40,242,945 | 132 | 19 | NOASSERTION | 2023-09-08T08:04:04 | 2015-08-05T12:02:52 | C++ | UTF-8 | C++ | false | false | 4,621 | h | /*@
XOC Release License
Copyright (c) 2013-2014, Alibaba Group, All rights reserved.
compiler@aliexpress.com
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above c... | [
"steven.known@gmail.com"
] | steven.known@gmail.com |
94772350ba60757c8b8fde1fb079140c1e2be0e5 | 486638f674a9154ca2afeba7fcf7cad62b93b959 | /src/DataNode.h | 721cc42b4bc222addd9660c8b3db19d19cb43682 | [] | no_license | TianfaYao/cerebro | cc071438ffee8ec4f18655fde1ea0f20679d387a | 9be17630a8075910c4f107d5caa2463326768326 | refs/heads/master | 2020-05-09T22:28:26.194603 | 2019-04-09T04:53:34 | 2019-04-09T04:53:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,480 | h | #pragma once
/** This class holds data at 1 instance of time.
Author : Manohar Kuse <mpkuse@connect.ust.hk>
Created : 27th Oct, 2018
**/
#include <iostream>
#include <thread>
#include <mutex>
#include <atomic>
//opencv
#include <opencv2/core/core.hpp>
#include <opencv2/highgui/highgui.hpp>
#inclu... | [
"mpkuse@connect.ust.hk"
] | mpkuse@connect.ust.hk |
978e33955fcbfa4867cb6223e3f5c0f302cdeb39 | 835598eebca539eab8defbdaecc9aaa8337c590e | /mpmissions/exile_server_config/config.cpp | aaba4a10ad6ddc34c6a4c48778f635fc7fcad88c | [] | no_license | evilhomer2/Exile-server-files | e87f5f4666693c08e50b67cc2083e77903a674c3 | 923b8743f67fa9e1962e679283a40ca51af27fd5 | refs/heads/master | 2020-04-08T02:36:14.106821 | 2018-11-24T15:07:31 | 2018-11-24T15:07:31 | 158,941,324 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 186,951 | cpp | /**
* config
*
* Exile Mod
* www.exilemod.com
* © 2015 Exile Mod Team
*
* This work is licensed under the Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License.
* To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-nd/4.0/.
*/
class CfgPatc... | [
"noreply@github.com"
] | noreply@github.com |
1e8448af530cd46fa2629af70633f28a2f452e4c | 6f2b6e9d77fc4dd5e1dae8ba6e5a66eb7c7ae849 | /sstd_boost/sstd/libs/python/test/as_to_python_function.cpp | 0180a73d4adcb4a93d859a8b284121a3e1e4aba4 | [
"BSL-1.0"
] | permissive | KqSMea8/sstd_library | 9e4e622e1b01bed5de7322c2682539400d13dd58 | 0fcb815f50d538517e70a788914da7fbbe786ce1 | refs/heads/master | 2020-05-03T21:07:01.650034 | 2019-04-01T00:10:47 | 2019-04-01T00:10:47 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 427 | cpp | // Copyright David Abrahams 2002.
// 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)
#include <sstd/boost/python/converter/as_to_python_function.hpp>
struct hopefully_illegal
{
static PyObject* convert(int&);... | [
"zhaixueqiang@hotmail.com"
] | zhaixueqiang@hotmail.com |
541fb06e3a1055c581e056a3456b1cfba5e1c40a | fa82a6fe381ebf75f3b107d8d53bb25e3821f5b8 | /engine3d/cpp/ed3_physics_shapes.cpp | 572a31f233c194176f6fb0b70dc4fa65623bacb2 | [] | no_license | motriuc/sasha-noob-engine | 30a005b2c45cdfe41124cd6bfc93447c31e2760d | 91266dda425f533667568bca4eba7315daa357ed | refs/heads/master | 2016-09-06T14:36:58.961996 | 2013-11-02T20:54:03 | 2013-11-02T20:54:03 | 33,181,907 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,222 | cpp | ////////////////////////////////////////////////////////////////////////
// File Name : ed3_physics_shapes.cpp
// Created : 20 1 2012 19:09
// Author : Alexandru Motriuc
// File Path : SLibF\engine3d\include
// System independent : 0%
// Library :
//
// Pu... | [
"sasha@Alexandru-Motriucs-MacBook-Pro.local"
] | sasha@Alexandru-Motriucs-MacBook-Pro.local |
55fd6e2a16de12c2852231edfda2a7a6062538ac | ff3571efe4612dfc69d84904eaac8f7291ae9995 | /3_Pointer&Memory/string_4.cpp | fd7235c85c921ee3faca31084dea1d5421d8249b | [] | no_license | bamin0422/Cpp_study | 0e9730c91f0389330b0f8c4e09f50f93292bc1eb | 70b1344b1c7434e57e80464b31850388fd64514f | refs/heads/master | 2021-01-26T05:43:23.813334 | 2020-05-16T11:13:33 | 2020-05-16T11:13:33 | 243,332,337 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 338 | cpp | #include <iostream>
using namespace std;
int main()
{
char s_str[30] = "", d_str[30] = "";
int i = 0;
cout << "주민등록번호 입력: ";
cin >> s_str;
for (i = 0; s_str[i] != '\0'; i++)
d_str[i] = s_str[i];
d_str[i] = s_str[i];
cout << s_str << endl;
cout << d_str << endl;
return 0;... | [
"bamin0422@gmail.com"
] | bamin0422@gmail.com |
c409546b77b481ffb835da986593b54ac3517b8d | 0c868b796598a6fe9d9bc5ead91e331d33d1bc84 | /lib/mcts/include/PedestrianBelief.h | 050f8b58588fad31fc7371eb16680753befd54cb | [] | no_license | vislab-tecnico-lisboa/tracking_resource_allocation | 06fd2fc5367a511b2d81572d7524496a8d287705 | e204c76bb15c2c2c57b2e56b5652873301de224c | refs/heads/master | 2021-06-08T09:04:14.646201 | 2016-11-02T09:28:29 | 2016-11-02T09:28:29 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,754 | h | #pragma once
#include "ofxMSAmcts.h"
#include <opencv2/video/tracking.hpp>
#define kNumState 6
#define kNumObs 3
#define kNumActions 2
#define kTurnRangeMin -30
#define kTurnRangeMax 30
const double uniform_const=1.0;
const double scales_per_octave=8.0;
using namespace msa::mcts;
using namespace std;
namespace track... | [
"ruihortafigueiredo@gmail.com"
] | ruihortafigueiredo@gmail.com |
dab604c67dfb55c2e0197dba998a22ba14f7a4c1 | 427f48b76d1b312cff7af2d9b535ea333e8d154e | /cpp/container_span_first.cpp | b9b13d4a4bac0f0da0758a25894ba57f48df0068 | [
"MIT"
] | permissive | rpuntaie/c-examples | 8925146dd1a59edb137c6240363e2794eccce004 | 385b3c792e5b39f81a187870100ed6401520a404 | refs/heads/main | 2023-05-31T15:29:38.919736 | 2021-06-28T16:53:07 | 2021-06-28T16:53:07 | 381,098,552 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 950 | cpp | /*
g++ --std=c++20 -pthread -o ../_build/cpp/container_span_first.exe ./cpp/container_span_first.cpp && (cd ../_build/cpp/;./container_span_first.exe)
https://en.cppreference.com/w/cpp/container/span/first
*/
#include <iostream>
#include <span>
#include <string_view>
void print(std::string_view const title,
... | [
"roland.puntaier@gmail.com"
] | roland.puntaier@gmail.com |
e8689f1ecc79872856d855022214be3c8d9831e4 | 844969bd953d7300f02172c867725e27b518c08e | /SDK/OOSLetter_ExclusionEntitlement_Campaign026_functions.cpp | bd522d5fad7af0fdc92ad04a9e3806146104ed42 | [] | no_license | zanzo420/SoT-Python-Offset-Finder | 70037c37991a2df53fa671e3c8ce12c45fbf75a5 | d881877da08b5c5beaaca140f0ab768223b75d4d | refs/heads/main | 2023-07-18T17:25:01.596284 | 2021-09-09T12:31:51 | 2021-09-09T12:31:51 | 380,604,174 | 0 | 0 | null | 2021-06-26T22:07:04 | 2021-06-26T22:07:03 | null | UTF-8 | C++ | false | false | 602 | cpp | // Name: SoT, Version: 2.2.1.1
#include "../pch.h"
/*!!DEFINE!!*/
/*!!HELPER_DEF!!*/
/*!!HELPER_INC!!*/
#ifdef _MSC_VER
#pragma pack(push, 0x01)
#endif
namespace CG
{
//---------------------------------------------------------------------------
// Functions
//----------------------------------------------------... | [
"51171051+DougTheDruid@users.noreply.github.com"
] | 51171051+DougTheDruid@users.noreply.github.com |
e8e00543f16896c4c8a73e402197d3a89245fd01 | c3ffda360b1c77218ee4b09ef941ef2e58a82ec3 | /Playground/OldStuff/facebookcpp/Sources/FacebookCpp/src/Method/GetUsersInfo.cpp | 37362e019090d182eaf553e0b827534e46c24b63 | [] | no_license | StackedCrooked/stacked-crooked | 187ab1f9465223949732336444aa104277223072 | 08cd3e7ea1d7d326792c536f0346f220c347f5e4 | refs/heads/master | 2023-08-15T15:37:43.635922 | 2023-07-19T22:47:46 | 2023-07-19T22:47:46 | 32,498,571 | 5 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 18,716 | cpp | #include "FacebookCpp/Method/GetUsersInfo.h"
#include "Poco/SAX/InputSource.h"
#include "Poco/SAX/SAXParser.h"
#include "Poco/String.h"
#include <iostream>
using namespace FacebookCpp;
using namespace Poco;
using namespace XML;
using namespace std;
std::map<std::string, GetUsersInfo::FbStruct> GetUse... | [
"StackedCrooked@users.noreply.github.com"
] | StackedCrooked@users.noreply.github.com |
848e4e191524f15c247afc453a6a2f1d0b56d82a | 1f30943b7847a136826f6bcad7ad45a081aa5f89 | /geometry/render/gl_renderer/test/shader_program_test.cc | b3b1b2aad374f6678d028ef90dda6fcd2d54d623 | [
"BSD-3-Clause"
] | permissive | ashishraste/drake | a368390bfe9bb92908185eb3883b333af0f09731 | da9e9f2e868c0ea42b9059c94c60e212b8c23f43 | refs/heads/master | 2022-11-16T05:43:13.114253 | 2020-07-05T00:05:11 | 2020-07-05T00:05:11 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,282 | cc | #include "drake/geometry/render/gl_renderer/shader_program.h"
#include <fstream>
#include <memory>
#include <string>
#include <gtest/gtest.h>
#include "drake/common/temp_directory.h"
#include "drake/common/test_utilities/expect_throws_message.h"
#include "drake/geometry/render/gl_renderer/opengl_context.h"
namespac... | [
"noreply@github.com"
] | noreply@github.com |
1624ec2e6c2c13b25ab99a5b70eb4d73d7f05aa9 | f76c467deed8763ca47ff37fa25be249bd53ded3 | /PAT/Basic/PAT1023.cpp | 5341e1dcff5505b8c62b65b04fd1bc7ca2576f7e | [] | no_license | FiveLemon/Code | 3e0aa9944d81dec5951b6166e9e62122815e8994 | 27b1ca436cbd230a5a15c80cabd3451dd69f6c37 | refs/heads/master | 2021-10-09T01:41:37.304186 | 2018-12-20T03:15:23 | 2018-12-20T03:15:23 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 991 | cpp | #include<iostream>
#include<string>
#include<algorithm>
#include<vector>
#include<sstream>
using namespace std;
template<class out, class in>
out ConvertDataType(const in& a);
int main()
{
vector<int> data;
int number;
int counter = 10;
vector<int>::iterator start;
string figure;
while(counter--... | [
"qinchuanqing918@163.com"
] | qinchuanqing918@163.com |
2afd734dd491d04ddb81220b54dd113f28f815d6 | 3b084e3dd39850597bdc22ca8accb4c84706b643 | /thisjuly2.cpp | 3092d13efed92c18836cb2537e56923cffe92871 | [] | no_license | prasadgujar/Programming | bc429430056db6b5d1bea23df4a66af800861e0e | 3622ba240f3727c27ce26e70bfeafffb1553f6b7 | refs/heads/master | 2021-01-25T16:59:54.056472 | 2018-01-14T12:37:17 | 2018-01-14T12:37:17 | 102,753,402 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,723 | cpp | #include<bits/stdc++.h>
using namespace std;
#define pb push_back
#define mp make_pair
#define pii pair<int,int>
#define vi vector<int>
#define vpii vector<pii>
#define fi first
#define se second
#define FOR(i,n) for(int (i)=0;(i)<(n);++(i))
#define FORI(i,n) for(int (i)=1;(i)<=(n);++(i))
#define IN(x,y) ((y).find(x)!=... | [
"prasadgujar16@gmail.com"
] | prasadgujar16@gmail.com |
84d7e9aa65f175d41800d6c73a5f06d9d1068812 | f9875c7e397ef3fb9bedd0bc4d482da6f6612f0f | /script/PixImgDisp.cpp | 568d172c1d889393925dd7ffeeb50f1856d595e4 | [] | no_license | a8039974/XrayCT | 57e0816f993a65e75168c800d07187266ad4b275 | ad6e05ad2d724eaf74f5df261fa073ace6f438da | refs/heads/master | 2021-09-14T12:10:13.964163 | 2018-05-13T14:43:18 | 2018-05-13T14:43:18 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,000 | cpp | // Display and save pixel reconstruction results from data files
#include "CmdTools.hpp"
#include "T2D.hpp"
#include <tclap/CmdLine.h>
int main(int argc, char **argv) {
TCLAP::CmdLine cmd("Interpolate and display a region of a pixel image on screen.");
TCLAP::UnlabeledValueArg<string> inpath_fnameArg("inpath_fn... | [
"han.wang.fr@gmail.com"
] | han.wang.fr@gmail.com |
085711c3b873e28b14d63a9bd8fb12d16b9c61ac | f14626611951a4f11a84cd71f5a2161cd144a53a | /武侠世界/代码/Common/Packets/GWRelation.cpp | b8787569b364d11b1df767618acb167538be0bc6 | [] | no_license | Deadmanovi4/mmo-resourse | 045616f9be76f3b9cd4a39605accd2afa8099297 | 1c310e15147ae775a59626aa5b5587c6895014de | refs/heads/master | 2021-05-29T06:14:28.650762 | 2015-06-18T01:16:43 | 2015-06-18T01:16:43 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 593 | cpp | #include "stdafx.h"
#include "stdafx.h"
#include "GWRelation.h"
BOOL GWRelation::Read( SocketInputStream& iStream )
{
__ENTER_FUNCTION
m_Relation.Read( iStream ) ;
return TRUE ;
__LEAVE_FUNCTION
return FALSE ;
}
BOOL GWRelation::Write( SocketOutputStream& oStream )const
{
__ENTER_FU... | [
"ichenq@gmail.com"
] | ichenq@gmail.com |
a492e11a69d1bf83a7f2fd0b309c9ba6d87b0758 | 7c072be9bac76704bc83a48faa336d11c478d01f | /chapter11X_Q03e.cpp | 86f37140555e46366e9350a13fe750881b280506 | [
"MIT"
] | permissive | aliyyousuff/learncpp.com | c11dc3693097d0cccabe955929c94817ea9af606 | 1742f1ae4e431b698061840b791f4eef50fce2ee | refs/heads/main | 2023-04-26T13:55:25.808779 | 2021-05-22T06:57:02 | 2021-05-22T06:57:02 | 349,706,831 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,209 | cpp | /*
e) Now we want to be able to print our monster so we can validate it’s correct. To do that, we’re going to need to write a function
that converts a Monster::Type into a string. Write that function (called getTypeString()), as well as a print() member function.
*/
#include <iostream>
#include <string>
#include... | [
"noreply@github.com"
] | noreply@github.com |
21a6054883b026b28c4807b6e0d69b356358c1ab | 6d58fd3ce634d31f829220eded13dc02bad2fd5e | /now_in_release/massmodels/support/cosinfo.cc | 345c09600519434ebcf8356d54b791d94d95b440 | [] | no_license | HEASARC/xspec_localmodels | f0926118ce1172fe12effde360ed61f8316aa802 | cd3d09357a6fe3bcbc0f4c32407ec9f22a8ee0b3 | refs/heads/master | 2023-04-18T06:01:04.899033 | 2023-04-11T17:10:43 | 2023-04-11T17:10:43 | 126,516,606 | 7 | 7 | null | 2019-12-12T15:22:28 | 2018-03-23T17:16:13 | C | UTF-8 | C++ | false | false | 637 | cc | // Angular diameter distance and critical density
#include <iostream>
#include <cstdlib>
#include "cosbits.h"
void usage (char **argv) {
std::cerr << "Usage: " << argv[0] << " <cosmological par file> <redshift>\n";
exit (EXIT_FAILURE);
}
int main (int argc, char **argv) {
if (argc != 3)
usage (argv);
... | [
"kristin.l.rutkowski@nasa.gov"
] | kristin.l.rutkowski@nasa.gov |
c3394d8c6c2f0dbf49f43467833170beb49af7a5 | 103ca3dacfa3d96ea624e84b05c9e945e50fa3fb | /AISandbox/Automator.cpp | 7e1ce9815174e5d2a46ac34bfbc1ec39301cceae | [] | no_license | Dizzly/AINavMesh | 58c5293277de80e3254381b215e94ea51bb9395c | b38bd2682a29de397fdbee5927816910e7cfd4f0 | refs/heads/master | 2020-05-18T15:52:15.557663 | 2015-02-11T16:08:43 | 2015-02-11T16:08:43 | 30,655,328 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 750 | cpp | #include "Automator.h"
#include "Npc.h"
Automator::Automator(Npc* p): parent_(p), target_(nullptr)
{
}
Automator::~Automator()
{}
int Automator::AddBehaviour(PBehaviour b, float w)
{
beh_.push_back(std::make_pair(b,w));
return beh_.size()-1;
}
Behaviour* Automator::GetBehaviour(int i)
{
retur... | [
"aldocurtis@gmail.com"
] | aldocurtis@gmail.com |
7ddcd4838de5d9fa885ad6888e306a3ce42a361c | bac0d4fa74ca5eaa7d42d64474ccc4f444196eaa | /C++/project/cpp_projects/09th_operator/point2_1.cpp | af9bac03f25455c85d816ad92b6576e9f78c257a | [] | no_license | zhuhaijun753/autosar-1 | e3658b087c8d18bd546963a556bf4c247591cd1b | 8b34d3b6a38247b81a56b80d15adfe694b9304b8 | refs/heads/master | 2020-07-25T10:49:20.732125 | 2019-06-17T13:09:46 | 2019-06-17T13:09:46 | 208,263,900 | 1 | 2 | null | 2019-09-13T12:51:12 | 2019-09-13T12:51:12 | null | UTF-8 | C++ | false | false | 1,247 | cpp | #include <iostream>
#include <string.h>
#include <unistd.h>
using namespace std;
class Point {
private:
int x;
int y;
public:
Point() {}
Point(int x, int y) : x(x), y(y) {}
int getX(){ return x; }
int getY(){ return y; }
void setX(int x){ this->x = x; }
void setY(int y){ this->y = y; }
void printInfo()
{
... | [
"346067259@qq.com"
] | 346067259@qq.com |
0348d1bd066309ff40c1fdeb15eefd8b14b4a6cc | 3c4d46165b90abd05f3fdf48f0f86f729c10b4e3 | /算法竞赛进阶指南/例题/0x40 数据结构进阶/0x48 可持久化数据结构/K-th Number/std_树套树_bzoj1901_带修改.cpp | 89196dfb631973fac51469dcfa9e5bc1765d0a7b | [] | no_license | JK-Lix/Algorithm | 565c159fdd56c41dee9d7c08a72987a206357bfa | ae57578ddba4019841a6595e53417778582110b5 | refs/heads/master | 2020-05-09T16:44:23.831663 | 2019-06-22T11:55:59 | 2019-06-22T11:55:59 | 181,271,742 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,340 | cpp | #include<iostream>
#include<cstdio>
#include<cstring>
using namespace std;
const int inf=1000000000;
struct tree{int l,r,dat,size;}t[40010],a[1000010];
int L[10010],R[10010],p[40010],b[10010],n,m,tot,i,l,r,k,x,y,z;
char str[2];
inline void update(int x)
{
a[x].size=a[a[x].l].size+a[a[x].r].size+1;
}
vo... | [
"776579471@qq.com"
] | 776579471@qq.com |
551e4dc8cba2396557b384a6ca61f14fb0326f5c | e16b04c283e0d5ed568aa5152597440f740a4bbb | /src/cxx/astro/weaklensing/mainwl/gamma_to_kappa.cc | 8cbdcdfb31790db0a0666e82b38c6e658c6fe44c | [
"MIT"
] | permissive | jstarck/cosmostat | 58187ccd3bd79db665b487998e1098c932058aea | f686efe4c00073272487417da15e207a529f07e7 | refs/heads/master | 2022-12-11T19:47:09.329007 | 2020-07-06T16:11:59 | 2020-07-06T16:11:59 | 277,772,870 | 0 | 0 | MIT | 2020-07-07T09:23:50 | 2020-07-07T09:23:50 | null | UTF-8 | C++ | false | false | 4,762 | cc | /******************************************************************************
** Copyright (C) 2013 by CEA
*******************************************************************************
**
** UNIT
**
** Version: 1.0
**
** Author: Francois Lanusse
**
** Date: 13/12/01
**
** File: pk... | [
"jstarck@cea.fr"
] | jstarck@cea.fr |
629fb171a42310c0c5d58450a1f07dec65db8a62 | 4cc2d44a8367a793e98eae7c988b65d42cb202ba | /atcoder/abc124/D.cpp | 188725aa2b0f9f15a51d106594ba5c732a5fddb8 | [] | no_license | nojima/workspace | f0456633d0aeb620d9858a60ffc50178ec752d01 | 3d76242df8ae70fd8d38c5a0dac84a8ff13c7557 | refs/heads/master | 2023-03-05T21:12:36.888289 | 2023-03-04T16:31:46 | 2023-03-04T16:33:11 | 100,114,101 | 3 | 0 | null | 2023-03-04T06:45:12 | 2017-08-12T13:30:00 | JavaScript | UTF-8 | C++ | false | false | 948 | cpp | #include <iostream>
#include <algorithm>
#include <vector>
#include <string>
using namespace std;
int main() {
int N, K;
while (cin >> N >> K) {
string S; cin >> S;
vector<int> n_segment(N);
bool in_segment = (S[0] == '0');
n_segment[0] = (S[0] == '0');
for (int i = 1; i... | [
"nojima@ynojima.com"
] | nojima@ynojima.com |
92a2ec9c610c8c26b032fd71f4046582ddc6a03a | f72afecda17f6b946672b119710ee10a09839590 | /main.cpp | 75099af6b0e74aaad2fa47ff58c83bb68e34196b | [] | no_license | ChromatiCat/OpenGL-Light-Effect | 911a6fd54ad4e45e650e23b371a9c9d040cf6ffb | f7b99756ccfc0c56ec34fabe1b33f8dd1f1795f2 | refs/heads/master | 2020-04-07T23:02:02.317995 | 2018-11-23T07:25:23 | 2018-11-23T07:25:23 | 158,795,273 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 8,392 | cpp | #include "include/Angel.h"
#include "include/TriMesh.h"
#pragma comment(lib, "glew32.lib")
#include <cstdlib>
#include <iostream>
using namespace std;
GLuint programID;
GLuint vertexArrayID;
GLuint vertexBufferID;
GLuint vertexNormalID;
GLuint vertexIndexBuffer;
GLuint vPositionID;
GLuint vNormalI... | [
"noreply@github.com"
] | noreply@github.com |
2e4e2664b5b6d3027e4753d1aeac85804ac112ec | 54259eba648bac406aaead5474d8f105bc011e36 | /checkerboard.cpp | 0a212449fb08be5c98b094c0ca5a8dc62ea40c91 | [] | no_license | RafaPeralva/csci_hunter | 98100b192148e48d8aba464ac9fc21d8dfac4ff5 | 7e0ab2f101677dcb017a3b56c5fd6bbf7ac68d34 | refs/heads/master | 2020-08-31T02:09:04.945067 | 2019-10-30T15:26:16 | 2019-10-30T15:26:16 | 218,554,068 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,226 | cpp | /*
Author: Rafaela Peralva
Course: CSCI-136
Instructor: Subhadarshi Panda
Assignment: lab 4B
asks user for width and heigh and then prints a checkerboard
*/
#include <iostream>
using namespace std;
int main()
{
int w;
int h;
int len=0;
string space = "";
cout<<"Enter a width: "<<endl; //enters a number
c... | [
"rafaelaperalva@hotmail.com"
] | rafaelaperalva@hotmail.com |
87e9f17078e70ddda6c24d946e85dfe6c7bda969 | ab686eb3a176b5845919d80c66662f94624ecc05 | /Company Specific/Amazon SDET/Heap/shortest subarray with sum atleast k.cpp | df395024debfaea67a8c6946b41c5f5eec4e4cd4 | [] | no_license | chiragasawa/interview-prep | 341be6be58159a75b91c3ca3ec572c371a7c2caf | 0200ba04d9cc46f04c33f20276b77f49825ea091 | refs/heads/main | 2023-09-03T07:59:09.658756 | 2021-10-19T05:16:44 | 2021-10-19T05:16:44 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 865 | cpp | class Solution {
public:
int shortestSubarray(vector<int>& nums, int k) {
priority_queue<pair<int,int>, vector< pair<int,int>>, greater<pair<int,int>>>pq;
int sum = 0;
int ans = INT_MAX;
auto n = nums.size();
for(int i = 0 ; i < n ... | [
"noreply@github.com"
] | noreply@github.com |
46d579555f2f360f0ea2bb3addc988f86346c41b | 495a7a0a9b074978e2c51a944de9d1fcb81c24cc | /1.5 Classes/friend_class.cpp | f8f7842a3f433a4f3adab12efdbd21d60720e40b | [] | no_license | rishabh-997/OOP-s-Lab-Assignments | a4920edad3883171117d4a0b1e3fb9b8cb3096da | b9ae21fb92f65668c8af081064709d2faa5d0d25 | refs/heads/master | 2021-10-09T17:57:46.480732 | 2021-10-01T20:05:43 | 2021-10-01T20:05:43 | 208,182,997 | 0 | 4 | null | 2021-10-01T20:05:43 | 2019-09-13T02:37:10 | C++ | UTF-8 | C++ | false | false | 1,158 | cpp | #include<bits/stdc++.h>
using namespace std;
/**
-----------------------------Class Friends and Class Members-----------------------------------------
1. Complex data structures typically involves the interaction of many classes.
2. in such cases, there are often issues in coordinating the actions of these cl... | [
"rishabh.agarwal997@gmail.com"
] | rishabh.agarwal997@gmail.com |
35d4bf2c769c65c66e1a0acd9cbc0966d8907309 | caa91484865db24d21c807abc999ba4dc471e186 | /zrm/zrmbasewidget.h | 795148aadd287cc7d24eb88a2a44d55261cb88fa | [] | no_license | dostapazov/powermon | 351a9a6aa670fcb598142c514824dbdbbc03d24f | 8d619a20e195e90a5147d7e39d4ea254cfbe6e39 | refs/heads/master | 2021-07-11T23:00:07.172403 | 2020-10-13T15:55:03 | 2020-10-13T15:55:03 | 206,970,465 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,977 | h | /* Ostapenko D. V.
* NIKTES 2019-03-22
* Base widget for display state channel of zrm
*
*/
#ifndef ZRMBASEWIDGET_H
#define ZRMBASEWIDGET_H
#include <qwidget.h>
#include <qtextcodec.h>
#include <zrm_connectivity.hpp>
#include <qlabel.h>
#include <qspinbox.h>
#include <qicon.h>
// Timer for simul... | [
"dostapazov@gmail.com"
] | dostapazov@gmail.com |
8529c79c57c9eb8ea3937c18409b6251673a3e3a | 91a882547e393d4c4946a6c2c99186b5f72122dd | /Source/XPSP1/NT/windows/advcore/rcml/rcmlex/speechhook/spchhk/rcmllistens.cpp | 50b29ff60b856ab23ccace5cd486fa7c0d98f999 | [] | no_license | IAmAnubhavSaini/cryptoAlgorithm-nt5src | 94f9b46f101b983954ac6e453d0cf8d02aa76fc7 | d9e1cdeec650b9d6d3ce63f9f0abe50dabfaf9e2 | refs/heads/master | 2023-09-02T10:14:14.795579 | 2021-11-20T13:47:06 | 2021-11-20T13:47:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 12,492 | cpp | // RCMLListens.cpp: implementation of the CRCMLListens class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "RCMLListens.h"
#include "rcml.h"
#include "debug.h"
// #include "commctrl.h"
#include "tunaclient.h"
CTunaClient CRCMLListens::g_TunaClient;
BOOL ... | [
"support@cryptoalgo.cf"
] | support@cryptoalgo.cf |
aa5bde36d34fec66c5ec4144769131b6e6183573 | d5e8ed287ad0affe516498484fe478b45285919c | /Libs/Com/ServoDriverComDll/RnDriverWave.h | 2a303768df5d67651b5273b4708b7737f12eeb20 | [] | no_license | kentkdf/ServoDriveTech | ca50434ebe602996d111833901fa2549b23b85b6 | a517a06a3893a16c4825cec40551e67658500fe2 | refs/heads/master | 2021-06-26T07:55:49.863621 | 2018-01-16T05:48:22 | 2018-01-16T05:48:22 | 141,222,484 | 3 | 0 | null | 2018-07-17T02:51:26 | 2018-07-17T02:51:26 | null | GB18030 | C++ | false | false | 3,771 | h | #pragma once
//#include "gdef.h"
#include "BaseReturn_def.h"
#include "StRingNetComUser.h"
#define MAX_NUM_PRE_PACKET 512
static const int32 READ_LENTH_ONCE = 10000; //pc一次读取的double数据的个数,每一条线的数据个数,根据FPGAbuffer的大小而定义
class CRnDriverWave
{
public:
CRnDriverWave();
~CRnDriverWave();
static const int32 RAW_BUFFER_L... | [
"chenchao_szu@163.comm"
] | chenchao_szu@163.comm |
5136aeb1967fbb3c32dcf5ca071e5ff82bfcf959 | 051a2d1901b27a841c9d11b31c4bd1512629ae0c | /deps/gfakluge/src/tinyFA/tinyFA.hpp | 83b6414b5664a9a893175242f043c71cc24d6594 | [
"MIT"
] | permissive | ibharvey/seqan3_cmake_error | b78f813e4b8e864e0c4753234ea68e8ccf454e6a | a81a65a72bd7658621e7c14d46e03b50b0b2f38d | refs/heads/master | 2022-04-12T09:28:31.006973 | 2020-03-02T18:56:06 | 2020-03-02T18:56:06 | 238,558,965 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,621 | hpp | #ifndef TINY_FA_HPP
#define TINY_FA_HPP
#include <sys/types.h>
#include <cstdio>
#pragma once
#define _FILE_OFFSET_BITS 64
#ifdef WIN32
#define ftell64(a) _ftelli64(a)
#define fseek64(a,b,c) _fseeki64(a,b,c)
typedef __int64 off_type;
#elif defined(__APPLE__) || defined(__FreeBSD__)
#define ftell64(a) ftello(a... | [
"burstolava@yahoo.com"
] | burstolava@yahoo.com |
475e233ae699d395eaabc7ec383bc4930375911e | 2407b7834ac70df0b14dda6782e9ce048a2d1279 | /Practice/FC/Ceshi.cpp | 18e1624b07d267b0ab4b8ffc5973a846d8194551 | [] | no_license | sssSSSay/Code | 44ad26b521674a1ecd5a78af1da448df97305ecf | 8f853943103b549a9c8795493530793ccbf1b7a2 | refs/heads/master | 2021-01-12T00:59:05.285035 | 2017-08-10T13:30:09 | 2017-08-10T13:30:09 | 78,328,140 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 290 | cpp | #include<iostream>
#include<windows.h>
using namespace std;
int main() {
while(1) {
system("data > test.in");
system("1245Force < test.in > ans.out");
system("[CODEVS]1245 < test.in > my.out");
if(system("fc my.out ans.out")) break;
}
return 0;
}
| [
"1094238312@QQ.com"
] | 1094238312@QQ.com |
13c5f750ad959e6eff1aecf95856b8e741eca15a | 1cf86f3b8a75e4b9e2256a49dd7f904d1bc3667c | /src/meta/ui.conv.h | 42d4c517f703f67347e66f26656fccef5b25636d | [
"Zlib"
] | permissive | hugoam/two | bfaa6f0184e7e45e4f2fbc0e2d6257ed51dfe54d | d4b386f48c572da03ac5c89e702cf08f388d434d | refs/heads/master | 2023-04-27T11:10:21.640620 | 2023-04-18T21:04:38 | 2023-04-18T21:04:38 | 116,430,022 | 717 | 63 | Zlib | 2019-05-11T16:04:24 | 2018-01-05T21:48:50 | C++ | UTF-8 | C++ | false | false | 3,916 | h | #pragma once
#ifndef TWO_MODULES
#include <ui/Types.h>
#endif
#if !defined TWO_MODULES || defined TWO_TYPE_LIB
#include <refl/Meta.h>
#include <refl/Enum.h>
#include <infra/StringOps.h>
#endif
namespace two
{
export_ template <> inline void to_value(const string& str, two::FlowAxis& val) { val = two::FlowAxis(enu<t... | [
"hugo.amiard@wonderlandengine.com"
] | hugo.amiard@wonderlandengine.com |
22afb8e74302f29cd5ee00eeefb3686308cee2ab | a240f831c7e1795ee005493612af0ba6bf2bb849 | /ABC/ABC127/B.cpp | 17ad99b11c1318125a35446e2fcaf6bc6a8d9faf | [] | no_license | sensen963/AtCoder | db84fdf46c2d3526aa9e2d7d5c49ebba8b854714 | c0cd9e750408aa100836466c8bb1a1e33ae57c67 | refs/heads/master | 2021-03-27T10:11:46.039139 | 2020-11-29T04:59:51 | 2020-11-29T04:59:51 | 109,882,192 | 0 | 0 | null | 2020-07-26T13:21:52 | 2017-11-07T19:38:58 | C++ | UTF-8 | C++ | false | false | 655 | cpp | #include <iostream>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <algorithm>
#include <string>
#include <sstream>
#include <complex>
#include <vector>
#include <list>
#include <queue>
#include <deque>
#include <stack>
#include <map>
#include <set>
#include <numeric>
using namespace std;
typedef long... | [
"nanablue2035@gmail.com"
] | nanablue2035@gmail.com |
43627a8a237f1a8029a938f22625fb9374b918a3 | 641fa8341d8c436ad24945bcbf8e7d7d1dd7dbb2 | /components/cryptauth/fake_secure_message_delegate_unittest.cc | ba46991b716ff2dc8735ed1389f50ed17c7e5103 | [
"BSD-3-Clause"
] | permissive | massnetwork/mass-browser | 7de0dfc541cbac00ffa7308541394bac1e945b76 | 67526da9358734698c067b7775be491423884339 | refs/heads/master | 2022-12-07T09:01:31.027715 | 2017-01-19T14:29:18 | 2017-01-19T14:29:18 | 73,799,690 | 4 | 4 | BSD-3-Clause | 2022-11-26T11:53:23 | 2016-11-15T09:49:29 | null | UTF-8 | C++ | false | false | 7,893 | cc | // Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/cryptauth/fake_secure_message_delegate.h"
#include "base/bind.h"
#include "base/macros.h"
#include "testing/gtest/include/gtest/gtes... | [
"xElvis89x@gmail.com"
] | xElvis89x@gmail.com |
b73c3559311457436b73045f729af664738e8c76 | 2acb779af600f1137080b9b7fc8db9c525bf51f6 | /struct/drvhinge.h | 2d97df234086c02e3f9609340c271625957ce0c1 | [] | no_license | akshayrk95/MBdyn | 93b0d0af0f03ea0fd148a53d2cdde8b2037cc957 | 039cb68b9002f7451786a7c2f3a359dfd89609f0 | refs/heads/master | 2016-09-06T16:05:32.019951 | 2015-03-04T20:29:44 | 2015-03-04T20:29:44 | 31,678,254 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,084 | h | /* $Header: /var/cvs/mbdyn/mbdyn/mbdyn-1.0/mbdyn/struct/drvhinge.h,v 1.31 2014/07/22 19:19:23 masarati Exp $ */
/*
* MBDyn (C) is a multibody analysis code.
* http://www.mbdyn.org
*
* Copyright (C) 1996-2014
*
* Pierangelo Masarati <masarati@aero.polimi.it>
* Paolo Mantegazza <mantegazza@aero.polimi.it>
*
* ... | [
"akshayrk@live.in"
] | akshayrk@live.in |
8377a6ad073869e756caef93f156f0b3095fc2e9 | 277698e0fa6c846f1209adbd840afab8aea6d7b5 | /code/ViewHint.h | d0495b84da979484c9165d498cd5ff76593107fc | [
"MIT"
] | permissive | omerdagan84/neomem | ad67dba738efced735f614029d7c237f574ecbbe | 7d2f782bb37f1ab0ac6580d00672e114605afab7 | refs/heads/master | 2021-01-20T19:45:32.004246 | 2014-04-12T13:09:20 | 2014-04-12T13:09:20 | 22,289,594 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 440 | h | // ViewHint.h: interface for the CViewHint class.
#if !defined(AFX_VIEWHINT_H__BEF95D3B_DEB0_11D3_9183_C02653C10000__INCLUDED_)
#define AFX_VIEWHINT_H__BEF95D3B_DEB0_11D3_9183_C02653C10000__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CViewHint : public CObject
{
public:
CViewHint... | [
"bburns@3bad96a7-2d8f-4f48-a7ae-748201937164"
] | bburns@3bad96a7-2d8f-4f48-a7ae-748201937164 |
e40d0b3c5b311d3daa77e28cc320ff1bf515e507 | d5e6d48fb5f9fa73ef0c2593bb2d2dbeb67dd95e | /Banking.cpp | 9d5210115aa2b8faab8608e2b54e4b62154dd7f6 | [] | no_license | shivangalld/OS_Lab | 91517186651c4ec8087eeae537227807e54bd6c8 | 752990280d68ec513f2776f4190a58aabb753021 | refs/heads/master | 2021-06-06T02:13:22.504547 | 2016-09-26T19:09:06 | 2016-09-26T19:09:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,870 | cpp | #include<iostream.h>
#include<stdio.h>
#include<conio.h>
class bank
{
private:
int ac_no,account;
float balance;
char name[20];
public:
void open(void);
void deposite(int);
void withdraw(int);
void search(int);
void display(void);
... | [
"noreply@github.com"
] | noreply@github.com |
c049044f0af060720c666ed7ad2bc852f77a32c7 | bb2d45152b6fc2ebe9d1a264175369f75fb5d024 | /Arcane/src/Arcane/Vendor/renderdoc-1.x/renderdoc/driver/d3d12/d3d12_command_list4_wrap.cpp | f1d26cd4df69ab403f479f1cd88e57394b437882 | [
"MIT",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | Ershany/Arcane-Engine | b719930e7538dcb99185fa31e0255fd2d2b2383b | 94ae49d04359bb79916f61fe7c2130939f88f49d | refs/heads/master | 2023-07-27T04:38:23.753293 | 2023-07-23T22:13:48 | 2023-07-23T22:13:48 | 66,559,567 | 492 | 42 | MIT | 2023-07-15T12:33:51 | 2016-08-25T13:20:39 | C++ | UTF-8 | C++ | false | false | 22,629 | cpp | /******************************************************************************
* The MIT License (MIT)
*
* Copyright (c) 2019-2022 Baldur Karlsson
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in... | [
"bradyjessup@hotmail.com"
] | bradyjessup@hotmail.com |
d81421cd60a4bf6d0dce90ebc685ea60dd534a8e | ba1483a46b56ba7a324a3311beb6a16192051ecd | /Library/Il2cppBuildCache/UWP/ARMv7/il2cppOutput/UnityEngine.PhysicsModule.cpp | d362b5d72a9755ed2fe8c785db19a54d342e8e35 | [] | no_license | jbeutel/NASA-SUITS-AR-Displays | b35471ef4977e5b6745a836f71704be289ec32c0 | 0ccbdf27e93267fa105eec457945455331aefeae | refs/heads/main | 2023-04-06T03:56:03.482847 | 2021-05-03T04:07:26 | 2021-05-03T04:07:26 | 367,192,912 | 2 | 0 | null | 2021-05-13T22:51:58 | 2021-05-13T22:51:57 | null | UTF-8 | C++ | false | false | 375,811 | cpp | #include "pch-cpp.hpp"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <limits>
#include <stdint.h>
// System.Char[]
struct CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34;
// UnityEngine.Collider[]
struct ColliderU5BU5D_t5124940293343DB3D31DA41C593709905906E486;
// UnityEng... | [
"ss3448@scarletmail.rutgers.edu"
] | ss3448@scarletmail.rutgers.edu |
82b1dd6b4ecd8240b9895a2164fcfd2006cb91eb | fd279e622dd6d2788e5613349fc5a060a2edd031 | /HomeTask_03/Printer/fileprinter.h | 74064116c4952326d7ed0cfb7b1cff6b32e0b568 | [] | no_license | VeselovAlex/SecondTerm | 7a7e58d292dcfd17a00a5b99ec19169f24a9235a | 124da3c0ca80485cf5a20cad215ef40ae651b80c | refs/heads/master | 2021-03-12T22:12:57.867207 | 2013-05-27T13:35:17 | 2013-05-27T13:35:17 | 8,334,959 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 533 | h | #ifndef FILEPRINTER_H
#define FILEPRINTER_H
#include "printer.h"
#include <iostream>
#include <fstream>
/**
* @brief The File Printer class
*/
class FilePrinter : public Printer
{
public:
/**
* @brief FilePrinter constructor
* @param file Path to output file
*/
FilePrinter(const char *file) : ... | [
"veselov143@gmail.com"
] | veselov143@gmail.com |
5eb96b7ff682ec657d0de64cd0beb3a139a194a8 | 315b4721a030871f23aa68b29e81dead78d93a82 | /tioj1199.cpp | a15a7e292be0c1b51c3b3e5c6771ddd965fd3f7a | [] | no_license | ArutoriaWhite/Competitive-programming | ce71166ac51929ed6d37761256dfdfee7ebd207e | e19642bd76f1fa12b1162930c4a7f3b199cd2573 | refs/heads/master | 2023-06-16T21:58:01.308407 | 2021-07-19T12:07:12 | 2021-07-19T12:07:12 | 216,078,983 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 736 | cpp | #include <bits/stdc++.h>
#define de(x) cout << #x << "=" << x << ", "
#define dd cout << '\n';
#define rep(i,j,k) for (int i=j; i<=k; i++)
#define XinAi ios::sync_with_stdio(0), cin.tie(0);
#define F first
#define S second
#define int long long
using namespace std;
typedef pair<int,int> pii;
int qpow (int a... | [
"aatroxvanz@gmail.com"
] | aatroxvanz@gmail.com |
114d6968ae9efd1c399f4a5d75494a3fa5c62614 | 9c85df296a2c959374bb0d9bdc875d82b2ccf8a8 | /SM/src/GNN.cc | 078ad8ddd4a04ab0434831c087fa5ec6f57eb9dd | [
"BSD-3-Clause"
] | permissive | zhulongchao/MTF | 7de51a8a65d60ec5138952b48a9334e266ff6d06 | 196c66be21a88f079d00ddb1da227b3f91d1411a | refs/heads/master | 2021-01-19T19:10:06.951611 | 2017-04-16T06:18:10 | 2017-04-16T06:18:10 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 17,099 | cc | #include "mtf/SM/GNN.h"
#include "mtf/Utilities//miscUtils.h"
#include <fstream>
_MTF_BEGIN_NAMESPACE
namespace gnn{
GNNParams::GNNParams(int _degree, int _max_steps,
int _cmpt_dist_thresh, bool _random_start,
bool _verbose) :
degree(_degree),
max_steps(_max_steps),
cmpt_dist_thresh(_cmpt_dist_thre... | [
"asingh1@ualberta.ca"
] | asingh1@ualberta.ca |
6cc341c106c0624f8f9eb21da04159d889b32df0 | a5b1be0f4ad2cb944205a0bd19a28684c4355e0c | /HK/C++/cpp-class-template-specialization.cpp | 139f49ad6eb79e9d392f5da792f3561f7f432aae | [] | no_license | warlockz/CP | 4bf00bf9b89d785ec0b3e146d6e9b29923553d40 | 53e8b05a9622c36e9fd37147b3b03a62c51c0567 | refs/heads/master | 2021-01-19T00:43:17.305693 | 2017-08-02T00:01:47 | 2017-08-02T00:01:47 | 87,202,589 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,516 | cpp | #include <iostream>
using namespace std;
enum class Fruit { apple, orange, pear };
enum class Color { red, green, orange };
template <typename T> struct Traits;
// Define specializations for the Traits class template here.
template <typename T>
struct Traits
{
static string name(int n)
{
return "unkno... | [
"yogerocks@gmail.com"
] | yogerocks@gmail.com |
b1981b2b04c982c4c6adf787ea8d718674fae4b5 | 5dbbadea06927ec4b8d93c127771783538913540 | /CppPublishSubscribe/PubSubManager.cpp | c982522cdc89cdaa4d82d412375c89e0b32deafe | [
"MIT"
] | permissive | hs750/CppPublishSubscribe | 30e21e9caf4082c85db0064d24c97ff9cf48a58d | 727f76a3f0be804db74e360c96084e5e1a226562 | refs/heads/master | 2021-04-06T20:27:31.287105 | 2016-06-10T14:57:13 | 2016-06-10T14:57:13 | 60,851,060 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 539 | cpp |
#include "PubSubManager.h"
using namespace cps;
void PubSubManager::addSubscriber(Subscriber * subsciber){
subscribers.insert(subsciber);
}
void PubSubManager::broadcastData(PublishableData * data, Publisher * sender){
for(auto sub : subscribers){
bool send = true;
if(Publisher * pubsub = dy... | [
"contact@harrison-spain.com"
] | contact@harrison-spain.com |
0e1888c5b88e46eaa7dfe5c051006e105691b7e4 | 3cc396f9397706e05f05ed718a4f64fc60eab681 | /include/pause.h | b8c488c454f6e8775e7ef2411f572815828d1a2b | [] | no_license | hasashin/tetris-sdl | 6acd4acccfb6611ee966b9052aad5d9fc29f786d | a6256c210df6ad7f50e46829c6cbd911811e8d42 | refs/heads/master | 2020-03-08T23:58:25.538826 | 2018-05-30T15:37:40 | 2018-05-30T15:37:40 | 128,476,643 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,154 | h | #ifndef TETRIS_SDL_PAUSE_H
#define TETRIS_SDL_PAUSE_H
#include <control.h>
class pause : public object {
void drawPause() {
SDL_Rect pause;
pause.x = 0;
pause.y = 0;
pause.w = global::SCREEN_W;
pause.h = global::SCREEN_H;
SDL_SetRenderDrawColor(renderer, 0, 0, 0, 1... | [
"kp+#yn2XtA"
] | kp+#yn2XtA |
6b86626a94cfa18e60f6b362c7ce72fee4eacefd | adefab1f540aee6a245b250ea660faa618513431 | /contrib/libpoco/Zip/include/Poco/Zip/ZipArchiveInfo.h | 571c7a3799b81996f4360c4bef135dff7c1fbe9e | [
"BSL-1.0",
"Apache-2.0"
] | permissive | SevaCode/ClickHouse | 23b6ba4f3ae9ed62807dcdd8e5d3bae68c8e038b | 08cb8e506b49aef6ae2086be8947f728450c4d73 | refs/heads/master | 2020-06-14T15:16:59.282376 | 2016-11-29T19:28:50 | 2016-11-29T19:28:50 | 75,167,027 | 0 | 0 | NOASSERTION | 2019-03-14T09:46:11 | 2016-11-30T08:29:42 | C++ | UTF-8 | C++ | false | false | 4,875 | h | //
// ZipArchiveInfo.h
//
// $Id: //poco/1.4/Zip/include/Poco/Zip/ZipArchiveInfo.h#1 $
//
// Library: Zip
// Package: Zip
// Module: ZipArchiveInfo
//
// Definition of the ZipArchiveInfo class.
//
// Copyright (c) 2007, Applied Informatics Software Engineering GmbH.
// and Contributors.
//
// SPDX-License-Identifier: ... | [
"milovidov@yandex-team.ru"
] | milovidov@yandex-team.ru |
a5e2e910b611408e1c8e11ed69c590379c991e85 | 6b40ba32242605cff4be9d06a5ef61c35f4ba743 | /OpenGLTest/main.cpp | a043831a1b618a7af10ccb2daa61bef11ce8764a | [] | no_license | Minebot17/OpenGLTest | 8e9c1c536fa09ce8cf284e5600e103cc748606b7 | f7e16113ef163ac4aee36d7027d2181028dc9d34 | refs/heads/master | 2020-08-15T13:40:43.142110 | 2019-12-21T07:01:51 | 2019-12-21T07:01:51 | 215,352,079 | 0 | 0 | null | null | null | null | WINDOWS-1251 | C++ | false | false | 25,076 | cpp | #include <cstdio>
#include <cstdlib>
#pragma comment(lib, "glew32.lib")
#pragma comment(lib, "glew32s.lib")
#include <GL/glew.h>
#include <GL/GL.h>
#include <GLFW/glfw3.h>
#include <glm/glm.hpp>
#include <glm/gtc/matrix_transform.hpp>
#include <GL/freeglut.h>
#include <windows.h>
#include "utils.cpp"
#include <thread>
... | [
"serpinin@mail.ru"
] | serpinin@mail.ru |
35dc8426c175abdd7322726200c5cb651785acd9 | 5b64156d14f1f985060ce208b35ef6ca8335462f | /libraryManager/categorymanager.cpp | 13f7da026f59a498bcc84e3bd30e93a381a4883d | [] | no_license | mhidoart/library_manager_QT | d46d4efd00840691828386a4975ec538378be6fe | 81d60c99a5cb63b14051b13962c56f027171e0fc | refs/heads/master | 2023-04-05T00:22:45.953909 | 2021-03-19T22:43:50 | 2021-03-19T22:43:50 | 346,046,592 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,681 | cpp | #include "categorymanager.h"
CategoryManager::CategoryManager(QString value)
{
source = value;
f1.setFileName(source);
CategoryNextID = 0;
}
void CategoryManager::addCategory(Category c)
{
if(!isCategoryExist(c)){
categories.push_back(c);
}
}
void CategoryManager::load()
{
qInfo() << ">>>>start l... | [
"mhidoart@gmail.com"
] | mhidoart@gmail.com |
3f747173777ca2167970ce4aa5f8f535df516c5c | f0a26ec6b779e86a62deaf3f405b7a83868bc743 | /Engine/Source/Editor/DetailCustomizations/Private/LightComponentDetails.cpp | 41aa6cc161ee835d33975dc1b4bb2494a5e6395b | [] | no_license | Tigrouzen/UnrealEngine-4 | 0f15a56176439aef787b29d7c80e13bfe5c89237 | f81fe535e53ac69602bb62c5857bcdd6e9a245ed | refs/heads/master | 2021-01-15T13:29:57.883294 | 2014-03-20T15:12:46 | 2014-03-20T15:12:46 | 18,375,899 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,439 | cpp | // Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
#include "DetailCustomizationsPrivatePCH.h"
#include "LightComponentDetails.h"
#define LOCTEXT_NAMESPACE "LightComponentDetails"
TSharedRef<IDetailCustomization> FLightComponentDetails::MakeInstance()
{
return MakeShareable( new FLightComponentDetails );
... | [
"michaellam430@gmail.com"
] | michaellam430@gmail.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.