blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 3 264 | content_id stringlengths 40 40 | detected_licenses listlengths 0 85 | license_type stringclasses 2
values | repo_name stringlengths 5 140 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 905
values | visit_date timestamp[us]date 2015-08-09 11:21:18 2023-09-06 10:45:07 | revision_date timestamp[us]date 1997-09-14 05:04:47 2023-09-17 19:19:19 | committer_date timestamp[us]date 1997-09-14 05:04:47 2023-09-06 06:22:19 | github_id int64 3.89k 681M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 22
values | gha_event_created_at timestamp[us]date 2012-06-07 00:51:45 2023-09-14 21:58:39 ⌀ | gha_created_at timestamp[us]date 2008-03-27 23:40:48 2023-08-21 23:17:38 ⌀ | gha_language stringclasses 141
values | src_encoding stringclasses 34
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 2
classes | length_bytes int64 3 10.4M | extension stringclasses 115
values | content stringlengths 3 10.4M | authors listlengths 1 1 | author_id stringlengths 0 158 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
31c6900616f3d2198c2670812a291da5bdf866a6 | 784fe5d235530804b0a2408f03d71c944720224a | /src/cosma/environment_variables.cpp | 3914d6bb5fc20588ebf591a32ddf3d5c29b8ccfb | [
"BSD-3-Clause"
] | permissive | pouya-haghi/COSMA | af8ed3f2f5a696c66411ba72548eb245afed7763 | 782d5d7c1e52adb800688dc8286c06fbcd13374d | refs/heads/master | 2022-11-10T02:25:06.901451 | 2020-06-23T01:31:39 | 2020-06-23T01:31:39 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,730 | cpp | #include <cosma/environment_variables.hpp>
#include <algorithm>
bool cosma::env_var_defined(const char* var_name) {
char* var = getenv (var_name);
return var != nullptr;
}
bool cosma::get_bool_env_var(std::string name, bool default_value) {
char* var;
var = getenv(name.c_str());
bool value = defau... | [
"marko.kabic@cscs.ch"
] | marko.kabic@cscs.ch |
e23f6743247d49224f31e68c197052458565dc19 | c8b7fea80cb77a20dba889d7c3b90fd192c878a4 | /modules/objfmts/win32/SxData.h | 2b1acf34671720f35557da42530bdf39a0a4d9d4 | [] | no_license | PeterJohnson/yasm-nextgen | b870244740f0507dbdd02bd99aa2f0ebd3731726 | de173dcbd49575f1714f2f16347dbb59bc38a9f4 | refs/heads/master | 2020-04-08T20:37:38.333729 | 2011-06-22T05:52:28 | 2011-06-22T05:52:28 | 1,501,974 | 7 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,761 | h | #ifndef YASM_SXDATA_H
#define YASM_SXDATA_H
//
// Bytecode for Win32 .sxdata sections
//
// Copyright (C) 2002-2008 Peter Johnson
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions
// are met:
// 1. Redistributions of source c... | [
"peter@tortall.net"
] | peter@tortall.net |
827d8d42dcdc1dd3b6f1b559b8b349a83585bb7f | feb207f41689d5fca13f013a9072125de96b8b44 | /mwnet_mt/net/EventLoopThread.h | 841526c3d809120e8086947e0fcba7c5b6d20bb1 | [] | no_license | cocoj521/libmwnet | d4bc1f13aa07eff31e33b6d46fd312fc83fa9d8e | 27201f76d6c7a81155b264a59a70f3b7ddcefa72 | refs/heads/master | 2023-08-16T21:28:37.202454 | 2023-08-16T08:17:02 | 2023-08-16T08:17:02 | 163,558,652 | 6 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 937 | h | // Use of this source code is governed by a BSD-style license
// that can be found in the License file.
// This is a public header file, it must only include public header files.
#ifndef MWNET_MT_NET_EVENTLOOPTHREAD_H
#define MWNET_MT_NET_EVENTLOOPTHREAD_H
#include <mwnet_mt/base/Condition.h>
#include <mwnet_mt/base... | [
"cocoj521@163.com"
] | cocoj521@163.com |
dd60a7dba792cdda90e740060b5f5e4b3bb6891d | 87965f0299a1d0b44d3ca7bd162d158a12e193fb | /cpp/x03/func.hpp | b1dd6e6a6b226d34218d7d06cb4da7034cb85f8a | [] | no_license | vitaliiboiko360/cpp_core | bbe2023fd62eef65b14ac4c5b451fa557ca302e9 | a4da028ea3c40892ebefb79b6d0641a667f20f20 | refs/heads/master | 2021-06-09T14:03:21.564144 | 2021-04-25T18:06:06 | 2021-04-25T18:06:06 | 167,162,589 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 518 | hpp | #include <iostream>
#include <memory>
class MyClass
{
int m_number;
public:
MyClass();
MyClass(int number);
~MyClass();
};
MyClass::MyClass()
{
std::cout<<"MyClass()\n";
}
MyClass::MyClass(int number)
: m_number(number)
{
std::cout<<"MyClass( number= "<<number<<" )\n";
}
... | [
"vukelan@gmail.com"
] | vukelan@gmail.com |
e1ffc0db48b0c7eeae59c910abc103015dee1cec | 64c32421152c671859044ca6f0ff142cb43ddaf2 | /Davide_codes/Pedina.cc | 61a90dffb54c06c4a68acd249f5a8d72981f3faa | [] | no_license | francescobrivio/Dama | f1fdffe9eeb708e43908cb35e757eaeaa38d10f0 | 765ef251002ad26fde4d429102a8a3e3384f1269 | refs/heads/master | 2021-01-01T19:08:47.914907 | 2017-09-30T16:27:09 | 2017-09-30T16:27:09 | 98,522,882 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,989 | cc | #include "Pedina.h"
#include "include/cppinclude.h"
Pedina::Pedina()
{
Board* board = new Board();
srand (time(NULL));
_x = rand() % Nslot + 1;
_y = rand() % Nslot + 1;
_color = 1;
_board = board;
}
Pedina::Pedina(const std::string color, int x, int y, Board* board):
_x (x),
_y (y),
_color (color),... | [
"davide.fazzini@cern.ch"
] | davide.fazzini@cern.ch |
c02396d193e1dae0ba8bc935ec804798e05cbdd1 | bda9c698b94a787a43e235c262f5d8635bb021bb | /cnn/basicOps.cpp | 39a31f90e6e9e7d6b979eb76716e1437682587a4 | [] | no_license | yangcyself/CS385cpp | 2e94c28732cb9e14d2e9833ab00608d68dbf9524 | f1219f924e05a5cc549ef0f375d12da107dc506b | refs/heads/master | 2022-01-04T19:38:18.013603 | 2019-06-18T15:54:30 | 2019-06-18T15:54:30 | 192,167,786 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,372 | cpp |
#include <cnn/basicOps.h>
// #include <stdio.h>
#include <iostream>
namespace convnn
{
void null_deleter(Operator *){}
/**
* The forward function for Conv operators
* if the operator is in train mode, it caches the a and b
* to make it convinence to calculate the gradient.
* ** Thus, the backward of one loss ... | [
"13520183356@139.com"
] | 13520183356@139.com |
3763c8b5ffa7d116fe4376884af88b97976bd176 | 7e1962ff4f2e23c29e4fb7b9fb1e7b7174380a4e | /graph.cpp | af139b3a0f2fef1f6fa58fde9197cda54c17d86b | [] | no_license | severly/HexBoard | dc497ac6ec0c4562e4469f45a0864e1170613b1e | 0fe16e233f8ce8855a9c3a201cf2bddb0f32052c | refs/heads/master | 2016-09-05T20:28:56.904728 | 2014-09-14T09:33:25 | 2014-09-14T09:33:25 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,153 | cpp | /*
* graph.cpp
* All functions related to the Graph class defined in graph.c
*
*/
#include "graph.h"
#include "node.h"
#include "hex_ai.h"
using namespace std;
/*
* Constructor: build a graph of n+2 by n+2 nodes. Each node has a player (corresponding to player 1 or
* player 2) and a list of al... | [
"sevpalmer@gmail.com"
] | sevpalmer@gmail.com |
c7afb361416ac04e18f89dd30e06c2c4738a46cf | 9ad856f7581cadfb98fd1216b9d696293b12fe49 | /Project/SceneLoader/Scenes/Scene_01/Controller/StartButton/StartButton.hpp | 06992ac5797f76ff70fde36fc47ed6cdc6292a3b | [] | no_license | Hanawaro/Turing-machine | 0c9ac024bdebecdafa111b16513493dd0e11da68 | a3db03c105476a1dcc39a4ad80d2574bee4b725e | refs/heads/master | 2022-07-09T10:11:40.846568 | 2020-05-18T21:04:37 | 2020-05-18T21:04:37 | 264,501,031 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 785 | hpp | #ifndef StartButton_hpp
#define StartButton_hpp
#include "../../Status/Status.hpp"
class StartButton {
public:
StartButton(SDL_Renderer* l_Renderer);
~StartButton(void);
void draw(void);
void touch(void);
void active(void);
void set(void);
void disable(void);
void clear(void)... | [
"hanawaro3@gmail.com"
] | hanawaro3@gmail.com |
8b31a0535c7fe9abf7ef7473932facd180853064 | 8f82a46e54200f130c6421d09570e5861c900236 | /OpenGameCamera/sdk.hpp | 834eacaff6e9acc281f91662390dfc59d32e8d74 | [
"LicenseRef-scancode-free-unknown",
"MIT"
] | permissive | GalaxyEham/OpenGameCamera | 8bb6ddbc8280e73bb3b3113bd44d7fb142da6dc5 | deeddd8cb43b8786f1ffffa6b46f4c1e432665b9 | refs/heads/master | 2020-09-28T11:44:07.964783 | 2019-12-09T02:58:49 | 2019-12-09T02:58:49 | 226,771,912 | 1 | 0 | MIT | 2019-12-09T02:56:03 | 2019-12-09T02:56:02 | null | UTF-8 | C++ | false | false | 2,299 | hpp | #pragma once
#include "SigScan/StaticOffsets.h"
#include "BasicTypes.hpp"
// reverse engineered game classes
class GameRenderer;
class RenderView;
class UISettings;
class GameTimeSettings;
class CameraObject;
class GameRenderSettings;
class GlobalPostProcessSettings;
class InputSettings;
class GameRenderer {
public:... | [
"cnpearson42@gmail.com"
] | cnpearson42@gmail.com |
51cc5f981142ad46f0ede166f955d4430e9f5d3d | db8a05784fc53493e9afe2ac66ec7fc4601ba858 | /dms-enterprise/src/model/ListUserPermissionsResult.cc | dbb1fcf3c140d024d3d18afc77cd55de0ddc2440 | [
"Apache-2.0"
] | permissive | netangel2050/aliyun-openapi-cpp-sdk | 31cf70c28c13508e977c729c62ee9366c0b7ceda | a4f63bc75f217010dab18ef0f5d9cdc6ea92e80e | refs/heads/master | 2023-02-02T22:56:39.269293 | 2020-12-21T02:59:31 | 2020-12-21T02:59:31 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,901 | cc | /*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | [
"sdk-team@alibabacloud.com"
] | sdk-team@alibabacloud.com |
c362c4a57ca79418b0f211d11a2e464833d4be1e | fb8e55204362d0d0a6c3829760de63abb5fcff2c | /Tutorial 11/LoadingTileMapsUsingVectors/main.cpp | c8b636040677c264fe2a694c0bc1c6f69093c819 | [] | no_license | igorternyuk/SFML2Tutorials | 1ab30c301379291ed44239a0f38ae33392e349a2 | 82679a55fa79d4ac87249afbf596e18fa7507ddd | refs/heads/master | 2021-01-21T16:44:24.140547 | 2017-05-23T14:40:22 | 2017-05-23T14:40:22 | 91,902,487 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,988 | cpp | #include <SFML/Graphics.hpp>
#include <vector>
#include <string>
#include <cmath>
#include <ctime>
#include <stdlib.h>
#include <cctype>
#include <iostream>
#include <fstream>
int main()
{
sf::Vector2i size(600, 600);
sf::RenderWindow window(sf::VideoMode(size.x, size.y), "Loading maps", sf::Style::Default);
... | [
"xmonad100@gmail.com"
] | xmonad100@gmail.com |
37d105c771f813dab6fd07ebc7ef10a4e66e5d72 | abe2c978f240a5508f6ec842c9e7a6ab50d4f205 | /QWorkNew/plugins/db/dbproviders/OracleRdbProvider/engine/RdbSqlLinkFinder.cpp | 6aad2345798b511281c9b666b330b43b51b932bc | [] | no_license | kai66673/QWorkNew | 48cdb76edafc36468a9b89a1509db8511f890a42 | de485ae2fff0fa2d0c5274a5c51712896d98c311 | refs/heads/master | 2021-08-26T00:33:25.273835 | 2021-08-25T18:13:13 | 2021-08-25T18:13:13 | 98,813,428 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 25,712 | cpp | #include "RdbSqlLinkFinder.h"
#include "RdbSqlScope.h"
#include "SqlToken.h"
namespace RDB {
static Core::ILink *createSubobjectLink( Database::DbConnection *connection,
const QString &objectName,
const QString &subobjectName,
... | [
"kudryavtsev@teleformis.ru"
] | kudryavtsev@teleformis.ru |
e8c90458c219f0d87f28b3143540285276978960 | 7bc616ba82a2917a842e4ffb333b87c87c364230 | /src/shared/World/Vehicle.h | 0aa5cc35d30b99363b5a199aa6eb41b42024eb6e | [] | no_license | fathat/game-src | af96ef99abc00e41b2e11086f859ee28872f4a87 | a8cc8238a463067d2259ab0b1dff1cd947e27aa5 | refs/heads/master | 2021-01-10T21:00:57.293722 | 2012-02-18T20:59:49 | 2012-02-18T20:59:49 | 3,480,646 | 2 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 2,058 | h | // I N C L U D E S //////////////////////////////
#include "..\Physics\Construction.h"
// C L A S S E S ////////////////////////////////
struct Wheel
{
float Radius;
Vector3D Location;
};
class Vehicle4Wheeled : public Construction
{
protected:
bool AllWheelSteering;
MeshHandle ChassisMesh;
MeshHa... | [
"ian.overgard@gmail.com"
] | ian.overgard@gmail.com |
99e80c2e7d02e0a8385e422551e87edb295e46fa | f414ee90b1b72f357f1b7c53560252c2f7b91c4a | /Workshop 7/Workshop 7/iProduct.cpp | 1b8ac6f18fd75e771d6722c49fca9ead8ec2639c | [] | no_license | jkjCook/OOP345 | 97344a4e4cf831f0c15c997c5de61a9373e4c9b8 | 380e39e260374a865999a7c1d80882f27384f31a | refs/heads/master | 2021-03-27T18:59:44.426258 | 2017-09-06T21:12:48 | 2017-09-06T21:12:48 | 95,379,315 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,089 | cpp | #include "iProduct.h"
using namespace std;
namespace w7 {
std::ostream& operator<<(std::ostream& os, const iProduct& prod) {
prod.display(os);
return os;
}
iProduct* readProduct(std::ifstream& file) {
iProduct* prod;
if (file.is_open()) {
string line;
getline(file, ... | [
"jkjcook@gmail.com"
] | jkjcook@gmail.com |
6d5a0321f2fcc81ce639bca09322174889d1b52e | bc3f4007a299ecf68d2846ad63b3bd7e6fcaf035 | /Server/KFContrib/KFZConfig/KFFootConfig.hpp | d042e676831aeb627535bd80a5e09b45417eb6fe | [
"Apache-2.0"
] | permissive | maosher/Fighter | 5901e71d4a22a5941a5132b58d44af5b889477b1 | 4587516099f1ff3d31e1acbf571dbe53c485ad67 | refs/heads/master | 2022-12-04T03:01:29.914772 | 2020-08-18T07:58:04 | 2020-08-18T07:58:04 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 736 | hpp | #ifndef __KF_FOOT_CONFIG_H__
#define __KF_FOOT_CONFIG_H__
#include "KFrame.h"
#include "KFZConfig/KFConfig.h"
namespace KFrame
{
class KFFootSetting : public KFIntSetting
{
public:
// 名字
std::string _name;
};
///////////////////////////////////////////////////////////////////////... | [
"lori227@qq.com"
] | lori227@qq.com |
5fcb5c9fa335ca3550657ea189a791a0c2a06d42 | 6b2a8dd202fdce77c971c412717e305e1caaac51 | /solutions_2464487_1/C++/Erik/A.cpp | 3757205901960ecf074eb0626a8af3b768d9a6b5 | [] | no_license | alexandraback/datacollection | 0bc67a9ace00abbc843f4912562f3a064992e0e9 | 076a7bc7693f3abf07bfdbdac838cb4ef65ccfcf | refs/heads/master | 2021-01-24T18:27:24.417992 | 2017-05-23T09:23:38 | 2017-05-23T09:23:38 | 84,313,442 | 2 | 4 | null | null | null | null | UTF-8 | C++ | false | false | 667 | cpp | #include <cstdio>
#include <cmath>
#include <iostream>
#include <inttypes.h>
using namespace std;
int main() {
int T;
cin >> T;
uint64_t r,t;
for (int t_ = 0; t_ < T; t_++) {
cin >> r >> t;
uint64_t min, max;
min = 0;
max = (1LLU<<32)-1;
uint64_t n;
while (min < max) {
if ((max... | [
"eewestman@gmail.com"
] | eewestman@gmail.com |
b89ff4bbddb977bc3371a3d4bd719f73965014ed | c3296be0b81624bed5a169ee769d660fceaad3e0 | /framework/core/net/entropy_calibrator.h | 4fd343f1ba9c063d8f96ecd3619551cfa1528fad | [
"Apache-2.0"
] | permissive | pangge/Anakin | f994bb15ba07f75d1bd0a0092e7ffbd7b3bf4633 | f327267d1ee2038d92d8c704ec9f1a03cb800fc8 | refs/heads/master | 2021-07-11T02:14:44.606691 | 2018-11-18T05:38:17 | 2018-11-18T05:38:17 | 133,911,283 | 0 | 0 | Apache-2.0 | 2018-09-08T07:35:49 | 2018-05-18T06:15:03 | C++ | UTF-8 | C++ | false | false | 2,917 | h |
/* Copyright (c) 2018 Anakin Authors, Inc. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by... | [
"939136265@qq.com"
] | 939136265@qq.com |
b31f9b6c2e8590ef447457fc46eaae3a6dfbd011 | b39cf89298cb52758300cb41936d3ab0c67465c4 | /include/mesh/mesh.h | 3b5b2014feea1cba3c75de43a3cc18fd444d649e | [] | no_license | EricDDK/OpenGLLearning | 4e64adc474d88d8fb3a89380622413b5105ace3f | 0336764ed4e56e23b743b15d97c4a0ffd1618675 | refs/heads/master | 2020-03-30T03:56:06.776502 | 2019-07-11T06:50:57 | 2019-07-11T06:50:57 | 150,715,821 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 3,924 | h | #ifndef MESH_H
#define MESH_H
#include <glad/glad.h>
#include <GLFW/glfw3.h>
#include <glm/glm.hpp>
#include <glm/gtc/matrix_transform.hpp>
#include "shader/shader.h"
#define STB_IMAGE_IMPLEMENTATION
#include "stb/stb_image.h"
#include <assimp/Importer.hpp>
#include <assimp/scene.h>
#include <assimp/postprocess.h>
#in... | [
"dekai.ding@shen021.com"
] | dekai.ding@shen021.com |
b9f6d0dee506f6324aaeb0fdb468fcb047353699 | dcac89e0f9ddcd37f6fc5a909a2784e6089a2758 | /N96FY.h | 712eb54366dbc258dc056d149e0dc6f7e35eae09 | [
"MIT"
] | permissive | tstoegi/esp8266_Anemometer_N96FY | c6938163bb049833c3fdc8db6fcc4cdbfdf86b70 | 11a4d8127100a6c8357933c7c1ea77c1a523b251 | refs/heads/master | 2022-01-13T00:33:10.640025 | 2019-05-18T09:33:06 | 2019-05-18T09:33:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,939 | h | #ifndef N96FY_h
#define N96FY_h
#include <Arduino.h>
/* Arduino N96FY Anemometer Library
* For anemometers based on reed switch technic - usually with 2 wires (for GND,VCC)
* See: https://blogskyeweather.wordpress.com/2016/10/07/anemometer-improvement/
* https://hackaday.io/project/12397-modular-weather-stati... | [
"tobias@more.io"
] | tobias@more.io |
15483b10940ceae8f0026bc67863e8770677df63 | 2adc0703940010c76fde2148d813f60d3453d7a7 | /Linked List/Linked_list_1.cpp | 9a777912c14cb99b724f29b596f02b9cc57d4047 | [] | no_license | Sensrdt/Geeks-For-Geeks-Solution | 063b62d17b3136480bfecb554297e7b8926aa9bd | 20971dd1c352077b993938f890bacaf63f65e392 | refs/heads/master | 2022-09-01T23:57:30.034548 | 2022-07-31T10:10:40 | 2022-07-31T10:10:40 | 198,783,774 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 574 | cpp | #include<bits/stdc++.h>
using namespace std;
struct Node{
int data;
struct Node *next;
};
struct Node* head = NULL;
void insert(int new_data)
{
struct Node* new_node = (struct Node*) malloc(sizeof(struct Node));
new_node->data = new_data;
new_node->next = head;
head = new_node;
}
void display()
... | [
"stsdutta2@gmail.com"
] | stsdutta2@gmail.com |
5efead8e1ba39424537e09b2ba5dfc166727e7d1 | e6f954132aaae3b2cf2c07ae57e017da5428364a | /bcomp/lib/wb/src/wb_c_basesensor.cpp | ad0fc571b658075bd6459849fbfa85c48941729e | [] | no_license | connectthefuture/proview | ec4d0254e8178b686ac34db12f47975434ef0b46 | 116e419a60a8b24733e4b11d6c9b8600145fe4c1 | refs/heads/master | 2021-01-20T04:18:20.679652 | 2017-04-18T10:33:24 | 2017-04-18T10:33:24 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,768 | cpp | /*
* Proview Open Source Process Control.
* Copyright (C) 2005-2017 SSAB EMEA AB.
*
* This file is part of Proview.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version ... | [
"claes.sjofors@proview.se"
] | claes.sjofors@proview.se |
ae1b09e2f38beda4e42424fd986a25ba14a70e36 | adefd0b14bd643729bff9dc299c42b40dc7d81f8 | /BGFX/entry/entry.cpp | 69c0f5e122c96dbcdfa96b94c6841c5e63253218 | [] | no_license | hustztz/Ambergris | 3eff5ca4ca69e7f37ca19821a6ce197e0858a704 | 6057ac5c120a38ff4ec10a6e5baa2b8b41dddc57 | refs/heads/master | 2021-04-26T07:27:59.333765 | 2018-04-08T09:45:44 | 2018-04-08T09:45:44 | 121,361,420 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 22,282 | cpp | /*
* Copyright 2011-2018 Branimir Karadzic. All rights reserved.
* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
*/
#include <bx/bx.h>
#include <bx/file.h>
#include <bx/sort.h>
#include <bgfx/bgfx.h>
#include <time.h>
#if BX_PLATFORM_EMSCRIPTEN
# include <emscripten.h>
#endif // BX_PLATFORM_EMSC... | [
"ztz_mai@163.com"
] | ztz_mai@163.com |
82178ba4873850619fa68a8b79c15e531f3e355c | b0a5d32a808b98b8877b67844b3435203d60fc1d | /interface/RecoTrack.h | ec30fae1df54c983b2e3619f738bb26a68d964ee | [] | no_license | chayanit/analysis-tools | aab5edfccab6751280f31e46213d985417fa2b1c | 8c4c746bf133f20f66e07b43010d62f0eaafeece | refs/heads/develop | 2021-07-11T01:48:49.185025 | 2020-04-30T12:33:12 | 2020-04-30T12:33:12 | 135,294,327 | 1 | 0 | null | 2020-06-09T11:41:59 | 2018-05-29T12:41:51 | C++ | UTF-8 | C++ | false | false | 3,962 | h | #ifndef Analysis_Tools_RecoTrack_h
#define Analysis_Tools_RecoTrack_h 1
// -*- C++ -*-
//
// Package: Analysis/Tools
// Class: RecoTrack
//
/**\class xxx RecoTrack.cc Analysis/Tools/src/RecoTrack.cc
Description: [one line class summary]
Implementation:
[Notes on implementation]
*/
//
// Original Auth... | [
"roberval.walsh@gmail.com"
] | roberval.walsh@gmail.com |
c4738384dcb450244277a9c5d7649271a7380b81 | 69a99d6c06071bbac21a5a2fb7aeffbd4f4edfe7 | /OrganicGLWinLib/TerrainLightingComputeGearT1.h | d94869c4ffa8779f98e42e4b43323c2d22214c97 | [] | no_license | bigans01/OrganicGLWinLib | 66e9034cee14c0b8e9debd0babc46c9ec36ebbea | 01dafe917155dfe09eb559e889af852dc0b0a442 | refs/heads/master | 2023-07-21T14:37:43.022619 | 2023-07-17T23:13:20 | 2023-07-17T23:13:20 | 156,916,327 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,174 | h | #pragma once
#ifndef TERRAINLIGHTINGCOMPUTEGEAR_T1
#define TERRAINLIGHTINGCOMPUTEGEAR_T1
#include "Gear.h"
#include "OrganicGLWinUtils.h"
class TerrainLightingComputeGearT1 : public Gear
{
public:
// defined virtual functions (from MachineShader base class)
void initializeMachineShader(int in_width, int in_heigh... | [
"bigans01@gmail.com"
] | bigans01@gmail.com |
d8b148ac46c014139a3e31ab0ff9682e7599e61b | 8ae13c7d1ff0b89a4a3654bb90f36d122ca234e5 | /FINISHED/C++/Unit01/printStar.cpp | eb82df6a7be111decce1f47c318dc4bb5558ea5b | [] | no_license | ssh352/AllTheSourceCodes | a6f393bcb8bfa26215a0359d14f5f4e3176b9536 | e6862c73add301b9a2dccc8ece1cf9c758ead850 | refs/heads/master | 2020-03-30T13:07:11.424829 | 2015-12-15T01:37:06 | 2015-12-15T01:37:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 620 | cpp | /*
+----------------------------------------------------------
*
* @authors: 风之凌殇 <1054073896@qq.com>
* @FILE NAME: printStar.cpp
* @version: v1.0
* @Time: 2015-08-08 20:15:25
* @Description:
*
+----------------------------------------------------------
*/
#include <iostream>
using namespace std;
int main() {
f... | [
"1054073896@qq.com"
] | 1054073896@qq.com |
dc5617d76b33b1b5c073669ff42cc92de0577e15 | 9f25ac38773b5ccdc0247c9d43948d50e60ab97a | /chrome/browser/ui/ash/holding_space/holding_space_downloads_delegate.h | b23ea756a7005368675af28480754a98159339c4 | [
"BSD-3-Clause"
] | permissive | liang0/chromium | e206553170eab7b4ac643ef7edc8cc57d4c74342 | 7a028876adcc46c7f7079f894a810ea1f511c3a7 | refs/heads/main | 2023-03-25T05:49:21.688462 | 2021-04-28T06:07:52 | 2021-04-28T06:07:52 | 362,370,889 | 1 | 0 | BSD-3-Clause | 2021-04-28T07:04:42 | 2021-04-28T07:04:41 | null | UTF-8 | C++ | false | false | 3,112 | h | // 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.
#ifndef CHROME_BROWSER_UI_ASH_HOLDING_SPACE_HOLDING_SPACE_DOWNLOADS_DELEGATE_H_
#define CHROME_BROWSER_UI_ASH_HOLDING_SPACE_HOLDING_SPACE_DOWNLOADS_DELEGA... | [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
d6dd59df4f72e35d3146945125a70f488fe6b834 | b03d75374042769b292c3b2b784110deba45c90d | /Chapter12/4/stack.h | 984c81bf4aba0ba26abd5021522c1ff2b33696ed | [] | no_license | blacktomato/Cpp-Primer-Plus | e2ce08e9d8fc8d8cb2d42bdb42d9b45cfd446df7 | 92bb8681fb2ff6d1e13d8025afe6568da37619e2 | refs/heads/master | 2022-04-24T01:02:35.360514 | 2020-04-19T16:57:54 | 2020-04-19T16:57:54 | 256,462,182 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 950 | h | #ifndef STACK_H
#define STACK_H
// stack.h -- class declaration for the stack ADT
typedef unsigned long Item;
class Stack{
public:
Stack(); // creates stack with n elements
Stack(int n = MAX); // creates stack with n elements
Stack(const Stack &st);
~Stack();
bo... | [
"b02901001@ntu.edu.tw"
] | b02901001@ntu.edu.tw |
21e4f4febaa9e2c66011757e6f4ce9d4e5c40bfc | 726e2ffb23caadf9b144499ad04b3f8df421c1cc | /include/xml/Node.hpp | 3964d81485488950795543be0d22b06b1adf9e81 | [
"MIT"
] | permissive | spacechase0/XML-Parser | 93e7f5d2d8110f6e165a60660edd7c896825b464 | 0a6c63a27c174bbef1c11cc72d5de960c78f5c56 | refs/heads/master | 2016-09-06T19:47:50.147494 | 2015-03-07T16:43:25 | 2015-03-07T16:43:25 | 2,389,165 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,010 | hpp | #ifndef XML_NODE_HPP
#define XML_NODE_HPP
#include <xml/Attribute.hpp>
#include <memory>
#include <string>
#include <vector>
namespace xml
{
class Node
{
public:
// Typedefs
typedef std::shared_ptr< Node > NodePointer;
typedef std::vector< Attribute > AttributeContainer;
typedef std::vector< NodeP... | [
"chasew@silkweaver.com"
] | chasew@silkweaver.com |
aa505b3dca461f3363dd3ef4215a95cf210d0736 | b3d780ddae3b5455b85a1f8e292d024383067cf6 | /projekat/weapons.hpp | af892d784196ca803f5230b102c660d6ccdd7ae1 | [] | no_license | fdsmudj/Projekat | 4f08a58f2ae74b2f03789d788e57a4d8d0957233 | 9adb90e0e63b517aa57dd8ac40c18c3c11e54fe2 | refs/heads/master | 2022-09-22T04:25:47.323657 | 2020-05-25T12:19:37 | 2020-05-25T12:19:37 | 257,953,513 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 663 | hpp | #ifndef WEAPONS_HPP_INCLUDED
#define WEAPONS_HPP_INCLUDED
enum clas {heavy=1, light=2, energy=3, shells=4};
class Weapons
{
protected:
clas c;
int damage;
bool reload;
int numOfBullets;
double reloadTime;
public:
Weapons(clas c1, int damage1, bool reload1, int numOfBullets1, double reloadTime1)
... | [
"63963638+fdsmudj@users.noreply.github.com"
] | 63963638+fdsmudj@users.noreply.github.com |
80aa2563b8a1f946597990896174db06ea763d8f | cf0ca99d2db32d391adb332862f38cb86c1e4bf0 | /subsetsum/subsetsum.cpp | 580f4ddf561bbc38bf8e5022ac7dc59d6d05b07e | [] | no_license | Ankurrana/Codechef | b213b4355f3c4f2bfa475b65a98c7a03e2e88664 | 088e4a23f00be0a368c4928c45bd8fb507188b04 | refs/heads/master | 2020-04-26T23:29:34.212998 | 2015-01-14T14:51:38 | 2015-01-14T14:51:38 | 19,064,764 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,126 | cpp | #include "bits/stdc++.h"
#include "string"
using namespace std;
#define iterate(n) for(i=0;i<n;i++)
#define Diterate(i,s,e) for(lld (i) = s ; (i)<=e ; i++)
#define getw getchar_unlocked
#define get(a) geta(&a)
#define p(a) printf("%lld\n",(lld)(a))
#define d(str,a) cout << str << " = " << a << endl
#define dv(str,a,... | [
"ankurofficial@hotmail.com"
] | ankurofficial@hotmail.com |
ce4c65af0d412b292a7993885dcd4872886c838b | 04e09e2a3956eef0b18abdf9c45c180cdebc2500 | /Classes/Native/mscorlib_System_Comparison_1_gen4092414351.h | ebb8cdbd60c215357ac6c174913587dada5b7005 | [] | no_license | alexeymax/BetPalzIOSPlugin | fbab11036598d151bd57fd83bf171cb4f77b6032 | 6f1c544a8dd06e6b6ce6d1c5346f73924158bf89 | refs/heads/master | 2021-01-11T22:59:38.673084 | 2017-01-10T12:44:05 | 2017-01-10T12:44:25 | 78,532,028 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 836 | h | #pragma once
#include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <stdint.h>
// BetpalzUnity.Core.Services.Facebook.Model.FacebookFriend
struct FacebookFriend_t2830675500;
// System.IAsyncResult
struct IAsyncResult_t1999651008;
// System.AsyncCallback
struct A... | [
"mkulik@briskmobile.com"
] | mkulik@briskmobile.com |
9b8558a743f615bee8939c552d9b1cf77f7e294b | b5fa65fb13af238c1fb5cf504b94bb68890f2f28 | /Game.cpp | 253b35d03ca32144875a50930822d72ef2695568 | [] | no_license | DomWilliams0/snake-sfml | eb02ea4671a60829e149ca4609efe60b1bd12b7e | b7d9a15a01e00bfa7e6f93b60f9545ac6c4f28f2 | refs/heads/master | 2020-04-18T09:42:20.414508 | 2016-08-29T17:16:48 | 2016-08-29T17:16:48 | 66,863,994 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,094 | cpp | #include <SFML/Graphics.hpp>
#include <iostream>
#include <memory>
#include <stack>
#include "Game.hpp"
#include "World.hpp"
#include "Snake.hpp"
#include "Spawner.hpp"
#include "Logger.hpp"
#include "screens/Screen.hpp"
#include "screens/GameScreen.hpp"
#include "screens/MenuScreen.hpp"
#include "screens/P... | [
"me@domwillia.ms"
] | me@domwillia.ms |
347f22a8438caf2587cee09aa64d00a5470f44fb | b15f60413b8fd808994ef68eba92dd1151a7124d | /Template/TextureManager.cpp | 6c1ca3b26f5abca2524c51b77b2cdc7c2c1fc257 | [] | no_license | woonhak-kong/GAME3001-M2021-Assignment4 | 050b391175958b3cb3d1fabfab8d36a15530f89a | 97b3263e1a87ebe21ec6347f1a8abd2ce751360d | refs/heads/master | 2023-07-09T12:29:56.888668 | 2021-08-12T12:10:16 | 2021-08-12T12:10:16 | 394,242,469 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 14,615 | cpp | #include "TextureManager.h"
#include <SDL_image.h>
#include "Game.h"
#include <utility>
#include <fstream>
#include <sstream>
#include "Frame.h"
#include <iterator>
TextureManager::TextureManager()
= default;
TextureManager::~TextureManager()
= default;
inline bool TextureManager::m_textureExists(const std::string &... | [
"woonhak.kong@georgebrown.ca"
] | woonhak.kong@georgebrown.ca |
c4059f1932e9bf24ccf9afca46509da1975b75c8 | 30bdd8ab897e056f0fb2f9937dcf2f608c1fd06a | /contest/1542571619.cpp | b1e426d845546aa2f4b6b23fa5c2564c41885fba | [] | no_license | thegamer1907/Code_Analysis | 0a2bb97a9fb5faf01d983c223d9715eb419b7519 | 48079e399321b585efc8a2c6a84c25e2e7a22a61 | refs/heads/master | 2020-05-27T01:20:55.921937 | 2019-11-20T11:15:11 | 2019-11-20T11:15:11 | 188,403,594 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 433 | cpp | #include<bits/stdc++.h>
using namespace std;
int main()
{
int h,m,s,t1,t2,z;
cin>>h>>m>>s>>t1>>t2;
h=h*60*60+m*60 + s;
m=(m*60+s)*12;
s=s*12*60;
t1=t1*60*60;
t2=t2*60*60;
if (t1>t2)
{
z=t1;
t1=t2;
t2=z;
}
if (((h<=t2 && h>=t1) && (m<=t2 && m>=t1) && (s<=t2 && s>=t... | [
"harshitagar1907@gmail.com"
] | harshitagar1907@gmail.com |
cf6b74b78317bb4761e142c555b6833e8fea69b2 | f22f1c9b9f0265295be7cb83433fcba66b620776 | /xml/jaxp/src/main/include/jcpp/xml/internal/parser/JInputEntity.h | 31d9d423b8abd964a96e0ff8dcae46a1793c3528 | [] | no_license | egelor/jcpp-1 | 63c72c3257b52b37a952344a62fa43882247ba6e | 9b5a180b00890d375d2e8a13b74ab5039ac4388c | refs/heads/master | 2021-05-09T03:46:22.585245 | 2015-08-07T16:04:20 | 2015-08-07T16:04:20 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,830 | h | #ifndef JCPP_XML_INTERNAL_PARSER_JINPUT_ENTITY_H
#define JCPP_XML_INTERNAL_PARSER_JINPUT_ENTITY_H
#include "jcpp/lang/JInterface.h"
#include "jcpp/lang/JClass.h"
#include "jcpp/io/JReader.h"
#include "jcpp/lang/JStringBuffer.h"
#include "jcpp/lang/JPrimitiveCharArray.h"
#include "jcpp/lang/JPrimitiveObjectArray.h"
#in... | [
"mimi4930"
] | mimi4930 |
b28913c6edbaddaa923fa8a4e3f60ccec8d89199 | 0d82341497beb87d62abf0ebacabbe10a2f41465 | /UninstallMonitor/jni/Monitor.cc | 0f9b7162c39b7799110f58295e045e169dde143f | [] | no_license | imwhite/UninstallMonitor | 6f92fd5ea65d62afb68b54da18af2e726dee61f8 | 4443ff7d311a956e724414248c5fde65f26626ba | refs/heads/master | 2021-01-10T09:44:17.837924 | 2018-03-26T09:13:58 | 2018-03-26T09:13:58 | 54,689,320 | 7 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,043 | cc | /*
* Monitor.cc
*
* Created on: 2016-3-15
* Author: white
*/
/*
* Copyright (C) 2009 The Android 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
*
* ... | [
"im_white@qq.com"
] | im_white@qq.com |
889dd773583555195dc355e38c177f7348d70d20 | 6500bc4f1dd87c8c87cdf67ec7e96a8f4a749190 | /uva-problem/12543.cpp | a5a272ccbb2bae4b88a98586f38395851c67db9b | [] | no_license | MamunOrRashid/code_snippets | 4130bb72b885dc361393ff52fb101f93716912f2 | ef5bad40a93350bcb4d195dd0fd64c377a23051b | refs/heads/master | 2023-01-23T23:35:09.510436 | 2020-12-03T06:23:55 | 2020-12-03T06:23:55 | 284,689,299 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,377 | cpp | /**#include <bits/stdc++.h>
using namespace std;
int main()
{
string name,temp;
int maxi=0;
while(cin>>name){
if(name=="E-N-D") break;
int len=name.size(),cnt=0;
for(int i=0;i<len;i++){
if(isalpha(name[i]) || name[i]=='-')cnt++;
}
if(cnt>maxi... | [
"mdmamun8811@gmail.com"
] | mdmamun8811@gmail.com |
9b172b30c55a6cab1f6131d5891c17ba1a6c55b3 | 49fc5b8f53a1703581ea0b0a59d740f4986b5141 | /examples/19_OptimizeDeferredShading/OptimizeDeferredShading.cpp | 494fca77badf7ea7a62c41228a5427657fb22ebc | [
"MIT"
] | permissive | Guangehhhh/VulkanDemos | cbeccf361cdcc16095cf1c0d5d4e0dfe7f15dc5c | d3b9cc113aa3657689a0e7828892fb754f73361f | refs/heads/master | 2020-08-12T01:58:20.796733 | 2019-10-07T07:07:03 | 2019-10-07T07:07:03 | 214,666,856 | 1 | 0 | MIT | 2019-10-12T15:06:56 | 2019-10-12T15:06:56 | null | UTF-8 | C++ | false | false | 28,154 | cpp | #include "Common/Common.h"
#include "Common/Log.h"
#include "Demo/DVKCommon.h"
#include "Math/Vector4.h"
#include "Math/Matrix4x4.h"
#include "Loader/ImageLoader.h"
#include <vector>
#define NUM_LIGHTS 64
class OptimizeDeferredShading : public DemoBase
{
public:
OptimizeDeferredShading(int32 width, int32 height,... | [
"chenbo150928@gmail.com"
] | chenbo150928@gmail.com |
7bfa87243dba3f47ef97788b62d9b7f645735534 | 28dba754ddf8211d754dd4a6b0704bbedb2bd373 | /Topcoder/MaxDiffBetweenCards.cpp | 3ff988ddd2aaafc852416e64771e1a8a2b77cdd6 | [] | no_license | zjsxzy/algo | 599354679bd72ef20c724bb50b42fce65ceab76f | a84494969952f981bfdc38003f7269e5c80a142e | refs/heads/master | 2023-08-31T17:00:53.393421 | 2023-08-19T14:20:31 | 2023-08-19T14:20:31 | 10,140,040 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,801 | cpp | #include <bits/stdc++.h>
using namespace std;
typedef long long LL;
class MaxDiffBetweenCards {
public:
long long solve(int N) {
if (N == 1) return 0;
string a = "";
for (int i = 0; i < N / 2; i++) a += '9';
a += '1';
if (N & 1) for (int i = 0; i < N / 2; i++) a += '0';
... | [
"zjsxzy@gmail.com"
] | zjsxzy@gmail.com |
3beaad7cdd6f8790f38816f35a87e9f68ede3fd0 | 9c3d0b8813ac5fd543991042a1361f920e8e0c5e | /common/base/read_file.h | 879396842fa7451640dd95ea1a79ef3fc29bdee2 | [] | no_license | shiningstarpxx/marvel | 5ee4a8f4707a254a24d5d77f6b77b0cda68ef663 | 0285451700588b608b640de50e732a2e3f8fbd8d | refs/heads/master | 2021-07-11T05:30:44.639957 | 2021-03-12T02:35:45 | 2021-03-12T02:35:45 | 56,899,287 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 893 | h | // Copyright (c) 2016, Tencent
// Filename: read_file.h
// Description:
// Created: 07/27/2016 17:39:58
// Author: michaelpei (Pei Xingxin), michaelpei@tencent.com
#ifndef COMMON_BASE_READ_FILE_H_
#define COMMON_BASE_READ_FILE_H_
#include <fstream>
#include <sstream>
#include <string>
#include <vector>
void LoadFi... | [
"xingxinpei@gmail.com"
] | xingxinpei@gmail.com |
2bd313aa23ee76692e3c94b836889557f2b5cd62 | 4a3134ced92b1e6f6440ac67b69449302bf32f5c | /DSA/Arrays/MergeTwoSortedArrays/solution.cpp | ee183d64588a05fff8d3856219e7ca77d1c305ac | [] | no_license | Arihant416/Dsa-cp | 4454f2d1f6b16e94d33bd1d8760fe0ac27354715 | cdfea5ccb8040fc22588a7a7e22616f1d1d411f6 | refs/heads/master | 2023-03-23T16:23:33.692728 | 2021-03-07T05:52:49 | 2021-03-07T05:52:49 | 326,686,346 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,129 | cpp | /*
Author : Arihant Jain
github:https://github.com/Arihant416
linkedin : https://www.linkedin.com/in/arihant416
*/
#include <bits/stdc++.h>
using namespace std;
#define ll long long int
#define ull unsigned ll
#define PB push_back
#define MP make_pair
#define flash ios_base::sync_with_stdio(false), cin.tie(nullptr), co... | [
"arihantjain416@gmail.com"
] | arihantjain416@gmail.com |
45fd34b47d54e67ddc2a313ec49040828a074956 | 91db922ced8fb4899e4fc5ad20179f07d738a99f | /yorukatsu/48/CountBalls.cpp | ea9a38ae7332ebdc414938db8e370aabf48728d0 | [] | no_license | hntk03/atcoder | d1bb795b9b9db2a689353eedcf6b9211d923b21b | cd024e1b6911765ef9239a72c2e25147922fa460 | refs/heads/master | 2022-10-08T05:35:24.339333 | 2022-10-02T03:12:55 | 2022-10-02T03:12:55 | 162,792,776 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 470 | cpp | #include <bits/stdc++.h>
using namespace std;
using ll = long long;
//container util
#define SORT(c) sort((c).begin(),(c).end())
#define all(a) (a).begin(), (a).end()
//repetition
#define FOR(i,a,b) for(int i=(a);i<(b);++i)
#define REP(i,n) FOR(i,0,n)
//print
#define pv(val) cerr << #val << '=' << (val) << endl
c... | [
"hntk03@gmail.com"
] | hntk03@gmail.com |
53d8ba39c83a2d3b0ed4c3c0e9d7d327cd387fdf | 22212b6400346c5ec3f5927703ad912566d3474f | /src/Plugins/JSONPlugin/JSONSettingPrototypeGenerator.cpp | 13f6d2f6e4255423f0f509b33eb07ae94b186e94 | [
"LicenseRef-scancode-unknown-license-reference",
"MIT"
] | permissive | irov/Mengine | 673a9f35ab10ac93d42301bc34514a852c0f150d | 8118e4a4a066ffba82bda1f668c1e7a528b6b717 | refs/heads/master | 2023-09-04T03:19:23.686213 | 2023-09-03T16:05:24 | 2023-09-03T16:05:24 | 41,422,567 | 46 | 17 | MIT | 2022-09-26T18:41:33 | 2015-08-26T11:44:35 | C++ | UTF-8 | C++ | false | false | 1,597 | cpp | #include "JSONSettingPrototypeGenerator.h"
#include "Kernel/FactoryPool.h"
#include "Kernel/AssertionMemoryPanic.h"
namespace Mengine
{
//////////////////////////////////////////////////////////////////////////
JSONSettingPrototypeGenerator::JSONSettingPrototypeGenerator()
{
}
////////////////////... | [
"irov13@mail.ru"
] | irov13@mail.ru |
7df5a071f0e34ebcc9da6ad11f9e1748f1b35f49 | 61dbffaee1fe90f597f7a73eb7cba5c1152bb98a | /VR_Room/Intermediate/Build/Win64/VR_Room/Development/Engine/SharedPCH.Engine.ShadowErrors.cpp | 272169adfa8d4f194dd93e9504d4dceec051b320 | [] | no_license | AtaSuid/VR_Room | 5e8a6b39985f6811ce5d8b73b1ca85a57b02553b | 8eb976dfd399d28ef88fe3d64a91320ced4d3d22 | refs/heads/master | 2022-11-19T05:00:56.601537 | 2020-06-28T23:56:55 | 2020-06-28T23:56:55 | 260,785,833 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 137 | cpp | #include "Q:/ghost/Documents/GitHub/VR_Room/VR_Room/Intermediate/Build/Win64/VR_Room/Development/Engine/SharedPCH.Engine.ShadowErrors.h"
| [
"53719354+AtaSuid@users.noreply.github.com"
] | 53719354+AtaSuid@users.noreply.github.com |
d304231a10f67f85485d343cf40ac43453f768f3 | 1e905e3b5db000bfa8a7ffb668af0257d0fee624 | /Raytracer/src/Raytracer/BVH.h | c2c3a0a43f3d03c37d8b27295a04bdfe9e9e1bcf | [] | no_license | agarzonp/Raytracer | db08e6a31a62d4f73c1e9eea623b5a8ddea51e5d | b0ada8b37a40494b233510733b87f337fc56c3da | refs/heads/master | 2021-01-20T09:57:14.636395 | 2017-08-18T17:07:09 | 2017-08-18T17:07:09 | 90,310,282 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,590 | h | #ifndef BVH_H
#define BVH_H
#include <cassert>
#include "../Geom3D/Geom3D.h"
class BVH : public Geom3D::Shape
{
// pointer to children
std::shared_ptr<Geom3D::Shape> left;
std::shared_ptr<Geom3D::Shape> right;
// is leaf node
bool isLastInBVH = false;
#if PROFILE_HIT_TEST
// tracks the number of hit test don... | [
"agarzonp@gmail.com"
] | agarzonp@gmail.com |
107f9e71ab866cadd1efaa59cbff98b5bf2a489e | 802e3586a5e5b279d713f974e56fc473607b582b | /length_of_longest_subsequence.cpp | a9c4b1b95ee71a78c142ae0d54e22bb80be44a6e | [] | no_license | shresthh/interview-bit-solutions | 66bab43c7a59ab8d715102886c7f9d9c76809161 | 2aa9636ae1ccd3b3f6386dfc9dc07b19423a1c64 | refs/heads/master | 2022-12-02T04:17:17.857375 | 2020-08-15T04:21:55 | 2020-08-15T04:21:55 | 269,831,398 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 624 | cpp | int Solution::longestSubsequenceLength(const vector<int> &A) {
int n = A.size();
if(n==0){
return 0;
}
vector<int> inc(n,1);
for (int i = 0;i<n;i++){
for(int j=0;j<i;j++){
if(A[j]<A[i]){
inc[i] = max(inc[i], inc[j]+1);
}
}
}
vec... | [
"sumuandmishra@gmail.com"
] | sumuandmishra@gmail.com |
b202261aa050b10641e3848d874b4f28c3d7f6ce | d092b8eb1abe2e5f1940986b708ab140f3818093 | /lab_11/poem.cpp | aca252ad70e14368ed78f3438a309ff203658e1a | [] | no_license | MichelleLucero/CS133 | d8b05f77ee317ea5ae1cb3a94c1d871eebc72473 | 1fc7f4662fd4a88c275fd5c2eb56be868e1a35c8 | refs/heads/master | 2021-09-14T19:43:25.411275 | 2018-05-18T07:54:41 | 2018-05-18T07:54:41 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 346 | cpp | #include <iostream>
using namespace std;
string * createAPoemDynamically() {
string *p = new string;
*p = "Roses are red, violets are blue";
return p;
}
int main() {
while(true) {
string *p;
p = createAPoemDynamically();
// assume that the poem p is not needed at this point
... | [
"michelle.lucero07@myhunter.cuny.edu"
] | michelle.lucero07@myhunter.cuny.edu |
b810a0be662150df03f24cc565ee75cf46b28f6f | 9e2dbb3f8205f8bd0b3b5d79261182e9fb4c32c4 | /C codes/november2011/exer_p184_1.cpp | 9442f7345481320efa53fef2b35b5c4cc1883193 | [] | no_license | melody40/monorepo | 87129f934066cd1e162d578f8e4950e12b0fa54d | fc5b7c8da70534e69d55770adebf308fd41c02b7 | refs/heads/master | 2022-12-22T22:49:01.277092 | 2020-09-21T17:20:43 | 2020-09-21T18:35:03 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 366 | cpp | #include <stdio.h>
#include <string.h>
int main (void)
{
int i;
char str[100];
char *p = "stop";
//char bigstr[100];
while ( strcmp(p,str) )
{
gets (str);
//strcat (str,"\n");
//strcat( bigstr,str );
}
//printf (bigstr);
... | [
"torshobuet@gmail.com"
] | torshobuet@gmail.com |
201c9323260bfbca26b48e7436e972f5ea174e64 | a3ed36263839b2c50f39773f6c8c0b8780b0ee30 | /85. Maximal Rectangle.cpp | ad8e462b7e1dce4a47c8ac9a2e69b08e9cfae9bb | [] | no_license | ysyncby/Leetcode | 52c0556f509a4dc157527c160c595d4cb72899ce | 775836d0d91eb08d376220796b09b401199bbcd6 | refs/heads/master | 2021-05-27T02:40:05.682917 | 2019-10-31T03:02:05 | 2019-10-31T03:02:05 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 877 | cpp | // 第一个solution,效率低。 复杂度为O(mmn)
class Solution {
public:
int maximalRectangle(vector<vector<char>>& matrix) {
int m = matrix.size();
if(m==0)
return 0;
int n = matrix[0].size();
int res = 0;
if(n==0)
return 0;
vector<vector<int>> v(m,vector<int... | [
"879090429@qq.com"
] | 879090429@qq.com |
5e6ef7cbdd2484faf223edd9403f84fe0f0f7348 | 050c8a810d34fe125aecae582f9adfd0625356c6 | /equality/main.cpp | d693b264b3495912053090c5b3f7972abe216855 | [] | no_license | georgerapeanu/c-sources | adff7a268121ae8c314e846726267109ba1c62e6 | af95d3ce726325dcd18b3d94fe99969006b8e138 | refs/heads/master | 2022-12-24T22:57:39.526205 | 2022-12-21T16:05:01 | 2022-12-21T16:05:01 | 144,864,608 | 11 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 535 | cpp | #include <map>
#include <iostream>
using namespace std;
int val,nr,N,K;
map<int,int> M;
int main() {
cin>>N>>K;
for(int i=1;i<=N;i++){cin>>val;M[val]++;}
while(M.rbegin()->first-M.begin()->first>K)
{
int m=min(M.rbegin()->second,M.begin()->second);
int b=M.rbegin()->first;
int a=... | [
"alexandrurapeanu@yahoo.com"
] | alexandrurapeanu@yahoo.com |
bd9ee677245c70520dc31002221aee2136e9f2e1 | 9030ce2789a58888904d0c50c21591632eddffd7 | /SDK/ARKSurvivalEvolved_Carno_AIController_BP_functions.cpp | e2936bd3a7572b97d9abed9c47c5cab686047d9a | [
"MIT"
] | permissive | 2bite/ARK-SDK | 8ce93f504b2e3bd4f8e7ced184980b13f127b7bf | ce1f4906ccf82ed38518558c0163c4f92f5f7b14 | refs/heads/master | 2022-09-19T06:28:20.076298 | 2022-09-03T17:21:00 | 2022-09-03T17:21:00 | 232,411,353 | 14 | 5 | null | null | null | null | UTF-8 | C++ | false | false | 1,507 | cpp | // ARKSurvivalEvolved (332.8) SDK
#ifdef _MSC_VER
#pragma pack(push, 0x8)
#endif
#include "ARKSurvivalEvolved_Carno_AIController_BP_parameters.hpp"
namespace sdk
{
//---------------------------------------------------------------------------
//Functions
//------------------------------------------------------------... | [
"sergey.2bite@gmail.com"
] | sergey.2bite@gmail.com |
28ebb18d9bdab7d5e9227020a2dbbc8e8df63ac6 | 724c0ee36c0e6262f143d965f2e5f894a31cbb16 | /c,c++/code_148a.cpp | 6ec8057df50b2667a3e95e4bac7241b390b5d11d | [] | no_license | amit-mittal/Programming-Questions-Practice | bf5fe47ba1b074960ad33eb2e525baaf99a85336 | 899995ff49cdf1ef77cc9327feb2fbed7b5c94fe | refs/heads/master | 2021-09-04T15:27:52.569111 | 2018-01-19T21:03:31 | 2018-01-19T21:03:31 | 117,618,138 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 461 | cpp | #include<iostream>
#include<stdio.h>
using namespace std;
int main()
{
int a[5],i,j,b[100005]={0},p,count=0;
for(i=0;i<5;++i)
{
scanf("%d",&a[i]);
}
for(i=0;i<4;++i)
{
p=a[i];j=1;
while(p<=a[4])
{
b[p]=1;
p+=a[i];
}
}
// cout<<"hi"<<endl;
i=1;
while(i<=a[4])
{
// cout<<i<<endl;
if(b[... | [
"Administrator@Amit-Laptop.fareast.corp.microsoft.com"
] | Administrator@Amit-Laptop.fareast.corp.microsoft.com |
5e0f438f08b65c7cb8d4a3cb6bbe53f9b3c48067 | 6231c877a9f347af0f052f13240e7d8ff221677b | /source/bumpmapshaderclass.cpp | f618b58391717740c0f8e4f1b426e75cab16ae6d | [] | no_license | cozlind/GPUMarchingCubes | 674e2fc9e8939f6a2fa42d9d80ec52a2ad491b4c | 08c107c5c686992c3d14ee9ecd7c98b5cf260582 | refs/heads/master | 2020-05-21T14:32:18.170344 | 2017-03-11T05:04:49 | 2017-03-11T05:04:49 | 84,625,053 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 12,954 | cpp | ////////////////////////////////////////////////////////////////////////////////
// Filename: bumpmapshaderclass.cpp
////////////////////////////////////////////////////////////////////////////////
#include "bumpmapshaderclass.h"
BumpMapShaderClass::BumpMapShaderClass()
{
m_vertexShader = 0;
m_pixelShader = 0;
m_l... | [
"cozlind@live.com"
] | cozlind@live.com |
36c895ebe06e0f27e661353c11b5fa5624b28319 | 974ceae2f770eded62de64a7f7c440e680ffc8c4 | /TextureViewer.h | 5f7a3a15d39f703b38af39d2f1c1569e2f94bfdc | [] | no_license | schinma/OpenGLPrograming | 98d3278e86d643d0c1aeba9bcfad6da166ef6278 | 240e3109d518fbe0ef0e991500bac8d0d3bf1635 | refs/heads/master | 2020-04-28T21:28:12.541075 | 2019-04-21T02:41:23 | 2019-04-21T02:41:23 | 175,577,859 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 886 | h |
#define GLM_ENABLE_EXPERIMENTAL
#ifndef CTEXTUREVIEWER_H
#define CTEXTUREVIEWER_H
#include <iostream>
#include <map>
#include <vector>
#include <GL/glew.h>
#include <glm/glm.hpp>
#include <glm/gtc/matrix_transform.hpp>
#include <glm/gtx/rotate_vector.hpp>
#include <glm/gtc/type_ptr.hpp>
#include "Loader.h"
/... | [
"marie.schindler@epitech.eu"
] | marie.schindler@epitech.eu |
5ada1006a6d226969e9384df1c89007513b25809 | 2be1c65560f4c4bed67e89739966e48ad49be0d4 | /Libs/AliTools/Make_Folders.h | 0c30e40a75c66d1658a419e7523c2029eae89de9 | [] | no_license | dr-aheydari/Prions-diffus-Rxn | 9c5ff3994cf4b7117138333ca32aaeeb66a5b0c2 | 597c87410c74d5d9511a75466914eab2eabfe03c | refs/heads/master | 2021-06-30T07:22:09.542578 | 2020-12-28T22:29:37 | 2020-12-28T22:29:37 | 207,172,131 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 826 | h | // this will be the header file
// creates folders automatically + textfiles for mass conservations
#ifndef MAKE_FOLDER
#define MAKE_FOLDER
#include <sys/stat.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <stdio.h>
#include <sys/uio.h>
#include </Users/aliheydari/stdc++.h>
#include <iostrea... | [
"aheydari@ucmerced.edu"
] | aheydari@ucmerced.edu |
fb3dbf664eb12801d113458be23a95f6ea38d0a8 | c953d39db64c169dff9b059963af3cf2b9cd725b | /C++/053_Maximum Subarray.cpp | 7523b435854c48f50422a8e6274b43b72b0a97b8 | [] | no_license | ailyanlu1/leetcode-4 | 9eece989a288ce2c278a8b1291e7a4a9202dfb41 | 74c2c950a04f4d0d27639ee2deda869fd7e78734 | refs/heads/master | 2020-03-23T06:25:58.312108 | 2015-09-29T02:51:23 | 2015-09-29T02:51:23 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 312 | cpp | class Solution {
public:
int maxSubArray(int A[], int n) {
if (n == 0)
return 0;
int res = A[0], sum = A[0];
for (int i = 1; i < n; i++) {
sum = sum < 0 ? 0 : sum;
sum += A[i];
res = max(res, sum);
}
return res;
}
}; | [
"gky2010@bupt.edu.cn"
] | gky2010@bupt.edu.cn |
b5b8afcc546e484190c5505da7c5b65d97a93bfd | f3f0ee4c2cb3d9cfd23c48a40f0fc96e51f8ed5c | /MainFrame4.8.6/SatelliteFrame.h | a84192ae2b3c45a21aa67ac111b5d19c6ee9476d | [] | no_license | cr19891215/VR-SV | 88b959ce55f68b90321ca264d4a36dd236fd2331 | b34cdf4fac6695ce98d06ef74dfcdff2468bd12c | refs/heads/master | 2021-12-29T09:49:40.612250 | 2017-04-06T10:01:49 | 2017-04-06T10:01:49 | null | 0 | 0 | null | null | null | null | WINDOWS-1252 | C++ | false | false | 308 | h | #pragma once
#include <QWidget>
#include "ui_SatelliteFrame.h"
class CSatelliteFrame : public QWidget
{
Q_OBJECT
public:
CSatelliteFrame(QWidget* parent = NULL);
~CSatelliteFrame(void);
protected slots:
// ´´½¨µ¯µÀµ¼µ¯
void CreateSatellite(void);
private:
Ui::SatelliteFrame ui;
};
| [
"1405590994@qq.com"
] | 1405590994@qq.com |
25517cc870b3a22b2ff731d908731266e2be21ed | 737a0c2b00621b69c806f151a4a7c9ca5ef23793 | /src/io/archivehandler.cpp | 92471ccb622c6b2d71e26f13568bfd843d819380 | [] | no_license | ABI-Software/capclient | 525219a5d1695f2a60c0a711e1298ef160169ec0 | a4a8fa5a4200a5c6da372d42f6e2961bef14f1d3 | refs/heads/master | 2020-03-18T10:54:53.636926 | 2012-10-12T00:45:35 | 2012-10-12T00:45:35 | 134,640,147 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,893 | cpp |
#include "archivehandler.h"
#include "utils/misc.h"
#include "logmsg.h"
#include "utils/debug.h"
#include <wx/zipstrm.h>
#include <wx/wfstream.h>
#include <wx/mstream.h>
#include <wx/txtstrm.h>
namespace cap
{
class Archive
{
public:
Archive(const std::string& archiveName)
: filename_(archiveName)
{}
virtual... | [
"h.sorby@auckland.ac.nz"
] | h.sorby@auckland.ac.nz |
a75fa347991e8fa590e6349e0d1b8447eb3604eb | 7e840c18856256a17a6691da86920025e0e91fda | /JD1052(AC).cpp | e972444f25729cbaa2661f74547f7eb1862014f7 | [] | no_license | stevencoding/jobduoj | 4cb981abf20b793f27fdd52ce1c7fe5907c31d2c | 097fe66ed1321767cf8f8eed5087deb126650e77 | refs/heads/master | 2020-02-26T14:21:40.874783 | 2015-04-27T18:45:57 | 2015-04-27T18:45:57 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 341 | cpp | #include <cstdio>
using namespace std;
int main()
{
const int MAXN = 205;
int a[MAXN];
int n;
int i;
int x;
while (scanf("%d", &n) == 1) {
for (i = 0; i < n; ++i) {
scanf("%d", &a[i]);
}
scanf("%d", &x);
for (i = 0; i < n; ++i) {
if (a[i] == x) {
break;
}
}
printf("%d\n", (i < n ? i : -... | [
"zhuli19901106@gmail.com"
] | zhuli19901106@gmail.com |
65384a84a816f4723fe0245972b179f474fc92ef | 911729e019762ed93b14f49d19c1b7d817c29af6 | /include/toolv568alg/isp.h | 2f93702cbaa072eb7aa125ad1c74989441a7e4ca | [] | no_license | JackBro/DragonVer1.0 | 59590809df749540f70b904f83c4093890031fbb | 31b3a97f2aa4a66d2ee518b8e6ae4245755009b1 | refs/heads/master | 2020-06-19T21:02:17.248852 | 2014-05-08T02:19:33 | 2014-05-08T02:19:33 | 74,833,772 | 0 | 1 | null | 2016-11-26T15:29:10 | 2016-11-26T15:29:10 | null | UTF-8 | C++ | false | false | 8,646 | h | #ifndef _CMODEL_ISP_ALG_H_
#define _CMODEL_ISP_ALG_H_
#ifndef _WINDLL
#define TOOLV568ALG_DLL
#endif
#ifndef TOOLV568ALG_DLL
#define TOOLV568ALG_DLL __declspec(dllimport)
#endif
//
// use "COM" conception later to modify cmodel
//
enum ISPCONTROLenum
{
TESTBAR = BIT0,
BLACKLEVEL = BIT1,
LE... | [
"ranger.su@gmail.com"
] | ranger.su@gmail.com |
b6ee4e8cec023a39a04954051c25182ce140886f | cc43a5f5954cf17b46d08ae449ff16d5e063264f | /xybot.ino | 4fd0f1c0cbc722356548cba451c7eef20cc1ff0e | [] | no_license | RolandJuno/xybot | 553c3c89440cef5055815e74925f6a7ae5f16d95 | e0d7f7b7cd7acd8ad809268f7edd0a2a6a0d31a2 | refs/heads/master | 2016-09-12T22:49:52.888179 | 2016-04-19T23:49:30 | 2016-04-19T23:49:30 | 56,639,503 | 5 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 12,908 | ino | // https://github.com/Makeblock-official/mDrawBot/blob/master/firmwares/xybot/xybot.ino
// Feb 29, 2016
// Needs these libraries:
// https://github.com/Makeblock-official/Makeblock-Libraries
#include <MeOrion.h>
#include <EEPROM.h>
#include <SoftwareSerial.h>
#include <Wire.h>
// data stored in eeprom
static union{
... | [
"rickards@Matisste.home"
] | rickards@Matisste.home |
e8b2861e8ecd0563e84fee4cf1c4b246e5cc4e15 | 381d826b5755eed326c0002ff9836559195eba28 | /URI PROBS/1070.cpp | 07d06a848d5225d014e17063968c0ca14e08518e | [] | no_license | tanvieer/ProblemSolving | 79b491ee9dbfab5989efe0cbd4b206729ddc872b | a538b4e67cc7dd110650d88bc7439eade7e16210 | refs/heads/master | 2021-01-23T04:30:15.539121 | 2017-03-28T15:33:27 | 2017-03-28T15:33:27 | 86,206,912 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 162 | cpp | #include <iostream>
using namespace std;
int main(){
int n,i;
cin>>n;
if (n%2== 0)
n++;
for (i=0;i<=5;i++,n+=2)
cout<<n<<endl;
}
| [
"tanvieer@gmail.com"
] | tanvieer@gmail.com |
830e884307a2910825e11106b18914f3607dfa4a | 498de85c7a914e7ca26f2045a32a3cb16bb80063 | /DribbbleViewer/Pods/Realm/include/realm/array.hpp | 826e9173c9fa5a98ed7151e32cc452e7b000e203 | [
"LicenseRef-scancode-proprietary-license",
"Apache-2.0",
"LicenseRef-scancode-commercial-license",
"MIT"
] | permissive | mendesbarreto/IOS | 986217d8a5526b7991fda0931d3323c9f21c2dec | e215e528b94ccd4a2bc3de6c1ade814fa4f76b21 | refs/heads/master | 2023-01-09T06:01:16.930586 | 2016-03-06T01:06:56 | 2016-03-06T01:06:56 | 48,437,824 | 1 | 0 | MIT | 2022-12-27T00:34:22 | 2015-12-22T14:56:18 | C++ | UTF-8 | C++ | false | false | 143,470 | hpp | /*************************************************************************
*
* REALM CONFIDENTIAL
* __________________
*
* [2011] - [2012] Realm Inc
* All Rights Reserved.
*
* NOTICE: All information contained herein is, and remains
* the property of Realm Incorporated and its suppliers,
* if any. The int... | [
"mendes-barreto@live.com"
] | mendes-barreto@live.com |
5ee45b96fd25be305fe7364d4f8a2fccbee075b4 | c1ff870879152fba2b54eddfb7591ec322eb3061 | /plugins/languageAPI/jsAPI/3rdParty/nodejs/10.1.0/source/deps/v8/src/compiler/ppc/instruction-scheduler-ppc.cc | 2b491f1b803fcfb80867caa5ee70feab6159b379 | [
"ISC",
"LicenseRef-scancode-public-domain",
"BSD-2-Clause",
"Artistic-2.0",
"NAIST-2003",
"MIT",
"BSD-3-Clause",
"Zlib",
"NTP",
"LicenseRef-scancode-openssl",
"ICU",
"LicenseRef-scancode-unicode",
"LicenseRef-scancode-unknown-license-reference",
"bzip2-1.0.6",
"SunPro",
"LicenseRef-sca... | permissive | MTASZTAKI/ApertusVR | 1a9809fb7af81c3cd7fb732ed481ebe4ce66fefa | 424ec5515ae08780542f33cc4841a8f9a96337b3 | refs/heads/0.9 | 2022-12-11T20:03:42.926813 | 2019-10-11T09:29:45 | 2019-10-11T09:29:45 | 73,708,854 | 188 | 55 | MIT | 2022-12-11T08:53:21 | 2016-11-14T13:48:00 | C++ | UTF-8 | C++ | false | false | 4,027 | cc | // Copyright 2015 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "src/compiler/instruction-scheduler.h"
namespace v8 {
namespace internal {
namespace compiler {
bool InstructionScheduler::SchedulerSupported... | [
"peter.kovacs@sztaki.mta.hu"
] | peter.kovacs@sztaki.mta.hu |
2efb8bac6709a25fc33e56cd4427d59ccbd9cd76 | d90bb820a517727f4d3f1972f235d7bbbec2a187 | /cpp/vision/opencv_utils.cpp | a4ca355976b210904b79d2f216a8a1ccd6d8e369 | [] | no_license | umariqb/Multi-Person-Pose-Estimation-using-LJPA-ECCVW-2016 | bf83edce518d0d59ac54ee57d4014062655c9d68 | 9fde830e974b5c5453b77c3a07bbc8a8df3ae9d7 | refs/heads/master | 2021-09-23T09:49:01.864657 | 2018-09-21T08:52:15 | 2018-09-21T08:52:15 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,871 | cpp | /*
* opencvutils.cpp
*
* Created on: Apr 30, 2013
* Author: mdantone
*/
#include "opencv_utils.hpp"
#include "geometry_utils.hpp"
#include <glog/logging.h>
using namespace cv;
namespace vision {
namespace opencv_utils {
void rect_to_string(Rect rect, string s = "" ) {
LOG(INFO) << s << rect.x << " " ... | [
"uiqbal@iai.uni-bonn.de"
] | uiqbal@iai.uni-bonn.de |
7c20510c293a405d2942f847bd5690b36e34ec61 | 89485890afeeacdae996de966b8b13ba0c1bbc9a | /zwplayer/zwvideothread.h | 5b3fdab80e3c7e61dafdfd67da4c1e3d9a9108bc | [] | no_license | weinkym/src_miao | b7c8a35a80e5928470bea07d5eb7e36d54966da9 | 0759c1f819c15c8bb2172fe2558fcb728a186ff8 | refs/heads/master | 2021-08-07T17:55:52.239541 | 2021-06-17T03:38:44 | 2021-06-17T03:38:44 | 64,458,033 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 3,607 | h | #ifndef ZWVIDEOTHREAD_H
#define ZWVIDEOTHREAD_H
#include <QThread>
#include <QImage>
extern "C"
{
#include "libavcodec/avcodec.h"
#include "libavformat/avformat.h"
#include <libavutil/time.h>
#include "libavutil/pixfmt.h"
#include "libswscale/swscale.h"
#include "libswresample/swresample.h"
... | [
"weinkym@qq.com"
] | weinkym@qq.com |
9c973ee9e8c28ec021d755152f83ff285727931c | 1f77f63fc4bcf538fc892f6a5ba54058367ed0e5 | /src/csaltTester/src/TestOptCtrl/src/pointpath/RauAutomaticaPointObject.cpp | f015191399808302d99d8af20ccadd0e6e47a8f1 | [
"Apache-2.0"
] | permissive | ChristopherRabotin/GMAT | 5f8211051b620562947443796fa85c80aed5a7cf | 829b7c2c3c7ea73d759c338e7051f92f4f2f6f43 | refs/heads/GMAT-2020a | 2022-05-21T07:01:48.435641 | 2022-05-09T17:28:07 | 2022-05-09T17:28:07 | 84,392,259 | 24 | 10 | Apache-2.0 | 2022-05-11T03:48:44 | 2017-03-09T03:09:20 | C++ | UTF-8 | C++ | false | false | 3,754 | cpp | //$Id$
//------------------------------------------------------------------------------
// RauAutomaticaPointObject
//------------------------------------------------------------------------------
// GMAT: General Mission Analysis Tool.
//
// Copyright (c) 2002 - 2020 United States Government as... | [
"christopher.rabotin@gmail.com"
] | christopher.rabotin@gmail.com |
4025edd66e84f1535a6c04f35dbb9b6f064c76ae | e3929acbdc012951b2b1994d7d9d58187404d6f6 | /LeetCode/P141.cpp | 399521e46f6d4f55b8570e9cf6b21c8a6b8e0278 | [] | no_license | LuJianBuPing/LeetCode | a8bc08ab001577e814c628e3566265ef98172429 | 2f58a4efe644dcc0043dbacb9816aff759570afb | refs/heads/master | 2021-03-12T23:22:15.551914 | 2015-07-13T14:16:12 | 2015-07-13T14:16:12 | 32,003,541 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 311 | cpp | #include "LeetCode.h"
class Solution {
public:
bool hasCycle(ListNode *head) {
auto fast = head, slow = head;
while (fast != NULL)
{
if (fast->next != NULL)
fast = fast->next->next;
else
return false;
slow = slow->next;
if (fast == slow)
return true;
}
return false;
}
}; | [
"star.fang1990@live.com"
] | star.fang1990@live.com |
3d6599d3653997b197e0d3e4cc52bee22beadf2d | 028f5a7dc0cfb8c0d3e31cce2f17afd21d3ec5c5 | /homework/Bufitem.h | 3d757c61df2b856516b2027a1795dd248c2c0fcc | [] | no_license | bso112/TextRPG | 1e3df700fb68a94cd93c33f0fca16faae0f27556 | 3a30b8316a7b65ba125d2e7d0d293f5a56c281ad | refs/heads/master | 2023-01-03T18:11:11.491127 | 2020-02-07T15:33:34 | 2020-02-07T15:33:34 | 236,193,445 | 0 | 0 | null | null | null | null | UHC | C++ | false | false | 469 | h | #pragma once
#include "stdafx.h"
class CBufItem
{
public:
int id = 0;
char GFX_PATH[GFX_PATH_LENGTH];
char name[ITEM_NAME_LENGTH];
//버프 항목
int attackBuf;
int maxHealthBuf;
int levelBuf;
int expBuf;
//아이템의 속성
ELEMENT element;
//소모성 아이템인가?
bool isConsumable;
char description[DESCRIPTION_LENGTH];
//드롭 확률
f... | [
"bso11246@gmail.com"
] | bso11246@gmail.com |
4225b1ab742167499ed39642a48b052b666cc5fb | 2b7b3d8cc34ba14b2ef563d53bbb5cf8b267739e | /build/ALBuild/PODOLAN/moc_RBTCPClient.cpp | cfbc9605ef8abfde306698432d920b2a27ee14c6 | [] | no_license | YuuuJin/PODO_hubo2 | 5527e6c8719eabe92cc1158af5d9f3b21a26fa9a | 0487b1555be36a494bbbdf413e39c4a3739a88b3 | refs/heads/master | 2021-05-29T03:11:00.293226 | 2020-04-09T07:38:29 | 2020-04-09T07:38:29 | 254,301,968 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,823 | cpp | /****************************************************************************
** Meta object code from reading C++ file 'RBTCPClient.h'
**
** Created by: The Qt Meta Object Compiler version 67 (Qt 5.8.0)
**
** WARNING! All changes made in this file will be lost!
*********************************************************... | [
"blike4@kaist.ac.kr"
] | blike4@kaist.ac.kr |
51fa5f6826b20e32c6c16e820d0fb6e4896dd629 | 9b78ff9c71b8dac8da77c2ad85ae96a3192d81e0 | /WorkThread.h | 1a68a5c4ee8074ffad2243e4e9885e42a9e6e730 | [] | no_license | xingskycn/FloorServer | 5064cb3bb7a7c782dc4fa86993a841c7c49cff72 | c761a580466990bc38d3094d96acac53ed0af45f | refs/heads/master | 2021-01-15T03:45:40.626021 | 2014-08-17T10:52:17 | 2014-08-17T10:52:17 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,321 | h | /*
* File: WorkThread.h
* Author: chu
*
* Created on 2013年3月9日, 下午4:56
*/
#ifndef WORKTHREAD_H
#define WORKTHREAD_H
#include "common.h"
#include "TaskQueue.h"
//#include "Contacts.h"
#include "Message.h"
#include "Runable.h"
class Worker : public Runable
{
private:
TaskQueue* m_TaskQueue;
char m_buf[SOC... | [
"gisrzf@163.com"
] | gisrzf@163.com |
b5fe9d6c962e7a0759bbce638b95b15425f598dc | 1d757454ff3655b90949ec7478e8e741d154c8cf | /spoj/mirror_galdr.cpp | b016952dc02e14227ae5a3d66ffd20a19fd40e8f | [] | no_license | manoj9april/cp-solutions | 193b588e0f4690719fe292ac404a8c1f592b8c78 | 41141298600c1e7b9ccb6e26174f797744ed6ac1 | refs/heads/master | 2021-07-12T17:52:21.578577 | 2021-06-20T16:23:05 | 2021-06-20T16:23:05 | 249,103,555 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 370 | cpp | #include<bits/stdc++.h>
using namespace std;
int main(){
int t; cin>>t;
while(t--){
string s; cin>>s;
int len = s.length();
bool palin=true;
for(int i=0,j=len-1; i<j; i++,j--){
if(s[i]!=s[j]){
palin=false;
break;
}
... | [
"manoj9april@gmail.com"
] | manoj9april@gmail.com |
9948fb5d890261a23ffbaab00cee1a8580a9ea1e | 06cbf451b4f45e92c052ae0c06e4fe033f102ec4 | /CommandBasedExperimantation/CommandBasedRobot/src/OI.cpp | af7521e7e1dc3bad5526d90689169cfbd35e169d | [] | no_license | edwanvi/CommandBasedExperimantation | 799c1c2c50ebeab7793fd5e328ecd995e42f9e01 | 2559fb05d1e44ba326f810db4c1764fa26011afb | refs/heads/master | 2022-05-12T09:43:14.038655 | 2016-02-14T17:39:34 | 2016-02-14T17:39:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,705 | cpp | #include "OI.h"
#include "RobotMap.h"
#include "Commands/Rollers/Set_Roller.h"
#include "Commands/Rollers/Double_Power_Rollers.h"
#include "Commands/Lifting.h"
#include "Commands/Rollers/Solenoid_Roller_Set.h"
#include "Commands/Container_Holder.h"
#include "Commands/HackSlashLiftSensor.h"
#include "Commands/... | [
"tkdberger@gmail.com"
] | tkdberger@gmail.com |
a8011f7998afcc739cbec02ae61d48f8881ee3b0 | d46b63a660a8b5c53236fb3d6eb359147c0d6168 | /src/SystemStatusIndicator.h | 51767a02c302ee41ff9dbe6ea74e8d8094ce9ed0 | [] | no_license | gniemann/ambrose | 63cc33bde22e6d212f17f4c4f0ef9639a30f0104 | 58834d889b36309028acb9d6eae0f73c5853a51c | refs/heads/master | 2020-05-18T01:49:54.827663 | 2019-07-11T17:31:42 | 2019-07-11T17:31:42 | 184,099,253 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,661 | h | //
// Created by Greg Niemann on 2019-03-01.
//
#ifndef BUILD_MONITOR_SYSTEMSTATUSINDICATOR_H
#define BUILD_MONITOR_SYSTEMSTATUSINDICATOR_H
#include <Adafruit_MCP23008.h>
enum class SystemStatus {
off,
idle,
transmitting,
connecting,
notConnected,
failed,
resetPressed,
resetPressedLon... | [
"greg.niemann@willowtreeapps.com"
] | greg.niemann@willowtreeapps.com |
dced57a791c8d5a11f05e3354e792f3f7979b26c | d2e19429bfeb2a7fb7696005432ff443ecd861ed | /n-home.ino | 382023b1ff8451e9cfcce1b73e9d85294d454050 | [] | no_license | CarrionMysh/n-home | ba54af247a41a4d1a4f8e2d2371fb7f5f5cb42dd | e3e1309489eef6d022cd916a2226516d2edbbc7d | refs/heads/master | 2021-06-11T02:56:02.939597 | 2021-04-21T15:56:47 | 2021-04-21T15:56:47 | 136,664,419 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,114 | ino | #include <FastCRC_tables.h>
#include <FastCRC.h>
#include <FastCRC_cpu.h>
#include <SoftwareSerial.h>
//для передачи в линию используется хардварный serial
#define pin_tr 4 //пин transmission enable для max485
#define led_pin 13 //светодиод активности *d... | [
"hivework10@gmail.com"
] | hivework10@gmail.com |
a0c6ba4f49a7111ece05ecf25f1dc10691461aa7 | ba612716fe47a0d7373365fee7d877f0b7c1fd62 | /21_c++_tutorials/04_ascii_table/ascii_table.cpp | e95ded840f2063e0850d192fe3973340d19828fd | [] | no_license | haibianshifeng/6_thevisualroom | 181d736c72cdcc250a83d9e3955fdff7d90b35c5 | b1eadee0f68b51fe8c99b81ea949dcc43d12f2f5 | refs/heads/master | 2020-07-06T11:12:51.597768 | 2019-03-03T22:16:34 | 2019-03-03T22:16:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 478 | cpp | /*
File name: ascii_table.cpp
Date: 9 Dec 2016
Author: Andrew Roberts
*/
// cin, cout:
#include <iostream>
// standard namespaces:
using namespace std;
// main function:
int main()
{
// declare temperature
char character;
// loop between 0 and 127
for(int num = 0; num < 128; num++)
{
// set the number equal ... | [
"en9apr@hotmail.co.uk"
] | en9apr@hotmail.co.uk |
0706e26e5981bff81e8dffacc0faf9da2625cea2 | b7f3edb5b7c62174bed808079c3b21fb9ea51d52 | /net/reporting/reporting_header_parser.h | 2e167f2ccdef3f7e7d6b184a367ef43df104a5e0 | [
"BSD-3-Clause"
] | permissive | otcshare/chromium-src | 26a7372773b53b236784c51677c566dc0ad839e4 | 64bee65c921db7e78e25d08f1e98da2668b57be5 | refs/heads/webml | 2023-03-21T03:20:15.377034 | 2020-11-16T01:40:14 | 2020-11-16T01:40:14 | 209,262,645 | 18 | 21 | BSD-3-Clause | 2023-03-23T06:20:07 | 2019-09-18T08:52:07 | null | UTF-8 | C++ | false | false | 916 | h | // 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.
#ifndef NET_REPORTING_REPORTING_HEADER_PARSER_H_
#define NET_REPORTING_REPORTING_HEADER_PARSER_H_
#include <memory>
#include "base/macros.h"
#include "n... | [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
b2d0fc7ed15b21431b8520ac467b728d90c21d9f | 71ce57c3ac7d39ba12b8473849c00a23c1c338ac | /src/gwen/src/Controls/CheckBox.cpp | 5baaa66991e70b29ba3a59105a1bff50792ba43d | [] | no_license | ReccaStudio/DeferredRenderer | f6a5e5ffbb36ffc79dedc295ad1ab0202251abd0 | d896de09052c5880b99737e51360641d05fe84b7 | refs/heads/master | 2020-04-07T16:35:13.954276 | 2013-12-11T23:44:42 | 2013-12-11T23:44:42 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 819 | cpp | /*
GWEN
Copyright (c) 2010 Facepunch Studios
See license in Gwen.h
*/
#include "Gwen/Controls/CheckBox.h"
using namespace Gwen;
using namespace Gwen::Controls;
GWEN_CONTROL_CONSTRUCTOR( CheckBox )
{
SetSize( 13, 13 );
m_bChecked = true;
Toggle();
}
void CheckBox::Render( Skin::Base... | [
"geoff@vonture.net"
] | geoff@vonture.net |
737c2f5f74b3f5c4e4675c47658bcab6f13d978b | 02e27b1637c3eacedb20f831350f4cd08d38ed22 | /brain/brain.x86.assembler_v1.hpp | 11cf58fb21d077e568b431205323333dc38cadff | [] | no_license | MaulingMonkey/brain3 | eee827e127bd87e0fe68f5b29be1a6ffbb003d92 | 886df572581a87dad05b57afce25a23e370f7212 | refs/heads/master | 2016-09-10T00:10:27.101600 | 2008-08-25T02:52:42 | 2008-08-25T02:52:42 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 15,253 | hpp | #ifndef IG_BRAIN_X86_ASSEMBLER
#define IG_BRAIN_X86_ASSEMBLER
#include "brain.x86.registers.hpp"
#include <boost/preprocessor/seq/enum.hpp>
#include <boost/cstdint.hpp>
#include <vector>
namespace brain {
namespace x86 {
class assembler {
public:
typedef boost::uint8_t byte;
typedef boost::uint16_t word;
... | [
"nobody@nowhere"
] | nobody@nowhere |
00590f9e334580915bd151c59d71f966b60d5fbd | c380f0e026123d42ca00ec1f4a174b059d471acf | /Poker Hands/Cards.cpp | 68f21f8d22cce3947a0a3010ffb9dc083e5c40ae | [] | no_license | Bryanvo/Assorted-Projects | 9160ddf1393dbb01d6c0e7d5309bafe8256cb04c | 2c930c7c1777d6051773ca7aec135b1977303d0d | refs/heads/master | 2021-09-02T07:08:55.486039 | 2017-12-31T08:58:18 | 2017-12-31T08:58:18 | 115,781,218 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,622 | cpp | // ITP 365 Spring 2016
// HW5 Vector and Poker Hands
// Name: Bryan Vo
// Email: bryanvo@usc.edu
// Platform: Windows
//
// Cards.cpp
// Implements Cards and Poker Hand functionality
#include "Cards.h"
#include <random>
#include <algorithm>
#include <string>
#include <iostream>
// Function: Constructor
// Purpose: Dra... | [
"bryanvo@Bryans-MacBook-Pro.local"
] | bryanvo@Bryans-MacBook-Pro.local |
28d5fba33a5b749255b05d585b8c302874a1302e | a53f8d2859477f837c81f943c81ceed56cf37238 | /RTL/Component/CLODAuthor/NormalMap.cpp | 2d9d930aec3063428fe251b65acc0c8f4298236b | [
"Apache-2.0"
] | permissive | ClinicalGraphics/u3d | ffd062630cde8c27a0792370c158966d51182d4d | a2dc4bf9ead5400939f698d5834b7c5d43dbf42a | refs/heads/master | 2023-04-13T17:25:55.126360 | 2023-03-30T07:34:12 | 2023-03-31T18:20:43 | 61,121,064 | 11 | 5 | Apache-2.0 | 2023-09-01T04:23:31 | 2016-06-14T12:29:13 | C++ | UTF-8 | C++ | false | false | 6,071 | cpp | //***************************************************************************
//
// Copyright (c) 1999 - 2006 Intel Corporation
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// ... | [
"ningfei.li@gmail.com"
] | ningfei.li@gmail.com |
629bd52866c3ee4d8e28b75c62dc281c039db289 | 26df574c68ca8a470bd3a4b5fa145bfa73cd85b2 | /Source/Private/OnlineSessionInfoHive.h | ce45db2c9d8aec970d0ef3a088ff6a7ef4bf6bf1 | [] | no_license | hach-que/HiveMP-UnrealEngine4-SDK-Archived | 43717ee8b350a1cacc24a7638123a03c706e773a | d5cf4a50f9ac2ffce09c7a4596d23246bb678f62 | refs/heads/master | 2021-01-01T04:28:00.056639 | 2017-09-29T15:51:11 | 2017-09-29T15:51:11 | 97,178,781 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,332 | h | // Copyright 2017 Redpoint Games. MIT Licensed.
#pragma once
#include "CoreMinimal.h"
#include "UObject/CoreOnline.h"
#include "OnlineSubsystemTypes.h"
#include "IPAddress.h"
class FOnlineSessionInfoHive : public FOnlineSessionInfo
{
protected:
/** Hidden on purpose */
FOnlineSessionInfoHive(const FOnlineSession... | [
"jrhodes@redpointgames.com.au"
] | jrhodes@redpointgames.com.au |
a94a1c3040df290ea3c6ef114ec40df1154777d7 | f86a1f6890562ad5c01921c4c8b1aa2e90838e35 | /src/grid_ecs.hpp | 36b4efb9f02511aa693cb712508bfc80b09fe7f5 | [] | no_license | tomc1998/grid_scriptable | f85951bb190743edc061f5e62fceaef5e2e33091 | cd51a75d68a84487121efb3a4d1e650d84620dba | refs/heads/master | 2020-04-22T13:21:03.254119 | 2019-02-12T23:09:25 | 2019-02-12T23:09:25 | 170,405,795 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,552 | hpp | /** Contains code to tie the grid to the ecs. The grid is partially split this
way to work around forward declarations. */
#pragma once
/** Step the moving entities */
void grid_step(grid& g, entt::DefaultRegistry& r) {
for (unsigned ii = 0; ii < g.moving_list.size(); ++ii) {
// Find the (world) position we SHOU... | [
"thomascheng1998@googlemail.com"
] | thomascheng1998@googlemail.com |
99118a4e2c8b0e90c1b70e5cbb7ba5487a3dfdd1 | 2458d6d18521117124c1ba39cc8b4b8287d745cf | /cocos2d-x-2.2/cocos2dx/label_nodes/CCLabelBMFont.cpp | ec298dd849d0bcb4ce3c1a4b27127d1383efd667 | [
"MIT"
] | permissive | zhuzhonghua/XUI | a9d9fde0258ddde235fdd2aa52145b97b91e0ffc | 4cfd3e8c4d15f8cba4b918da3719aacdcf6009ce | refs/heads/master | 2020-06-26T09:21:06.810301 | 2014-01-07T03:03:22 | 2014-01-07T03:03:22 | 15,630,631 | 4 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 37,853 | cpp | /****************************************************************************
Copyright (c) 2010-2012 cocos2d-x.org
Copyright (c) 2008-2010 Ricardo Quesada
Copyright (c) 2011 Zynga Inc.
http://www.cocos2d-x.org
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and asso... | [
"secondsquare@gmail.com"
] | secondsquare@gmail.com |
15ee4885f54b4d299e34ca2591f01f9e3a5ae957 | 305e09a8d2635800d354b1f1f54e1576e4273fee | /Libs/DATASCOPE/DATASCOPE.cpp | 990c280aa203389b20bf665d5a6f07575afe74cf | [] | no_license | c2j/MecanumCar_Arduino | 737ed186624f38034dc7aba4bef06769a84341aa | ec3854c8dabda9b83c700af502d4bf0f6440f566 | refs/heads/master | 2020-07-30T05:26:28.996212 | 2019-09-22T09:15:24 | 2019-09-22T09:15:24 | 210,102,106 | 1 | 0 | null | null | null | null | GB18030 | C++ | false | false | 2,327 | cpp |
#include"DATASCOPE.h"
#include"Arduino.h"
unsigned char DataScope_OutPut_Buffer[42] = {0}; //串口发送缓冲区
DATASCOPE::DATASCOPE()
{
}
void DATASCOPE::Float2Byte(float *target,unsigned char *buf,unsigned char beg)
{
unsigned char *point;
point = (unsigned char*)target; //得到float的地址
buf[beg] ... | [
"chenjj.yz@gmail.com"
] | chenjj.yz@gmail.com |
4ef165184794507ad6ddf7e06b6871f489ee22a9 | b73da634aa065480862abcaf59b80c73364eb5f8 | /pluginonf/step/onf_stepcreateplotmanagerfromfile.h | 43a51a3a2dfcd345cd6dbe7a5a8f6de07c860201 | [] | no_license | computree/computree-plugin-onf | 066f4c0003d34f291b0e1e17f3f88be9aa96d39b | 925b37ee9a324fb6a4f0cfaaed02920a36842ec6 | refs/heads/master | 2020-12-30T13:47:14.266251 | 2017-03-27T14:06:27 | 2017-03-27T14:06:27 | 91,260,715 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,953 | h | /****************************************************************************
Copyright (C) 2010-2012 the Office National des Forêts (ONF), France
All rights reserved.
Contact : alexandre.piboule@onf.fr
Developers : Alexandre PIBOULE (ONF)
This file is part of PluginONF library.
... | [
"alexandre.piboule@onf.fr"
] | alexandre.piboule@onf.fr |
3f997913547fb1ec4ef91eb568d2cebaf36bd3b0 | cfa3070448f81ee6b028d98374b245186e6999e9 | /include/StatisticalDistributionsLib/ChiSquared.h | 240ccf0d4a3bc3f06ea76d1664d1fb3fc3e36b1a | [] | no_license | yaesoubilab/StatisticalDistributionsLib | 8c619bcfe8464471a05710fec753ffca53bca692 | ccd9962aadffb02defd0a853f4c849a63df53f8c | refs/heads/master | 2022-01-27T04:28:40.527884 | 2019-04-29T19:39:48 | 2019-04-29T19:39:48 | 88,905,422 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 266 | h | #pragma once
#include "Gamma.h"
namespace StatisticalDistributions {
class ChiSquared : public Gamma {
public:
// This needs no explanation, I hope.
inline ChiSquared(long double dof = 1) {
init(dof);
}
void init(long double = 1);
};
}
| [
"eyjmfc@gmail.com"
] | eyjmfc@gmail.com |
733a8d05bde64f7e3c9d0f22932d3c7e22ddd431 | 8fad12bca03f32f141b70cafbc4a3516812c1541 | /Angel.cpp | 6c30e7cfdc11002fbf57ec783e7391d1a3bb17a5 | [] | no_license | CommanderMoo/Supernatural-Experience | 88e4e624f333576eb15b05d665dab2fba89b1f73 | bfebb1f110968dd59e66d427452dfe52943ded0f | refs/heads/master | 2022-04-19T23:46:42.241452 | 2020-04-20T06:26:15 | 2020-04-20T06:26:15 | 257,190,967 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 216 | cpp | #include "Angel.h"
#include <iostream>
Angel::Angel()
{
setName("");
}
Angel::Angel(string userName)
{
cin >> userName;
}
void Angel::setName(string userName)
{
}
string Angel::getName()
{
return string();
}
| [
"RUSPICKN@uat.edu"
] | RUSPICKN@uat.edu |
e08c04155242f8976dbd867cc4faf4b3c078d559 | 26ef7f7b92e9df07a7e1f13e8dd4337f7fb46198 | /Oop_Assignment/Task3.cpp | 12ad5dd5c1c2894a04395a6f7df10175e8c0a9f8 | [] | no_license | yousaf2018/2nd_semester_Oop | 7ce3ca429fc202ef1b285aeb5533886dd75483d2 | 118359efe0a48735af7414565015604e848983c6 | refs/heads/master | 2020-05-13T22:18:06.400896 | 2019-05-01T17:12:43 | 2019-05-01T17:12:43 | 181,667,234 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,052 | cpp | #include <iostream>
using namespace std;
class Date
{
private:
int day;
int month;
int year;
public:
void initialize_values();
void set_values();
void display_values();
void Validity();
Date operator+(Date a);
};
Date Date::operator+(Date a)
{
Date b;
int total_days_1;
int total_days_2;
total_days... | [
"mahmoodyousaf975974@gmail.com"
] | mahmoodyousaf975974@gmail.com |
4127538c5bae089e775ab15fbb1514e74a35e531 | 13b79d1b559ddbce2b7be0c5566b44747b2e9c2c | /core/KFile.cpp | 7bab730000426cce43a6c8c4093284d8a5468854 | [] | no_license | kazikikaziki/misc | 604a4a38d4388d4a2ec4a0eb30b4f04cefa46b3d | 7329b8cbd656e0a9eb6a174963931f79d1da3ba1 | refs/heads/master | 2020-06-12T04:40:41.409996 | 2019-07-24T15:33:33 | 2019-07-24T15:33:33 | 194,196,912 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,350 | cpp | #include "KFile.h"
#include "KPath.h"
#if 1
#include "KLog.h"
#include "KStd.h"
#define FILEASSERT(expr) Log_assert(expr)
#define FILELOG(fmt, ...) Log_verbosef(fmt, ##__VA_ARGS__)
#define FILEOPEN_U8(f, m) K_fopen_u8(f, m)
#else
#include <assert.h>
#define FILEASSERT(expr) assert(expr)
#define FILELOG(fmt,... | [
"doveilbagno@gmail.com"
] | doveilbagno@gmail.com |
1ff26ea957d1947f63f82f1f24101f898a19a4ad | a4c45cc2ce9fc90e0ba27f647136b3a69ce0bf09 | /problems/water-and-jug-problem/SOLUTION.cpp | 86f8980f57ae48184b5124c250ea884fef0639b1 | [] | no_license | AhJo53589/leetcode-cn | fd8cb65a2d86f25d2e32553f6b32dbfc9cb7bae7 | 7acba71548c41e276003682833e04b8fab8bc8f8 | refs/heads/master | 2023-01-29T19:35:13.816866 | 2023-01-15T03:21:37 | 2023-01-15T03:21:37 | 182,630,154 | 268 | 47 | null | null | null | null | UTF-8 | C++ | false | false | 867 | cpp | //#include <numeric> // c++ 17
//////////////////////////////////////////////////////////////////////////
class Solution {
public:
bool canMeasureWater(int x, int y, int z) {
if (x + y < z) return false;
if (x == 0 || y == 0) return z == 0 || x + y == z;
return z % gcd(x, y) == 0;
}
};... | [
"ahjo_bb@hotmail.com"
] | ahjo_bb@hotmail.com |
a543ec536980c6010d948418362badd7c56bdf41 | 8fda0131adae63e21a825c1bdc4fd6b110fcaa10 | /srctree/src/splineMath.cpp | f38fca91da13a54fd9b58037baf8852c7dbf4090 | [] | no_license | vsnchips/skeleton-animation-editor | fa3b37f000498162dc45139ed06762837a92d167 | 1f1a1a935e5a4ed389337a271a5b369f604b88cf | refs/heads/master | 2020-04-07T04:54:59.229915 | 2018-11-18T12:05:43 | 2018-11-18T12:05:43 | 158,077,019 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,536 | cpp | #pragma once
#include "splineMath.hpp"
using namespace glm;
using namespace std;
typedef std::vector<glm::quat> quatSpline;
glm::quat qSpline( float t, quatSpline & spline){
//iterative decasteljau
quatSpline temp = spline;
int i = temp.size()-1;
while( i>0){
for (int j = 0; j < i; j++){
temp[j] ... | [
"tonupkiwi@gmail.com"
] | tonupkiwi@gmail.com |
d1396ef56e98c80184d0cc808f67591446d80633 | 400f1bc2292b0e1fcb9cdd1825815a564fec6043 | /Array/Array/Array.cpp | d3df9b4a0ad74f04ac05b42eeb94d1afbf784853 | [] | no_license | murnat98/technotrack | 0b342a8b4fc515e0f76eda8e1ce9182788c30621 | dcbadd5be16ae8adaaa4d3097ffbc14715c5d683 | refs/heads/master | 2020-05-21T08:49:37.369043 | 2017-03-06T14:32:08 | 2017-03-06T14:32:08 | 70,189,615 | 0 | 0 | null | 2016-10-23T16:30:23 | 2016-10-06T20:16:48 | C++ | UTF-8 | C++ | false | false | 2,128 | cpp | #include "Array.hpp"
Array::Array()
{
capacity_ = 0;
count_ = 0;
array_ = nullptr;
allocated_ = false;
}
Array::Array(int size)
{
capacity_ = size;
count_ = 0;
array_ = new int[size];
allocated_ = true;
}
Array::Array(Array& array)
{
assert(&array);
capa... | [
"murnat98@yandex.ru"
] | murnat98@yandex.ru |
6e753b4ad1260adbeacd38f770312cd6c950f6a7 | 0eff74b05b60098333ad66cf801bdd93becc9ea4 | /second/download/httpd/gumtree/httpd_repos_function_1260_httpd-2.3.8.cpp | 0bf7dd26833d4040292b71d00c9a6b772a2c5562 | [] | no_license | niuxu18/logTracker-old | 97543445ea7e414ed40bdc681239365d33418975 | f2b060f13a0295387fe02187543db124916eb446 | refs/heads/master | 2021-09-13T21:39:37.686481 | 2017-12-11T03:36:34 | 2017-12-11T03:36:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,563 | cpp | static int fixup_redir(request_rec *r)
{
void *dconf = r->per_dir_config;
alias_dir_conf *dirconf =
(alias_dir_conf *) ap_get_module_config(dconf, &alias_module);
char *ret;
int status;
/* It may have changed since last time, so try again */
if ((ret = try_alias_list(r, dirconf->redirects,... | [
"993273596@qq.com"
] | 993273596@qq.com |
d7197cbd9db3eb4a91fe85cf4af51e36fe425e61 | fd11a396253f166add68b5471ff1aadfd6175c41 | /src/utilities/cli-cpp-config-generator/cli-cpp-config-generator.cpp | f6111a59d78fe5969910cec20501c02f0eec42e6 | [
"MIT"
] | permissive | Tubbz-alt/cli-cpp | 9daae1f2d910ea1691c1f66f0a952de02071e39a | 4f98a09d5cfeffe0d5c330cda3272ae207c511d1 | refs/heads/master | 2021-09-15T12:42:25.029386 | 2018-06-01T17:40:12 | 2018-06-01T17:40:12 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,348 | cpp | /**
* @file cli-cpp-config-generator.cpp
* @author Marvin Smith
* @date 7/5/2015
*/
// CLI-C++ Libraries
#include <cli_cpp.hpp>
// C++ Standard Libraries
#include <cstdlib>
#include <deque>
#include <iostream>
#include <string>
/**
* @brief Configuration Options
*/
class Options{
public:
/*... | [
"marvin_smith1@me.com"
] | marvin_smith1@me.com |
d7b59ae5b50d368c01e30aa998d76ec5f8b8a7f0 | c1c1a4de2c3e815dac6f4d5536304e8c8143c023 | /BattleTank/Source/BattleTank/Tank.h | 3f01a2d348e0038a8fb7f153e372ea3919a540f3 | [] | no_license | JVCounsell/UnrealCourse_BattleTank | f1fe60295ff9ed3b39bd0126ce2b0369a60f1326 | 433806996c5f5aa1640b97430bac73d59da2a623 | refs/heads/master | 2021-01-13T14:37:57.553104 | 2017-02-15T17:47:06 | 2017-02-15T17:47:06 | 76,752,069 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,012 | h | // Fill out your copyright notice in the Description page of Project Settings.
#pragma once
#include "GameFramework/Pawn.h"
#include "Tank.generated.h"
DECLARE_DYNAMIC_MULTICAST_DELEGATE(FTankDelegate);
UCLASS()
class BATTLETANK_API ATank : public APawn
{
GENERATED_BODY()
public:
virtual float TakeDamage(float... | [
"jeremycounsell@gmail.com"
] | jeremycounsell@gmail.com |
0078058a1067b1bfdd842e4e3ab103652d00347a | ac1c9fbc1f1019efb19d0a8f3a088e8889f1e83c | /out/release/gen/third_party/blink/renderer/bindings/core/v8/v8_big_uint_64_array.cc | 244a0d8527f01401ebfdf5c754e9acd30c2d2b40 | [
"BSD-3-Clause"
] | permissive | xueqiya/chromium_src | 5d20b4d3a2a0251c063a7fb9952195cda6d29e34 | d4aa7a8f0e07cfaa448fcad8c12b29242a615103 | refs/heads/main | 2022-07-30T03:15:14.818330 | 2021-01-16T16:47:22 | 2021-01-16T16:47:22 | 330,115,551 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,960 | cc | // Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// This file has been auto-generated from the Jinja2 template
// third_party/blink/renderer/bindings/templates/interface.cc.tmpl
// by the script code_gen... | [
"xueqi@zjmedia.net"
] | xueqi@zjmedia.net |
535313faf7af8876952eb3cb61a1a246a18bec90 | 0c31ec352872dea3cb2391d59a4ccba9f4a3ac64 | /Core/Terrain/ChunkColumn.cpp | 14411ee76583f359f200b46d4706dbb1e9247665 | [
"MIT",
"LicenseRef-scancode-khronos"
] | permissive | marci07iq/SpaceCube | 501330ec5a9acdf2f62d371dd796cbe085b243fa | 464bc3fa1090bed273bcaa3257aebeacc4e8d3b0 | refs/heads/master | 2021-07-17T23:08:51.133152 | 2020-05-03T23:02:11 | 2020-05-03T23:02:11 | 133,565,838 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,308 | cpp | #include "WorldLoader.h"
ChunkCol::~ChunkCol() {
for (int i = 0; i < CHUNK_PER_COLUMN; i++) {
if (_chunks[i] != NULL) {
delete _chunks[i];
}
}
for (int i = 0; i < 4; i++) {
if (_neigh[i] != NULL) {
_neigh[i]->bye(static_cast<Directions>(i ^ 1), this);
}
}
_frag->setChunkCol(modulo... | [
"marci07iq@outlook.com"
] | marci07iq@outlook.com |
3e62dd54ae82aa90d514f18ae190c5de76006148 | dc2e0d49f99951bc40e323fb92ea4ddd5d9644a0 | /Cecily/Activemq-cpp_3.7.1/activemq-cpp/src/test-benchmarks/decaf/util/StlListBenchmark.h | 8da34df73f5e8380660c6b7e8a6e70930fd42636 | [
"Apache-2.0"
] | permissive | wenyu826/CecilySolution | 8696290d1723fdfe6e41ce63e07c7c25a9295ded | 14c4ba9adbb937d0ae236040b2752e2c7337b048 | refs/heads/master | 2020-07-03T06:26:07.875201 | 2016-11-19T07:04:29 | 2016-11-19T07:04:29 | 74,192,785 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,417 | h | /*
* 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... | [
"626955115@qq.com"
] | 626955115@qq.com |
b89066e49830abdd424a65696963de909d11222f | 09e10747213f59689b3ad4218e4b228c1b07b85a | /game/gameserver/Trial.cpp | 96bd3cf438a33eb756b7d2ae35e7b65d532a714b | [] | no_license | imane-jym/gp | d4b75c8f07b8f4c8403a2fab30ad505140b5c6c1 | a531272417395268101f22164e4b15aa344e428d | refs/heads/master | 2021-01-10T09:47:29.835034 | 2017-11-23T12:02:02 | 2017-11-23T12:02:02 | 43,287,478 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 13,353 | cpp | #include "Trial.h"
#include "DBCtrl.h"
#include "EnumDefines.h"
#include "ErrorMsg.h"
#include "Role.h"
#include "CmdDefine.h"
#include "CardPacket.h"
#include "WorldBoss.h"
CTrial::CTrial()
{
m_dwCurrentdwIndex = 0;
m_pCRole = NULL;
m_dwCurrentTrigger = 0;
}
int CTrial::Init(CRole *pCRole)
{
m_pCRole = pCRole;
... | [
"imane@imane-virtual-machine.(none)"
] | imane@imane-virtual-machine.(none) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.