hexsha stringlengths 40 40 | size int64 19 11.4M | ext stringclasses 13
values | lang stringclasses 1
value | max_stars_repo_path stringlengths 3 270 | max_stars_repo_name stringlengths 5 110 | max_stars_repo_head_hexsha stringlengths 40 40 | max_stars_repo_licenses listlengths 1 9 | max_stars_count float64 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 3 270 | max_issues_repo_name stringlengths 5 116 | max_issues_repo_head_hexsha stringlengths 40 78 | max_issues_repo_licenses listlengths 1 9 | max_issues_count float64 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 3 270 | max_forks_repo_name stringlengths 5 116 | max_forks_repo_head_hexsha stringlengths 40 78 | max_forks_repo_licenses listlengths 1 9 | max_forks_count float64 1 105k ⌀ | max_forks_repo_forks_event_min_datetime stringlengths 24 24 ⌀ | max_forks_repo_forks_event_max_datetime stringlengths 24 24 ⌀ | content stringlengths 19 11.4M | avg_line_length float64 1.93 229k | max_line_length int64 12 688k | alphanum_fraction float64 0.07 0.99 | matches listlengths 1 10 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
11b06694631310e5f28fc22cb23f2b01d3afee7f | 621 | cpp | C++ | 22_Algorithms/SoftUni_Algorithms/01_Recursion/CPP_RecursionLab/01_RecursiveArraySum/01_RecursiveArraySum.cpp | Knightwalker/Knowledgebase | 00c6dea5e52c0d2b0fe0dc3b7b5c298d445f0161 | [
"MIT"
] | null | null | null | 22_Algorithms/SoftUni_Algorithms/01_Recursion/CPP_RecursionLab/01_RecursiveArraySum/01_RecursiveArraySum.cpp | Knightwalker/Knowledgebase | 00c6dea5e52c0d2b0fe0dc3b7b5c298d445f0161 | [
"MIT"
] | null | null | null | 22_Algorithms/SoftUni_Algorithms/01_Recursion/CPP_RecursionLab/01_RecursiveArraySum/01_RecursiveArraySum.cpp | Knightwalker/Knowledgebase | 00c6dea5e52c0d2b0fe0dc3b7b5c298d445f0161 | [
"MIT"
] | null | null | null | #include <iostream>
#include <sstream>
#include <string>
#include <vector>
using std::cin;
using std::cout;
using std::endl;
using std::string;
using std::vector;
using std::istringstream;
static int Sum(vector<int> & vect, int index);
int main()
{
string input = ""; getline(cin, input);
istringstream ss(input);
... | 16.342105 | 47 | 0.658615 | [
"vector"
] |
11b5db34705cc4aaf73507898db68d47c08e7013 | 9,144 | cpp | C++ | video/ScreamCongestionController.cpp | UnigramDev/libtgvoip | e44c281d03b17a59fb4999f172be9a2814ba964f | [
"Unlicense"
] | 3 | 2019-09-05T09:42:24.000Z | 2022-02-22T18:46:00.000Z | video/ScreamCongestionController.cpp | UnigramDev/libtgvoip | e44c281d03b17a59fb4999f172be9a2814ba964f | [
"Unlicense"
] | null | null | null | video/ScreamCongestionController.cpp | UnigramDev/libtgvoip | e44c281d03b17a59fb4999f172be9a2814ba964f | [
"Unlicense"
] | 1 | 2019-03-04T21:02:42.000Z | 2019-03-04T21:02:42.000Z | //
// Created by Grishka on 25/02/2019.
//
#include <algorithm>
#include <math.h>
#include "ScreamCongestionController.h"
#include "../logging.h"
#include "../VoIPController.h"
using namespace tgvoip;
using namespace tgvoip::video;
namespace{
/*static*/ constexpr float QDELAY_TARGET_LO=0.1f; // seconds
/*static*/ ... | 32.892086 | 133 | 0.757218 | [
"vector"
] |
11b6194b34ef388a15ae674cac437f50d7ee0ea0 | 2,103 | cpp | C++ | Phoenix3D/PX2Graphics/PX2VertexShader.cpp | PheonixFoundation/Phoenix3D | bfb2e3757bf61ac461aeeda9216bf8c8fdf76d99 | [
"BSL-1.0"
] | 36 | 2016-04-24T01:40:38.000Z | 2022-01-18T07:32:26.000Z | Phoenix3D/PX2Graphics/PX2VertexShader.cpp | PheonixFoundation/Phoenix3D | bfb2e3757bf61ac461aeeda9216bf8c8fdf76d99 | [
"BSL-1.0"
] | null | null | null | Phoenix3D/PX2Graphics/PX2VertexShader.cpp | PheonixFoundation/Phoenix3D | bfb2e3757bf61ac461aeeda9216bf8c8fdf76d99 | [
"BSL-1.0"
] | 16 | 2016-06-13T08:43:51.000Z | 2020-09-15T13:25:58.000Z | // PX2VertexShader.cpp
#include "PX2VertexShader.hpp"
#include "PX2Renderer.hpp"
using namespace PX2;
PX2_IMPLEMENT_RTTI(PX2, Shader, VertexShader);
PX2_IMPLEMENT_STREAM(VertexShader);
PX2_IMPLEMENT_FACTORY(VertexShader);
PX2_IMPLEMENT_DEFAULT_NAMES(Shader, VertexShader);
PX2_IMPLEMENT_DEFAULT_STREAM(Shader, VertexSh... | 33.380952 | 78 | 0.515454 | [
"vector"
] |
11c091fe5ec3f46b71af192bed7bf5374ae719fb | 20,460 | cc | C++ | lib/Support/OslScop.cc | hanchenye/polymer | 38e0230473756fbcbc5c4306f65ecd06901b3096 | [
"MIT"
] | null | null | null | lib/Support/OslScop.cc | hanchenye/polymer | 38e0230473756fbcbc5c4306f65ecd06901b3096 | [
"MIT"
] | null | null | null | lib/Support/OslScop.cc | hanchenye/polymer | 38e0230473756fbcbc5c4306f65ecd06901b3096 | [
"MIT"
] | null | null | null | //===- OslScop.cc -----------------------------------------------*- C++ -*-===//
//
// This file implements the C++ wrapper for the Scop struct in OpenScop.
//
//===----------------------------------------------------------------------===//
#include "polymer/Support/OslScop.h"
#include "polymer/Support/ScatteringUtils... | 33 | 80 | 0.650782 | [
"object",
"vector"
] |
11c97666042b1c0938d2c2f0e3833d07ed15201c | 29,449 | cpp | C++ | src/backends/backendsCommon/test/layerTests/L2NormalizationTestImpl.cpp | sahilbandar/armnn | 249950645b7bc0593582182097c7e2f1d6d97442 | [
"MIT"
] | 856 | 2018-03-09T17:26:23.000Z | 2022-03-24T21:31:33.000Z | src/backends/backendsCommon/test/layerTests/L2NormalizationTestImpl.cpp | sahilbandar/armnn | 249950645b7bc0593582182097c7e2f1d6d97442 | [
"MIT"
] | 623 | 2018-03-13T04:40:42.000Z | 2022-03-31T09:45:17.000Z | src/backends/backendsCommon/test/layerTests/L2NormalizationTestImpl.cpp | sahilbandar/armnn | 249950645b7bc0593582182097c7e2f1d6d97442 | [
"MIT"
] | 284 | 2018-03-09T23:05:28.000Z | 2022-03-29T14:42:28.000Z | //
// Copyright © 2017 Arm Ltd and Contributors. All rights reserved.
// SPDX-License-Identifier: MIT
//
#include "L2NormalizationTestImpl.hpp"
#include <QuantizeHelper.hpp>
#include <ResolveType.hpp>
#include <armnnUtils/TensorUtils.hpp>
#include <armnnUtils/Permute.hpp>
#include <backendsCommon/test/TensorCopyUti... | 34.163573 | 114 | 0.618934 | [
"vector"
] |
11cdae7dfb2c5f491e6a08580f8432f5fdc3752c | 8,317 | cpp | C++ | Graphics/GraphicsEngine/src/BottomLevelASBase.cpp | Nuclearfossil/DiligentCore | d2ac85cc32d470fc46b9e27f83175e9cc87b2e50 | [
"Apache-2.0"
] | null | null | null | Graphics/GraphicsEngine/src/BottomLevelASBase.cpp | Nuclearfossil/DiligentCore | d2ac85cc32d470fc46b9e27f83175e9cc87b2e50 | [
"Apache-2.0"
] | null | null | null | Graphics/GraphicsEngine/src/BottomLevelASBase.cpp | Nuclearfossil/DiligentCore | d2ac85cc32d470fc46b9e27f83175e9cc87b2e50 | [
"Apache-2.0"
] | null | null | null | /*
* Copyright 2019-2020 Diligent Graphics LLC
* Copyright 2015-2019 Egor Yusov
*
* 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/LICENS... | 43.544503 | 163 | 0.623061 | [
"geometry"
] |
11ced18b8d8b4fd97d540ae9d1e41291330acfe2 | 6,100 | cc | C++ | src/envoy/transcoding/filter.cc | PiotrSikora/proxy | 36ac1b134dc833ab38ba7024d43e21767286227c | [
"Apache-2.0"
] | null | null | null | src/envoy/transcoding/filter.cc | PiotrSikora/proxy | 36ac1b134dc833ab38ba7024d43e21767286227c | [
"Apache-2.0"
] | null | null | null | src/envoy/transcoding/filter.cc | PiotrSikora/proxy | 36ac1b134dc833ab38ba7024d43e21767286227c | [
"Apache-2.0"
] | null | null | null | /* Copyright 2017 Istio 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 applicab... | 30.049261 | 80 | 0.686885 | [
"object"
] |
11cefa7e7eb49df6bf8493f4bd3baa4a11891c1d | 2,033 | cpp | C++ | scenes/TestScene.cpp | aciokler/opengl-model-viewer-test | 002009bf11bae4111d9fac6df241b29136000fda | [
"MIT"
] | null | null | null | scenes/TestScene.cpp | aciokler/opengl-model-viewer-test | 002009bf11bae4111d9fac6df241b29136000fda | [
"MIT"
] | null | null | null | scenes/TestScene.cpp | aciokler/opengl-model-viewer-test | 002009bf11bae4111d9fac6df241b29136000fda | [
"MIT"
] | null | null | null | //
// TestScene.cpp
// OpenGLOtherTest
//
// Created by Abraham-mac on 7/1/14.
// Copyright (c) 2014 Abraham-mac. All rights reserved.
//
#include "TestScene.h"
#include "../shapes/Cube.h"
#include "../shapes/Mesh.h"
#include "../shapes/ObjMeshExperiment.h"
#include "../shapes/TestMesh.h"
#include <unistd.h>
void... | 50.825 | 594 | 0.665027 | [
"mesh",
"shape"
] |
11d3c7cfe27e0fc9e21fcef6c8ad35adba3e2cf3 | 5,551 | hpp | C++ | Axis/System/Include/Axis/Event.hpp | SimmyPeet/Axis | a58c073d13f74d0224fbfca34a4dcd4b9d0c6726 | [
"Apache-2.0"
] | 1 | 2022-01-23T14:51:51.000Z | 2022-01-23T14:51:51.000Z | Axis/System/Include/Axis/Event.hpp | SimmyPeet/Axis | a58c073d13f74d0224fbfca34a4dcd4b9d0c6726 | [
"Apache-2.0"
] | null | null | null | Axis/System/Include/Axis/Event.hpp | SimmyPeet/Axis | a58c073d13f74d0224fbfca34a4dcd4b9d0c6726 | [
"Apache-2.0"
] | 1 | 2022-01-10T21:01:54.000Z | 2022-01-10T21:01:54.000Z | /// \copyright Simmypeet - Copyright (C)
/// This file is subject to the terms and conditions defined in
/// file 'LICENSE', which is part of this source code package.
#ifndef AXIS_SYSTEM_EVENT_HPP
#define AXIS_SYSTEM_EVENT_HPP
#pragma once
#include "Function.hpp"
#include "HashMap.hpp"
#include... | 33.439759 | 100 | 0.622951 | [
"object"
] |
11d6ffb26c681a153826df9ba392a0dae7277c04 | 13,282 | cpp | C++ | src/python/py_GDMR.cpp | jonaschn/tomotopy | e37878ac3531a13e29317912298bf4b5f457521b | [
"MIT"
] | 393 | 2019-05-11T16:43:30.000Z | 2022-03-29T12:54:28.000Z | src/python/py_GDMR.cpp | jonaschn/tomotopy | e37878ac3531a13e29317912298bf4b5f457521b | [
"MIT"
] | 122 | 2019-05-22T07:08:31.000Z | 2022-03-21T11:58:01.000Z | src/python/py_GDMR.cpp | jonaschn/tomotopy | e37878ac3531a13e29317912298bf4b5f457521b | [
"MIT"
] | 49 | 2019-06-05T09:04:30.000Z | 2022-03-30T18:04:20.000Z | #include "../TopicModel/GDMR.h"
#include "module.h"
#include "utils.h"
using namespace std;
tomoto::RawDoc::MiscType GDMR_misc_args(TopicModelObject* self, const tomoto::RawDoc::MiscType& o)
{
tomoto::RawDoc::MiscType ret;
ret["metadata"] = getValueFromMiscDefault<string>("metadata", o,
"Since version 0.11.0, `... | 39.295858 | 156 | 0.641168 | [
"vector",
"transform"
] |
11d8d49d0eedcfe080651c7e8efb4128185d00ed | 8,739 | cc | C++ | madc_lib/map_combine_functions.cc | amir-keramatian/MAD-C | 3bd67eb314309f2efe67435cc59df0d80ca080a5 | [
"CC0-1.0"
] | null | null | null | madc_lib/map_combine_functions.cc | amir-keramatian/MAD-C | 3bd67eb314309f2efe67435cc59df0d80ca080a5 | [
"CC0-1.0"
] | null | null | null | madc_lib/map_combine_functions.cc | amir-keramatian/MAD-C | 3bd67eb314309f2efe67435cc59df0d80ca080a5 | [
"CC0-1.0"
] | null | null | null | void envMap::combineV3(envMap& otherMap){
std::vector<Stone*> thisMapObjectRepresentatives = getObjectRepresentatives();
std::vector<Stone*>::iterator currentMapObjRepIter = thisMapObjectRepresentatives.begin();
while(currentMapObjRepIter != thisMapObjectRepresentatives.end()){
std::vector<Stone*> thatMa... | 33.741313 | 141 | 0.713011 | [
"object",
"vector"
] |
11e4a93783cacfaf661604e9b3f1d426866a38d3 | 3,465 | cpp | C++ | Players/Cocos2d-x_v4/EffekseerRendererLLGI/EffekseerRendererLLGI.ModelLoader.cpp | darreney/EffekseerForCocos2d-x | de9222b28f6f376cfb96f98b7b4dd783a3d66055 | [
"MIT"
] | null | null | null | Players/Cocos2d-x_v4/EffekseerRendererLLGI/EffekseerRendererLLGI.ModelLoader.cpp | darreney/EffekseerForCocos2d-x | de9222b28f6f376cfb96f98b7b4dd783a3d66055 | [
"MIT"
] | null | null | null | Players/Cocos2d-x_v4/EffekseerRendererLLGI/EffekseerRendererLLGI.ModelLoader.cpp | darreney/EffekseerForCocos2d-x | de9222b28f6f376cfb96f98b7b4dd783a3d66055 | [
"MIT"
] | null | null | null |
#include "EffekseerRendererLLGI.ModelLoader.h"
#include "EffekseerRendererLLGI.Renderer.h"
#include <memory>
namespace EffekseerRendererLLGI
{
ModelLoader::ModelLoader(GraphicsDevice* graphicsDevice, ::Effekseer::FileInterface* fileInterface)
: graphicsDevice_(graphicsDevice), m_fileInterface(fileInterface)
{
LLG... | 29.615385 | 108 | 0.672439 | [
"vector",
"model"
] |
eb199f516f44ae9ff6d852a09645b4fee95ebd72 | 61,719 | cpp | C++ | src/Solver.cpp | meelgroup/KCBox | b2e66952f39d5777f7826dce154cfc703fde29c3 | [
"MIT"
] | 3 | 2021-02-20T11:12:52.000Z | 2021-02-21T22:22:34.000Z | src/Solver.cpp | meelgroup/KCBox | b2e66952f39d5777f7826dce154cfc703fde29c3 | [
"MIT"
] | 1 | 2021-02-20T11:33:35.000Z | 2021-02-25T06:03:57.000Z | src/Solver.cpp | meelgroup/KCBox | b2e66952f39d5777f7826dce154cfc703fde29c3 | [
"MIT"
] | null | null | null | #include "Solver.h"
#include <sys/sysinfo.h>
namespace KCBox {
const Reason Reason::mismatched( UNSIGNED_UNDEF - 1, 1 ); // UNSIGNED_UNDEF - 2
const Reason Reason::unknown( UNSIGNED_UNDEF, 0 ); // UNSIGNED_UNDEF - 1
const Reason Reason::undef( UNSIGNED_UNDEF, 1 ); // UNSIGNED_UNDEF
Solver::Solver():
_old_num_lo... | 34.479888 | 172 | 0.638167 | [
"vector",
"model"
] |
eb1c422a2e08d1b06bad0712e8484935f4d23c86 | 3,834 | cpp | C++ | src/safety_zone/safety_zone.cpp | ctu-mrs/mrs_lib | 1df4282d71c2944904676adbb7289ce45004432a | [
"BSD-3-Clause"
] | 1 | 2022-03-17T17:42:09.000Z | 2022-03-17T17:42:09.000Z | src/safety_zone/safety_zone.cpp | ctu-mrs/mrs_lib | 1df4282d71c2944904676adbb7289ce45004432a | [
"BSD-3-Clause"
] | 11 | 2020-10-20T09:36:36.000Z | 2022-03-08T19:17:26.000Z | src/safety_zone/safety_zone.cpp | ctu-mrs/mrs_lib | 1df4282d71c2944904676adbb7289ce45004432a | [
"BSD-3-Clause"
] | 2 | 2019-04-02T08:47:47.000Z | 2021-08-05T12:54:05.000Z | #include <mrs_lib/safety_zone/safety_zone.h>
#include <mrs_lib/safety_zone/line_operations.h>
namespace mrs_lib
{
/* SafetyZone() //{ */
SafetyZone::SafetyZone(mrs_lib::Polygon border, std::vector<Polygon> innerObstacles, std::vector<PointObstacle> pointObstacles)
: innerObstacles(innerObstacles), pointObstacles(... | 20.073298 | 140 | 0.642149 | [
"vector"
] |
eb1d8c3d99381ea7277371c343ee57e341b2b068 | 1,970 | cpp | C++ | Chapter_3_Problem_Solving_Paradigms/Complete_Search/kattis_natjecanje.cpp | BrandonTang89/CP4_Code | 5114471f439978dd11f6f2cbf6af20ca654593da | [
"MIT"
] | 2 | 2021-12-29T04:12:59.000Z | 2022-03-30T09:32:19.000Z | Chapter_3_Problem_Solving_Paradigms/Complete_Search/kattis_natjecanje.cpp | BrandonTang89/CP4_Code | 5114471f439978dd11f6f2cbf6af20ca654593da | [
"MIT"
] | null | null | null | Chapter_3_Problem_Solving_Paradigms/Complete_Search/kattis_natjecanje.cpp | BrandonTang89/CP4_Code | 5114471f439978dd11f6f2cbf6af20ca654593da | [
"MIT"
] | 1 | 2022-03-01T06:12:46.000Z | 2022-03-01T06:12:46.000Z | /**Kattis - natjecaje
* Somewhat tedious backtracking problem. But not too hard to AC if you are careful.
*
* Time: O(2^n), Space: O(n)
*/
#pragma GCC optimize("Ofast")
#pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,avx2,fma")
#pragma GCC optimize("unroll-loops")
#include <bits/stdc++.h>
using n... | 22.643678 | 90 | 0.404569 | [
"vector"
] |
eb1ec40e4688747c411a45624f8f4af3ebfcfe21 | 9,935 | cpp | C++ | contrib/modules/text/src/ocr_tesseract.cpp | jekhor/opencv | 10dbe4619448461fd12762a815e8f5a226403bb3 | [
"BSD-3-Clause"
] | 1 | 2016-05-23T09:41:26.000Z | 2016-05-23T09:41:26.000Z | opencv_contrib-3.4.1/modules/text/src/ocr_tesseract.cpp | luoyongheng/opencv_add_contrib | 99fc5c28f5e39ebb1a2b76c592ef72d598c429cb | [
"BSD-3-Clause"
] | null | null | null | opencv_contrib-3.4.1/modules/text/src/ocr_tesseract.cpp | luoyongheng/opencv_add_contrib | 99fc5c28f5e39ebb1a2b76c592ef72d598c429cb | [
"BSD-3-Clause"
] | 3 | 2018-02-26T06:43:33.000Z | 2021-03-18T09:13:30.000Z | /*M///////////////////////////////////////////////////////////////////////////////////////
//
// IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
//
// By downloading, copying, installing or using the software you agree to this license.
// If you do not agree to this license, do not download, instal... | 35.73741 | 122 | 0.624459 | [
"vector"
] |
eb221c91b55accb801a392e9adf2a4e2681b0006 | 2,074 | cpp | C++ | Leetcode Daily Challenge/August-2021/18. Decode Ways.cpp | Akshad7829/DataStructures-Algorithms | 439822c6a374672d1734e2389d3fce581a35007d | [
"MIT"
] | 1 | 2022-01-23T15:41:37.000Z | 2022-01-23T15:41:37.000Z | Leetcode Daily Challenge/August-2021/18. Decode Ways.cpp | Akshad7829/DataStructures-Algorithms | 439822c6a374672d1734e2389d3fce581a35007d | [
"MIT"
] | 2 | 2022-02-25T13:36:46.000Z | 2022-02-25T14:06:44.000Z | Leetcode Daily Challenge/August-2021/18. Decode Ways.cpp | Akshad7829/DataStructures-Algorithms | 439822c6a374672d1734e2389d3fce581a35007d | [
"MIT"
] | 1 | 2021-10-08T10:07:41.000Z | 2021-10-08T10:07:41.000Z | /*
Decode Ways
===========
A message containing letters from A-Z can be encoded into numbers using the following mapping:
'A' -> "1"
'B' -> "2"
...
'Z' -> "26"
To decode an encoded message, all the digits must be grouped then mapped back into letters using the reverse of the mapping above (there may be multiple ways)... | 25.604938 | 200 | 0.584378 | [
"vector"
] |
eb26c1a57639f0b01537501abdb38e6eeabbba3e | 7,326 | cpp | C++ | hub/src/DlgGenerateSshKey.cpp | satarovaAziza/control-center | ad8fd5a2b2f53836e827cfce2d283b802df553be | [
"Apache-2.0"
] | null | null | null | hub/src/DlgGenerateSshKey.cpp | satarovaAziza/control-center | ad8fd5a2b2f53836e827cfce2d283b802df553be | [
"Apache-2.0"
] | null | null | null | hub/src/DlgGenerateSshKey.cpp | satarovaAziza/control-center | ad8fd5a2b2f53836e827cfce2d283b802df553be | [
"Apache-2.0"
] | null | null | null | #include <QMessageBox>
#include <QApplication>
#include <QDir>
#include <QFile>
#include <RestWorker.h>
#include <QFileDialog>
#include <QStandardItem>
#include <QStandardItemModel>
#include <QListView>
#include <QModelIndexList>
#include <QItemSelectionModel>
#include <algorithm>
#include <QtConcurrent/QtConcurrent>
... | 35.911765 | 118 | 0.648376 | [
"vector"
] |
eb290c7b29446800d8b63dba110832be9d063372 | 2,112 | cpp | C++ | src/ruby_object_backend.cpp | robfors/esruby-bind | f0809292ac577852703569b7ab0275340f66df90 | [
"MIT"
] | 1 | 2020-12-26T13:58:15.000Z | 2020-12-26T13:58:15.000Z | src/ruby_object_backend.cpp | robfors/esruby-bind | f0809292ac577852703569b7ab0275340f66df90 | [
"MIT"
] | null | null | null | src/ruby_object_backend.cpp | robfors/esruby-bind | f0809292ac577852703569b7ab0275340f66df90 | [
"MIT"
] | null | null | null | #include "ruby_object_backend.hpp"
namespace ESRubyBind
{
RubyObjectBackend::RubyObjectBackend(mrb_state* mrb, mrb_value ruby_object)
: _mrb(mrb), _ruby_self(ruby_object)
{
mrb_gc_register(_mrb, _ruby_self);
}
RubyObjectBackend::~RubyObjectBackend()
{
mrb_gc_unregister(_mrb, _ruby_self);
... | 25.142857 | 119 | 0.65625 | [
"vector"
] |
eb344ba977862c62c2f6f6378fbb9821307babcb | 12,714 | cpp | C++ | game/graphics/opengl_renderer/loader/Loader.cpp | Hat-Kid/jak-project | 0e2320ca9584118316313e41e646b179a1083feb | [
"ISC"
] | null | null | null | game/graphics/opengl_renderer/loader/Loader.cpp | Hat-Kid/jak-project | 0e2320ca9584118316313e41e646b179a1083feb | [
"ISC"
] | null | null | null | game/graphics/opengl_renderer/loader/Loader.cpp | Hat-Kid/jak-project | 0e2320ca9584118316313e41e646b179a1083feb | [
"ISC"
] | null | null | null | #include "Loader.h"
#include "common/util/Timer.h"
#include "common/util/FileUtil.h"
#include "common/util/compress.h"
#include "game/graphics/opengl_renderer/loader/LoaderStages.h"
namespace {
std::string uppercase_string(const std::string& s) {
std::string result;
for (auto c : s) {
result.push_back(toupper(... | 31.009756 | 99 | 0.622149 | [
"vector",
"model"
] |
eb358f7389514cdcd47491616b16f5031c6dda42 | 13,996 | cpp | C++ | src/libvoxelbot/combat/combat_environment.cpp | eladyaniv01/MicroMachine | dbf8d09f7c3400ed4f2e1b4b2c6c0405928d5807 | [
"MIT"
] | 1 | 2020-06-15T19:41:45.000Z | 2020-06-15T19:41:45.000Z | src/libvoxelbot/combat/combat_environment.cpp | eladyaniv01/MicroMachine | dbf8d09f7c3400ed4f2e1b4b2c6c0405928d5807 | [
"MIT"
] | null | null | null | src/libvoxelbot/combat/combat_environment.cpp | eladyaniv01/MicroMachine | dbf8d09f7c3400ed4f2e1b4b2c6c0405928d5807 | [
"MIT"
] | null | null | null | #include "combat_environment.h"
#include "simulator.h"
#include "../utilities/predicates.h"
#include <iostream>
using namespace std;
using namespace sc2;
int getDamageBonus(UNIT_TYPEID unit, const CombatUpgrades& upgrades) {
if (isStructure(unit)) return 0;
int bonus = 0;
switch(getUnitData(unit).race) {... | 47.767918 | 174 | 0.664118 | [
"vector"
] |
eb3a2f50a5f980bc360f40317c214b1e5cb2a52c | 304 | cpp | C++ | Hard/164_Maximum_Gap.cpp | ShehabMMohamed/LeetCodeCPP | 684340f29ac15c5e8fa9f6ef5c3f99d4c95ce780 | [
"MIT"
] | 1 | 2021-03-15T10:02:10.000Z | 2021-03-15T10:02:10.000Z | Hard/164_Maximum_Gap.cpp | ShehabMMohamed/LeetCodeCPP | 684340f29ac15c5e8fa9f6ef5c3f99d4c95ce780 | [
"MIT"
] | null | null | null | Hard/164_Maximum_Gap.cpp | ShehabMMohamed/LeetCodeCPP | 684340f29ac15c5e8fa9f6ef5c3f99d4c95ce780 | [
"MIT"
] | null | null | null | class Solution {
public:
int maximumGap(vector<int>& nums) {
if(nums.size() < 2) return 0;
sort(nums.begin(), nums.end());
int max_gap = 0;
for(int i = 0; i < nums.size()-1; i++)
max_gap = max(max_gap, nums[i+1] - nums[i]);
return max_gap;
}
}; | 27.636364 | 56 | 0.506579 | [
"vector"
] |
eb3ad213ef460de96b6be69d0c5699336d3f376c | 4,754 | cc | C++ | release/src-rt-6.x.4708/router/transmission/qt/FilterBarComboBoxDelegate.cc | afeng11/tomato-arm | 1ca18a88480b34fd495e683d849f46c2d47bb572 | [
"FSFAP"
] | 278 | 2015-11-03T03:01:20.000Z | 2022-01-20T18:21:05.000Z | release/src-rt-6.x.4708/router/transmission/qt/FilterBarComboBoxDelegate.cc | afeng11/tomato-arm | 1ca18a88480b34fd495e683d849f46c2d47bb572 | [
"FSFAP"
] | 374 | 2015-11-03T12:37:22.000Z | 2021-12-17T14:18:08.000Z | release/src-rt-6.x.4708/router/transmission/qt/FilterBarComboBoxDelegate.cc | afeng11/tomato-arm | 1ca18a88480b34fd495e683d849f46c2d47bb572 | [
"FSFAP"
] | 96 | 2015-11-22T07:47:26.000Z | 2022-01-20T19:52:19.000Z | /*
* This file Copyright (C) 2012-2015 Mnemosyne LLC
*
* It may be used under the GNU GPL versions 2 or 3
* or any future license endorsed by Mnemosyne LLC.
*
* $Id: FilterBarComboBoxDelegate.cc 14537 2015-06-10 21:27:11Z mikedld $
*/
#include <QAbstractItemView>
#include <QComboBox>
#include <QStandardItemMode... | 38.967213 | 131 | 0.655027 | [
"model"
] |
eb3cd188e14ad61b1c3b62d7d2cac0d60b389e39 | 2,539 | cpp | C++ | main.cpp | markg85/cansole_calendar | 1578c4b6d12996f1d407ce096684e74f3988e9c1 | [
"BSD-3-Clause"
] | null | null | null | main.cpp | markg85/cansole_calendar | 1578c4b6d12996f1d407ce096684e74f3988e9c1 | [
"BSD-3-Clause"
] | null | null | null | main.cpp | markg85/cansole_calendar | 1578c4b6d12996f1d407ce096684e74f3988e9c1 | [
"BSD-3-Clause"
] | null | null | null | #include <iostream>
#include <iomanip>
#include <vector>
#include <numeric>
#include <ctime>
#include <algorithm>
#include <range.hpp>
#include <chunked.hpp>
#include <zip.hpp>
#include <accumulate.hpp>
const int weekStartsAt = 1;
const int firstDayOfYear = 6; // In which index position is the first day of the year. F... | 27.597826 | 133 | 0.615597 | [
"vector"
] |
eb437099776b87390b763a308b52ff20f215ab67 | 1,383 | cpp | C++ | tutorial/client.cpp | axell-corp/TFHEpp-1 | 6e489396575d2d6cf830af5b1153e8ab3d22f9c6 | [
"Apache-2.0"
] | 33 | 2020-01-29T08:43:37.000Z | 2022-03-29T03:06:12.000Z | tutorial/client.cpp | axell-corp/TFHEpp-1 | 6e489396575d2d6cf830af5b1153e8ab3d22f9c6 | [
"Apache-2.0"
] | 6 | 2020-01-17T12:40:40.000Z | 2022-03-24T12:47:23.000Z | tutorial/client.cpp | axell-corp/TFHEpp-1 | 6e489396575d2d6cf830af5b1153e8ab3d22f9c6 | [
"Apache-2.0"
] | 12 | 2020-05-10T19:10:43.000Z | 2022-01-10T05:12:33.000Z | #include <cereal/archives/portable_binary.hpp>
#include <cereal/types/vector.hpp>
#include <fstream>
#include <memory>
#include <random>
#include <tfhe++.hpp>
#include <vector>
int main()
{
// generate a random key
std::unique_ptr<TFHEpp::SecretKey> sk =
std::make_unique<TFHEpp::SecretKey>();
std::... | 28.8125 | 76 | 0.62039 | [
"vector"
] |
eb4be6beec5ce11987146adf7ef313bf9ae11a21 | 3,127 | cpp | C++ | aiEngine/src/path/navmesh/polytope/services/PlaneSurfaceSplitService.cpp | petitg1987/UrchinEngine | 32d4b62b1ab7e2aa781c99de11331e3738078b0c | [
"MIT"
] | 24 | 2015-10-05T00:13:57.000Z | 2020-05-06T20:14:06.000Z | aiEngine/src/path/navmesh/polytope/services/PlaneSurfaceSplitService.cpp | petitg1987/UrchinEngine | 32d4b62b1ab7e2aa781c99de11331e3738078b0c | [
"MIT"
] | 1 | 2019-11-01T08:00:55.000Z | 2019-11-01T08:00:55.000Z | aiEngine/src/path/navmesh/polytope/services/PlaneSurfaceSplitService.cpp | petitg1987/UrchinEngine | 32d4b62b1ab7e2aa781c99de11331e3738078b0c | [
"MIT"
] | 10 | 2015-11-25T07:33:13.000Z | 2020-03-02T08:21:10.000Z | #include <path/navmesh/polytope/services/PlaneSurfaceSplitService.h>
namespace urchin {
PlaneSurfaceSplitService::PlaneSurfaceSplitService(float surfaceMaxSize) :
surfaceMaxSize(surfaceMaxSize) {
}
std::vector<PlaneSurfaceSplit> PlaneSurfaceSplitService::splitRectangleSurface(const std::vecto... | 56.854545 | 159 | 0.667093 | [
"vector"
] |
eb4cf58aa24c02ff9c6679729ce34d5fd9ceecc2 | 5,927 | cc | C++ | src/gameManager.cc | lysyjakk/neuralchess | d1e7b73580784026a4087b11d6939870dcf0f4e4 | [
"MIT"
] | null | null | null | src/gameManager.cc | lysyjakk/neuralchess | d1e7b73580784026a4087b11d6939870dcf0f4e4 | [
"MIT"
] | null | null | null | src/gameManager.cc | lysyjakk/neuralchess | d1e7b73580784026a4087b11d6939870dcf0f4e4 | [
"MIT"
] | null | null | null | #include "../inc/gameManager.hh"
#define COORD_TO_BIT_POS(x , y) (x * 8 + y)
void GameManager::start_new_game()
{
TRACE_INFO("Initialization new game...");
TRACE_INFO("Initialization bitboards...");
m_black_board.king = Bitboard(0x1000000000000000ULL);
m_black_board.queens = Bitboard(0x0800000000000000UL... | 26.819005 | 79 | 0.586469 | [
"vector"
] |
eb4dfa4e1b41a9fda79d905b2796139f98a65196 | 39,935 | cpp | C++ | src/util/arg_main.cpp | maximeseguin/micmac | 34925011ecb3c63d65eaa7db1741430f71363f1d | [
"CECILL-B"
] | 451 | 2016-11-25T09:40:28.000Z | 2022-03-30T04:20:42.000Z | src/util/arg_main.cpp | maximeseguin/micmac | 34925011ecb3c63d65eaa7db1741430f71363f1d | [
"CECILL-B"
] | 143 | 2016-11-25T20:35:57.000Z | 2022-03-01T11:58:02.000Z | src/util/arg_main.cpp | maximeseguin/micmac | 34925011ecb3c63d65eaa7db1741430f71363f1d | [
"CECILL-B"
] | 139 | 2016-12-02T10:26:21.000Z | 2022-03-10T19:40:29.000Z | /*Header-MicMac-eLiSe-25/06/2007
MicMac : Multi Image Correspondances par Methodes Automatiques de Correlation
eLiSe : ELements of an Image Software Environnement
www.micmac.ign.fr
Copyright : Institut Geographique National
Author : Marc Pierrot Deseilligny
Contributors : Gregoire Maillet, Didier Boldo.
[1] M. Pi... | 24.835199 | 147 | 0.560937 | [
"vector"
] |
eb50e79d97805a93bd5904757f4259b68a3538bf | 9,035 | cpp | C++ | src/backend/cpu/copy.cpp | JuliaComputing/arrayfire | 93427f09ff928f97df29c0e358c3fcf6b478bec6 | [
"BSD-3-Clause"
] | 1 | 2018-06-14T23:49:18.000Z | 2018-06-14T23:49:18.000Z | src/backend/cpu/copy.cpp | JuliaComputing/arrayfire | 93427f09ff928f97df29c0e358c3fcf6b478bec6 | [
"BSD-3-Clause"
] | 1 | 2015-07-02T15:53:02.000Z | 2015-07-02T15:53:02.000Z | src/backend/cpu/copy.cpp | JuliaComputing/arrayfire | 93427f09ff928f97df29c0e358c3fcf6b478bec6 | [
"BSD-3-Clause"
] | 1 | 2018-02-26T17:11:03.000Z | 2018-02-26T17:11:03.000Z | /*******************************************************
* Copyright (c) 2014, ArrayFire
* All rights reserved.
*
* This file is distributed under 3-clause BSD license.
* The complete license agreement can be obtained at:
* http://arrayfire.com/licenses/BSD-3-Clause
**********************************************... | 42.617925 | 139 | 0.607084 | [
"vector"
] |
eb56dad571ea16b165ed75091c0f37dbdfe082eb | 33,103 | cpp | C++ | shell/ext/webcheck/postagnt.cpp | npocmaka/Windows-Server-2003 | 5c6fe3db626b63a384230a1aa6b92ac416b0765f | [
"Unlicense"
] | 17 | 2020-11-13T13:42:52.000Z | 2021-09-16T09:13:13.000Z | shell/ext/webcheck/postagnt.cpp | sancho1952007/Windows-Server-2003 | 5c6fe3db626b63a384230a1aa6b92ac416b0765f | [
"Unlicense"
] | 2 | 2020-10-19T08:02:06.000Z | 2020-10-19T08:23:18.000Z | shell/ext/webcheck/postagnt.cpp | sancho1952007/Windows-Server-2003 | 5c6fe3db626b63a384230a1aa6b92ac416b0765f | [
"Unlicense"
] | 14 | 2020-11-14T09:43:20.000Z | 2021-08-28T08:59:57.000Z | //
// Pei-Hwa Lin (peiwhal), Feb 3, 1997
//
#include "private.h"
#include "downld.h"
#include "urlmon.h"
#undef TF_THISMODULE
#define TF_THISMODULE TF_POSTAGENT
// Advanced inetcpl setting to disable channel logging
const TCHAR c_szNoChannelLogging[] = TEXT("NoChannelLogging");
const char c_szHeade... | 29.768885 | 122 | 0.515633 | [
"object"
] |
eb574ae4ae83281a4857d11fe134824cd42c9fa9 | 5,740 | cpp | C++ | Android/00-Code/NDK/BionicAPI/app/src/main/cpp/local-server.cpp | hiloWang/notes | 64a637a86f734e4e80975f4aa93ab47e8d7e8b64 | [
"Apache-2.0"
] | 2 | 2020-10-08T13:22:08.000Z | 2021-07-28T14:45:41.000Z | Android/NDK/BionicAPI/app/src/main/cpp/local-server.cpp | flyfire/Programming-Notes-Code | 4b1bdd74c1ba0c007c504834e4508ec39f01cd94 | [
"Apache-2.0"
] | null | null | null | Android/NDK/BionicAPI/app/src/main/cpp/local-server.cpp | flyfire/Programming-Notes-Code | 4b1bdd74c1ba0c007c504834e4508ec39f01cd94 | [
"Apache-2.0"
] | 6 | 2020-08-20T07:19:17.000Z | 2022-03-02T08:16:21.000Z | #include "JniBridge.h"
#include "socket-api.h"
#include <jni.h>
#include <stdio.h>
// va_list, vsnprintf
#include <stdarg.h>
// errno
#include <errno.h>
// strerror_r, memset
#include <string.h>
// socket, bind, getsockname, listen, accept, recv, send, connect
#include <sys/types.h>
#include <sys/socket.h>
// sockaddr_... | 28 | 96 | 0.611324 | [
"object"
] |
eb5c25b751efb3f86183c00d62ca4c7bac6ae4dd | 4,045 | c++ | C++ | src/extern/inventor/apps/examples/Mentor/CXX/17.1.ColorIndex.c++ | OpenXIP/xip-libraries | 9f0fef66038b20ff0c81c089d7dd0038e3126e40 | [
"Apache-2.0"
] | 2 | 2020-05-21T07:06:07.000Z | 2021-06-28T02:14:34.000Z | src/extern/inventor/apps/examples/Mentor/CXX/17.1.ColorIndex.c++ | OpenXIP/xip-libraries | 9f0fef66038b20ff0c81c089d7dd0038e3126e40 | [
"Apache-2.0"
] | null | null | null | src/extern/inventor/apps/examples/Mentor/CXX/17.1.ColorIndex.c++ | OpenXIP/xip-libraries | 9f0fef66038b20ff0c81c089d7dd0038e3126e40 | [
"Apache-2.0"
] | 6 | 2016-03-21T19:53:18.000Z | 2021-06-08T18:06:03.000Z | /*
*
* Copyright (C) 2000 Silicon Graphics, Inc. All Rights Reserved.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your opti... | 33.429752 | 77 | 0.658591 | [
"model"
] |
eb5efa75036c94d61cf87d8d01fbeabaedf99075 | 1,621 | cpp | C++ | Mockvita2/DigitPairs.cpp | sachanakshat/Competitive_Practice | 63170d87398bf5bd163febecdcfef8db21c632c7 | [
"MIT"
] | null | null | null | Mockvita2/DigitPairs.cpp | sachanakshat/Competitive_Practice | 63170d87398bf5bd163febecdcfef8db21c632c7 | [
"MIT"
] | null | null | null | Mockvita2/DigitPairs.cpp | sachanakshat/Competitive_Practice | 63170d87398bf5bd163febecdcfef8db21c632c7 | [
"MIT"
] | null | null | null | #include <bits/stdc++.h>
#include <algorithm>
#include <iostream>
#include <vector>
#include <chrono>
#include <string>
using namespace std;
using namespace std::chrono;
#include <bits/stdc++.h>
using namespace std;
void show(int arr[], int n)
{
cout<<"\n------------------------"<<endl;
for(int i=0; i<n; i+... | 17.813187 | 54 | 0.436767 | [
"vector"
] |
eb60078ff599694defd0d4e38588dd1c55f07cf0 | 8,614 | cpp | C++ | src/MainFunctions.cpp | adslbarxatov/OpenGLSample | 581a6da9da78c662f8fb403b0f8876170803c2dd | [
"MIT"
] | null | null | null | src/MainFunctions.cpp | adslbarxatov/OpenGLSample | 581a6da9da78c662f8fb403b0f8876170803c2dd | [
"MIT"
] | null | null | null | src/MainFunctions.cpp | adslbarxatov/OpenGLSample | 581a6da9da78c662f8fb403b0f8876170803c2dd | [
"MIT"
] | null | null | null | // Общая библиотека
#include "OpenGLSample.h"
// Указатель на 3D-объект
GLUquadricObj *QObj;
// Пусковая консольная функция
void main (void)
{
// Матрицы материала
GLfloat Mat_AmDf[] = {0.0f, 0.0f, 0.0f, 1.0f}, // Матрица света и диффузии
Mat_Spec[] = {1.0f, 1.0f, 1.0f, 1.0f}, // Матрица зеркальности
Mat_E... | 34.874494 | 104 | 0.640121 | [
"model",
"3d"
] |
eb6212fa18c3479c9aea6a65f4e842fdb2f83d88 | 2,178 | cpp | C++ | src/ufrn_lp1/lab5/src/main.cpp | Mazuh/MISC-Algs | 7fccb3d4eb27a2511bda4b1e408ab96b0cccd5ae | [
"MIT"
] | 3 | 2017-04-25T19:36:22.000Z | 2018-02-08T18:22:44.000Z | src/ufrn_lp1/lab5/src/main.cpp | Mazuh/MISC-Algs | 7fccb3d4eb27a2511bda4b1e408ab96b0cccd5ae | [
"MIT"
] | 1 | 2017-04-26T10:15:26.000Z | 2017-04-26T12:19:11.000Z | src/ufrn_lp1/lab5/src/main.cpp | Mazuh/MISC-Algs | 7fccb3d4eb27a2511bda4b1e408ab96b0cccd5ae | [
"MIT"
] | 1 | 2017-04-25T23:59:48.000Z | 2017-04-25T23:59:48.000Z | #include <iostream>
#include <algorithm>
#include <vector>
#include <list>
#include <set>
#include "questao1.hpp"
#include "questao2.hpp"
#include "questao3.hpp"
using std::cout;
using std::endl;
void test_q1();
void test_q2();
void test_q3();
/**
* @brief Execução principal, rodando os testes das questões.
*/
in... | 22.926316 | 81 | 0.536272 | [
"vector"
] |
eb62d293e3da2020eaffadd369f3c2e9128f81ce | 2,407 | cpp | C++ | kickstart/2021D/D.cpp | s9v/toypuct | 68e65e6da5922af340de72636a9a4f136454c70d | [
"MIT"
] | null | null | null | kickstart/2021D/D.cpp | s9v/toypuct | 68e65e6da5922af340de72636a9a4f136454c70d | [
"MIT"
] | null | null | null | kickstart/2021D/D.cpp | s9v/toypuct | 68e65e6da5922af340de72636a9a4f136454c70d | [
"MIT"
] | null | null | null | #include <iostream>
#include <vector>
using namespace std;
typedef long long i64;
const i64 LARGE = 1000LL * 1000 * 1000 * 1000;
i64 pow[41];
struct FenwickTree {
vector<int> bit;
int n;
FenwickTree(int n) {
this->n = n;
bit.assign(n, 0);
}
FenwickTree(vector<int> a) : FenwickTree(a.size()) {
... | 18.952756 | 55 | 0.452015 | [
"vector"
] |
eb65443e36beda111c2c2dfc3d4125692640f753 | 8,850 | hh | C++ | src/common/Mesh.hh | nherment/gazebo | fff0aa30b4b5748e43c2b0aa54ffcd366e9f042a | [
"ECL-2.0",
"Apache-2.0"
] | 5 | 2016-01-17T20:41:39.000Z | 2018-05-01T12:02:58.000Z | src/common/Mesh.hh | nherment/gazebo | fff0aa30b4b5748e43c2b0aa54ffcd366e9f042a | [
"ECL-2.0",
"Apache-2.0"
] | null | null | null | src/common/Mesh.hh | nherment/gazebo | fff0aa30b4b5748e43c2b0aa54ffcd366e9f042a | [
"ECL-2.0",
"Apache-2.0"
] | 5 | 2015-09-29T02:30:16.000Z | 2022-03-30T12:11:22.000Z | /*
* Copyright 2011 Nate Koenig & Andrew Howard
*
* 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 l... | 31.72043 | 78 | 0.649831 | [
"mesh",
"vector",
"3d"
] |
eb669c81bc8de21111f9c579c465571b318cee4c | 6,932 | cc | C++ | web_transport/sdk/impl/web_transport_server_session.cc | seaoverall/owt-sdk-quic | 5c6919e8fcaaa8916942b2e13056fd36044c1767 | [
"Apache-2.0"
] | 37 | 2019-04-26T02:46:53.000Z | 2021-05-18T05:58:16.000Z | web_transport/sdk/impl/web_transport_server_session.cc | seaoverall/owt-sdk-quic | 5c6919e8fcaaa8916942b2e13056fd36044c1767 | [
"Apache-2.0"
] | 5 | 2020-12-01T05:54:00.000Z | 2021-03-24T02:16:39.000Z | web_transport/sdk/impl/web_transport_server_session.cc | seaoverall/owt-sdk-quic | 5c6919e8fcaaa8916942b2e13056fd36044c1767 | [
"Apache-2.0"
] | 24 | 2019-04-28T02:59:39.000Z | 2021-01-29T09:46:48.000Z | /*
* Copyright (C) 2021 Intel Corporation
*
* SPDX-License-Identifier: Apache-2.0
*/
// Copyright (c) 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Most classes in this file and its implementations are bor... | 36.293194 | 88 | 0.731968 | [
"vector"
] |
eb68b3bd024edac5df5e7a3ef561dd6ce4288b94 | 1,086 | cpp | C++ | lib/huffman-lib/huffman_encryptor.cpp | mikeTerentev/huffman-archiver-cpp | 22ab230f5e4d4e71fc1da22e191ceac5b165a9af | [
"MIT"
] | null | null | null | lib/huffman-lib/huffman_encryptor.cpp | mikeTerentev/huffman-archiver-cpp | 22ab230f5e4d4e71fc1da22e191ceac5b165a9af | [
"MIT"
] | null | null | null | lib/huffman-lib/huffman_encryptor.cpp | mikeTerentev/huffman-archiver-cpp | 22ab230f5e4d4e71fc1da22e191ceac5b165a9af | [
"MIT"
] | null | null | null | //
// Created by Mike Terentyev on 09/05/18.
//
#include "huffman_encryptor.h"
Encryptor::Encryptor(Frequency const &frequency) : HuffmanAlgorithm(frequency) {};
void Encryptor::encode(Input_stream &reader, Output_stream &writer) {
auto const &codes = get_codes();
for (size_t i = 0; i < 256; i++) {
... | 27.846154 | 87 | 0.674033 | [
"vector"
] |
eb6db469194081414785a42b7b9528d37126a388 | 16,417 | cpp | C++ | SFDateTime.cpp | zswdjh/ECE180_Calendrical_Computations | dbc08a4c3be2a2d84be3441f92d4f8737ce9c850 | [
"MIT"
] | null | null | null | SFDateTime.cpp | zswdjh/ECE180_Calendrical_Computations | dbc08a4c3be2a2d84be3441f92d4f8737ce9c850 | [
"MIT"
] | null | null | null | SFDateTime.cpp | zswdjh/ECE180_Calendrical_Computations | dbc08a4c3be2a2d84be3441f92d4f8737ce9c850 | [
"MIT"
] | null | null | null | //
// SFDateTime.cpp
// my_assignment3
//
// Created by Jing Liang on 2/19/18.
// Copyright © 2018 Jing Liang. All rights reserved.
//
#include "SFDateTime.hpp"
#include <string>
#include <iostream>
#include <sstream>
#include <map>
namespace SoftwareFoundations{
SFDateTime::SFDateTime(SFTimezone *aTimezone):S... | 38.902844 | 337 | 0.530669 | [
"object"
] |
eb70fac9d1fab6941b959955ba19a0f62bc8bb15 | 4,934 | cc | C++ | video_engine/vie_remb.cc | aleonliao/webrtc-3.31 | a282cc166883aea82a8149d64e82ca29aa9f27f1 | [
"DOC",
"BSD-3-Clause"
] | null | null | null | video_engine/vie_remb.cc | aleonliao/webrtc-3.31 | a282cc166883aea82a8149d64e82ca29aa9f27f1 | [
"DOC",
"BSD-3-Clause"
] | null | null | null | video_engine/vie_remb.cc | aleonliao/webrtc-3.31 | a282cc166883aea82a8149d64e82ca29aa9f27f1 | [
"DOC",
"BSD-3-Clause"
] | null | null | null | /*
* Copyright (c) 2012 The WebRTC 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 contribut... | 30.269939 | 80 | 0.697608 | [
"vector"
] |
eb780f0d98fcfb1715bbe51dda22add65ad43478 | 50,869 | cpp | C++ | src/OrbitVulkanLayer/DispatchTableTest.cpp | tufeigunchu/orbit | 407354cf7c9159ff7e3177c603a6850b95509e3a | [
"BSD-2-Clause"
] | 1,847 | 2020-03-24T19:01:42.000Z | 2022-03-31T13:18:57.000Z | src/OrbitVulkanLayer/DispatchTableTest.cpp | tufeigunchu/orbit | 407354cf7c9159ff7e3177c603a6850b95509e3a | [
"BSD-2-Clause"
] | 1,100 | 2020-03-24T19:41:13.000Z | 2022-03-31T14:27:09.000Z | src/OrbitVulkanLayer/DispatchTableTest.cpp | tufeigunchu/orbit | 407354cf7c9159ff7e3177c603a6850b95509e3a | [
"BSD-2-Clause"
] | 228 | 2020-03-25T05:32:08.000Z | 2022-03-31T11:27:39.000Z | // Copyright (c) 2020 The Orbit 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 <gtest/gtest.h>
#include "DispatchTable.h"
namespace orbit_vulkan_layer {
// Note the following for all the following tests:
// We cannot cre... | 41.62766 | 100 | 0.729344 | [
"object"
] |
eb80410979b4d8038d84eb47029bde98df9f153c | 5,780 | cc | C++ | chromeos/dbus/ibus/ibus_lookup_table.cc | 1065672644894730302/Chromium | 239dd49e906be4909e293d8991e998c9816eaa35 | [
"BSD-3-Clause"
] | 1 | 2019-04-23T15:57:04.000Z | 2019-04-23T15:57:04.000Z | chromeos/dbus/ibus/ibus_lookup_table.cc | 1065672644894730302/Chromium | 239dd49e906be4909e293d8991e998c9816eaa35 | [
"BSD-3-Clause"
] | null | null | null | chromeos/dbus/ibus/ibus_lookup_table.cc | 1065672644894730302/Chromium | 239dd49e906be4909e293d8991e998c9816eaa35 | [
"BSD-3-Clause"
] | null | null | null | // 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 "chromeos/dbus/ibus/ibus_lookup_table.h"
#include <string>
#include "base/logging.h"
#include "dbus/message.h"
#include "chromeos/dbus/ibus/... | 34.819277 | 80 | 0.675606 | [
"vector"
] |
eb87dea75b0cfd0c2c155ae9eb86469018ee4c7a | 25,135 | cpp | C++ | media_driver/agnostic/Xe_M/Xe_XPM_plus/vp/hal/vphal_render_composite_xe_xpm_plus.cpp | ashakhno/media-driver | 79c20b78a539afdb55b5fd0006e959f92c12fa64 | [
"Intel",
"BSD-3-Clause",
"MIT"
] | null | null | null | media_driver/agnostic/Xe_M/Xe_XPM_plus/vp/hal/vphal_render_composite_xe_xpm_plus.cpp | ashakhno/media-driver | 79c20b78a539afdb55b5fd0006e959f92c12fa64 | [
"Intel",
"BSD-3-Clause",
"MIT"
] | null | null | null | media_driver/agnostic/Xe_M/Xe_XPM_plus/vp/hal/vphal_render_composite_xe_xpm_plus.cpp | ashakhno/media-driver | 79c20b78a539afdb55b5fd0006e959f92c12fa64 | [
"Intel",
"BSD-3-Clause",
"MIT"
] | 1 | 2022-03-14T23:38:11.000Z | 2022-03-14T23:38:11.000Z | /*===================== begin_copyright_notice ==================================
# Copyright (c) 2021, Intel Corporation
# 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... | 37.292285 | 151 | 0.602825 | [
"render"
] |
eb8c67256e863bf609ec663f98569f63bcabfeab | 16,269 | hpp | C++ | include/xtensor-sparse/xsparse_container.hpp | gouarin/xtensor-sparse | 04c4958399d198f5d4e0772b28c8fd986352a850 | [
"BSD-3-Clause"
] | 29 | 2020-04-03T19:54:12.000Z | 2022-03-10T01:41:44.000Z | include/xtensor-sparse/xsparse_container.hpp | gouarin/xtensor-sparse | 04c4958399d198f5d4e0772b28c8fd986352a850 | [
"BSD-3-Clause"
] | 19 | 2020-04-03T13:41:42.000Z | 2021-09-01T18:22:49.000Z | include/xtensor-sparse/xsparse_container.hpp | gouarin/xtensor-sparse | 04c4958399d198f5d4e0772b28c8fd986352a850 | [
"BSD-3-Clause"
] | 5 | 2020-04-03T12:04:19.000Z | 2020-08-10T10:26:44.000Z | #ifndef XSPARSE_XSPARSE_CONTAINER_HPP
#define XSPARSE_XSPARSE_CONTAINER_HPP
#include <xtensor/xaccessible.hpp>
#include <xtensor/xiterable.hpp>
#include <xtensor/xstrides.hpp>
#include "xsparse_assign.hpp"
#include "xsparse_function.hpp"
#include "xsparse_reference.hpp"
#include "xsparse_types.hpp"
namespace xt
{
... | 32.088757 | 122 | 0.628434 | [
"shape"
] |
eb8e665b9ac5501d78e961a913497a53830548c3 | 15,924 | cpp | C++ | src/main/report.cpp | Matasx/mmbot | 4065c029dd17c97307bc3626f5f6afdbe79e7d8f | [
"MIT"
] | null | null | null | src/main/report.cpp | Matasx/mmbot | 4065c029dd17c97307bc3626f5f6afdbe79e7d8f | [
"MIT"
] | null | null | null | src/main/report.cpp | Matasx/mmbot | 4065c029dd17c97307bc3626f5f6afdbe79e7d8f | [
"MIT"
] | null | null | null | /*
* report.cpp
*
* Created on: 17. 5. 2019
* Author: ondra
*/
#include "report.h"
#include <imtjson/value.h>
#include <imtjson/object.h>
#include <imtjson/array.h>
#include <chrono>
#include <numeric>
#include "../shared/linear_map.h"
#include "../shared/logOutput.h"
#include "../shared/range.h"
#include... | 24.200608 | 149 | 0.659131 | [
"object"
] |
eb936107f272afb7984b1fb4e2fa03e96a80d80b | 1,936 | cpp | C++ | src/settings.cpp | mugiseyebrows/mugi-ffmpeg | e7c3a5aeab3ee6ba5d3000f912491e42f32facbd | [
"MIT"
] | 3 | 2019-10-08T13:33:48.000Z | 2020-06-14T01:10:04.000Z | src/settings.cpp | mugiseyebrows/mugi-ffmpeg | e7c3a5aeab3ee6ba5d3000f912491e42f32facbd | [
"MIT"
] | null | null | null | src/settings.cpp | mugiseyebrows/mugi-ffmpeg | e7c3a5aeab3ee6ba5d3000f912491e42f32facbd | [
"MIT"
] | 3 | 2020-06-14T01:10:09.000Z | 2021-12-30T01:36:49.000Z | #include "settings.h"
#include <QStandardPaths>
#include <QDir>
#include <QApplication>
#include <QMessageBox>
#include <QDebug>
#include "jsonhelper.h"
Settings* Settings::mInstance = 0;
Settings* Settings::instance() {
if (!mInstance) {
mInstance = new Settings();
}
return mInstance;
}
Setting... | 20.595745 | 108 | 0.635331 | [
"object"
] |
eb95c22d6963b4bc3b1e835cfffaa26826e1f971 | 7,071 | cpp | C++ | fbpmp/data_processing/sharding/shard_pid.cpp | benliugithub/fbpcs | 7af984264428058645847135026d474d7e28144e | [
"MIT"
] | null | null | null | fbpmp/data_processing/sharding/shard_pid.cpp | benliugithub/fbpcs | 7af984264428058645847135026d474d7e28144e | [
"MIT"
] | null | null | null | fbpmp/data_processing/sharding/shard_pid.cpp | benliugithub/fbpcs | 7af984264428058645847135026d474d7e28144e | [
"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 <filesystem>
#include <fstream>
#include <iomanip>
#include <iostream>
#include <memory>
#include <ss... | 31.851351 | 113 | 0.665252 | [
"vector"
] |
eb967fdfedc471b491cdadf27b604cd973f4dd90 | 3,184 | cpp | C++ | AphasiaFrame.cpp | leakingmemory/aphasia-support-app | 40a1bda9629c6406243f7c4044a50c30cf227606 | [
"MIT"
] | null | null | null | AphasiaFrame.cpp | leakingmemory/aphasia-support-app | 40a1bda9629c6406243f7c4044a50c30cf227606 | [
"MIT"
] | null | null | null | AphasiaFrame.cpp | leakingmemory/aphasia-support-app | 40a1bda9629c6406243f7c4044a50c30cf227606 | [
"MIT"
] | null | null | null | //
// Created by jeo on 23.09.2021.
//
#include <memory>
#include "AphasiaFrame.h"
#include "guistring.h"
#include "PhrasesView.h"
#define FILL_SIZE 10000
#define TAB_HEIGHT 30
AphasiaFrame::AphasiaFrame(const wxString &title) : wxFrame(nullptr, wxID_ANY, title, wxDefaultPosition, wxSize(800, 600)), mainCategories()... | 46.823529 | 142 | 0.497802 | [
"vector"
] |
eb978c1d9ba21392c28a5034efad56b611c25212 | 2,556 | cpp | C++ | src/game/world/aspects/actor_controller_aspect.cpp | jdmclark/gorc | a03d6a38ab7684860c418dd3d2e77cbe6a6d9fc8 | [
"Apache-2.0"
] | 97 | 2015-02-24T05:09:24.000Z | 2022-01-23T12:08:22.000Z | src/game/world/aspects/actor_controller_aspect.cpp | annnoo/gorc | 1889b4de6380c30af6c58a8af60ecd9c816db91d | [
"Apache-2.0"
] | 8 | 2015-03-27T23:03:23.000Z | 2020-12-21T02:34:33.000Z | src/game/world/aspects/actor_controller_aspect.cpp | annnoo/gorc | 1889b4de6380c30af6c58a8af60ecd9c816db91d | [
"Apache-2.0"
] | 10 | 2016-03-24T14:32:50.000Z | 2021-11-13T02:38:53.000Z | #include "actor_controller_aspect.hpp"
#include "game/world/level_model.hpp"
#include "game/world/events/thing_created.hpp"
#include "game/world/events/killed.hpp"
gorc::game::world::aspects::actor_controller_aspect::actor_controller_aspect(entity_component_system<thing_id>& cs)
: inner_join_aspect(cs) {
crea... | 39.323077 | 180 | 0.628717 | [
"transform"
] |
eba07ef0b9dd2c914ba2f3b466db8ff868bc332c | 3,150 | hh | C++ | client/coding/aont.hh | tinoryj/REED | 821e42a84237bdaef809879c1d9243fc047b736a | [
"MIT"
] | 2 | 2021-06-27T06:13:15.000Z | 2021-12-05T11:32:05.000Z | client/coding/aont.hh | tinoryj/REED | 821e42a84237bdaef809879c1d9243fc047b736a | [
"MIT"
] | null | null | null | client/coding/aont.hh | tinoryj/REED | 821e42a84237bdaef809879c1d9243fc047b736a | [
"MIT"
] | null | null | null | /*
* aont.hh
* crypto object for hashing and AES
*/
#ifndef __AONT_HH__
#define __AONT_HH__
#include <bits/stdc++.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/time.h>
#include "conf.hh"
#include "CryptoPrimitive.hh"
// chunk size
#define CHUNK_SIZE (4*1024*1024)
// indicator SIM: ... | 21.724138 | 129 | 0.648571 | [
"object"
] |
eba3e3206ab03c6d808c98aa57dfcdf9f0649c59 | 3,688 | cpp | C++ | thirdparty/geogram/src/lib/geogram/image/image_rasterizer.cpp | AmericaMakes/OASIS-marcwang | 7aa10040251d7a1b807a773a45d123e1a52faac5 | [
"BSD-2-Clause"
] | 1 | 2021-03-07T14:47:09.000Z | 2021-03-07T14:47:09.000Z | thirdparty/geogram/src/lib/geogram/image/image_rasterizer.cpp | AmericaMakes/OASIS-marcwang | 7aa10040251d7a1b807a773a45d123e1a52faac5 | [
"BSD-2-Clause"
] | null | null | null | thirdparty/geogram/src/lib/geogram/image/image_rasterizer.cpp | AmericaMakes/OASIS-marcwang | 7aa10040251d7a1b807a773a45d123e1a52faac5 | [
"BSD-2-Clause"
] | 1 | 2021-03-07T00:24:57.000Z | 2021-03-07T00:24:57.000Z | /*
* OGF/Graphite: Geometry and Graphics Programming Library + Utilities
* Copyright (C) 2000 Bruno Levy
*
* 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 th... | 27.318519 | 78 | 0.598698 | [
"geometry",
"transform"
] |
ebafc485727086f6d53c0ddc635e0b2b80647137 | 6,918 | cpp | C++ | dev/Gems/ScriptCanvas/Code/Editor/Assets/Functions/ScriptCanvasFunctionAssetHandler.cpp | brianherrera/lumberyard | f85344403c1c2e77ec8c75deb2c116e97b713217 | [
"AML"
] | 1,738 | 2017-09-21T10:59:12.000Z | 2022-03-31T21:05:46.000Z | dev/Gems/ScriptCanvas/Code/Editor/Assets/Functions/ScriptCanvasFunctionAssetHandler.cpp | ArchitectureStudios/lumberyard | f85344403c1c2e77ec8c75deb2c116e97b713217 | [
"AML"
] | 427 | 2017-09-29T22:54:36.000Z | 2022-02-15T19:26:50.000Z | dev/Gems/ScriptCanvas/Code/Editor/Assets/Functions/ScriptCanvasFunctionAssetHandler.cpp | ArchitectureStudios/lumberyard | f85344403c1c2e77ec8c75deb2c116e97b713217 | [
"AML"
] | 671 | 2017-09-21T08:04:01.000Z | 2022-03-29T14:30:07.000Z | /*
* All or portions of this file Copyright (c) Amazon.com, Inc. or its affiliates or
* its licensors.
*
* For complete copyright and license terms please see the LICENSE at the root of this
* distribution (the "License"). All use of this software is governed by the License,
* or, if provided, by the license below or t... | 43.2375 | 249 | 0.742989 | [
"vector"
] |
ebb4250cb967c672eaa3da7fd590fd5f00992a28 | 2,458 | cpp | C++ | src/entities/carmature.cpp | meoblast001/citrine | 9e97484d33860213555d865ec81b301c59b0657c | [
"MIT"
] | null | null | null | src/entities/carmature.cpp | meoblast001/citrine | 9e97484d33860213555d865ec81b301c59b0657c | [
"MIT"
] | null | null | null | src/entities/carmature.cpp | meoblast001/citrine | 9e97484d33860213555d865ec81b301c59b0657c | [
"MIT"
] | null | null | null | /*
Copyright (C) 2010 Braden Walters
This software may be modified and distributed under the terms of the MIT
license. See the LICENSE file for details.
*/
#include "carmature.h"
#include "../math/cvector.h"
using namespace Citrine;
std::pair<Vertex*, unsigned short> Citrine::ArmatureVertexDeform(std::pair<Vertex*,... | 39.015873 | 157 | 0.709927 | [
"vector"
] |
ebb703a6fb9e81aef290d3b8fc5113ffd60cf6cf | 1,016 | cpp | C++ | test/main.cpp | alxarsenault/axServer | cb5edf5a3d3010abe182e8c8b61bafbb8f3800f4 | [
"MIT"
] | 1 | 2015-10-18T07:48:20.000Z | 2015-10-18T07:48:20.000Z | test/main.cpp | alxarsenault/axServer | cb5edf5a3d3010abe182e8c8b61bafbb8f3800f4 | [
"MIT"
] | null | null | null | test/main.cpp | alxarsenault/axServer | cb5edf5a3d3010abe182e8c8b61bafbb8f3800f4 | [
"MIT"
] | null | null | null | //
// main.cpp
// ~~~~~~~~
//
// Copyright (c) 2003-2013 Christopher M. Kohlhoff (chris at kohlhoff dot com)
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
//
#include <iostream>
#include <string>
// #include <... | 25.4 | 81 | 0.667323 | [
"vector"
] |
ebbf9d1aafc11a6b4775db319fe2457ec0a7dcc2 | 649 | cpp | C++ | cpp-leetcode/leetcode441-arranging-coins_binary_search.cpp | yanglr/LeetCodeOJ | 27dd1e4a2442b707deae7921e0118752248bef5e | [
"MIT"
] | 45 | 2021-07-25T00:45:43.000Z | 2022-03-24T05:10:43.000Z | cpp-leetcode/leetcode441-arranging-coins_binary_search.cpp | yanglr/LeetCodeOJ | 27dd1e4a2442b707deae7921e0118752248bef5e | [
"MIT"
] | null | null | null | cpp-leetcode/leetcode441-arranging-coins_binary_search.cpp | yanglr/LeetCodeOJ | 27dd1e4a2442b707deae7921e0118752248bef5e | [
"MIT"
] | 15 | 2021-07-25T00:40:52.000Z | 2021-12-27T06:25:31.000Z | #include<algorithm>
#include<vector>
#include<cmath>
#include<unordered_set>
#include<iostream>
using namespace std;
using LL = long long;
class Solution {
public:
int arrangeCoins(int n) {
LL left = 0, right = (LL)n + 1;
while (left < right)
{
LL mid = left + (right - left) / 2... | 19.088235 | 57 | 0.508475 | [
"vector"
] |
ebc4d3b83a01f29602f6d7740c868cf64e15f7c7 | 766 | hpp | C++ | src/core/Core/Config/ParameterBuilder.hpp | krieselreihe/litr | ffaa7ecd09bfede01f5eb6edc957562363eadfc2 | [
"MIT"
] | 3 | 2020-11-26T15:46:48.000Z | 2021-08-16T11:12:48.000Z | src/core/Core/Config/ParameterBuilder.hpp | krieselreihe/litr | ffaa7ecd09bfede01f5eb6edc957562363eadfc2 | [
"MIT"
] | 57 | 2020-09-21T08:00:29.000Z | 2022-03-31T18:46:29.000Z | src/core/Core/Config/ParameterBuilder.hpp | krieselreihe/litr | ffaa7ecd09bfede01f5eb6edc957562363eadfc2 | [
"MIT"
] | null | null | null | #pragma once
#include <string>
#include <toml.hpp>
#include "Core/Base.hpp"
#include "Core/Config/Parameter.hpp"
namespace Litr::Config {
class ParameterBuilder {
public:
ParameterBuilder(const toml::table& file, const toml::value& data, const std::string& name);
void AddDescription();
void AddDescription(c... | 23.212121 | 94 | 0.720627 | [
"vector"
] |
ebc722e05988f79471fb8bac5aaf5f24038b16a4 | 20,585 | cpp | C++ | layer5/TestPyMOL.cpp | kingdavid72/pymol-OpenSource | 8068af8b53a4ae16657b536e83bfd5310e58a8bd | [
"CNRI-Python"
] | 2 | 2019-05-23T22:17:29.000Z | 2020-07-03T14:36:22.000Z | layer5/TestPyMOL.cpp | telamonian/pymol | 8192e75bf3d4c1072d6bd399b7dacd065bf78a06 | [
"CNRI-Python"
] | null | null | null | layer5/TestPyMOL.cpp | telamonian/pymol | 8192e75bf3d4c1072d6bd399b7dacd065bf78a06 | [
"CNRI-Python"
] | null | null | null |
/*
A* -------------------------------------------------------------------
B* This file contains source code for the PyMOL computer program
C* Copyright (c) Schrodinger, LLC.
D* -------------------------------------------------------------------
E* It is unlawful to modify or remove this copyright notice.
F* --------... | 44.460043 | 88 | 0.456692 | [
"3d"
] |
1b0e8c0ff5443ab47e8ac26497c95b3cb6226272 | 11,099 | hpp | C++ | lockfree/Messenger.hpp | unevens/lockfree-async | 57009fc5270d3b42b8ff8c57c6c2961cdcf299b1 | [
"MIT"
] | 2 | 2020-04-06T01:50:26.000Z | 2021-03-18T17:19:36.000Z | lockfree/Messenger.hpp | unevens/lockfree-async | 57009fc5270d3b42b8ff8c57c6c2961cdcf299b1 | [
"MIT"
] | null | null | null | lockfree/Messenger.hpp | unevens/lockfree-async | 57009fc5270d3b42b8ff8c57c6c2961cdcf299b1 | [
"MIT"
] | null | null | null | /*
Copyright 2019-2021 Dario Mambro
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, merge, publish, distribute, s... | 25.340183 | 116 | 0.659158 | [
"object"
] |
1b14ce4a6e9780e667b171283e13bad9cb4d631d | 2,636 | hpp | C++ | include/eve/module/special/regular/lbeta.hpp | clayne/eve | dc268b5db474376e1c53f5a474f5bb42b7c4cb59 | [
"MIT"
] | null | null | null | include/eve/module/special/regular/lbeta.hpp | clayne/eve | dc268b5db474376e1c53f5a474f5bb42b7c4cb59 | [
"MIT"
] | null | null | null | include/eve/module/special/regular/lbeta.hpp | clayne/eve | dc268b5db474376e1c53f5a474f5bb42b7c4cb59 | [
"MIT"
] | null | null | null | /*
EVE - Expressive Vector Engine
Copyright : EVE Contributors & Maintainers
SPDX-License-Identifier: MIT
*/
//==================================================================================================
#pragma once
#include <eve/detail/overload.hpp>
namespace eve
{
//==================================... | 32.54321 | 130 | 0.437785 | [
"object",
"vector"
] |
1b214ca0a4081523b82d97eede380b631e5cfa46 | 3,311 | cpp | C++ | novatel_gps_driver/src/parsers/gpgsa.cpp | Robotics-Mechatronics-Group/novatel_gps_driver_modified | f57138506245cdcad8862d00df6fc62fdf2f90a0 | [
"BSD-3-Clause"
] | 2 | 2018-06-05T14:28:15.000Z | 2019-07-05T02:26:16.000Z | novatel_gps_driver/src/parsers/gpgsa.cpp | Robotics-Mechatronics-Group/novatel_gps_driver_modified | f57138506245cdcad8862d00df6fc62fdf2f90a0 | [
"BSD-3-Clause"
] | null | null | null | novatel_gps_driver/src/parsers/gpgsa.cpp | Robotics-Mechatronics-Group/novatel_gps_driver_modified | f57138506245cdcad8862d00df6fc62fdf2f90a0 | [
"BSD-3-Clause"
] | 2 | 2018-07-06T09:30:26.000Z | 2018-10-09T05:53:51.000Z | // *****************************************************************************
//
// Copyright (c) 2017, Southwest Research Institute® (SwRI®)
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:... | 41.911392 | 142 | 0.69254 | [
"vector"
] |
1b22767940595894fb4e8e9ceb1ecbaffd612e28 | 2,211 | hpp | C++ | src/plugins/intel_gpu/include/intel_gpu/primitives/gather_nd.hpp | ryanloney/openvino-1 | 4e0a740eb3ee31062ba0df88fcf438564f67edb7 | [
"Apache-2.0"
] | 1,127 | 2018-10-15T14:36:58.000Z | 2020-04-20T09:29:44.000Z | src/plugins/intel_gpu/include/intel_gpu/primitives/gather_nd.hpp | ryanloney/openvino-1 | 4e0a740eb3ee31062ba0df88fcf438564f67edb7 | [
"Apache-2.0"
] | 439 | 2018-10-20T04:40:35.000Z | 2020-04-19T05:56:25.000Z | src/plugins/intel_gpu/include/intel_gpu/primitives/gather_nd.hpp | ryanloney/openvino-1 | 4e0a740eb3ee31062ba0df88fcf438564f67edb7 | [
"Apache-2.0"
] | 414 | 2018-10-17T05:53:46.000Z | 2020-04-16T17:29:53.000Z | // Copyright (C) 2018-2022 Intel Corporation
// SPDX-License-Identifier: Apache-2.0
//
#pragma once
#include "primitive.hpp"
namespace cldnn {
/// @addtogroup cpp_api C++ API
/// @{
/// @addtogroup cpp_topology Network Topology
/// @{
/// @addtogroup cpp_primitives Primitives
/// @{
/// @brief
/// @details
struct ga... | 34.546875 | 123 | 0.58209 | [
"shape"
] |
1b2313e812e6de98d1b8bbfcf7efd9c2b8d211f0 | 421 | hpp | C++ | Part F Finite Difference Methods/Exercise F Finite Difference Methods/Level9/Level9Code/Level9Code/UtilitiesDJD/VectorsAndMatrices/ArrayMechanisms.hpp | bondxue/Option-Pricing-Model | 5f22df0ff31e90fd536eb216c5af19c697fb87b2 | [
"MIT"
] | null | null | null | Part F Finite Difference Methods/Exercise F Finite Difference Methods/Level9/Level9Code/Level9Code/UtilitiesDJD/VectorsAndMatrices/ArrayMechanisms.hpp | bondxue/Option-Pricing-Model | 5f22df0ff31e90fd536eb216c5af19c697fb87b2 | [
"MIT"
] | null | null | null | Part F Finite Difference Methods/Exercise F Finite Difference Methods/Level9/Level9Code/Level9Code/UtilitiesDJD/VectorsAndMatrices/ArrayMechanisms.hpp | bondxue/Option-Pricing-Model | 5f22df0ff31e90fd536eb216c5af19c697fb87b2 | [
"MIT"
] | null | null | null | // ArrayMechanisms.hpp
//
// (C) Datasim Education BV 2003-2012
#ifndef ArrayMechanisms_hpp
#define ArrayMechanisms_hpp
#include "UtilitiesDJD/VectorsAndMatrices/Vector.cpp"
////////////// Useful and Basic Print Functions ////////////////////////////////////////////////////
template <typename V, typename I> void pr... | 28.066667 | 100 | 0.643705 | [
"vector"
] |
1b262aabe06b36955fa1442203c208b645cb6ae9 | 1,300 | cpp | C++ | csapex_scan_2d/src/split_labeled_scan.cpp | AdrianZw/csapex_core_plugins | 1b23c90af7e552c3fc37c7dda589d751d2aae97f | [
"BSD-3-Clause"
] | 2 | 2016-09-02T15:33:22.000Z | 2019-05-06T22:09:33.000Z | csapex_scan_2d/src/split_labeled_scan.cpp | AdrianZw/csapex_core_plugins | 1b23c90af7e552c3fc37c7dda589d751d2aae97f | [
"BSD-3-Clause"
] | 1 | 2021-02-11T09:14:31.000Z | 2021-02-27T09:30:14.000Z | csapex_scan_2d/src/split_labeled_scan.cpp | AdrianZw/csapex_core_plugins | 1b23c90af7e552c3fc37c7dda589d751d2aae97f | [
"BSD-3-Clause"
] | 6 | 2016-10-12T00:55:23.000Z | 2021-02-10T17:49:25.000Z | /// HEADER
#include "split_labeled_scan.h"
/// PROJECT
#include <csapex/model/node_modifier.h>
#include <csapex/msg/generic_vector_message.hpp>
#include <csapex/msg/io.h>
#include <csapex/param/parameter_factory.h>
#include <csapex/utility/register_apex_plugin.h>
#include <csapex_scan_2d/labeled_scan_message.h>
#inclu... | 28.26087 | 82 | 0.77 | [
"vector",
"model"
] |
1b2bf836b758b5253448d245eadda7e95961e463 | 20,441 | cpp | C++ | executor/lib/graph_task.cpp | wangshankun/Tengine | 65c8e2e60e2df88afb65ea4ae466c11d10529ce8 | [
"Apache-2.0"
] | 3 | 2019-12-27T02:31:59.000Z | 2021-08-04T05:59:03.000Z | executor/lib/graph_task.cpp | houzh/Tengine | 423aaaf7e9008679f64a78ee93c8ebf7dbd58dc9 | [
"Apache-2.0"
] | null | null | null | executor/lib/graph_task.cpp | houzh/Tengine | 423aaaf7e9008679f64a78ee93c8ebf7dbd58dc9 | [
"Apache-2.0"
] | null | null | null | /*
* 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 under the Apache License, Version 2.0 (the
* License); you ma... | 24.048235 | 119 | 0.597133 | [
"vector"
] |
1b31eb7f8b9b08a83ae4f45aeb6992eca7b5603b | 4,507 | cpp | C++ | model_zoo/jag_utils/check_images.cpp | jychoi-hpc/lbann | 4232883aee90448e8beb89967ce30fee9c4a68bf | [
"Apache-2.0"
] | null | null | null | model_zoo/jag_utils/check_images.cpp | jychoi-hpc/lbann | 4232883aee90448e8beb89967ce30fee9c4a68bf | [
"Apache-2.0"
] | 66 | 2018-04-04T22:24:42.000Z | 2020-10-23T01:50:34.000Z | model_zoo/jag_utils/check_images.cpp | jychoi-hpc/lbann | 4232883aee90448e8beb89967ce30fee9c4a68bf | [
"Apache-2.0"
] | null | null | null | ////////////////////////////////////////////////////////////////////////////////
// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC.
// Produced at the Lawrence Livermore National Laboratory.
// Written by the LBANN Research Team (B. Van Essen, et al.) listed in
// the CONTRIBUTORS file. <lbann-dev@l... | 34.40458 | 227 | 0.587309 | [
"vector"
] |
1b332a6a068fffda5ad19b8cdd08499b0619d3e7 | 108,870 | cc | C++ | tce/src/applibs/Scheduler/ProgramRepresentations/DDG/DataDependenceGraphBuilder.cc | kanishkan/tce | 430e764b4d43f46bd1dc754aeb1d5632fc742110 | [
"MIT"
] | null | null | null | tce/src/applibs/Scheduler/ProgramRepresentations/DDG/DataDependenceGraphBuilder.cc | kanishkan/tce | 430e764b4d43f46bd1dc754aeb1d5632fc742110 | [
"MIT"
] | null | null | null | tce/src/applibs/Scheduler/ProgramRepresentations/DDG/DataDependenceGraphBuilder.cc | kanishkan/tce | 430e764b4d43f46bd1dc754aeb1d5632fc742110 | [
"MIT"
] | null | null | null | /*
Copyright (c) 2002-2021 Tampere University.
This file is part of TTA-Based Codesign Environment (TCE).
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, ... | 35.76544 | 108 | 0.607284 | [
"object",
"vector"
] |
1b349a68e4f7a265fcdb1776dc7f4792b684c680 | 1,913 | cpp | C++ | tst/unit/test_primitive_group.cpp | lanl/PANACEA | 9779bdb6dcc3be41ea7b286ae55a21bb269e0339 | [
"BSD-3-Clause"
] | null | null | null | tst/unit/test_primitive_group.cpp | lanl/PANACEA | 9779bdb6dcc3be41ea7b286ae55a21bb269e0339 | [
"BSD-3-Clause"
] | null | null | null | tst/unit/test_primitive_group.cpp | lanl/PANACEA | 9779bdb6dcc3be41ea7b286ae55a21bb269e0339 | [
"BSD-3-Clause"
] | null | null | null |
// Local private PANACEA includes
#include "primitives/primitive_group.hpp"
#include "constants.hpp"
#include "descriptors/descriptor_wrapper.hpp"
#include "io/file_io_factory.hpp"
#include "kernels/kernel_specifications.hpp"
#include "primitives/primitive_factory.hpp"
#include "private_settings.hpp"
// Public PANAC... | 32.982759 | 79 | 0.706221 | [
"vector"
] |
1b350251535e469c06bab1dbf9ce761994a7f11e | 9,741 | tcc | C++ | third-party/thrift/src/thrift/compiler/test/fixtures/complex-union/gen-cpp2/module_types.tcc | hkirsman/hhvm_centos7_builds | 2a1fd6de0d2d289c1575f43f10018f3bec23bb13 | [
"PHP-3.01",
"Zend-2.0"
] | null | null | null | third-party/thrift/src/thrift/compiler/test/fixtures/complex-union/gen-cpp2/module_types.tcc | hkirsman/hhvm_centos7_builds | 2a1fd6de0d2d289c1575f43f10018f3bec23bb13 | [
"PHP-3.01",
"Zend-2.0"
] | null | null | null | third-party/thrift/src/thrift/compiler/test/fixtures/complex-union/gen-cpp2/module_types.tcc | hkirsman/hhvm_centos7_builds | 2a1fd6de0d2d289c1575f43f10018f3bec23bb13 | [
"PHP-3.01",
"Zend-2.0"
] | null | null | null | /**
* Autogenerated by Thrift
*
* DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
* @generated
*/
#pragma once
#include "module_types.h"
#include <thrift/lib/cpp/TApplicationException.h>
#include <folly/MoveWrapper.h>
#include <folly/io/IOBuf.h>
#include <folly/io/IOBufQueue.h>
#include <thrift/... | 34.059441 | 121 | 0.608048 | [
"vector"
] |
1b35528ff078999b40826c4bae9a01d25765ce7b | 2,695 | hpp | C++ | src/core/headers/LayerVao.hpp | nebular/PixEngine_core | fc5f928641ed8c0d14254fdfc68973b3b144297f | [
"BSD-3-Clause"
] | 1 | 2020-10-23T21:16:49.000Z | 2020-10-23T21:16:49.000Z | template/PixFuTemplate/PixFu.Framework/Versions/A/Headers/core/LayerVao.hpp | nebular/PixFu_macOS | fbe6630fa0bc035a83c4f900e0e7f6006f45da2e | [
"CC-BY-4.0"
] | 2 | 2020-03-02T22:43:09.000Z | 2020-03-02T22:46:44.000Z | src/core/headers/LayerVao.hpp | nebular/PixFu | fc5f928641ed8c0d14254fdfc68973b3b144297f | [
"BSD-3-Clause"
] | null | null | null | //
// Layer.cpp
// PixFu
//
// A VAO Layer, abstracts drawing a mesh from an array of vertexes and indices.
// Vertexes are interleaved <POS - NORM - TEXCOORDS> so it uses only one buffer
// The VAO buffers are constructed by calling the init() method, and from then on
// draw() to draw the mesh.
//
// This clas... | 23.434783 | 85 | 0.681633 | [
"mesh",
"render",
"vector"
] |
1b37d5c38b903f0401eebc091e6c7175de6a39ed | 4,573 | cc | C++ | remoting/host/win/rdp_client_unittest.cc | kjthegod/chromium | cf940f7f418436b77e15b1ea23e6fa100ca1c91a | [
"BSD-3-Clause-No-Nuclear-License-2014",
"BSD-3-Clause"
] | 1 | 2019-11-28T10:46:52.000Z | 2019-11-28T10:46:52.000Z | remoting/host/win/rdp_client_unittest.cc | kjthegod/chromium | cf940f7f418436b77e15b1ea23e6fa100ca1c91a | [
"BSD-3-Clause-No-Nuclear-License-2014",
"BSD-3-Clause"
] | null | null | null | remoting/host/win/rdp_client_unittest.cc | kjthegod/chromium | cf940f7f418436b77e15b1ea23e6fa100ca1c91a | [
"BSD-3-Clause-No-Nuclear-License-2014",
"BSD-3-Clause"
] | 2 | 2015-03-27T11:15:39.000Z | 2016-08-17T14:19:56.000Z | // Copyright (c) 2013 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.
// ATL headers have to go first.
#include <atlbase.h>
#include <atlhost.h>
#include <string>
#include "base/basictypes.h"
#include "base/bind.h"
#inc... | 26.281609 | 80 | 0.743494 | [
"object"
] |
1b380ac92dddd36c16a564097a3269283bb1bd5e | 3,475 | cpp | C++ | src/gct/pipeline_rasterization_state_create_info.cpp | Fadis/gct | bde211f9336e945e4db21f5abb4ce01dcad78049 | [
"MIT"
] | 1 | 2022-03-03T09:27:09.000Z | 2022-03-03T09:27:09.000Z | src/gct/pipeline_rasterization_state_create_info.cpp | Fadis/gct | bde211f9336e945e4db21f5abb4ce01dcad78049 | [
"MIT"
] | 1 | 2021-12-02T03:45:45.000Z | 2021-12-03T23:44:37.000Z | src/gct/pipeline_rasterization_state_create_info.cpp | Fadis/gct | bde211f9336e945e4db21f5abb4ce01dcad78049 | [
"MIT"
] | null | null | null | #include <gct/shader_module.hpp>
#include <gct/pipeline_rasterization_state_create_info.hpp>
#include <vulkan2json/PipelineRasterizationStateCreateInfo.hpp>
#ifdef VK_EXT_CONSERVATIVE_RASTERIZATION_EXTENSION_NAME
#include <vulkan2json/PipelineRasterizationConservativeStateCreateInfoEXT.hpp>
#endif
#ifdef VK_EXT_DEPTH_C... | 37.771739 | 148 | 0.856403 | [
"object"
] |
1b38beee06d517670c6c4a1279c3b6164585df2b | 5,647 | hpp | C++ | modules/core/src/MetaObject/signals/TSlot.hpp | dtmoodie/MetaObject | 8238d143d578ff9c0c6506e7e627eca15e42369e | [
"MIT"
] | 2 | 2017-10-26T04:41:49.000Z | 2018-02-09T05:12:19.000Z | modules/core/src/MetaObject/signals/TSlot.hpp | dtmoodie/MetaObject | 8238d143d578ff9c0c6506e7e627eca15e42369e | [
"MIT"
] | null | null | null | modules/core/src/MetaObject/signals/TSlot.hpp | dtmoodie/MetaObject | 8238d143d578ff9c0c6506e7e627eca15e42369e | [
"MIT"
] | 3 | 2017-01-08T21:09:48.000Z | 2018-02-10T04:27:32.000Z | #ifndef MO_SIGNALS_TSLOT_HPP
#define MO_SIGNALS_TSLOT_HPP
#include "ArgumentPack.hpp"
#include "Connection.hpp"
#include "ISlot.hpp"
#include "MetaObject/core/AsyncStream.hpp"
#include "TSignal.hpp"
#include "TSignalRelay.hpp"
#include <ct/bind.hpp>
#include <functional>
namespace mo
{
template <typename Sig>
... | 29.259067 | 117 | 0.538693 | [
"vector"
] |
1b3ccf00d5a3211cbfb4c58f922e86b73c817371 | 1,826 | cpp | C++ | xmlparser/xmlparser.cpp | ale-tachibana/XMLBUMPARSER | 3fb400e553998d854f457521b9f4dde04fbdb4f0 | [
"MIT"
] | null | null | null | xmlparser/xmlparser.cpp | ale-tachibana/XMLBUMPARSER | 3fb400e553998d854f457521b9f4dde04fbdb4f0 | [
"MIT"
] | null | null | null | xmlparser/xmlparser.cpp | ale-tachibana/XMLBUMPARSER | 3fb400e553998d854f457521b9f4dde04fbdb4f0 | [
"MIT"
] | null | null | null | #include "stdafx.h"
#include "xml_main.hpp"
#include <string>
#include <iostream>
#include "txtsample.h"
int _tmain(int argc, _TCHAR* argv[])
{
//sample how to use
xmlbum::xml_parser xml;
std::string string_teste;
int teste;
//can load from file path
std::string filepath = "../skinned_... | 32.035088 | 190 | 0.638554 | [
"mesh",
"geometry",
"object",
"vector"
] |
1b3e49c433dee3248d9d35946461b3a9232ff939 | 1,823 | cpp | C++ | CesiumGltfWriter/src/AccessorWriter.cpp | zy6p/cesium-native | d7b02d0c229e54e626e313bf2cfab31ed6e8ac3b | [
"Apache-2.0"
] | null | null | null | CesiumGltfWriter/src/AccessorWriter.cpp | zy6p/cesium-native | d7b02d0c229e54e626e313bf2cfab31ed6e8ac3b | [
"Apache-2.0"
] | null | null | null | CesiumGltfWriter/src/AccessorWriter.cpp | zy6p/cesium-native | d7b02d0c229e54e626e313bf2cfab31ed6e8ac3b | [
"Apache-2.0"
] | null | null | null | #include "AccessorWriter.h"
#include "AccessorSparseWriter.h"
#include "ExtensionWriter.h"
#include "JsonObjectWriter.h"
#include <magic_enum.hpp>
#include <stdexcept>
#include <type_traits>
void CesiumGltf::writeAccessor(
const std::vector<Accessor>& accessors,
CesiumGltf::JsonWriter& jsonWriter) {
if (acc... | 20.954023 | 60 | 0.597916 | [
"vector"
] |
1b3ef8f35ee8650620743461c471d7ec4bfd2e44 | 5,266 | cpp | C++ | simulator/simulator.cpp | leandrohw/et2-simulator | ed87e38f1b62ab7e1a7bc684da3364d1154b5878 | [
"Apache-2.0"
] | null | null | null | simulator/simulator.cpp | leandrohw/et2-simulator | ed87e38f1b62ab7e1a7bc684da3364d1154b5878 | [
"Apache-2.0"
] | 11 | 2018-04-10T02:46:30.000Z | 2018-04-24T18:12:58.000Z | simulator/simulator.cpp | leandrohw/et2-simulator | ed87e38f1b62ab7e1a7bc684da3364d1154b5878 | [
"Apache-2.0"
] | null | null | null | #include "simulator/simulator.h"
#include "absl/strings/str_join.h"
#include "absl/strings/str_split.h"
#include "absl/strings/numbers.h"
#include "glog/logging.h"
namespace et_simulator {
bool Simulator::ParseObjectAllocation(std::vector<std::string> trace) {
if (trace.size() != 5) {
return false;
}
std::s... | 23.508929 | 78 | 0.562096 | [
"vector"
] |
1b4047b1ccbd20421c5179c743db886d06399255 | 2,939 | cpp | C++ | GLEssentials/Source/Classes/glviewshape.cpp | mrtrizer/iOSGLES2 | 39a48c5be370f7b37bae908126cc61366882188f | [
"AML"
] | null | null | null | GLEssentials/Source/Classes/glviewshape.cpp | mrtrizer/iOSGLES2 | 39a48c5be370f7b37bae908126cc61366882188f | [
"AML"
] | null | null | null | GLEssentials/Source/Classes/glviewshape.cpp | mrtrizer/iOSGLES2 | 39a48c5be370f7b37bae908126cc61366882188f | [
"AML"
] | null | null | null | #include "glm/gtc/type_ptr.hpp"
#include "glviewshape.h"
static const char shapeVShader[] =
"attribute vec2 aPosition;\n"
"uniform mat4 uMVMatrix;\n"
"uniform mat4 uPMatrix;\n"
"varying vec4 vColor;\n"
"void main() {\n"
" gl_Position = uPMatrix * uMVMatrix * vec4(aPosition,0,1);\n"
"}\n";... | 39.716216 | 100 | 0.541681 | [
"render",
"vector"
] |
1b408c6323b70693a36a32d7fd08adec1f3cb5a9 | 392,817 | cpp | C++ | esp32_wifi_microphone_a1s_aac/lib/fdk-aac/src/libFDK/FDK_tools_rom.cpp | vernonet/ESP32_PRJ | 52a3ba27cb5c3044bfc75bfc6650404981fb59ee | [
"Unlicense"
] | 1 | 2021-11-13T20:53:32.000Z | 2021-11-13T20:53:32.000Z | esp32_wifi_microphone_a1s_aac_async/lib/fdk-aac/src/libFDK/FDK_tools_rom.cpp | vernonet/ESP32_PRJ | 52a3ba27cb5c3044bfc75bfc6650404981fb59ee | [
"Unlicense"
] | null | null | null | esp32_wifi_microphone_a1s_aac_async/lib/fdk-aac/src/libFDK/FDK_tools_rom.cpp | vernonet/ESP32_PRJ | 52a3ba27cb5c3044bfc75bfc6650404981fb59ee | [
"Unlicense"
] | 1 | 2021-11-15T13:12:59.000Z | 2021-11-15T13:12:59.000Z | /* -----------------------------------------------------------------------------
Software License for The Fraunhofer FDK AAC Codec Library for Android
© Copyright 1995 - 2018 Fraunhofer-Gesellschaft zur Förderung der angewandten
Forschung e.V. All rights reserved.
1. INTRODUCTION
The Fraunhofer FDK AAC Codec Lib... | 54.017739 | 80 | 0.717869 | [
"shape"
] |
1b416c537e0284d2c0106da37c5414e2ed056a9d | 34,062 | cxx | C++ | PWG/muon/AliAnalysisTaskMuMu.cxx | maroozm/AliPhysics | 22ec256928cfdf8f800e05bfc1a6e124d90b6eaf | [
"BSD-3-Clause"
] | 114 | 2017-03-03T09:12:23.000Z | 2022-03-03T20:29:42.000Z | PWG/muon/AliAnalysisTaskMuMu.cxx | maroozm/AliPhysics | 22ec256928cfdf8f800e05bfc1a6e124d90b6eaf | [
"BSD-3-Clause"
] | 19,637 | 2017-01-16T12:34:41.000Z | 2022-03-31T22:02:40.000Z | PWG/muon/AliAnalysisTaskMuMu.cxx | maroozm/AliPhysics | 22ec256928cfdf8f800e05bfc1a6e124d90b6eaf | [
"BSD-3-Clause"
] | 1,021 | 2016-07-14T22:41:16.000Z | 2022-03-31T05:15:51.000Z | #include "AliAnalysisTaskMuMu.h"
#include "AliAnalysisManager.h"
#include "AliMultEstimator.h"
#include "AliAnalysisMuMuBase.h"
#include "AliAnalysisMuMuBinning.h"
#include "AliAnalysisMuMuCutCombination.h"
#include "AliAnalysisMuMuCutElement.h"
#include "AliAnalysisMuMuCutRegistry.h"
#include "AliAnalysisMuonUtility... | 34.096096 | 171 | 0.708766 | [
"object"
] |
1b467c3a89e43a9909d15aabe3e7e1a0e4ec99a2 | 1,801 | cpp | C++ | regression/esbmc-cpp/cpp/ch9_9/main.cpp | shmarovfedor/esbmc | 3226a3d68b009d44b9535a993ac0f25e1a1fbedd | [
"BSD-3-Clause"
] | 143 | 2015-06-22T12:30:01.000Z | 2022-03-21T08:41:17.000Z | regression/esbmc-cpp/cpp/ch9_9/main.cpp | shmarovfedor/esbmc | 3226a3d68b009d44b9535a993ac0f25e1a1fbedd | [
"BSD-3-Clause"
] | 542 | 2017-06-02T13:46:26.000Z | 2022-03-31T16:35:17.000Z | regression/esbmc-cpp/cpp/ch9_9/main.cpp | shmarovfedor/esbmc | 3226a3d68b009d44b9535a993ac0f25e1a1fbedd | [
"BSD-3-Clause"
] | 81 | 2015-10-21T22:21:59.000Z | 2022-03-24T14:07:55.000Z | // Fig. 9.6: pointtest.cpp
// Testing class Point.
#include <iostream>
#include <cassert>
using std::cout;
using std::endl;
#include "point.h" // Point class definition
int main()
{
Point point( 72, 115 ); // instantiate Point object
// display point coordinates
cout << "X coordinate is " << point.g... | 36.755102 | 75 | 0.55136 | [
"object"
] |
1b497fba131a0ca7968765510e8146d970cd9c85 | 9,371 | cpp | C++ | Compiler/AST/ASTBoxing_CG.cpp | zored/emojicode | 512e71357f8c4d6f56fa4050e1d959749e9b29a2 | [
"Artistic-2.0"
] | null | null | null | Compiler/AST/ASTBoxing_CG.cpp | zored/emojicode | 512e71357f8c4d6f56fa4050e1d959749e9b29a2 | [
"Artistic-2.0"
] | null | null | null | Compiler/AST/ASTBoxing_CG.cpp | zored/emojicode | 512e71357f8c4d6f56fa4050e1d959749e9b29a2 | [
"Artistic-2.0"
] | null | null | null | //
// ASTBoxing_CG.cpp
// Emojicode
//
// Created by Theo Weidmann on 03/09/2017.
// Copyright © 2017 Theo Weidmann. All rights reserved.
//
#include "ASTBoxing.hpp"
#include "ASTInitialization.hpp"
#include "Types/TypeDefinition.hpp"
#include "Generation/FunctionCodeGenerator.hpp"
#include "Generation/ProtocolsTa... | 41.464602 | 115 | 0.693843 | [
"object"
] |
1b4baf9d3eb89a47137d6b5e87b0b07c37d2e153 | 1,275 | cpp | C++ | LeviathanTest/TestFiles/ExtraAlgorithms.cpp | Higami69/Leviathan | 90f68f9f6e5506d6133bcefcf35c8e84f158483b | [
"BSL-1.0"
] | 16 | 2018-12-22T02:09:05.000Z | 2022-03-09T20:38:59.000Z | LeviathanTest/TestFiles/ExtraAlgorithms.cpp | Higami69/Leviathan | 90f68f9f6e5506d6133bcefcf35c8e84f158483b | [
"BSL-1.0"
] | 46 | 2018-04-02T11:06:01.000Z | 2019-12-14T11:16:04.000Z | LeviathanTest/TestFiles/ExtraAlgorithms.cpp | Higami69/Leviathan | 90f68f9f6e5506d6133bcefcf35c8e84f158483b | [
"BSL-1.0"
] | 14 | 2018-04-09T02:26:15.000Z | 2021-09-11T03:12:15.000Z |
//! \file Testing for functions in ExtraAlgorithms
#include "Common/ExtraAlgorithms.h"
#include "catch.hpp"
using namespace Leviathan;
using namespace std;
TEST_CASE("ExtraAlgorithms::FindRemovedElements", "[algorithm]"){
SECTION("Basic strings"){
std::vector<std::string> original {"first", "second",... | 25 | 91 | 0.574118 | [
"vector"
] |
1b4e2b01a115f2ce87227e50ed1d9ba8f5e9f044 | 27,063 | cpp | C++ | Utils/Fake-Offline.cpp | mskd12/MP-SPDZ | 545ea8e60cf70dc7d2434a72df52cba3782a2eaa | [
"BSD-2-Clause"
] | null | null | null | Utils/Fake-Offline.cpp | mskd12/MP-SPDZ | 545ea8e60cf70dc7d2434a72df52cba3782a2eaa | [
"BSD-2-Clause"
] | null | null | null | Utils/Fake-Offline.cpp | mskd12/MP-SPDZ | 545ea8e60cf70dc7d2434a72df52cba3782a2eaa | [
"BSD-2-Clause"
] | null | null | null |
#include "Math/gf2n.h"
#include "Math/gfp.h"
#include "Protocols/Share.h"
#include "Math/Setup.h"
#include "Protocols/Spdz2kShare.h"
#include "Protocols/BrainShare.h"
#include "Protocols/MaliciousRep3Share.h"
#include "Protocols/PostSacriRepRingShare.h"
#include "Protocols/PostSacriRepFieldShare.h"
#include "Protocols... | 32.410778 | 221 | 0.587407 | [
"vector"
] |
1b4e491c28580c42aa43f243e517cf0ebc3e01a6 | 23,498 | cpp | C++ | src/servers/media_addon/MediaAddonServer.cpp | Yn0ga/haiku | 74e271b2a286c239e60f0ec261f4f197f4727eee | [
"MIT"
] | 2 | 2018-03-28T06:53:23.000Z | 2021-05-26T19:35:01.000Z | src/servers/media_addon/MediaAddonServer.cpp | Yn0ga/haiku | 74e271b2a286c239e60f0ec261f4f197f4727eee | [
"MIT"
] | null | null | null | src/servers/media_addon/MediaAddonServer.cpp | Yn0ga/haiku | 74e271b2a286c239e60f0ec261f4f197f4727eee | [
"MIT"
] | null | null | null | /*
* Copyright 2009, Axel Dörfler, axeld@pinc-software.de.
* Copyright 2013 Haiku, Inc. All rights reserved.
* Distributed under the terms of the MIT License.
*/
/*
* Copyright (c) 2002-2004, Marcus Overhagen <marcus@overhagen.de>
* All rights reserved.
*
* Redistribution and use in source and binary forms, wi... | 28.107656 | 84 | 0.720742 | [
"object",
"vector"
] |
1b57631aa8e4bc47e60e99275666525782dbfd7c | 2,078 | cpp | C++ | 10 Days of Statistics/Day_0/mean_mode_median.cpp | yurkovak/HackerRank | a10136e508692f98e76e7c27d9cd801a3380f8ba | [
"MIT"
] | null | null | null | 10 Days of Statistics/Day_0/mean_mode_median.cpp | yurkovak/HackerRank | a10136e508692f98e76e7c27d9cd801a3380f8ba | [
"MIT"
] | null | null | null | 10 Days of Statistics/Day_0/mean_mode_median.cpp | yurkovak/HackerRank | a10136e508692f98e76e7c27d9cd801a3380f8ba | [
"MIT"
] | null | null | null | #include <cmath>
#include <cstdio>
#include <vector>
#include <iostream>
#include <algorithm>
#include <iomanip>
//using namespace std;
double mean(const std::vector<int>& values){
double sum = 0;
for (unsigned i = 0; i < values.size(); ++i)
sum += static_cast<double>(values.at(i));
return sum / ... | 22.835165 | 82 | 0.522137 | [
"vector"
] |
1b5784f80bde6dd7c14e85a51dca956ff6dac5a6 | 2,316 | hpp | C++ | src/rpp/rpp/operators/fwd/map.hpp | victimsnino/ReactivePlusPlus | bb187cc52936bce7c1ef4899d7dbb9c970cef291 | [
"MIT"
] | 1 | 2022-03-19T20:15:50.000Z | 2022-03-19T20:15:50.000Z | src/rpp/rpp/operators/fwd/map.hpp | victimsnino/ReactivePlusPlus | bb187cc52936bce7c1ef4899d7dbb9c970cef291 | [
"MIT"
] | 12 | 2022-03-22T21:18:14.000Z | 2022-03-30T05:37:58.000Z | src/rpp/rpp/operators/fwd/map.hpp | victimsnino/ReactivePlusPlus | bb187cc52936bce7c1ef4899d7dbb9c970cef291 | [
"MIT"
] | null | null | null | // ReactivePlusPlus library
//
// Copyright Aleksey Loginov 2022 - present.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// https://www.boost.org/LICENSE_1_0.txt)
//
// Project home: https://github.com/victimsnin... | 36.761905 | 168 | 0.686097 | [
"transform"
] |
1b57b3cea2b2f6cd89b79e376b29bb73564eb49e | 4,632 | cpp | C++ | game/shared/portal/portal_usermessages.cpp | SmileyAG/cstrike15_src | 5315265785320e0f53ebd27c3486e6c7b826a227 | [
"Unlicense"
] | 2 | 2022-02-25T12:18:31.000Z | 2022-03-16T23:59:59.000Z | game/shared/portal/portal_usermessages.cpp | SmileyAG/cstrike15_src | 5315265785320e0f53ebd27c3486e6c7b826a227 | [
"Unlicense"
] | null | null | null | game/shared/portal/portal_usermessages.cpp | SmileyAG/cstrike15_src | 5315265785320e0f53ebd27c3486e6c7b826a227 | [
"Unlicense"
] | 7 | 2021-08-22T11:29:02.000Z | 2022-03-29T11:59:15.000Z | //========= Copyright (c) 1996-2005, Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
//=============================================================================//
#include "cbase.h"
#include "usermessages.h"
#include "shake.h"
#include "voice_gamemgr.h"
// memdbgon must be the last inclu... | 47.265306 | 129 | 0.690415 | [
"vector"
] |
1b5f9ee0f79e9e03221334a58022db8df48a659c | 12,983 | cpp | C++ | src/skin.cpp | Rinnegatamante/librw | 9bc95992649ed87cdfaf7f1fd00ea7222377abef | [
"MIT"
] | null | null | null | src/skin.cpp | Rinnegatamante/librw | 9bc95992649ed87cdfaf7f1fd00ea7222377abef | [
"MIT"
] | null | null | null | src/skin.cpp | Rinnegatamante/librw | 9bc95992649ed87cdfaf7f1fd00ea7222377abef | [
"MIT"
] | null | null | null | #include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>
#include "rwbase.h"
#include "rwerror.h"
#include "rwplg.h"
#include "rwpipeline.h"
#include "rwobjects.h"
#include "rwanim.h"
#include "rwengine.h"
#include "rwplugins.h"
#include "ps2/rwps2.h"
#include "ps2/rwps2plg.h"
#include "d3d/rwxbo... | 26.659138 | 103 | 0.678426 | [
"geometry",
"object"
] |
1b635f3183b79352c50925dbc4b34fe7c5e64b5f | 26,609 | cpp | C++ | source/managers/Storyboard.cpp | skelleher/HappyGame | 2c7610f420dab4ccf7e636c1c0d8fb6819989853 | [
"BSD-3-Clause"
] | 4 | 2015-06-23T19:23:31.000Z | 2017-01-05T07:08:08.000Z | source/managers/Storyboard.cpp | skelleher/HappyGame | 2c7610f420dab4ccf7e636c1c0d8fb6819989853 | [
"BSD-3-Clause"
] | null | null | null | source/managers/Storyboard.cpp | skelleher/HappyGame | 2c7610f420dab4ccf7e636c1c0d8fb6819989853 | [
"BSD-3-Clause"
] | null | null | null | #include "StoryboardManager.hpp"
#include "Storyboard.hpp"
#include "GameObjectManager.hpp"
#include "EffectManager.hpp"
#include "LayerManager.hpp"
namespace Z
{
//=============================================================================
//
// Multiple Animations are grouped together in an Storyboard,
// whic... | 27.862827 | 197 | 0.602202 | [
"object"
] |
1b6540083926da3d681cbf403741848241a999a7 | 9,535 | cpp | C++ | code/src/Wrapper/WrapperManager.cpp | salmanahmedshaikh/streamOLAPOptimization | 0a352bbd6e364865013452d30d2654e33b627e69 | [
"Apache-2.0"
] | 1 | 2021-04-15T11:42:52.000Z | 2021-04-15T11:42:52.000Z | code/src/Wrapper/WrapperManager.cpp | salmanahmedshaikh/streamOLAPOptimization | 0a352bbd6e364865013452d30d2654e33b627e69 | [
"Apache-2.0"
] | null | null | null | code/src/Wrapper/WrapperManager.cpp | salmanahmedshaikh/streamOLAPOptimization | 0a352bbd6e364865013452d30d2654e33b627e69 | [
"Apache-2.0"
] | 1 | 2019-08-25T05:46:20.000Z | 2019-08-25T05:46:20.000Z | //////////////////////////////////////////////////////////////////////////////////////////
// Copyright (c) 2017 KDE Laboratory, University of Tsukuba, Tsukuba, Japan. //
// //
// The JsSpinnerSPE/StreamingCube and the accom... | 38.447581 | 139 | 0.739696 | [
"vector"
] |
1b6575d60912c3b38c57a5032b799cb5e4fe49ae | 1,942 | cpp | C++ | app/src/uptodatescreen.cpp | DaveeFTW/infinity | 6a4f269f8abcf65696064cad94ba9ac8b845bd74 | [
"MIT"
] | 137 | 2019-11-10T16:12:16.000Z | 2022-03-27T23:32:15.000Z | app/src/uptodatescreen.cpp | DaveeFTW/infinity | 6a4f269f8abcf65696064cad94ba9ac8b845bd74 | [
"MIT"
] | 12 | 2019-11-11T20:37:05.000Z | 2021-11-14T17:18:56.000Z | app/src/uptodatescreen.cpp | DaveeFTW/infinity | 6a4f269f8abcf65696064cad94ba9ac8b845bd74 | [
"MIT"
] | 49 | 2019-11-15T02:37:05.000Z | 2022-03-28T20:04:49.000Z | /*
Copyright (C) 2019, David "Davee" Morgan
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, merge, publish, dist... | 32.915254 | 96 | 0.753347 | [
"render"
] |
1b69e9da921a09428e086e566e53985234689ce8 | 4,222 | cpp | C++ | Tests/PerformanceTests/DFNsIntegration/VisualOdometry/OrbFlannRansacDecomposition.cpp | H2020-InFuse/cdff | e55fd48f9a909d0c274c3dfa4fe2704bc5071542 | [
"BSD-2-Clause"
] | 7 | 2019-02-26T15:09:50.000Z | 2021-09-30T07:39:01.000Z | Tests/PerformanceTests/DFNsIntegration/VisualOdometry/OrbFlannRansacDecomposition.cpp | H2020-InFuse/cdff | e55fd48f9a909d0c274c3dfa4fe2704bc5071542 | [
"BSD-2-Clause"
] | null | null | null | Tests/PerformanceTests/DFNsIntegration/VisualOdometry/OrbFlannRansacDecomposition.cpp | H2020-InFuse/cdff | e55fd48f9a909d0c274c3dfa4fe2704bc5071542 | [
"BSD-2-Clause"
] | 1 | 2020-12-06T12:09:05.000Z | 2020-12-06T12:09:05.000Z | /* --------------------------------------------------------------------------
*
* (C) Copyright …
*
* ---------------------------------------------------------------------------
*/
/*!
* @file OrbFlannRansacDecomposition.cpp
* @date 26/03/2018
* @author Alessandro Bianco
*/
/*!
* @addtogroup DFNsTest
*
* Perf... | 37.696429 | 165 | 0.721696 | [
"vector"
] |
1b76cbc289633f1555a67148619600136f2bdc26 | 14,180 | cpp | C++ | src/drivers/qurt/fc_addon/uart_esc/uart_esc_main.cpp | StrangeChen/Firmware | 1bef35d843cf423746347ac77fd4636410b9b7b7 | [
"BSD-3-Clause"
] | 8 | 2017-12-02T15:00:44.000Z | 2022-03-29T15:09:12.000Z | src/drivers/qurt/fc_addon/uart_esc/uart_esc_main.cpp | StrangeChen/Firmware | 1bef35d843cf423746347ac77fd4636410b9b7b7 | [
"BSD-3-Clause"
] | null | null | null | src/drivers/qurt/fc_addon/uart_esc/uart_esc_main.cpp | StrangeChen/Firmware | 1bef35d843cf423746347ac77fd4636410b9b7b7 | [
"BSD-3-Clause"
] | 10 | 2019-04-02T09:06:30.000Z | 2021-06-23T15:52:33.000Z | /****************************************************************************
*
* Copyright (c) 2015 Mark Charlebois. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of so... | 27.164751 | 165 | 0.68378 | [
"model"
] |
1b79d66d38b43e9b4e3f39f8d5db28a9b715cd0c | 17,420 | cxx | C++ | Common/Core/Testing/Cxx/TestArrayLookup.cxx | ciwei100000/vtk7 | 3a6996b27159d4e89979669a93d05e65855ed993 | [
"BSD-3-Clause"
] | 1 | 2021-12-02T07:23:36.000Z | 2021-12-02T07:23:36.000Z | Common/Core/Testing/Cxx/TestArrayLookup.cxx | ciwei100000/vtk7 | 3a6996b27159d4e89979669a93d05e65855ed993 | [
"BSD-3-Clause"
] | null | null | null | Common/Core/Testing/Cxx/TestArrayLookup.cxx | ciwei100000/vtk7 | 3a6996b27159d4e89979669a93d05e65855ed993 | [
"BSD-3-Clause"
] | 1 | 2021-12-02T07:29:15.000Z | 2021-12-02T07:29:15.000Z | /*=========================================================================
Program: Visualization Toolkit
Module: TestArrayLookup.cxx
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software ... | 26.038864 | 150 | 0.553559 | [
"vector"
] |
1b7c141170bfdbff017c4f30775a3fa9516cb151 | 209 | cpp | C++ | Cpp_primer_5th/code_part10/prog10_34.cpp | Links789/Cpp_primer_5th | 18a60b75c358a79fdf006f8cb978c9be6e6aedd5 | [
"MIT"
] | null | null | null | Cpp_primer_5th/code_part10/prog10_34.cpp | Links789/Cpp_primer_5th | 18a60b75c358a79fdf006f8cb978c9be6e6aedd5 | [
"MIT"
] | null | null | null | Cpp_primer_5th/code_part10/prog10_34.cpp | Links789/Cpp_primer_5th | 18a60b75c358a79fdf006f8cb978c9be6e6aedd5 | [
"MIT"
] | null | null | null | #include <iostream>
#include <vector>
using namespace std;
int main(){
vector<int> vec{1,2,3,4,5,6};
for(auto i = vec.crbegin(); i != vec.crend() ; ++i)
cout << *i << " ";
cout <<endl;
return 0;
}
| 14.928571 | 52 | 0.564593 | [
"vector"
] |
b84766c5fdff4d54d4d7262165004eca604a9ca3 | 8,989 | cpp | C++ | src/transforms/slidingWindowRealDFTParameters.cpp | bakerb845/rtseis | 7d1e9493e68c9d848daa5b5e89239cdfcddaa757 | [
"MIT"
] | 2 | 2021-03-27T17:26:06.000Z | 2022-02-02T16:55:10.000Z | src/transforms/slidingWindowRealDFTParameters.cpp | uofuseismo/rtseis | ee44ea68c22726cf0d24485e205cb91bc15436da | [
"MIT"
] | 1 | 2020-01-08T17:25:07.000Z | 2020-02-24T15:50:21.000Z | src/transforms/slidingWindowRealDFTParameters.cpp | bakerb845/rtseis | 7d1e9493e68c9d848daa5b5e89239cdfcddaa757 | [
"MIT"
] | 2 | 2019-11-19T06:32:35.000Z | 2020-12-11T04:20:38.000Z | #include <iostream>
#include <string>
#include <vector>
#include <cassert>
#include <ipps.h>
#include "rtseis/utilities/windowFunctions.hpp"
#include "rtseis/transforms/slidingWindowRealDFTParameters.hpp"
#include "rtseis/transforms/enums.hpp"
using namespace RTSeis::Transforms;
class SlidingWindowRealDFTParameters::... | 29.472131 | 85 | 0.688508 | [
"vector"
] |
b84e404af5e9e55d1f02d0de1282496258193281 | 7,583 | hpp | C++ | TrainingExtensions/common/include/QcOp/qc_quantizer.hpp | Rohan-Chaudhury/aimet | 1c38cac8cc0fd32dca40ce5e39940805d29f7a4a | [
"BSD-3-Clause"
] | 3 | 2021-08-23T13:00:54.000Z | 2021-11-17T10:52:36.000Z | TrainingExtensions/common/include/QcOp/qc_quantizer.hpp | Rohan-Chaudhury/aimet | 1c38cac8cc0fd32dca40ce5e39940805d29f7a4a | [
"BSD-3-Clause"
] | null | null | null | TrainingExtensions/common/include/QcOp/qc_quantizer.hpp | Rohan-Chaudhury/aimet | 1c38cac8cc0fd32dca40ce5e39940805d29f7a4a | [
"BSD-3-Clause"
] | 1 | 2021-03-06T18:40:33.000Z | 2021-03-06T18:40:33.000Z | //==============================================================================
//
// @@-COPYRIGHT-START-@@
//
// Copyright (c) 2017-2018, Qualcomm Innovation Center, Inc. All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the ... | 37.726368 | 104 | 0.621126 | [
"object",
"vector"
] |
b84e77510544c0b61393e61d106df23fa15726db | 6,256 | cpp | C++ | src/examples.cpp | einKnie/Logger | 40da940163aa650592161ad3d2c2d2bf6c575bbc | [
"MIT"
] | null | null | null | src/examples.cpp | einKnie/Logger | 40da940163aa650592161ad3d2c2d2bf6c575bbc | [
"MIT"
] | null | null | null | src/examples.cpp | einKnie/Logger | 40da940163aa650592161ad3d2c2d2bf6c575bbc | [
"MIT"
] | null | null | null | // __
// / / ___ __ _ __ _ ___ _ __
// / / / _ \ / _` |/ _` |/ _ \ '__|
// / /___| (_) | (_| | (_| | __/ |
// \____/ \___/ \__, |\__, |\___|_|
// |___/ |___/ v1.0
// <ramharter>
/// @file examples.cpp
/// @brief All example code used in the doxygen exampl... | 31.437186 | 105 | 0.622602 | [
"object"
] |
b8506bf2547682d59f8e318c74a126a893fad510 | 9,848 | cpp | C++ | core/render2d/src/render_params.cpp | mongrzzzzzfr/Indigo | 07cb744a90ff17828f8c1185bcc2e78cb4e882b3 | [
"Apache-2.0"
] | 1 | 2021-08-15T02:53:35.000Z | 2021-08-15T02:53:35.000Z | core/render2d/src/render_params.cpp | mongrzzzzzfr/Indigo | 07cb744a90ff17828f8c1185bcc2e78cb4e882b3 | [
"Apache-2.0"
] | null | null | null | core/render2d/src/render_params.cpp | mongrzzzzzfr/Indigo | 07cb744a90ff17828f8c1185bcc2e78cb4e882b3 | [
"Apache-2.0"
] | null | null | null | /****************************************************************************
* Copyright (C) from 2009 to Present EPAM Systems.
*
* This file is part of Indigo toolkit.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You ma... | 32.50165 | 149 | 0.598599 | [
"render",
"object"
] |
b85ad703e509a99c139bae6ce256a6471b5456a8 | 78,323 | cpp | C++ | Engine/Core/Scene.cpp | bioglaze/aether3d | e45ac96508c74b4497a00365067590fa3f7a6eff | [
"Zlib"
] | 216 | 2015-04-19T22:08:24.000Z | 2022-02-12T04:14:48.000Z | Engine/Core/Scene.cpp | bioglaze/aether3d | e45ac96508c74b4497a00365067590fa3f7a6eff | [
"Zlib"
] | 5 | 2015-05-16T12:37:39.000Z | 2022-03-06T16:28:17.000Z | Engine/Core/Scene.cpp | bioglaze/aether3d | e45ac96508c74b4497a00365067590fa3f7a6eff | [
"Zlib"
] | 14 | 2015-07-04T13:06:53.000Z | 2021-05-05T01:34:20.000Z | // This is an independent project of an individual developer. Dear PVS-Studio, please check it.
// PVS-Studio Static Code Analyzer for C, C++, C#, and Java: http://www.viva64.com
#include "Scene.hpp"
#include <algorithm>
#include <chrono>
#include <locale>
#include <string>
#include <sstream>
#include <vector>
#include... | 40.899739 | 309 | 0.599275 | [
"mesh",
"render",
"object",
"vector",
"transform"
] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.