hexsha stringlengths 40 40 | size int64 7 1.05M | ext stringclasses 13
values | lang stringclasses 1
value | max_stars_repo_path stringlengths 4 269 | max_stars_repo_name stringlengths 5 108 | max_stars_repo_head_hexsha stringlengths 40 40 | max_stars_repo_licenses listlengths 1 9 | max_stars_count int64 1 191k ⌀ | max_stars_repo_stars_event_min_datetime stringlengths 24 24 ⌀ | max_stars_repo_stars_event_max_datetime stringlengths 24 24 ⌀ | max_issues_repo_path stringlengths 4 269 | max_issues_repo_name stringlengths 5 116 | max_issues_repo_head_hexsha stringlengths 40 40 | max_issues_repo_licenses listlengths 1 9 | max_issues_count int64 1 67k ⌀ | max_issues_repo_issues_event_min_datetime stringlengths 24 24 ⌀ | max_issues_repo_issues_event_max_datetime stringlengths 24 24 ⌀ | max_forks_repo_path stringlengths 4 269 | max_forks_repo_name stringlengths 5 116 | max_forks_repo_head_hexsha stringlengths 40 40 | max_forks_repo_licenses listlengths 1 9 | max_forks_count int64 1 105k ⌀ | max_forks_repo_forks_event_min_datetime stringlengths 24 24 ⌀ | max_forks_repo_forks_event_max_datetime stringlengths 24 24 ⌀ | content stringlengths 7 1.05M | avg_line_length float64 1.21 330k | max_line_length int64 6 990k | alphanum_fraction float64 0.01 0.99 | author_id stringlengths 2 40 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
c82c23f20625dffba354f9c06231149dcfc6c66d | 1,236 | cpp | C++ | Bison C Compiler Source/instructions.cpp | kpatel122/Bison-C-Compiler | 42d6ddf6389f0125578ae1a45cecb94496a4e6f1 | [
"MIT"
] | null | null | null | Bison C Compiler Source/instructions.cpp | kpatel122/Bison-C-Compiler | 42d6ddf6389f0125578ae1a45cecb94496a4e6f1 | [
"MIT"
] | null | null | null | Bison C Compiler Source/instructions.cpp | kpatel122/Bison-C-Compiler | 42d6ddf6389f0125578ae1a45cecb94496a4e6f1 | [
"MIT"
] | null | null | null | #include <stdlib.h>
#include <stdio.h>
#include <malloc.h>
#include <string.h>
#include "token.h"
#include "instructions.h"
CInstrTable::CInstrTable()
{
currInstr = 0;
}
CInstrTable::~CInstrTable()
{
}
int CInstrTable::AddInstr(char *name,int token,int numParams)
{
if(strlen(name) >= MAX_INSTR_NAME)
re... | 16.263158 | 67 | 0.66343 | kpatel122 |
c82e52aa23432987d4cbbe6b0d8d793b8d94b1f2 | 388 | cpp | C++ | ModbusReadCoils.cpp | joluxer/modbus-master-cxx | 787ea5994b2a21b7f46fbf6c400b2d93c62b7271 | [
"Zlib"
] | null | null | null | ModbusReadCoils.cpp | joluxer/modbus-master-cxx | 787ea5994b2a21b7f46fbf6c400b2d93c62b7271 | [
"Zlib"
] | null | null | null | ModbusReadCoils.cpp | joluxer/modbus-master-cxx | 787ea5994b2a21b7f46fbf6c400b2d93c62b7271 | [
"Zlib"
] | null | null | null | /*
* ModbusReadCoils.cpp
*
* Created on: 09.02.2016
* Author: lode
*/
#include "ModbusReadCoils.h"
namespace Modbus
{
ReadCoils2Array::ReadCoils2Array(unsigned* array, uint16_t numOfBits, TxnReturnPath* rp)
: ReadBits2Array(FunctionCode, array, numOfBits, rp)
{}
//ReadCoils2Array::~ReadCoils2Array()
//{
... | 16.869565 | 88 | 0.701031 | joluxer |
c82fd5620635ae8ed4c1da27a2daff3cb8b49a08 | 779 | cpp | C++ | libneuralnet/nalu.cpp | Rufaim/Filtering-Clouds | 5703884a55f449ed737a3350d5276e29a69372f2 | [
"MIT"
] | null | null | null | libneuralnet/nalu.cpp | Rufaim/Filtering-Clouds | 5703884a55f449ed737a3350d5276e29a69372f2 | [
"MIT"
] | null | null | null | libneuralnet/nalu.cpp | Rufaim/Filtering-Clouds | 5703884a55f449ed737a3350d5276e29a69372f2 | [
"MIT"
] | null | null | null | #include "nalu.h"
//#include <cmath>
#include "math.h"
Nalu::Nalu(int input_dim, int out_dim, float *weight, float *gate) :
weights_(weight),
gate_(gate),
Layer ( input_dim, out_dim)
{}
void Nalu::process(float* input,float* output) {
for(int i = 0; i < out_dim_; i++) {
float lin = 0;
... | 25.129032 | 79 | 0.526316 | Rufaim |
c830df2e62804911cb559d62bbc6ec3fd8f12ea9 | 1,523 | hpp | C++ | core/runtime/core.hpp | iceseer/kagome | a405921659cc19e9fdb851e5f13f1e607fdf8af4 | [
"Apache-2.0"
] | null | null | null | core/runtime/core.hpp | iceseer/kagome | a405921659cc19e9fdb851e5f13f1e607fdf8af4 | [
"Apache-2.0"
] | null | null | null | core/runtime/core.hpp | iceseer/kagome | a405921659cc19e9fdb851e5f13f1e607fdf8af4 | [
"Apache-2.0"
] | null | null | null | /**
* Copyright Soramitsu Co., Ltd. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0
*/
#ifndef KAGOME_RUNTIME_CORE_HPP
#define KAGOME_RUNTIME_CORE_HPP
#include <outcome/outcome.hpp>
#include <vector>
#include "primitives/authority.hpp"
#include "primitives/block.hpp"
#include "primitives/block_id.hpp"
... | 25.813559 | 78 | 0.682206 | iceseer |
c83288fdd7892d0a685ab3eb3de7a91456d2e06e | 22,923 | cc | C++ | descriptor/reader/vehicle_reader.cc | chris-nada/simutrans-extended | 71c0c4f78cb3170b1fa1c68d8baafa9a7269ef6f | [
"Artistic-1.0"
] | 38 | 2017-07-26T14:48:12.000Z | 2022-03-24T23:48:55.000Z | descriptor/reader/vehicle_reader.cc | chris-nada/simutrans-extended | 71c0c4f78cb3170b1fa1c68d8baafa9a7269ef6f | [
"Artistic-1.0"
] | 74 | 2017-03-15T21:07:34.000Z | 2022-03-18T07:53:11.000Z | descriptor/reader/vehicle_reader.cc | chris-nada/simutrans-extended | 71c0c4f78cb3170b1fa1c68d8baafa9a7269ef6f | [
"Artistic-1.0"
] | 43 | 2017-03-10T15:27:28.000Z | 2022-03-05T10:55:38.000Z | /*
* This file is part of the Simutrans-Extended project under the Artistic License.
* (see LICENSE.txt)
*/
#include <stdio.h>
#include "../../simdebug.h"
#include "../../simconst.h"
#include "../../bauer/vehikelbauer.h"
#include "../sound_desc.h"
#include "../vehicle_desc.h"
#include "../intro_dates.h"
#include "... | 29.886571 | 130 | 0.687781 | chris-nada |
c836c9307d38132c8e2b76b00aca51eb6fd1a0bb | 22 | cpp | C++ | tests/Issue127.cpp | galorojo/cppinsights | 52ecab4ddd8e36fb99893551cf0fb8b5d58589f2 | [
"MIT"
] | 1,853 | 2018-05-13T21:49:17.000Z | 2022-03-30T10:34:45.000Z | tests/Issue127.cpp | tiandaoafei/cppinsights | af78ac299121354101a5e506dafccaac95d27a77 | [
"MIT"
] | 398 | 2018-05-15T14:48:51.000Z | 2022-03-24T12:14:33.000Z | tests/Issue127.cpp | SammyEnigma/cppinsights | c984b8e68139bbcc244c094fd2463eeced8fd997 | [
"MIT"
] | 104 | 2018-05-15T04:00:59.000Z | 2022-03-17T02:04:15.000Z | auto f = [](auto) {};
| 11 | 21 | 0.409091 | galorojo |
c836e6e739f6b0b920ecaab7bcd3dd297cb2bfbe | 1,014 | cpp | C++ | 21/dfuvcomp.cpp | johnoel/tagest | be0a6b164683c448c90f0c3952343f5963eece3d | [
"BSD-2-Clause"
] | 3 | 2015-08-26T17:14:02.000Z | 2015-11-17T04:18:56.000Z | 21/dfuvcomp.cpp | johnoel/tagest | be0a6b164683c448c90f0c3952343f5963eece3d | [
"BSD-2-Clause"
] | 10 | 2015-08-20T00:51:05.000Z | 2016-11-16T19:14:48.000Z | 21/dfuvcomp.cpp | johnoel/tagest | be0a6b164683c448c90f0c3952343f5963eece3d | [
"BSD-2-Clause"
] | 3 | 2016-11-16T00:52:23.000Z | 2021-09-10T02:17:40.000Z | #include "precomp.h"
#undef TRACE
#define TRACE(object) clogf << "line " << __LINE__ << ", file "\
<< __FILE__ << ", " << #object " = " << object << endl;
/* John: I think we should remove boundary references. P. */
extern ofstream clogf;
void dfuvcomp(par_t& param, par_t_reg& dfparam, dmatrix& dfu, dmatrix& ... | 24.731707 | 79 | 0.548323 | johnoel |
c83704ba0ce11494af1fa548d82c86c5c4ebde9b | 473 | cpp | C++ | src/layer.cpp | shugaa/florb | 85d2be7d851f83db8a289fd2018832aec295d526 | [
"MIT"
] | 16 | 2015-03-26T22:44:23.000Z | 2021-05-09T12:31:24.000Z | src/layer.cpp | pekdon/florb | 85d2be7d851f83db8a289fd2018832aec295d526 | [
"MIT"
] | 3 | 2018-09-01T13:03:29.000Z | 2020-11-29T09:37:31.000Z | src/layer.cpp | pekdon/florb | 85d2be7d851f83db8a289fd2018832aec295d526 | [
"MIT"
] | 6 | 2017-02-12T05:46:32.000Z | 2020-08-31T06:48:11.000Z | #include <string>
#include <FL/Fl.H>
#include "layer.hpp"
florb::layer::layer() :
m_name("N/A"),
m_enabled(true)
{
add_instance(this);
};
florb::layer::~layer()
{
del_instance(this);
};
const std::string& florb::layer::name() const
{
return m_name;
};
bool florb::layer::enabled() const
{
ret... | 13.138889 | 48 | 0.617336 | shugaa |
c838b9c3c72a457c98bdcff04fa3c0431c9170ff | 10,361 | cpp | C++ | be/test/storage/persistent_index_test.cpp | zhangboya1/starrocks | ec7b4f622cf4341dbc8776ed5c8cc55552c44f4e | [
"Zlib",
"PSF-2.0",
"Apache-2.0",
"MIT",
"ECL-2.0"
] | null | null | null | be/test/storage/persistent_index_test.cpp | zhangboya1/starrocks | ec7b4f622cf4341dbc8776ed5c8cc55552c44f4e | [
"Zlib",
"PSF-2.0",
"Apache-2.0",
"MIT",
"ECL-2.0"
] | null | null | null | be/test/storage/persistent_index_test.cpp | zhangboya1/starrocks | ec7b4f622cf4341dbc8776ed5c8cc55552c44f4e | [
"Zlib",
"PSF-2.0",
"Apache-2.0",
"MIT",
"ECL-2.0"
] | null | null | null | // This file is licensed under the Elastic License 2.0. Copyright 2021-present, StarRocks Limited.
#include "storage/persistent_index.h"
#include <gtest/gtest.h>
#include "env/env_memory.h"
#include "storage/fs/file_block_manager.h"
#include "storage/fs/fs_util.h"
#include "storage/storage_engine.h"
#include "testut... | 37.136201 | 120 | 0.633144 | zhangboya1 |
c83a0d23657c910d8910539eee91fb66ae803d86 | 528 | cpp | C++ | introduction/file/file.cpp | egorkaGubarev/modeling_2021_egorkaGubarev | cca05950c0455c4a378fd6ca3b399a6d9c277968 | [
"Unlicense"
] | null | null | null | introduction/file/file.cpp | egorkaGubarev/modeling_2021_egorkaGubarev | cca05950c0455c4a378fd6ca3b399a6d9c277968 | [
"Unlicense"
] | null | null | null | introduction/file/file.cpp | egorkaGubarev/modeling_2021_egorkaGubarev | cca05950c0455c4a378fd6ca3b399a6d9c277968 | [
"Unlicense"
] | null | null | null | #include <iostream>
#include <fstream>
#include <string>
typedef unsigned int uint;
void write_file(std::string path, uint number)
{
std::ofstream file;
file.open(path, std::ios::app);
if (file.is_open()){
file << number << ' ';
file.close();
}else{
std::cerr << "File isn't ope... | 18.206897 | 50 | 0.560606 | egorkaGubarev |
c83a88d0419cf2edc1feef83733fdff75625f036 | 13,156 | cpp | C++ | Engine/Core/Source/Molten/Renderer/OpenGL/OpenGLWin32Renderer.cpp | jimmiebergmann/CurseEngine | 74a0502e36327f893c8e4f3e7cbe5b9d38fbe194 | [
"MIT"
] | 2 | 2019-11-11T21:17:14.000Z | 2019-11-11T22:07:26.000Z | Engine/Core/Source/Molten/Renderer/OpenGL/OpenGLWin32Renderer.cpp | jimmiebergmann/CurseEngine | 74a0502e36327f893c8e4f3e7cbe5b9d38fbe194 | [
"MIT"
] | null | null | null | Engine/Core/Source/Molten/Renderer/OpenGL/OpenGLWin32Renderer.cpp | jimmiebergmann/CurseEngine | 74a0502e36327f893c8e4f3e7cbe5b9d38fbe194 | [
"MIT"
] | 1 | 2020-04-05T03:50:57.000Z | 2020-04-05T03:50:57.000Z | /*
* MIT License
*
* Copyright (c) 2021 Jimmie Bergmann
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files(the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, m... | 28.537961 | 187 | 0.617741 | jimmiebergmann |
c83aeaa0239ea2a65bf9cc59b2846a10d9afe78a | 3,919 | cpp | C++ | dev/Tools/Wwise/SDK/samples/Plugins/AkDelay/Sources/AudioEngineFX/AkDelayFX.cpp | chrisinajar/spark | 3c6b30592c00bc38738cc3aaca2144edfc6cc8b2 | [
"AML"
] | 2 | 2020-08-20T03:40:24.000Z | 2021-02-07T20:31:43.000Z | dev/Tools/Wwise/SDK/samples/Plugins/AkDelay/Sources/AudioEngineFX/AkDelayFX.cpp | chrisinajar/spark | 3c6b30592c00bc38738cc3aaca2144edfc6cc8b2 | [
"AML"
] | null | null | null | dev/Tools/Wwise/SDK/samples/Plugins/AkDelay/Sources/AudioEngineFX/AkDelayFX.cpp | chrisinajar/spark | 3c6b30592c00bc38738cc3aaca2144edfc6cc8b2 | [
"AML"
] | 5 | 2020-08-27T20:44:18.000Z | 2021-08-21T22:54:11.000Z | /*******************************************************************************
The content of this file includes portions of the AUDIOKINETIC Wwise Technology
released in source code form as part of the SDK installer package.
Commercial License Usage
Licensees holding valid commercial licenses to the AUDIOKINETIC W... | 32.38843 | 100 | 0.70222 | chrisinajar |
c83b37f18ec5a50cf411341f48e5efc86ab7b2e8 | 298 | cpp | C++ | tcp-plugin-qnx/plugin_lifecycle.cpp | mager-m/ietf-tcp-research-project | d4480d4dbec4f35ea61782c25bbe0a7dd05006bc | [
"MIT"
] | 2 | 2021-08-10T13:55:05.000Z | 2021-10-21T10:14:24.000Z | tcp-plugin-ubuntu/plugin_lifecycle.cpp | mager-m/ietf-tcp-research-project | d4480d4dbec4f35ea61782c25bbe0a7dd05006bc | [
"MIT"
] | null | null | null | tcp-plugin-ubuntu/plugin_lifecycle.cpp | mager-m/ietf-tcp-research-project | d4480d4dbec4f35ea61782c25bbe0a7dd05006bc | [
"MIT"
] | null | null | null | #include <cligen/cligen.h>
#include <clixon/clixon.h>
#include "plugin_lifecycle.h"
int LifecycleManager::plugin_start(clicon_handle h) {
return 0;
}
int LifecycleManager::plugin_exit(clicon_handle h) {
return 0;
}
int LifecycleManager::plugin_daemon(clicon_handle h) {
return 0;
}
| 17.529412 | 54 | 0.738255 | mager-m |
c83c63f95f9a64f606c336de55d9627b161721e2 | 504 | cpp | C++ | codes/moderncpp/nodiscard/nodiscard01/main.cpp | eric2003/ModernCMake | 48fe5ed2f25481a7c93f86af38a692f4563afcaa | [
"MIT"
] | 3 | 2022-01-25T07:33:43.000Z | 2022-03-30T10:25:09.000Z | codes/moderncpp/nodiscard/nodiscard01/main.cpp | eric2003/ModernCMake | 48fe5ed2f25481a7c93f86af38a692f4563afcaa | [
"MIT"
] | null | null | null | codes/moderncpp/nodiscard/nodiscard01/main.cpp | eric2003/ModernCMake | 48fe5ed2f25481a7c93f86af38a692f4563afcaa | [
"MIT"
] | 2 | 2022-01-17T13:39:12.000Z | 2022-03-30T10:25:12.000Z | #include <iostream>
struct [[nodiscard]] error_info { /*...*/ };
error_info enable_missile_safety_mode() { /*...*/ return {}; }
void launch_missiles() { /*...*/ }
void test_missiles()
{
enable_missile_safety_mode(); // compiler may warn on discarding a nodiscard value
launch_missiles();
}
// nodiscard( string-l... | 19.384615 | 85 | 0.621032 | eric2003 |
c83d447f34dfa877f0e0b330ca08fcee7449fca4 | 1,882 | cpp | C++ | unittest/meta/TestNotificationFdbEvent.cpp | vmittal-msft/sonic-sairedis | 6baff35880005aee2854fdcde105c4322c28d04f | [
"Apache-2.0"
] | 50 | 2016-03-23T08:04:44.000Z | 2022-03-25T05:06:16.000Z | unittest/meta/TestNotificationFdbEvent.cpp | vmittal-msft/sonic-sairedis | 6baff35880005aee2854fdcde105c4322c28d04f | [
"Apache-2.0"
] | 589 | 2016-04-01T04:09:09.000Z | 2022-03-31T00:38:10.000Z | unittest/meta/TestNotificationFdbEvent.cpp | vmittal-msft/sonic-sairedis | 6baff35880005aee2854fdcde105c4322c28d04f | [
"Apache-2.0"
] | 234 | 2016-03-28T20:59:21.000Z | 2022-03-23T09:26:22.000Z | #include "NotificationFdbEvent.h"
#include "Meta.h"
#include "MetaTestSaiInterface.h"
#include "sairediscommon.h"
#include "sai_serialize.h"
#include <gtest/gtest.h>
#include <memory>
using namespace sairedis;
using namespace saimeta;
static std::string s =
"[{\"fdb_entry\":\"{\\\"bvid\\\":\\\"oid:0x260000000005be... | 27.275362 | 175 | 0.675345 | vmittal-msft |
c83da0b0eb7e41bcb75a2418ba5e99f647d7d64a | 38,689 | cc | C++ | bench/f32-gemm-e2e.cc | 8thwall/XNNPACK | 6e03011a0fd74ff0b3bba3a874e452543ccbaa86 | [
"BSD-3-Clause"
] | null | null | null | bench/f32-gemm-e2e.cc | 8thwall/XNNPACK | 6e03011a0fd74ff0b3bba3a874e452543ccbaa86 | [
"BSD-3-Clause"
] | null | null | null | bench/f32-gemm-e2e.cc | 8thwall/XNNPACK | 6e03011a0fd74ff0b3bba3a874e452543ccbaa86 | [
"BSD-3-Clause"
] | null | null | null | // Copyright 2019 Google LLC
//
// This source code is licensed under the BSD-style license found in the
// LICENSE file in the root directory of this source tree.
#include <algorithm>
#include <cmath>
#include <functional>
#include <random>
#include <vector>
#include <xnnpack.h>
#include <benchmark/benchmark.h>
#i... | 42.468716 | 118 | 0.758975 | 8thwall |
c83f0ec3181b13beda046594d829a86dfa6ac4c9 | 4,139 | cpp | C++ | private/shell/ext/intern/ftp.cpp | King0987654/windows2000 | 01f9c2e62c4289194e33244aade34b7d19e7c9b8 | [
"MIT"
] | 11 | 2017-09-02T11:27:08.000Z | 2022-01-02T15:25:24.000Z | private/shell/ext/intern/ftp.cpp | King0987654/windows2000 | 01f9c2e62c4289194e33244aade34b7d19e7c9b8 | [
"MIT"
] | null | null | null | private/shell/ext/intern/ftp.cpp | King0987654/windows2000 | 01f9c2e62c4289194e33244aade34b7d19e7c9b8 | [
"MIT"
] | 14 | 2019-01-16T01:01:23.000Z | 2022-02-20T15:54:27.000Z | /*****************************************************************************
*
* ftp.cpp - FTP folder bookkeeping
*
*****************************************************************************/
#include "priv.h"
//#include "ftpinet.h"
//#include "ftpsite.h"
//#include "ftplist.h"
//#include "msieftp.h... | 26.876623 | 100 | 0.51051 | King0987654 |
c840e17677b80dd0f1995495c012c9b35d16fa86 | 18,358 | cpp | C++ | src/dawn_native/CopyTextureForBrowserHelper.cpp | AlexVestin/dawn-mirror | 2025d05accdb5b5de972ab50d0a3f68408280543 | [
"Apache-2.0"
] | null | null | null | src/dawn_native/CopyTextureForBrowserHelper.cpp | AlexVestin/dawn-mirror | 2025d05accdb5b5de972ab50d0a3f68408280543 | [
"Apache-2.0"
] | null | null | null | src/dawn_native/CopyTextureForBrowserHelper.cpp | AlexVestin/dawn-mirror | 2025d05accdb5b5de972ab50d0a3f68408280543 | [
"Apache-2.0"
] | null | null | null | // Copyright 2020 The Dawn Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed t... | 44.995098 | 107 | 0.586229 | AlexVestin |
c846a6d1428fec3fcb4b87b37d69b531a43feb7c | 12,533 | cc | C++ | chrome/browser/ui/webui/options/search_engine_manager_handler.cc | Wzzzx/chromium-crosswalk | 768dde8efa71169f1c1113ca6ef322f1e8c9e7de | [
"BSD-3-Clause-No-Nuclear-License-2014",
"BSD-3-Clause"
] | 2 | 2019-01-28T08:09:58.000Z | 2021-11-15T15:32:10.000Z | chrome/browser/ui/webui/options/search_engine_manager_handler.cc | Wzzzx/chromium-crosswalk | 768dde8efa71169f1c1113ca6ef322f1e8c9e7de | [
"BSD-3-Clause-No-Nuclear-License-2014",
"BSD-3-Clause"
] | null | null | null | chrome/browser/ui/webui/options/search_engine_manager_handler.cc | Wzzzx/chromium-crosswalk | 768dde8efa71169f1c1113ca6ef322f1e8c9e7de | [
"BSD-3-Clause-No-Nuclear-License-2014",
"BSD-3-Clause"
] | 6 | 2020-09-23T08:56:12.000Z | 2021-11-18T03:40:49.000Z | // 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 "chrome/browser/ui/webui/options/search_engine_manager_handler.h"
#include "base/bind.h"
#include "base/strings/string_number_conversions.h"... | 37.523952 | 80 | 0.740844 | Wzzzx |
c8473758cf0d4f5b12c9ebb54a5803c3298ffa57 | 3,672 | cpp | C++ | src/vcruntime/ehveccvb.cpp | avboy1337/ucxxrt | d72a1c02606475ac6c1528d7413efe9203009152 | [
"MIT"
] | 130 | 2020-02-29T09:12:43.000Z | 2022-03-19T23:33:57.000Z | src/vcruntime/ehveccvb.cpp | avboy1337/ucxxrt | d72a1c02606475ac6c1528d7413efe9203009152 | [
"MIT"
] | 7 | 2020-08-06T08:08:52.000Z | 2022-02-20T04:23:57.000Z | src/vcruntime/ehveccvb.cpp | avboy1337/ucxxrt | d72a1c02606475ac6c1528d7413efe9203009152 | [
"MIT"
] | 47 | 2020-03-01T01:35:53.000Z | 2022-03-24T12:15:03.000Z | /*
* PROJECT: Universal C++ RunTime (UCXXRT)
* FILE: ehveccvb.cpp
* DATA: 2021/05/27
*
* PURPOSE: Universal C++ RunTime
*
* LICENSE: Relicensed under The MIT License from The CC BY 4.0 License
*
* DEVELOPER: MiroKaku (miro.kaku AT Outlook.com)
*/
/***
*ehveccvb.cpp - EH c-tor iterator helper ... | 32.785714 | 86 | 0.620643 | avboy1337 |
c848f87a61cf0dc10222a92e86d0f0a405a585e2 | 1,877 | cc | C++ | netlibcc/net/test/test_IOThreadPool.cc | kohakus/tiny-netlib | da9998ee06f4e2eb5ebcaf0e383196269dea1f33 | [
"MIT"
] | 1 | 2021-03-05T10:14:27.000Z | 2021-03-05T10:14:27.000Z | netlibcc/net/test/test_IOThreadPool.cc | kohakus/tiny-netlib | da9998ee06f4e2eb5ebcaf0e383196269dea1f33 | [
"MIT"
] | null | null | null | netlibcc/net/test/test_IOThreadPool.cc | kohakus/tiny-netlib | da9998ee06f4e2eb5ebcaf0e383196269dea1f33 | [
"MIT"
] | null | null | null | #include "netlibcc/net/IOThreadPool.h"
#include <unistd.h>
#include <cstdio>
#include "netlibcc/net/EventLoop.h"
#include "netlibcc/core/Thread.h"
using namespace netlibcc;
using namespace netlibcc::net;
void showId(EventLoop* loop = nullptr) {
printf("showId: pid = %d, tid = %d, loop = %p\n", getpid(), thisthr... | 28.439394 | 93 | 0.59723 | kohakus |
c84d5d91ddc5761d0aee4e3392dfe62c2d0223a6 | 826 | cpp | C++ | Regression_test/examples/fir/src/fir.cpp | minseongg/dynamatic | 268d97690f128569da46e4f39a99346e93ee9d4e | [
"MIT"
] | 46 | 2019-11-16T13:44:07.000Z | 2022-03-12T14:28:44.000Z | Regression_test/examples/fir/src/fir.cpp | minseongg/dynamatic | 268d97690f128569da46e4f39a99346e93ee9d4e | [
"MIT"
] | 11 | 2020-05-12T17:20:51.000Z | 2022-02-04T10:04:59.000Z | Regression_test/examples/fir/src/fir.cpp | minseongg/dynamatic | 268d97690f128569da46e4f39a99346e93ee9d4e | [
"MIT"
] | 22 | 2020-02-21T21:33:40.000Z | 2022-02-24T06:50:41.000Z | #include "fir.h"
//------------------------------------------------------------------------
// FIR
//------------------------------------------------------------------------
//SEPARATOR_FOR_MAIN
#include <stdlib.h>
#include "fir.h"
#define AMOUNT_OF_TEST 1
int fir (in_int_t d_i[1000], in_int_t idx[1000] ) {
int i;... | 17.574468 | 74 | 0.464891 | minseongg |
c84d7ff01803f6ae49544876486531a3c7ff4f53 | 3,388 | cc | C++ | test/vp9_denoiser_sse2_test.cc | golden1232004/libvpx | 61a8b8673411110823d31ffd9d3e28d5023c5e9f | [
"BSD-3-Clause"
] | 2 | 2020-04-26T02:42:56.000Z | 2021-01-15T00:25:16.000Z | test/vp9_denoiser_sse2_test.cc | golden1232004/libvpx | 61a8b8673411110823d31ffd9d3e28d5023c5e9f | [
"BSD-3-Clause"
] | null | null | null | test/vp9_denoiser_sse2_test.cc | golden1232004/libvpx | 61a8b8673411110823d31ffd9d3e28d5023c5e9f | [
"BSD-3-Clause"
] | 1 | 2017-01-19T10:33:37.000Z | 2017-01-19T10:33:37.000Z | /*
* Copyright (c) 2014 The WebM project authors. All Rights Reserved.
*
* Use of this source code is governed by a BSD-style license
* that can be found in the LICENSE file in the root of the source
* tree. An additional intellectual property rights grant can be found
* in the file PATENTS. All contributin... | 33.544554 | 75 | 0.682113 | golden1232004 |
c8527afc64c8e8b9649e7a0cc4b36e40fac52203 | 3,244 | cpp | C++ | test/utils.cpp | chtimi59/isxcpp | fc90c1cf23ee519d28801d3912ba9e94665b5521 | [
"MIT"
] | 2 | 2019-04-30T18:32:43.000Z | 2022-03-04T07:12:01.000Z | test/utils.cpp | chtimi59/isxcpp | fc90c1cf23ee519d28801d3912ba9e94665b5521 | [
"MIT"
] | null | null | null | test/utils.cpp | chtimi59/isxcpp | fc90c1cf23ee519d28801d3912ba9e94665b5521 | [
"MIT"
] | null | null | null | #define INSTANCIATE_UTILS
#include "utils.h"
// System Header
#include <stdio.h>
#include <windows.h>
#include <string>
void initUtils()
{
std::string tmp;
TCHAR szModuleName[MAX_PATH];
GetCurrentDirectory(MAX_PATH, szCurPath); // rootdir/test/
GetModuleFileName(NULL, szModuleName, MAX_PATH); // rootdi... | 30.603774 | 81 | 0.609433 | chtimi59 |
c856368ac2aac2b1d1cf133cdd0865a989fe64bb | 5,126 | cpp | C++ | inference-engine/src/inference_engine/builders/ie_lstm_sequence_layer.cpp | shinh/dldt | 693ab4e79a428e0801f17f4511b129a3fa8f4a62 | [
"Apache-2.0"
] | 1 | 2021-02-20T21:48:36.000Z | 2021-02-20T21:48:36.000Z | inference-engine/src/inference_engine/builders/ie_lstm_sequence_layer.cpp | erinpark33/dldt | edd86d090592f7779f4dbb2681546e1f4e81284f | [
"Apache-2.0"
] | null | null | null | inference-engine/src/inference_engine/builders/ie_lstm_sequence_layer.cpp | erinpark33/dldt | edd86d090592f7779f4dbb2681546e1f4e81284f | [
"Apache-2.0"
] | 1 | 2018-12-14T07:52:51.000Z | 2018-12-14T07:52:51.000Z | // Copyright (C) 2018-2019 Intel Corporation
// SPDX-License-Identifier: Apache-2.0
//
#include <builders/ie_lstm_sequence_layer.hpp>
#include <ie_cnn_layer_builder.h>
#include <vector>
#include <string>
using namespace InferenceEngine;
Builder::LSTMSequenceLayer::LSTMSequenceLayer(const std::string& name): LayerDe... | 40.046875 | 117 | 0.729809 | shinh |
c856bac5a77f7b09329edd58f1f713976aeac8dc | 7,714 | cpp | C++ | alvr/vulkan-layer/layer/private_data.cpp | Firepal/ALVR | 834cac75663832638a129a6ba6b2901a7e8dd2ed | [
"MIT"
] | 1,562 | 2020-12-01T15:02:21.000Z | 2022-03-31T13:37:51.000Z | alvr/vulkan-layer/layer/private_data.cpp | Firepal/ALVR | 834cac75663832638a129a6ba6b2901a7e8dd2ed | [
"MIT"
] | 562 | 2020-12-01T20:10:13.000Z | 2022-03-31T22:57:13.000Z | alvr/vulkan-layer/layer/private_data.cpp | Firepal/ALVR | 834cac75663832638a129a6ba6b2901a7e8dd2ed | [
"MIT"
] | 184 | 2020-12-01T15:02:24.000Z | 2022-03-31T06:18:18.000Z | /*
* Copyright (c) 2018-2021 Arm Limited.
*
* SPDX-License-Identifier: MIT
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to
* deal in the Software without restriction, including without limitation the
* ri... | 40.814815 | 100 | 0.709619 | Firepal |
c8572030f0afe37df2721cbb37af091608573616 | 8,204 | cc | C++ | ns-allinone-3.27/ns-3.27/src/internet/test/tcp-zero-window-test.cc | zack-braun/4607_NS | 43c8fb772e5552fb44bd7cd34173e73e3fb66537 | [
"MIT"
] | 93 | 2019-04-21T08:22:26.000Z | 2022-03-30T04:26:29.000Z | ns-allinone-3.27/ns-3.27/src/internet/test/tcp-zero-window-test.cc | zack-braun/4607_NS | 43c8fb772e5552fb44bd7cd34173e73e3fb66537 | [
"MIT"
] | 12 | 2019-04-19T16:39:58.000Z | 2021-06-22T13:18:32.000Z | ns-allinone-3.27/ns-3.27/src/internet/test/tcp-zero-window-test.cc | zack-braun/4607_NS | 43c8fb772e5552fb44bd7cd34173e73e3fb66537 | [
"MIT"
] | 21 | 2019-05-27T19:36:12.000Z | 2021-07-26T02:37:41.000Z | /* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil; -*- */
/*
* Copyright (c) 2015 Natale Patriciello <natale.patriciello@gmail.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Softwar... | 29.941606 | 100 | 0.61275 | zack-braun |
c858d5b84f4a9b98a6d232225b1b98321a9060cf | 1,040 | cpp | C++ | graph-source-code/402-E/9925166.cpp | AmrARaouf/algorithm-detection | 59f3028d2298804870b32729415d71eec6116557 | [
"MIT"
] | null | null | null | graph-source-code/402-E/9925166.cpp | AmrARaouf/algorithm-detection | 59f3028d2298804870b32729415d71eec6116557 | [
"MIT"
] | null | null | null | graph-source-code/402-E/9925166.cpp | AmrARaouf/algorithm-detection | 59f3028d2298804870b32729415d71eec6116557 | [
"MIT"
] | null | null | null | //Language: GNU C++
#include <iostream>
#include <queue>
#include <vector>
#include <set>
#include <stack>
#include <string.h>
#include <stdio.h>
#include <algorithm>
#include <stdlib.h>
#define max_nodes_size 100005
#define max_size 100005
#define ll long long int
#define mod 1000000007
#define sl(n) scanf("%lld",... | 12.682927 | 32 | 0.531731 | AmrARaouf |
c85a4fb57883f445ebda15b53c7daab3ee9b175a | 1,678 | cpp | C++ | searchsummary/src/vespa/searchsummary/docsummary/textextractordfw.cpp | alexeyche/vespa | 7585981b32937d2b13da1a8f94b42c8a0833a4c2 | [
"Apache-2.0"
] | null | null | null | searchsummary/src/vespa/searchsummary/docsummary/textextractordfw.cpp | alexeyche/vespa | 7585981b32937d2b13da1a8f94b42c8a0833a4c2 | [
"Apache-2.0"
] | null | null | null | searchsummary/src/vespa/searchsummary/docsummary/textextractordfw.cpp | alexeyche/vespa | 7585981b32937d2b13da1a8f94b42c8a0833a4c2 | [
"Apache-2.0"
] | null | null | null | // Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#include "textextractordfw.h"
#include "tokenizer.h"
#include "docsumstate.h"
#include <vespa/log/log.h>
LOG_SETUP(".searchlib.docsummary.textextractordfw");
namespace search::docsummary {
TextExtractorDFW::Text... | 32.269231 | 124 | 0.669845 | alexeyche |
c85bb28c08356971479658838a517e22bf5cbf98 | 31,037 | cpp | C++ | examples/tudat/satellite_propagation/shapeBasedTrajectoryDesign.cpp | kimonito98/tudat | c28f2a3e78b8492e2e054ad5e0d1f9ad785cd092 | [
"BSD-3-Clause"
] | null | null | null | examples/tudat/satellite_propagation/shapeBasedTrajectoryDesign.cpp | kimonito98/tudat | c28f2a3e78b8492e2e054ad5e0d1f9ad785cd092 | [
"BSD-3-Clause"
] | null | null | null | examples/tudat/satellite_propagation/shapeBasedTrajectoryDesign.cpp | kimonito98/tudat | c28f2a3e78b8492e2e054ad5e0d1f9ad785cd092 | [
"BSD-3-Clause"
] | null | null | null | /* Copyright (c) 2010-2019, Delft University of Technology
* All rigths reserved
*
* This file is part of the Tudat. Redistribution and use in source and
* binary forms, with or without modification, are permitted exclusively
* under the terms of the Modified BSD license. You should have received
*... | 63.470348 | 142 | 0.609949 | kimonito98 |
c85e4ec855416eb93759d2e634f17a74d0db0358 | 9,348 | cpp | C++ | src/vega/dicom/file_meta.cpp | project-eutopia/vega | c7b536c5e949094a908fa8f378729dbffc657f4a | [
"MIT"
] | 18 | 2018-01-23T12:28:13.000Z | 2022-02-13T12:23:21.000Z | src/vega/dicom/file_meta.cpp | project-eutopia/vega | c7b536c5e949094a908fa8f378729dbffc657f4a | [
"MIT"
] | 2 | 2018-11-29T01:51:25.000Z | 2022-03-22T14:14:22.000Z | src/vega/dicom/file_meta.cpp | project-eutopia/vega | c7b536c5e949094a908fa8f378729dbffc657f4a | [
"MIT"
] | 6 | 2019-02-01T09:54:44.000Z | 2022-01-09T22:13:54.000Z | #include "vega/dicom/file_meta.h"
#include "vega/dicom/writer.h"
#include "vega/dicom/data_element.h"
#include "vega/manipulator.h"
#include <cassert>
namespace vega {
namespace dicom {
const Tag FileMeta::FileMetaInformationGroupLength = Tag{0x2, 0x0};
const Tag FileMeta::TransferSyntaxUID = Tag{0x2, 0x10... | 39.277311 | 124 | 0.692127 | project-eutopia |
c85f6da0b33128c18035b40f04cc9747cc81db0b | 33,753 | cc | C++ | test/syscalls/linux/splice.cc | Exhorder6/gvisor | add8bca5ba53b37096bc653900cb278e11681461 | [
"Apache-2.0"
] | 1 | 2021-05-04T06:49:23.000Z | 2021-05-04T06:49:23.000Z | test/syscalls/linux/splice.cc | Exhorder6/gvisor | add8bca5ba53b37096bc653900cb278e11681461 | [
"Apache-2.0"
] | 3 | 2021-10-12T21:46:14.000Z | 2022-03-31T01:53:21.000Z | test/syscalls/linux/splice.cc | Exhorder6/gvisor | add8bca5ba53b37096bc653900cb278e11681461 | [
"Apache-2.0"
] | 1 | 2021-05-04T06:49:18.000Z | 2021-05-04T06:49:18.000Z | // Copyright 2019 The gVisor Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agree... | 35.907447 | 80 | 0.68785 | Exhorder6 |
c85fc4816b086d7a5792ebfbaf8e167c338ccd1c | 2,582 | cpp | C++ | CONTRIB/LLVM/src/lib/Tg/Mips/MCTargetDesc/MipsMCExpr.cpp | Cwc-Test/CpcdosOS2.1 | d52c170be7f11cc50de38ef536d4355743d21706 | [
"Apache-2.0"
] | 30 | 2016-09-06T06:58:43.000Z | 2021-12-23T11:59:38.000Z | CONTRIB/LLVM/src/lib/Tg/Mips/MCTargetDesc/MipsMCExpr.cpp | Cwc-Test/CpcdosOS2.1 | d52c170be7f11cc50de38ef536d4355743d21706 | [
"Apache-2.0"
] | 21 | 2016-08-11T09:43:43.000Z | 2017-01-29T12:52:56.000Z | CONTRIB/LLVM/src/lib/Tg/Mips/MCTargetDesc/MipsMCExpr.cpp | Cwc-Test/CpcdosOS2.1 | d52c170be7f11cc50de38ef536d4355743d21706 | [
"Apache-2.0"
] | 17 | 2016-10-24T06:08:16.000Z | 2022-02-18T17:27:14.000Z | //===-- MipsMCExpr.cpp - Mips specific MC expression classes --------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===-------------------------------------------------------... | 28.373626 | 80 | 0.636716 | Cwc-Test |
c864540a4c498bfe9f36e73c874f7fb974c9e2b6 | 1,258 | cpp | C++ | src/engine/utils.cpp | FoxySeta/unibo-00819-programmazione-project | 4475a3a64b78222cbbdeda908f18cf93e4a210be | [
"MIT"
] | 3 | 2021-09-06T15:51:11.000Z | 2021-09-08T12:30:35.000Z | src/engine/utils.cpp | lucat1/unibo_00819_progetto | 4475a3a64b78222cbbdeda908f18cf93e4a210be | [
"MIT"
] | null | null | null | src/engine/utils.cpp | lucat1/unibo_00819_progetto | 4475a3a64b78222cbbdeda908f18cf93e4a210be | [
"MIT"
] | 2 | 2021-09-07T00:40:37.000Z | 2021-09-08T17:34:45.000Z | /*
University of Bologna
First cicle degree in Computer Science
00819 - Programmazione
Luca Tagliavini #971133
04/27/2021
screen.cpp: implements engine's utility functions mainly to manipulate
integers and strings, for the choice ui element and the results menu
*/
#include "utils.hpp"
int Engine::Util... | 19.968254 | 72 | 0.572337 | FoxySeta |
c86489c7f75ba795436fbb5f3f7eb8ad84b1d0f9 | 11,186 | cpp | C++ | src/logonserver/Main.cpp | Subv/diamondcore | e11891587736b6308e554f71cb56e8df1a1812ad | [
"OpenSSL"
] | 1 | 2018-01-17T08:11:17.000Z | 2018-01-17T08:11:17.000Z | src/logonserver/Main.cpp | Subv/diamondcore | e11891587736b6308e554f71cb56e8df1a1812ad | [
"OpenSSL"
] | null | null | null | src/logonserver/Main.cpp | Subv/diamondcore | e11891587736b6308e554f71cb56e8df1a1812ad | [
"OpenSSL"
] | null | null | null | /*
* Copyright (C) 2010 DiamondCore <http://diamondcore.eu/>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
... | 30.150943 | 168 | 0.576792 | Subv |
c864fa14a7a0a0d8fd8499cfc392a48cb974c5c5 | 27,077 | cpp | C++ | fdk-aac/libFDK/src/mdct.cpp | Opendigitalradio/ODR-AudioEnc | f932f86ec601e250bbdcf2bcf87e4696b9431b50 | [
"Apache-2.0"
] | 15 | 2016-10-18T11:46:21.000Z | 2022-01-16T10:34:52.000Z | fdk-aac/libFDK/src/mdct.cpp | Opendigitalradio/ODR-AudioEnc | f932f86ec601e250bbdcf2bcf87e4696b9431b50 | [
"Apache-2.0"
] | 14 | 2016-11-15T21:14:50.000Z | 2020-09-15T10:13:23.000Z | fdk-aac/libFDK/src/mdct.cpp | Opendigitalradio/ODR-AudioEnc | f932f86ec601e250bbdcf2bcf87e4696b9431b50 | [
"Apache-2.0"
] | 21 | 2016-11-15T09:00:30.000Z | 2022-03-23T17:54:40.000Z | /* -----------------------------------------------------------------------------
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... | 37.04104 | 80 | 0.639879 | Opendigitalradio |
c8660f5f73268d82e6872869b178203676ec77f5 | 31,827 | hpp | C++ | library/cgp/containers/matrix_stack/matrix_stack.hpp | drohmer/CGP | 3e7651649320d0bff19394ecd9546e872802c3e7 | [
"MIT"
] | null | null | null | library/cgp/containers/matrix_stack/matrix_stack.hpp | drohmer/CGP | 3e7651649320d0bff19394ecd9546e872802c3e7 | [
"MIT"
] | 2 | 2022-03-03T16:34:03.000Z | 2022-03-20T13:08:56.000Z | library/cgp/containers/matrix_stack/matrix_stack.hpp | drohmer/CGP | 3e7651649320d0bff19394ecd9546e872802c3e7 | [
"MIT"
] | null | null | null | #pragma once
#include "cgp/base/base.hpp"
#include "cgp/containers/buffer_stack/buffer_stack.hpp"
#include "cgp/containers/offset_grid/offset_grid.hpp"
#include <sstream>
#include <iomanip>
/* ************************************************** */
/* Header */
/* *********... | 39.003676 | 259 | 0.555786 | drohmer |
c8673e69b1470516e7cba61fb507fb0b9ab9d0c6 | 11,923 | cc | C++ | dcmdata/libsrc/dcvrfl.cc | henkdemarie/dicom-dimse-native | a2a5042de8c5de04831baf3de7182ea2eb7b78f8 | [
"MIT"
] | 29 | 2020-02-13T17:40:16.000Z | 2022-03-12T14:58:22.000Z | dcmdata/libsrc/dcvrfl.cc | henkdemarie/dicom-dimse-native | a2a5042de8c5de04831baf3de7182ea2eb7b78f8 | [
"MIT"
] | 20 | 2020-03-20T18:06:31.000Z | 2022-02-25T08:38:08.000Z | dcmdata/libsrc/dcvrfl.cc | henkdemarie/dicom-dimse-native | a2a5042de8c5de04831baf3de7182ea2eb7b78f8 | [
"MIT"
] | 9 | 2020-03-20T17:29:55.000Z | 2022-02-14T10:15:33.000Z | /*
*
* Copyright (C) 1994-2019, OFFIS e.V.
* All rights reserved. See COPYRIGHT file for details.
*
* This software and supporting documentation were developed by
*
* OFFIS e.V.
* R&D Division Health
* Escherweg 2
* D-26121 Oldenburg, Germany
*
*
* Module: dcmdata
*
* Author: Gerd Ehl... | 29.8075 | 125 | 0.551875 | henkdemarie |
c8685f738a8597338659385fc01ab15ffc2ee898 | 4,561 | cpp | C++ | Types/DateTime/GpDateTimeOps.cpp | ITBear/GpCore2 | 7ae6d9d93aae55e2b3060077b5bb9d5f07e59ee4 | [
"MIT"
] | null | null | null | Types/DateTime/GpDateTimeOps.cpp | ITBear/GpCore2 | 7ae6d9d93aae55e2b3060077b5bb9d5f07e59ee4 | [
"MIT"
] | 1 | 2020-06-19T18:38:40.000Z | 2020-06-19T18:38:40.000Z | Types/DateTime/GpDateTimeOps.cpp | ITBear/GpCore2 | 7ae6d9d93aae55e2b3060077b5bb9d5f07e59ee4 | [
"MIT"
] | 6 | 2020-06-04T07:32:59.000Z | 2021-05-17T15:41:30.000Z | #include "GpDateTimeOps.hpp"
#if defined(GP_USE_DATE_TIME)
#include <date/date.h> //TODO: remove with c++20
namespace GPlatform {
const microseconds_t GpDateTimeOps::sStartSteadyTS = GpDateTimeOps::SSteadyTS_us();
const GpArray<std::string, GpDateTimeFormat::SCount().As<size_t>()> GpDateTimeOps::sForm... | 27.14881 | 94 | 0.653804 | ITBear |
c86b31acbddd68eea5aa5ebc1869399eeee3936a | 8,337 | cpp | C++ | SpaceShooter/src/Game/IA_Behavior/Behaviors.cpp | tomasmartinsantos/SpaceShooter | 2d930cd9061ca7dbb8f00386cb26ead902f69eff | [
"Apache-2.0"
] | null | null | null | SpaceShooter/src/Game/IA_Behavior/Behaviors.cpp | tomasmartinsantos/SpaceShooter | 2d930cd9061ca7dbb8f00386cb26ead902f69eff | [
"Apache-2.0"
] | null | null | null | SpaceShooter/src/Game/IA_Behavior/Behaviors.cpp | tomasmartinsantos/SpaceShooter | 2d930cd9061ca7dbb8f00386cb26ead902f69eff | [
"Apache-2.0"
] | null | null | null | #include "../World.h"
#include "../../Engine/Math.h"
#include "../Components/CBrain.h"
#include "../Entities/HeadersEntities.h"
#include "../Components/CWeapon.h"
#include "../UI/WLifebar.h"
#include "../Components/CAnimation.h"
#include "../../Engine/Audio/Audiosource.h"
#include "../Scene.h"
#include "Behaviors.h"
/... | 36.565789 | 264 | 0.652993 | tomasmartinsantos |
c86f426648f07506a6a67907139bdbc0b35cc4de | 2,242 | cpp | C++ | add-ons/LoadAddon/effectpal.cpp | return/BeOSSampleCode | ca5a319fecf425a69e944f3c928a85011563a932 | [
"BSD-3-Clause"
] | 5 | 2018-09-09T21:01:57.000Z | 2022-03-27T10:01:27.000Z | add-ons/LoadAddon/effectpal.cpp | return/BeOSSampleCode | ca5a319fecf425a69e944f3c928a85011563a932 | [
"BSD-3-Clause"
] | null | null | null | add-ons/LoadAddon/effectpal.cpp | return/BeOSSampleCode | ca5a319fecf425a69e944f3c928a85011563a932 | [
"BSD-3-Clause"
] | 5 | 2018-04-03T01:45:23.000Z | 2021-05-14T08:23:01.000Z | //****************************************
//effectpal.cpp
//****************************************
/*
Copyright 1999, Be Incorporated. All Rights Reserved.
This file may be used under the terms of the Be Sample Code License.
*/
#include <image.h>
#include "effectpal.h"
#include "effect.h"
#include <Application... | 23.6 | 86 | 0.580285 | return |
c87018479ea0e7ad5f24d2419ea20054944c83ca | 13,270 | cpp | C++ | accera/transforms/src/value/ValueFuncToTargetPass.cpp | lisaong/Accera | 56967249356ab2fefd80baebf5ac259e958a7dbd | [
"MIT"
] | null | null | null | accera/transforms/src/value/ValueFuncToTargetPass.cpp | lisaong/Accera | 56967249356ab2fefd80baebf5ac259e958a7dbd | [
"MIT"
] | null | null | null | accera/transforms/src/value/ValueFuncToTargetPass.cpp | lisaong/Accera | 56967249356ab2fefd80baebf5ac259e958a7dbd | [
"MIT"
] | null | null | null | ////////////////////////////////////////////////////////////////////////////////////////////////////
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.
// Authors: Kern Handa
////////////////////////////////////////... | 37.485876 | 156 | 0.634514 | lisaong |
c870b77356794e2faacd3ee5e6fb9dec8a4080d0 | 302 | cpp | C++ | Image Processing/imageProcessingLab/read image.cpp | himansurathi/labCourseWork | d0a5afb4445bcfe11865fab6370fab8ce74d54d5 | [
"MIT"
] | null | null | null | Image Processing/imageProcessingLab/read image.cpp | himansurathi/labCourseWork | d0a5afb4445bcfe11865fab6370fab8ce74d54d5 | [
"MIT"
] | null | null | null | Image Processing/imageProcessingLab/read image.cpp | himansurathi/labCourseWork | d0a5afb4445bcfe11865fab6370fab8ce74d54d5 | [
"MIT"
] | null | null | null | #include <stdio.h>
#include <opencv2/opencv.hpp>
#include "headerfile.h"
using namespace cv;
bool readImage(char *img,Mat &image){
image = imread(img, CV_LOAD_IMAGE_COLOR);
if(! image.data )
{
printf( "Could not open or find the image\n" );
return false;
}
return true;
}
| 18.875 | 51 | 0.649007 | himansurathi |
c872e430fe26113b027e010d5cedda4416119a14 | 492 | cpp | C++ | src/zxing/zxing/oned/rss/expanded/decoders/AI01320xDecoder.cpp | spompelio/qzxing | cfc728583b867e157bd27e8b7c239c05a081e562 | [
"Apache-2.0"
] | 608 | 2015-02-21T22:31:37.000Z | 2022-03-31T05:05:36.000Z | src/zxing/zxing/oned/rss/expanded/decoders/AI01320xDecoder.cpp | wqsemc/qzxing | f0a78867d697fd271528007c7b4c67e8fce75f90 | [
"Apache-2.0"
] | 512 | 2015-01-06T17:59:31.000Z | 2022-03-31T13:21:49.000Z | src/zxing/zxing/oned/rss/expanded/decoders/AI01320xDecoder.cpp | wqsemc/qzxing | f0a78867d697fd271528007c7b4c67e8fce75f90 | [
"Apache-2.0"
] | 114 | 2015-01-17T14:32:52.000Z | 2022-03-20T13:14:07.000Z | #include "AI01320xDecoder.h"
namespace zxing {
namespace oned {
namespace rss {
AI01320xDecoder::AI01320xDecoder(Ref<BitArray> information)
: AI013x0xDecoder(information)
{
}
void AI01320xDecoder::addWeightCode(String &buf, int weight)
{
if (weight < 10000) {
buf.append("(3202)");
} else {
... | 14.909091 | 60 | 0.636179 | spompelio |
c873c2e80b0db915cdd2a7e51e677fe35ea12e47 | 532 | cpp | C++ | algorithm-challenges/baekjoon-online-judge/challenges/1000/1292.cpp | nbsp1221/algorithm | a227bbc7cf43dbf2cadc8d47052b9a92875dfa77 | [
"MIT"
] | null | null | null | algorithm-challenges/baekjoon-online-judge/challenges/1000/1292.cpp | nbsp1221/algorithm | a227bbc7cf43dbf2cadc8d47052b9a92875dfa77 | [
"MIT"
] | null | null | null | algorithm-challenges/baekjoon-online-judge/challenges/1000/1292.cpp | nbsp1221/algorithm | a227bbc7cf43dbf2cadc8d47052b9a92875dfa77 | [
"MIT"
] | null | null | null | #include <iostream>
#include <vector>
using namespace std;
int main()
{
ios::sync_with_stdio(false);
cin.tie(NULL);
int a, b;
cin >> a >> b;
vector<int> sequence(1, 1);
int sumRange = 0;
while (sequence.size() < 1000) {
int lastNumber = sequence.back();
for (int i = 0; ... | 17.16129 | 47 | 0.505639 | nbsp1221 |
c873dc9ad6f04c9892a6abc76f0accfd783c77d0 | 945 | cpp | C++ | Competitive Programming/Hashing/CountDistinctElementInEveryWindow.cpp | shreejitverma/GeeksforGeeks | d7bcb166369fffa9a031a258e925b6aff8d44e6c | [
"MIT"
] | 2 | 2022-02-18T05:14:28.000Z | 2022-03-08T07:00:08.000Z | Competitive Programming/Hashing/CountDistinctElementInEveryWindow.cpp | shivaniverma1/Competitive-Programming-1 | d7bcb166369fffa9a031a258e925b6aff8d44e6c | [
"MIT"
] | 6 | 2022-01-13T04:31:04.000Z | 2022-03-12T01:06:16.000Z | Competitive Programming/Hashing/CountDistinctElementInEveryWindow.cpp | shivaniverma1/Competitive-Programming-1 | d7bcb166369fffa9a031a258e925b6aff8d44e6c | [
"MIT"
] | 2 | 2022-02-14T19:53:53.000Z | 2022-02-18T05:14:30.000Z | // { Driver Code Starts
#include <bits/stdc++.h>
using namespace std;
vector <int> countDistinct(int[], int, int);
int main()
{
int t;
cin >> t;
while (t--)
{
int n, k;
cin >> n >> k;
int a[n];
for (int i = 0; i < n; i++)
cin >> a[i];
vector <int> res... | 16.578947 | 53 | 0.38836 | shreejitverma |
c875e2ac5342ece0efb934a1c9c3f23ea48e638c | 1,303 | cpp | C++ | Mathematical Algorithms/Statistical Algorithms/Measures of Variation.cpp | praharshjain/Algorithms | ea63a2654453f129076ee7d0041f6af3046e4dfc | [
"MIT"
] | null | null | null | Mathematical Algorithms/Statistical Algorithms/Measures of Variation.cpp | praharshjain/Algorithms | ea63a2654453f129076ee7d0041f6af3046e4dfc | [
"MIT"
] | null | null | null | Mathematical Algorithms/Statistical Algorithms/Measures of Variation.cpp | praharshjain/Algorithms | ea63a2654453f129076ee7d0041f6af3046e4dfc | [
"MIT"
] | 2 | 2020-11-28T05:59:16.000Z | 2021-03-26T14:10:58.000Z | #include <bits/stdc++.h>
using namespace std;
//function to calculate range for given set of numeric data
template <typename T>
double range(T arr[], int start, int end)
{
double max = arr[start], min = arr[start];
for (int i = start; i < end; i++)
{
if (arr[i] > max)
max = arr[i];
... | 31.02381 | 107 | 0.589409 | praharshjain |
c87848c053c4500710e561eb507ba511c009e983 | 18,565 | cpp | C++ | isis/src/control/apps/mat2cnet/mat2cnet.cpp | ihumphrey-usgs/ISIS3_old | 284cc442b773f8369d44379ee29a9b46961d8108 | [
"Unlicense"
] | null | null | null | isis/src/control/apps/mat2cnet/mat2cnet.cpp | ihumphrey-usgs/ISIS3_old | 284cc442b773f8369d44379ee29a9b46961d8108 | [
"Unlicense"
] | null | null | null | isis/src/control/apps/mat2cnet/mat2cnet.cpp | ihumphrey-usgs/ISIS3_old | 284cc442b773f8369d44379ee29a9b46961d8108 | [
"Unlicense"
] | 1 | 2021-07-12T06:05:03.000Z | 2021-07-12T06:05:03.000Z | #include "Isis.h"
#include <map>
#include "Application.h"
#include "ControlMeasure.h"
#include "ControlNet.h"
#include "ControlPoint.h"
#include "FileList.h"
#include "IException.h"
#include "IString.h"
#include "Latitude.h"
#include "Longitude.h"
#include "Preference.h"
#include "Progress.h"
#include "Pvl.h"
#includ... | 35.633397 | 81 | 0.611689 | ihumphrey-usgs |
c87be2746ba9c7e42f8dbd9b3a6818b5d9d6fca1 | 847 | hpp | C++ | include/RED4ext/Scripting/Natives/Generated/quest/TimeDilation_Player.hpp | jackhumbert/RED4ext.SDK | 2c55eccb83beabbbe02abae7945af8efce638fca | [
"MIT"
] | 42 | 2020-12-25T08:33:00.000Z | 2022-03-22T14:47:07.000Z | include/RED4ext/Scripting/Natives/Generated/quest/TimeDilation_Player.hpp | jackhumbert/RED4ext.SDK | 2c55eccb83beabbbe02abae7945af8efce638fca | [
"MIT"
] | 38 | 2020-12-28T22:36:06.000Z | 2022-02-16T11:25:47.000Z | include/RED4ext/Scripting/Natives/Generated/quest/TimeDilation_Player.hpp | jackhumbert/RED4ext.SDK | 2c55eccb83beabbbe02abae7945af8efce638fca | [
"MIT"
] | 20 | 2020-12-28T22:17:38.000Z | 2022-03-22T17:19:01.000Z | #pragma once
// This file is generated from the Game's Reflection data
#include <cstdint>
#include <RED4ext/Common.hpp>
#include <RED4ext/Handle.hpp>
#include <RED4ext/Scripting/Natives/Generated/quest/ETimeDilationOverride.hpp>
#include <RED4ext/Scripting/Natives/Generated/quest/TimeDilation_NodeTypeParam.hpp>
name... | 30.25 | 83 | 0.780401 | jackhumbert |
c87c33e1e2775720bd69091add608f6e4ec6ce87 | 17,342 | cpp | C++ | src/mt/token_type.cpp | nfagan/mtype | a745271d366df64e1b4692cc90f0685ea4084ba6 | [
"MIT"
] | null | null | null | src/mt/token_type.cpp | nfagan/mtype | a745271d366df64e1b4692cc90f0685ea4084ba6 | [
"MIT"
] | null | null | null | src/mt/token_type.cpp | nfagan/mtype | a745271d366df64e1b4692cc90f0685ea4084ba6 | [
"MIT"
] | null | null | null | #include "token_type.hpp"
#include <string>
#include <unordered_map>
#include <cassert>
#include <cstring>
namespace mt {
TokenType from_symbol(std::string_view s) {
static std::unordered_map<std::string, TokenType> symbol_map{
{"(", TokenType::left_parens},
{")", TokenType::right_parens},
{"[", TokenTy... | 30.16 | 110 | 0.661227 | nfagan |
c87cb139a11bc2d79c7fc9a779c71f2cebb692e3 | 385 | hpp | C++ | lib/ArduinoJson_ID64/src/ArduinoJson/Deserialization/NestingLimit.hpp | wwmoo7/IRbaby-firmware | 7de0304c2c708a7094324bce1560ac39fcdb8e84 | [
"MIT"
] | 38 | 2020-04-09T03:17:16.000Z | 2022-03-21T06:33:05.000Z | lib/ArduinoJson_ID64/src/ArduinoJson/Deserialization/NestingLimit.hpp | wwmoo7/IRbaby-firmware | 7de0304c2c708a7094324bce1560ac39fcdb8e84 | [
"MIT"
] | 6 | 2020-05-19T10:56:31.000Z | 2022-01-24T07:21:40.000Z | lib/ArduinoJson_ID64/src/ArduinoJson/Deserialization/NestingLimit.hpp | wwmoo7/IRbaby-firmware | 7de0304c2c708a7094324bce1560ac39fcdb8e84 | [
"MIT"
] | 15 | 2020-06-26T09:31:32.000Z | 2021-09-01T15:22:00.000Z | // ArduinoJson - arduinojson.org
// Copyright Benoit Blanchon 2014-2020
// MIT License
#pragma once
#include <ArduinoJson/Namespace.hpp>
namespace ARDUINOJSON_NAMESPACE {
struct NestingLimit {
NestingLimit() : value(ARDUINOJSON_DEFAULT_NESTING_LIMIT) {}
explicit NestingLimit(uint8_t n) : value(n) {}... | 21.388889 | 63 | 0.727273 | wwmoo7 |
c87ec352920b8502108500d9aea45a3797591b07 | 1,373 | cpp | C++ | tests/dxbc/test_dxbc_disasm.cpp | lacc97/dxvk | 5fe8d823a03cc1c90361a4e89c385cefee8cbcf6 | [
"Zlib"
] | 8,148 | 2017-10-29T10:51:20.000Z | 2022-03-31T12:52:51.000Z | tests/dxbc/test_dxbc_disasm.cpp | lacc97/dxvk | 5fe8d823a03cc1c90361a4e89c385cefee8cbcf6 | [
"Zlib"
] | 2,270 | 2017-12-04T12:08:13.000Z | 2022-03-31T19:56:41.000Z | tests/dxbc/test_dxbc_disasm.cpp | lacc97/dxvk | 5fe8d823a03cc1c90361a4e89c385cefee8cbcf6 | [
"Zlib"
] | 732 | 2017-11-28T13:08:15.000Z | 2022-03-31T21:05:59.000Z | #include <iostream>
#include <string>
#include <d3dcompiler.h>
#include <shellapi.h>
#include <windows.h>
#include <windowsx.h>
#include "../../src/util/com/com_pointer.h"
using namespace dxvk;
int WINAPI WinMain(HINSTANCE hInstance,
HINSTANCE hPrevInstance,
LPSTR lpCmdLine,
... | 22.508197 | 92 | 0.614712 | lacc97 |
c87f75ef369ffeddfaea9a76ab99e519052bf3d5 | 6,812 | cpp | C++ | client/cardmaker/cocos2d/cocos/base/CCController-android.cpp | zhs007/cardmaker | cd700327c8c1840eb817b3ea27b10be6423118ff | [
"MIT"
] | 120 | 2018-12-25T03:13:01.000Z | 2022-03-11T10:31:16.000Z | client/cardmaker/cocos2d/cocos/base/CCController-android.cpp | zhs007/cardmaker | cd700327c8c1840eb817b3ea27b10be6423118ff | [
"MIT"
] | 8 | 2016-07-17T06:39:54.000Z | 2021-07-06T15:14:19.000Z | client/cardmaker/cocos2d/cocos/base/CCController-android.cpp | zhs007/cardmaker | cd700327c8c1840eb817b3ea27b10be6423118ff | [
"MIT"
] | 98 | 2019-02-20T01:14:46.000Z | 2022-03-22T16:20:51.000Z | /****************************************************************************
Copyright (c) 2014 cocos2d-x.org
Copyright (c) 2014 Chukong Technologies Inc.
http://www.cocos2d-x.org
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (th... | 34.40404 | 213 | 0.689665 | zhs007 |
c8824f286d5b17113495585b80a3bc71e4428eb4 | 14,863 | cpp | C++ | src/asm_i8086.cpp | tgtakaoka/libasm | 41ae8dcca3924c20eb482dc9e034120d8ee966a7 | [
"Apache-2.0"
] | 15 | 2020-01-24T14:15:08.000Z | 2022-03-29T15:13:16.000Z | src/asm_i8086.cpp | tgtakaoka/libasm | 41ae8dcca3924c20eb482dc9e034120d8ee966a7 | [
"Apache-2.0"
] | 23 | 2020-05-31T14:13:53.000Z | 2021-09-22T17:06:29.000Z | src/asm_i8086.cpp | tgtakaoka/libasm | 41ae8dcca3924c20eb482dc9e034120d8ee966a7 | [
"Apache-2.0"
] | null | null | null | /*
* Copyright 2020 Tadashi G. Takaoka
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agr... | 29.086106 | 99 | 0.571083 | tgtakaoka |
c88331cf9e5b35677d9745bebea844389a49b0e9 | 12,373 | cpp | C++ | core/io/resource_importer.cpp | shinyclaw/godot | 263f7319240df6d57c779b1eb857c7f7ad6dfe47 | [
"CC-BY-3.0",
"Apache-2.0",
"MIT"
] | 1 | 2021-08-04T13:34:33.000Z | 2021-08-04T13:34:33.000Z | core/io/resource_importer.cpp | shinyclaw/godot | 263f7319240df6d57c779b1eb857c7f7ad6dfe47 | [
"CC-BY-3.0",
"Apache-2.0",
"MIT"
] | null | null | null | core/io/resource_importer.cpp | shinyclaw/godot | 263f7319240df6d57c779b1eb857c7f7ad6dfe47 | [
"CC-BY-3.0",
"Apache-2.0",
"MIT"
] | 1 | 2020-08-30T10:57:19.000Z | 2020-08-30T10:57:19.000Z | /*************************************************************************/
/* resource_importer.cpp */
/*************************************************************************/
/* This file is part of: */
/* ... | 29.600478 | 163 | 0.649721 | shinyclaw |
c8836aeabab6bd7274fec72b2850b875afcacadb | 2,684 | cc | C++ | tensorflow/core/kernels/data/prefetch_autotuner.cc | kim-com/tensorflow | 4301e3f34b8da528c58bdafe05cd66c8a55fce9e | [
"Apache-2.0"
] | 1 | 2022-03-20T04:34:49.000Z | 2022-03-20T04:34:49.000Z | tensorflow/core/kernels/data/prefetch_autotuner.cc | kim-com/tensorflow | 4301e3f34b8da528c58bdafe05cd66c8a55fce9e | [
"Apache-2.0"
] | 1 | 2022-03-24T00:13:13.000Z | 2022-03-24T00:13:20.000Z | tensorflow/core/kernels/data/prefetch_autotuner.cc | kim-com/tensorflow | 4301e3f34b8da528c58bdafe05cd66c8a55fce9e | [
"Apache-2.0"
] | null | null | null | /* Copyright 2017 The TensorFlow Authors. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or a... | 34.410256 | 80 | 0.653502 | kim-com |
c883ca21695e634dc712e6db8cf5ffee436cc3af | 4,252 | hpp | C++ | src/px4/mavlink/common/mavlink_msg_altitude.hpp | mfkiwl/GLMocap | 72de3cc11256d0d8567e86b8a2487ffc81fc984e | [
"MIT"
] | 10 | 2021-03-15T03:58:06.000Z | 2021-12-30T15:33:38.000Z | src/px4/mavlink/common/mavlink_msg_altitude.hpp | mfkiwl/GLMocap | 72de3cc11256d0d8567e86b8a2487ffc81fc984e | [
"MIT"
] | 1 | 2021-09-09T15:29:31.000Z | 2021-09-09T15:29:31.000Z | src/px4/mavlink/common/mavlink_msg_altitude.hpp | mfkiwl/GLMocap | 72de3cc11256d0d8567e86b8a2487ffc81fc984e | [
"MIT"
] | 8 | 2021-10-09T08:47:53.000Z | 2022-01-17T07:45:33.000Z | // MESSAGE ALTITUDE support class
#pragma once
namespace mavlink {
namespace common {
namespace msg {
/**
* @brief ALTITUDE message
*
* The current system altitude.
*/
struct ALTITUDE : mavlink::Message {
static constexpr msgid_t MSG_ID = 141;
static constexpr size_t LENGTH = 32;
static constexpr siz... | 50.023529 | 414 | 0.64158 | mfkiwl |
c884576ef618b792c52efeff13be551da01cebef | 2,318 | cpp | C++ | gym/index00_09/ioi2021_03/EE.cpp | daklqw/IOI2021-training | 4f21cef8eec47330e3db77a3d90cbe2309fa8294 | [
"Apache-2.0"
] | 6 | 2020-10-12T05:07:03.000Z | 2021-09-11T14:54:58.000Z | gym/index00_09/ioi2021_03/EE.cpp | daklqw/IOI2021-training | 4f21cef8eec47330e3db77a3d90cbe2309fa8294 | [
"Apache-2.0"
] | null | null | null | gym/index00_09/ioi2021_03/EE.cpp | daklqw/IOI2021-training | 4f21cef8eec47330e3db77a3d90cbe2309fa8294 | [
"Apache-2.0"
] | 2 | 2021-02-09T02:06:31.000Z | 2021-10-06T01:25:08.000Z | #include <bits/stdc++.h>
const int MAXN = 21;
typedef long double db;
const db eps = 1e-8;
const db g = 9.80665;
int A[MAXN][MAXN];
int H, W, R, V;
int pw(int x) { return x * x; }
std::pair<db, db> normal(db a, db b) {
db L = sqrtl(a * a + b * b);
return std::make_pair(a / L, b / L);
}
bool judge(int sx, int sy, int... | 26.044944 | 56 | 0.443054 | daklqw |
c8866e929e52292f1151f1a1e7830e9a194ccccd | 58 | cpp | C++ | main.cpp | JohnyJohnes/AlgorithmsCpp | bd1a1e7fec6e7c854a32f36349b644bb7d80f2b4 | [
"MIT"
] | null | null | null | main.cpp | JohnyJohnes/AlgorithmsCpp | bd1a1e7fec6e7c854a32f36349b644bb7d80f2b4 | [
"MIT"
] | null | null | null | main.cpp | JohnyJohnes/AlgorithmsCpp | bd1a1e7fec6e7c854a32f36349b644bb7d80f2b4 | [
"MIT"
] | null | null | null | //
// Created by Saxion on 10/12/2018.
//
int main(){
}
| 7.25 | 35 | 0.551724 | JohnyJohnes |
c886d1e99ae0c39db9519edec147e5de1610f3ed | 14,414 | cpp | C++ | source/game/rules/UserGroup.cpp | JasonHutton/QWTA | 7f42dc70eb230cf69a8048fc98d647a486e752f1 | [
"MIT"
] | 2 | 2021-05-02T18:37:48.000Z | 2021-07-18T16:18:14.000Z | source/game/rules/UserGroup.cpp | JasonHutton/QWTA | 7f42dc70eb230cf69a8048fc98d647a486e752f1 | [
"MIT"
] | null | null | null | source/game/rules/UserGroup.cpp | JasonHutton/QWTA | 7f42dc70eb230cf69a8048fc98d647a486e752f1 | [
"MIT"
] | null | null | null | // Copyright (C) 2007 Id Software, Inc.
//
#include "../precompiled.h"
#pragma hdrstop
#if defined( _DEBUG ) && !defined( ID_REDIRECT_NEWDELETE )
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
#include "UserGroup.h"
#include "../Player.h"
#include "../guis/UIList.h"
... | 23.47557 | 177 | 0.594769 | JasonHutton |
c88703d91472e8d16bc83873acf6e26e15aa076a | 432 | cpp | C++ | src/data/binary_tree/binary_tree.unit.cpp | Tomcus/escape-ge | 592bfa0a7206ea7c9c6fef4de51fa87450dfce70 | [
"MIT"
] | null | null | null | src/data/binary_tree/binary_tree.unit.cpp | Tomcus/escape-ge | 592bfa0a7206ea7c9c6fef4de51fa87450dfce70 | [
"MIT"
] | null | null | null | src/data/binary_tree/binary_tree.unit.cpp | Tomcus/escape-ge | 592bfa0a7206ea7c9c6fef4de51fa87450dfce70 | [
"MIT"
] | null | null | null | #include "binary_tree/binary_tree.hpp"
#include <catch2/catch_test_macros.hpp>
TEST_CASE("Binary tree tests with simple value type (int)", "[unit][binaryTree][binary_tree]") {
esc::data::BinaryTreeHeap<int> heap;
SECTION("Simple adding") {
heap.push(120);
heap.push(42);
heap.push(12);
... | 27 | 96 | 0.604167 | Tomcus |
c88a47dd948b4abaade3bb380ab9606dab9b80ed | 2,394 | cc | C++ | selfdrive/ui/qt/window.cc | SamuelSandoval/openpilot | a337097b5ee515560e9f1a804b997753767d3c9a | [
"MIT"
] | 20 | 2020-12-04T12:20:57.000Z | 2022-03-31T00:40:15.000Z | selfdrive/ui/qt/window.cc | SamuelSandoval/openpilot | a337097b5ee515560e9f1a804b997753767d3c9a | [
"MIT"
] | 6 | 2020-03-06T18:13:55.000Z | 2020-07-20T05:10:20.000Z | selfdrive/ui/qt/window.cc | SamuelSandoval/openpilot | a337097b5ee515560e9f1a804b997753767d3c9a | [
"MIT"
] | 113 | 2020-10-08T07:37:05.000Z | 2022-02-12T04:26:34.000Z | #include "window.hpp"
#include "selfdrive/hardware/hw.h"
MainWindow::MainWindow(QWidget *parent) : QWidget(parent) {
main_layout = new QStackedLayout;
main_layout->setMargin(0);
homeWindow = new HomeWindow(this);
main_layout->addWidget(homeWindow);
settingsWindow = new SettingsWindow(this);
main_layout->... | 31.5 | 149 | 0.739766 | SamuelSandoval |
c88b0daeb5d1926f3af3443953c3e9c87226aba1 | 12,236 | cpp | C++ | Testbed/Framework/Test.cpp | blackberry/Box2D | 0462d125a55ef2ed448aa79861d34c2c18ffd39f | [
"Zlib"
] | 5 | 2015-04-13T06:43:30.000Z | 2020-08-26T00:53:17.000Z | Testbed/Framework/Test.cpp | blackberry/Box2D | 0462d125a55ef2ed448aa79861d34c2c18ffd39f | [
"Zlib"
] | null | null | null | Testbed/Framework/Test.cpp | blackberry/Box2D | 0462d125a55ef2ed448aa79861d34c2c18ffd39f | [
"Zlib"
] | 2 | 2015-06-14T04:01:33.000Z | 2019-02-15T19:10:46.000Z | /*
* Copyright (c) 2006-2009 Erin Catto http://www.box2d.org
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
* arising from the use of this software.
* Permission is granted to anyone to use this software for any purpos... | 27.070796 | 166 | 0.673995 | blackberry |
c88bc8c976353d1c975bf01b01c4b541ab19a0ff | 1,206 | cpp | C++ | Practice/2017/2017.11.10/Luogu3371-Dij.cpp | SYCstudio/OI | 6e9bfc17dbd4b43467af9b19aa2aed41e28972fa | [
"MIT"
] | 4 | 2017-10-31T14:25:18.000Z | 2018-06-10T16:10:17.000Z | Practice/2017/2017.11.10/Luogu3371-Dij.cpp | SYCstudio/OI | 6e9bfc17dbd4b43467af9b19aa2aed41e28972fa | [
"MIT"
] | null | null | null | Practice/2017/2017.11.10/Luogu3371-Dij.cpp | SYCstudio/OI | 6e9bfc17dbd4b43467af9b19aa2aed41e28972fa | [
"MIT"
] | null | null | null | #include<iostream>
#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<algorithm>
#include<queue>
using namespace std;
#define ll long long
#define mem(Arr,x) memset(Arr,x,sizeof(Arr))
const int maxN=10010;
const int maxM=500010;
const int inf=2147483647;
class Queue_Data
{
public:
int u,dist;
};
bool... | 17.228571 | 49 | 0.563847 | SYCstudio |
c88ccd14b2767edda4ef779172d4e0e724c51fef | 11,998 | cpp | C++ | gtn/functions/compose.cpp | csukuangfj/gtn | 7607bdef9014b55db6e1eaa7953fc23987e6bacb | [
"MIT"
] | 1 | 2021-01-27T16:01:51.000Z | 2021-01-27T16:01:51.000Z | gtn/functions/compose.cpp | KonstantinKlepikov/gtn | 319e939f292121dcfc6bcb001773889b18227034 | [
"MIT"
] | null | null | null | gtn/functions/compose.cpp | KonstantinKlepikov/gtn | 319e939f292121dcfc6bcb001773889b18227034 | [
"MIT"
] | null | null | null | /*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
#include <algorithm>
#include <queue>
#include "gtn/functions/compose.h"
namespace gtn {
namespace detail {
namespace {
inline s... | 29.406863 | 79 | 0.590182 | csukuangfj |
c88ec2f7d1e285bdbaea93d58133cef7a2e597b0 | 358 | cpp | C++ | mc/tmc.cpp | curv3d/tmc | 2afbceeb8f232b2a4771da7fc1d46489e2e7252a | [
"MIT"
] | 14 | 2018-01-23T08:01:45.000Z | 2022-02-13T20:23:39.000Z | mc/tmc.cpp | curv3d/tmc | 2afbceeb8f232b2a4771da7fc1d46489e2e7252a | [
"MIT"
] | 1 | 2020-08-02T07:56:00.000Z | 2020-08-02T07:56:00.000Z | mc/tmc.cpp | curv3d/tmc | 2afbceeb8f232b2a4771da7fc1d46489e2e7252a | [
"MIT"
] | 3 | 2016-06-08T20:34:28.000Z | 2021-11-15T20:47:35.000Z | //
//
// Libs
#include <iostream>
#include <string>
// Project files
#include "MarchingCubes.h"
int main(int argc, char* argv[])
{
// Marcing cubes
tmc::MarchingCubes mc;
// parameters
std::string i_file = "";
std::string objF = "";
std::string offF = "";
const double i0 = 801.3;
mc(i0,i_file,true,... | 14.916667 | 43 | 0.620112 | curv3d |
c88efbda1587fef2bb7135dbd8b03ffd3429f339 | 642 | cpp | C++ | src/v8jsiapp/logger.cpp | mganandraj/v8-jsi | aff826a5567a4fd0fd66b3f3af1187400a666fa9 | [
"MIT"
] | null | null | null | src/v8jsiapp/logger.cpp | mganandraj/v8-jsi | aff826a5567a4fd0fd66b3f3af1187400a666fa9 | [
"MIT"
] | null | null | null | src/v8jsiapp/logger.cpp | mganandraj/v8-jsi | aff826a5567a4fd0fd66b3f3af1187400a666fa9 | [
"MIT"
] | null | null | null | #include "logger.h"
std::mutex Logger::log_m;
void Logger::log(const std::string& s) {
std::unique_lock<std::mutex> lock(log_m);
std::cout << s << std::endl;
}
void Logger::log(const char* ch) {
std::unique_lock<std::mutex> lock(log_m);
std::cout << ch << std::endl;
}
void Logger::log(const ch... | 27.913043 | 66 | 0.596573 | mganandraj |
c88f5c3a40eb2640b4807e4aff3aa76851d586e5 | 26,474 | cpp | C++ | tests/TestStrUtils.cpp | pauldardeau/chaudiere | b9e4878da8b3ffd18cb30ea29fa91d46d02ae26c | [
"BSD-3-Clause"
] | null | null | null | tests/TestStrUtils.cpp | pauldardeau/chaudiere | b9e4878da8b3ffd18cb30ea29fa91d46d02ae26c | [
"BSD-3-Clause"
] | 13 | 2017-03-19T03:38:44.000Z | 2017-09-09T20:55:39.000Z | tests/TestStrUtils.cpp | pauldardeau/chaudiere | b9e4878da8b3ffd18cb30ea29fa91d46d02ae26c | [
"BSD-3-Clause"
] | null | null | null | // Copyright Paul Dardeau, SwampBits LLC 2014
// BSD License
#include <string.h>
#include <string>
#include "TestStrUtils.h"
#include "StrUtils.h"
static const std::string emptyString = "";
using namespace chaudiere;
using namespace poivre;
//************************************************************************... | 37.498584 | 83 | 0.590995 | pauldardeau |
c88f7761978e809e98300066e9405fafcf3d606d | 5,592 | hpp | C++ | dsa/XVDPU-TRD/vck190_platform/overlays/Vitis_Libraries/vision/L1/include/imgproc/xf_aec.hpp | hito0512/Vitis-AI | 996459fb96cb077ed2f7e789d515893b1cccbc95 | [
"Apache-2.0"
] | 1 | 2022-02-17T22:13:23.000Z | 2022-02-17T22:13:23.000Z | dsa/XVDPU-TRD/vck190_platform/overlays/Vitis_Libraries/vision/L1/include/imgproc/xf_aec.hpp | hito0512/Vitis-AI | 996459fb96cb077ed2f7e789d515893b1cccbc95 | [
"Apache-2.0"
] | null | null | null | dsa/XVDPU-TRD/vck190_platform/overlays/Vitis_Libraries/vision/L1/include/imgproc/xf_aec.hpp | hito0512/Vitis-AI | 996459fb96cb077ed2f7e789d515893b1cccbc95 | [
"Apache-2.0"
] | null | null | null | /*
* Copyright 2020 Xilinx, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... | 36.789474 | 119 | 0.651466 | hito0512 |
c88f97f6d56c8a6001659a8efc886de7c32a0fe9 | 9,387 | hh | C++ | TrackerConditions/inc/StrawResponse.hh | lborrel/Offline | db9f647bad3c702171ab5ffa5ccc04c82b3f8984 | [
"Apache-2.0"
] | 1 | 2021-06-23T22:09:28.000Z | 2021-06-23T22:09:28.000Z | TrackerConditions/inc/StrawResponse.hh | lborrel/Offline | db9f647bad3c702171ab5ffa5ccc04c82b3f8984 | [
"Apache-2.0"
] | null | null | null | TrackerConditions/inc/StrawResponse.hh | lborrel/Offline | db9f647bad3c702171ab5ffa5ccc04c82b3f8984 | [
"Apache-2.0"
] | null | null | null | #ifndef TrackerConditions_StrawResponse_hh
#define TrackerConditions_StrawResponse_hh
//
// StrawResponse collects the net response features of straws
// used in reconstruction
//
#include <iostream>
#include <vector>
#include <array>
#include "TrackerGeom/inc/Straw.hh"
#include "DataProducts/inc/TrkTypes.hh"
#inclu... | 47.409091 | 141 | 0.735166 | lborrel |
c88fb017ce154fca4bcaf7cd635396e65d64ee2f | 829 | hpp | C++ | third_party/zeromq/src/macros.hpp | Martin-Oehler/tiny-differentiable-simulator | 36c76f60450aa00ccabf44caee8a8d27514e95dd | [
"Apache-2.0"
] | 862 | 2020-05-14T19:22:27.000Z | 2022-03-20T20:23:24.000Z | third_party/zeromq/src/macros.hpp | Martin-Oehler/tiny-differentiable-simulator | 36c76f60450aa00ccabf44caee8a8d27514e95dd | [
"Apache-2.0"
] | 82 | 2020-05-26T11:41:33.000Z | 2022-03-15T16:46:00.000Z | third_party/zeromq/src/macros.hpp | Martin-Oehler/tiny-differentiable-simulator | 36c76f60450aa00ccabf44caee8a8d27514e95dd | [
"Apache-2.0"
] | 93 | 2020-05-15T05:37:59.000Z | 2022-03-03T09:09:50.000Z |
/******************************************************************************/
/* 0MQ Internal Use */
/******************************************************************************/
#define LIBZMQ_UNUSED(object) (void) object
#define LIBZMQ_DELETE(p_object)... | 37.681818 | 80 | 0.24608 | Martin-Oehler |
c89119af28b381c6c906a650419a79ab2d778611 | 13,865 | cc | C++ | src/devices/lib/amlogic/aml-pdm-audio.cc | fabio-d/fuchsia-stardock | e57f5d1cf015fe2294fc2a5aea704842294318d2 | [
"BSD-2-Clause"
] | 5 | 2022-01-10T20:22:17.000Z | 2022-01-21T20:14:17.000Z | src/devices/lib/amlogic/aml-pdm-audio.cc | fabio-d/fuchsia-stardock | e57f5d1cf015fe2294fc2a5aea704842294318d2 | [
"BSD-2-Clause"
] | null | null | null | src/devices/lib/amlogic/aml-pdm-audio.cc | fabio-d/fuchsia-stardock | e57f5d1cf015fe2294fc2a5aea704842294318d2 | [
"BSD-2-Clause"
] | null | null | null | // Copyright 2018 The Fuchsia 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 <lib/ddk/debug.h>
#include <limits>
#include <memory>
#include <utility>
#include <fbl/alloc_checker.h>
#include <soc/aml-common/aml-pdm-audio.h... | 45.016234 | 100 | 0.660945 | fabio-d |
c89248bf62a79ad2f47c29d90aaac243f3ef9eb0 | 1,936 | cpp | C++ | Plugins/LeapMotion/Source/LeapMotion/Private/LeapGesture.cpp | vrmad1/UE4-LeapMotionPlugin | 1cbbd4fe30bb2b0c7b6f1a641eb3afb69cab49ae | [
"MIT"
] | 246 | 2015-01-03T03:29:03.000Z | 2021-11-17T11:22:58.000Z | Plugins/LeapMotion/Source/LeapMotion/Private/LeapGesture.cpp | vrmad1/UE4-LeapMotionPlugin | 1cbbd4fe30bb2b0c7b6f1a641eb3afb69cab49ae | [
"MIT"
] | 27 | 2015-01-07T04:57:47.000Z | 2021-11-23T17:14:10.000Z | Plugins/LeapMotion/Source/LeapMotion/Private/LeapGesture.cpp | vrmad1/UE4-LeapMotionPlugin | 1cbbd4fe30bb2b0c7b6f1a641eb3afb69cab49ae | [
"MIT"
] | 88 | 2015-01-08T15:35:14.000Z | 2021-04-14T02:27:57.000Z | #include "LeapMotionPrivatePCH.h"
class PrivateGesture
{
public:
Leap::Gesture Gesture;
};
ULeapGesture::ULeapGesture(const FObjectInitializer &ObjectInitializer) : UObject(ObjectInitializer), Private(new PrivateGesture())
{
}
ULeapGesture::~ULeapGesture()
{
delete Private;
}
ULeapFrame* ULeapGesture::Frame()
{
... | 21.511111 | 131 | 0.742252 | vrmad1 |
c892f3b7eeaeca94f34c24edad0a012e691658cd | 1,241 | cpp | C++ | src/service.cpp | The-Garlic-Network/old | 412b331c1ef484eef54e7da065fb756e0420aa16 | [
"MIT"
] | null | null | null | src/service.cpp | The-Garlic-Network/old | 412b331c1ef484eef54e7da065fb756e0420aa16 | [
"MIT"
] | null | null | null | src/service.cpp | The-Garlic-Network/old | 412b331c1ef484eef54e7da065fb756e0420aa16 | [
"MIT"
] | null | null | null | /**
* service.cpp - Точка входа в программу.
*
* @mrrva - 2019
*/
#include "include/encryption.hpp"
#include "include/network.hpp"
#include "include/storage.hpp"
#include "include/struct.hpp"
int main()
{
using tgnstruct::secret_key;
using tgnstruct::public_key;
using tgnstorage::db;
std::string pub = db.get_var(... | 20.683333 | 48 | 0.65834 | The-Garlic-Network |
c894784c32653171c9b35077f9789c5bdf2545da | 3,254 | cc | C++ | python/jittor/src/misc/ring_buffer.cc | Exusial/jittor | eca21d5bba5098bce4f492fa44908677b6e76588 | [
"Apache-2.0"
] | 2,571 | 2020-03-20T03:38:35.000Z | 2022-03-31T08:20:05.000Z | python/jittor/src/misc/ring_buffer.cc | Exusial/jittor | eca21d5bba5098bce4f492fa44908677b6e76588 | [
"Apache-2.0"
] | 197 | 2020-03-20T04:11:47.000Z | 2022-03-31T10:14:24.000Z | python/jittor/src/misc/ring_buffer.cc | Exusial/jittor | eca21d5bba5098bce4f492fa44908677b6e76588 | [
"Apache-2.0"
] | 284 | 2020-03-20T03:53:15.000Z | 2022-03-28T07:20:32.000Z | // ***************************************************************
// Copyright (c) 2021 Jittor. All Rights Reserved.
// Maintainers: Dun Liang <randonlang@gmail.com>.
// This file is subject to the terms and conditions defined in
// file 'LICENSE.txt', which is part of this source code package.
// ********************... | 28.295652 | 108 | 0.56638 | Exusial |
c8970ae43c456d41ceb28e24702c317cb3b7a059 | 8,954 | cxx | C++ | itkEMS/robust/QHullMSTClusteringProcess.cxx | NIRALUser/ARCTIC | 0cc38d92db43a3861e6e7491d516d5edb543bc4b | [
"Apache-2.0"
] | null | null | null | itkEMS/robust/QHullMSTClusteringProcess.cxx | NIRALUser/ARCTIC | 0cc38d92db43a3861e6e7491d516d5edb543bc4b | [
"Apache-2.0"
] | null | null | null | itkEMS/robust/QHullMSTClusteringProcess.cxx | NIRALUser/ARCTIC | 0cc38d92db43a3861e6e7491d516d5edb543bc4b | [
"Apache-2.0"
] | 2 | 2016-06-20T15:06:11.000Z | 2019-01-24T02:19:07.000Z |
#include "Heap.h"
#include "QHullMSTClusteringProcess.h"
#include <iostream>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
extern "C"
{
#include "qhull.h"
#include "mem.h"
#include "qset.h"
}
#define BUF_SIZE 2048
#define QHULL_COMMAND "qhull d QJ Tv "
//#define QHULL_COMMAND "qhull d QJ "
// For sor... | 21.628019 | 79 | 0.595041 | NIRALUser |
c89855adcd4c33f594f70db3cd5c6d089b808a81 | 5,911 | cpp | C++ | Gem/Code/Source/SkinnedMeshExampleComponent.cpp | Bindless-Chicken/o3de-atom-sampleviewer | 13b11996079675445ce4e321f53c3ac79e01702d | [
"Apache-2.0",
"MIT"
] | null | null | null | Gem/Code/Source/SkinnedMeshExampleComponent.cpp | Bindless-Chicken/o3de-atom-sampleviewer | 13b11996079675445ce4e321f53c3ac79e01702d | [
"Apache-2.0",
"MIT"
] | null | null | null | Gem/Code/Source/SkinnedMeshExampleComponent.cpp | Bindless-Chicken/o3de-atom-sampleviewer | 13b11996079675445ce4e321f53c3ac79e01702d | [
"Apache-2.0",
"MIT"
] | null | null | null | /*
* Copyright (c) Contributors to the Open 3D Engine Project.
* For complete copyright and license terms please see the LICENSE at the root of this distribution.
*
* SPDX-License-Identifier: Apache-2.0 OR MIT
*
*/
#include <SkinnedMeshExampleComponent.h>
#include <SampleComponentManager.h>
#include <SampleCompo... | 39.671141 | 167 | 0.705464 | Bindless-Chicken |
c89a30e63b180a83d6fa94a0c3359de41219ed24 | 605 | cpp | C++ | src/Search/InAreaSearchSession.cpp | jmakovicka/OsmAnd-core | d18f57bb123b6c6ad0adbed0c2f4419d0e6a6610 | [
"MIT"
] | null | null | null | src/Search/InAreaSearchSession.cpp | jmakovicka/OsmAnd-core | d18f57bb123b6c6ad0adbed0c2f4419d0e6a6610 | [
"MIT"
] | null | null | null | src/Search/InAreaSearchSession.cpp | jmakovicka/OsmAnd-core | d18f57bb123b6c6ad0adbed0c2f4419d0e6a6610 | [
"MIT"
] | null | null | null | #include "InAreaSearchSession.h"
#include "InAreaSearchSession_P.h"
OsmAnd::InAreaSearchSession::InAreaSearchSession(const QList< std::shared_ptr<const ISearchEngine::IDataSource> >& dataSources)
: BaseSearchSession(new InAreaSearchSession_P(this), dataSources)
, _p(std::static_pointer_cast<InAreaSearchSession... | 26.304348 | 127 | 0.771901 | jmakovicka |
c89af4bba658a9c079a4764f48078d18630417df | 13,491 | cpp | C++ | src/openms/source/CHEMISTRY/NASequence.cpp | avasq011/FinalProject_OpenMS_76ers | 6c9e2c295df6ec0eb296a3badfcdff245a869d59 | [
"BSL-1.0",
"Zlib",
"Apache-2.0"
] | 1 | 2019-07-15T20:50:22.000Z | 2019-07-15T20:50:22.000Z | src/openms/source/CHEMISTRY/NASequence.cpp | avasq011/FinalProject_OpenMS_76ers | 6c9e2c295df6ec0eb296a3badfcdff245a869d59 | [
"BSL-1.0",
"Zlib",
"Apache-2.0"
] | 150 | 2017-09-05T09:43:12.000Z | 2020-02-03T10:07:36.000Z | src/openms/source/CHEMISTRY/NASequence.cpp | avasq011/FinalProject_OpenMS_76ers | 6c9e2c295df6ec0eb296a3badfcdff245a869d59 | [
"BSL-1.0",
"Zlib",
"Apache-2.0"
] | 2 | 2018-04-02T18:41:20.000Z | 2018-08-11T21:39:24.000Z | // --------------------------------------------------------------------------
// OpenMS -- Open-Source Mass Spectrometry
// --------------------------------------------------------------------------
// Copyright The OpenMS Team -- Eberhard Karls University Tuebingen,
// ETH Zurich, and Freie Universit... | 31.521028 | 148 | 0.632051 | avasq011 |
c89bae18739e1796abedb0132ebdd6f89f5eeea1 | 1,008 | hpp | C++ | include/soralog/impl/fallback_configurator.hpp | GeniusVentures/soralog | 53bc6eeba84ad35e018fe4e94f6a8cc74284aa44 | [
"Apache-2.0"
] | 2 | 2022-03-12T14:30:07.000Z | 2022-03-12T21:16:20.000Z | include/soralog/impl/fallback_configurator.hpp | GeniusVentures/soralog | 53bc6eeba84ad35e018fe4e94f6a8cc74284aa44 | [
"Apache-2.0"
] | 6 | 2021-03-17T13:24:01.000Z | 2022-03-09T12:52:27.000Z | include/soralog/impl/fallback_configurator.hpp | GeniusVentures/soralog | 53bc6eeba84ad35e018fe4e94f6a8cc74284aa44 | [
"Apache-2.0"
] | 4 | 2021-03-15T09:06:43.000Z | 2022-03-12T14:04:42.000Z | /**
* Copyright Soramitsu Co., Ltd. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0
*/
#ifndef SORALOG_FALLBACKCONFIGURATOR
#define SORALOG_FALLBACKCONFIGURATOR
#include <soralog/configurator.hpp>
#include <soralog/logging_system.hpp>
namespace soralog {
/**
* @class FallbackConfigurator
* @b... | 25.846154 | 79 | 0.703373 | GeniusVentures |
c89f022c36aed709be3b248cba420d23b9e14297 | 1,484 | hpp | C++ | Application/src/vendor/include/glm/ext/vector_uint2_precision.hpp | ankitpaudel20/opengl | 3d32f466c6f7b0d53c17d672a29800bc46a888ef | [
"MIT"
] | 2 | 2021-08-16T16:55:01.000Z | 2021-08-16T16:57:12.000Z | Application/src/vendor/include/glm/ext/vector_uint2_precision.hpp | ankitpaudel20/opengl | 3d32f466c6f7b0d53c17d672a29800bc46a888ef | [
"MIT"
] | 3 | 2021-08-10T16:32:47.000Z | 2021-08-10T16:46:36.000Z | Application/src/vendor/include/glm/ext/vector_uint2_precision.hpp | ankitpaudel20/opengl | 3d32f466c6f7b0d53c17d672a29800bc46a888ef | [
"MIT"
] | 2 | 2021-11-30T11:09:44.000Z | 2021-11-30T11:11:16.000Z | /// @ref core
/// @file glm/ext/vector_uint2_precision.hpp
#pragma once
#include "../detail/type_vec2.hpp"
namespace glm {
/// @addtogroup core_vector_precision
/// @{
/// 2 components vector of high qualifier unsigned integer numbers.
///
/// @see <a href="http://www.opengl.org/reg... | 46.375 | 146 | 0.671159 | ankitpaudel20 |
c8a1892e312cc5045486575feb33806f6d055304 | 3,829 | hxx | C++ | main/svgio/inc/svgio/svgreader/svgdocumenthandler.hxx | Grosskopf/openoffice | 93df6e8a695d5e3eac16f3ad5e9ade1b963ab8d7 | [
"Apache-2.0"
] | 679 | 2015-01-06T06:34:58.000Z | 2022-03-30T01:06:03.000Z | main/svgio/inc/svgio/svgreader/svgdocumenthandler.hxx | Grosskopf/openoffice | 93df6e8a695d5e3eac16f3ad5e9ade1b963ab8d7 | [
"Apache-2.0"
] | 102 | 2017-11-07T08:51:31.000Z | 2022-03-17T12:13:49.000Z | main/svgio/inc/svgio/svgreader/svgdocumenthandler.hxx | Grosskopf/openoffice | 93df6e8a695d5e3eac16f3ad5e9ade1b963ab8d7 | [
"Apache-2.0"
] | 331 | 2015-01-06T11:40:55.000Z | 2022-03-14T04:07:51.000Z | /**************************************************************
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to y... | 50.381579 | 257 | 0.621833 | Grosskopf |
c8a1a791bd6f00ca496dc0c50a14de312c1c0ccf | 61,007 | cc | C++ | node_modules/bcrypto/src/secp256k1.cc | corollari/bcoin | 2dece4fbe10fffa369e9dd0e8263eb57ba30dcac | [
"MIT"
] | 2 | 2021-05-15T03:51:49.000Z | 2021-05-15T03:51:50.000Z | node_modules/bcrypto/src/secp256k1.cc | corollari/bcoin | 2dece4fbe10fffa369e9dd0e8263eb57ba30dcac | [
"MIT"
] | null | null | null | node_modules/bcrypto/src/secp256k1.cc | corollari/bcoin | 2dece4fbe10fffa369e9dd0e8263eb57ba30dcac | [
"MIT"
] | 1 | 2020-06-02T23:08:20.000Z | 2020-06-02T23:08:20.000Z | /*!
* Parts of this software are based on cryptocoinjs/secp256k1-node:
*
* https://github.com/cryptocoinjs/secp256k1-node
*
* The MIT License (MIT)
*
* Copyright (c) 2014-2016 secp256k1-node contributors
*
* Parts of this software are based on bn.js, elliptic, hash.js
* Copyright (c) 2014-2016 Fedor Indutny
... | 35.63493 | 91 | 0.698838 | corollari |
c8a212109e888485461402adfa353d639624e2af | 10,044 | cpp | C++ | test/rocprim/test_hip_device_merge_sort.cpp | arsenm/rocPRIM | 02d6006a7951c53ecfd245200d58809d3eee0b48 | [
"MIT"
] | null | null | null | test/rocprim/test_hip_device_merge_sort.cpp | arsenm/rocPRIM | 02d6006a7951c53ecfd245200d58809d3eee0b48 | [
"MIT"
] | null | null | null | test/rocprim/test_hip_device_merge_sort.cpp | arsenm/rocPRIM | 02d6006a7951c53ecfd245200d58809d3eee0b48 | [
"MIT"
] | null | null | null | // MIT License
//
// Copyright (c) 2017 Advanced Micro Devices, Inc. All rights reserved.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitati... | 32.504854 | 106 | 0.610812 | arsenm |
c8a4d6760a643413706f15df437e8b4ffd378f0f | 4,568 | cpp | C++ | qt_host_installer/downloadprogress.cpp | CoderBotOrg/installer | 21ceda0b77ee36d1ca70182790532c544087f357 | [
"Libpng"
] | 1 | 2018-01-11T15:09:37.000Z | 2018-01-11T15:09:37.000Z | qt_host_installer/downloadprogress.cpp | CoderBotOrg/installer | 21ceda0b77ee36d1ca70182790532c544087f357 | [
"Libpng"
] | null | null | null | qt_host_installer/downloadprogress.cpp | CoderBotOrg/installer | 21ceda0b77ee36d1ca70182790532c544087f357 | [
"Libpng"
] | null | null | null | /*
* (c) 2014-2015 Sam Nazarko
* email@samnazarko.co.uk
*/
#include "downloadprogress.h"
#include "ui_downloadprogress.h"
#include <QFileInfo>
#include <QNetworkRequest>
#include <QNetworkReply>
#include <QString>
#include <QStringList>
#include <QUrl>
#include <QFile>
#include <QDir>
#include <QMessageBox>
#include ... | 31.07483 | 112 | 0.624124 | CoderBotOrg |
c8a5ba2688cab8c1f172ca2ff375164ecc4785df | 7,914 | cpp | C++ | TAO/CIAO/connectors/dds4ccm/tests/Updater/Receiver/Updater_Receiver_exec.cpp | cflowe/ACE | 5ff60b41adbe1772372d1a43bcc1f2726ff8f810 | [
"DOC"
] | 36 | 2015-01-10T07:27:33.000Z | 2022-03-07T03:32:08.000Z | TAO/CIAO/connectors/dds4ccm/tests/Updater/Receiver/Updater_Receiver_exec.cpp | cflowe/ACE | 5ff60b41adbe1772372d1a43bcc1f2726ff8f810 | [
"DOC"
] | 2 | 2018-08-13T07:30:51.000Z | 2019-02-25T03:04:31.000Z | TAO/CIAO/connectors/dds4ccm/tests/Updater/Receiver/Updater_Receiver_exec.cpp | cflowe/ACE | 5ff60b41adbe1772372d1a43bcc1f2726ff8f810 | [
"DOC"
] | 38 | 2015-01-08T14:12:06.000Z | 2022-01-19T08:33:00.000Z | // -*- C++ -*-
// $Id: Updater_Receiver_exec.cpp 95859 2012-06-11 12:40:54Z johnnyw $
/**
* Code generated by the The ACE ORB (TAO) IDL Compiler v1.8.3
* TAO and the TAO IDL Compiler have been developed by:
* Center for Distributed Object Computing
* Washington University
* St. Louis, MO
* ... | 28.163701 | 95 | 0.579732 | cflowe |
c8a7598d88461602144d32c434825b47581394da | 29,832 | hpp | C++ | far/config.hpp | data-man/FarAS | 8bd1725cdd2aaee90081ae35c492738e0be470a3 | [
"BSD-3-Clause"
] | 1 | 2020-12-05T17:33:05.000Z | 2020-12-05T17:33:05.000Z | far/config.hpp | data-man/FarAS | 8bd1725cdd2aaee90081ae35c492738e0be470a3 | [
"BSD-3-Clause"
] | 1 | 2021-02-23T13:01:10.000Z | 2021-02-23T13:01:10.000Z | far/config.hpp | data-man/FarAS | 8bd1725cdd2aaee90081ae35c492738e0be470a3 | [
"BSD-3-Clause"
] | null | null | null | #ifndef CONFIG_HPP_E468759B_688C_4D45_A5BA_CF1D4FCC9A08
#define CONFIG_HPP_E468759B_688C_4D45_A5BA_CF1D4FCC9A08
#pragma once
/*
config.hpp
Конфигурация
*/
/*
Copyright © 1996 Eugene Roshal
Copyright © 2000 Far Group
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification... | 27.144677 | 144 | 0.754257 | data-man |
c8a911d1ece0e478a56fd7421bb06f8e53b8633f | 2,377 | cc | C++ | source/extensions/filters/common/original_src/original_src_socket_option.cc | dcillera/envoy | cb54ba8eec26f768f8c1ae412113b07bacde7321 | [
"Apache-2.0"
] | 17,703 | 2017-09-14T18:23:43.000Z | 2022-03-31T22:04:17.000Z | source/extensions/filters/common/original_src/original_src_socket_option.cc | dcillera/envoy | cb54ba8eec26f768f8c1ae412113b07bacde7321 | [
"Apache-2.0"
] | 15,957 | 2017-09-14T16:38:22.000Z | 2022-03-31T23:56:30.000Z | source/extensions/filters/common/original_src/original_src_socket_option.cc | dcillera/envoy | cb54ba8eec26f768f8c1ae412113b07bacde7321 | [
"Apache-2.0"
] | 3,780 | 2017-09-14T18:58:47.000Z | 2022-03-31T17:10:47.000Z | #include "source/extensions/filters/common/original_src/original_src_socket_option.h"
#include "envoy/config/core/v3/base.pb.h"
#include "source/common/common/assert.h"
namespace Envoy {
namespace Extensions {
namespace Filters {
namespace Common {
namespace OriginalSrc {
OriginalSrcSocketOption::OriginalSrcSocketO... | 36.015152 | 98 | 0.734539 | dcillera |
c8a989650ffbb675ae69c6f01486a9ef2c707fd5 | 3,251 | cpp | C++ | core/test/pick_ur5.cpp | gavanderhoorn/moveit_task_constructor | 6eb8b0d64c82240c1a04149e01cd3a136c549232 | [
"BSD-3-Clause"
] | 27 | 2020-03-02T14:32:50.000Z | 2021-10-21T13:12:02.000Z | core/test/pick_ur5.cpp | tylerjw/moveit_task_constructor | 145bec1ed3b6639d0b937b155e362e063860f4b3 | [
"BSD-3-Clause"
] | 3 | 2021-07-16T09:46:09.000Z | 2021-09-09T20:05:36.000Z | core/test/pick_ur5.cpp | tylerjw/moveit_task_constructor | 145bec1ed3b6639d0b937b155e362e063860f4b3 | [
"BSD-3-Clause"
] | 8 | 2020-03-13T20:52:23.000Z | 2022-01-12T11:15:47.000Z | #include <moveit/task_constructor/task.h>
#include <moveit/task_constructor/stages/current_state.h>
#include <moveit/task_constructor/stages/generate_grasp_pose.h>
#include <moveit/task_constructor/stages/simple_grasp.h>
#include <moveit/task_constructor/stages/pick.h>
#include <moveit/task_constructor/stages/connect.... | 32.188119 | 107 | 0.738234 | gavanderhoorn |
c8a9c8db8cf4320cbf83579fe874d74865af94a1 | 489 | cpp | C++ | 17.2. Classes II/main.cpp | joaovmalheiros/Exercicios-Para-Revisao-Cplusplus | b9d523f863fd112b2b7fe72142a7128d5d95badc | [
"MIT"
] | null | null | null | 17.2. Classes II/main.cpp | joaovmalheiros/Exercicios-Para-Revisao-Cplusplus | b9d523f863fd112b2b7fe72142a7128d5d95badc | [
"MIT"
] | null | null | null | 17.2. Classes II/main.cpp | joaovmalheiros/Exercicios-Para-Revisao-Cplusplus | b9d523f863fd112b2b7fe72142a7128d5d95badc | [
"MIT"
] | null | null | null | #include <iostream>
using namespace std;
//The keyword this: represents a pointer to the object whose member function is being executed. It is used within a class's
//member function to refer to the object itself.
class Dummy {
public:
bool isitme (Dummy& param);
};
bool Dummy::isitme (Dummy& param)
{
if(&p... | 18.111111 | 123 | 0.642127 | joaovmalheiros |
c8aa4964293a897fbcd950414fac7436b4e8f971 | 4,189 | cpp | C++ | Libraries/FreeImage-3170/Source/OpenEXR/IlmThread/IlmThreadSemaphoreWin32.cpp | QuaternionMark/COMP371-FinalProject | ac750a5bb4896f4800d8fbc08fac9ef9a002ed44 | [
"Zlib"
] | 1 | 2022-03-27T02:56:21.000Z | 2022-03-27T02:56:21.000Z | Libraries/FreeImage-3170/Source/OpenEXR/IlmThread/IlmThreadSemaphoreWin32.cpp | MergeCommits/COMP371-FinalProject | ac750a5bb4896f4800d8fbc08fac9ef9a002ed44 | [
"Zlib"
] | null | null | null | Libraries/FreeImage-3170/Source/OpenEXR/IlmThread/IlmThreadSemaphoreWin32.cpp | MergeCommits/COMP371-FinalProject | ac750a5bb4896f4800d8fbc08fac9ef9a002ed44 | [
"Zlib"
] | null | null | null | ///////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2005-2012, Industrial Light & Magic, a division of Lucas
// Digital Ltd. LLC
//
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provid... | 27.201299 | 81 | 0.606111 | QuaternionMark |
c8acd14f7ec2d740f9aac4cd47f44925b765a972 | 390 | cpp | C++ | 01/ex8.cpp | Sadik326-ctrl/computer_programming | cbae264ffa04fc487008fa6a0a32e0a1a316e01e | [
"MIT"
] | null | null | null | 01/ex8.cpp | Sadik326-ctrl/computer_programming | cbae264ffa04fc487008fa6a0a32e0a1a316e01e | [
"MIT"
] | null | null | null | 01/ex8.cpp | Sadik326-ctrl/computer_programming | cbae264ffa04fc487008fa6a0a32e0a1a316e01e | [
"MIT"
] | null | null | null | // Circumference and area of a circle with radius 2.5
#include <iostream>
using namespace std;
const double pi = 3.141593;
int main()
{
double area, circuit, radius = 1.5;
area = pi * radius * radius;
circuit = 2 * pi * radius;
cout << "\nTo Evaluate a Circle\n" << endl;
cout << "Radius:
" << radius
<< "Circumference: ... | 18.571429 | 53 | 0.638462 | Sadik326-ctrl |
c8ae93097b8d059966fc3ef47ac6c42b64b4bab2 | 6,494 | cpp | C++ | Code/EditorPlugins/ProcGen/EditorPluginProcGen/ProcGenGraphAsset/ProcGenGraphQt.cpp | fereeh/ezEngine | 14e46cb2a1492812888602796db7ddd66e2b7110 | [
"MIT"
] | 1 | 2021-06-23T14:44:02.000Z | 2021-06-23T14:44:02.000Z | Code/EditorPlugins/ProcGen/EditorPluginProcGen/ProcGenGraphAsset/ProcGenGraphQt.cpp | fereeh/ezEngine | 14e46cb2a1492812888602796db7ddd66e2b7110 | [
"MIT"
] | null | null | null | Code/EditorPlugins/ProcGen/EditorPluginProcGen/ProcGenGraphAsset/ProcGenGraphQt.cpp | fereeh/ezEngine | 14e46cb2a1492812888602796db7ddd66e2b7110 | [
"MIT"
] | null | null | null | #include <EditorPluginProcGenPCH.h>
#include <EditorEngineProcessFramework/EngineProcess/EngineProcessMessages.h>
#include <EditorPluginProcGen/ProcGenGraphAsset/ProcGenGraphAsset.h>
#include <EditorPluginProcGen/ProcGenGraphAsset/ProcGenGraphQt.h>
#include <Foundation/Strings/StringBuilder.h>
#include <Foundation/Str... | 25.667984 | 125 | 0.636126 | fereeh |
c8af271e5fc97b803c63ecb353f0182142c24332 | 6,819 | cc | C++ | iocore/net/Net.cc | zhaorun/trafficserver | 757256129811441f29eea288b1d7e19bc54fab9c | [
"Apache-2.0"
] | 1 | 2019-10-28T04:36:50.000Z | 2019-10-28T04:36:50.000Z | iocore/net/Net.cc | zhaorun/trafficserver | 757256129811441f29eea288b1d7e19bc54fab9c | [
"Apache-2.0"
] | 2 | 2019-12-13T00:55:32.000Z | 2019-12-13T20:16:47.000Z | iocore/net/Net.cc | zhaorun/trafficserver | 757256129811441f29eea288b1d7e19bc54fab9c | [
"Apache-2.0"
] | 1 | 2020-03-13T00:17:20.000Z | 2020-03-13T00:17:20.000Z | /** @file
A brief file description
@section license License
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you und... | 43.433121 | 117 | 0.767121 | zhaorun |
c8af53bfba0b6fe26b56d9c2cf715aba024f6d22 | 3,002 | cpp | C++ | pin-2.11/source/tools/Probes/exception_in_probed_call_cpp_app.cpp | swchoi1994/Project | e46fa191afe54d6676016d41534c3531eb51ff79 | [
"Intel"
] | 3 | 2020-06-26T09:35:19.000Z | 2021-01-03T16:58:11.000Z | pin-2.11/source/tools/Probes/exception_in_probed_call_cpp_app.cpp | swchoi1994/Project | e46fa191afe54d6676016d41534c3531eb51ff79 | [
"Intel"
] | null | null | null | pin-2.11/source/tools/Probes/exception_in_probed_call_cpp_app.cpp | swchoi1994/Project | e46fa191afe54d6676016d41534c3531eb51ff79 | [
"Intel"
] | 2 | 2020-12-27T03:58:38.000Z | 2020-12-27T03:58:38.000Z | /*BEGIN_LEGAL
Intel Open Source License
Copyright (c) 2002-2012 Intel Corporation. All rights reserved.
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 copyright noti... | 25.440678 | 102 | 0.717522 | swchoi1994 |
c8af73a3b4416602290a0e2720f6fce8fe15c7b0 | 42,436 | cpp | C++ | lib/CodeGen/SelectionDAG/InstrEmitter.cpp | kpdev/llvm-tnt | d81ccf6fad01597f0143a1598d94d7d29002cf41 | [
"MIT"
] | 1,073 | 2017-06-28T05:11:54.000Z | 2022-03-31T12:52:07.000Z | lib/CodeGen/SelectionDAG/InstrEmitter.cpp | kpdev/llvm-tnt | d81ccf6fad01597f0143a1598d94d7d29002cf41 | [
"MIT"
] | 23 | 2017-07-01T02:22:04.000Z | 2020-10-16T09:42:03.000Z | lib/CodeGen/SelectionDAG/InstrEmitter.cpp | kpdev/llvm-tnt | d81ccf6fad01597f0143a1598d94d7d29002cf41 | [
"MIT"
] | 244 | 2017-06-28T05:08:57.000Z | 2022-03-13T05:03:12.000Z | //==--- InstrEmitter.cpp - Emit MachineInstrs for the SelectionDAG class ---==//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===-------------------------------------------------------... | 40.376784 | 86 | 0.644099 | kpdev |
c8b1a3fde2fbebc557f9dc5d91f7685f204a4aea | 1,819 | cpp | C++ | bench/detail/arp_cache.cpp | andreimaximov/unet | 10b6aa82b1ce74fa40c9050f4593c902f9d0fd61 | [
"MIT"
] | null | null | null | bench/detail/arp_cache.cpp | andreimaximov/unet | 10b6aa82b1ce74fa40c9050f4593c902f9d0fd61 | [
"MIT"
] | null | null | null | bench/detail/arp_cache.cpp | andreimaximov/unet | 10b6aa82b1ce74fa40c9050f4593c902f9d0fd61 | [
"MIT"
] | null | null | null | #include <cstdint>
#include <cstring>
#include <vector>
#include <benchmark/benchmark.h>
#include <unet/detail/arp_cache.hpp>
#include <unet/random.hpp>
namespace unet {
namespace detail {
constexpr auto kNumAddOps = 65'536;
static Ipv4Addr randomIpv4(std::uint32_t maxAddress) {
auto raw = randInt<std::uint32_t>... | 24.917808 | 68 | 0.68884 | andreimaximov |
c8b1ef2a5feeef249c7990679a390318eb0bdfd2 | 40,167 | cpp | C++ | MSVC/14.24.28314/atlmfc/src/mfc/olecli2.cpp | 825126369/UCRT | 8853304fdc2a5c216658d08b6dbbe716aa2a7b1f | [
"MIT"
] | 2 | 2021-01-27T10:19:30.000Z | 2021-02-09T06:24:30.000Z | MSVC/14.24.28314/atlmfc/src/mfc/olecli2.cpp | 825126369/UCRT | 8853304fdc2a5c216658d08b6dbbe716aa2a7b1f | [
"MIT"
] | null | null | null | MSVC/14.24.28314/atlmfc/src/mfc/olecli2.cpp | 825126369/UCRT | 8853304fdc2a5c216658d08b6dbbe716aa2a7b1f | [
"MIT"
] | 1 | 2021-01-27T10:19:36.000Z | 2021-01-27T10:19:36.000Z | // This is a part of the Microsoft Foundation Classes C++ library.
// Copyright (C) Microsoft Corporation
// All rights reserved.
//
// This source code is only intended as a supplement to the
// Microsoft Foundation Classes Reference and related
// electronic documentation provided with the library.
// See these sourc... | 25.073034 | 122 | 0.72694 | 825126369 |
c8b24e8a164f685838c7c6a841320c461a1b60f9 | 6,505 | cpp | C++ | src/message.cpp | smallb/ucxxrt | 6f1fddae4f5eefb4e1ad36b7c9a1cd664caf2f26 | [
"MIT"
] | null | null | null | src/message.cpp | smallb/ucxxrt | 6f1fddae4f5eefb4e1ad36b7c9a1cd664caf2f26 | [
"MIT"
] | null | null | null | src/message.cpp | smallb/ucxxrt | 6f1fddae4f5eefb4e1ad36b7c9a1cd664caf2f26 | [
"MIT"
] | null | null | null | /*
* PROJECT: Universal C++ RunTime (UCXXRT)
* FILE: message.cpp
* DATA: 2022/05/22
*
* PURPOSE: Universal C++ RunTime
*
* LICENSE: Relicensed under The MIT License from The CC BY 4.0 License
*
* DEVELOPER: MiroKaku (miro.kaku AT Outlook.com)
*/
EXTERN_C NTSTATUS NTAPI RtlFindAndFormatMessage... | 29.976959 | 95 | 0.458878 | smallb |
c8b26f9e3717617622e4b11a08f9fd9e74c7c8cb | 1,032 | cpp | C++ | hdu100/problem2019.cpp | xiangflight/algopc | 75824fe085a51f5a7009b42e81feb645135db656 | [
"Apache-2.0"
] | null | null | null | hdu100/problem2019.cpp | xiangflight/algopc | 75824fe085a51f5a7009b42e81feb645135db656 | [
"Apache-2.0"
] | null | null | null | hdu100/problem2019.cpp | xiangflight/algopc | 75824fe085a51f5a7009b42e81feb645135db656 | [
"Apache-2.0"
] | null | null | null | //
// Created by xiang on 2019/9/24.
//
// Description:
// 有n(n<=100)个整数,已经按照从小到大顺序排列好,现在另外给一个整数x,请将该数插入到序列中,并使新的序列仍然有序。
//
// Input:
// 输入数据包含多个测试实例,每组数据由两行组成,第一行是n和m,第二行是已经有序的n个数的数列。n和m同时为0标示输入数据的结束,本行不做处理。
//
// Output:
// 对于每个测试实例,输出插入新的元素后的数列。
//
// Sample:
//
// 3 3
// 1 2 4 -> 1 2 3 4
/... | 18.763636 | 78 | 0.356589 | xiangflight |