blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 3 264 | content_id stringlengths 40 40 | detected_licenses listlengths 0 85 | license_type stringclasses 2
values | repo_name stringlengths 5 140 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 986
values | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 3.89k 681M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 23
values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 145
values | src_encoding stringclasses 34
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 2
classes | length_bytes int64 3 10.4M | extension stringclasses 122
values | content stringlengths 3 10.4M | authors listlengths 1 1 | author_id stringlengths 0 158 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
a3c7e7a1f1ff5ad46dcc3d50417c9c4f4c2e6481 | 53f415f1193fb5000df706004f635044dc665ab6 | /02. Functions, Arrays and Vectors/Demos/14.STL-Vectors-as-Function-Parameters.cpp | 7f2a12f504bf7391bcc1f97d9ebe6c76fb9c9e4d | [] | no_license | Martin-BG/SoftUni-CPP-Fundamentals | 695e32c41730776ced262ce34788e18671cbe663 | 7ecab0f48c795222564bc7ea665afa5690883508 | refs/heads/master | 2022-07-31T16:21:14.849967 | 2022-07-05T17:23:22 | 2022-07-05T17:23:22 | 163,557,283 | 0 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 523 | cpp | #include <iostream>
#include <vector>
using namespace std;
void print(vector<int> numbers) {
for (int i = 0; i < numbers.size(); i++) {
cout << numbers[i] << " ";
}
cout << endl;
}
void printMultiplied(vector<int> numbers, int multiplier) {
for (int i = 0; i < numbers.size(); i++) {
nu... | [
"MartinBG@abv.bg"
] | MartinBG@abv.bg |
455783085a7198d109c180049117abd99a61ee9f | 63b1306f99b4d3b0f12d7bac3d7be85ffaabdf77 | /Top Down Shooter/GothicVaniaGhostStates.cpp | 28dd8522566901fe1d0af086096f4c16932b1937 | [] | no_license | Niruz/Top-Down-Shooter | 4cc33a18746181e908e6a58a39a7ee42cc57bc0e | 3bbd96223cd3e1c8dd212457755d0e160bf13b51 | refs/heads/master | 2021-10-19T03:57:18.155039 | 2019-02-17T16:59:13 | 2019-02-17T16:59:13 | 127,650,402 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,755 | cpp | #include "SimpleTimer.h"
#include "GothicVaniaGhostStates.h"
#include "GhostEntity.h"
#include "GhostSprite.h"
//------------------------------------------------------------------------methods for GhostPatrol
GhostPatrol* GhostPatrol::Instance()
{
static GhostPatrol instance;
return &instance;
}
void GhostPatrol::E... | [
"ext.johan.medestrom@tieto.com"
] | ext.johan.medestrom@tieto.com |
89b3e9c0e32d6fdbc8a6d45fd9e5400bdb36858f | 3faab84f3f27cb7095a13a53ccfdd80d0576335c | /openmp/tests/MatrixIoTests.cpp | 439c933219832773eabe12fde1c23e3ccd698a93 | [] | no_license | AlexIvchenko/itmo-master-1-parallel-programming | afb1c63c8139096404a559ba6309d903c0c96e42 | d0fd4631a288b9fc9df36cfd89021d8671d4f9b9 | refs/heads/master | 2023-04-16T07:38:57.409829 | 2020-06-24T18:00:54 | 2020-06-24T18:57:46 | 259,040,995 | 0 | 0 | null | 2021-04-26T20:19:05 | 2020-04-26T13:44:05 | Java | UTF-8 | C++ | false | false | 396 | cpp | #include <gtest/gtest.h>
#include "../src/Matrix.h"
TEST(MatrixIoTests, RoundTripTest) {
Matrix m1 = Matrix(2, 2);
m1(0, 0) = 0;
m1(0, 1) = 1;
m1(1, 0) = 2;
m1(1, 1) = 3;
Matrix::write_to_file(&m1, "m.txt");
Matrix m2 = *Matrix::read_from_file("m.txt");
ASSERT_EQ(m2(0, 0), 0);
ASSER... | [
"A.S.Ivchenko@yandex.ru"
] | A.S.Ivchenko@yandex.ru |
12c1e8368909ccfe1186b013c3f8ccee75b689d3 | 11e1311563f5bec80018e772c710557510dcb610 | /lib/Diagnostic/Engine.cpp | 9a7ed8505b1591e2f39b1a5dda3c80e7623f30ce | [] | permissive | ffk0716/onnc | 03e42654b6707e361e3a9d8df176e624d5267032 | 91e4955ade64b479db17aaeccacf4b7339fe44d2 | refs/heads/master | 2020-03-26T14:41:35.911135 | 2018-08-26T14:23:16 | 2018-08-26T14:23:16 | 144,999,938 | 1 | 0 | BSD-3-Clause | 2018-08-16T14:33:31 | 2018-08-16T14:33:30 | null | UTF-8 | C++ | false | false | 2,124 | cpp | //===- DiagnosticEngine.cpp -----------------------------------------------===//
//
// The ONNC Project
//
// See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#include <onnc/Diagnostic/Engine.h>
#include <onnc/Diagnostic/Diagnos... | [
"a127a127@skymizer.com"
] | a127a127@skymizer.com |
5600b460a83db8f31e085747c0a2b095e6566eba | 462353333f5fc8f13e12db89720d8668a96e3639 | /ftc265-lib/src/main/cpp/Eigen/src/Core/arch/SSE/Complex.h | 2fc3eff41eced0ece9be2431c07b334c82668572 | [] | no_license | mcm001/android-aruco | c397fdd786bd87945a21aeb82170e4782a7ad3f7 | 522f262a81736ce034ae993ff66332cf24693b7b | refs/heads/master | 2023-03-27T08:31:26.984086 | 2021-03-10T19:40:37 | 2021-03-10T19:40:37 | 346,417,421 | 0 | 1 | null | 2021-03-14T16:10:57 | 2021-03-10T16:18:55 | C++ | UTF-8 | C++ | false | false | 20,729 | h | // This file is part of Eigen, a lightweight C++ template library
// for linear algebra.
//
// Copyright (C) 2010 Gael Guennebaud <gael.guennebaud@inria.fr>
//
// This Source Code Form is subject to the terms of the Mozilla
// Public License v. 2.0. If a copy of the MPL was not distributed
// with this file, You can ob... | [
"matthew.morley.ca@gmail.com"
] | matthew.morley.ca@gmail.com |
28d3130fdbe877456294d0e4027ab47013017c5b | 162fe41a4d7b929022fbfc0ef577108c1d1706a9 | /Leetcode/cpp/752_Open_The_Lock.cpp | 0b3802d867d5c543a220907da4534aa3d41a33fe | [] | no_license | LilyLin16/CodeingDiary | ec467f07ee32d72662b04673ca426eb6d5b2f86f | 6c96db035565ca243e654a51e90920bc2ea66fcb | refs/heads/master | 2022-04-22T02:59:28.689346 | 2020-04-22T07:14:44 | 2020-04-22T07:14:44 | 257,817,319 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 2,527 | cpp | /**
You have a lock in front of you with 4 circular wheels. Each wheel has 10 slots:
'0', '1', '2', '3', '4', '5', '6', '7', '8', '9'.
The wheels can rotate freely and wrap around: for example we can turn '9' to be '0', or '0' to be '9'.
Each move consists of turning one wheel one slot.
The lock initially starts at ... | [
"726693267@qq.com"
] | 726693267@qq.com |
87cb95dff445eb45436de42e7077b648ab50e126 | 3448a43cf0635866b25e5d513dd60fb003f47e29 | /src/xrEngine/xr_object.cpp | 17082e60e4404bd8936d206e086ea978c59e3937 | [
"LicenseRef-scancode-warranty-disclaimer",
"BSD-2-Clause"
] | permissive | xrLil-Batya/cordisproject | 49632acc5e68bea9847d001d82fb049703d223c2 | 24275a382fec62a4e58d11579bf497b894f220ba | refs/heads/master | 2023-03-19T01:17:25.170059 | 2020-11-17T14:22:06 | 2020-11-17T14:22:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 555 | cpp | #include "stdafx.h"
#include "IGame_Level.h"
#include "xr_object.h"
#include "xrCDB/xr_area.h"
#include "Render.h"
#include "Common/LevelStructure.hpp"
#include "xrGame/Render/Kernel/RenderVisual.h"
#include "xrGame/Render/Kernel/Kinematics.h"
#include "x_ray.h"
#include "GameFont.h"
#include "mp_logging.h"
#include "x... | [
"phantom1020@yandex.ru"
] | phantom1020@yandex.ru |
69d86c560e2ef42242c1ad2287ea4ce04e865f21 | ec3a06eddbf237ddefe44ac6f5c64f27f8c4fe58 | /C++/Chapter 6/Chapter 6/stdafx.cpp | c2cc2d784752805aedb9e00d8b4956e8d150ed70 | [] | no_license | ArcticZeroo/Semester-2-Projects | 25a34055e4d161583959b385e9cb84bb2f682472 | 7fb41a2a457cd3f6c0240a9dc32a8e86449d2143 | refs/heads/master | 2020-04-02T06:26:05.075574 | 2016-06-16T13:07:53 | 2016-06-16T13:07:57 | 61,293,513 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 288 | cpp | // stdafx.cpp : source file that includes just the standard includes
// Chapter 6.pch will be the pre-compiled header
// stdafx.obj will contain the pre-compiled type information
#include "stdafx.h"
// TODO: reference any additional headers you need in STDAFX.H
// and not in this file
| [
"novick.spencer@gmail.com"
] | novick.spencer@gmail.com |
0075516bbb6c914118635b1f755af27b38aca44b | 3edd3da6213c96cf342dc842e8b43fe2358c960d | /abc/abc057/a/main.cpp | e72dbee504fc7448b0d4b16e30c96f6d56d55d10 | [] | no_license | tic40/atcoder | 7c5d12cc147741d90a1f5f52ceddd708b103bace | 3c8ff68fe73e101baa2aff955bed077cae893e52 | refs/heads/main | 2023-08-30T20:10:32.191136 | 2023-08-30T00:58:07 | 2023-08-30T00:58:07 | 179,283,303 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 184 | cpp | #include <bits/stdc++.h>
using namespace std;
#define REP(i, n) for(int i = 0; i < n; i++)
using ll = long long;
int main() {
int a, b; cin >> a >> b;
cout << (a+b)%24 << endl;
}
| [
"ccpzjoh@gmail.com"
] | ccpzjoh@gmail.com |
906983746d931e1b9ed8bf067b89ae4ce34035a3 | 1f4d461a5566bd6718ef48bbfe8d4cad3ce131d5 | /polymesh.h | e973e0de4ebfd9312ff8a1b28160dcf217694ef9 | [] | no_license | RupertDean/ACG | f0309ec6b5592351d7f3cccf2664af51029a113b | af3c7aade66bfbf3385b79f0a23577cb0b9129d5 | refs/heads/main | 2023-02-11T20:07:07.029107 | 2021-01-07T14:24:47 | 2021-01-07T14:24:47 | 327,634,023 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,085 | h | /***************************************************************************
*
* krt - Kens Raytracer - Coursework Edition. (C) Copyright 1997-2019.
*
* Do what you like with this code as long as you retain this comment.
*/
#pragma once
#include "vertex.h"
#include "transform.h"
#include "object.h"
... | [
"noreply@github.com"
] | RupertDean.noreply@github.com |
1d85ff6b8381657612e73a532d2c8f91e8382c63 | 331e63f76403f347bf45d52b2b72e999a15d26a7 | /SIN/SIN_CORE/SINCommon/Src/SINNamer.cpp | 89e9c945833e317b197f5151430ba5f13581eb82 | [] | no_license | koutsop/sinmetalanguage | 64c9dd10d65c89b169aa0d1dec3bd14cf14165f6 | 7ef17948ae3a6fd4c3589429e9862d1cbfbec80c | refs/heads/master | 2021-01-10T20:08:40.852870 | 2010-05-23T17:42:04 | 2010-05-23T17:42:04 | 33,115,739 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,322 | cpp | #include "SINNamer.h"
#include <cstdio>
#include <cstring>
namespace SIN {
//----------------------------------------------------------------
Namer::Namer(char const _base[SINNAMER_BASELEN]):
counter(0x00ul),
base_offset(min<size_t>(strlen(_base), SINNAMER_BASELEN)),
number_maxi... | [
"koutsop@6a7033b6-9ebc-11de-a8ff-c955b97a4a10"
] | koutsop@6a7033b6-9ebc-11de-a8ff-c955b97a4a10 |
325aceb9d076069119b411eb3248875614c928f8 | b39446a01e5270c983614000f36ed7776c37fd5a | /code_snippets/Chapter25/chapter.25.5.2.cpp | 240a663e6d69a7ebeb2bcbb9402f97b3601d05a1 | [
"MIT"
] | permissive | ltr01/stroustrup-ppp-1 | aa6e063e11b1dccab854602895e85bef876f2ea5 | d9736cc67ef8e2f0483003c8ec35cc0785460cd1 | refs/heads/master | 2023-01-03T09:16:13.399468 | 2020-10-28T10:41:25 | 2020-10-28T10:41:25 | 261,959,252 | 1 | 0 | MIT | 2020-05-07T05:38:23 | 2020-05-07T05:38:22 | null | UTF-8 | C++ | false | false | 1,480 | cpp |
//
// This is example code from Chapter 25.5.2 "Bitset" of
// "Programming -- Principles and Practice Using C++" by Bjarne Stroustrup
//
#include <bitset>
#include <iostream>
using namespace std;
//------------------------------------------------------------------------------
void test()
{
bitset<4> flags = 0x... | [
"bewuethr@users.noreply.github.com"
] | bewuethr@users.noreply.github.com |
61f03697adc532125da1e926ad049fda57cfaa51 | 44e0838bac83de8eaaa46fd38939014675a09c6d | /mmapdemo/shm_read.cc | c4f16ece92912b1b7222b344381d7fa479852618 | [] | no_license | koritafei/UNIXNetwork | f0726f692613f965f6e3b54c6671cd32c3d3672f | 38ab33ed08ac7464b884b1dc96a2158ac7d5d924 | refs/heads/main | 2023-07-22T08:26:27.248926 | 2021-09-07T08:55:55 | 2021-09-07T08:55:55 | 402,710,087 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,147 | cc | /**
* @file shm_read.cc
* @author koritafei (koritafei@gmail.com)
* @brief
* @version 0.1
* @date 2021-09-06
*
* @copyright Copyright (c) 2021
*
*/
#include <errno.h>
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/ipc.h>
#include <sys/mman.h>
#include <sys/shm.h>
#... | [
"koritafei@gmail.com"
] | koritafei@gmail.com |
cb96dc8673b265a4e3d14e28e1d12d9334c59135 | fc08b2ccda73c71230bcedff938fe4dc1a7f1759 | /epxc/stdafx.cpp | 455b19c24c89e6e60dbba0c904ecc76389351756 | [] | no_license | daelsepara/PixelScalerWin | d7aa5fce8a978b50f8c96c0834a52a5c1079c082 | 142f488bb3d243412693957d13869d0ac1bf7a54 | refs/heads/master | 2021-05-12T00:49:57.550275 | 2019-08-15T12:17:46 | 2019-08-15T12:17:46 | 117,544,294 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 283 | cpp | // stdafx.cpp : source file that includes just the standard includes
// epxc.pch will be the pre-compiled header
// stdafx.obj will contain the pre-compiled type information
#include "stdafx.h"
// TODO: reference any additional headers you need in STDAFX.H
// and not in this file
| [
"dael.separa@gmail.com"
] | dael.separa@gmail.com |
021053ac08fa7684555fcb80d16911995bd985fe | e763b855be527d69fb2e824dfb693d09e59cdacb | /aws-cpp-sdk-elasticmapreduce/source/EMREndpoint.cpp | 1d246967f9dbe203973b6d8f99393a45c247ff58 | [
"MIT",
"Apache-2.0",
"JSON"
] | permissive | 34234344543255455465/aws-sdk-cpp | 47de2d7bde504273a43c99188b544e497f743850 | 1d04ff6389a0ca24361523c58671ad0b2cde56f5 | refs/heads/master | 2023-06-10T16:15:54.618966 | 2018-05-07T23:32:08 | 2018-05-07T23:32:08 | 132,632,360 | 1 | 0 | Apache-2.0 | 2023-06-01T23:20:47 | 2018-05-08T15:56:35 | C++ | UTF-8 | C++ | false | false | 1,403 | cpp | /*
* Copyright 2010-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" fil... | [
"henso@amazon.com"
] | henso@amazon.com |
e23f138e590b3c1c00cb7fecab2eea1b1e37fda1 | fdd44721689dcf0e842dd6d4af6264162a2b4367 | /Qt_Hikvsion_multiThread_Opencv-master/main.cpp | 3d293b013cdb9af8ffc7e4523a4f3bc7d46b859f | [] | no_license | geometryl/qt_hikvision | 9eeebc192b0e1644bde0a6438d9209c3cb8b7c61 | c4ab1dd57e6218a208388998e1a0318f182d335c | refs/heads/master | 2022-06-17T09:24:36.179931 | 2020-05-11T13:19:55 | 2020-05-11T13:19:55 | 262,535,937 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 210 | cpp | #include "mainwindow.h"
#include <QApplication>
#include <QTextCodec>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
//chinese
MainWindow w;
w.show();
return a.exec();
}
| [
"jianghe01@baidu.com"
] | jianghe01@baidu.com |
7b4157b191ba583619d6eb3321487e8187b7f08d | c5e5a27fee938ea03c5ef2d8ec62194cae87d4ad | /actividad 7/actv 7, pilas, ciclo 02.cpp | eff76e82acd2460ff16f77b82770fef1da4f0dbc | [] | no_license | carolinesierra/portafolio_00091119 | 219a13024cd2797f4dfebbc2572169f6426f6a57 | 48824d4277a26c585c0c0d49f90f1d74f5ee44c2 | refs/heads/master | 2020-07-09T02:28:29.300130 | 2019-11-12T02:10:51 | 2019-11-12T02:10:51 | 203,849,172 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,329 | cpp | Obtener el segundo elemento de una pila, de arriba (top) hacia
abajo; dejando la pila sin sus dos elementos de arriba.
//Si se debe inicializar la pila
c = initialize;
valor=0;
push (c,H);
push (c,O);
push (c,L);
push (c,A);
pop (c);
valor = pop(c); //Se guarda el valor del segundo elemento en la variable
//Si ... | [
"00091119@uca.edu.sv"
] | 00091119@uca.edu.sv |
27c776e11b20e2b692dda5bbb019b4c54fb17cfa | 600df3590cce1fe49b9a96e9ca5b5242884a2a70 | /ppapi/proxy/plugin_array_buffer_var.cc | 625facfa0a67658c6ba55bfbbde2fb872174c38f | [
"BSD-3-Clause",
"LicenseRef-scancode-khronos"
] | permissive | metux/chromium-suckless | efd087ba4f4070a6caac5bfbfb0f7a4e2f3c438a | 72a05af97787001756bae2511b7985e61498c965 | refs/heads/orig | 2022-12-04T23:53:58.681218 | 2017-04-30T10:59:06 | 2017-04-30T23:35:58 | 89,884,931 | 5 | 3 | BSD-3-Clause | 2022-11-23T20:52:53 | 2017-05-01T00:09:08 | null | UTF-8 | C++ | false | false | 3,156 | cc | // Copyright (c) 2012 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 "ppapi/proxy/plugin_array_buffer_var.h"
#include <stdlib.h>
#include <limits>
#include "base/memory/shared_memory.h"
#include "ppapi/c/dev... | [
"enrico.weigelt@gr13.net"
] | enrico.weigelt@gr13.net |
fcbf5a46befd7789ff36fb2c90407e900ef27c88 | fbef6fd8108921b145413462f475c093f60a69c8 | /algorithms/graphm-0.52/algorithm_sch.cpp | aae7f3354811583120e48a2d99ad94fe62828257 | [] | no_license | lichen11/LSGMcode | 7a8d731c3bcff4900e6c6066da4cfa6c58a19316 | 3e7c125f7442f00c95cfaaf19b8b343f2b46d490 | refs/heads/master | 2021-01-01T05:50:09.470066 | 2014-10-16T21:39:10 | 2014-10-16T21:39:10 | 25,267,454 | 3 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 4,949 | cpp | /***************************************************************************
* Copyright (C) 2008 by Mikhail Zaslavskiy *
* mikhail.zaslavskiy@ensmp.fr *
* *
* This program is free software; you can redistribute it and/or modify *
*... | [
"lchen@durin"
] | lchen@durin |
f011a0af6010ad5ba79e03fbd24ce9f5053c4bf3 | 98f145410fc8fd84ba87d68247de930727d48fdf | /Source/Components/Rigidbody.hpp | 702bafe2194f79b6ed93151aeec6abde83d9b8ac | [] | no_license | ngzaharias/entt_breakout | 1aa6b3dadd7e9d1020ef6fa0a0561d778f5de712 | 9627cf5037e08f221e387300db6ad5d95295fab2 | refs/heads/master | 2023-01-03T16:02:57.866049 | 2020-10-26T01:25:52 | 2020-10-26T01:25:52 | 304,948,071 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 77 | hpp | #pragma once
namespace physics
{
struct Rigidbody
{
bool m_Unused;
};
} | [
"ngzaharias.logins@gmail.com"
] | ngzaharias.logins@gmail.com |
e60492ccc764ba9e6cd658cfc81a5cafe2af2a5f | fcab2c23e61ad3362797b33eb5aa18ba6f3107d8 | /TrafficCars/AirVehicle.h | 4a563df35f653d0f036ab94c043683daa4bf10e6 | [
"MIT"
] | permissive | B3WD/cpp-oop | a27b8e5afa7acfd12602b91d7dad806bb24efb07 | 5842ad4d1ebeab047b3700f2f6b1a09dffd04f36 | refs/heads/main | 2023-06-12T05:42:16.645638 | 2021-06-30T18:04:00 | 2021-06-30T18:04:00 | 348,608,102 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 670 | h | //
// Created by tzvet on 28.4.2021 г..
//
#ifndef MAIN_CPP_AIRVEHICLE_H
#define MAIN_CPP_AIRVEHICLE_H
#include "Vehicle.h"
class AirVehicle : public Vehicle{
private:
unsigned _wingCount;
public:
AirVehicle(const char* brand = "Null", int wheelCount = 0, int hp = 0, unsigned wingCount = 0);
AirVehicle(... | [
"tsvetomir.kpavlov@gmail.com"
] | tsvetomir.kpavlov@gmail.com |
3c243eafa3da329a9176ba19287bfe3f5a329d97 | 7782c7dd70620b011d3a644cdb8c94c5ed6fb05f | /src/declaration.cpp | e1d4ce5a865018d144e0e09634d3478284689614 | [] | no_license | yubako/cflowmake | a07dc03d382ff2836163730685fe848a6e5ba44c | 63a91901029c4a789fe9ba72f5281a1c28af2044 | refs/heads/master | 2020-12-24T18:13:58.271778 | 2016-05-12T22:31:40 | 2016-05-12T22:31:40 | 56,612,749 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 860 | cpp | #include "pars/cytypes.h"
#include "vst/cyvisitor.h"
int Declaration::accept(CyVisitor* visitor)
{
int ope;
ope = visitor->visit(this);
if ( ope != CyVisitor::VISIT_CONTINUE )
return ope;
if ( this->hasNextSibling() )
ope = this->getNextSibling()->accept(visitor);
return ope;
}
i... | [
"user@localhost.localdomain"
] | user@localhost.localdomain |
ed7889c74e1de52d881d99beab5f50e8d03337cf | d9975b97e09ae5f5225c04fac385746d44a6a374 | /pylucene-4.9.0-0/build/_lucene/org/apache/lucene/index/BaseCompositeReader.h | 08ef224779cb151d1202b55b049ce4cc1922a44c | [
"Apache-2.0"
] | permissive | Narabzad/elr_files | 20038214ef0c4f459b0dccba5df0f481183fd83a | 3e623c7d9c98a7d6e5b26e6e4a73f46ff5352614 | refs/heads/master | 2020-06-04T02:01:17.028827 | 2019-06-28T21:55:30 | 2019-06-28T21:55:30 | 191,825,485 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,197 | h | #ifndef org_apache_lucene_index_BaseCompositeReader_H
#define org_apache_lucene_index_BaseCompositeReader_H
#include "org/apache/lucene/index/CompositeReader.h"
namespace org {
namespace apache {
namespace lucene {
namespace index {
class Fields;
class Term;
class StoredFieldVisito... | [
"43349991+Narabzad@users.noreply.github.com"
] | 43349991+Narabzad@users.noreply.github.com |
a16917a77cfb2b1285fc6658a488285923fbbb76 | 3590d45ec6566c44204c98af39b2b3b65edfd7a6 | /src/qt/macos_appnap.h | 639ee028d9b5fa088c41648b872d5a6966227de1 | [
"MIT"
] | permissive | californium252/californium252 | 5fd77b7816e94b132b29054741146cc4ecf38742 | 21425c0ffbd9fc31dedfd197901ce7063f1164e1 | refs/heads/master | 2023-02-15T23:55:43.399441 | 2021-01-16T16:58:50 | 2021-01-16T16:58:50 | 330,174,932 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 560 | h | // Copyright (c) 2011-2018 The Californium Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef CALIFORNIUM_QT_MACOS_APPNAP_H
#define CALIFORNIUM_QT_MACOS_APPNAP_H
#include <memory>
class CAppNapInhibitor fi... | [
"overlord@DESKTOP-6D6I1IM.localdomain"
] | overlord@DESKTOP-6D6I1IM.localdomain |
5758adc25dca7c1889c8d8c52757ab2c4aa7491e | ac227cc22d5f5364e5d029a2cef83816a6954590 | /applications/physbam/physbam-lib/Public_Library/PhysBAM_Geometry/Geometry_Particles/RIGID_GEOMETRY_PARTICLES.cpp | 99c8ffddf5dea50913b920ef9c9bf42a30ebf15b | [
"BSD-3-Clause"
] | permissive | schinmayee/nimbus | 597185bc8bac91a2480466cebc8b337f5d96bd2e | 170cd15e24a7a88243a6ea80aabadc0fc0e6e177 | refs/heads/master | 2020-03-11T11:42:39.262834 | 2018-04-18T01:28:23 | 2018-04-18T01:28:23 | 129,976,755 | 0 | 0 | BSD-3-Clause | 2018-04-17T23:33:23 | 2018-04-17T23:33:23 | null | UTF-8 | C++ | false | false | 2,399 | cpp | //#####################################################################
// Copyright 2006-2009, Michael Lentine, Craig Schroeder, Eftychios Sifakis, Jonathan Su.
// This file is part of PhysBAM whose distribution is governed by the license contained in the accompanying file PHYSBAM_COPYRIGHT.txt.
//####################... | [
"quhang@stanford.edu"
] | quhang@stanford.edu |
a8c6a620a3e049b37f4d5e0b33f53723c14d06db | b4b80bbe82640952ae5d2af42d887fef497c4254 | /TimeClass.h | 0358047b8f99ac4fcf3bdee1eaf03952f539f7e9 | [
"MIT"
] | permissive | UnlikeSuika/Touhou_Unfound_Dimensions | 899c7b7be98e19554a9d6c98a83b8710a72bd631 | b76984308bf32f3511bb81bb54ae997943016d82 | refs/heads/master | 2020-04-12T01:38:36.974750 | 2017-02-19T03:31:45 | 2017-02-19T03:31:45 | 51,175,878 | 0 | 0 | null | 2016-04-30T00:22:49 | 2016-02-05T21:41:08 | C++ | UTF-8 | C++ | false | false | 896 | h | #ifndef _TIME_CLASS_H_
#define _TIME_CLASS_H_
const int MAX_TIMER_COUNT = 30;
const int MAX_CLOCK_COUNT = 30;
class TimeClass{
private:
struct TimerType{
int timeLeft;
int ID;
};
struct ClockType{
int time;
int ID;
};
unsigned long int frame;
TimerType timer[MAX_TIMER_COUNT];
ClockType clock[MAX_CLOC... | [
"unlikesuika@gmail.com"
] | unlikesuika@gmail.com |
7b10f8e4433e74622d38f2cf902843613cf92da1 | 375a52f863fd4d3fbd5c993edb22185c26fd9c84 | /Build3DProject/GLWidget.cpp | eb0c542b13ad23db7802eb395528dd0c7ac4c398 | [] | no_license | anguszhou/Build3D | 5c5bf07994fd74f397a85e7274d08d0d01feab1b | 4867851513320c2ae1e017e0d24e9f832884160f | refs/heads/master | 2021-01-10T19:03:37.311235 | 2014-02-18T01:52:04 | 2014-02-18T01:52:04 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,787 | cpp | #include "glwidget.h"
#include <QtCore>
#include <QtOpenGL>
#include <time.h>
#ifndef GL_MULTISAMPLE
#define GL_MULTISAMPLE 0x809D
#endif
#define GL_PI 3.1415926
#define GL_RADIUX 0.2f
#define glGUI ((QSplatWin32GUI *) theQSplatGUI)
GLWidget::GLWidget(QGLWidget *parent) :
QGLWidget(parent)
{
makeCurrent();
... | [
"zhoucong07@gmail.com"
] | zhoucong07@gmail.com |
fe023e00c351c6b8a2deb81ed6cc9c2510476937 | e46b909cdf0361f6c336f532507573c2f592cdf4 | /util/system/filemap.h | 64ce3f7dfd5fd7e9ea7ddea18ebcc790bc890954 | [
"Apache-2.0"
] | permissive | exprmntr/test | d25b50881089640e8d94bc6817e9194fda452e85 | 170138c9ab62756f75882d59fb87447fc8b0f524 | refs/heads/master | 2022-11-01T16:47:25.276943 | 2018-03-31T20:56:25 | 2018-03-31T20:56:25 | 95,452,782 | 0 | 3 | Apache-2.0 | 2022-10-30T22:45:27 | 2017-06-26T14:04:21 | C++ | UTF-8 | C++ | false | false | 8,770 | h | #pragma once
#include "file.h"
#include "align.h"
#include "yassert.h"
#include <util/generic/noncopyable.h>
#include <util/generic/ptr.h>
#include <util/generic/utility.h>
#include <util/generic/yexception.h>
#include <util/generic/flags.h>
#include <util/generic/string.h>
#include <new>
#include <cstdio>
struct T... | [
"exprmntr@yandex-team.ru"
] | exprmntr@yandex-team.ru |
9e65b6afc7a433a4cf5c1a2fa76e0590a57ccdc0 | be6061392ebd7ab08dfaa8219eb3515b3de47e93 | /examples/algo1_nandsim/nandsim.cpp | 2f524e6a34f27ac804c44b69aa4890260accd951 | [
"MIT"
] | permissive | chenm001/connectal | 7848385216ae34b727591ef9055d48ac30855934 | 66d30ffcca8e0260041fb6b48b3200411ff73282 | refs/heads/master | 2023-04-17T15:21:05.308406 | 2023-04-16T21:32:10 | 2023-04-16T21:32:10 | 50,326,674 | 1 | 0 | MIT | 2023-04-17T02:18:45 | 2016-01-25T04:45:13 | Bluespec | UTF-8 | C++ | false | false | 3,093 | cpp | #include <errno.h>
#include <fcntl.h>
#include <stdio.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>
#include "portal.h"
#include "dmaManager.h"
#include "NandCfgRequest.h"
#include "NandCfgIndication.h"
class NandCfgIndication : public NandCfgIndicationWrapper
{
public:
unsigned int rDataCnt;
... | [
"jamey.hicks@gmail.com"
] | jamey.hicks@gmail.com |
4bcdb892fd480b5c2bd1615a22c508b7e4cfd489 | 52f62927bb096e6cbc01bd6e5625a119fb35c1c5 | /avt/Queries/Queries/avtExpectedValueQuery.h | 849ca69a03c9e702f6c0f1f54847ec785eac0f9b | [] | no_license | HarinarayanKrishnan/VisIt27RC_Trunk | f42f82d1cb2492f6df1c2f5bb05bbb598fce99c3 | 16cdd647ac0ad5abfd66b252d31c8b833142145a | refs/heads/master | 2020-06-03T07:13:46.229264 | 2014-02-26T18:13:38 | 2014-02-26T18:13:38 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,610 | h | /*****************************************************************************
*
* Copyright (c) 2000 - 2013, Lawrence Livermore National Security, LLC
* Produced at the Lawrence Livermore National Laboratory
* LLNL-CODE-442911
* All rights reserved.
*
* This file is part of VisIt. For details, see https://visit.llnl... | [
"brugger@18c085ea-50e0-402c-830e-de6fd14e8384"
] | brugger@18c085ea-50e0-402c-830e-de6fd14e8384 |
b45c74ab4359f8ddcc3e99771d3e9e62e1cfd0cd | 0b111b10f185e0148f9ad137a1f6590e79d2cdeb | /kraUtilities/include/kraModule.h | bd6cea63c1b1b53d2055297ece61219d959969fe | [] | no_license | GalahadP92/Kraken-Engine | c409497592e3e2c8645484d94b17df7a63d03af9 | fe8f27a378c9e85c36d4c0b3a042a549782988e7 | refs/heads/master | 2023-08-07T14:17:06.601235 | 2020-07-09T16:44:43 | 2020-07-09T16:44:43 | 278,412,919 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,729 | h | #pragma once
#include "kraPrerequisitesUtil.h"
#include <iostream>
namespace kraEngineSDK{
using std::cout;
template<class T>
class Module
{
public:
static T&
instance() {
if (!isStartedUp()) {
std::cout << "Trying to access module but it hasn't started\n";
}
if (... | [
"evey92@gmail.com"
] | evey92@gmail.com |
593dcabd1348a48eea41a4e863d7d0595a9a030b | 90d39aa2f36783b89a17e0687980b1139b6c71ce | /SPOJ/BOOKS1.cpp | aa3a89f41208fd13f4b286a710faee88262e8004 | [] | no_license | nims11/coding | 634983b21ad98694ef9badf56ec8dfc950f33539 | 390d64aff1f0149e740629c64e1d00cd5fb59042 | refs/heads/master | 2021-03-22T08:15:29.770903 | 2018-05-28T23:27:37 | 2018-05-28T23:27:37 | 247,346,971 | 4 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,717 | cpp | /*
Nimesh Ghelani (nims11)
*/
#include<iostream>
#include<cstdio>
#include<cmath>
#include<algorithm>
#include<map>
#include<string>
#include<vector>
#include<queue>
#include<cmath>
#include<stack>
#include<utility>
#define in_T int t;for(scanf("%d",&t);t--;)
#define in_I(a) scanf("%d",&a)
#define in_F(a) scanf("%l... | [
"nimeshghelani@gmail.com"
] | nimeshghelani@gmail.com |
4647cfcf4d3761b0c0da56b8afd29e5e4d5c72ad | ca6ad207254acd23b8cb56aec2bb30951c52a949 | /src/core/framework/ui/portable/SpriteBatcher.cpp | cef0a591ecd408092192c361e38cbffee67d727e | [] | no_license | sgowen/GGJ17 | 30c049f2faa491f232835d3410458f35206d15cc | eee3863538754b3cfdba95827afcce09b58c937a | refs/heads/master | 2022-05-02T08:40:34.973728 | 2022-04-26T21:16:43 | 2022-04-26T21:16:43 | 79,612,785 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 252 | cpp | //
// SpriteBatcher.cpp
// noctisgames-framework
//
// Created by Stephen Gowen on 9/25/14.
// Copyright (c) 2017 Noctis Games. All rights reserved.
//
#include "SpriteBatcher.h"
SpriteBatcher::SpriteBatcher() : m_iNumSprites(0)
{
// Empty
}
| [
"dev.sgowen@gmail.com"
] | dev.sgowen@gmail.com |
d95c7fd09908b17bf398d12ef6c445a1da98dfca | 94eefa5c297a427cf52d2cdd9852fbc74605a76d | /Exercise4.h | d4b7d1d4f5f16a8e4647a956f095578adac71130 | [] | no_license | calderona/ZAnalyisis | f78f62ec19794f043da721ba33a2d0702364fc5a | 2ca9fb15b61a87ff3c60618a7e963414d07cdd90 | refs/heads/master | 2021-01-22T11:37:16.942535 | 2014-10-17T10:42:11 | 2014-10-17T10:42:11 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,621 | h | //////////////////////////////////////////////////////////
// Universidad de Cantabria
// Ciencias Físicas - Partículas
// Curso 2014 - 2015
// EXERCISE NUMBER 4 :: Analysis de datos del detector de partículas CMS
// Author: Alicia Calderon
// 07 October 2014 - Version v1.2
// Root version 5.30.06
////////////////... | [
"calderon@cern.ch"
] | calderon@cern.ch |
323d48a232dc170bdb3dca6a29cc27247a164709 | b41532e333eb839abd35c788fbdc54eadb93263b | /src/RMeCabMx.cpp | a739e7ccb566356a691bb563b5c7855ec480ca3e | [] | no_license | halka9000stg/RMeCab | 8dd1b94aa717bc6d9d1d10c798b4422e884b29ca | 72775047fe9f88346963512157dcab965440b9b6 | refs/heads/master | 2022-07-07T20:57:28.035193 | 2020-05-13T05:29:28 | 2020-05-13T05:29:28 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 17,907 | cpp | /*
ver 0.99995 2016 12 27
全ての関数を使われる前に消し去りたい
|\ /|
|\\ //|
: ,> `´ ̄`´ < ′
. V V
. i{ ● ● }i
八 、_,_, 八 わけがわからないよ
. / 个 . _ _ . 个 ',
_/ il ,' '. li ',__
docDF関数で全てをまかなえるから
*/
#include "RMeCab.h"
/... | [
"ishida.motohiro@tokushima-u.ac.jp"
] | ishida.motohiro@tokushima-u.ac.jp |
0a560c58cc175937ba9474a91f3bdedabf643db5 | e5c963f724be0e76db790093d1c0712adb66a7a9 | /4_texturaYluz/grafoparam.h | 96330c00b7bc5009f1d8dfef1861a8b1a02a23b8 | [] | no_license | yurenadelpeso/OpenGL | b27d0c5a07a06217555b575bdeacd066f91b611a | 599148999f632de58cde503d3767c2203b1edfcd | refs/heads/master | 2020-12-18T12:29:07.879646 | 2020-01-22T15:39:37 | 2020-01-22T15:39:37 | 235,381,255 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,695 | h | // #############################################################################
//
// Informática Gráfica (Grado Informática)
//
// Archivo: GrafoParam.h
// -- declaraciones de clase para el objeto jerárquico de la práctica 3
//
// #############################################################################
#ifndef ... | [
"yurenadelpeso@protonmail.com"
] | yurenadelpeso@protonmail.com |
c0313fba7a58c8d1d378ce149c30fe2bc8687822 | 4a13e4b7dd038ed801cc41e47bbd49b44c23692a | /Cat/Pie.h | 9eaff543780efca692580ae1425737188d11af03 | [] | no_license | SchemIng/Cat | 90fc90f6a56f06bf998159beb2dfd3d822997411 | 79aea3d2cd283953d6347dc8b591014bb41d9b30 | refs/heads/master | 2021-01-10T15:34:26.469746 | 2016-01-04T03:07:57 | 2016-01-04T03:07:57 | 48,970,740 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 226 | h | #pragma once
#include "Bill.h"
class CPie
{
public:
CPie(CPaintDC* dc, CPoint o, int r);
~CPie();
void Draw(vector<CBill> bills);
private:
CPoint o;
int r;
CPaintDC dc;
void count(vector<CBill> bills, double* a);
};
| [
"1055062460@qq.com"
] | 1055062460@qq.com |
747609b8c6187b661b33e0dca0d1d28edc801e7f | 693d9feddd6d151173b7bb6753681f2bab6e3dd0 | /src/servidor/modelo/fisicas/transformaciones/Reubicar.cpp | 9a0c8e876cd78ecda32ad2e0f44697ee3f6677b5 | [] | no_license | mateoicalvo/micromachines_cpp | e2e02971f0c170ec1054bf6642b263ef0fe5ebf6 | 06e6f608ff7ca00435a605aba2f6d0072079b913 | refs/heads/main | 2023-02-15T23:48:08.912214 | 2021-01-14T10:19:46 | 2021-01-14T10:19:46 | 329,439,942 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 651 | cpp | #include "includes/servidor/modelo/fisicas/transformaciones/Reubicar.h"
#include "includes/3rd-party/Box2D/Box2D.h"
#include "includes/servidor/modelo/movimiento/Posicion.h"
#ifndef DEGTORAD
#define DEGTORAD 0.0174532925199432957f
#define RADTODEG 57.295779513082320876f
#endif
Reubicar::Reubicar(Fisicas& fisicas, b2... | [
"macalvo@fi.uba.ar"
] | macalvo@fi.uba.ar |
c0e5b8853a72fb102664c29f6996d7bef2b4caae | 47c1438e4eabe800987865b8bdaad3a9a70ab172 | /utils/utils.hpp | a56c6915da9fcd7e9bc37b5481269f5ec4554961 | [] | no_license | gongcm/Server | 323bf8c1a6938bc5e5734440bbf25eb8fcaffb5b | 07b4d6a519135a6fb4f418064839ae51cf951614 | refs/heads/master | 2020-03-15T15:30:00.767247 | 2018-05-05T11:31:42 | 2018-05-05T11:31:42 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 375 | hpp | #include <iostream>
#include <sys/stat.h>
#include <unistd.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <unistd.h>
#include <string.h>
#include <stdlib.h>
#include <fcntl.h>
#include <sys/shm.h>
#include <sys/utsname.h>
#include <dirent.h>
class utils{
public:
static int getSystemVersion();
... | [
"gcm1994g@163.com"
] | gcm1994g@163.com |
9f2d595c99b4f7421bbe1f15a5733e1c8c143f41 | 5c77807c8a39658e995c00adecb5f9e3bde0884d | /opengl/Source/Shader/main.cpp | 5e7a3f06f7f2a08402b1346318ab9a04409a5fe2 | [] | no_license | starlitnext/practice | 6a39b116213caaf014875b32d048ff5f2d6ca190 | 3d1be394c7c7cc444a10cfd878caacb2f592b653 | refs/heads/master | 2021-01-18T21:33:09.692397 | 2018-01-24T15:23:25 | 2018-01-24T15:23:25 | 40,886,119 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,571 | cpp |
#include <iostream>
#include "Common.hpp"
#include "Shader.hpp"
// Function prototypes
void key_callback(GLFWwindow* window, int key, int scancode, int action, int mode);
// Window dimensions
const GLuint WIDTH = 800, HEIGHT = 600;
int main()
{
// ----------------------------------------------------... | [
"gzxuxiaoqiang@game.ntes"
] | gzxuxiaoqiang@game.ntes |
aa4d7853d94585a56c6818a1e0479301c126b674 | 025c78a4ed41519b08238afb2e6389d29a955893 | /ch02/ex202.cpp | 9eb1e625923322f398d1d77534a5a552dc6b8682 | [] | no_license | ArtemNikolaev/opp-in-cpp | 09a92282c56337b994160be66db5f323ee029640 | b13373bdbd3b33b1c2953e88c626046f3ca635e7 | refs/heads/master | 2023-04-01T11:31:43.262127 | 2021-03-28T13:30:33 | 2021-03-28T13:30:33 | 334,686,841 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 378 | cpp | #include <iostream>
#include <iomanip>
int main() {
std::cout << std::setw(4) << 1990 << std::setw(9) << 135 << std::endl;
std::cout << std::setw(4) << 1991 << std::setw(9) << 7290 << std::endl;
std::cout << std::setw(4) << 1992 << std::setw(9) << 11300 << std::endl;
std::cout << std::setw(4) << 19... | [
"artem@nikolaev.by"
] | artem@nikolaev.by |
3711faf1f6c02f323de756c2e0452ed7bbe95aec | 21f553e7941c9e2154ff82aaef5e960942f89387 | /include/algorithms/neural_networks/layers/fullyconnected/fullyconnected_layer_backward.h | 94f96c7047aab261a07873b287a9ab157a3c88de | [
"Apache-2.0",
"Intel"
] | permissive | tonythomascn/daal | 7e6fe4285c7bb640cc58deb3359d4758a9f5eaf5 | 3e5071f662b561f448e8b20e994b5cb53af8e914 | refs/heads/daal_2017_update2 | 2021-01-19T23:05:41.968161 | 2017-04-19T16:18:44 | 2017-04-19T16:18:44 | 88,920,723 | 1 | 0 | null | 2017-04-20T23:54:18 | 2017-04-20T23:54:18 | null | UTF-8 | C++ | false | false | 8,487 | h | /* file: fullyconnected_layer_backward.h */
/*******************************************************************************
* Copyright 2014-2017 Intel Corporation
*
* 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 c... | [
"vasily.rubtsov@intel.com"
] | vasily.rubtsov@intel.com |
49253809c76f108e98b2afcee193135537c64487 | aab7eafab5efae62cb06c3a2b6c26fe08eea0137 | /preparetuplesforBDTfinalallvartrigger/MCSigpreparetupleNewL0/src/mainincludebreak.cc | 55d5836a79b1b3b9c54a914a419ced08349480db | [] | no_license | Sally27/B23MuNu_backup | 397737f58722d40e2a1007649d508834c1acf501 | bad208492559f5820ed8c1899320136406b78037 | refs/heads/master | 2020-04-09T18:12:43.308589 | 2018-12-09T14:16:25 | 2018-12-09T14:16:25 | 160,504,958 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 9,477 | cc | #include <iostream>
#include<sstream>
#include<string>
#include<vector>
#include<fstream>
#include "TH1F.h"
#include "TH3F.h"
#include "TCanvas.h"
#include "TFile.h"
#include "TTree.h"
#include "TLorentzVector.h"
#include "TVector3.h"
#include "TBranch.h"
#include "TRandom.h"
#include "TBranch.h"
#include "TString.h"
#... | [
"ss4314@ss4314-laptop.hep.ph.ic.ac.uk"
] | ss4314@ss4314-laptop.hep.ph.ic.ac.uk |
14aa1ddfc8beba4bec0a50896b65f2703c446c11 | 5d2343977bd25cae2c43addf2e19dd027a7ae198 | /Codeforces/CR630/c.cpp | c3b7dd2d77ead4093108900a255e0b966681a831 | [] | no_license | ayushgupta2959/CodeReview | 5ea844d180992ee80ba1f189af2ab3b0be90f5ce | 7d8a5a6610c9227e458c6fda0bbc5885301788d8 | refs/heads/master | 2021-08-22T13:07:59.314076 | 2020-04-26T14:30:08 | 2020-04-26T14:30:08 | 173,270,707 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 720 | cpp | #include <bits/stdc++.h>
using namespace std;
#define sp ios_base::sync_with_stdio(false),cin.tie(NULL),cout.tie(NULL)
#define v(t) vector<t>
#define vv(t) vector<vector<t>>
#define vn(t,n,val) vector<t>(n,val)
#define vvn(t,r,c,val) vector<vector<t>>(r, vector<t>(c,val))
#define vvv(t) vector<vector<vector<t>>>
#defi... | [
"37008291+ayushgupta2959@users.noreply.github.com"
] | 37008291+ayushgupta2959@users.noreply.github.com |
5ac62918490a8a0d8ddd5477426003aaa55f1da6 | 16db2176f14d67f7e270c8ccfb263c2cc4bd90fa | /Linked List/Doubly Linked list/del_end.cpp | 8ad8d8f9d98f3227d0bfa8fd26858c551de3eb54 | [] | no_license | Anantm007/Ds-Algo-Programs | 7416348a3a3d6f7df1761db6319ab425ea7d4431 | fb2ae5b2b5fa89837c653e08e196c53db647b04d | refs/heads/master | 2023-02-18T04:21:10.039700 | 2021-01-21T08:35:43 | 2021-01-21T08:35:43 | 330,117,532 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,564 | cpp | #include <iostream>
using namespace std;
struct node {
int n;
node *next;
node *prev;
node (int d) {
n = d;
next = NULL;
prev = NULL;
}
};
// O (n)
node *ins_end (node *head, int data) {
node *temp = new node (data);
if (head == NULL) {
return temp;
}
... | [
"anant.mathur007@gmail.com"
] | anant.mathur007@gmail.com |
b9bf14eefaaab6dfd66339820001fa8d1352f287 | 3438e8c139a5833836a91140af412311aebf9e86 | /ash/shell/panel_window.cc | 168649f032fbe31eec1674af5ac0fc88bfa837c8 | [
"BSD-3-Clause"
] | permissive | Exstream-OpenSource/Chromium | 345b4336b2fbc1d5609ac5a67dbf361812b84f54 | 718ca933938a85c6d5548c5fad97ea7ca1128751 | refs/heads/master | 2022-12-21T20:07:40.786370 | 2016-10-18T04:53:43 | 2016-10-18T04:53:43 | 71,210,435 | 0 | 2 | BSD-3-Clause | 2022-12-18T12:14:22 | 2016-10-18T04:58:13 | null | UTF-8 | C++ | false | false | 2,250 | cc | // Copyright (c) 2012 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 "ash/shell/panel_window.h"
#include "ash/common/wm/panels/panel_frame_view.h"
#include "ash/screen_util.h"
#include "ash/shell.h"
#include "... | [
"support@opentext.com"
] | support@opentext.com |
30e8970bf412022ee788b617fb02408e3e9aa50b | b67a780af96a1b70569f81def205f2adbe328292 | /Demo/Graph/DirectedGraph/Connected/DirectedCycle.hpp | 545fdad1a8bfad451974630397cfc90e0497b853 | [] | no_license | doquanghuy/Algorithm | 8c27933c5c42b4324b39e061c43542adf4a6372b | 4dd63edd823bd0a158034e281c37ef1f6704ec9c | refs/heads/master | 2020-04-13T18:52:44.872226 | 2019-01-16T15:04:48 | 2019-01-16T15:04:48 | 163,387,254 | 0 | 0 | null | 2019-01-16T14:21:06 | 2018-12-28T08:36:31 | null | UTF-8 | C++ | false | false | 578 | hpp | //
// DirectedCycle.hpp
// Demo
//
// Created by Quang Huy on 12/22/18.
// Copyright © 2018 Techmaster. All rights reserved.
//
#ifndef DirectedCycle_hpp
#define DirectedCycle_hpp
#include <stdio.h>
#include "Stack+LinkedList.hpp"
class Digraph;
class DirectedCycle {
public:
DirectedCycle(Digraph g);
boo... | [
"sin.do@mobiclixgroup.com"
] | sin.do@mobiclixgroup.com |
efe4916240e5925eba0b0f9e5aaccb13a9af6107 | c485cb363d29d81212427d3268df1ddcda64d952 | /dependencies/boost/libs/spirit/example/scheme/qi/parse_qiexpr.hpp | a9696f673e98768e60d7a1d38984b5c910845717 | [
"BSL-1.0"
] | permissive | peplopez/El-Rayo-de-Zeus | 66e4ed24d7d1d14a036a144d9414ca160f65fb9c | dc6f0a98f65381e8280d837062a28dc5c9b3662a | refs/heads/master | 2021-01-22T04:40:57.358138 | 2013-10-04T01:19:18 | 2013-10-04T01:19:18 | 7,038,026 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 654 | hpp | // Copyright (c) 2001-2010 Hartmut Kaiser
//
// 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)
#if !defined(BOOST_SPIRIT_PARSE_QIEXPR)
#define BOOST_SPIRIT_PARSE_QIEXPR
#include <input/sexpr.hpp>
nam... | [
"fibrizo.raziel@gmail.com"
] | fibrizo.raziel@gmail.com |
0c07d94815348de12a9b5fb15764917aa707d913 | 72530b12990dc28da37e3aad3d32bf8768af630b | /CPP/cpp_pool/day04/ex02/AssaultTerminator.cpp | a65151f34cc1c8f995b9720d510b0a0d94d39338 | [] | no_license | lacretelle/42_cursus | baa805415819a74535d94a9a2f2ca058080d70c0 | 3333da966109c1e378545137b5530148ecd7d972 | refs/heads/master | 2023-03-17T16:19:31.627724 | 2021-03-05T15:25:57 | 2021-03-05T15:25:57 | 317,812,905 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 940 | cpp | #include "AssaultTerminator.hpp"
AssaultTerminator::AssaultTerminator()
{
std::cout << "* teleports from space *" << std::endl;
}
AssaultTerminator::AssaultTerminator(AssaultTerminator const &src)
{
std::cout << "copy" << std::endl;
*this = src;
}
AssaultTerminator & AssaultTerminator::operator=(AssaultTer... | [
"marie@MacBook-Air-de-Marie.local"
] | marie@MacBook-Air-de-Marie.local |
97384d59742e4a539b01df4e008c02a55ae3f9a8 | 815aaa29871c1f4de330669ca692294c1c7baccb | /testscripts/indexgen2d_templated.cpp | c81be28cc3e49673017cb86cfc4140286ca51813 | [] | no_license | khokhlov/solvergen | 44a4aea8aaf6edebca2945560e6c539727cb2121 | 9bf580eeed1d263e83ca754417bd8365dcde7d30 | refs/heads/master | 2020-08-11T01:10:18.886710 | 2019-05-30T07:32:55 | 2019-05-30T07:39:19 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 11,147 | cpp | #include <iostream>
#include <vector>
#include <bitset>
#include <cmath>
#include <array>
#include <cassert>
using namespace std;
class Checker {
public:
Checker(int nx, int ny)
: nx(nx), ny(ny), data(nx * ny, -1)
{
}
bool check(int i, int j, int t) {
int& val = data.at(i + nx * j);
... | [
"furgailo@phystech.edu"
] | furgailo@phystech.edu |
4907aa6f867afa7d180a1305084e3f805802e238 | 768c55006dea03b485c4f6435b7e4888f489f719 | /include/AutomappingNode.h | dc60013a25d2d106ffa194123448359e68344406 | [] | no_license | red-itmo/box_finder | 94288448ce7d7aa7ebffcd99af12442f367a3b4f | 9e9503dab38f5eb7de03099d4c51143c5bb23208 | refs/heads/master | 2021-01-20T20:14:48.359548 | 2016-07-22T15:50:43 | 2016-07-22T15:50:43 | 63,970,233 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 858 | h | #ifndef _AUTOMAPPINGNODE_
#define _AUTOMAPPINGNODE_
#include <RobotClass.hpp>
#include <nav_msgs/GetPlan.h>
#include <box_finder/GetGoal.h>
#include <cstdlib>
#include <vector>
#include <fstream>
#define EQUAL(A, B) A.x == B.x && A.y == B.y
#define ISNULL(A) A.x == 0.0 && A.y == 0.0 && A.z == 0.0 && A.w == 0.0
class... | [
"antonovspostbox@gmail.com"
] | antonovspostbox@gmail.com |
7c4ec5d05ece56568c574ecfe218f98652907a3c | c1ff870879152fba2b54eddfb7591ec322eb3061 | /plugins/render/ogreRender/3rdParty/ogre/Components/Overlay/include/OgreOverlayElement.h | d0871d967b376d8a962a7df3c2b2efe04bd7b0e6 | [
"LicenseRef-scancode-free-unknown",
"MIT"
] | permissive | MTASZTAKI/ApertusVR | 1a9809fb7af81c3cd7fb732ed481ebe4ce66fefa | 424ec5515ae08780542f33cc4841a8f9a96337b3 | refs/heads/0.9 | 2022-12-11T20:03:42.926813 | 2019-10-11T09:29:45 | 2019-10-11T09:29:45 | 73,708,854 | 188 | 55 | MIT | 2022-12-11T08:53:21 | 2016-11-14T13:48:00 | C++ | UTF-8 | C++ | false | false | 21,590 | h | /*
-----------------------------------------------------------------------------
This source file is part of OGRE
(Object-oriented Graphics Rendering Engine)
For the latest info, see http://www.ogre3d.org/
Copyright (c) 2000-2016 Torus Knot Software Ltd
Permission is hereby granted, free of charge, to any person obta... | [
"peter.kovacs@sztaki.mta.hu"
] | peter.kovacs@sztaki.mta.hu |
f26c23ade804a84c4a6986f04d7355b64315a0f0 | aef50deb115eac52e29dce51eb9f5f8221e9ed16 | /gpu/command_buffer/service/shared_image_representation.h | da832e81a6348e35014ebf6e5ed2f264f9b12826 | [
"BSD-3-Clause"
] | permissive | coolsabya/chromium | 2a1557937943086e7d2245b9c28d614633ff6ffc | 65f89d72ed17c5c23f3c93d5b575ec51e86e1d82 | refs/heads/master | 2022-11-25T00:28:15.370458 | 2020-01-03T21:25:55 | 2020-01-03T21:25:55 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 12,946 | h | // Copyright 2018 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 GPU_COMMAND_BUFFER_SERVICE_SHARED_IMAGE_REPRESENTATION_H_
#define GPU_COMMAND_BUFFER_SERVICE_SHARED_IMAGE_REPRESENTATION_H_
#include <dawn/dawn_p... | [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
9a42a6a8494e88ca07433ce1dcc5d9be358ece6b | 0fa86e5ba6e6723ec1c2f72dc2812af566a61581 | /src/Camera.cpp | 025074473800480f4c6b54acf698fdf264dcf6ba | [
"MIT"
] | permissive | janisz/gk3d | 3814a1189f4eda29836f0ad5c616672e4f855673 | 9bda743a956f646867c527c4505543d4047d5ba3 | refs/heads/master | 2021-01-22T01:04:35.025942 | 2014-12-08T18:49:17 | 2014-12-08T18:49:17 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,891 | cpp | #include <stdio.h>
#include <math.h>
#include <GL/glut.h>
#include "Camera.h"
void Camera::Init()
{
m_yaw = 0.0;
m_pitch = 0.0;
SetPos(0, 0, 0);
}
void Camera::Refresh()
{
// Camera parameter according to Riegl's co-ordinate system
// x/y for flat, z for height
m_lx = cos(m_yaw) * cos(m_pitch... | [
"janiszt@gmail.com"
] | janiszt@gmail.com |
f91309ec1463d73994907e0d9d98999d87ff8da2 | 1a4d186d84b819da76c0ba6e1ebb3af87307a8f3 | /2257.cpp | f7f363ebc7d8865bb5cfc8d5a9553ca58d740919 | [] | no_license | JungHam/algorithm | b5e986c9e6c70e9092394417c53eaabebe0b8bf1 | ead08c8abe19a232651993ea5d52212b9262a4b7 | refs/heads/master | 2020-03-19T07:19:13.010706 | 2018-10-28T12:31:25 | 2018-10-28T12:31:25 | 136,104,591 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,637 | cpp | #include <iostream>
#include <string>
#include <ctype.h>
using namespace std;
string chemical;
long long global_count = 0;
long long calcChemical(string part_c){
long long local_count= 0;
long long previous_count = 0;
int i = 0;
while(global_count < part_c.size()){ //전역변수로 index 체크하는 경우에는 for문은 괜히 한바퀴... | [
"wjdgpal7@gmail.com"
] | wjdgpal7@gmail.com |
ebc6fb20e89828f29706f62aee1b4cffece75874 | 36bf908bb8423598bda91bd63c4bcbc02db67a9d | /Library/CHotkeyHandler.cpp | 15febe39e79e820d09d62728a8f847983dbeed2d | [] | no_license | code4bones/crawlpaper | edbae18a8b099814a1eed5453607a2d66142b496 | f218be1947a9791b2438b438362bc66c0a505f99 | refs/heads/master | 2021-01-10T13:11:23.176481 | 2011-04-14T11:04:17 | 2011-04-14T11:04:17 | 44,686,513 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 18,886 | cpp | #include "env.h"
#include "pragma.h"
#include "macro.h"
#include "window.h"
#include "traceexpr.h"
//#define _TRACE_FLAG _TRFLAG_TRACEOUTPUT
//#define _TRACE_FLAG _TRFLAG_NOTRACE
#define _TRACE_FLAG_INFO _TRFLAG_NOTRACE
#define _TRACE_FLAG_WARN _TRFLAG_NOTRACE
#define _TRACE_FLAG_ERR _TRFLAG_NOTRACE
/*
... | [
"luca.pierge@gmail.com"
] | luca.pierge@gmail.com |
eaaddffc571e5ad5b1aa953164019055033d2410 | d0fb46aecc3b69983e7f6244331a81dff42d9595 | /alikafka/src/model/UpdateConsumerOffsetResult.cc | 1ace5b4b7cf904781ffdfcb26ac559122fbf0a2c | [
"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 | 1,722 | 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... | [
"sdk-team@alibabacloud.com"
] | sdk-team@alibabacloud.com |
16134ee8a40bb7c4bcbddb21ae296c2b61773ec6 | 38c10c01007624cd2056884f25e0d6ab85442194 | /extensions/common/manifest_test.cc | 37034b5927e2c313389bc3889ad80d35a0d61e00 | [
"BSD-3-Clause"
] | permissive | zenoalbisser/chromium | 6ecf37b6c030c84f1b26282bc4ef95769c62a9b2 | e71f21b9b4b9b839f5093301974a45545dad2691 | refs/heads/master | 2022-12-25T14:23:18.568575 | 2016-07-14T21:49:52 | 2016-07-23T08:02:51 | 63,980,627 | 0 | 2 | BSD-3-Clause | 2022-12-12T12:43:41 | 2016-07-22T20:14:04 | null | UTF-8 | C++ | false | false | 9,032 | cc | // Copyright (c) 2012 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 "extensions/common/manifest_test.h"
#include "base/files/file_path.h"
#include "base/files/file_util.h"
#include "base/json/json_file_value_... | [
"zeno.albisser@hemispherian.com"
] | zeno.albisser@hemispherian.com |
b4fb2210a8be6a954abc1a796044da981b41c1a0 | b7f3edb5b7c62174bed808079c3b21fb9ea51d52 | /third_party/blink/renderer/core/layout/ng/mathml/ng_math_radical_layout_algorithm.cc | eda8c7b094f7dd09b2182023358314d5f55cbd49 | [
"LGPL-2.0-or-later",
"GPL-1.0-or-later",
"MIT",
"Apache-2.0",
"LicenseRef-scancode-warranty-disclaimer",
"LGPL-2.1-only",
"GPL-2.0-only",
"LGPL-2.0-only",
"BSD-2-Clause",
"LicenseRef-scancode-other-copyleft",
"BSD-3-Clause"
] | permissive | otcshare/chromium-src | 26a7372773b53b236784c51677c566dc0ad839e4 | 64bee65c921db7e78e25d08f1e98da2668b57be5 | refs/heads/webml | 2023-03-21T03:20:15.377034 | 2020-11-16T01:40:14 | 2020-11-16T01:40:14 | 209,262,645 | 18 | 21 | BSD-3-Clause | 2023-03-23T06:20:07 | 2019-09-18T08:52:07 | null | UTF-8 | C++ | false | false | 10,177 | cc | // Copyright 2020 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 "third_party/blink/renderer/core/layout/ng/mathml/ng_math_radical_layout_algorithm.h"
#include "third_party/blink/renderer/core/layout/ng/mathml... | [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
e6b2340e49f0a04fd8c583d433974d25dd44984a | 25765941341ff304a3c7faf0ddee437f3bea8310 | /src/WinMain.cxx | 94a00033fdd67b18162d53c80d8f55e8a1dcb597 | [
"BSD-3-Clause"
] | permissive | fermi-lat/gui | 797cdf0dfb9a0905e2bebbe618dc8a4701c0ffc0 | d2387b2d9f2bbde3a9310ff8f2cca038a339ebf6 | refs/heads/master | 2021-05-05T16:14:43.636293 | 2019-08-27T17:29:51 | 2019-08-27T17:29:51 | 103,186,998 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,859 | cxx | #ifdef WIN32 // only used for the windows app
// $Header: /nfs/slac/g/glast/ground/cvs/GlastRelease-scons/gui/src/WinMain.cxx,v 1.2 2002/11/01 22:57:05 burnett Exp $
#include "WinGui.h"
#include "WinScene.h"
#include "WinGUIostream.h"
#include "gui/Menu.h"
#include "gui/SubMenu.h"
#include "resource.h"
extern "C" { i... | [
""
] | |
185f0ea6883490059c56bf02d212e1be05ad187d | 07c856e147c6b3f0fa607ecb632a573c02165f4f | /Ch08_Algorithm/ex32_next_permutation.cpp | ccfd00a371adeafd5a210c7435965b448b6c9ca8 | [] | no_license | choisb/Study-Cpp-STL | 46359db3783767b1ef6099761f67164ab637e579 | e5b12b6da744f37713983ef6f61d4f0e10a4eb13 | refs/heads/master | 2023-06-25T04:13:40.960447 | 2021-07-19T01:38:59 | 2021-07-19T01:38:59 | 329,786,891 | 0 | 0 | null | null | null | null | UHC | C++ | false | false | 1,767 | cpp | // next_permutation() 알고리즘 예제
// 원소의 순서를 순열처럼 변경할 때 next_permutation()과 prev_permutation()알고리즘을 사용
// next_permutation(b,e)는 구간 [b,e)의 순차열을 다음 순열의 순차열이 되게 한다.
// 마지막 순열이라면 false를 반환하며, 아니면 true를 반환한다.
// 이전 순열의 순차열이 되도록 하기 위해서는 prev_premutation(b,e)를 사용한다.
// 기본적으로 순열의 기준은 사전순이며, 사용자가 조건자를 사용하여 기준을 만들 수도 있다.
#include ... | [
"s004402@gmail.com"
] | s004402@gmail.com |
d672de6dff7d0f640a73931604a38f86ee73bcb1 | 1f2ba15e21a80b939cfe8b44851370ed5728b171 | /Chapter 3/3.1.5 (1).cpp | a20af25c38489b658ffe50700549088ffe10bffc | [] | no_license | AWoLf98/CPP-Advanced-Programing | bc8d9fc50731ccd22d433c2c7842bb7c5b68fc6d | 1cccb906dc8a3d3ea07b4d55d6fd47284e2fd5be | refs/heads/master | 2021-08-31T04:38:12.021413 | 2017-12-20T10:16:48 | 2017-12-20T10:16:48 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 297 | cpp | #include <iostream>
#include <string>
#include <vector>
#include <algorithm>
using namespace std;
//your_code
int main()
{
vector<int> values = { 1, 1, 5, 3, 4, 4, 3, 2, 2, 4, 4, 5, 3, 8, 8, 1 };
//your_code // pattern 1: { 0, 1, -1 } // pattern 2: { -1, 1, 0 }
return 0;
} | [
"andresistuk@ukr.net"
] | andresistuk@ukr.net |
48b037c14f1bbf610eb0e00e1730d52c6b18eca2 | ef59aae67e896e78723b719415068aa93a685854 | /others/sketch_oct09b/sketch_oct09b.ino | a453680e748b2c1ead3059f6cad0f87b4689f14f | [] | no_license | tokujin/Arduino | fe99fffa7c66dd0386fef1a4caee63ee509f7614 | 282de130362bd1e7aa8c74bd8bf55f37c70631e7 | refs/heads/master | 2016-09-06T05:12:09.744414 | 2013-05-08T16:52:43 | 2013-05-08T16:52:43 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 544 | ino | int sensorPin = A0; //select the input pin for the potentiometer
int ledPin = 13; //select the pin for the LED
int sensorValue = 0; //variable to store the value coming from the
int newSensorValue;
void setup(){
//declare the ledPIN as an OUTPUT:
pinMode(ledPin, OUTPUT);
Serial.begin(9600);
}
void loop(){
//... | [
"norihito.yuki@me.com"
] | norihito.yuki@me.com |
9b3058d03ff2b7fc2ad16cb089d2a4c75f371b85 | 3f21c24ff10cba14ca4ab16ee62e8c1213b60bd0 | /src/gestures/SystemGesture.cpp | 03d4e8db2d65cba5171cd68042440ba4b06391d7 | [] | no_license | watson-intu/self | 273833269f5bf1027d823896e085ac675d1eb733 | 150dc55e193a1df01e7acfbc47610c29b279c2e7 | refs/heads/develop | 2021-01-20T03:15:02.118963 | 2018-04-16T08:19:31 | 2018-04-16T08:19:31 | 89,515,657 | 34 | 31 | null | 2018-04-16T08:15:51 | 2017-04-26T18:50:00 | C++ | UTF-8 | C++ | false | false | 1,446 | cpp | /**
* Copyright 2017 IBM Corp. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law o... | [
"rolyle@us.ibm.com"
] | rolyle@us.ibm.com |
897cab253c90b9ff94274363bd7767a992fca802 | 21f082941cce3824ba96366e576308de135c08a7 | /src/rpcblockchain.cpp | 75ede93db5c20ab574c7bb7bfe3d3f935ea5d7b8 | [
"MIT"
] | permissive | chain123-team/litecoins | f1f582ec0f85e0b13c18781a4d8720cd35e32909 | 0409e805314b5e200a065c676d674e92840094a1 | refs/heads/main | 2023-09-02T23:04:20.061668 | 2021-11-12T07:55:47 | 2021-11-12T07:55:47 | 290,706,290 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 34,678 | cpp | // Copyright (c) 2010 Satoshi Nakamoto
// Copyright (c) 2009-2014 The Bitcoin developers
// Copyright (c) 2014-2015 The Dash developers
// Copyright (c) 2015-2017 The PIVX developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php... | [
"123chain.team@gmail.com"
] | 123chain.team@gmail.com |
f8474078f305094f8bc3346045fe8a8b1fd9dbdb | 9d374d182bfb7990ccc6fdffb05f824abc08300d | /DFS/removeLeavesBinaryTree.cpp | c6c7ddb2e7c7a332b117868aa56f3a9a525d1b8f | [
"MIT"
] | permissive | jkerkela/best-algorithm-collection | cf96e7d790fa5ce82c4411b7ea60940ee5adbaef | 6b22536a9f8ebdf3ae134031d41becf30066a5ef | refs/heads/master | 2023-08-29T18:30:28.692332 | 2021-11-14T10:23:56 | 2021-11-14T10:23:56 | 246,857,441 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,179 | cpp | /**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode(int x) : val(x), left(NULL), right(NULL) {}
* };
*/
class Solution {
public:
void deleteLeavesFromTreeRecursivelyPostOrder(TreeNode* parentNode, TreeNode* node, bool i... | [
"jonikerkela@hotmail.com"
] | jonikerkela@hotmail.com |
fd8ba1248793b71c9bef40a3ce4c149241f91039 | e6dfe602a69230fb4f2548afefd9faf85848d1d1 | /0027.cpp | 2122c4d645de333d3d972d14bd430d786b604465 | [] | no_license | chenjiahui0131/LeetCode_cpp | 0d6cb758c638bd2dd8b592a932529e39841e08f7 | aca79506326f0e1c2088f90437e7a17367e62879 | refs/heads/master | 2021-01-04T19:27:17.957312 | 2020-04-02T14:16:48 | 2020-04-02T14:16:48 | 240,728,567 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 543 | cpp | #include<iostream>
#include<vector>
using namespace std;
class Solution {
public:
int removeElement(vector<int>& nums, int val) {
int idx = -1;
for (int i = 0; i < nums.size(); i++) {
if (nums[i] != val) {
idx++;
nums[idx] = nums[i];
}
... | [
"coffee@email.com"
] | coffee@email.com |
f7d4b1cd1f2f50808caa626693e2ff3a898fbbee | 9d579a0ddba661ff9e3e29ec11fde5360bc433f1 | /Juego Dados/Jugador.h | c0237ffb6302f04a792641f59d7c577c4c787938 | [] | no_license | Agusdel/Programacion2 | 0eba3e3213b6fb28e1f9239af3ce16c01565bbfd | d1393fb8fc61cf23d4baa69a62f72b568a863f67 | refs/heads/master | 2021-01-17T18:17:10.621465 | 2016-11-21T04:04:32 | 2016-11-21T04:04:32 | 69,419,363 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 443 | h | #ifndef JUGADOR_H_INCLUDED
#define JUGADOR_H_INCLUDED
#include "Dado.h"
#include "TablaDeResultados.h"
class Jugador{
private:
Dado* dadoAzul;
Dado* dadoVerde;
Dado* dadoRojo;
public:
Jugador(int cantCarasAzul = 6, int cantCarasVerde = 8, int cantCarasRojo = 12);
~Jugador();
TablaDeResultado... | [
"agusdel_94@hotmail.com"
] | agusdel_94@hotmail.com |
79cf562e9c03a4d758dc342b509b48998be8c660 | 792e697ba0f9c11ef10b7de81edb1161a5580cfb | /tools/clang/test/CXX/drs/dr17xx.cpp | c8648908ebda9882785d1484d273006bee092ef5 | [
"Apache-2.0",
"LLVM-exception",
"NCSA"
] | permissive | opencor/llvmclang | 9eb76cb6529b6a3aab2e6cd266ef9751b644f753 | 63b45a7928f2a8ff823db51648102ea4822b74a6 | refs/heads/master | 2023-08-26T04:52:56.472505 | 2022-11-02T04:35:46 | 2022-11-03T03:55:06 | 115,094,625 | 0 | 1 | Apache-2.0 | 2021-08-12T22:29:21 | 2017-12-22T08:29:14 | LLVM | UTF-8 | C++ | false | false | 3,720 | cpp | // RUN: %clang_cc1 -std=c++98 %s -verify -fexceptions -fcxx-exceptions -pedantic-errors
// RUN: %clang_cc1 -std=c++11 %s -verify -fexceptions -fcxx-exceptions -pedantic-errors
// RUN: %clang_cc1 -std=c++14 %s -verify -fexceptions -fcxx-exceptions -pedantic-errors
// RUN: %clang_cc1 -std=c++1z %s -verify -fexceptions -f... | [
"agarny@hellix.com"
] | agarny@hellix.com |
31c1981515ef889205eaf9e2eb831bdbc19b9aba | 72527c36295e67ff9092a03a101ade79fa23f532 | /non-linear-ds/AVLdeletion.cpp | c1eaa1dc57dadf93d57a2d07615f2dc71b2b0ddd | [] | no_license | Divij-berry14/data-structures-and-algorithms | 66e5e6d1e3c559e872ac4c8b2db06483288b58f7 | 4b37d400dade439f15db662685acbea46cb77305 | refs/heads/master | 2020-06-19T05:49:46.418126 | 2019-06-19T01:18:45 | 2019-06-19T01:18:45 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,622 | cpp | /*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/*
* File: main.cpp
* Author: Priyanka
*
* Created on June 10, 2019, 8:14 PM
*/
// C++ program to insert a node in AVL tree ... | [
"500060668@stu.upes.ac.in"
] | 500060668@stu.upes.ac.in |
3ec88323905a8f206541cc8a3936763e80e03678 | 05d8a212d29c310157dbf6b3fbb1379055468309 | /chrome/browser/ui/views/tabs/tab_icon.cc | 2916aaaeb06f0da288e03dea73ff5c5e0b748e71 | [
"BSD-3-Clause"
] | permissive | zjj6029/chromium | 1e9743a8a4698831d0b9cf094c67216e7e4df27a | 80b54fd5b182936eab1fc1ac5c247857e66d5cbe | refs/heads/master | 2023-03-18T13:33:54.559462 | 2019-08-21T15:54:01 | 2019-08-21T15:54:01 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 15,266 | cc | // Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/ui/views/tabs/tab_icon.h"
#include "base/metrics/histogram_macros.h"
#include "base/time/default_tick_clock.h"
#include "base/ti... | [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
d6e3e45aa5dc3fb224dfdc730466e1a003ab94c9 | 663ab089cf6b940fa8245a897b5cc3887dfa089f | /src/gpplib.cpp | 9daeba0357660425e3e1f10bd481a3827faf3519 | [] | no_license | alfaki/gppk | eef55e803229cd27ca681e79d9448e8a7f6e2f9c | 1baf8f0edd722028081986ba748c32ea5bc33b34 | refs/heads/main | 2022-12-29T19:05:17.447179 | 2020-10-08T19:08:11 | 2020-10-08T19:08:11 | 302,432,462 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,750 | cpp | /* gpplib.cpp (miscellaneous library routines) */
/******************************************************************************
* This code is part of GPPK (The Generalized Pooling Problem Kit).
*
* Copyright (C) 2009, 2010 Mohammed Alfaki, Department of Informatics,
* University of Bergen, Bergen, Norway. Al... | [
"moh_alfaki@hotmail.com"
] | moh_alfaki@hotmail.com |
08cee1451d171a164ba7e3aca5b46029be3b0425 | 4f9ff3c611a74385e8ba90d7719ff57712afc8a1 | /some.cpp | 62424db0f2af620481fa737953e341da14437f17 | [] | no_license | EMWD/TriangleCalculating | 867a4cfbb6ec528fc2f704ec7d7764058f816055 | 8ee58dd7136a535acef5b024cee3ebbfc3567c72 | refs/heads/master | 2020-04-29T19:27:26.539427 | 2019-04-07T16:13:33 | 2019-04-07T16:13:33 | 176,355,173 | 0 | 0 | null | null | null | null | WINDOWS-1251 | C++ | false | false | 1,315 | cpp | int Point::classify(Point &p0, Point &pl)
{
Point p2 = *this;
Point a = p1 - pO;
Point b = p2 - pO;
double sa = a. x * b.y - b.x * a.y;
if (sa > 0.0)
return 0
if (sa < 0.0)
return RIGHT;
if ((a.x * b.x < 0.0) || (a.y * b.y < 0.0))
return 1
if (a.length() < b.length())
return... | [
"noreply@github.com"
] | EMWD.noreply@github.com |
1c5e802f2a2a1fa4c8b63a9d8d3684d9f709158f | 429c7c9911d1d474085610a4a9623c116ab0b50e | /NeuArch/Thread.cpp | 6fc86a314980d6375fcf8884935f748ea8930a7a | [] | no_license | evlad/nnacs | 932f575056da33e8d8b8a3b3f98b60b9713a575f | fea3f054b695c97b08b2e2584f2b56bc45b17e0b | refs/heads/master | 2023-04-27T00:38:55.261142 | 2019-10-06T16:20:55 | 2019-10-06T16:20:55 | 13,727,160 | 2 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 257 | cpp | /* Thread.cpp */
static char rcsid[] = "$Id$";
//---------------------------------------------------------------------------
#include "Thread.h"
//---------------------------------------------------------------------------
#pragma package(smart_init)
| [
"ev1ad@yandex.ru"
] | ev1ad@yandex.ru |
8a51ef8e58067fbdb6416a63746c2dc47dafeac9 | 5ec06dab1409d790496ce082dacb321392b32fe9 | /clients/cpp-tizen/generated/src/ComAdobeCqSocialEnablementAdaptorsEnablementResourceAdaptorFactoProperties.h | d1104d828590097092a34bd708c21f5d9cd79c54 | [
"Apache-2.0"
] | permissive | shinesolutions/swagger-aem-osgi | e9d2385f44bee70e5bbdc0d577e99a9f2525266f | c2f6e076971d2592c1cbd3f70695c679e807396b | refs/heads/master | 2022-10-29T13:07:40.422092 | 2021-04-09T07:46:03 | 2021-04-09T07:46:03 | 190,217,155 | 3 | 3 | Apache-2.0 | 2022-10-05T03:26:20 | 2019-06-04T14:23:28 | null | UTF-8 | C++ | false | false | 1,551 | h | /*
* ComAdobeCqSocialEnablementAdaptorsEnablementResourceAdaptorFactoProperties.h
*
*
*/
#ifndef _ComAdobeCqSocialEnablementAdaptorsEnablementResourceAdaptorFactoProperties_H_
#define _ComAdobeCqSocialEnablementAdaptorsEnablementResourceAdaptorFactoProperties_H_
#include <string>
#include "ConfigNodePropertyBoo... | [
"cliffano@gmail.com"
] | cliffano@gmail.com |
b030a566adfc03502cba6b087bbd5cd20f249c05 | a9fc0a713d0817160dc18a3fae1fbe8b804f7044 | /rc-switch-jni-wrapper/src/com_opitz_jni_NativeRCSwitchAdapter.cpp | 79fea898553b15a97256e96c31805509721bc07a | [] | no_license | magicgis/Pi-jAutomation433 | ced27758fce529f9b9e187cdfbd98e99844d5dd4 | 7ceec94dd7b1c89376db70fccbbe8d99e2b3964a | refs/heads/master | 2020-08-29T04:06:15.378274 | 2014-09-16T11:43:01 | 2014-09-16T11:43:01 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,015 | cpp | #include "com_opitz_jni_NativeRCSwitchAdapter.h"
#include "RCSwitch.h"
#include <stdio.h>
#include <stdlib.h>
#include <iostream>
#include <wiringPi.h>
using namespace std;
RCSwitch mySwitch = RCSwitch();
JNIEXPORT void JNICALL Java_com_opitz_jni_NativeRCSwitchAdapter_switchOn(JNIEnv * env, jobject obj, jstring js... | [
"satspeedy@users.noreply.github.com"
] | satspeedy@users.noreply.github.com |
b25fef9a4b12d686e1d8bc18ebbd090130d557c9 | 858d413add89d4afae69e13e2deb4572f8e5f34e | /test/arbitrary_fanin.cpp | 8d2e426b31f269d37c9d80ce4afa8dab444ac7b3 | [
"MIT"
] | permissive | msoeken/percy | 2958200e6af4bd857fd5b55e32cc73841c6e686a | 42cd65b490849d5cdc4b8142db03e78cc67f1be6 | refs/heads/master | 2020-03-19T18:11:35.569292 | 2018-06-08T13:55:00 | 2018-06-08T13:55:00 | 124,677,384 | 0 | 0 | MIT | 2018-04-25T13:04:40 | 2018-03-10T17:02:07 | C++ | UTF-8 | C++ | false | false | 1,443 | cpp | #include <cstdio>
#include <percy/percy.hpp>
using namespace percy;
/*******************************************************************************
Tests support for exact synthesis of arbitrary fanin chains. Specifically,
tests if the functions that are used to map selection variable indices to
fanin as... | [
"winston.haaswijk@gmail.com"
] | winston.haaswijk@gmail.com |
953545cb89deb409ff63aedc8e976b058438bfc1 | 4fa1e0711c3023a94035b58f6a66c9acd4a7f424 | /Microsoft/SAMPLES/CPPtoCOM/DB_Vtbl/Interface/Dbsrv.h | b1d29aad31a79d42cf391a6c279a1d59666ac97e | [
"MIT"
] | permissive | tig/Tigger | 4d1f5a2088468c75a7c21b103705445a93ec571c | 8e06d117a5b520c5fc9e37a710bf17aa51a9958c | refs/heads/master | 2023-06-09T01:59:43.167371 | 2020-08-19T15:21:53 | 2020-08-19T15:21:53 | 3,426,737 | 1 | 2 | null | 2023-05-31T18:56:36 | 2012-02-13T03:05:18 | C | UTF-8 | C++ | false | false | 724 | h | #ifndef _DBSERVER_INCLUDE
#define _DBSERVER_INCLUDE
typedef long HRESULT;
class IDB {
// Interfaces
public:
// Interface for data access
virtual HRESULT Read(short nTable, short nRow, LPTSTR lpszData) =0;
virtual HRESULT Write(short nTable, short nRow, LPCTSTR lpszData) =0;
// Interface for... | [
"charlie@kindel.com"
] | charlie@kindel.com |
9c855778a2888a3d40da21c56810803fa7c43bf4 | 72d8bd35b3be639a4be081de1786d031c9e9a1a9 | /PXFXMQery.cpp | 8f94641b40f9c54948f81faeaa786ac9950d51c6 | [] | no_license | bravesoftdz/IC-Info | 69bb6d30c130dc29da2b51262b542f95079fcf53 | e07e745a69ea2181d2fa05ad5fc2cc7b07711827 | refs/heads/master | 2020-03-08T06:40:20.549679 | 2014-11-20T11:51:14 | 2014-11-20T11:51:14 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 8,013 | cpp | //---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
#include "PXFXMQery.h"
//---------------------------------------------------------------------------
#pragma package(smart_init)
#pragma link "cxButtons"
#pragma link "cxCalendar"
#pragma link "cxContainer"
... | [
"47157860@qq.com"
] | 47157860@qq.com |
45e2a325dab8ec5d056af37af42b6a058938a849 | 02b361a4c1267e8f9e7e2008bf0d82fb9cef8cd2 | /src/txdb.cpp | b6379fbb2f9c1a7d68026403ef33287d4621ae40 | [
"MIT"
] | permissive | team-exor/exor | abaf938ee24cc66c6b86ee76a93aa501dbbd32ac | da9a2145d834e45db2fd8637ec984e249bfbd5d9 | refs/heads/master | 2020-05-28T05:50:04.600841 | 2019-06-24T20:26:46 | 2019-06-24T20:26:46 | 188,899,679 | 1 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 14,719 | cpp | // Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2014 The Bitcoin developers
// Copyright (c) 2016-2018 The PIVX developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "txdb.h"
#include "main.h... | [
"joeuhren@protonmail.com"
] | joeuhren@protonmail.com |
bf9e1719a140ccc62272e781f28b92a9e597bbba | 93f635bbef282f8dcfbbfa682aec2c206e68f7b7 | /beginner_level_and_uva/memset 1.cpp | 5ba1226cf3208c18cf8d87af1d93c1608ecb1578 | [] | no_license | Alimurrazi/Programming | 6ba828ea15e640f70311fab33cce1a6e9190db45 | cd4354616596d6c7865f4ccd835b1c0712f41c45 | refs/heads/master | 2023-08-01T14:23:31.342302 | 2021-09-14T03:53:50 | 2021-09-14T03:53:50 | 107,748,091 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 160 | cpp | #include<stdio.h>
#include<string.h>
int main()
{
int ara[100];
int i,j,k,l;
memset(ara,('1'-'0'),sizeof(ara));
for(i=0;i<=50;i++)
printf("%d\n",ara[i]);
}
| [
"alimurrazi570@gmail.com"
] | alimurrazi570@gmail.com |
16398a9e08fc3db5480d05882c1bf8450c397e62 | 1665a6d1f918076d4c5e29059eeedb344e8df28b | /src/reporters/reporter_particle.cpp | 141802427cf8609019036ae50e7e65f682e0b812 | [
"MIT"
] | permissive | suda/SensorReporter | 8ae50ef01c357d6e9774c95a66d418bee7587d32 | efd89334fc778f5adde91650899a0ba8f77fa5eb | refs/heads/master | 2020-04-01T07:40:54.027722 | 2018-10-16T17:58:10 | 2018-10-16T17:58:10 | 152,999,111 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 269 | cpp | #include "reporter_particle.h"
void ReporterParticle::report(Sample _sample)
{
String name = this->prefix;
name.concat(_sample.name);
Particle.publish(name, _sample.value);
}
void ReporterParticle::setPrefix(String _prefix)
{
this->prefix = _prefix;
}; | [
"admin@suda.pl"
] | admin@suda.pl |
d7cf5aa00a7af9379a0d212235c08c584227a53a | 9d05e9312f35377b46269ce00d5720338743e260 | /MashView.h | fe511b4134a617c0e99f36418570d7d97db04e7e | [] | no_license | dbratell/Mash | b18b83f0c9c10366cee29da0f1f9ce1a0eceb9c6 | 73ddb1405272725ca2b9406cd1e00b7d7f30da51 | refs/heads/master | 2020-05-09T15:06:49.671860 | 2000-04-24T20:29:24 | 2000-04-24T20:29:24 | 181,221,694 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,792 | h | // MashView.h : interface of the CMashView class
//
/////////////////////////////////////////////////////////////////////////////
#if !defined(AFX_MASHVIEW_H__278C1BB6_A133_4BD7_A3CA_34646DB9DB75__INCLUDED_)
#define AFX_MASHVIEW_H__278C1BB6_A133_4BD7_A3CA_34646DB9DB75__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endi... | [
"bratell@lysator.liu.se"
] | bratell@lysator.liu.se |
a82f1f5ae16cacdc5b315dd3ca012a691e12fb0e | 9e9267611371cdff143e7a9b286a9fffc2641e78 | /about.cpp | 2f19cfdae4ea8cd13cc09e765a17fb1c62037efa | [] | no_license | wucan/csv2sql | 736473e357c73acf40fa4ca96c05af3b52a572fc | 20c9630bd323d7787eb5a1982f8c98c0fd1a9ecc | refs/heads/master | 2021-01-22T23:57:52.712701 | 2012-03-30T13:49:14 | 2012-03-30T13:49:14 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,057 | cpp | #include <QPushButton>
#include "about.h"
AboutDialog::AboutDialog()
{
/* build ui */
ui.setupUi(this);
ui.closeButtonBox->addButton(new QPushButton("&Close", this),
QDialogButtonBox::RejectRole);
setWindowRole("csv2sql-about");
setMinimumSize(400, 300);
resize(400, 300);
setWind... | [
"wu.canus@gmail.com"
] | wu.canus@gmail.com |
ebcba5075897623ba1eba0f5fe41ad9e399fc2fc | ab97a8915347c76d05d6690dbdbcaf23d7f0d1fd | /third_party/blink/renderer/modules/webgpu/gpu_render_pipeline.cc | 2b44420412ced64b9d0d251c95a8b7e510c8cac3 | [
"BSD-3-Clause",
"LGPL-2.0-or-later",
"LicenseRef-scancode-warranty-disclaimer",
"LGPL-2.1-only",
"GPL-1.0-or-later",
"GPL-2.0-only",
"LGPL-2.0-only",
"BSD-2-Clause",
"LicenseRef-scancode-other-copyleft",
"MIT",
"Apache-2.0"
] | permissive | laien529/chromium | c9eb243957faabf1b477939e3b681df77f083a9a | 3f767cdd5c82e9c78b910b022ffacddcb04d775a | refs/heads/master | 2022-11-28T00:28:58.669067 | 2020-08-20T08:37:31 | 2020-08-20T08:37:31 | 288,961,699 | 1 | 0 | BSD-3-Clause | 2020-08-20T09:21:57 | 2020-08-20T09:21:56 | null | UTF-8 | C++ | false | false | 12,113 | cc | // Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "third_party/blink/renderer/modules/webgpu/gpu_render_pipeline.h"
#include "third_party/blink/renderer/bindings/core/v8/native_value_traits_impl... | [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
05a3fa4e764da6e7c9614bb002a9d5babcb94615 | a89bd048287b91f8fe958809b6c958bc45c1aec8 | /include/rtl/PerspectiveCamera.h | 6358baf3ffd7fb1df1aec107412cb67952e76f5b | [
"MIT"
] | permissive | potato3d/rtrt | 8b739300bed61a5336fe3a230e6384f897d74c61 | cac9f2f80d94bf60adf0bbd009f5076973ee10c6 | refs/heads/main | 2023-03-02T11:23:52.096304 | 2021-02-13T03:36:56 | 2021-02-13T03:36:56 | 338,484,429 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,500 | h | #pragma once
#ifndef _RTL_PERSPECTIVECAMERA_H_
#define _RTL_PERSPECTIVECAMERA_H_
#include <rts/ICamera.h>
#include <rtu/float3.h>
#include <rtu/quat.h>
#include <rtu/sse.h>
namespace rtl {
class PerspectiveCamera : public rts::ICamera
{
public:
virtual void init();
virtual void newFrame();
virtual void receivePar... | [
""
] | |
4c33aa8c2265575cf636f324549baa51f05c6940 | e642f1e4cc822114c8a3651cbe51dabb95c85716 | /ift-demo/demo/watershed/kernels/dijk.cpp | 13f18dd6b7d5748192c3654c3bde9e7ea275fa28 | [
"BSD-3-Clause"
] | permissive | gagallo7/OpenCLStudy | e80cd8d0339d1fafaa8860f2d2e6a161418a243e | d054115addb7831725f816eb7f4d54b81f1f14bc | refs/heads/master | 2021-01-19T10:59:10.373979 | 2014-04-01T01:11:19 | 2014-04-01T01:11:19 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 20,572 | cpp | #include <iostream>
#include <iomanip>
#include <fstream>
#include <sstream>
#include <string>
#include <string.h>
#include <vector>
#include <list>
#ifdef __APPLE__
#include <OpenCL/cl.h>
#else
#include <CL/cl.h>
#endif
#if !defined(CL_CALLBACK)
#define CL_CALLBACK
#endif
#define INF 1 << 30
using namespace std;
... | [
"gagallo7@gmail.com"
] | gagallo7@gmail.com |
1a5c75672ef92b2aeb6f371a76f307acf2e65505 | 4c61aafa94f3bfdc86e2b6218a92eabf2d1f1a2d | /PID.h | fb90c28ed281bfa4b29952a96d70fe61d2bc9a7d | [] | no_license | sriki-duplicate/CarND-PID-Control-Project | 452e11e3cafc0cd00e1be4e1054391c56fefa529 | 17037e9579c8256a831b27de666a2d246d96a333 | refs/heads/master | 2021-08-19T14:48:52.669782 | 2017-11-26T18:27:53 | 2017-11-26T18:27:53 | 112,032,799 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,026 | h | #ifndef PID_H
#define PID_H
#include <vector>
class PID {
public:
/*
* Errors
*/
double p_error;
double i_error;
double d_error;
/*
* Coefficients
*/
double Kp;
double Ki;
double Kd;
/*
* Twiddle variables
*/
std::vector<double> dp;
int step, param_index;
// number of ste... | [
"noreply@github.com"
] | sriki-duplicate.noreply@github.com |
1ec8b8e4d9ed980f9e1e2af57163eb3ec27af8e6 | d20876df1308f1eaf3c280f6d3dd78c47633a2d8 | /src/Corrade/PluginManager/Test/generated-metadata/GeneratedMetadataDynamic.cpp | ca30521c89c656d9f9cc585d72c5f90cd032af29 | [
"MIT",
"LicenseRef-scancode-public-domain",
"Unlicense"
] | permissive | mosra/corrade | 729ff71a9c8ceb7d27507b635be6433114b963bf | 183b375b73fa3e819a6b41dbcc0cf2f06773d2b4 | refs/heads/master | 2023-08-24T21:56:12.599589 | 2023-08-23T14:07:19 | 2023-08-24T09:43:55 | 2,863,909 | 470 | 143 | NOASSERTION | 2023-09-12T02:52:28 | 2011-11-28T00:51:12 | C++ | UTF-8 | C++ | false | false | 1,865 | cpp | /*
This file is part of Corrade.
Copyright © 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016,
2017, 2018, 2019, 2020, 2021, 2022, 2023
Vladimír Vondruš <mosra@centrum.cz>
Permission is hereby granted, free of charge, to any person obtaining a
copy of this softw... | [
"mosra@centrum.cz"
] | mosra@centrum.cz |
b804810e42ce1e17cd78f8cbd0738e37a55a37f0 | 186bb5a81666d27b7576732a35bf5a412b33224b | /exceptions/main.cpp | bc29ebeff5b0ba4e0f4141067b4c0b9731bda83f | [
"MIT"
] | permissive | VgTajdd/cpp_playground | 9de305821ecb53539a676097693f5f9039e9ccc9 | 7d91940f2404ae96a8f66cc6aac4334efca7b245 | refs/heads/master | 2023-06-07T18:12:38.826641 | 2023-09-17T19:19:19 | 2023-06-06T17:29:33 | 213,281,912 | 2 | 0 | null | null | null | null | WINDOWS-1252 | C++ | false | false | 4,076 | cpp | #include <iostream>
/*
An exception is an error condition.
*/
double division( int a, int b )
{
if ( b == 0 )
{
throw std::exception( "Division by zero condition!" );
}
return ( a / b );
}
class Entity
{
public:
Entity()
{
std::cout << "Entity created!" << std::endl;
}
... | [
"aduranddiaz@gmail.com"
] | aduranddiaz@gmail.com |
f06585d106b12a765e5f0e62c54cc0f9436209cd | e6ae6070d3053ca1e4ff958c719a8cf5dfcd6b9b | /sum_to_prime_spoj.cpp | f7883717e6b737c7893878b4eeb3553bcbe5faa1 | [] | no_license | Arti14/Competitive-Programming | 31d246d34581599219ffb7e23a3372f02fc6dfa6 | de42977b6cce39bb480d3cf90c1781d806be3b56 | refs/heads/master | 2021-01-25T07:34:29.240567 | 2015-05-08T07:07:10 | 2015-05-08T07:07:10 | 35,263,950 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,260 | cpp | #include <iostream>
#include <cmath>
#include <vector>
using namespace std;
vector < int > arr;
int dp[4][8000];
int cnt(int m, int n)
{
if(n==0)
{
return 1;
}
if(n<0)
{
return 0;
}
if (m <=0 && n >= 1)
{
return 0;
}
if (dp[m][n] == 0) {
dp[m][n] = cnt(m - 1, n) + cnt(m, n - m);
... | [
"rt@rt-VGN-CS14G-B.(none)"
] | rt@rt-VGN-CS14G-B.(none) |
bfe76ae9c060dec1266a80d5c27c80e019148545 | a3ec7ce8ea7d973645a514b1b61870ae8fc20d81 | /Codeforces/A/404.cc | f978cf5c38a0d91457842b3f31fea7221820d6d7 | [] | no_license | userr2232/PC | 226ab07e3f2c341cbb087eecc2c8373fff1b340f | 528314b608f67ff8d321ef90437b366f031e5445 | refs/heads/master | 2022-05-29T09:13:54.188308 | 2022-05-25T23:24:48 | 2022-05-25T23:24:48 | 130,185,439 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,515 | cc | #include <iostream>
#include <vector>
#include <set>
using namespace std;
int main() {
int n;
cin >> n;
bool out = false;
vector<string> sq;
set<char> all_set;
for(int i = 0; i < n && !out; ++i) {
string tmp;
cin >> tmp;
sq.push_back(tmp);
set<char> tmp_set;
... | [
"reynaldo.rz.26@gmail.com"
] | reynaldo.rz.26@gmail.com |
50b81048e62a4bb2f08b91c59a40f47efae62e61 | f442f639a567cde56ae5126dce18b944a510ce90 | /player_db.cpp | c7628238468decca568d1e3703ff66532261ec46 | [] | no_license | TieJu/swtorla | a22b4715933e9c690782e43c809e1acded6ed9b8 | dcf2cbd8af6891676640549b430351cd78e8fa36 | refs/heads/master | 2016-08-02T22:15:58.741909 | 2013-12-13T11:22:49 | 2013-12-13T11:22:49 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 373 | cpp | #include "app.h"
void player_db::set_player_name( const std::wstring& name_, string_id id_ ) {
ensure_index_is_present( id_ );
if ( is_player_in_db( name_ ) ) {
auto old = get_player_id( name_ );
if ( old != id_ ) {
_app->remap_player_name( old, id_ );
remove_player_name... | [
"tiemo.jung@thm.de"
] | tiemo.jung@thm.de |
51e96cec613372a1c8a36fdf984d3091e7c2967d | b116bebaea28d233092a76abc683d274675989ad | /forumCode/forumCode.ino | 2927a9c14a9e9f6f416289c8f0abc366c6c3feec | [] | no_license | nrtyc4/picospritzer | 762345983840c3fa53c273658ca190f173fd832d | 071b3888a1ee91f30774148dfaba6e914d431d28 | refs/heads/master | 2016-09-06T08:39:19.038829 | 2013-08-09T23:34:16 | 2013-08-09T23:34:16 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,777 | ino | #include <Wire.h> //I2C library
const byte LCDa = 40; //LCD address on I2C bus
const byte LCD_CLEAR[2] = {0xFE, 0x51};
const byte LCD_CLEAR_COUNT = 2;
const byte LCD_SET_CURSOR[2] = {0xFE, 0x45};
const byte LCD_SET_CURSOR_COUNT = 2;
//const byte LCD_UNDERLINE_CURSOR_ON[2] = {0xFE, 0x47};
//const byte LCD_UNDERLINE... | [
"natthompson72@gmail.com"
] | natthompson72@gmail.com |
080c0d35d2195ed26a02e5465739e970461ae3a0 | 839515ab21cf09f00321c1a33f8d890060429213 | /NFServer/NFGameServerNet_ServerPlugin/NFGameServerNet_ServerModule.h | e0a78d7f02c0a908b487ace0f42181b92c051e50 | [
"Apache-2.0"
] | permissive | lemospring/NoahGameFrame | 61aea980fc0ef44a60b5c110cba59d75ef7ebc34 | c4f049f235e779cd21f9cf3f0c8719c1ae825854 | refs/heads/master | 2021-03-21T16:22:03.320378 | 2020-03-14T05:45:36 | 2020-03-14T05:45:36 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,541 | h | /*
This file is part of:
NoahFrame
https://github.com/ketoo/NoahGameFrame
Copyright 2009 - 2020 NoahFrame(NoahGameFrame)
File creator: lvsheng.huang
NoahFrame is open-source software and you can redistribute it and/or modify
it under the terms of the License; b... | [
"342006@qq.com"
] | 342006@qq.com |
a06d0b2ba7c1970c1ab270f7844b496f44c787cc | 726030bc5951dfb65fd823cc11d39e2f145f85c1 | /Source/SnakeGame2/PlayerPawnBase.cpp | c92c7aab628764411e9d2722911cd1f843f709ad | [] | no_license | anchello2810/SnakeGame2 | 061877ffb4bd111ebe8e1d11a1f0ff31cc888542 | b732b682ab2466bd47d6691d0a5bb0af18a5da2b | refs/heads/master | 2023-07-10T15:37:21.344179 | 2021-08-09T14:43:27 | 2021-08-09T14:43:27 | 391,105,607 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,163 | cpp | // Fill out your copyright notice in the Description page of Project Settings.
#include "PlayerPawnBase.h"
#include "Engine/Classes/Camera/CameraComponent.h"
#include "SnakeBase.h"
#include "Components/InputComponent.h"
#include "Food.h"
// Sets default values
APlayerPawnBase::APlayerPawnBase()
{
// Set this pawn ... | [
"anchello@yandex.ru"
] | anchello@yandex.ru |
a9ddf2117cffb017e1cb9c93f63941d572605006 | 4296ad62fc2d1c0111af5e9c9ef5b8336256674e | /src/arc36/c.cpp | 55b1142cc1134fbd358aaffca76214d2436c098c | [] | no_license | emakryo/cmpro | 8aa50db1d84fb85e515546f37e675121be9de5c2 | 81db478cc7da06a9b99a7888e39952ddb82cdbe5 | refs/heads/master | 2023-02-09T12:36:47.893287 | 2023-01-23T12:07:03 | 2023-01-23T12:07:03 | 79,899,196 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,768 | cpp | #include<bits/stdc++.h>
#include<boost/variant.hpp>
using namespace std;
typedef long long ll;
typedef vector<boost::variant<bool, ll, int, string, double, char*, const char*>> any;
template<typename T> inline void pr(const vector<T> &xs){
for(int i=0; i<xs.size()-1; i++) cout<<xs[i]<<" ";
(xs.empty()?cout:(cout<<xs[... | [
"ryosuke.kamesawa@dena.jp"
] | ryosuke.kamesawa@dena.jp |
5bb5b2f90e8a4eed3dfc8c788fbad3bdb9a37c11 | d065109ae84eeda9ad64bd8fb1c4176c85730954 | /magician.cpp | 0a4fdb10563fba8270aa880d9a22444b3262396f | [] | no_license | liuke0002/BasicAlgorithm | 31e79209a948ece98e7e54aaa6af3c0a60730331 | df62d9954486ae0f25ff425435840817bd86f0ac | refs/heads/master | 2021-01-10T08:12:19.121080 | 2017-09-27T15:05:10 | 2017-09-27T15:05:10 | 54,707,237 | 1 | 0 | null | null | null | null | WINDOWS-1252 | C++ | false | false | 862 | cpp | #include<stdio.h>
#include<stdlib.h>
#define CardNumber 13
typedef struct node{
int data;
struct node *next;
}node;
node *createLinkList(){
node *head,*p;
node *s;
int i;
head=(node*)malloc(sizeof(node));
p=head;
for(i=0;i<CardNumber;i++){
s=(node*)malloc(sizeof(node));
s->data=0;
p->next=s;
p=s;
}
s-... | [
"1395674569@qq.com"
] | 1395674569@qq.com |
67678978cd39ab2bbe4e1508900be073fb0a6f8d | dbddebd6eb0ed34104acb254da81fc643c01a4ca | /ros/devel/include/styx_msgs/TrafficLight.h | 06c45173a2543ba0a7550b4f51346694c3ced9d7 | [
"MIT"
] | permissive | arpitsri3/CarND_Capstone_Code | 4eba922f7c8ccc3a01aff520934b39d1736520e6 | 2824a14c6fc3992123d5189187c5c8c85f58c9fd | refs/heads/master | 2020-03-19T05:57:27.860271 | 2018-06-06T09:32:41 | 2018-06-06T09:32:41 | 135,978,409 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 7,513 | h | // Generated by gencpp from file styx_msgs/TrafficLight.msg
// DO NOT EDIT!
#ifndef STYX_MSGS_MESSAGE_TRAFFICLIGHT_H
#define STYX_MSGS_MESSAGE_TRAFFICLIGHT_H
#include <string>
#include <vector>
#include <map>
#include <ros/types.h>
#include <ros/serialization.h>
#include <ros/builtin_message_traits.h>
#include <ro... | [
"i.arpitsri@gmail.com"
] | i.arpitsri@gmail.com |
af8b2e49ad29d538bc91a0d9770c331c2588c9d4 | 7ab3757bde602ebe0b2f9e49d7e1d5f672ee150a | /easyrespacker/src/librespacker/ShapeBuilder.h | 8369e261ca4bdb9bb823faced1a538f5d45107e4 | [
"MIT"
] | permissive | brucelevis/easyeditor | 310dc05084b06de48067acd7ef5d6882fd5b7bba | d0bb660a491c7d990b0dae5b6fa4188d793444d9 | refs/heads/master | 2021-01-16T18:36:37.012604 | 2016-08-11T11:25:20 | 2016-08-11T11:25:20 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 697 | h | #ifndef _EASYRESPACKER_SHAPE_BUILDER_H_
#define _EASYRESPACKER_SHAPE_BUILDER_H_
#include "INodeBuilder.h"
#include <map>
namespace etexture { class Symbol; }
namespace erespacker
{
class IPackNode;
class PackShape;
class ShapeBuilder : public INodeBuilder
{
public:
ShapeBuilder();
virtual ~ShapeBuilder();
vir... | [
"zhuguang@ejoy.com"
] | zhuguang@ejoy.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.