hexsha stringlengths 40 40 | size int64 7 1.05M | ext stringclasses 13
values | lang stringclasses 1
value | max_stars_repo_path stringlengths 4 269 | max_stars_repo_name stringlengths 5 108 | max_stars_repo_head_hexsha stringlengths 40 40 | max_stars_repo_licenses listlengths 1 9 | max_stars_count int64 1 191k ⌀ | max_stars_repo_stars_event_min_datetime stringlengths 24 24 ⌀ | max_stars_repo_stars_event_max_datetime stringlengths 24 24 ⌀ | max_issues_repo_path stringlengths 4 269 | max_issues_repo_name stringlengths 5 116 | max_issues_repo_head_hexsha stringlengths 40 40 | max_issues_repo_licenses listlengths 1 9 | max_issues_count int64 1 67k ⌀ | max_issues_repo_issues_event_min_datetime stringlengths 24 24 ⌀ | max_issues_repo_issues_event_max_datetime stringlengths 24 24 ⌀ | max_forks_repo_path stringlengths 4 269 | max_forks_repo_name stringlengths 5 116 | max_forks_repo_head_hexsha stringlengths 40 40 | max_forks_repo_licenses listlengths 1 9 | max_forks_count int64 1 105k ⌀ | max_forks_repo_forks_event_min_datetime stringlengths 24 24 ⌀ | max_forks_repo_forks_event_max_datetime stringlengths 24 24 ⌀ | content stringlengths 7 1.05M | avg_line_length float64 1.21 330k | max_line_length int64 6 990k | alphanum_fraction float64 0.01 0.99 | author_id stringlengths 2 40 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
14072d437d496136cab9dfbecb630944343c56d4 | 1,319 | cpp | C++ | Queues/reverse-queue.cpp | divyanshu013/algorithm-journey | 8dc32daa732f16099da148bb8669778d4ef3172a | [
"MIT"
] | null | null | null | Queues/reverse-queue.cpp | divyanshu013/algorithm-journey | 8dc32daa732f16099da148bb8669778d4ef3172a | [
"MIT"
] | null | null | null | Queues/reverse-queue.cpp | divyanshu013/algorithm-journey | 8dc32daa732f16099da148bb8669778d4ef3172a | [
"MIT"
] | null | null | null | /*******************************************************************************
Reverse queue
=============
Ref - http://stackoverflow.com/questions/818443/a-way-to-reverse-queue-using-only-two-temporary-queues-and-nothing-more
--------------------------------------------------------------------------------
Proble... | 19.115942 | 119 | 0.357089 | divyanshu013 |
140980d3acc936fb7e6a5c6088ade9e08ea75213 | 2,100 | cpp | C++ | Sliding-Window/Minimum-Window-Substring-76.cpp | devangi2000/Data-Structures-Algorithms-Handbook | ce0f00de89af5da7f986e65089402dc6908a09b5 | [
"MIT"
] | 38 | 2021-10-14T09:36:53.000Z | 2022-01-27T02:36:19.000Z | Sliding-Window/Minimum-Window-Substring-76.cpp | devangi2000/Data-Structures-Algorithms-Handbook | ce0f00de89af5da7f986e65089402dc6908a09b5 | [
"MIT"
] | null | null | null | Sliding-Window/Minimum-Window-Substring-76.cpp | devangi2000/Data-Structures-Algorithms-Handbook | ce0f00de89af5da7f986e65089402dc6908a09b5 | [
"MIT"
] | 4 | 2021-12-06T15:47:12.000Z | 2022-02-04T04:25:00.000Z | // Given two strings s and t of lengths m and n respectively, return the minimum window
// substring of s such that every character in t (including duplicates) is included in
// the window. If there is no such substring, return the empty string "".
// The testcases will be generated such that the answer is unique.
... | 30.434783 | 94 | 0.622857 | devangi2000 |
140c141c0356cdf7f84a11e08a4509f0fc73c34a | 455 | cpp | C++ | examples/app-libs-depends/src/main.cpp | str2num/buildmake | 6320bb9e86cb1bc20c51f4f980a83cdd5ac49e8d | [
"BSD-3-Clause"
] | 11 | 2017-11-10T12:24:18.000Z | 2021-05-08T03:37:32.000Z | examples/app-libs-depends/src/main.cpp | str2num/buildmake | 6320bb9e86cb1bc20c51f4f980a83cdd5ac49e8d | [
"BSD-3-Clause"
] | null | null | null | examples/app-libs-depends/src/main.cpp | str2num/buildmake | 6320bb9e86cb1bc20c51f4f980a83cdd5ac49e8d | [
"BSD-3-Clause"
] | 1 | 2019-01-26T19:32:34.000Z | 2019-01-26T19:32:34.000Z | /***************************************************************************
*
* Copyright (c) 2017 str2num.com, Inc. All Rights Reserved
* $Id$
*
**************************************************************************/
/**
* @file main.cpp
* @author str2num
* @version $Revision$
* @brief
*
*... | 16.25 | 76 | 0.342857 | str2num |
140df2b1c3eac69c11cd8bea488181b59931018e | 937 | cpp | C++ | source/Ch08/swap.cpp | gorzsaszarvak/UDProg-Introduction | 591d1d05c950da2ab4d59d78cbf5a1408caa78e6 | [
"CC0-1.0"
] | null | null | null | source/Ch08/swap.cpp | gorzsaszarvak/UDProg-Introduction | 591d1d05c950da2ab4d59d78cbf5a1408caa78e6 | [
"CC0-1.0"
] | null | null | null | source/Ch08/swap.cpp | gorzsaszarvak/UDProg-Introduction | 591d1d05c950da2ab4d59d78cbf5a1408caa78e6 | [
"CC0-1.0"
] | null | null | null | #include "../../std_lib_facilities.h"
void swap_v(int a, int b)
{
int temp;
temp=a;
a=b;
b=temp;
}
void swap_r(int& a, int& b)
{
int temp;
temp=a;
a=b;
b=temp;
}
/*void swap_cr(const int& a, const int& b)
{
int temp;
temp=a;
a=b;
b=temp;
}
*/
int main()
{
int x = 7;
int y = 9;
cout << "x: " << x << ",... | 15.360656 | 64 | 0.459979 | gorzsaszarvak |
140e9fa23e5777fae72eb128a8ac762c0b5cad5d | 426,132 | hpp | C++ | zeccup/zeccup/military/woodland/fort.hpp | LISTINGS09/ZECCUP | e0ad1fae580dde6e5d90903b1295fecc41684f63 | [
"Naumen",
"Condor-1.1",
"MS-PL"
] | 3 | 2016-08-29T09:23:49.000Z | 2019-06-13T20:29:28.000Z | zeccup/zeccup/military/woodland/fort.hpp | LISTINGS09/ZECCUP | e0ad1fae580dde6e5d90903b1295fecc41684f63 | [
"Naumen",
"Condor-1.1",
"MS-PL"
] | null | null | null | zeccup/zeccup/military/woodland/fort.hpp | LISTINGS09/ZECCUP | e0ad1fae580dde6e5d90903b1295fecc41684f63 | [
"Naumen",
"Condor-1.1",
"MS-PL"
] | null | null | null | class FortLarge
{
name = $STR_ZECCUP_FortLarge;
class MortarPit_CUP_O_RU {
name = $STR_ZECCUP_MilitaryWoodland_FortLarge_MortarPit_CUP_O_RU; // Credit: 2600K
icon = "\ca\data\flag_rus_co.paa";
side = 8;
class Object1 {side = 8; vehicle = "Land_fort_rampart"; rank = ""; position[] = {-2.458... | 102.288046 | 142 | 0.617586 | LISTINGS09 |
14102c4a0ed80618ca80ccacb8b2d709bc8380c9 | 7,820 | cpp | C++ | externals/browser/externals/browser/externals/libgeometry/geometry/estimate-point-normals.cpp | HanochZhu/vts-browser-unity-plugin | 32a22d41e21b95fb015326f95e401d87756d0374 | [
"BSD-2-Clause"
] | 1 | 2021-09-02T08:42:59.000Z | 2021-09-02T08:42:59.000Z | externals/browser/externals/browser/externals/libgeometry/geometry/estimate-point-normals.cpp | HanochZhu/vts-browser-unity-plugin | 32a22d41e21b95fb015326f95e401d87756d0374 | [
"BSD-2-Clause"
] | null | null | null | externals/browser/externals/browser/externals/libgeometry/geometry/estimate-point-normals.cpp | HanochZhu/vts-browser-unity-plugin | 32a22d41e21b95fb015326f95e401d87756d0374 | [
"BSD-2-Clause"
] | null | null | null | /**
* Copyright (c) 2020 Melown Technologies SE
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* * Redistributions of source code must retain the above copyright notice,
* this list of conditions and the f... | 37.416268 | 97 | 0.602046 | HanochZhu |
1410beb61ab5c3b500d4c939dcf5c1dbd52be287 | 5,528 | cpp | C++ | source/Process/Blend/Blend.cpp | Fabrice-Praxinos/ULIS | 232ad5c0804da1202d8231fda67ff4aea70f57ef | [
"RSA-MD"
] | 30 | 2020-09-16T17:39:36.000Z | 2022-02-17T08:32:53.000Z | source/Process/Blend/Blend.cpp | Fabrice-Praxinos/ULIS | 232ad5c0804da1202d8231fda67ff4aea70f57ef | [
"RSA-MD"
] | 7 | 2020-11-23T14:37:15.000Z | 2022-01-17T11:35:32.000Z | source/Process/Blend/Blend.cpp | Fabrice-Praxinos/ULIS | 232ad5c0804da1202d8231fda67ff4aea70f57ef | [
"RSA-MD"
] | 5 | 2020-09-17T00:39:14.000Z | 2021-08-30T16:14:07.000Z | // IDDN FR.001.250001.004.S.X.2019.000.00000
// ULIS is subject to copyright laws and is the legal and intellectual property of Praxinos,Inc
/*
* ULIS
*__________________
* @file Blend.cpp
* @author Clement Berthaud
* @brief This file provides the definitions for the Blend API.
* @copyright Co... | 53.153846 | 116 | 0.833575 | Fabrice-Praxinos |
1410fc8ac128559dbe0e8b9df211292c0f384f35 | 839 | cpp | C++ | CSES/String Algorithms/String Matching.cpp | Ashwanigupta9125/code-DS-ALGO | 49f6cf7d0c682da669db23619aef3f80697b352b | [
"MIT"
] | 36 | 2019-12-27T08:23:08.000Z | 2022-01-24T20:35:47.000Z | CSES/String Algorithms/String Matching.cpp | Ashwanigupta9125/code-DS-ALGO | 49f6cf7d0c682da669db23619aef3f80697b352b | [
"MIT"
] | 10 | 2019-11-13T02:55:18.000Z | 2021-10-13T23:28:09.000Z | CSES/String Algorithms/String Matching.cpp | Ashwanigupta9125/code-DS-ALGO | 49f6cf7d0c682da669db23619aef3f80697b352b | [
"MIT"
] | 53 | 2020-08-15T11:08:40.000Z | 2021-10-09T15:51:38.000Z | // number of matches of a pattern in a text
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using ld = long double;
#define all(x) x.begin(), x.end()
#define ff first
#define ss second
#define rep(i,n) for (ll i = 0; i < n; ++i)
#define forn(i,a,b) for (ll i =a; i <=b; ++i)
#define revforn(i,a,b) fo... | 23.971429 | 52 | 0.488677 | Ashwanigupta9125 |
1412ddbcbc628a60b8c2c08545deaf1fcfd105bf | 1,895 | cpp | C++ | sdf.cpp | temple-reconstruction/mview | 1440b5716d595c5c4d568fc45dd5afbb6f54dfc7 | [
"MIT"
] | 3 | 2018-09-17T07:39:35.000Z | 2020-02-24T21:09:27.000Z | sdf.cpp | temple-reconstruction/mview | 1440b5716d595c5c4d568fc45dd5afbb6f54dfc7 | [
"MIT"
] | 1 | 2018-06-11T19:25:03.000Z | 2018-06-11T21:51:32.000Z | sdf.cpp | temple-reconstruction/mview | 1440b5716d595c5c4d568fc45dd5afbb6f54dfc7 | [
"MIT"
] | null | null | null | #include "sdf.h"
#include "MarchingCubes.h"
#include <iostream>
SdfIntegrator::SdfIntegrator(int x, int y, int z, coordinate min, coordinate max) :
min(min), size(max - min),
count_x(x), count_y(y), count_z(z),
cubes(new Cube[x*y*z])
{ }
auto SdfIntegrator::coordinate_of(int x, int y, int z) const -> coordinate {
... | 25.266667 | 83 | 0.671768 | temple-reconstruction |
1414559f491aa69e2d95b0c0e931bc6b2cc202fc | 14,995 | cc | C++ | src/ray/gcs/gcs_server/gcs_placement_group_manager.cc | carlos-aguayo/ray | fedbdd5dc6a47aa9cba170816f8c0950193b4fd6 | [
"Apache-2.0"
] | 1 | 2021-04-08T12:02:58.000Z | 2021-04-08T12:02:58.000Z | src/ray/gcs/gcs_server/gcs_placement_group_manager.cc | carlos-aguayo/ray | fedbdd5dc6a47aa9cba170816f8c0950193b4fd6 | [
"Apache-2.0"
] | null | null | null | src/ray/gcs/gcs_server/gcs_placement_group_manager.cc | carlos-aguayo/ray | fedbdd5dc6a47aa9cba170816f8c0950193b4fd6 | [
"Apache-2.0"
] | null | null | null | // Copyright 2017 The Ray Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to i... | 42.599432 | 90 | 0.722774 | carlos-aguayo |
1414b67b106149105bdf80d82263808247c3b238 | 35,590 | cpp | C++ | sensors/Activity/device.cpp | Acidburn0zzz/Windows-driver-samples | 92ba1ee26ecd79412c91ffbb59aabd12a7c28e5a | [
"MS-PL"
] | 3 | 2016-12-10T12:54:20.000Z | 2018-06-09T13:28:33.000Z | sensors/Activity/device.cpp | gilson27/Windows-driver-samples | 6e1115d6af3c22b693eccc472ebb0d53a1905cd9 | [
"MS-PL"
] | null | null | null | sensors/Activity/device.cpp | gilson27/Windows-driver-samples | 6e1115d6af3c22b693eccc472ebb0d53a1905cd9 | [
"MS-PL"
] | 5 | 2017-10-21T11:01:08.000Z | 2021-06-06T19:27:56.000Z | // Copyright (C) Microsoft Corporation, All Rights Reserved.
//
// Abstract:
// This module contains the type definitions for the client driver's device callback class.
//
// Environment:
// Windows User-Mode Driver Framework (UMDF)
#include "Device.h"
#include "HardwareSimulator.h"
#include "Device.... | 42.827918 | 168 | 0.665159 | Acidburn0zzz |
1414ea81c54b9fb70de43d45206bf4b0c446824a | 1,455 | cpp | C++ | Game/fmodapi/tools/example.cpp | hackerlank/SourceCode | b702c9e0a9ca5d86933f3c827abb02a18ffc9a59 | [
"MIT"
] | 4 | 2021-07-31T13:56:01.000Z | 2021-11-13T02:55:10.000Z | Game/fmodapi/tools/example.cpp | shacojx/SourceCodeGameTLBB | e3cea615b06761c2098a05427a5f41c236b71bf7 | [
"MIT"
] | null | null | null | Game/fmodapi/tools/example.cpp | shacojx/SourceCodeGameTLBB | e3cea615b06761c2098a05427a5f41c236b71bf7 | [
"MIT"
] | 7 | 2021-08-31T14:34:23.000Z | 2022-01-19T08:25:58.000Z | #include "fsbanklib.h"
#include <stdio.h>
#define NUMFILES 2
char *files[NUMFILES] =
{
"jbtennis.wav",
"drumloop.wav"
};
void __stdcall Update(int index, int memused, void *userdata)
{
printf("UPDATE : File %s, memory used %d kb\n", files[index], memused / 1024);
}
void __stdcall Debug(const char *debu... | 20.492958 | 144 | 0.59244 | hackerlank |
141841843e8b17d6d4b2c4eac2143a40d6543c9e | 6,149 | hpp | C++ | include/boost/json/except.hpp | AeroStun/json | 14bc67b63f5ce6ae5a119e2957e1f44f15277f5b | [
"BSL-1.0"
] | null | null | null | include/boost/json/except.hpp | AeroStun/json | 14bc67b63f5ce6ae5a119e2957e1f44f15277f5b | [
"BSL-1.0"
] | null | null | null | include/boost/json/except.hpp | AeroStun/json | 14bc67b63f5ce6ae5a119e2957e1f44f15277f5b | [
"BSL-1.0"
] | 1 | 2017-04-20T20:17:06.000Z | 2017-04-20T20:17:06.000Z | //
// Copyright (c) 2019 Vinnie Falco (vinnie.falco@gmail.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)
//
// Official repository: https://github.com/vinniefalco/json
//
#ifndef BOOST_JSON_EXCEPT_HPP
#def... | 20.029316 | 79 | 0.715238 | AeroStun |
141abd68d2f847866d82ff8eb4e2a709256861aa | 1,025 | cpp | C++ | UpdateSystemTest/src/Utils.cpp | ProtocolONE/cord.update-system | ec14aa3210f41f788d2ea3229d36bff7f0b327d0 | [
"Apache-2.0"
] | 1 | 2019-08-07T06:13:57.000Z | 2019-08-07T06:13:57.000Z | UpdateSystemTest/src/Utils.cpp | ProtocolONE/cord.update-system | ec14aa3210f41f788d2ea3229d36bff7f0b327d0 | [
"Apache-2.0"
] | null | null | null | UpdateSystemTest/src/Utils.cpp | ProtocolONE/cord.update-system | ec14aa3210f41f788d2ea3229d36bff7f0b327d0 | [
"Apache-2.0"
] | null | null | null | #include <QDir>
#include <QFile>
#include <QFileInfo>
#include <QFileInfoList>
#include "Utils.h"
/*!
Delete a directory along with all of its contents.
\param dirName Path of directory to remove.
\return true on success; false on error.
*/
bool Utils::removeDir(const QString &dirName){
... | 25 | 155 | 0.564878 | ProtocolONE |
141c4cc310f0ca27dcf5ae9336bf97d68814b9cd | 12,936 | cpp | C++ | frameworks/src/coordinator/remote_object_task.cpp | dawmlight/distributeddatamgr_objectstore | d0ae9988a9e88581123b5d6ea62dcedcb9609f85 | [
"Apache-2.0"
] | null | null | null | frameworks/src/coordinator/remote_object_task.cpp | dawmlight/distributeddatamgr_objectstore | d0ae9988a9e88581123b5d6ea62dcedcb9609f85 | [
"Apache-2.0"
] | null | null | null | frameworks/src/coordinator/remote_object_task.cpp | dawmlight/distributeddatamgr_objectstore | d0ae9988a9e88581123b5d6ea62dcedcb9609f85 | [
"Apache-2.0"
] | null | null | null | /*
* Copyright (c) 2021 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law ... | 36.033426 | 106 | 0.63791 | dawmlight |
141d0b840a2cf00bb5242cdd3c12ca0a1936ccf3 | 25,246 | cc | C++ | content/browser/renderer_host/pepper/pepper_udp_socket_message_filter.cc | zipated/src | 2b8388091c71e442910a21ada3d97ae8bc1845d3 | [
"BSD-3-Clause"
] | 2,151 | 2020-04-18T07:31:17.000Z | 2022-03-31T08:39:18.000Z | content/browser/renderer_host/pepper/pepper_udp_socket_message_filter.cc | cangulcan/src | 2b8388091c71e442910a21ada3d97ae8bc1845d3 | [
"BSD-3-Clause"
] | 395 | 2020-04-18T08:22:18.000Z | 2021-12-08T13:04:49.000Z | content/browser/renderer_host/pepper/pepper_udp_socket_message_filter.cc | cangulcan/src | 2b8388091c71e442910a21ada3d97ae8bc1845d3 | [
"BSD-3-Clause"
] | 338 | 2020-04-18T08:03:10.000Z | 2022-03-29T12:33:22.000Z | // Copyright 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.
#include "content/browser/renderer_host/pepper/pepper_udp_socket_message_filter.h"
#include <cstring>
#include <utility>
#include "base/compiler_specifi... | 33.087811 | 82 | 0.71037 | zipated |
141faafd7c3e5f3d9a4870c5fc32bcc32246602f | 33,724 | cc | C++ | src/yb/integration-tests/tablet-split-itest.cc | adzimzf/yugabyte-db | 3a4b1562c5897c16a3f25555d1eb12f7748f499b | [
"Apache-2.0",
"CC0-1.0"
] | null | null | null | src/yb/integration-tests/tablet-split-itest.cc | adzimzf/yugabyte-db | 3a4b1562c5897c16a3f25555d1eb12f7748f499b | [
"Apache-2.0",
"CC0-1.0"
] | null | null | null | src/yb/integration-tests/tablet-split-itest.cc | adzimzf/yugabyte-db | 3a4b1562c5897c16a3f25555d1eb12f7748f499b | [
"Apache-2.0",
"CC0-1.0"
] | null | null | null | // Copyright (c) YugaByte, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
// in compliance with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writ... | 38.541714 | 100 | 0.72527 | adzimzf |
1420aa8dcc9b4b17b4c79002043fcccefc195e7d | 6,593 | cpp | C++ | Sources/Elastos/Frameworks/Droid/Base/Core/src/elastos/droid/service/notification/ConditionProviderService.cpp | jingcao80/Elastos | d0f39852356bdaf3a1234743b86364493a0441bc | [
"Apache-2.0"
] | 7 | 2017-07-13T10:34:54.000Z | 2021-04-16T05:40:35.000Z | Sources/Elastos/Frameworks/Droid/Base/Core/src/elastos/droid/service/notification/ConditionProviderService.cpp | jingcao80/Elastos | d0f39852356bdaf3a1234743b86364493a0441bc | [
"Apache-2.0"
] | null | null | null | Sources/Elastos/Frameworks/Droid/Base/Core/src/elastos/droid/service/notification/ConditionProviderService.cpp | jingcao80/Elastos | d0f39852356bdaf3a1234743b86364493a0441bc | [
"Apache-2.0"
] | 9 | 2017-07-13T12:33:20.000Z | 2021-06-19T02:46:48.000Z | //=========================================================================
// Copyright (C) 2012 The Elastos Open Source Project
//
// 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
//
// ... | 28.418103 | 94 | 0.629455 | jingcao80 |
1421a165f7ee36e62ecade9c843075ed6146f5c6 | 719 | cpp | C++ | C++/LeetCode/0784.cpp | spycedcoffee/DSA | 1e559ed5251a2005cc2815438d865f0293f4cd44 | [
"MIT"
] | 4 | 2021-08-28T19:16:50.000Z | 2022-03-04T19:46:31.000Z | C++/LeetCode/0784.cpp | spycedcoffee/DSA | 1e559ed5251a2005cc2815438d865f0293f4cd44 | [
"MIT"
] | 8 | 2021-10-29T19:10:51.000Z | 2021-11-03T12:38:00.000Z | C++/LeetCode/0784.cpp | spycedcoffee/DSA | 1e559ed5251a2005cc2815438d865f0293f4cd44 | [
"MIT"
] | 4 | 2021-09-06T05:53:07.000Z | 2021-12-24T10:31:40.000Z | class Solution {
vector<string> casePerms;
public:
void backtrack(string& s, int pos, string ans){
if(pos == s.length()){
casePerms.push_back(ans);
return;
}
char ch = s[pos];
if(isdigit(ch))
backtrack(s, po... | 21.147059 | 64 | 0.447844 | spycedcoffee |
1422fdd9c8cd1ddead46fbdb93d85edd39527804 | 4,466 | cpp | C++ | MultiSource/Benchmarks/Bullet/btTetrahedronShape.cpp | gmlueck/llvm-test-suite | 7ff842b8fec970561fed78c9347e496538cf74f5 | [
"Apache-2.0"
] | 70 | 2019-01-15T03:03:55.000Z | 2022-03-28T02:16:13.000Z | MultiSource/Benchmarks/Bullet/btTetrahedronShape.cpp | gmlueck/llvm-test-suite | 7ff842b8fec970561fed78c9347e496538cf74f5 | [
"Apache-2.0"
] | 519 | 2020-09-15T07:40:51.000Z | 2022-03-31T20:51:15.000Z | MultiSource/Benchmarks/Bullet/btTetrahedronShape.cpp | gmlueck/llvm-test-suite | 7ff842b8fec970561fed78c9347e496538cf74f5 | [
"Apache-2.0"
] | 117 | 2020-06-24T13:11:04.000Z | 2022-03-23T15:44:23.000Z | /*
Bullet Continuous Collision Detection and Physics Library
Copyright (c) 2003-2009 Erwin Coumans http://bulletphysics.org
This software is provided 'as-is', without any express or implied warranty.
In no event will the authors be held liable for any damages arising from the use of this software.
Permission is grant... | 20.392694 | 243 | 0.725929 | gmlueck |
142384fba7072142c189881bd7c0d680cca3d49b | 388 | cpp | C++ | SYCL/DeviceLib/assert-aot.cpp | Fznamznon/llvm-test-suite | e813726bf0c5c6af67a188ee86daea55fa871a5d | [
"Apache-2.0"
] | null | null | null | SYCL/DeviceLib/assert-aot.cpp | Fznamznon/llvm-test-suite | e813726bf0c5c6af67a188ee86daea55fa871a5d | [
"Apache-2.0"
] | null | null | null | SYCL/DeviceLib/assert-aot.cpp | Fznamznon/llvm-test-suite | e813726bf0c5c6af67a188ee86daea55fa871a5d | [
"Apache-2.0"
] | null | null | null | // REQUIRES: opencl-aot, cpu, linux, UNSUPPORTED
// FIXME re-enable after intel/llvm#3767 is merged
// RUN: %clangxx -fsycl -fsycl-targets=spir64_x86_64-unknown-unknown-sycldevice %S/assert.cpp -o %t.aot.out
// RUN: %CPU_RUN_PLACEHOLDER EXPECTED_SIGNAL=SIGABRT SHOULD_CRASH=1 %t.aot.out 2>%t.aot.msg
// RUN: FileCheck %... | 55.428571 | 107 | 0.752577 | Fznamznon |
14246c6fa4f58d9da36f1b1f5d1f2e15f9555025 | 37,061 | cpp | C++ | Code/Engine/Math/MathUtils.cpp | yixuan-wei/PersonalEngine | 6f3b1df3ddeb662fbf65ca8b3ea7ddb446ef5a20 | [
"MIT"
] | 1 | 2021-06-11T06:41:29.000Z | 2021-06-11T06:41:29.000Z | Code/Engine/Math/MathUtils.cpp | yixuan-wei/PersonalEngine | 6f3b1df3ddeb662fbf65ca8b3ea7ddb446ef5a20 | [
"MIT"
] | 1 | 2022-02-25T07:46:54.000Z | 2022-02-25T07:46:54.000Z | Code/Engine/Math/MathUtils.cpp | yixuan-wei/PersonalEngine | 6f3b1df3ddeb662fbf65ca8b3ea7ddb446ef5a20 | [
"MIT"
] | null | null | null | #include "Engine/Math/MathUtils.hpp"
#include "Engine/Math/Vec3.hpp"
#include "Engine/Math/Vec2.hpp"
#include "Engine/Math/Vec4.hpp"
#include "Engine/Math/OBB2.hpp"
#include "Engine/Math/Disc2.hpp"
#include "Engine/Math/FloatRange.hpp"
#include "Engine/Math/IntVec2.hpp"
#include "Engine/Math/AABB2.hpp"
#include "Engine... | 31.434266 | 161 | 0.574323 | yixuan-wei |
142514ddf7308fec5550c2767570a8b9bafc58e0 | 5,617 | hpp | C++ | include/ips4o/block_permutation.hpp | cheshyre/ips4o | 59e240059379c348dc2b702d171e1dc9cb10d586 | [
"BSD-2-Clause"
] | 69 | 2020-10-02T10:24:25.000Z | 2022-03-19T14:40:17.000Z | include/ips4o/block_permutation.hpp | cheshyre/ips4o | 59e240059379c348dc2b702d171e1dc9cb10d586 | [
"BSD-2-Clause"
] | 2 | 2021-09-20T16:03:31.000Z | 2022-01-04T20:25:37.000Z | include/ips4o/block_permutation.hpp | cheshyre/ips4o | 59e240059379c348dc2b702d171e1dc9cb10d586 | [
"BSD-2-Clause"
] | 14 | 2021-04-16T02:31:22.000Z | 2022-03-18T09:39:17.000Z | /******************************************************************************
* include/ips4o/block_permutation.hpp
*
* In-place Parallel Super Scalar Samplesort (IPS⁴o)
*
******************************************************************************
* BSD 2-Clause License
*
* Copyright © 2017, Michael Axtman... | 36.23871 | 87 | 0.634146 | cheshyre |
1426e94577ff8cea1489134309cfd5a6cb524b8d | 7,840 | cpp | C++ | libredex/DexLoader.cpp | gdawg/redex | 857c8dc08c93d2d768bff768dad3d1ff56750690 | [
"MIT"
] | null | null | null | libredex/DexLoader.cpp | gdawg/redex | 857c8dc08c93d2d768bff768dad3d1ff56750690 | [
"MIT"
] | null | null | null | libredex/DexLoader.cpp | gdawg/redex | 857c8dc08c93d2d768bff768dad3d1ff56750690 | [
"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 <boost/iostreams/device/mapped_file.hpp>
#include "DexLoader.h"
#include "DexDefs.h"
#include "DexAccess.h"
#include "IR... | 31.740891 | 79 | 0.658673 | gdawg |
1426ff2a200b72d4b3f94800e871ac8093ad87b4 | 13,444 | cpp | C++ | lib-src/libscorealign/main.cpp | bit-trade-one/SoundModuleAP | 7f26c0f41aad3b0922afe5ab397816fd105d02b4 | [
"CC-BY-3.0"
] | 1 | 2015-10-23T02:39:52.000Z | 2015-10-23T02:39:52.000Z | lib-src/libscorealign/main.cpp | bit-trade-one/SoundModuleAP | 7f26c0f41aad3b0922afe5ab397816fd105d02b4 | [
"CC-BY-3.0"
] | null | null | null | lib-src/libscorealign/main.cpp | bit-trade-one/SoundModuleAP | 7f26c0f41aad3b0922afe5ab397816fd105d02b4 | [
"CC-BY-3.0"
] | null | null | null | /* main.cpp -- the command line interface for scorealign
*
* 14-Jul-08 RBD
*/
#include "stdio.h"
#include "main.h"
#include <fstream>
#include "allegro.h"
#include "audioreader.h"
#include "scorealign.h"
#include "sautils.h"
#include "alignfiles.h"
#include "gen_chroma.h"
#include "comp_chroma.h"
... | 32.95098 | 87 | 0.554894 | bit-trade-one |
1427aa5826b3287720e85bc8104ef422c9a60b21 | 6,505 | cc | C++ | src/storage/volume_image/utils/lz4_compressor.cc | oshunter/fuchsia | 2196fc8c176d01969466b97bba3f31ec55f7767b | [
"BSD-3-Clause"
] | 2 | 2020-08-16T15:32:35.000Z | 2021-11-07T20:09:46.000Z | src/storage/volume_image/utils/lz4_compressor.cc | oshunter/fuchsia | 2196fc8c176d01969466b97bba3f31ec55f7767b | [
"BSD-3-Clause"
] | null | null | null | src/storage/volume_image/utils/lz4_compressor.cc | oshunter/fuchsia | 2196fc8c176d01969466b97bba3f31ec55f7767b | [
"BSD-3-Clause"
] | 1 | 2021-08-15T04:29:11.000Z | 2021-08-15T04:29:11.000Z | // Copyright 2020 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "src/storage/volume_image/utils/lz4_compressor.h"
#include "src/storage/volume_image/options.h"
namespace storage::volume_image {
namespace {
/... | 34.417989 | 100 | 0.708686 | oshunter |
1428f0a86b442b4b67e4cea7685687b2a796bf5c | 4,058 | cpp | C++ | main.cpp | kobli/GPU-fluid_simulation | 99a4f3964a48f8e76be3a545a1358cc92a512ff4 | [
"MIT"
] | null | null | null | main.cpp | kobli/GPU-fluid_simulation | 99a4f3964a48f8e76be3a545a1358cc92a512ff4 | [
"MIT"
] | null | null | null | main.cpp | kobli/GPU-fluid_simulation | 99a4f3964a48f8e76be3a545a1358cc92a512ff4 | [
"MIT"
] | null | null | null | #define _USE_MATH_DEFINES
#include <memory>
#include <sstream>
#include <iomanip>
#include <GL/glew.h>
#include <GL/gl.h>
#include <GL/glext.h>
#include <GL/freeglut.h>
#include "utils.hpp"
#include "application.hpp"
#include "sphGpu.hpp"
#include "sphCpu.hpp"
///////////////////////////// BEGINNING OF CONFIGURATION /... | 22.926554 | 116 | 0.608428 | kobli |
14296e679fb5a62c0dae7adc192ce56cee7d5cf7 | 15,343 | cpp | C++ | engine/gamesys/src/gamesys/resources/res_collision_object.cpp | hakoptak/defold | 1e0dfbe5941c0cc119b24b68241ec536dbefc5de | [
"ECL-2.0",
"Apache-2.0"
] | 2,231 | 2020-05-19T08:25:22.000Z | 2022-03-31T18:51:23.000Z | engine/gamesys/src/gamesys/resources/res_collision_object.cpp | hakoptak/defold | 1e0dfbe5941c0cc119b24b68241ec536dbefc5de | [
"ECL-2.0",
"Apache-2.0"
] | 1,485 | 2020-05-19T10:56:52.000Z | 2022-03-31T16:12:42.000Z | engine/gamesys/src/gamesys/resources/res_collision_object.cpp | hakoptak/defold | 1e0dfbe5941c0cc119b24b68241ec536dbefc5de | [
"ECL-2.0",
"Apache-2.0"
] | 197 | 2020-05-19T10:20:47.000Z | 2022-03-30T09:52:13.000Z | // Copyright 2020 The Defold Foundation
// Licensed under the Defold License version 1.0 (the "License"); you may not use
// this file except in compliance with the License.
//
// You may obtain a copy of the License, together with FAQs at
// https://www.defold.com/license
//
// Unless required by applicable law or agr... | 43.712251 | 159 | 0.599883 | hakoptak |
1429e26b5ca3114c7d54d920bcfb1e047fa18111 | 1,747 | cc | C++ | extensions/common/permissions/mock_manifest_permission.cc | metux/chromium-deb | 3c08e9b89a1b6f95f103a61ff4f528dbcd57fc42 | [
"BSD-3-Clause-No-Nuclear-License-2014",
"BSD-3-Clause"
] | null | null | null | extensions/common/permissions/mock_manifest_permission.cc | metux/chromium-deb | 3c08e9b89a1b6f95f103a61ff4f528dbcd57fc42 | [
"BSD-3-Clause-No-Nuclear-License-2014",
"BSD-3-Clause"
] | null | null | null | extensions/common/permissions/mock_manifest_permission.cc | metux/chromium-deb | 3c08e9b89a1b6f95f103a61ff4f528dbcd57fc42 | [
"BSD-3-Clause-No-Nuclear-License-2014",
"BSD-3-Clause"
] | null | null | null | // Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "extensions/common/permissions/mock_manifest_permission.h"
#include "base/memory/ptr_util.h"
#include "extensions/common/permissions/api_permiss... | 28.639344 | 73 | 0.767602 | metux |
142ab9c6f6448d0532333e247e9629f6d366e0e5 | 437 | cc | C++ | gpu/command_buffer/client/atomicops.cc | gavinp/chromium | 681563ea0f892a051f4ef3d5e53438e0bb7d2261 | [
"BSD-3-Clause"
] | 1 | 2016-03-10T09:13:57.000Z | 2016-03-10T09:13:57.000Z | gpu/command_buffer/client/atomicops.cc | gavinp/chromium | 681563ea0f892a051f4ef3d5e53438e0bb7d2261 | [
"BSD-3-Clause"
] | 1 | 2022-03-13T08:39:05.000Z | 2022-03-13T08:39:05.000Z | gpu/command_buffer/client/atomicops.cc | gavinp/chromium | 681563ea0f892a051f4ef3d5e53438e0bb7d2261 | [
"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 "../client/atomicops.h"
#if !defined(__native_client__)
#include "base/atomicops.h"
#endif
namespace gpu {
void MemoryBarrier() {
#if defi... | 19 | 73 | 0.727689 | gavinp |
289f713aef0c7ec09bdca2676d6242c798567c2b | 2,112 | cpp | C++ | cpp/godot-cpp/src/gen/NavigationPolygonInstance.cpp | GDNative-Gradle/proof-of-concept | 162f467430760cf959f68f1638adc663fd05c5fd | [
"MIT"
] | 1 | 2021-03-16T09:51:00.000Z | 2021-03-16T09:51:00.000Z | cpp/godot-cpp/src/gen/NavigationPolygonInstance.cpp | GDNative-Gradle/proof-of-concept | 162f467430760cf959f68f1638adc663fd05c5fd | [
"MIT"
] | null | null | null | cpp/godot-cpp/src/gen/NavigationPolygonInstance.cpp | GDNative-Gradle/proof-of-concept | 162f467430760cf959f68f1638adc663fd05c5fd | [
"MIT"
] | null | null | null | #include "NavigationPolygonInstance.hpp"
#include <core/GodotGlobal.hpp>
#include <core/CoreTypes.hpp>
#include <core/Ref.hpp>
#include <core/Godot.hpp>
#include "__icalls.hpp"
#include "NavigationPolygon.hpp"
namespace godot {
NavigationPolygonInstance::___method_bindings NavigationPolygonInstance::___mb = {}... | 40.615385 | 231 | 0.822443 | GDNative-Gradle |
28a0d9338a8fb7a069e0382aab825b4cda3dfafb | 551 | hpp | C++ | lib/boost_1.78.0/tools/docca/example/include/docca/issue_69.hpp | LaudateCorpus1/math | 990a66b3cccd27a5fd48626360bb91093a48278b | [
"BSD-3-Clause"
] | 106 | 2015-08-07T04:23:50.000Z | 2020-12-27T18:25:15.000Z | lib/boost_1.78.0/tools/docca/example/include/docca/issue_69.hpp | LaudateCorpus1/math | 990a66b3cccd27a5fd48626360bb91093a48278b | [
"BSD-3-Clause"
] | 130 | 2016-06-22T22:11:25.000Z | 2020-11-29T20:24:09.000Z | lib/boost_1.78.0/tools/docca/example/include/docca/issue_69.hpp | LaudateCorpus1/math | 990a66b3cccd27a5fd48626360bb91093a48278b | [
"BSD-3-Clause"
] | 41 | 2015-07-08T19:18:35.000Z | 2021-01-14T16:39:56.000Z | //
// Copyright (c) 2021 Evan Lenz (evan@lenzconsulting.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)
//
#ifndef EXAMPLE_ISSUE_69_HPP
#define EXAMPLE_ISSUE_69_HPP
namespace example {
/** Issue 69
T... | 19.678571 | 79 | 0.713249 | LaudateCorpus1 |
28a251566f0661b0bff4188de8911258432ff1de | 20,916 | cpp | C++ | samples/UnrealEnginePlugin/Source/Private/OptickPlugin.cpp | saeschdivara/optick | 51dc9418e0a23d8edb5c588a8747108e5d8245d0 | [
"MIT"
] | 1,711 | 2019-04-15T16:39:00.000Z | 2022-03-31T22:06:38.000Z | samples/UnrealEnginePlugin/Source/Private/OptickPlugin.cpp | saeschdivara/optick | 51dc9418e0a23d8edb5c588a8747108e5d8245d0 | [
"MIT"
] | 69 | 2019-04-21T20:42:10.000Z | 2022-03-23T06:08:59.000Z | samples/UnrealEnginePlugin/Source/Private/OptickPlugin.cpp | saeschdivara/optick | 51dc9418e0a23d8edb5c588a8747108e5d8245d0 | [
"MIT"
] | 172 | 2019-04-23T05:08:55.000Z | 2022-03-31T17:30:35.000Z | // Copyright(c) 2019 Vadim Slyusarev
// Core
#include "CoreMinimal.h"
#include "Containers/Ticker.h"
#include "GenericPlatform/GenericPlatformFile.h"
#include "HAL/PlatformFileManager.h"
#include "HAL/PlatformProcess.h"
#include "Misc/EngineVersion.h"
#include "Modules/ModuleManager.h"
#include "Stats/Stats2... | 30.094964 | 229 | 0.719019 | saeschdivara |
28a27b9b294e8154099ac2d58758e895acec5ee3 | 31,116 | cxx | C++ | Plugins/VisItDatabaseBridge/vtkVisItDatabaseBridge.cxx | matthb2/ParaView-beforekitwareswtichedtogit | e47e57d6ce88444d9e6af9ab29f9db8c23d24cef | [
"BSD-3-Clause"
] | 1 | 2021-07-31T19:38:03.000Z | 2021-07-31T19:38:03.000Z | Plugins/VisItDatabaseBridge/vtkVisItDatabaseBridge.cxx | matthb2/ParaView-beforekitwareswtichedtogit | e47e57d6ce88444d9e6af9ab29f9db8c23d24cef | [
"BSD-3-Clause"
] | null | null | null | Plugins/VisItDatabaseBridge/vtkVisItDatabaseBridge.cxx | matthb2/ParaView-beforekitwareswtichedtogit | e47e57d6ce88444d9e6af9ab29f9db8c23d24cef | [
"BSD-3-Clause"
] | 2 | 2019-01-22T19:51:40.000Z | 2021-07-31T19:38:05.000Z | /*=========================================================================
Program: Visualization Toolkit
Module: $RCSfile$
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 is distrib... | 29.89049 | 112 | 0.567714 | matthb2 |
28a3c30c988e0fbc0a2577cd905c15cb6ccdd723 | 4,993 | hxx | C++ | src/core/core_error_info.hxx | couchbaselabs/couchbase-php-client | 5249d30b1074995a76c14167c8a56b4b1a20cd84 | [
"Apache-2.0"
] | null | null | null | src/core/core_error_info.hxx | couchbaselabs/couchbase-php-client | 5249d30b1074995a76c14167c8a56b4b1a20cd84 | [
"Apache-2.0"
] | null | null | null | src/core/core_error_info.hxx | couchbaselabs/couchbase-php-client | 5249d30b1074995a76c14167c8a56b4b1a20cd84 | [
"Apache-2.0"
] | null | null | null | /**
* Copyright 2016-Present Couchbase, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law ... | 28.20904 | 99 | 0.694773 | couchbaselabs |
28a4742217ef89800b681b239d2610c5dcb4acad | 4,068 | hpp | C++ | lib/inc/facter/facts/resolver.hpp | Dorin-Pleava/facter | 74769988e1b132edc401eb7e420901495092c74c | [
"Apache-2.0"
] | null | null | null | lib/inc/facter/facts/resolver.hpp | Dorin-Pleava/facter | 74769988e1b132edc401eb7e420901495092c74c | [
"Apache-2.0"
] | null | null | null | lib/inc/facter/facts/resolver.hpp | Dorin-Pleava/facter | 74769988e1b132edc401eb7e420901495092c74c | [
"Apache-2.0"
] | null | null | null | /**
* @file
* Declares the base class for fact resolvers.
*/
#pragma once
#include "../export.h"
#include <vector>
#include <memory>
#include <stdexcept>
#include <string>
#include <boost/regex.hpp>
namespace facter { namespace facts {
/**
* Thrown when a resolver is constructed with an invalid fact name... | 32.031496 | 152 | 0.605211 | Dorin-Pleava |
28a4e98997a368ff6663aa958e26718b65a8c5f5 | 259,262 | cpp | C++ | src/peds/Ped.cpp | gameblabla/reeee3 | 1b6d0f742b1b6fb681756de702ed618e90361139 | [
"Unlicense"
] | 2 | 2021-03-24T22:11:27.000Z | 2021-05-07T06:51:04.000Z | src/peds/Ped.cpp | gameblabla/reeee3 | 1b6d0f742b1b6fb681756de702ed618e90361139 | [
"Unlicense"
] | null | null | null | src/peds/Ped.cpp | gameblabla/reeee3 | 1b6d0f742b1b6fb681756de702ed618e90361139 | [
"Unlicense"
] | null | null | null | #include "common.h"
#include "main.h"
#include "Pools.h"
#include "Particle.h"
#include "RpAnimBlend.h"
#include "Bones.h"
#include "Ped.h"
#include "AnimBlendAssociation.h"
#include "Fire.h"
#include "DMAudio.h"
#include "General.h"
#include "VisibilityPlugins.h"
#include "HandlingMgr.h"
#include "Replay.h"
#include ... | 30.50859 | 232 | 0.688751 | gameblabla |
28a5b100bc067265a14801406e64ba383d2706ad | 2,018 | cpp | C++ | REDSI_1160929_1161573/boost_1_67_0/libs/beast/test/beast/websocket/frame.cpp | Wultyc/ISEP_1718_2A2S_REDSI_TrabalhoGrupo | eb0f7ef64e188fe871f47c2ef9cdef36d8a66bc8 | [
"MIT"
] | 32 | 2019-02-27T06:57:07.000Z | 2021-08-29T10:56:19.000Z | REDSI_1160929_1161573/boost_1_67_0/libs/beast/test/beast/websocket/frame.cpp | Wultyc/ISEP_1718_2A2S_REDSI_TrabalhoGrupo | eb0f7ef64e188fe871f47c2ef9cdef36d8a66bc8 | [
"MIT"
] | 1 | 2019-04-04T18:00:00.000Z | 2019-04-04T18:00:00.000Z | REDSI_1160929_1161573/boost_1_67_0/libs/beast/test/beast/websocket/frame.cpp | Wultyc/ISEP_1718_2A2S_REDSI_TrabalhoGrupo | eb0f7ef64e188fe871f47c2ef9cdef36d8a66bc8 | [
"MIT"
] | 5 | 2019-08-20T13:45:04.000Z | 2022-03-01T18:23:49.000Z | //
// Copyright (c) 2016-2017 Vinnie Falco (vinnie dot falco at gmail 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)
//
// Official repository: https://github.com/boostorg/beast
//
#include <b... | 25.544304 | 80 | 0.590188 | Wultyc |
28a5e52da377be61c1b0130490a93774e191c1b5 | 69 | cpp | C++ | learncpp.com/2.11 - Header Guards/main.cpp | kaubu/cpp-projects | 3f2b1de662c275e1aae7ccced669412b628c3bfb | [
"MIT"
] | null | null | null | learncpp.com/2.11 - Header Guards/main.cpp | kaubu/cpp-projects | 3f2b1de662c275e1aae7ccced669412b628c3bfb | [
"MIT"
] | null | null | null | learncpp.com/2.11 - Header Guards/main.cpp | kaubu/cpp-projects | 3f2b1de662c275e1aae7ccced669412b628c3bfb | [
"MIT"
] | 1 | 2021-04-09T13:45:49.000Z | 2021-04-09T13:45:49.000Z | #include "square.h"
#include "geometry.h"
int main()
{
return 0;
}
| 8.625 | 21 | 0.637681 | kaubu |
28a693938444d64da4b549eac332a99c2412ede5 | 1,868 | hpp | C++ | include/util/dist_table_wrapper.hpp | mortada/osrm-backend | aae02cd1be7e99eb75117c7d8c9f39b858ad9019 | [
"BSD-2-Clause"
] | null | null | null | include/util/dist_table_wrapper.hpp | mortada/osrm-backend | aae02cd1be7e99eb75117c7d8c9f39b858ad9019 | [
"BSD-2-Clause"
] | null | null | null | include/util/dist_table_wrapper.hpp | mortada/osrm-backend | aae02cd1be7e99eb75117c7d8c9f39b858ad9019 | [
"BSD-2-Clause"
] | 1 | 2019-09-20T00:55:14.000Z | 2019-09-20T00:55:14.000Z | #ifndef DIST_TABLE_WRAPPER_H
#define DIST_TABLE_WRAPPER_H
#include <vector>
#include <utility>
#include <boost/assert.hpp>
#include <cstddef>
namespace osrm
{
namespace util
{
// This Wrapper provides an easier access to a distance table that is given as an linear vector
template <typename T> class DistTableWrapper... | 27.072464 | 95 | 0.671306 | mortada |
28a7ad946ebfbf2df68e52204044ea982d133cc6 | 1,553 | cpp | C++ | test/20171018/source/std/test20171018/source/sxy/sequence/sequence.cpp | DesZou/Eros | f49c9ce1dfe193de8199163286afc28ff8c52eef | [
"MIT"
] | 1 | 2017-10-12T13:49:10.000Z | 2017-10-12T13:49:10.000Z | test/20171018/source/std/test20171018/source/sxy/sequence/sequence.cpp | DesZou/Eros | f49c9ce1dfe193de8199163286afc28ff8c52eef | [
"MIT"
] | null | null | null | test/20171018/source/std/test20171018/source/sxy/sequence/sequence.cpp | DesZou/Eros | f49c9ce1dfe193de8199163286afc28ff8c52eef | [
"MIT"
] | 1 | 2017-10-12T13:49:38.000Z | 2017-10-12T13:49:38.000Z | //Serene
#include<algorithm>
#include<iostream>
#include<cstring>
#include<cstdlib>
#include<cstdio>
#include<cmath>
using namespace std;
#define ll long long
const int maxn=2e5+10;
ll n,m,k,t,ans[maxn],a[maxn],lx[maxn],tot,tot2;
ll aa;char cc;
ll read() {
aa=0;cc=getchar();
while(cc<'0'||cc>'9') cc=getchar();
whil... | 17.255556 | 54 | 0.555055 | DesZou |
28a92394700c3ce66a912bf168ded3941d441b07 | 2,952 | cc | C++ | drds/src/model/DescribeInstanceSwitchNetworkResult.cc | sdk-team/aliyun-openapi-cpp-sdk | d0e92f6f33126dcdc7e40f60582304faf2c229b7 | [
"Apache-2.0"
] | 3 | 2020-01-06T08:23:14.000Z | 2022-01-22T04:41:35.000Z | drds/src/model/DescribeInstanceSwitchNetworkResult.cc | sdk-team/aliyun-openapi-cpp-sdk | d0e92f6f33126dcdc7e40f60582304faf2c229b7 | [
"Apache-2.0"
] | null | null | null | drds/src/model/DescribeInstanceSwitchNetworkResult.cc | sdk-team/aliyun-openapi-cpp-sdk | d0e92f6f33126dcdc7e40f60582304faf2c229b7 | [
"Apache-2.0"
] | null | null | null | /*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | 33.168539 | 113 | 0.743902 | sdk-team |
28a9a07b9550f1a3019cee5cf4763bbc45cc6b93 | 8,828 | cpp | C++ | Source/Samples/40_Localization/L10n.cpp | daokoder/Craft | 13dd4219e30f71b48f368c01b6e33e8ce5a515e0 | [
"MIT"
] | 15 | 2019-06-25T14:06:57.000Z | 2021-03-05T00:33:54.000Z | Source/Samples/40_Localization/L10n.cpp | daokoder/Craft3D | 13dd4219e30f71b48f368c01b6e33e8ce5a515e0 | [
"MIT"
] | null | null | null | Source/Samples/40_Localization/L10n.cpp | daokoder/Craft3D | 13dd4219e30f71b48f368c01b6e33e8ce5a515e0 | [
"MIT"
] | null | null | null | //
// Copyright (c) 2008-2019 the Urho3D project.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, m... | 36.032653 | 121 | 0.702651 | daokoder |
28aaeb159db11170b3dd29dfd8f3f5095b36c9ae | 4,642 | cpp | C++ | src/tests/class_tests/superhirn/source/Superhirn_test.cpp | michalsta/OpenMS | 7eed34f65354c4abce0b98cf746e4bfce4a488ac | [
"BSL-1.0",
"Zlib",
"Apache-2.0"
] | 2 | 2018-08-27T19:15:39.000Z | 2019-03-22T21:29:50.000Z | src/tests/class_tests/superhirn/source/Superhirn_test.cpp | michalsta/OpenMS | 7eed34f65354c4abce0b98cf746e4bfce4a488ac | [
"BSL-1.0",
"Zlib",
"Apache-2.0"
] | 9 | 2017-10-29T20:59:19.000Z | 2018-02-09T15:37:14.000Z | src/tests/class_tests/superhirn/source/Superhirn_test.cpp | michalsta/OpenMS | 7eed34f65354c4abce0b98cf746e4bfce4a488ac | [
"BSL-1.0",
"Zlib",
"Apache-2.0"
] | 1 | 2020-07-21T23:23:49.000Z | 2020-07-21T23:23:49.000Z | // --------------------------------------------------------------------------
// OpenMS -- Open-Source Mass Spectrometry
// --------------------------------------------------------------------------
// Copyright The OpenMS Team -- Eberhard Karls University Tuebingen,
// ETH Zurich, and Freie Universit... | 36.265625 | 96 | 0.647781 | michalsta |
28aba6c2bcb89db4096f0134073dd121a8acfc67 | 262 | cpp | C++ | gpio/src/gpio.cpp | GTAeberhard/pwm_motor_control | 60697c684b232b98c68df57e5257e930a5cfbd87 | [
"MIT"
] | 1 | 2019-12-17T21:48:39.000Z | 2019-12-17T21:48:39.000Z | gpio/src/gpio.cpp | GTAeberhard/pwm_motor_control | 60697c684b232b98c68df57e5257e930a5cfbd87 | [
"MIT"
] | null | null | null | gpio/src/gpio.cpp | GTAeberhard/pwm_motor_control | 60697c684b232b98c68df57e5257e930a5cfbd87 | [
"MIT"
] | 2 | 2019-10-28T17:34:32.000Z | 2021-02-03T02:21:18.000Z | #include <gpio.h>
GpioPin::GpioPin(const uint8_t pin_number)
: pin_(pin_number)
{
}
void GpioPin::Write(const uint8_t value)
{
WriteToPin(value);
}
void GpioPin::WriteHigh()
{
WriteHighToPin();
}
void GpioPin::WriteLow()
{
WriteLowToPin();
}
| 11.909091 | 42 | 0.671756 | GTAeberhard |
28abfd6272252b3a1daaafd4540a8518f8969cc0 | 11,418 | cpp | C++ | parser/pe/ResourceDirWrapper.cpp | yjd/bearparser | 7ec04943a7b7f478d8b924aebe1fc0e831cb27da | [
"BSD-2-Clause"
] | 516 | 2015-01-04T14:04:21.000Z | 2022-03-13T05:07:27.000Z | parser/pe/ResourceDirWrapper.cpp | yjd/bearparser | 7ec04943a7b7f478d8b924aebe1fc0e831cb27da | [
"BSD-2-Clause"
] | 12 | 2018-08-04T22:37:46.000Z | 2021-02-17T00:37:56.000Z | parser/pe/ResourceDirWrapper.cpp | yjd/bearparser | 7ec04943a7b7f478d8b924aebe1fc0e831cb27da | [
"BSD-2-Clause"
] | 99 | 2015-04-23T01:59:24.000Z | 2022-03-03T04:38:28.000Z | #include "pe/ResourceDirWrapper.h"
#include "pe/PEFile.h"
#define MAX_ENTRIES 50
#define MAX_DEPTH 5
/*
typedef struct _IMAGE_RESOURCE_DIRECTORY {
DWORD Characteristics;
DWORD TimeDateStamp;
WORD MajorVersion;
WORD MinorVersion;
WORD NumberOfNamedEntries;
WORD NumberOfIdEntries... | 32.345609 | 159 | 0.667192 | yjd |
28ae16c7ddd5eb581f29a77bf283b02f0a2fa9db | 2,407 | cpp | C++ | lldb/unittests/Utility/NameMatchesTest.cpp | bytesnake/Enzyme | 247606c279920d476645d2e319e574bf8be10fc9 | [
"Apache-2.0"
] | null | null | null | lldb/unittests/Utility/NameMatchesTest.cpp | bytesnake/Enzyme | 247606c279920d476645d2e319e574bf8be10fc9 | [
"Apache-2.0"
] | null | null | null | lldb/unittests/Utility/NameMatchesTest.cpp | bytesnake/Enzyme | 247606c279920d476645d2e319e574bf8be10fc9 | [
"Apache-2.0"
] | null | null | null | //===-- NameMatchesTest.cpp -------------------------------------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===-------------------------------------------------------... | 40.79661 | 80 | 0.678022 | bytesnake |
28ae594c588d8980e30799ccebfab704dacbb3d1 | 10,394 | hpp | C++ | inc/msp430/msp_timer.hpp | ecrampton1/MspPeripheralmm | ae1f64cc785b9a3b994074e851e68c170aef613f | [
"MIT"
] | null | null | null | inc/msp430/msp_timer.hpp | ecrampton1/MspPeripheralmm | ae1f64cc785b9a3b994074e851e68c170aef613f | [
"MIT"
] | 1 | 2021-03-07T14:18:31.000Z | 2021-03-07T14:18:31.000Z | inc/msp430/msp_timer.hpp | ecrampton1/MspPeripheralmm | ae1f64cc785b9a3b994074e851e68c170aef613f | [
"MIT"
] | null | null | null | #ifndef _MSP_TIMER_HPP
#define _MSP_TIMER_HPP
#include <stdint.h>
#include "mcu_timer.hpp"
#include "msp_periph.hpp"
#include "msp430/msp_gpio.hpp"//TODO debug
#include <msp430.h>
namespace McuPeripheral {
enum class TimerSource : uint16_t
{
SMCLK = TASSEL_2,
ACLK = TASSEL_1
};
enum class TimerMode : uint16_t
{
U... | 24.747619 | 200 | 0.724649 | ecrampton1 |
28af3e445510567c969b321a8710b608e1c01f1b | 9,565 | cpp | C++ | src/integrators/path.cpp | jhoobergs/Thesis-pbrt-v3 | ce7ac9bad7c9807d0da96c8d87a0a4f9a33f96b5 | [
"BSD-2-Clause"
] | null | null | null | src/integrators/path.cpp | jhoobergs/Thesis-pbrt-v3 | ce7ac9bad7c9807d0da96c8d87a0a4f9a33f96b5 | [
"BSD-2-Clause"
] | 7 | 2019-10-04T21:47:56.000Z | 2019-10-04T21:48:43.000Z | src/integrators/path.cpp | jhoobergs/Thesis-pbrt-v3 | ce7ac9bad7c9807d0da96c8d87a0a4f9a33f96b5 | [
"BSD-2-Clause"
] | null | null | null |
/*
pbrt source code is Copyright(c) 1998-2016
Matt Pharr, Greg Humphreys, and Wenzel Jakob.
This file is part of pbrt.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
- Redi... | 41.228448 | 89 | 0.584631 | jhoobergs |
28af8fb04b6618e6090ba0a76f24df92bf30987b | 453 | cc | C++ | components/sync_device_info/local_device_info_util_fuchsia.cc | zealoussnow/chromium | fd8a8914ca0183f0add65ae55f04e287543c7d4a | [
"BSD-3-Clause-No-Nuclear-License-2014",
"BSD-3-Clause"
] | 14,668 | 2015-01-01T01:57:10.000Z | 2022-03-31T23:33:32.000Z | components/sync_device_info/local_device_info_util_fuchsia.cc | zealoussnow/chromium | fd8a8914ca0183f0add65ae55f04e287543c7d4a | [
"BSD-3-Clause-No-Nuclear-License-2014",
"BSD-3-Clause"
] | 86 | 2015-10-21T13:02:42.000Z | 2022-03-14T07:50:50.000Z | components/sync_device_info/local_device_info_util_fuchsia.cc | zealoussnow/chromium | fd8a8914ca0183f0add65ae55f04e287543c7d4a | [
"BSD-3-Clause-No-Nuclear-License-2014",
"BSD-3-Clause"
] | 5,941 | 2015-01-02T11:32:21.000Z | 2022-03-31T16:35:46.000Z | // Copyright 2021 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 <string>
#include "base/notreached.h"
namespace syncer {
std::string GetPersonalizableDeviceNameInternal() {
// TODO(crbug.com/1233497): Req... | 25.166667 | 77 | 0.741722 | zealoussnow |
28b0fea167ce2859bf0add0cd1738d6a1f3cad78 | 6,950 | cxx | C++ | ingestTraveler/src/db/Timestamp.cxx | lsst-camera-dh/eTraveler-backend | c236014034318ab594b3cb66f7b4a8ea81a4ed8d | [
"BSD-3-Clause-LBNL"
] | null | null | null | ingestTraveler/src/db/Timestamp.cxx | lsst-camera-dh/eTraveler-backend | c236014034318ab594b3cb66f7b4a8ea81a4ed8d | [
"BSD-3-Clause-LBNL"
] | null | null | null | ingestTraveler/src/db/Timestamp.cxx | lsst-camera-dh/eTraveler-backend | c236014034318ab594b3cb66f7b4a8ea81a4ed8d | [
"BSD-3-Clause-LBNL"
] | null | null | null | // $Header: /nfs/slac/g/glast/ground/cvs/GlastRelease-scons/facilities/src/Timestamp.cxx,v 1.7 2005/04/05 06:01:15 jrb Exp $
#include <ctime>
#include <cstdlib>
#include <cstdio>
#include <cmath>
#include "Timestamp.h"
namespace facilities {
const double Timestamp::julian1970 = 2440587.5;
const int Timestamp::... | 30.349345 | 124 | 0.607482 | lsst-camera-dh |
28b124a514cf0517ee7d1f2fb4b721c1c8b5c704 | 2,754 | cpp | C++ | Eudoxus/sw/openni/OpenNI/FilesOnly/FilesOnlyMutex.cpp | roadnarrows-robotics/rnr-sdk | aee20c65b49fb3eedf924c5c2ec9f19f4f1a1b29 | [
"MIT"
] | null | null | null | Eudoxus/sw/openni/OpenNI/FilesOnly/FilesOnlyMutex.cpp | roadnarrows-robotics/rnr-sdk | aee20c65b49fb3eedf924c5c2ec9f19f4f1a1b29 | [
"MIT"
] | null | null | null | Eudoxus/sw/openni/OpenNI/FilesOnly/FilesOnlyMutex.cpp | roadnarrows-robotics/rnr-sdk | aee20c65b49fb3eedf924c5c2ec9f19f4f1a1b29 | [
"MIT"
] | null | null | null | /****************************************************************************
* *
* OpenNI 1.x Alpha *
* Copyright (C) 2011 PrimeSense Ltd. *
* ... | 46.677966 | 96 | 0.427741 | roadnarrows-robotics |
28b1a3096dd8b67434d93f54d61cffac988f556d | 589 | cpp | C++ | hal/STM32F4/systick/systick.cpp | yhsb2k/omef | 7425b62dd4b5d0af4e320816293f69d16d39f57a | [
"MIT"
] | null | null | null | hal/STM32F4/systick/systick.cpp | yhsb2k/omef | 7425b62dd4b5d0af4e320816293f69d16d39f57a | [
"MIT"
] | null | null | null | hal/STM32F4/systick/systick.cpp | yhsb2k/omef | 7425b62dd4b5d0af4e320816293f69d16d39f57a | [
"MIT"
] | null | null | null | #include "systick.hpp"
#include "rcc/rcc.hpp"
#include "CMSIS/Device/STM32F4xx/Include/stm32f4xx.h"
#include "CMSIS/Include/core_cm4.h"
#include "FreeRTOS.h"
#include "task.h"
using namespace hal;
void systick::init(void)
{
uint32_t systick_freq = rcc_get_freq(RCC_SRC_AHB);
SysTick_Config(systick_freq / configTICK_... | 19 | 53 | 0.757216 | yhsb2k |
28b2d2bbf16e2821601d88d1ad2cdc07d9dd9ef2 | 2,133 | cpp | C++ | Samples/OpenGL/Demo/proj.win.cmake/src/LAppDefine.cpp | adrianiainlam/CubismNativeSamples | b48ca90d39bdef27007b1a191049959d79949a58 | [
"RSA-MD"
] | 3 | 2021-01-12T02:38:38.000Z | 2021-12-27T20:54:11.000Z | Samples/OpenGL/Demo/proj.win.cmake/src/LAppDefine.cpp | adrianiainlam/CubismNativeSamples | b48ca90d39bdef27007b1a191049959d79949a58 | [
"RSA-MD"
] | 2 | 2020-12-22T17:04:53.000Z | 2021-02-24T00:58:07.000Z | Samples/OpenGL/Demo/proj.win.cmake/src/LAppDefine.cpp | adrianiainlam/CubismNativeSamples | b48ca90d39bdef27007b1a191049959d79949a58 | [
"RSA-MD"
] | null | null | null | /**
* Copyright(c) Live2D Inc. All rights reserved.
*
* Use of this source code is governed by the Live2D Open Software license
* that can be found at https://www.live2d.com/eula/live2d-open-software-license-agreement_en.html.
*/
#include "LAppDefine.hpp"
#include <CubismFramework.hpp>
namespace LAppDefine {
... | 28.824324 | 107 | 0.675105 | adrianiainlam |
28b709c83a9a513a158de7cbd5b2e82f0a5cd65e | 10,843 | cc | C++ | RecoEgamma/EgammaTools/plugins/EGPfIsolationModifier.cc | nistefan/cmssw | ea13af97f7f2117a4f590a5e654e06ecd9825a5b | [
"Apache-2.0"
] | null | null | null | RecoEgamma/EgammaTools/plugins/EGPfIsolationModifier.cc | nistefan/cmssw | ea13af97f7f2117a4f590a5e654e06ecd9825a5b | [
"Apache-2.0"
] | null | null | null | RecoEgamma/EgammaTools/plugins/EGPfIsolationModifier.cc | nistefan/cmssw | ea13af97f7f2117a4f590a5e654e06ecd9825a5b | [
"Apache-2.0"
] | null | null | null | #include "CommonTools/CandAlgos/interface/ModifyObjectValueBase.h"
#include "FWCore/Utilities/interface/InputTag.h"
#include "FWCore/Utilities/interface/EDGetToken.h"
#include "DataFormats/Common/interface/ValueMap.h"
#include "DataFormats/EgammaCandidates/interface/GsfElectron.h"
#include "DataFormats/EgammaCandidat... | 41.385496 | 138 | 0.661533 | nistefan |
28b80b75d8885d467e412197d27f5a6a99f36b29 | 7,708 | hxx | C++ | Modules/Filtering/DisplacementField/include/itkBSplineExponentialDiffeomorphicTransform.hxx | arnaudgelas/ITK | b5251da65f37d7e7e5e94d17072d275f89fb26ea | [
"Apache-2.0"
] | null | null | null | Modules/Filtering/DisplacementField/include/itkBSplineExponentialDiffeomorphicTransform.hxx | arnaudgelas/ITK | b5251da65f37d7e7e5e94d17072d275f89fb26ea | [
"Apache-2.0"
] | null | null | null | Modules/Filtering/DisplacementField/include/itkBSplineExponentialDiffeomorphicTransform.hxx | arnaudgelas/ITK | b5251da65f37d7e7e5e94d17072d275f89fb26ea | [
"Apache-2.0"
] | null | null | null | /*=========================================================================
*
* Copyright Insight Software Consortium
*
* 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
*
* h... | 34.106195 | 145 | 0.750519 | arnaudgelas |
28b8986ac27ff30ce5474b57381e040368660975 | 2,296 | cpp | C++ | .upstream-tests/test/std/thread/thread.semaphore/release.pass.cpp | clayne/libcudacxx | b6908c62833db1f0bb5ae06944f6613f23d814b3 | [
"Apache-2.0"
] | null | null | null | .upstream-tests/test/std/thread/thread.semaphore/release.pass.cpp | clayne/libcudacxx | b6908c62833db1f0bb5ae06944f6613f23d814b3 | [
"Apache-2.0"
] | null | null | null | .upstream-tests/test/std/thread/thread.semaphore/release.pass.cpp | clayne/libcudacxx | b6908c62833db1f0bb5ae06944f6613f23d814b3 | [
"Apache-2.0"
] | 1 | 2021-11-12T21:19:28.000Z | 2021-11-12T21:19:28.000Z | //===----------------------------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===---------------------------... | 28.7 | 86 | 0.69338 | clayne |
28baa29df830ec62b41b750d21e1e7616250b0be | 87 | cpp | C++ | disc0ver-Engine/disc0ver-Engine/Render/scene.cpp | Kpure1000/disc0ver-Engine | e2aeec3984aa6cd8ecbaa0da539bf53e37846602 | [
"MIT"
] | 5 | 2020-09-19T03:34:09.000Z | 2021-04-10T07:39:53.000Z | disc0ver-Engine/disc0ver-Engine/Render/scene.cpp | Kpure1000/disc0ver-Engine | e2aeec3984aa6cd8ecbaa0da539bf53e37846602 | [
"MIT"
] | null | null | null | disc0ver-Engine/disc0ver-Engine/Render/scene.cpp | Kpure1000/disc0ver-Engine | e2aeec3984aa6cd8ecbaa0da539bf53e37846602 | [
"MIT"
] | 3 | 2020-10-25T10:58:18.000Z | 2021-03-26T01:08:54.000Z | /*
* @Description:
* @Author: 妄想
* @Email: long452a@163.com
* @Date: 2021-2-16
*/
| 12.428571 | 27 | 0.563218 | Kpure1000 |
28bbf047f870c4eef8c4a42148ead83289970c24 | 7,544 | cc | C++ | chromecast/net/io_buffer_pool.cc | zealoussnow/chromium | fd8a8914ca0183f0add65ae55f04e287543c7d4a | [
"BSD-3-Clause-No-Nuclear-License-2014",
"BSD-3-Clause"
] | 14,668 | 2015-01-01T01:57:10.000Z | 2022-03-31T23:33:32.000Z | chromecast/net/io_buffer_pool.cc | zealoussnow/chromium | fd8a8914ca0183f0add65ae55f04e287543c7d4a | [
"BSD-3-Clause-No-Nuclear-License-2014",
"BSD-3-Clause"
] | 86 | 2015-10-21T13:02:42.000Z | 2022-03-14T07:50:50.000Z | chromecast/net/io_buffer_pool.cc | zealoussnow/chromium | fd8a8914ca0183f0add65ae55f04e287543c7d4a | [
"BSD-3-Clause-No-Nuclear-License-2014",
"BSD-3-Clause"
] | 5,941 | 2015-01-02T11:32:21.000Z | 2022-03-31T16:35:46.000Z | // Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chromecast/net/io_buffer_pool.h"
#include <new>
#include "base/bits.h"
#include "base/memory/aligned_memory.h"
#include "base/synchronization/... | 27.735294 | 80 | 0.699099 | zealoussnow |
28bcfdb47b9262bbd8322b037494800e7c91164c | 15,263 | cpp | C++ | source/exhumed/src/lavadude.cpp | madame-rachelle/Raze | 67c8187d620e6cf9e99543cab5c5746dd31007af | [
"RSA-MD"
] | null | null | null | source/exhumed/src/lavadude.cpp | madame-rachelle/Raze | 67c8187d620e6cf9e99543cab5c5746dd31007af | [
"RSA-MD"
] | null | null | null | source/exhumed/src/lavadude.cpp | madame-rachelle/Raze | 67c8187d620e6cf9e99543cab5c5746dd31007af | [
"RSA-MD"
] | null | null | null | //-------------------------------------------------------------------------
/*
Copyright (C) 2010-2019 EDuke32 developers and contributors
Copyright (C) 2019 sirlemonhead, Nuke.YKT
This file is part of PCExhumed.
PCExhumed is free software; you can redistribute it and/or
modify it under the terms of the GNU General Pub... | 29.636893 | 156 | 0.443687 | madame-rachelle |
28bd019847f48cd53f96e919d2826749bf88c7cf | 2,958 | cpp | C++ | test/scratch/test.scratch.fe.WindowsRegistry.controller/test.scratch.fe.WindowsRegistry.controller.cpp | stlsoft/Pantheios | a35eaa4c070f88d0642bd78c223f1c0399374c3b | [
"BSD-3-Clause"
] | 44 | 2015-09-27T09:17:38.000Z | 2022-02-10T12:58:40.000Z | test/scratch/test.scratch.fe.WindowsRegistry.controller/test.scratch.fe.WindowsRegistry.controller.cpp | stlsoft/Pantheios | a35eaa4c070f88d0642bd78c223f1c0399374c3b | [
"BSD-3-Clause"
] | 3 | 2017-03-08T06:54:59.000Z | 2020-07-05T05:31:50.000Z | test/scratch/test.scratch.fe.WindowsRegistry.controller/test.scratch.fe.WindowsRegistry.controller.cpp | stlsoft/Pantheios | a35eaa4c070f88d0642bd78c223f1c0399374c3b | [
"BSD-3-Clause"
] | 16 | 2015-10-22T07:39:47.000Z | 2022-01-08T23:46:07.000Z | /* /////////////////////////////////////////////////////////////////////////
* File: test/scratch/test.scratch.fe.WindowsRegistry.controller/test.scratch.fe.WindowsRegistry.controller.cpp
*
* Purpose: Implementation file for the test.scratch.fe.WindowsRegistry.controller project.
*
* Created: 2nd De... | 20.830986 | 118 | 0.514537 | stlsoft |
28bd91655a77c29c2cb7f4dd7da320763323cc2a | 7,166 | cpp | C++ | mysql-dst/mysql-cluster/storage/ndb/src/common/logger/EventLogHandler.cpp | SJTU-IPADS/dst | 897b929a692642cbf295c105d9d6e64090abb673 | [
"Apache-2.0"
] | 9 | 2020-12-17T01:59:13.000Z | 2022-03-30T16:25:08.000Z | mysql-dst/mysql-cluster/storage/ndb/src/common/logger/EventLogHandler.cpp | SJTU-IPADS/dst | 897b929a692642cbf295c105d9d6e64090abb673 | [
"Apache-2.0"
] | 1 | 2021-07-30T12:06:33.000Z | 2021-07-31T10:16:09.000Z | mysql-dst/mysql-cluster/storage/ndb/src/common/logger/EventLogHandler.cpp | SJTU-IPADS/dst | 897b929a692642cbf295c105d9d6e64090abb673 | [
"Apache-2.0"
] | 1 | 2021-08-01T13:47:07.000Z | 2021-08-01T13:47:07.000Z | /*
Copyright (c) 2010, 2018, Oracle and/or its affiliates. All rights reserved.
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; version 2 of the License.
This program is distributed i... | 24.541096 | 105 | 0.667318 | SJTU-IPADS |
28bf6f39d3c3ccaa58ce5ef4b4f795d0407e96a8 | 2,208 | cpp | C++ | LearningCpp/Smthing.cpp | mertess/learningCpp | 001a5322d2a895ce1feadc78a5ddabaae0c34d4a | [
"MIT"
] | null | null | null | LearningCpp/Smthing.cpp | mertess/learningCpp | 001a5322d2a895ce1feadc78a5ddabaae0c34d4a | [
"MIT"
] | null | null | null | LearningCpp/Smthing.cpp | mertess/learningCpp | 001a5322d2a895ce1feadc78a5ddabaae0c34d4a | [
"MIT"
] | null | null | null | #include <iostream>
#include "Smthing.h"
using namespace std;
int& getA(my_struct& st)
{
/*
*структура никак не записывается в объектный файл, она представляет собой способ управления последоавательностями байт
*фактически структура my_struct представляет собой последовательность из 8 байт - 4 байта на in... | 21.647059 | 144 | 0.518569 | mertess |
28bfc0e6d82b85213b4e659af34ba53d2e460ebe | 1,102 | cc | C++ | apps/libmc/sim/cows.cc | djpetti/molecube | b7267803f080ed62e158fc5c1cfcff6beb709de7 | [
"MIT"
] | 2 | 2018-09-11T21:09:22.000Z | 2018-10-05T08:35:58.000Z | apps/libmc/sim/cows.cc | djpetti/molecube | b7267803f080ed62e158fc5c1cfcff6beb709de7 | [
"MIT"
] | 24 | 2018-09-09T22:51:26.000Z | 2018-11-29T22:49:57.000Z | apps/libmc/sim/cows.cc | djpetti/molecube | b7267803f080ed62e158fc5c1cfcff6beb709de7 | [
"MIT"
] | 1 | 2018-10-16T20:01:20.000Z | 2018-10-16T20:01:20.000Z | #include "cows.h"
#include <assert.h>
namespace libmc {
namespace sim {
void Cows::CowsStuff(uint16_t *buffer, uint16_t length) {
assert(length >= 1 && "Length must be at least 1.");
uint16_t *const data_end = buffer + length;
uint16_t *last_zero = data_end;
// Make a single pass backwards to remove all th... | 25.045455 | 67 | 0.64882 | djpetti |
28c058f8a7f545930e4e8ac334cba42bb8dd2568 | 1,616 | cpp | C++ | src/clReflectTest/TestArrays.cpp | chip5441/clReflect | d366cced2fff9aefcfc5ec6a0c97ed6c827263eb | [
"MIT"
] | null | null | null | src/clReflectTest/TestArrays.cpp | chip5441/clReflect | d366cced2fff9aefcfc5ec6a0c97ed6c827263eb | [
"MIT"
] | 1 | 2020-02-22T09:59:21.000Z | 2020-02-22T09:59:21.000Z | src/clReflectTest/TestArrays.cpp | chip5441/clReflect | d366cced2fff9aefcfc5ec6a0c97ed6c827263eb | [
"MIT"
] | null | null | null |
//
// ===============================================================================
// clReflect
// -------------------------------------------------------------------------------
// Copyright (c) 2011-2012 Don Williamson & clReflect Authors (see AUTHORS file)
// Released under MIT License (see LICENSE file)
... | 26.491803 | 83 | 0.519802 | chip5441 |
28c160d0e87ff265bbf609370c2f562ea22d80c8 | 1,243 | hpp | C++ | sprout/container/traits_fwd.hpp | kariya-mitsuru/Sprout | 8274f34db498b02bff12277bac5416ea72e018cd | [
"BSL-1.0"
] | null | null | null | sprout/container/traits_fwd.hpp | kariya-mitsuru/Sprout | 8274f34db498b02bff12277bac5416ea72e018cd | [
"BSL-1.0"
] | null | null | null | sprout/container/traits_fwd.hpp | kariya-mitsuru/Sprout | 8274f34db498b02bff12277bac5416ea72e018cd | [
"BSL-1.0"
] | null | null | null | /*=============================================================================
Copyright (c) 2011-2017 Bolero MURAKAMI
https://github.com/bolero-MURAKAMI/Sprout
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.tx... | 23.903846 | 80 | 0.648431 | kariya-mitsuru |
28c1a5f4120c9787218ef2c314a191cac8178215 | 5,433 | cpp | C++ | src/luxrays/core/geometry/transform.cpp | aedancullen/LuxCore | 2b2289ce985ddc1ba1a44f932e1f76ee9a1c3e3a | [
"Apache-2.0"
] | null | null | null | src/luxrays/core/geometry/transform.cpp | aedancullen/LuxCore | 2b2289ce985ddc1ba1a44f932e1f76ee9a1c3e3a | [
"Apache-2.0"
] | null | null | null | src/luxrays/core/geometry/transform.cpp | aedancullen/LuxCore | 2b2289ce985ddc1ba1a44f932e1f76ee9a1c3e3a | [
"Apache-2.0"
] | null | null | null | /***************************************************************************
* Copyright 1998-2018 by authors (see AUTHORS.txt) *
* *
* This file is part of LuxCoreRender. *
* ... | 29.209677 | 87 | 0.509663 | aedancullen |
28c1f54bab3341138acb607ca48d3c007936995e | 6,310 | cpp | C++ | src/xalanc/XPath/XNodeSetBase.cpp | ulisesten/xalanc | a722de08e61ce66965c4a828242f7d1250950621 | [
"Apache-2.0"
] | 24 | 2015-07-29T22:49:17.000Z | 2022-03-25T10:14:17.000Z | src/xalanc/XPath/XNodeSetBase.cpp | ulisesten/xalanc | a722de08e61ce66965c4a828242f7d1250950621 | [
"Apache-2.0"
] | 14 | 2019-05-10T16:25:50.000Z | 2021-11-24T18:04:47.000Z | src/xalanc/XPath/XNodeSetBase.cpp | ulisesten/xalanc | a722de08e61ce66965c4a828242f7d1250950621 | [
"Apache-2.0"
] | 28 | 2015-04-20T15:50:51.000Z | 2022-01-26T14:56:55.000Z | /*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the "License");
* you m... | 20.420712 | 88 | 0.647861 | ulisesten |
28c3bb370bc935e96fe41d0929b8eb0d65e9f23d | 66,324 | cpp | C++ | docs/round-lcd/LCD_1inch28/font20.cpp | JeremyProffitt/PlatformIO-TTGO-ESP-One-Ring | 58a94e5d20fa6dc23dd9d9d275c29e14749aa841 | [
"MIT"
] | null | null | null | docs/round-lcd/LCD_1inch28/font20.cpp | JeremyProffitt/PlatformIO-TTGO-ESP-One-Ring | 58a94e5d20fa6dc23dd9d9d275c29e14749aa841 | [
"MIT"
] | null | null | null | docs/round-lcd/LCD_1inch28/font20.cpp | JeremyProffitt/PlatformIO-TTGO-ESP-One-Ring | 58a94e5d20fa6dc23dd9d9d275c29e14749aa841 | [
"MIT"
] | null | null | null | /**
******************************************************************************
* @file font20.c
* @author MCD Application Team
* @version V1.0.0
* @date 18-February-2014
* @brief This file provides text font20 for STM32xx-EVAL's LCD driver.
***************************************************... | 30.934701 | 84 | 0.275375 | JeremyProffitt |
28c42c9c848d3453afdf9cf8faab0da1b5354d9e | 9,043 | cpp | C++ | simulator/infra/cache/cache_tag_array.cpp | VasiliyMatr/mipt-mips | 6331f0f07a061d5fbd849b24d996d363f343fef9 | [
"MIT"
] | 351 | 2015-09-23T08:30:41.000Z | 2022-03-19T09:25:05.000Z | simulator/infra/cache/cache_tag_array.cpp | VasiliyMatr/mipt-mips | 6331f0f07a061d5fbd849b24d996d363f343fef9 | [
"MIT"
] | 1,098 | 2016-04-14T18:24:01.000Z | 2022-03-28T09:15:05.000Z | simulator/infra/cache/cache_tag_array.cpp | VasiliyMatr/mipt-mips | 6331f0f07a061d5fbd849b24d996d363f343fef9 | [
"MIT"
] | 243 | 2016-01-03T02:46:01.000Z | 2021-11-23T14:49:09.000Z | /**
* cache_tag_array.cpp
* Implementation of the cache tag array model.
* @author Oleg Ladin, Denis Los, Andrey Agrachev, Pavel Kryukov
* Copyright 2014-2019 MIPT-MIPS
*/
#include "infra/cache/cache_tag_array.h"
#include "infra/macro.h"
#include "infra/replacement/cache_replacement.h"
#include <sparsehash/dense... | 31.841549 | 132 | 0.658852 | VasiliyMatr |
28c511520214ca23147826350fe56703352ebb2a | 7,221 | cpp | C++ | src/jlcxx.cpp | RelationalAI-oss/libcxxwrap-julia | b01c70c6c30b6d1aa2b7b78b082ee07f5e90ac28 | [
"MIT"
] | null | null | null | src/jlcxx.cpp | RelationalAI-oss/libcxxwrap-julia | b01c70c6c30b6d1aa2b7b78b082ee07f5e90ac28 | [
"MIT"
] | null | null | null | src/jlcxx.cpp | RelationalAI-oss/libcxxwrap-julia | b01c70c6c30b6d1aa2b7b78b082ee07f5e90ac28 | [
"MIT"
] | null | null | null | #include "jlcxx/array.hpp"
#include "jlcxx/jlcxx.hpp"
#include "jlcxx/functions.hpp"
#include "jlcxx/jlcxx_config.hpp"
#include <julia.h>
#if JULIA_VERSION_MAJOR == 0 && JULIA_VERSION_MINOR > 4 || JULIA_VERSION_MAJOR > 0
#include <julia_threads.h>
#endif
namespace jlcxx
{
jl_module_t* g_cxxwrap_module;
jl_datatype_... | 26.258182 | 141 | 0.680931 | RelationalAI-oss |
28c57633931b6bd378420a8dc9da77bf20a013c6 | 3,976 | hpp | C++ | dev/Basic/shared/geospatial/network/Lane.hpp | gusugusu1018/simmobility-prod | d30a5ba353673f8fd35f4868c26994a0206a40b6 | [
"MIT"
] | 50 | 2018-12-21T08:21:38.000Z | 2022-01-24T09:47:59.000Z | dev/Basic/shared/geospatial/network/Lane.hpp | gusugusu1018/simmobility-prod | d30a5ba353673f8fd35f4868c26994a0206a40b6 | [
"MIT"
] | 2 | 2018-12-19T13:42:47.000Z | 2019-05-13T04:11:45.000Z | dev/Basic/shared/geospatial/network/Lane.hpp | gusugusu1018/simmobility-prod | d30a5ba353673f8fd35f4868c26994a0206a40b6 | [
"MIT"
] | 27 | 2018-11-28T07:30:34.000Z | 2022-02-05T02:22:26.000Z | //Copyright (c) 2013 Singapore-MIT Alliance for Research and Technology
//Licensed under the terms of the MIT License, as described in the file:
// license.txt (http://opensource.org/licenses/MIT)
#pragma once
#include <vector>
#include "PolyLine.hpp"
#include "LaneConnector.hpp"
#include "RoadSegment.hpp"
namesp... | 26.331126 | 88 | 0.709507 | gusugusu1018 |
28c894cb2d1a634d021485ba140cca64c65fe929 | 1,213 | hpp | C++ | src/algorithms/other/fizzbuzz.hpp | iamantony/CppNotes | 2707db6560ad80b0e5e286a04b2d46e5c0280b3f | [
"MIT"
] | 2 | 2020-07-31T14:13:56.000Z | 2021-02-03T09:51:43.000Z | src/algorithms/other/fizzbuzz.hpp | iamantony/CppNotes | 2707db6560ad80b0e5e286a04b2d46e5c0280b3f | [
"MIT"
] | 28 | 2015-09-22T07:38:21.000Z | 2018-10-02T11:00:58.000Z | src/algorithms/other/fizzbuzz.hpp | iamantony/CppNotes | 2707db6560ad80b0e5e286a04b2d46e5c0280b3f | [
"MIT"
] | 2 | 2018-10-11T14:10:50.000Z | 2021-02-27T08:53:50.000Z | #ifndef FIZZBUZZ_HPP
#define FIZZBUZZ_HPP
#include <string>
#include <vector>
/*
https://leetcode.com/problems/fizz-buzz/
Write a program that outputs the string representation of numbers from 1 to n.
But for multiples of three it should output “Fizz” instead of the number and
for the multiples of five output “Buzz”... | 18.953125 | 78 | 0.511129 | iamantony |
28c9a34e7d623f88dc740dffdd6e86954f605bbf | 15,535 | cpp | C++ | android-28/android/media/tv/TvContract_PreviewPrograms.cpp | YJBeetle/QtAndroidAPI | 1468b5dc6eafaf7709f0b00ba1a6ec2b70684266 | [
"Apache-2.0"
] | 12 | 2020-03-26T02:38:56.000Z | 2022-03-14T08:17:26.000Z | android-28/android/media/tv/TvContract_PreviewPrograms.cpp | YJBeetle/QtAndroidAPI | 1468b5dc6eafaf7709f0b00ba1a6ec2b70684266 | [
"Apache-2.0"
] | 1 | 2021-01-27T06:07:45.000Z | 2021-11-13T19:19:43.000Z | android-28/android/media/tv/TvContract_PreviewPrograms.cpp | YJBeetle/QtAndroidAPI | 1468b5dc6eafaf7709f0b00ba1a6ec2b70684266 | [
"Apache-2.0"
] | 3 | 2021-02-02T12:34:55.000Z | 2022-03-08T07:45:57.000Z | #include "../../net/Uri.hpp"
#include "../../../JString.hpp"
#include "./TvContract_PreviewPrograms.hpp"
namespace android::media::tv
{
// Fields
jint TvContract_PreviewPrograms::ASPECT_RATIO_16_9()
{
return getStaticField<jint>(
"android.media.tv.TvContract$PreviewPrograms",
"ASPECT_RATIO_16_9"
);
}
ji... | 25.096931 | 89 | 0.754554 | YJBeetle |
28c9d95a7c044e1d625c4013a8fefc03ef9bc8bd | 32,436 | cpp | C++ | libs/ddengine/src/pack.cpp | FaultyRAM/MuckyFoot-UrbanChaos | 45c9553189f80785a4ea0ec34b960d864782155b | [
"MIT"
] | 5 | 2017-10-02T00:20:06.000Z | 2021-07-09T10:00:18.000Z | libs/ddengine/src/pack.cpp | FaultyRAM/MuckyFoot-UrbanChaos | 45c9553189f80785a4ea0ec34b960d864782155b | [
"MIT"
] | null | null | null | libs/ddengine/src/pack.cpp | FaultyRAM/MuckyFoot-UrbanChaos | 45c9553189f80785a4ea0ec34b960d864782155b | [
"MIT"
] | null | null | null | //
// Looks at all the textures loaded and packs similar ones
// onto 256x256s...
//
#include <ddlibrary/dd_lib.h>
#include <fallen/game.h>
#include <ddlibrary/tga.h>
#include <ddengine/texture.h>
#ifndef TARGET_DC
//
// From elev.cpp...
//
extern CBYTE ELEV_fname_level[];
//
// From texture.cpp
//
extern D3DT... | 22.095368 | 239 | 0.563602 | FaultyRAM |
28cb86219c365dd32033a45beabc7ea1fa43c6b3 | 7,405 | cpp | C++ | src/backend/bridge/dml/expr/pg_func_map.cpp | eric-haibin-lin/pelotondb | 904d6bbd041a0498ee0e034d4f9f9f27086c3cab | [
"Apache-2.0"
] | 3 | 2016-08-26T13:01:52.000Z | 2020-09-25T15:57:33.000Z | src/backend/bridge/dml/expr/pg_func_map.cpp | dingty/peloton | 5d7213a3e2ebb62392d2f612dd85cb7a2576dec9 | [
"Apache-2.0"
] | 4 | 2017-07-08T00:41:56.000Z | 2017-07-08T00:42:13.000Z | src/backend/bridge/dml/expr/pg_func_map.cpp | eric-haibin-lin/pelotondb | 904d6bbd041a0498ee0e034d4f9f9f27086c3cab | [
"Apache-2.0"
] | null | null | null |
#include "backend/bridge/dml/expr/pg_func_map.h"
namespace peloton {
namespace bridge {
/**
* @brief Mapping PG Function Id to Peloton Function Meta Info.
*/
std::unordered_map<Oid, const PltFuncMetaInfo> kPgFuncMap({
//====--------------------------------
// Relational comparison
//====--------------... | 42.314286 | 65 | 0.676435 | eric-haibin-lin |
28cc00fab798ec0d99f7c29c01436a73abf5b228 | 8,281 | cc | C++ | grr/client/minicomm/client_actions/grep_test.cc | mikecb/grr | 52fdd977729af2a09a147301c55b8b7f1eccfa67 | [
"Apache-2.0"
] | 5 | 2017-03-17T08:25:09.000Z | 2022-02-22T05:28:14.000Z | grr/client/minicomm/client_actions/grep_test.cc | mikecb/grr | 52fdd977729af2a09a147301c55b8b7f1eccfa67 | [
"Apache-2.0"
] | null | null | null | grr/client/minicomm/client_actions/grep_test.cc | mikecb/grr | 52fdd977729af2a09a147301c55b8b7f1eccfa67 | [
"Apache-2.0"
] | 3 | 2018-12-07T07:04:37.000Z | 2022-02-22T05:28:16.000Z | #include "grr/client/minicomm/client_actions/grep.h"
#include <fstream>
#include "gtest/gtest.h"
#include "grr/client/minicomm/test_util.h"
namespace grr {
namespace actions {
TEST(GrepTest, SimpleLiteralSearch) {
const std::string temp_dir = testing::MakeTempDir();
const std::string file_name = temp_dir + "/fo... | 28.555172 | 78 | 0.699312 | mikecb |
28cd60d0bcc4a7d141a03fd324d50b9126afcb27 | 11,931 | cpp | C++ | libraries/fc/src/crypto/pke.cpp | titans-world/titan-core | f358f48290f3501b26b26eff6a1e57bf6c077d79 | [
"MIT"
] | 8 | 2020-11-29T20:19:52.000Z | 2021-11-02T21:01:41.000Z | libraries/fc/src/crypto/pke.cpp | titans-world/titan-core | f358f48290f3501b26b26eff6a1e57bf6c077d79 | [
"MIT"
] | 5 | 2021-03-06T10:58:34.000Z | 2021-08-07T09:51:09.000Z | libraries/fc/src/crypto/pke.cpp | titans-world/titan-core | f358f48290f3501b26b26eff6a1e57bf6c077d79 | [
"MIT"
] | 5 | 2020-10-22T17:01:27.000Z | 2022-02-02T12:53:47.000Z | #include <fc/crypto/pke.hpp>
#include <openssl/rsa.h>
#include <openssl/rand.h>
#include <openssl/sha.h>
#include <openssl/pem.h>
#include <openssl/err.h>
#include <assert.h>
#include <fc/crypto/base64.hpp>
#include <fc/io/sstream.hpp>
#include <fc/io/stdio.hpp>
#include <fc/exception/exception.hpp>
#include <fc/varian... | 32.598361 | 149 | 0.52351 | titans-world |
28cf1b5b6e0f62cdd26ddf0e8b0e85d0ea696390 | 2,016 | hpp | C++ | ReactAndroid/build/third-party-ndk/boost/boost_1_57_0/boost/fusion/sequence/intrinsic/detail/segmented_end_impl.hpp | kimwoongkyu/react-native-0-36-1-woogie | 4fb2d44945a6305ae3ca87be3872f9432d16f1fb | [
"BSD-3-Clause"
] | 85 | 2015-02-08T20:36:17.000Z | 2021-11-14T20:38:31.000Z | ReactAndroid/build/third-party-ndk/boost/boost_1_57_0/boost/fusion/sequence/intrinsic/detail/segmented_end_impl.hpp | kimwoongkyu/react-native-0-36-1-woogie | 4fb2d44945a6305ae3ca87be3872f9432d16f1fb | [
"BSD-3-Clause"
] | 9 | 2015-01-28T16:33:19.000Z | 2020-04-12T23:03:28.000Z | ReactAndroid/build/third-party-ndk/boost/boost_1_57_0/boost/fusion/sequence/intrinsic/detail/segmented_end_impl.hpp | kimwoongkyu/react-native-0-36-1-woogie | 4fb2d44945a6305ae3ca87be3872f9432d16f1fb | [
"BSD-3-Clause"
] | 27 | 2015-01-28T16:33:30.000Z | 2021-08-12T05:04:39.000Z | /*=============================================================================
Copyright (c) 2011 Eric Niebler
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)
===========================================... | 32.516129 | 81 | 0.579861 | kimwoongkyu |
28d305d021a1fcb2c5a51e92780798f9dd743e30 | 984 | cc | C++ | external/rocksdb/monitoring/iostats_context_test.cc | atomico-network/atomico | 8a7d862367b959a6718b581a7969e4912a9885aa | [
"BSD-3-Clause"
] | 16 | 2018-08-01T15:13:13.000Z | 2021-02-20T08:31:41.000Z | external/rocksdb/monitoring/iostats_context_test.cc | atomico-network/atomico | 8a7d862367b959a6718b581a7969e4912a9885aa | [
"BSD-3-Clause"
] | 9 | 2019-08-26T22:32:19.000Z | 2019-10-30T17:37:55.000Z | external/rocksdb/monitoring/iostats_context_test.cc | atomico-network/atomico | 8a7d862367b959a6718b581a7969e4912a9885aa | [
"BSD-3-Clause"
] | 21 | 2018-08-02T01:52:15.000Z | 2020-12-27T18:00:28.000Z | // Copyright (c) 2011-present, Facebook, Inc. All rights reserved.
// This source code is licensed under both the GPLv2 (found in the
// COPYING file in the root directory) and Apache 2.0 License
// (found in the LICENSE.Apache file in the root directory).
#include "rocksdb/iostats_context.h"
#include "test_util/t... | 32.8 | 68 | 0.721545 | atomico-network |
28d34d2985e98911742b847a963f4308d6712a0e | 52,938 | hpp | C++ | sdk/structs.hpp | xsoma/drugs.club | a1dace54a8425a2a52d3af0d1c8053bf7fb0e895 | [
"Unlicense"
] | 3 | 2021-08-02T16:59:36.000Z | 2022-01-07T20:54:57.000Z | sdk/structs.hpp | xsoma/drugs.club | a1dace54a8425a2a52d3af0d1c8053bf7fb0e895 | [
"Unlicense"
] | null | null | null | sdk/structs.hpp | xsoma/drugs.club | a1dace54a8425a2a52d3af0d1c8053bf7fb0e895 | [
"Unlicense"
] | 2 | 2021-12-14T04:29:32.000Z | 2022-01-07T20:54:56.000Z | #pragma once
#include "..\includes.hpp"
#include "interfaces\IClientEntity.hpp"
#include "misc\EHandle.hpp"
#include "misc\UtlVector.hpp"
#include "math\QAngle.hpp"
#include "..\utils\netmanager.hpp"
#include "misc\CBoneAccessor.hpp"
#include "..\cheats\misc\fakelag.h"
#include "..\sdk\misc\Recv.hpp"
#define min(a, ... | 32.83995 | 169 | 0.750009 | xsoma |
28d424ac064b417d95f2f3bfe0253525557b6ed8 | 4,085 | cpp | C++ | boost/libs/accumulators/test/weighted_pot_quantile.cpp | randolphwong/mcsema | eb5b376736e7f57ff0a61f7e4e5a436bbb874720 | [
"BSD-3-Clause"
] | 12,278 | 2015-01-29T17:11:33.000Z | 2022-03-31T21:12:00.000Z | boost/libs/accumulators/test/weighted_pot_quantile.cpp | randolphwong/mcsema | eb5b376736e7f57ff0a61f7e4e5a436bbb874720 | [
"BSD-3-Clause"
] | 9,469 | 2015-01-30T05:33:07.000Z | 2022-03-31T16:17:21.000Z | boost/libs/accumulators/test/weighted_pot_quantile.cpp | randolphwong/mcsema | eb5b376736e7f57ff0a61f7e4e5a436bbb874720 | [
"BSD-3-Clause"
] | 1,343 | 2017-12-08T19:47:19.000Z | 2022-03-26T11:31:36.000Z | // (C) Copyright Eric Niebler 2005.
// Use, modification and distribution are subject to 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)
// Test case for pot_quantile.hpp (weighted feature)
#define BOOST_NUMERIC_FUNCTIONAL_STD_... | 38.904762 | 119 | 0.671726 | randolphwong |
28d4c65ad868373636f3c4efd1576caf1715196a | 5,061 | hpp | C++ | src/libraries/core/meshes/meshShapes/cellModel/cellModel.hpp | MrAwesomeRocks/caelus-cml | 55b6dc5ba47d0e95c07412d9446ac72ac11d7fd7 | [
"mpich2"
] | null | null | null | src/libraries/core/meshes/meshShapes/cellModel/cellModel.hpp | MrAwesomeRocks/caelus-cml | 55b6dc5ba47d0e95c07412d9446ac72ac11d7fd7 | [
"mpich2"
] | null | null | null | src/libraries/core/meshes/meshShapes/cellModel/cellModel.hpp | MrAwesomeRocks/caelus-cml | 55b6dc5ba47d0e95c07412d9446ac72ac11d7fd7 | [
"mpich2"
] | null | null | null | /*---------------------------------------------------------------------------*\
Copyright (C) 2011 OpenFOAM Foundation
-------------------------------------------------------------------------------
License
This file is part of CAELUS.
CAELUS is free software: you can redistribute it and/or modify it
under... | 27.064171 | 79 | 0.519265 | MrAwesomeRocks |
28d64eea4e63951387dac634b5f96eeae38f0569 | 1,753 | cpp | C++ | hash table/36 Valid Sudoku.cpp | CoderQuinnYoung/leetcode | 6ea15c68124b16824bab9ed2e0e5a40c72eb3db1 | [
"BSD-3-Clause"
] | null | null | null | hash table/36 Valid Sudoku.cpp | CoderQuinnYoung/leetcode | 6ea15c68124b16824bab9ed2e0e5a40c72eb3db1 | [
"BSD-3-Clause"
] | null | null | null | hash table/36 Valid Sudoku.cpp | CoderQuinnYoung/leetcode | 6ea15c68124b16824bab9ed2e0e5a40c72eb3db1 | [
"BSD-3-Clause"
] | null | null | null | //
// 36 Valid Sudoku.cpp
// Leetcode
//
// Created by Quinn on 2020/8/12.
// Copyright © 2020 Quinn. All rights reserved.
//
#include <vector>
#include <unordered_map>
using namespace std;
class Solution {
public:
bool isValidSudoku(vector<vector<char>>& board) {
bool state[10];
for(... | 25.042857 | 62 | 0.302339 | CoderQuinnYoung |
28d77e9564225e08a0bc5085c7bc8bd52f15bbb5 | 508 | cpp | C++ | Framerate.cpp | Mac21/pillpopper | 6941d0a5cb32e326da2ecf47dc3b9a1e4272af59 | [
"MIT"
] | null | null | null | Framerate.cpp | Mac21/pillpopper | 6941d0a5cb32e326da2ecf47dc3b9a1e4272af59 | [
"MIT"
] | null | null | null | Framerate.cpp | Mac21/pillpopper | 6941d0a5cb32e326da2ecf47dc3b9a1e4272af59 | [
"MIT"
] | null | null | null | #include "Framerate.hpp"
Framerate::Framerate() {
sf::Font f;
if (!f.loadFromFile("assets/Ubuntu-R.ttf")) {
std::cout << "Failed to load font file\n";
exit(EXIT_FAILURE);
}
font = f;
sf::Text t;
t.setFont(font);
t.setString("Framerate: 0");
fontText = t;
}
void Framerate::update(sf... | 18.142857 | 73 | 0.625984 | Mac21 |
28da08917b6d6495624924bd1d887fe6279b86f5 | 16,177 | cpp | C++ | components/ESC/src/FuelGauge.cpp | xmrhaelan/turpial-firmware | 1ac3fd01448e2bf1061cb67f47d20d12d9b2e13c | [
"Apache-2.0"
] | null | null | null | components/ESC/src/FuelGauge.cpp | xmrhaelan/turpial-firmware | 1ac3fd01448e2bf1061cb67f47d20d12d9b2e13c | [
"Apache-2.0"
] | null | null | null | components/ESC/src/FuelGauge.cpp | xmrhaelan/turpial-firmware | 1ac3fd01448e2bf1061cb67f47d20d12d9b2e13c | [
"Apache-2.0"
] | null | null | null | /**
* @file FuelGauge.cpp
* @author Locha Mesh project developers (locha.io)
* @brief
* @version 0.1
* @date 2019-12-17
*
* @copyright Copyright (c) 2019 Locha Mesh project
*
*/
#include "FuelGauge.h"
#include <freertos/FreeRTOS.h>
#include <freertos/task.h>
#include <esp_err.h>
#include <esp_log.h>
#includ... | 25.718601 | 80 | 0.653706 | xmrhaelan |
28dbe320da4fb415112b6d8efa346f200de6e0c9 | 1,962 | cc | C++ | Validation/CSCRecHits/src/CSCRecHitValidation.cc | pasmuss/cmssw | 566f40c323beef46134485a45ea53349f59ae534 | [
"Apache-2.0"
] | null | null | null | Validation/CSCRecHits/src/CSCRecHitValidation.cc | pasmuss/cmssw | 566f40c323beef46134485a45ea53349f59ae534 | [
"Apache-2.0"
] | null | null | null | Validation/CSCRecHits/src/CSCRecHitValidation.cc | pasmuss/cmssw | 566f40c323beef46134485a45ea53349f59ae534 | [
"Apache-2.0"
] | null | null | null | #include "Validation/CSCRecHits/src/CSCRecHitValidation.h"
#include "FWCore/ParameterSet/interface/ParameterSet.h"
#include "FWCore/ServiceRegistry/interface/Service.h"
#include "Geometry/CSCGeometry/interface/CSCGeometry.h"
#include "Geometry/Records/interface/MuonGeometryRecord.h"
#include <DataFormats/CSCRecHit/inte... | 35.035714 | 117 | 0.740571 | pasmuss |
28dd074f3c8ce8a676ece4f7dbd416d366d4d6b0 | 13,157 | hpp | C++ | src/sgraph/sgraph_edge_apply.hpp | shreyasvj25/turicreate | 32e84ca16aef8d04aff3d49ae9984bd49326bffd | [
"BSD-3-Clause"
] | 1 | 2018-12-15T20:03:51.000Z | 2018-12-15T20:03:51.000Z | src/sgraph/sgraph_edge_apply.hpp | shreyasvj25/turicreate | 32e84ca16aef8d04aff3d49ae9984bd49326bffd | [
"BSD-3-Clause"
] | 3 | 2021-09-08T02:18:00.000Z | 2022-03-12T00:39:44.000Z | src/sgraph/sgraph_edge_apply.hpp | ZeroInfinite/turicreate | dd210c2563930881abd51fd69cb73007955b33fd | [
"BSD-3-Clause"
] | 1 | 2020-10-21T17:46:28.000Z | 2020-10-21T17:46:28.000Z | /* Copyright © 2017 Apple Inc. All rights reserved.
*
* Use of this source code is governed by a BSD-3-clause license that can
* be found in the LICENSE.txt file or at https://opensource.org/licenses/BSD-3-Clause
*/
#ifndef TURI_SGRAPH_SGRAPH_EDGE_APPLY_HPP
#define TURI_SGRAPH_SGRAPH_EDGE_APPLY_HPP
#include <vecto... | 35.179144 | 101 | 0.636011 | shreyasvj25 |
28e02441a5cd4ad7bb228fb33edc1b7f00072297 | 21,824 | cpp | C++ | libenchant/src/ispell/lookup.cpp | orynider/php-5.6.3x4VC9 | 47f9765b797279061c364e004153a0919895b23e | [
"BSD-2-Clause"
] | 1 | 2021-02-24T13:01:00.000Z | 2021-02-24T13:01:00.000Z | libenchant/src/ispell/lookup.cpp | orynider/php-5.6.3x4VC9 | 47f9765b797279061c364e004153a0919895b23e | [
"BSD-2-Clause"
] | null | null | null | libenchant/src/ispell/lookup.cpp | orynider/php-5.6.3x4VC9 | 47f9765b797279061c364e004153a0919895b23e | [
"BSD-2-Clause"
] | null | null | null | /* vim: set sw=8: -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
* lookup.c - see if a word appears in the dictionary
*
* Pace Willisson, 1983
*
* Copyright 1987, 1988, 1989, 1992, 1993, Geoff Kuenning, Granada Hills, CA
* All rights reserved.
*
* Redistribution and use in source an... | 29.29396 | 129 | 0.640442 | orynider |
28e2d2bced7f8c72830745b9c24350a9c874dccd | 14,709 | cpp | C++ | Dependencies/Angelscript/source/as_callfunc_x64_gcc.cpp | CyberSys/ogitor | ef907e1cec77c397f809fa31b2a83cca733108e9 | [
"MIT"
] | 303 | 2015-07-11T17:12:55.000Z | 2018-01-08T03:02:37.000Z | Dependencies/Angelscript/source/as_callfunc_x64_gcc.cpp | CyberSys/ogitor | ef907e1cec77c397f809fa31b2a83cca733108e9 | [
"MIT"
] | 39 | 2017-04-08T09:01:47.000Z | 2021-10-10T12:15:57.000Z | Dependencies/Angelscript/source/as_callfunc_x64_gcc.cpp | CyberSys/ogitor | ef907e1cec77c397f809fa31b2a83cca733108e9 | [
"MIT"
] | 45 | 2017-01-07T08:25:29.000Z | 2021-11-03T08:44:07.000Z | /*
AngelCode Scripting Library
Copyright (c) 2003-2014 Andreas Jonsson
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any
damages arising from the use of this software.
Permission is granted to anyone to use this software f... | 30.64375 | 140 | 0.656129 | CyberSys |
28e2ea6390df50c8be54c0814935a2f79149e736 | 4,895 | cpp | C++ | taglib/ownershipframe.cpp | acristoffers/SimplePlayer | aba0702901960648fc6602201f85198af87377ed | [
"MIT-0"
] | null | null | null | taglib/ownershipframe.cpp | acristoffers/SimplePlayer | aba0702901960648fc6602201f85198af87377ed | [
"MIT-0"
] | null | null | null | taglib/ownershipframe.cpp | acristoffers/SimplePlayer | aba0702901960648fc6602201f85198af87377ed | [
"MIT-0"
] | null | null | null | /***************************************************************************
* copyright : (C) 2012 by Rupert Daniel email : rupert@cancelmonday.com
***************************************************************************/
/***************************************************************... | 30.030675 | 103 | 0.508478 | acristoffers |
28e3e755cd2fa347658d818599f0150fdd64f942 | 1,071 | cpp | C++ | Source/Common/Android/utils_android.cpp | marswe/libHttpClient | c027c9a5f4babef09d5670a1ec00f2c197adb7db | [
"MIT"
] | 2 | 2018-12-25T03:09:22.000Z | 2021-04-08T13:43:46.000Z | Source/Common/Android/utils_android.cpp | marswe/libHttpClient | c027c9a5f4babef09d5670a1ec00f2c197adb7db | [
"MIT"
] | null | null | null | Source/Common/Android/utils_android.cpp | marswe/libHttpClient | c027c9a5f4babef09d5670a1ec00f2c197adb7db | [
"MIT"
] | 2 | 2020-12-21T09:05:10.000Z | 2021-07-20T01:22:34.000Z | // Copyright (c) Microsoft Corporation
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
#include "pch.h"
#include "utils_android.h"
#include "../HTTP/Android/android_platform_context.h"
NAMESPACE_XBOX_HTTP_CLIENT_BEGIN
JNIEnv* get_jvm_env()
{
auto httpSingleto... | 30.6 | 135 | 0.715219 | marswe |
28e3fc3b6d257b170ee50dbfa2f9d81ce5c21fc3 | 2,858 | cc | C++ | weblayer/browser/url_bar/url_bar_browsertest.cc | chromium/chromium | df46e572c3449a4b108d6e02fbe4f6d24cf98381 | [
"BSD-3-Clause-No-Nuclear-License-2014",
"BSD-3-Clause"
] | 14,668 | 2015-01-01T01:57:10.000Z | 2022-03-31T23:33:32.000Z | weblayer/browser/url_bar/url_bar_browsertest.cc | chromium/chromium | df46e572c3449a4b108d6e02fbe4f6d24cf98381 | [
"BSD-3-Clause-No-Nuclear-License-2014",
"BSD-3-Clause"
] | 86 | 2015-10-21T13:02:42.000Z | 2022-03-14T07:50:50.000Z | weblayer/browser/url_bar/url_bar_browsertest.cc | chromium/chromium | df46e572c3449a4b108d6e02fbe4f6d24cf98381 | [
"BSD-3-Clause-No-Nuclear-License-2014",
"BSD-3-Clause"
] | 5,941 | 2015-01-02T11:32:21.000Z | 2022-03-31T16:35:46.000Z | // Copyright 2020 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "base/memory/raw_ptr.h"
#include "base/run_loop.h"
#include "net/test/embedded_test_server/embedded_test_server.h"
#include "weblayer/browser/bro... | 31.065217 | 80 | 0.746326 | chromium |
28e5e070f347193bfa1429bad87a6a9d7bbed87d | 13,344 | cpp | C++ | lsteamclient/cppISteamFriends_SteamFriends012.cpp | Miouyouyou/Proton | 72499898a7da4b3d17c748e308b50d9347f4b370 | [
"BSD-3-Clause-No-Nuclear-License-2014",
"BSD-3-Clause"
] | 1 | 2019-09-29T02:03:45.000Z | 2019-09-29T02:03:45.000Z | lsteamclient/cppISteamFriends_SteamFriends012.cpp | Miouyouyou/Proton | 72499898a7da4b3d17c748e308b50d9347f4b370 | [
"BSD-3-Clause-No-Nuclear-License-2014",
"BSD-3-Clause"
] | null | null | null | lsteamclient/cppISteamFriends_SteamFriends012.cpp | Miouyouyou/Proton | 72499898a7da4b3d17c748e308b50d9347f4b370 | [
"BSD-3-Clause-No-Nuclear-License-2014",
"BSD-3-Clause"
] | null | null | null | #include "steam_defs.h"
#include "steamworks_sdk_119x/steam_api.h"
#include "steamclient_private.h"
#include "cppISteamFriends_SteamFriends012.h"
#ifdef __cplusplus
extern "C" {
#endif
#include "struct_converters_119x.h"
const char * cppISteamFriends_SteamFriends012_GetPersonaName(void *linux_side)
{
return ((IStea... | 40.807339 | 183 | 0.822842 | Miouyouyou |
28e98636a33b89d3480185b66511584b7bd2475e | 1,782 | cpp | C++ | implementations/Segtree2.cpp | LeoRiether/Competicao-Programativa | ad5bd4eba58792ad1ce7057fdf9fa6ef8970b17e | [
"MIT"
] | 1 | 2019-12-15T22:23:20.000Z | 2019-12-15T22:23:20.000Z | implementations/Segtree2.cpp | LeoRiether/Competicao-Programativa | ad5bd4eba58792ad1ce7057fdf9fa6ef8970b17e | [
"MIT"
] | null | null | null | implementations/Segtree2.cpp | LeoRiether/Competicao-Programativa | ad5bd4eba58792ad1ce7057fdf9fa6ef8970b17e | [
"MIT"
] | null | null | null | #include <iostream>
#include <vector>
#include <cmath>
using namespace std;
using vi = vector<int>;
#define LEFT(i) 2*i+1
#define RIGHT(i) 2*i+2
int getSTSize(int x) {
return 1<<int(ceil(log2(x))+1);
}
struct Segtree {
int n;
vi data, lazy;
Segtree(int n) : n(n) {
int s = getSTSize(n... | 19.582418 | 64 | 0.446689 | LeoRiether |
28ea0234c1a7de087cf6d2435f86d21fbedca7ac | 385 | cc | C++ | examples/master/packages/popc/examples/heritage/mother.cc | GaretJax/pop-utils | 2cdfaf24c2f8678edfab1f430c07611d488247d5 | [
"MIT"
] | null | null | null | examples/master/packages/popc/examples/heritage/mother.cc | GaretJax/pop-utils | 2cdfaf24c2f8678edfab1f430c07611d488247d5 | [
"MIT"
] | 1 | 2021-03-22T17:12:51.000Z | 2021-03-22T17:12:51.000Z | examples/master/packages/popc/examples/heritage/mother.cc | GaretJax/pop-utils | 2cdfaf24c2f8678edfab1f430c07611d488247d5 | [
"MIT"
] | null | null | null | #include <stdio.h>
#include "child.ph"
Mother::Mother()
{
val=0;
}
int Mother::Method1()
{
printf("Heritage: Executing Method1 in Mother no:%d\n", val);
}
void Mother::SetVal(int v)
{
val=v;
}
int Mother::GetVal()
{
return val;
}
void Mother::callMethod(Mother &c, int v)
{
c.Method1();
c.SetVal(v);
c.Method... | 12.03125 | 62 | 0.633766 | GaretJax |
28ea2b0d11dbb9467d83fc08a5e444619dcd0edc | 12,899 | cc | C++ | test/t_api.cc | yuex1994/iw_ilang | e31ffdca4e2c6503804e229b54a44211eb214980 | [
"MIT"
] | null | null | null | test/t_api.cc | yuex1994/iw_ilang | e31ffdca4e2c6503804e229b54a44211eb214980 | [
"MIT"
] | null | null | null | test/t_api.cc | yuex1994/iw_ilang | e31ffdca4e2c6503804e229b54a44211eb214980 | [
"MIT"
] | null | null | null | /// \file
/// Unit test for c++ API
#include "unit-include/config.h"
#include "unit-include/eq_ilas.h"
#include "unit-include/simple_cpu.h"
#include "unit-include/util.h"
#include <ilang/ilang++.h>
#include <vector>
#define REG_NUM 16
#define REG_SIZE 8
namespace ilang {
TEST(TestApi, LogicShift) {
auto c = BvCon... | 27.503198 | 74 | 0.667726 | yuex1994 |
28eb79f9570331643522c81991e661346f6a2414 | 996 | hpp | C++ | include/roq/utils/number.hpp | roq-trading/api | a5910c88df3759496957d7b9748cf6c1364e8bec | [
"MIT"
] | null | null | null | include/roq/utils/number.hpp | roq-trading/api | a5910c88df3759496957d7b9748cf6c1364e8bec | [
"MIT"
] | null | null | null | include/roq/utils/number.hpp | roq-trading/api | a5910c88df3759496957d7b9748cf6c1364e8bec | [
"MIT"
] | null | null | null | /* Copyright (c) 2017-2022, Hans Erik Thrane */
#pragma once
#include <fmt/format.h>
#include "roq/decimals.hpp"
#include "roq/utils/common.hpp"
namespace roq {
namespace utils {
struct Number final {
Number() = default;
Number(double value, Decimals decimals) : value(value), decimals(decimals) {}
const do... | 24.9 | 111 | 0.685743 | roq-trading |
28ecf97b9bd3d3b084553cd98643e3b25c4d6f87 | 1,128 | hpp | C++ | src/pipemode_op/test/testRecordReader/TestTFRecordReader.hpp | laurenyu/sagemaker-tensorflow-extensions | 14d15e7a292926a69aa590cad3fd2c9d68bd7df5 | [
"Apache-2.0"
] | 43 | 2018-07-18T20:07:11.000Z | 2022-02-19T20:38:58.000Z | src/pipemode_op/test/testRecordReader/TestTFRecordReader.hpp | laurenyu/sagemaker-tensorflow-extensions | 14d15e7a292926a69aa590cad3fd2c9d68bd7df5 | [
"Apache-2.0"
] | 91 | 2018-07-28T17:55:08.000Z | 2022-02-23T22:09:14.000Z | src/pipemode_op/test/testRecordReader/TestTFRecordReader.hpp | laurenyu/sagemaker-tensorflow-extensions | 14d15e7a292926a69aa590cad3fd2c9d68bd7df5 | [
"Apache-2.0"
] | 53 | 2018-07-18T20:07:15.000Z | 2022-02-07T22:47:06.000Z |
#ifndef SRC_PIPEMODE_OP_TEST_TESTRECORDREADER_TESTTFRECORDREADER_HPP_
#define SRC_PIPEMODE_OP_TEST_TESTRECORDREADER_TESTTFRECORDREADER_HPP_
// Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License"). You
// may not use this file exce... | 31.333333 | 74 | 0.764184 | laurenyu |
28ed6b872c1a0f922bde9d03d1814e5242843322 | 885 | cpp | C++ | OrbitCore/ObjectCount.cpp | atharwa-24/orbit | 3726214743d3dd9877b2fe2d21686e7c58d5b924 | [
"BSD-2-Clause"
] | 1 | 2020-08-10T09:59:33.000Z | 2020-08-10T09:59:33.000Z | OrbitCore/ObjectCount.cpp | atharwa-24/orbit | 3726214743d3dd9877b2fe2d21686e7c58d5b924 | [
"BSD-2-Clause"
] | null | null | null | OrbitCore/ObjectCount.cpp | atharwa-24/orbit | 3726214743d3dd9877b2fe2d21686e7c58d5b924 | [
"BSD-2-Clause"
] | null | null | null | // 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 "ObjectCount.h"
ObjectCounter GObjectCounter;
//-----------------------------------------------------------------------------
int ObjectCounte... | 32.777778 | 79 | 0.555932 | atharwa-24 |