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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
63a62bf193fb3b4e76ef4cb89708f887be01ead4 | fce87b7c9090716505a47a6317cd06ca08d5be5c | /lipan/lib/fun.cpp | 1b5c4b2ad8a2fe5e1f765b6c5e5a4005ccea0f81 | [] | no_license | lipan16/c | 85660bab45b2b7a1b6268b782e8f94cdea0f0bd3 | 44406610aeabfb27dade1af0127990fff6b66a49 | refs/heads/master | 2020-03-07T05:40:37.131071 | 2019-05-30T09:43:42 | 2019-05-30T09:43:42 | 127,302,560 | 0 | 0 | null | null | null | null | WINDOWS-1252 | C++ | false | false | 207 | cpp | /*
* fun.cpp
*
* Created on: 2018Äê4ÔÂ24ÈÕ
* Author: asus
*/
unsigned long long fun(int i){
if(i==0)
return 1;
else
return i*fun(i-1);
}
int func(){
return 10;
}
| [
"lipan16@lzu.edu.cn"
] | lipan16@lzu.edu.cn |
e9e626600bfca4e5ce821dc6338d8ec3be2e3b8d | 08c8ca0dc8acc6063e0377c933b66ccfdc7b9db8 | /Source/WebKit/UIProcess/cairo/BackingStoreCairo.cpp | 55fbf33a89852505f49b04c4764826f83c119c6c | [
"BSD-3-Clause"
] | permissive | ijsf/DeniseEmbeddableWebKit | 5dab5d451a7c6a4c9a107bbcf1050e00ee7c01c8 | 57dfc6783d60f8f59b7129874e60f84d8c8556c9 | refs/heads/master | 2022-04-25T05:25:02.629593 | 2020-04-18T19:05:43 | 2020-04-18T19:06:26 | 256,827,831 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,005 | cpp | /*
* Copyright (C) 2011 Apple Inc. All rights reserved.
* Copyright (C) 2011,2014 Igalia S.L.
*
* 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 code must retain the above copyright
... | [
"code@ijsf.nl"
] | code@ijsf.nl |
e813dda94ab921072998364825e1f469d8818763 | 1160e42d7e740ccb58d7fac8dee66598226a205f | /sw/puzzle_main/loops2.ino | d2d4e773f55df257da6c963dc58e51e1a9140db7 | [] | no_license | byuccl/ICEBoard | 528d334b7509163b85d0063a3f9bac1e440ce7a3 | fd87b05e6c009b2e932abfab5c7d8dc7b913d017 | refs/heads/master | 2022-12-14T13:25:30.815069 | 2020-09-13T06:10:04 | 2020-09-13T06:10:04 | 228,904,194 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 913 | ino | #include "puzzles.h"
#include "iceBoard.h"
void loops2()
{
while (digitalRead(BC_PIN))
;
int x = 0;
leds.setPixelColor(LED1, GREEN);
leds.show();
while (x < 10)
{
while (!digitalRead(BC_PIN))
;
while (digitalRead(BC_PIN))
;
lcd.clear();
... | [
"jeff.goeders@Gmail.com"
] | jeff.goeders@Gmail.com |
b639b268219c8d2644f4666794d8dfcb3509ce24 | fcc7a2d6914f839c56c20a5c26f3237847347c08 | /CApp/CInterfaceLoot.h | b0e6b49bfd4c2f5a210e97c04b559cbda55748bf | [] | no_license | SCRAPPYDOO/GameEngine | 2cbe376851847372be2bfe9fcac929d4e4711451 | 41eb8ed853888538890c9ef1de6bd989a4397345 | refs/heads/master | 2021-01-13T09:51:11.088984 | 2011-12-23T04:41:11 | 2011-12-23T04:41:11 | 1,931,783 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 614 | h | #ifndef _CINTERFACELOOT_H_
#define _CINTERFACELOOT_H_
#include "CInterface.h"
struct Loot
{
int nGuid; //Guid of unit
std::vector <int> UnitLootList;
};
class CInterfaceLoot : public CInterface
{
public:
CInterfaceLoot();
CInterfaceLoot(int nGuid, int nID);
~CInterfaceLoot() {}
public:
... | [
"scrapek69@gmail.com"
] | scrapek69@gmail.com |
5969f57a59c2a56328a6d85947e941625435f8d7 | ea8ba7cfc4f4773ed516e094ded4bc36502f93b5 | /branch/old_angsys/angsys_beta3/source/angsys/angsys.desktop/pch.cpp | 300f290acaf9391bc795c5952dc48511665bda44 | [
"Apache-2.0"
] | permissive | ChuyX3/angsys | 15f896f0b4823b63a14aff8e35a30f344f2c30e8 | 89b2eaee866bcfd11e66efda49b38acc7468c780 | refs/heads/master | 2021-07-07T18:58:39.437477 | 2020-06-29T05:33:08 | 2020-06-29T05:33:08 | 92,321,439 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 290 | cpp | // stdafx.cpp : source file that includes just the standard includes
// angsys.desktop.pch will be the pre-compiled header
// stdafx.obj will contain the pre-compiled type information
#include "pch.h"
// TODO: reference any additional headers you need in STDAFX.H
// and not in this file
| [
"chuyangel.rm@gmail.com"
] | chuyangel.rm@gmail.com |
bb3b6cac7f830704292ed73897e3ed478bc7df6d | 6b7bc255186b607345f6267facd61a1440e56119 | /libredex/VirtualScope.cpp | fefcb783c87be24d47fe88df6a479ef2a030cc6f | [
"MIT"
] | permissive | tectas/redex | 8c56ae776df1df17df055fe131a38a40314a7d0c | 67885df47c1cd6d05e9d8620adf024b77c78194b | refs/heads/master | 2022-11-30T20:27:42.210836 | 2022-11-22T08:26:20 | 2022-11-22T08:26:20 | 56,158,480 | 0 | 0 | NOASSERTION | 2022-11-22T08:26:23 | 2016-04-13T14:22:52 | C++ | UTF-8 | C++ | false | false | 33,707 | cpp | /*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
#include "VirtualScope.h"
#include "Creators.h"
#include "DexAccess.h"
#include "DexUtil.h"
#include "ReachableClasses.h"
#includ... | [
"facebook-github-bot@users.noreply.github.com"
] | facebook-github-bot@users.noreply.github.com |
6bcfd731b74f651444d02b1e3a7503ec2281af3a | b8499de1a793500b47f36e85828f997e3954e570 | /v2_3/build/Android/Debug/app/src/main/include/Fuse.Controls.Path.h | db7f888e11f82971b6edbb2b9a67c85145c2eaaa | [] | no_license | shrivaibhav/boysinbits | 37ccb707340a14f31bd57ea92b7b7ddc4859e989 | 04bb707691587b253abaac064317715adb9a9fe5 | refs/heads/master | 2020-03-24T05:22:21.998732 | 2018-07-26T20:06:00 | 2018-07-26T20:06:00 | 142,485,250 | 0 | 0 | null | 2018-07-26T20:03:22 | 2018-07-26T19:30:12 | C++ | UTF-8 | C++ | false | false | 3,084 | h | // This file was generated based on C:/Users/Vaibhav/AppData/Local/Fusetools/Packages/Fuse.Controls.Primitives/1.9.0/Shapes/Path.Surface.uno.
// WARNING: Changes might be lost if you edit this file directly.
#pragma once
#include <Fuse.Animations.IResize.h>
#include <Fuse.Binding.h>
#include <Fuse.Controls.SegmentedSh... | [
"shubhamanandoist@gmail.com"
] | shubhamanandoist@gmail.com |
e4ed711e758348c29fedb462c5eb12babd1b7a3a | 297497957c531d81ba286bc91253fbbb78b4d8be | /gfx/skia/skia/src/codec/SkCodecImageGenerator.h | 54a79638e1e30e0c550b0c9e9108be8083f0bb46 | [
"LicenseRef-scancode-unknown-license-reference",
"BSD-3-Clause"
] | permissive | marco-c/gecko-dev-comments-removed | 7a9dd34045b07e6b22f0c636c0a836b9e639f9d3 | 61942784fb157763e65608e5a29b3729b0aa66fa | refs/heads/master | 2023-08-09T18:55:25.895853 | 2023-08-01T00:40:39 | 2023-08-01T00:40:39 | 211,297,481 | 0 | 0 | NOASSERTION | 2019-09-29T01:27:49 | 2019-09-27T10:44:24 | C++ | UTF-8 | C++ | false | false | 1,877 | h |
#ifndef SkCodecImageGenerator_DEFINED
#define SkCodecImageGenerator_DEFINED
#include "include/codec/SkCodec.h"
#include "include/core/SkData.h"
#include "include/core/SkImageGenerator.h"
#include "include/core/SkRefCnt.h"
#include "include/core/SkSize.h"
#include "include/core/SkYUVAPixmaps.h"
#include <cstddef... | [
"mcastelluccio@mozilla.com"
] | mcastelluccio@mozilla.com |
a67d8c04398f8a84b9a6caa9d8fe96d431bf31cc | efda8165775d942b99ba42f65041474d602fe991 | /src/test_union_find.cpp | 371e7a0e6988756ab79ed550c95030e4f7c173fc | [] | no_license | surpass007/algorithm_collection | eab25a1ed41f63ebfd7ae70e18a86dfa5d260d9a | c9517f605858dfca782e9b0724e958b7ef77fdd5 | refs/heads/master | 2023-01-12T05:22:04.618498 | 2020-11-13T08:48:28 | 2020-11-13T08:53:43 | 312,514,944 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 54 | cpp |
#include "union_find.h"
int main() {
return 0;
} | [
"sebliu@tencent.com"
] | sebliu@tencent.com |
e60757135841792a6d0d2000d933e7c53369d0a0 | 0e456e7610169365ad5d0304701a4939cbf230ef | /gfg/must do interview que/heap/MinimumCostOfRopes.cpp | b2248883a3c699780c5abe916535e1150ba36cda | [] | no_license | rverma870/DSA-practice | 8674e75225fdb4396560e5d8cfd9c4a3fc6a3356 | f714d4887888dd774fa1c10192c59767074425e9 | refs/heads/main | 2023-06-11T02:12:52.447346 | 2021-06-19T17:16:32 | 2021-06-19T17:16:32 | 369,564,546 | 0 | 0 | null | 2021-05-21T14:54:53 | 2021-05-21T14:39:21 | C++ | UTF-8 | C++ | false | false | 518 | cpp | #include<bits/stdc++.h>
using namespace std;
long long minCost(long long arr[], long long n)
{
priority_queue<long long, vector<long long>, greater<long long>>q;
for(long long i=0;i<n;i++)
q.push(arr[i]);
long long ans=0;
while(q.size()>1)
{
long long x,y;
x=q.top();
q.pop();
y=q.top();
... | [
"rverma870@gmail.com"
] | rverma870@gmail.com |
6fdf21f769d01f19b4a50122466776ca41e6cbab | 58eee66e7025a0758c82ba10066f0676724f7e58 | /FinalProject_Aditi-Mehta_Anish-Narsian/Rasterizer.cpp | 6d0fe95686814c645a69f7dd34ac141439f10762 | [] | no_license | anarsian/OpenGL-project | 6241832e1e12ea0e8c3ec7344715639dbfc2b131 | 80878e9fe5e129cd5c6bb5b78869699acc875a1e | refs/heads/master | 2021-01-15T20:58:08.760753 | 2014-12-31T18:51:07 | 2014-12-31T18:51:07 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 11,163 | cpp | #ifdef _WIN32
#include <windows.h>
#endif
#include <iostream>
#include <math.h>
#include <cmath>
#include <GL/gl.h>
#include <GL/glut.h>
#include "Parser.h"
#include "cube.h"
#include "Camera.h"
#include "House.h"
using namespace std;
static int window_width = 512, window_height = 512;
float* pixe... | [
"anish.narsian@gmail.com"
] | anish.narsian@gmail.com |
d682d29c7241187bf2430acc2e5048229fa9c1c4 | 4d5f2cdc0b7120f74ba6f357b21dac063e71b606 | /star-ots/include/CosTransactionsPolicyType_skel.h | f03413c88054b08f768ebcaf4ef51a0bd4b6b172 | [
"BSD-2-Clause"
] | permissive | anjingbin/starccm | cf499238ceb1e4f0235421cb6f3cb823b932a2cd | 70db48004aa20bbb82cc24de80802b40c7024eff | refs/heads/master | 2021-01-11T19:49:04.306906 | 2017-01-19T02:02:50 | 2017-01-19T02:02:50 | 79,404,002 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 717 | h | // *************************************************************************
//
// This File Is Automatically Generated by the StarBusIDL-to-C++ Compiler !
//
// Copyright (c) 2003
// Network Information Security Institute,Computer College,NUDT.
// ChangSha,Hunan,PRC
//
// All Rights Reserved
//
// ********************... | [
"anjb@qkjr.com.cn"
] | anjb@qkjr.com.cn |
371ce4a22d1adb9029b8f15e4d0b9d531c6b4cc0 | eed7b94f96fcff5e706c4ab726f12ee60647d272 | /linefollowing_jessa3/linefollowing_jessa3.ino | 97954075dcf4a8925914070cc4d07d33e1370e33 | [] | no_license | jessamarie21/AER201-v2 | d7713d11106b912eebbf3428c1ff2494dec2c48c | bf2f06d0f6b4ff00769c9893299f49259188e1ee | refs/heads/master | 2021-04-30T06:43:50.178574 | 2018-02-14T00:13:40 | 2018-02-14T00:13:40 | 121,451,715 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 15,099 | ino | #include <Event.h>
#include <Timer.h>
#include <Servo.h>
Timer t;
int pin = 13; //servo pin
int left_pins[] = {7, 4};
int right_pins[] = {3, 2};
const int enable_2 = 6; //left motor
const int enable_1 = 5; //right motor
const int one_pin = A4; //this is actually what you think two pin is
const int two_pin = A1; //... | [
"jessa.zabala@mail.utoronto.ca"
] | jessa.zabala@mail.utoronto.ca |
cfa2883b28715fc678268e1df2e82f2a02370e72 | 19c8acfcf3e01c638049ffebb92759b65ce8ab4a | /C语言/34.cpp | d4d3c343a0c243c15a995dbcd56c6663ee02c930 | [] | no_license | VestigesH/GH | c66a8fcf1a7fcfa2f76d6b0f4d22f8c4d0052d5d | 68f40a8bd545c262ce33f539658e6c3b5566ebeb | refs/heads/master | 2020-04-15T17:11:22.479870 | 2019-07-08T05:29:37 | 2019-07-08T05:29:37 | 164,864,719 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 916 | cpp | //题目:给一个不多于5位的正整数,要求:一、求它是几位数,二、逆序打印出各位数字。
#include <stdio.h>
int main()
{
int g,s,b,q,w;
long x;
printf("请输入不多于五位的正整数x:");
scanf("%ld",&x);
if (x<0||x>100000)
{
printf("输入错误\n");
return 0;
}
else if (0<x<=99999)
{
w=x/10000;
q=x/1000%10;
b=x/100%10;
s=x/10%10;
g=x%10;
if(w!=0)
{
printf... | [
"1541945594@qq.com"
] | 1541945594@qq.com |
941bc382144536ff7435797ea4fc64e10dc7efae | 3649927ff70326ed8d2cd0872459c41dd34eb52f | /CD77_Halloween_Fun_2019/CD77_Halloween_Fun_2019.ino | b88453c536b74ab9b4ed08720e8cd04d79a6661a | [] | no_license | kkonstantin42/CD77_FastLED | aa1d78de8f13dcbc07bd523750ffc87dad4b837f | 152b582cc4eddacce1d817bd6bbbe7be2b83c03f | refs/heads/master | 2023-05-06T19:37:46.886755 | 2021-05-31T23:10:00 | 2021-05-31T23:10:00 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,212 | ino | /*
CD77_Halloween_Fun_2019 by Chemdoc77
Based by code from different sources.
See each tab for the sources.
*/
#include <FastLED.h>
#define LED_PIN 6
#define CHIPSET NEOPIXEL
#define NUM_LEDS 90
#define BRIGHTNESS 200
//Time Performance code
uint32_t gTimeCodeBase = 0;
uint32_t gTimeCode = 0;
uint32_t gLastTi... | [
"chemdoc77@users.noreply.github.com"
] | chemdoc77@users.noreply.github.com |
621bbddc72f315cf42356563b6a22cd9ae1ac172 | ce2b2f58bd4cefb19768abf47a16920bd0923953 | /register_types.cpp | b755c0d77e5223960307f62ef74c3a7e1037dc5d | [
"MIT"
] | permissive | resultant-gamedev/godot-debugdraw | 288462d0ae04f2dae4028cb4f1bdf3668afe9642 | dfc6277c4746182b6a6b84c40eea0e0779967361 | refs/heads/master | 2021-01-19T02:15:09.632876 | 2017-01-24T20:26:57 | 2017-01-24T20:26:57 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 478 | cpp | /* register_types.cpp */
#include <object_type_db.h>
#include <globals.h>
#include <print_string.h>
#include "register_types.h"
#include "debugdraw.h"
void register_debugdraw_types()
{
// initialize singleton
memnew(DebugDraw);
// register singleton
Globals::get_singleton()->add_singleton(Globals::S... | [
"lucasnvcarvalho@gmail.com"
] | lucasnvcarvalho@gmail.com |
a3d15a791c68de6b31271918d502f397c5826116 | a1809f8abdb7d0d5bbf847b076df207400e7b08a | /Simpsons Hit&Run/game/libs/sim/simcollision/collisionanalysertranslator.hpp | f5c541ed4c6f1b4a82d56db6876dabe74a7777a2 | [] | no_license | RolphWoggom/shr.tar | 556cca3ff89fff3ff46a77b32a16bebca85acabf | 147796d55e69f490fb001f8cbdb9bf7de9e556ad | refs/heads/master | 2023-07-03T19:15:13.649803 | 2021-08-27T22:24:13 | 2021-08-27T22:24:13 | 400,380,551 | 8 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 977 | hpp | #ifndef _COLLISIONANALYSERTRANSLATOR_HPP_
#define _COLLISIONANALYSERTRANSLATOR_HPP_
#include "simcollision/collisionanalyserinfo.hpp"
#include "simcollision/collisionanalyserdata.hpp"
namespace sim
{
class CollisionAnalyserTranslator {
public:
static float GetCheapBounceSoundVolume(CollisionAnalyserDa... | [
"81568815+RolphWoggom@users.noreply.github.com"
] | 81568815+RolphWoggom@users.noreply.github.com |
e4b07eebbec39e9abe39605e57c48eccd6fe6786 | 04b1803adb6653ecb7cb827c4f4aa616afacf629 | /chrome/browser/ui/android/infobars/near_oom_infobar.h | b647529044ff79d9d4da1a1b4b92d50a2b3b0ba0 | [
"BSD-3-Clause"
] | permissive | Samsung/Castanets | 240d9338e097b75b3f669604315b06f7cf129d64 | 4896f732fc747dfdcfcbac3d442f2d2d42df264a | refs/heads/castanets_76_dev | 2023-08-31T09:01:04.744346 | 2021-07-30T04:56:25 | 2021-08-11T05:45:21 | 125,484,161 | 58 | 49 | BSD-3-Clause | 2022-10-16T19:31:26 | 2018-03-16T08:07:37 | null | UTF-8 | C++ | false | false | 1,494 | 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 CHROME_BROWSER_UI_ANDROID_INFOBARS_NEAR_OOM_INFOBAR_H_
#define CHROME_BROWSER_UI_ANDROID_INFOBARS_NEAR_OOM_INFOBAR_H_
#include "base/android/jni_... | [
"sunny.nam@samsung.com"
] | sunny.nam@samsung.com |
f3f80528e526dc1ecb376e31f46dd916812c6cdf | 216f5252a8df73f8547d6a6c831409c916bae3e5 | /windows_embedded_compact_2013_2015M09/WINCE800/private/test/BaseOS/Kernel/smp/depth/ksmpstress.cpp | c5468f1fa44f0af2527ea94abd100e7f8ac1b9d3 | [] | no_license | fanzcsoft/windows_embedded_compact_2013_2015M09 | 845fe834d84d3f0021047bc73d6cf9a75fabb74d | d04b71c517428ed2c73e94caf21a1582b34b18e3 | refs/heads/master | 2022-12-19T02:52:16.222712 | 2020-09-28T20:13:09 | 2020-09-28T20:13:09 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,409 | cpp | // Copyright (c) Microsoft Corporation. All rights reserved.
//
//
// Use of this source code is subject to the terms of the Microsoft
// premium shared source license agreement under which you licensed
// this source code. If you did not accept the terms of the license
// agreement, you are not authorized to us... | [
"benjamin.barratt@icloud.com"
] | benjamin.barratt@icloud.com |
3621461747e3c5dfdeeec15b8206a419e98200e6 | d17fbd6c677b1427452a298678e913d48b85a664 | /core/libs/jsi/src/jsc.cpp | 583e2b7ac8e26d0f167fddb702f0b9b3dcdfec10 | [] | no_license | sunflowerdeath/aardvark-old | 766e492978a329c9c7a529bc69ecda1493937133 | 131eb88ac4ef4c043c524403af5a0b0d62cadb49 | refs/heads/master | 2023-07-16T13:52:17.110611 | 2021-09-05T17:08:21 | 2021-09-05T17:08:21 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 19,360 | cpp | #include "jsc.hpp"
namespace aardvark::jsi {
class JscValue : public PointerData {
public:
JscValue(JSGlobalContextRef ctx, bool* ctx_invalid, JSValueRef ref)
: ctx(ctx), ctx_invalid(ctx_invalid), ref(ref) {
protect();
}
~JscValue() override {
if (!*ctx_invalid) JSValueUnprotect... | [
"sunflowerdeath@gmail.com"
] | sunflowerdeath@gmail.com |
72a8a36f7e13e94e74866fea1602ca0ebb708bdb | 4f7d03dc02c7e87e744490324b95445828e18358 | /SpeechRecog/SpeechRecog/timer.cpp | a54dacf23e1acac1007bd287fae53238728d4c18 | [] | no_license | mrpie95/Rehab-Robot | fe6cb79bdfdf1e76c4a6b52318d1028c57758a43 | 3c5a6a13bb1b8182508bde3c484f157803f8fabc | refs/heads/master | 2020-03-18T00:44:34.940056 | 2018-11-11T08:48:15 | 2018-11-11T08:48:15 | 134,110,324 | 0 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 721 | cpp | #include "timer.h"
using namespace std;
Timer::Timer()
{
resetTimer();
}
void Timer::resetTimer()
{
startTime = chrono::high_resolution_clock::now();
tick = true;
}
bool Timer::hasTickYet()
{
if (tick) {
tick = false;
return true;
} else {
if (chrono::duration_cast<chrono... | [
"williams.saputra@gmail.com"
] | williams.saputra@gmail.com |
7fa16ec54dcdd1aafea47fd284be7f005815cedb | b31a6e4962b25ef6d2959c1803e32f3e724bf041 | /gsoap/soapStub.h | 27f0426f64f2e0fa0ec2e93ad0a1b3fe183897fd | [] | no_license | nigefanshu/CppTest | 456ed3cab4cb5ab17dae2eee48ac7f5841b4c4ab | 9cc694738c602a7270309afe8710d58638a8f3f5 | refs/heads/master | 2021-09-02T14:44:08.109330 | 2018-01-03T08:27:46 | 2018-01-03T08:27:46 | 108,251,340 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,689 | h | /* soapStub.h
Generated by gSOAP 2.8.28 from add.h
gSOAP XML Web services tools
Copyright (C) 2000-2016, Robert van Engelen, Genivia Inc. All Rights Reserved.
The soapcpp2 tool and its generated software are released under the GPL.
This program is released under the GPL with the additional exemption that
compiling,... | [
"519747074@qq.com"
] | 519747074@qq.com |
f0ccbc857c54e0a85321ebee55141a26a527f626 | 6c4965d8c08423648f64e6cdaae5c1171d5ffa0e | /ev_fitness.cpp | a8cd382ddfd74fb62c5f570126bb24d5144fbe11 | [] | no_license | pablopaolus/MiRepositorio | 69bd2185c47053480712389dfa255d956666ae0b | f4f9dc9700649b4deb375f78cbd27c935693b3f8 | refs/heads/master | 2021-01-17T11:17:37.965423 | 2014-04-29T14:47:01 | 2014-04-29T14:47:01 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,497 | cpp | #include <vector>
#include <sys/time.h>
#include <ctime>
#include <cstdio>
#include <cstdlib>
using namespace std;
int main(int argc, char *argv[]) {
// Compruebo el numero de argumentos
if(argc < 3) {
printf("Uso: %s <Tamaño de población> <Número de cromosomas>\n", argv[0]);
exit(-1);
}
srand(time(NULL));
... | [
"rotty_rottweiler@hotmail.com"
] | rotty_rottweiler@hotmail.com |
a419e26df65ca00a8627265b21ae8041582054f6 | 3d82ef9da7d1216c5ab14de2176f8b2c8340d610 | /src/cpp_share/util/def_mpir.h | 7b624faf331de8037f07eb6f668803e30ce8596e | [] | no_license | yeojinyeojin/e3 | 6d2d81fbbf3fcf1fe61e8ddc1deba1bb967f6058 | 0cf8fe9bdd853b9b2fc9bc6f24a96e7e25500c2f | refs/heads/master | 2022-02-16T06:39:21.936947 | 2019-09-02T12:32:16 | 2019-09-02T12:32:16 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,115 | h | #ifndef _E3_DEF_MPIR_H_
#define _E3_DEF_MPIR_H_
#include <string>
#include <memory>
#include <istream>
#include <ostream>
using std::string;
// FIXME add e3 namespace for all classes
int mpir_impl(); // 0 or 1
struct BigunNative;
class Bigun
{
std::shared_ptr<BigunNative> p;
using ull = unsigned ... | [
"you@example.com"
] | you@example.com |
b7572f3cf36ed2d93a4632096219f386660197d3 | 91a882547e393d4c4946a6c2c99186b5f72122dd | /Source/XPSP1/NT/com/rpc/runtime/charconv/convbvt.cxx | 59dde13983d589841bf6ffc03f7a00daa21289ed | [] | no_license | IAmAnubhavSaini/cryptoAlgorithm-nt5src | 94f9b46f101b983954ac6e453d0cf8d02aa76fc7 | d9e1cdeec650b9d6d3ce63f9f0abe50dabfaf9e2 | refs/heads/master | 2023-09-02T10:14:14.795579 | 2021-11-20T13:47:06 | 2021-11-20T13:47:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,037 | cxx | //+-------------------------------------------------------------------------
//
// Microsoft Windows
//
// Copyright (C) Microsoft Corporation, 1998 - 1999
//
// File: convbvt.cxx
//
//--------------------------------------------------------------------------
#include <precomp.hxx>
#include "CharConv.hxx"
in... | [
"support@cryptoalgo.cf"
] | support@cryptoalgo.cf |
c017d136735df41fca07c9cf60f8b5ca9508e13d | 0eff74b05b60098333ad66cf801bdd93becc9ea4 | /second/download/CMake/CMake-gumtree/Kitware_CMake_repos_basic_block_block_15076.cpp | c57fc564c6913b99e9dfc08b2bd67bc9705eba89 | [] | 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 | 24 | cpp | (r != ERANGE)
break; | [
"993273596@qq.com"
] | 993273596@qq.com |
fac5c730481d7f6dd1d8cf8b77744ad686b233cb | 910ea874eb5c6cddc9945e5ae870ac64569e96c7 | /include/Utils.h | 94565786bc735712d36d0f2fe57e86329c18b45e | [] | no_license | Mihafin/edu_ext_sort | 07c1179ee7b10d3a91784da2c3f8caa951661a0c | d2cdb35fa36bd6024e14cb9ce083f429ec963277 | refs/heads/master | 2020-04-06T18:49:25.983111 | 2018-11-15T13:17:01 | 2018-11-15T13:17:01 | 157,714,115 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,144 | h | #pragma once
#include <cstdlib>
#include <string>
#include <fstream>
#include <random>
#include <iostream>
#include "Exception.h"
namespace ExtSorter
{
struct Utils
{
static const size_t get_file_size(const char* file_path);
template <typename T>
static void fill(const std::string& file_path, size_t file... | [
"m.finogeev@socialquantum.com"
] | m.finogeev@socialquantum.com |
848711263fac5aba78b7423e4ef1a27e60afa09b | e0ffcab91ae09bb4317033331f4ed2b52520da32 | /Terrain/include/PerlinNoise.h | 32bea303d6bb5e0c8cc360c87027e2dad6319a85 | [] | no_license | JamesDorling/ShadersCode | 2914dd9b57a61844ffff196b195e6bb1c06e0c48 | f8448be59db10606622062a7af38078be0c8b601 | refs/heads/master | 2023-09-04T12:35:45.200185 | 2023-08-25T16:49:26 | 2023-08-25T16:49:26 | 414,857,666 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,093 | h | #include <vector>
// THIS CLASS IS A TRANSLATION TO C++11 FROM THE REFERENCE
// JAVA IMPLEMENTATION OF THE IMPROVED PERLIN FUNCTION (see http://mrl.nyu.edu/~perlin/noise/)
// THE ORIGINAL JAVA IMPLEMENTATION IS COPYRIGHT 2002 KEN PERLIN
// I ADDED AN EXTRA METHOD THAT GENERATES A NEW PERMUTATION VECTOR (THIS IS NOT P... | [
"P2413609@my365.dmu.ac.uk"
] | P2413609@my365.dmu.ac.uk |
4208b61b99f17c0065d6ed1d423bff2c5e0fcf0e | 77a08ec51aa16191986a739267fd9d4379bbb208 | /ybt/ybt1412.cpp | 393ee25a638e56e92f0fc86c70962ea1ae82d0c1 | [] | no_license | cenariusxz/ACM-Coding | 8f698203db802f79578921b311b38346950ef0ca | dc09ac9adfb4b80d463bdc93f52b479a957154e6 | refs/heads/master | 2023-06-24T13:12:13.279255 | 2021-07-26T01:24:36 | 2021-07-26T01:24:36 | 185,567,471 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 308 | cpp | #include <bits/stdc++.h>
using namespace std;
int main(){
int ans1 = 0, ans2 = 0;
for(int a = 1 ; a <= 1000 ; ++ a){
int tmp1 = 0, tmp0 = 0, tmp = a;
while(tmp){
if(tmp&1)tmp1++;
else tmp0++;
tmp>>=1;
}
if(tmp1>tmp0)ans1++;
else ans2++;
}
printf("%d %d\n",ans1,ans2);
return 0;
}
| [
"810988849@qq.com"
] | 810988849@qq.com |
972e3ed02b0bc54696f303a9f496fc8032290619 | 89ca99b517c10494f769cbda756bf0c8e00167fc | /src/grpc/server/AgentRestart.hpp | fa24d3e40036b03a68d7624aa3deac52f1504c95 | [] | no_license | nkumar43212/jvsim | fad56e25ae5eb8e8d0ad1272dacd8a25cb7e88ec | 7663c493cefcb7ffb04321226d0534be5711194e | refs/heads/master | 2021-01-17T11:49:10.052784 | 2016-07-28T22:32:56 | 2016-07-28T22:32:56 | 51,335,614 | 4 | 12 | null | 2018-08-07T02:11:14 | 2016-02-08T23:42:49 | C++ | UTF-8 | C++ | false | false | 382 | hpp | //
// AgentRestart.hpp
// Telemetry Agent
//
// Created: 6/9/16.
//
// Authors: ABBAS SAKARWALA
//
// Copyright © 2016 Juniper Networks. All rights reserved.
//
#ifndef AgentRestart_hpp
#define AgentRestart_hpp
#include "AgentServerLog.hpp"
#include "AgentSystemFactory.hpp"
bool on_startup (AgentServerLog *logg... | [
"sakarwala77@gmail.com"
] | sakarwala77@gmail.com |
5e6f8654dcf4a61f844d4c420e9b7ae157ac1625 | 8d63452d9dbc650884966b07a5652975f1e71961 | /dlls/ai_memory.cpp | 8f1f912c6b676a0539c8d326798138416ad3e6c0 | [] | no_license | 0TheSpy/hl2sdk | d2656cb99304ca8b7be7b67631e45f416539f02c | 8b2833d5909f27219d90000260887a3aeb32d485 | refs/heads/master | 2023-03-15T20:28:37.485807 | 2012-05-30T01:09:21 | 2012-05-30T01:09:21 | null | 0 | 0 | null | null | null | null | WINDOWS-1252 | C++ | false | false | 19,353 | cpp | //========= Copyright © 1996-2005, Valve Corporation, All rights reserved. ============//
//
// Purpose: An NPC's memory of potential enemies
//
//=============================================================================//
#include "cbase.h"
#include "isaverestore.h"
#include "ai_debug.h"
#include "ai_memory.h"
... | [
"ds@alliedmods.net"
] | ds@alliedmods.net |
a87d0d3246300b38d55300c141092d25db6f6444 | c0c50db7407541abb9de5df82fe83a96a2992f3d | /practice_sketch_40_video__cross_sections/ofApp.h | d84f85659489f30b011bb2ae1ed454d67c8d941f | [] | no_license | kcarollee/openFrameWorks-Personal-Projects | a081a838704238ef0f9f10a3204cce6bd94f447e | f50ef64e431693ddf20f17f5a30b496efadf9de2 | refs/heads/master | 2023-08-20T08:17:09.554074 | 2023-08-16T02:35:25 | 2023-08-16T02:35:25 | 172,909,668 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,146 | h | #pragma once
#include "ofMain.h"
#include "ofxHapPlayer.h"
class ofApp : public ofBaseApp{
public:
void setup();
void update();
void draw();
void keyPressed(int key);
void keyReleased(int key);
void mouseMoved(int x, int y );
void mouseDragged(int x, int y, int button);
void mousePressed(int x, int... | [
"kcarollee31693@gmail.com"
] | kcarollee31693@gmail.com |
81b768b035a60e46d75126d6c497f20ab5ad879e | 417fb2309408c418b4ec643512ac38172c4338a2 | /src/src/AST/unary_operator.cpp | 945c61dc783b19d7f95f883b79a695fafa6cc4c7 | [
"MIT"
] | permissive | allen880117/NCTU-compiler-f19-hw5 | 03bcae8fb02ef3847b70a3e753b56caeae240108 | 61dba0ef91977b08c4be66d6bb5dd3aca8592ac0 | refs/heads/master | 2022-04-03T13:37:05.697683 | 2020-02-12T12:33:18 | 2020-02-12T12:33:18 | 235,929,961 | 0 | 1 | null | 2020-02-12T12:33:19 | 2020-01-24T02:55:05 | C++ | UTF-8 | C++ | false | false | 912 | cpp | #include "AST/unary_operator.hpp"
#include <cstdlib>
#include <iomanip>
#include <iostream>
#include <string>
UnaryOperatorNode::UnaryOperatorNode(int _line_number, int _col_number,
EnumOperator _op, Node _operand) {
this->line_number = _line_number;
this->col_number = _col... | [
"wangallen880117@gmail.com"
] | wangallen880117@gmail.com |
766b4a07d4c10139adaac4ba5f9a98f8dd2c9a67 | 30773b649ebd89ffadd16d30fd62740b77ca7865 | /SDK/EmissaryActivated_AF_PromptAccessKey_classes.h | 74bcc76d3c02f9c25f9c2323abeb4736adab5430 | [] | no_license | The-Jani/Sot-SDK | 7f2772fb5df421e02b8fec237248af407cb2540b | 2a158a461c697cca8db67aa28ffe3e43677dcf11 | refs/heads/main | 2023-07-09T07:17:56.972569 | 2021-08-18T23:45:06 | 2021-08-18T23:45:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 830 | h | #pragma once
// Name: S, Version: 2.2.1
/*!!DEFINE!!*/
/*!!HELPER_DEF!!*/
/*!!HELPER_INC!!*/
#ifdef _MSC_VER
#pragma pack(push, 0x01)
#endif
namespace CG
{
//---------------------------------------------------------------------------
// Classes
//----------------------------------------------------------------... | [
"ploszjanos9844@gmail.com"
] | ploszjanos9844@gmail.com |
bf9e3403b96e6b9b4c91251c16fc4a0e07649f5e | 1f87be9520c0722833a5c3d49c06a33b546e4926 | /Motus/main.cpp | fd03062ef81833efd708d052f35329e27576d065 | [] | no_license | FredericCanaud/AlgorithmesC-CPP | 28277f79da9368f0c0e1d7d25a54ac14e5f382a3 | 6685f33177c673c9ce7f376a970aa9c3381c5687 | refs/heads/master | 2021-04-10T16:19:19.862655 | 2020-03-21T09:44:02 | 2020-03-21T09:44:02 | 248,945,945 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,767 | cpp | #include <iostream>
#include <string>
using namespace std;
const int MAX_NOM = 50;
int main()
{
void Majuscule(string nom[MAX_NOM], int nb_nom);
void Palindrome(string nom[MAX_NOM], int nb_nom);
void NombreVoyelles(string nom[MAX_NOM], int nb_nom);
void SaisieNoms(string nom[MAX_NOM], int &nb_nom);
s... | [
"frederic.canaud@etu.unilim.fr"
] | frederic.canaud@etu.unilim.fr |
281ced35b5232e5d1a97ead71873c574684016d2 | ce9359ee8df60a1e4047924537054119f80ae885 | /sigapp/sig/src/sigogl/gl_loader.cpp | 1b9f5441c51a54b43e0abd6cc12020c9d7848db0 | [
"LicenseRef-scancode-warranty-disclaimer",
"Apache-2.0"
] | permissive | manofthelionarmy/CSE170_PA3 | 964a0d4d99f48c2682085d6d27191f241d6bd541 | bae9148db103ec21b69873ee60ec9bff338197dd | refs/heads/master | 2021-04-28T08:41:00.419280 | 2018-02-23T02:04:17 | 2018-02-23T02:04:17 | 122,255,512 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,099 | cpp | /*=======================================================================
Copyright (c) 2017-onwards Marcelo Kallmann.
This software is distributed under the Apache License, Version 2.0.
All copies must contain the full copyright notice licence.txt located
at the base folder of the distribution.
=======... | [
"aleon45@ucmerced.edu"
] | aleon45@ucmerced.edu |
f740e6923c0ed0d9a2d2262e4c7138847b3bd2cf | 7c7edef030b3c831bfcabe408d8abc2fa3ba040a | /ConquestTD/src/GameScene/GameScene.h | cd9acbf02b4f84a0f53ad4c996a7ff791c1013dd | [] | no_license | SelenianRanger/ConquestTD | 985d4e9b56fd9c14f87ed1b8b6c01140680dbef7 | 7ed61bcb17bf5f243d86638eb5c28a4df12aa363 | refs/heads/master | 2022-08-10T17:45:03.270701 | 2018-02-27T23:56:24 | 2018-02-27T23:56:24 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 389 | h | #pragma once
#include <QGraphicsScene>
class QGraphicsView;
class GameController;
class ResourceManager;
class GameScene : public QGraphicsScene
{
Q_OBJECT
public:
GameScene(QObject *parent = 0);
~GameScene();
QGraphicsView* view();
private:
GameController *_game_controller;
ResourceManager *_resources;
QG... | [
"sina.kamali76@gmail.com"
] | sina.kamali76@gmail.com |
e46ec023d1065743e3234ecb06be4e65656d1da9 | 34f25fab358b91100ee0069b4e10784dd6db5e0b | /static-genetic-algorithm/include/host.h | f28aec9b41456cf3ef3fd4696d8d66dcd6db1fb1 | [] | no_license | qizzpzlz/simulator | ca8feafdda26b1f396041f1dd865069b6314e387 | 00e937ab1ade87b8a48a715466507310ff7e8a05 | refs/heads/master | 2021-07-11T20:23:56.896762 | 2020-06-28T15:29:55 | 2020-06-28T15:29:55 | 168,270,204 | 3 | 6 | null | 2020-05-15T07:05:19 | 2019-01-30T03:06:06 | C++ | UTF-8 | C++ | false | false | 1,233 | h | #pragma once
#include <vector>
#include "job.h"
#include <set>
#include <algorithm>
namespace genetic
{
struct HostInfo
{
float cpu_factor;
unsigned char max_slots;
bool write(std::streambuf& buf) const
{
const auto size = sizeof(HostInfo);
return buf.sputn(reinterpret_cast<const char*>(this), size);
... | [
"garangggg@gmail.com"
] | garangggg@gmail.com |
980d240a6d613a904c0e84abd0ca6170435b9ae4 | ff2365298ad897c75b987a336e68ca2bed92c9a8 | /code/cp/CP/rayata.cpp | b2f09d67ac3f78e12544b2f1261625b04ab5da16 | [] | no_license | ajaymalik2592/practice_cpp_code | ec6e85c74614d1a3bf409c09d0e80fb927238e21 | d48ff131384cb10d8dab9d9388ea62c8a7d47726 | refs/heads/master | 2023-03-22T13:06:57.560400 | 2021-03-24T14:02:24 | 2021-03-24T14:02:24 | 350,808,987 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 492 | cpp | #include<bits/stdc++.h>
using namespace std;
int main(){
int T; cin>>T;
while(T--){
string s; cin>>s;
int count = 0;
for(int i=0;i<s.size()-1;i++){
if(s[i] == 'C'){
if(s[i+1] == 'E' || s[i+1] == 'S' || s[i+1] == 'C')
count++;
}
else if(s[i] == 'E'){
if(s[i+1] == 'S' || s[i+1] == 'E')
... | [
"majay2592@gmail.com"
] | majay2592@gmail.com |
788a5df493a5f46e86f7758ba974e4bdada17cc9 | 2906e4e12a2ce33b5216a3e38b7f1ccb9d1d45ce | /device.h | a921b0506807158b98274131e8104d84fbb10f40 | [] | no_license | KolesnikAndrew/oldMT01 | c242f329be99e68eb4a65ef46a0f4a480975d1e8 | 6909f28472973665288fc9bc849ac770121bf3f8 | refs/heads/master | 2020-04-27T23:53:30.238401 | 2019-03-10T09:04:58 | 2019-03-10T09:04:58 | 174,794,748 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,469 | h | /**
* @file device.h
* @brief Заголовочный файл класса устройства на порту
* @details
* @note
* @author Инженер-программист Пясецкий Владимир
* @copyright © TRIOLCORP, 2014
*/
#ifndef DEVICE_H_
#define DEVICE_H_
#include <vector>
#include <libxml++/libxml++.h>
#include "server.h"
#include "parameter... | [
"kolesnik.andrew.nik@gmail.com"
] | kolesnik.andrew.nik@gmail.com |
a903d35fc8f1be24af89b6950438c14932d82bea | f7b789e7311ebf20fa88b71f50acccfd9191aaec | /UiCtrls/UiCtrls/Tracker.cpp | d050fffc4e1cf0c8ee07553af00aa78e93e74ef5 | [] | no_license | 15831944/xc_code | 95b906cfd50ad0d5cc9abf9d341c2ea6278aee3e | 6b4556ced2aab4be1ca25e03052927953cb9d8ed | refs/heads/master | 2020-09-11T11:48:41.610232 | 2019-03-20T01:24:08 | 2019-03-20T01:24:08 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,115 | cpp | #include "stdafx.h"
#include "Tracker.h"
bool TrackDragAndDrop(CTracker& tracker, HWND hWnd)
{
bool bResult=true;
tracker.BeginDrag();
::SetCapture(hWnd);
MSG msg;
while((::GetCapture()==hWnd)&&
(GetMessage(&msg, NULL, 0, 0)))
{
if(!tracker.ProcessWindowMessage(&msg))
{
swit... | [
"1004170100@qq.com"
] | 1004170100@qq.com |
8aaf186e1598a850123e5be9c3701f06e731afc9 | 431b74ff7d3e4ee345ed0010d463409f92bc3bf8 | /ui/display/types/fake_display_controller.h | e90b457ed9383bf15d0b87a2dce1986a08eac337 | [] | no_license | wxz879526/yxbase | c24ff301f19988b195b5d4b340a33cc6b16b3380 | f669bedeba06f8de807eb53e4a24eb0ffe05b4a8 | refs/heads/master | 2020-04-16T19:25:37.887882 | 2019-12-10T13:12:34 | 2019-12-10T13:12:34 | 165,858,963 | 0 | 0 | null | 2019-01-15T13:49:56 | 2019-01-15T13:49:56 | null | UTF-8 | C++ | false | false | 1,398 | h | // Copyright 2016 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 UI_DISPLAY_TYPES_FAKE_DISPLAY_CONTROLLER_H_
#define UI_DISPLAY_TYPES_FAKE_DISPLAY_CONTROLLER_H_
#include <stdint.h>
#include <memory>
... | [
"italyouxiao@gmail.com"
] | italyouxiao@gmail.com |
1a92e2e39fac27b7aff299d255eeb982189be151 | d681b93f80b75d2b79b77ec621773e66efcf6cba | /include/mqf/distributions/levy.h | 4c68b34ada3891bd4a8eb0561a100d351357afc2 | [] | no_license | gansuranga/mqf | 0ebcf6bd2607afc5cc9bbfd28b35c3f301742508 | 25de0f3df1cc2edadb2bac87cfd7ed4238646b4d | refs/heads/master | 2020-03-28T12:48:31.289331 | 2015-07-21T00:01:08 | 2015-07-21T00:01:08 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,255 | h | #ifndef INCLUDED_MQF_DISTRIBUTIONS_LEVY
#define INCLUDED_MQF_DISTRIBUTIONS_LEVY
#include <cassert>
#include <cmath>
#include <limits>
#include "../distribution.h"
#include "../random_variable.h"
#include "../constants.h"
namespace mqf {
namespace Distributions {
struct Levy : Density<> {
double mu, c;
expli... | [
"chriswelshman@gmail.com"
] | chriswelshman@gmail.com |
6e4d32cc01732c1c371cee61bb31eae5d435f038 | adaef51ca14f6b60a8d59bc6df2d345c36a7180a | /touchvg/src/main/jni/touchvg_java_wrap.cpp | 2735702b29beef1af9a73812c9c0d2d3cf27379f | [] | no_license | HuCanui/drawplant | 0d84d53b4ca0f3272086470389b6fb81f6374ddc | 0ae8729d39dbed7cd265248d3088f577cfd4038f | refs/heads/master | 2020-12-31T00:39:57.371279 | 2017-03-29T10:00:37 | 2017-03-29T10:00:37 | 86,559,265 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,600,881 | cpp | /* ----------------------------------------------------------------------------
* This file was automatically generated by SWIG (http://www.swig.org).
* Version 3.0.7
*
* This file is not intended to be easily readable and contains a number of
* coding conventions designed to improve portability and efficiency. Do... | [
"shixi_canhui@staff.sina.com.cn"
] | shixi_canhui@staff.sina.com.cn |
5cf613d96317a7bcf4760f49166a9676695db3ae | 0ed94159731f436244e922ad6312fb2a83a98c17 | /src/game/map.h | b3e1401d527714dab23566d57bf96e49ee2071fe | [
"Zlib"
] | permissive | 4Che/LD49-brimstone | b22dd8db1d7e4a47cd3729ebd189381dafc48548 | 6fd67d0709600fdab1c7d4c6013047df58a26d67 | refs/heads/master | 2023-08-27T23:53:54.436301 | 2021-10-04T14:17:57 | 2021-10-04T14:17:57 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,749 | h | #pragma once
#include "gameutils/tiled_map.h"
class ParticleController;
inline constexpr int tile_size = 12;
enum class Tile
{
air,
wall,
dirt,
grass,
spike,
spike_down,
dirt_alt,
_count,
};
namespace TileFlavors
{
struct Invis {};
struct Random
{
int index = 0;
... | [
"blckcat@inbox.ru"
] | blckcat@inbox.ru |
35136405bb990141a1f2efa674e844ffb4fb0b04 | 56212981670a9e25458340f8d5e2cd40806d003b | /KeepTalking/main.cpp | c1be787ab643f0a2767c785bea191e1c1cae8e1c | [] | no_license | majsterplan/KeepTalking | c75c41f26ece18c209aed9b3c2224e22f2e2dddd | 7149137475132197e30b3bbb83b336f6a671e4df | refs/heads/master | 2021-01-21T14:07:54.420120 | 2016-06-23T11:29:03 | 2016-06-23T11:29:03 | 57,339,746 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 27,194 | cpp | #include <QCoreApplication>
#include <iostream>
#include <winsock.h>
#include "server.h"
#include "usersmanager.h"
#include "conversationsmanager.h"
#include "commandparser.h"
#include "commandbuilder.h"
using namespace std;
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
// initialize WINS... | [
"mlange.plock@gmail.com"
] | mlange.plock@gmail.com |
e10e2f363ecfaa5f91ba35ddb9914330896eef79 | 886edaaf18a5086e12ff5e6017cb969b19dddaf9 | /snowman.cpp | cf3c91dce4956911641810090ce9925e52aa5de1 | [] | no_license | HodayaYehuda/snowman_a | 73f7b49f7efe8506c43f2d49bfff8a7dab162395 | 6b4f1520941eb25a1586906f0db72a3f26a0524e | refs/heads/master | 2023-03-22T17:19:31.941076 | 2021-03-10T11:23:26 | 2021-03-10T11:23:26 | 346,279,368 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 144 | cpp | #include <iostream>
#include <string>
#include "snowman.hpp"
using namespace std;
namespace ariel{
string snowman(int num)
{
return "";
}
}
| [
"hodayayeuda@gmail.com"
] | hodayayeuda@gmail.com |
20c5602514f610ca9b51ff2a36a9ea23e422f4ee | 24004e1c3b8005af26d5890091d3c207427a799e | /Win32/NXOPEN/NXOpen/Motion_CouplerCableBuilder.hxx | 1984db64f68eeee55a32bdd9e8300b221a5d35e6 | [] | no_license | 15831944/PHStart | 068ca6f86b736a9cc857d7db391b2f20d2f52ba9 | f79280bca2ec7e5f344067ead05f98b7d592ae39 | refs/heads/master | 2022-02-20T04:07:46.994182 | 2019-09-29T06:15:37 | 2019-09-29T06:15:37 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,279 | hxx | #ifndef NXOpen_MOTION_COUPLERCABLEBUILDER_HXX_INCLUDED
#define NXOpen_MOTION_COUPLERCABLEBUILDER_HXX_INCLUDED
//--------------------------------------------------------------------------
// Header for C++ interface to JA API
//--------------------------------------------------------------------------
//
// Source Fil... | [
"1075087594@qq.com"
] | 1075087594@qq.com |
39fd9ac4a7e6589598c203eff20670a632ee1f7f | dda672f0bd67fcafc14aae0e8abc3aa7c8d801ac | /core/geometry/rorgeometry_utilities.hh | 2bb2fc17d09d640d44ba5424a59a864cb04fd446 | [
"MIT"
] | permissive | abbaswasim/roar | 0ee809b048d7597aca82f4e340f412387993e552 | c845daf5fb1e76c628b4d3d7a346ca0bbfe0641e | refs/heads/master | 2023-08-04T10:32:31.010407 | 2023-08-02T19:21:13 | 2023-08-02T19:21:13 | 182,329,573 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 20,938 | hh | // Roar Source Code
// Wasim Abbas
// http://www.waZim.com
// Copyright (c) 2008-2020
//
// 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
/... | [
"abbas.wasim@gmail.com"
] | abbas.wasim@gmail.com |
81aee5d201a56a3704da1d91639adc7be93df818 | deba51efd716ed3c4ebe80c035cc7a861ce7c505 | /PracticalApplications5/Task7.cpp | 99096ae85b787a204f0834d6b22a413ff7c9b994 | [] | no_license | RickardBolin/Cpp---Linneuniversitet | ee78c2bdfd06f42eb42c78f5c6895cbdbe7069c7 | 02e8f3d7ac0fbfc9d72c62dff1de04e14b4c1dd5 | refs/heads/main | 2023-02-20T15:25:59.243564 | 2021-01-24T15:41:32 | 2021-01-24T15:41:32 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,880 | cpp | // Filename: Task7.cpp
// Created by Rickard Bolin on 2019-12-28.
//
// This program asks the user to input two matrices and performs matrix
// multiplication on them.
#include <iostream>
#include <iomanip>
using namespace std;
const int MAXDIM = 5;
typedef double Matrix[MAXDIM][MAXDIM];
void readDimensions(int &row... | [
"ribo1901@student.miun.se"
] | ribo1901@student.miun.se |
e65ea033c8e93191bcd19f3c789b55411034719a | 9df8ef4f5e25aefb4c9c952df106fb4df95f7509 | /TenFold/Plugins/BLUI/Intermediate/Build/Win64/UE4Editor/Development/BluLoader/PCH.BluLoaderPrivatePCH.h.cpp | e5d71effb1a7d53607f475d9b0c712a9634b7841 | [
"MIT"
] | permissive | Truemedia/TenFold | 6f4dc88ab66b434f56b9c35171c1166ebef69a01 | 001e3ce71549be1a7b47c230a6a64df3f7b37539 | refs/heads/master | 2021-01-18T07:40:17.547409 | 2016-02-13T14:25:45 | 2016-02-13T14:25:45 | 51,644,855 | 0 | 0 | null | 2016-02-13T12:23:49 | 2016-02-13T12:23:48 | null | UTF-8 | C++ | false | false | 137 | cpp | #include "C:\Users\Wade Penistone\Documents\Unreal Projects\TenFold\TenFold\Plugins\BLUI\Source\BluLoader\Private\BluLoaderPrivatePCH.h"
| [
"Truemedia@users.noreply.github.com"
] | Truemedia@users.noreply.github.com |
20075ff4c71e5949506fe6d3b208fb6d4c078e0b | 42349a13c91f132f1f13007af6adf646303db243 | /Win_UWP/Il2CppOutputProject/Source/il2cppOutput/GenericMethods6.cpp | 184846400733bef67be375eac5c860fdd1807b1e | [] | no_license | howlmoon123/This-is-how--i-fish | 968221be4d48ff4874d853aa3e50ede7e6567f45 | 4ab51a331986c3545f422e9258867d33c87cabb0 | refs/heads/master | 2023-05-30T17:25:31.524790 | 2021-06-13T04:16:37 | 2021-06-13T04:16:37 | 375,322,539 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,123,064 | cpp | #include "pch-cpp.hpp"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <stdint.h>
#include <limits>
template <typename R>
struct VirtFuncInvoker0
{
typedef R (*Func)(void*, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
{
const Virt... | [
"howlmoon123@gmail.com"
] | howlmoon123@gmail.com |
ed333e184fa31115a8e3235ba53d8fed98857c84 | 78cdbfbfa915497c5b0415d0a6e09dcc749fd6ba | /gotcloud/src/bamUtil/src/Diff.h | 058184abafa1926ee5e4c2ffbcced378dcbae6a6 | [
"Apache-2.0"
] | permissive | statgen/topmed_freeze3_calling | 9b00ee64804165e320ae5690ebb42e01345c24e2 | b01a53468e1e989988b09fd74f3e9ce9faa62a99 | refs/heads/master | 2018-12-12T20:02:46.909940 | 2018-12-05T01:35:08 | 2018-12-05T01:35:08 | 68,630,437 | 11 | 5 | null | null | null | null | UTF-8 | C++ | false | false | 5,732 | h | /*
* Copyright (C) 2011 Regents of the University of Michigan
*
* 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 3 of the License, or
* (at your option) any later v... | [
"hmkang@umich.edu"
] | hmkang@umich.edu |
0a924e2755f189f9dbd5a7536d89641797ecbfd9 | 6b5d6690678f05a71837b85016db3da52359a2f6 | /src/net/base/upload_file_element_reader.h | f246553d421028bdc8d9e4818a479c5bafe3e8fe | [
"BSD-3-Clause",
"MIT"
] | permissive | bopopescu/MQUIC | eda5477bacc68f30656488e3cef243af6f7460e6 | 703e944ec981366cfd2528943b1def2c72b7e49d | refs/heads/master | 2022-11-22T07:41:11.374401 | 2016-04-08T22:27:32 | 2016-04-08T22:27:32 | 282,352,335 | 0 | 0 | MIT | 2020-07-25T02:05:49 | 2020-07-25T02:05:49 | null | UTF-8 | C++ | false | false | 3,409 | h | // 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.
#ifndef NET_BASE_UPLOAD_FILE_ELEMENT_READER_H_
#define NET_BASE_UPLOAD_FILE_ELEMENT_READER_H_
#include <stdint.h>
#include "base/compiler_specific.h... | [
"junhuac@hotmail.com"
] | junhuac@hotmail.com |
6802fdc601e916f709ad5c8130b2bbafe68a8d5f | 5350528f269892758a014a3235d93532b9a2b801 | /3rd/ios/include/luabind/out_value_policy.hpp | 1fa224196853488006537c835415c711b072a2bd | [] | no_license | shwetak16/Pocker-1 | ff3c035024ef19a74215af000169c8edbdf843bc | bc7fafaa1e1420f238f2ac67732dad55bbcee1e3 | refs/heads/master | 2020-07-01T20:53:13.440269 | 2019-08-08T18:39:46 | 2019-08-08T18:39:46 | 201,297,346 | 0 | 0 | null | 2019-08-08T16:32:02 | 2019-08-08T16:32:01 | null | UTF-8 | C++ | false | false | 10,986 | hpp | // Copyright (c) 2003 Daniel Wallin and Arvid Norberg
// 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, mo... | [
"panyumiao@panyumiaodeMacBook-Pro.local"
] | panyumiao@panyumiaodeMacBook-Pro.local |
20bc443401799189e73ed7f4ac1095e4bbe4f1e4 | d0c44dd3da2ef8c0ff835982a437946cbf4d2940 | /cmake-build-debug/programs_tiling/function14783/function14783_schedule_1/function14783_schedule_1.cpp | f3a47b16f2baecf1e76bcc3dff3aae83048082f1 | [] | no_license | IsraMekki/tiramisu_code_generator | 8b3f1d63cff62ba9f5242c019058d5a3119184a3 | 5a259d8e244af452e5301126683fa4320c2047a3 | refs/heads/master | 2020-04-29T17:27:57.987172 | 2019-04-23T16:50:32 | 2019-04-23T16:50:32 | 176,297,755 | 1 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 1,531 | cpp | #include <tiramisu/tiramisu.h>
using namespace tiramisu;
int main(int argc, char **argv){
tiramisu::init("function14783_schedule_1");
constant c0("c0", 64), c1("c1", 128), c2("c2", 128), c3("c3", 64);
var i0("i0", 0, c0), i1("i1", 0, c1), i2("i2", 0, c2), i3("i3", 0, c3), i01("i01"), i02("i02"), i03("i0... | [
"ei_mekki@esi.dz"
] | ei_mekki@esi.dz |
fb1086b7e34ad6f67307720576b6e12416d01b6f | 9c433cba8a1d67410cc5354c789a7d17af6b8890 | /MFC/wbxu_20140704/DDX/MyListBoxProxy.h | 03aa38440ca6e34620d41724c8f2cb0679bf91a4 | [] | no_license | 958724723/KR_Ph2 | 011d5d4bcd6c3381ea16e051f5e50c828a63cdfc | 07e3ed72265e8254b894f444cca3fd807d1fc6bb | refs/heads/master | 2021-12-03T16:13:31.529881 | 2014-08-28T16:19:09 | 2014-08-28T16:19:09 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,148 | h | #if !defined(AFX_MYLISTBOXPROXY_H__CF61CB90_89FF_4E1A_980B_EA61F41091FD__INCLUDED_)
#define AFX_MYLISTBOXPROXY_H__CF61CB90_89FF_4E1A_980B_EA61F41091FD__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// MyListBoxProxy.h : header file
//
////////////////////////////////////////////////////////////... | [
"xuwenbo_outlook@outlook.com"
] | xuwenbo_outlook@outlook.com |
e8f0a8715d3fe824c32386f7412841549c8cda1a | 3180c55988e3e87dd1290d6f90c3b63a08f6042a | /IfcPlusPlus/src/ifcpp/IFC4/IfcCompoundPlaneAngleMeasure.cpp | b5f2daefefe0581526fcfaa2d320d4551e49e1d5 | [] | no_license | bbrangeo/IFCPlusPlus | 65d3bb3c0cdd4043f516a6a8321d522e0683a180 | 87e361487c86a15a4417b4ab8d744cd7b9a39876 | refs/heads/master | 2021-01-17T22:20:29.395459 | 2014-06-05T13:05:31 | 2014-06-05T13:05:31 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,755 | cpp | /* -*-c++-*- IfcPlusPlus - www.ifcplusplus.com - Copyright (C) 2011 Fabian Gerold
*
* This library is open source and may be redistributed and/or modified under
* the terms of the OpenSceneGraph Public License (OSGPL) version 0.0 or
* (at your option) any later version. The full license is in LICENSE file
* in... | [
"fabian.gerold@gmail.com@06f6d6f3-f2e0-f239-6e86-ba6a5d17d3a5"
] | fabian.gerold@gmail.com@06f6d6f3-f2e0-f239-6e86-ba6a5d17d3a5 |
c847dc569a23cc599b62ab729489aad3f23e7667 | 05baad95ec62a79a245c32b6a6b30fb3f93eb9cd | /search/search_quality/assessment_tool/result_view.hpp | fd57c9419d9fc7e81ff1fb497a9cb7b44faf4022 | [
"Apache-2.0"
] | permissive | DenisJu/omim | 1a9faad6b2b912b48a94fe9b9cafb56c669284bd | 298e7a55d8545fb0b2020137e102f80cacbcb6fa | refs/heads/master | 2021-01-22T22:44:22.582797 | 2017-03-22T15:18:31 | 2017-03-22T15:18:31 | 85,833,359 | 0 | 0 | null | 2017-03-22T13:51:11 | 2017-03-22T13:51:11 | null | UTF-8 | C++ | false | false | 623 | hpp | #pragma once
#include "search/search_quality/sample.hpp"
#include <QtWidgets/QWidget>
class QLabel;
class QRadioButton;
namespace search
{
class Result;
}
class ResultView : public QWidget
{
public:
ResultView(search::Result const & result, QWidget & parent);
void SetRelevance(search::Sample::Result::Relevanc... | [
"y@maps.me"
] | y@maps.me |
e64435bd3f79c61e947eb9007366ef1fb498ed02 | c95c67818f89ace2d75133fc4a87b877363dcff8 | /include/wheels/meta.h++ | 85b9de72f92c40a432fefc4be70e458cdbf95faf | [
"CC0-1.0"
] | permissive | rmartinho/wheels | 9ffde06eac69c7be0588a00c6a81fbbf4da220cf | a49e790dbc277335907b393ebaddea947ae14d0e | refs/heads/stable | 2021-01-17T08:44:16.859499 | 2016-05-08T13:33:29 | 2016-05-08T13:33:29 | 10,555,595 | 24 | 10 | null | 2015-04-06T09:25:32 | 2013-06-07T17:48:55 | C++ | UTF-8 | C++ | false | false | 2,433 | // Wheels - various C++ utilities
//
// Written in 2013 by Martinho Fernandes <martinho.fernandes@gmail.com>
//
// To the extent possible under law, the author(s) have dedicated all copyright and related
// and neighboring rights to this software to the public domain worldwide. This software is
// distributed without a... | [
"martinho.fernandes@gmail.com"
] | martinho.fernandes@gmail.com | |
8ca2b16ba0a76c0a9a9e6d536cb9ec6c806c2d5d | aa2c4d1eda9e7c4bc609a2f03e3e037ef03c4ea0 | /src/util.h | ecf4040430b26644ce980a6bacd8b0515a0ebee6 | [] | no_license | andi-d/project-euler | 83c137a308bd1814620d79fbdd4d7657b6c2057e | 8177aa48e23d159042fd51beefcf217e99f10e05 | refs/heads/master | 2021-01-18T12:17:49.173476 | 2015-06-14T18:23:46 | 2015-06-14T18:23:46 | 38,903,949 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,335 | h | #pragma once
#include <sstream>
#include <string>
#include <chrono>
#include <map>
template<class T, class D>
std::string strjoin(T t, D d) {
std::stringstream ss;
for (auto ii = std::begin(t); ii != (std::end(t)-1);ii++) {
ss << *ii << d;
}
ss << *(std::end(t)-1);
return ss.str();
}
nam... | [
"andreas.derksen2@gmail.com"
] | andreas.derksen2@gmail.com |
4ee50c87ee8ec7895e67d11ca911631e6f978e52 | 57bd1ec74aa1dad53d7431cd613ffcf7e6cfe2ab | /cpp/libs/include/openpal/executor/ITimer.h | af346d0466590029aba5658fd578d862cf0c326e | [
"BSD-3-Clause"
] | permissive | emgre/openpal | bb280673f3c36215599749bba61365790c2c33e3 | 4ec9c0926c7a80eb9868dcb9c6e8db002bf94255 | refs/heads/master | 2021-05-06T05:48:24.562838 | 2017-06-21T15:06:22 | 2017-06-21T15:06:22 | 115,162,022 | 0 | 0 | null | 2017-12-23T01:23:12 | 2017-12-23T01:23:12 | null | UTF-8 | C++ | false | false | 1,896 | h | /*
* Copyright (c) 2016, Automatak LLC
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
* following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this list of conditions ... | [
"jadamcrain@gmail.com"
] | jadamcrain@gmail.com |
6946e5cd68e3f0f04fa95717046b55af1e7d8bef | ae32568140c6020d700de6f22bfeff2c4332e66a | /C++/data-structures/AVLTree.h | b74c3ee2704933aa74914e84d16cba7370ad6d15 | [] | no_license | darvelo/data-structures-and-algorithms | 66555d961c98ac112cccf208efc9e8bfb25a5163 | 7e524aa31846219eee6c63a8c0bd62a401b4d979 | refs/heads/master | 2021-01-13T01:27:54.636554 | 2015-11-14T23:42:16 | 2015-11-14T23:42:16 | 25,101,051 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,086 | h | #ifndef AVL_TREE_H
#define AVL_TREE_H
#include <iostream>
#include <functional> /* less, function */
#include <utility> /* move, forward */
#include <algorithm> /* max */
template <typename Object, typename Comparator=std::less<Object>>
class AVLTree {
private:
struct Node {
Object data;
Node* lef... | [
"david@davidarvelo.com"
] | david@davidarvelo.com |
72cd5fb97153e5ed7ea3cb0748eea9a72ca76ee2 | 8955b19cf694818f57be0670762f8e5decbf4313 | /include/twigs/serializable.h | 20a59206400742134c346a5f5a684d63bad2b3c3 | [] | no_license | wbrawner/libtwigs | 09b77948ca2e748502eaae8851f7220162a43341 | 97e51e09249abb3028fdfab08eb41a08df27f77e | refs/heads/main | 2023-05-10T20:24:08.581542 | 2021-01-29T14:14:34 | 2021-01-29T14:14:34 | 325,180,236 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 145 | h | #ifndef SERIALIZABLE_H
#define SERIALIZABLE_H
#include <string>
class Serializable {
public:
virtual std::string serialize() = 0;
};
#endif
| [
"me@wbrawner.com"
] | me@wbrawner.com |
f13cdd3b629aeac7eba925df83ff4e4c934de1a5 | d9b146be61dc5b164f00b3c818115dccee4703fd | /room.cpp | 0a315c30406d9291d3d295435e4b96f71a05c836 | [] | no_license | alyssajasminee/343-software-project | 26665c05637d234ebf402dff670b664cb3b4e3a4 | 6681c4ec0866a7c0501e30a38f450888c18cc25e | refs/heads/master | 2020-05-03T00:10:33.943895 | 2019-05-11T06:04:08 | 2019-05-11T06:04:08 | 178,302,413 | 0 | 0 | null | 2019-04-26T01:48:06 | 2019-03-29T00:23:39 | C++ | UTF-8 | C++ | false | false | 557 | cpp | #include "room.h"
Room::Room(){}
Room::Room(QString bldgName, int roomNum, int capacity)
{
this->bldgName = bldgName;
this->roomNum = roomNum;
this->capacity = capacity;
}
QString Room::getBldgName()
{
return bldgName;
}
int Room::getRoomNum()
{
return roomNum;
}
int Room::getCapacity()
{
r... | [
"gfsbox@gmail.com"
] | gfsbox@gmail.com |
7f84a2a5ef1323326cdcc60f202a57e63a70a439 | 319d0f5beaa7f9772b85ebca4d77ade340b53d31 | /RsCppDemo/TODO.h | ba14640b9a3486cf9d6b2cfab9dcb9c368f0931a | [] | no_license | anastasiak2512/RsCppDemo | ad11105fdbaa4f79533768b509fc1f71f11f6cb0 | 55112691df726220f5252059e8ba5089c989477d | refs/heads/master | 2020-04-03T15:37:50.181476 | 2019-03-17T15:46:06 | 2019-03-17T15:46:06 | 155,369,514 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 104 | h | #pragma once
class TODO
{
public:
TODO();
virtual ~TODO();
//TODO: implement some functionality
};
| [
"anastasia.kazakova2512@gmail.com"
] | anastasia.kazakova2512@gmail.com |
42ddfdc586201ec931ee813bcd17403ffb466901 | 6697cd726d4cd3744ae52a7d5618f4ad107befba | /CP/1500/638B.cpp | 17e5e0e980527e4f1c04e0dd2988100b51fd0646 | [] | no_license | Saifu0/Competitive-Programming | 4385777115d5d83ba5140324c309db1e6c16f4af | ecc1c05f1a85636c57f7f6609dd6a002f220c0b0 | refs/heads/master | 2022-12-15T09:11:53.907652 | 2020-09-08T08:20:44 | 2020-09-08T08:20:44 | 293,743,953 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 973 | cpp | #include<bits/stdc++.h>
using namespace std;
#define NINJA ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0)
#define fo(i,n) for(int i=0;i<n;i++)
#define Fo(i,k,n) for(int i=k;i<n;i++)
#define iii tuple<int,int,int>
#define vi vector<int>
#define ii pair<int,int>
#define vii vector<ii>
#define int long long
#defin... | [
"43892879+Saifu0@users.noreply.github.com"
] | 43892879+Saifu0@users.noreply.github.com |
c0d0a7a3ebe089b9285f7ff4d27d80145227fd88 | 4bea57e631734f8cb1c230f521fd523a63c1ff23 | /projects/openfoam/rarefied-flows/impingment/sims/templates/wedge15Ma5/0.14/T | bffca57cf7a87fb601dbffd12c774433b2abf447 | [] | no_license | andytorrestb/cfal | 76217f77dd43474f6b0a7eb430887e8775b78d7f | 730fb66a3070ccb3e0c52c03417e3b09140f3605 | refs/heads/master | 2023-07-04T01:22:01.990628 | 2021-08-01T15:36:17 | 2021-08-01T15:36:17 | 294,183,829 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 36,457 | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v1912 |
... | [
"andytorrestb@gmail.com"
] | andytorrestb@gmail.com | |
2baf7d68c1a07de0442e96ea2a1af7fdf0991319 | 086343324bd50b2922daf9a4299b9b0de98e6a94 | /Client Lourd/Commun/Utilitaire/Modele/OpenGL_Storage/ModeleStorage_CPU_Local.h | e54c4cd7268257a58874679444ddfa5eb8cc8dce | [] | no_license | Bodheem/ProjetIntegrateur3 | c23e0ebf56b09733951f4195b99bd48673aa6f48 | 080179d68465d6be0002e201b114e27065129241 | refs/heads/master | 2021-01-20T14:04:53.018994 | 2017-02-22T04:04:00 | 2017-02-22T04:04:00 | 82,735,194 | 0 | 0 | null | null | null | null | ISO-8859-1 | C++ | false | false | 2,090 | h | ///////////////////////////////////////////////////////////////////////////////
/// @file ModeleStorage_CPU_Local.h
/// @author Martin Paradis
/// @date 2014-08-16
/// @version 1.0
///
/// @addtogroup modele Modele
/// @{
///////////////////////////////////////////////////////////////////////////////
#ifndef __MODELES... | [
"nikolayradoev@gmail.com"
] | nikolayradoev@gmail.com |
e5c2b4b0487b7ff751539fb53acf441f95f751a0 | 3092dba22735b2a714be2f44a28716af71b863d8 | /src/Game/GL.h | 03638bccd6dc57759c1af73471b0acdf3b870600 | [] | no_license | ha-drid/MineCraft2d | 360643a6962b5e890880f03abe7d58cb99873f5b | e68e6ace849aaf9ffa5e50fd9b61e49d6478501d | refs/heads/master | 2023-01-29T15:00:50.253533 | 2020-12-11T09:22:09 | 2020-12-11T09:22:09 | 320,524,868 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 603 | h | #pragma once
#include <GLFW/glfw3.h>
#include <gl/GL.h>
#include "Block.h"
#include "Player.h"
class World;
class GL
{
public:
void texture_load(uint32_t* texture, std::string file);
void block_draw(Block block);
void player_draw(Player player);
friend World;
private:
uint32_t grass_texture;
uint32_t undefined_... | [
"chekelekov1@outlook.com"
] | chekelekov1@outlook.com |
f039da568e7b4ac01d8bc5dd3a374561e3f4e1d6 | 860b9349bdfa31224653d12bcb78656365bf4853 | /core/src/tij/tijmonitor.cpp | d45fd972ef09d2a15168e9e8f465b9b66e8dc622 | [] | no_license | iserramacsa/mcomms | 27bcdf136f095a3ab92af6302be45ea673b615fa | d092110025d19464fc359318159678292b812a95 | refs/heads/master | 2022-11-16T01:33:37.937927 | 2020-04-20T17:24:25 | 2020-04-20T17:24:25 | 210,377,193 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,378 | cpp | #include "tij/tijmonitor.h"
#include "mprotocol/mprotocol.h"
#include "mprotocol/mfiles.h"
using namespace Macsa;
using namespace Macsa::MComms;
using namespace Macsa::Network;
TijMonitor::TijMonitor(const std::string &id, const std::string &address) :
TijController(id, address)
{
_running.store(false);
_maxReconn... | [
"i.serra@macsa.es"
] | i.serra@macsa.es |
b1b6dd39d5d7a77bc45532758af5c9b0c46c6ba9 | 7c33dda3710041185e1427118fb4d052141112ed | /p11800.cpp | 3106252bcc72fa95385e2c43146cdd7d908e5e94 | [] | no_license | AlexandreBellas/UVa-Online-Judge | 97c586bf64594a19e96cc8a16bf06ce81ff25d5f | 1ffc07ad64f5d5e45a9855dadf1b3781a250619c | refs/heads/master | 2021-08-07T19:16:12.853076 | 2017-11-08T20:33:16 | 2017-11-08T20:33:16 | 109,752,595 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,313 | cpp | #include <bits/stdc++.h>
using namespace std;
#define PI acos(-1.0)
#define EPS 1e-6
struct Point{
int x, y;
Point(){}
Point(int a, int b) {
x = a;
y = b;
}
double norma() {
return sqrt(x*x + y*y);
}
Point operator + (Point v) {
return Point(v.x + x, v.y +... | [
"alexandre.bellas@usp.br"
] | alexandre.bellas@usp.br |
6a8ee804717ee5079bd225edf379e0c9f36b75bb | c3a424748ca2a3bc8604d76f1bf70ff3fee40497 | /legacy_POL_source/oldPOL2_2007/src/pol/vital.h | d7b2401c784cedfa3b7c2cb84da27c26e3b98566 | [] | no_license | polserver/legacy_scripts | f597338fbbb654bce8de9c2b379a9c9bd4698673 | 98ef8595e72f146dfa6f5b5f92a755883b41fd1a | refs/heads/master | 2022-10-25T06:57:37.226088 | 2020-06-12T22:52:22 | 2020-06-12T22:52:22 | 23,924,142 | 4 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,290 | h | // History
// 2005/09/14 Shinigami: regen_while_dead implemented
#ifndef VITAL_H
#define VITAL_H
#include <string>
#include <vector>
class ConfigElem;
class ExportedFunction;
class Package;
class Vital
{
public:
Vital( const Package* pkg, ConfigElem& elem );
const Package* pkg;
std::string name;
... | [
"hopelivesproject@gmail.com"
] | hopelivesproject@gmail.com |
7fcf24ae19f34c005f14fefa0613d2fb6223fe70 | 3a822381dcd160cac16e9560748481e9d9234129 | /sketch_nov22a/sketch_nov22a.ino | 26d3d0ed20f9f8c6cb39c9403d88fe0c74377a33 | [] | no_license | datphanhuu99/arduino1 | 5aa21afe2f2c537628fd79bca3eed2bc75f094ce | 32a9aa6721a20f49608abf634f02b47cf8ee33e7 | refs/heads/master | 2020-07-29T20:26:19.275526 | 2019-09-21T08:28:23 | 2019-09-21T08:28:23 | 209,948,340 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,580 | ino | #include <Servo.h>
Servo myservo;
#define sbi(PORT,bit) {PORT |=(1<<bit);}
#define cbi(PORT,bit) {PORT &=~(1<<bit);}
#define tbi(PORT,bit) {PORT ^= (1<<bit);}
int servoPin = B1 ; //Chan dieu khien servo
void control(int a, int b, int c, int d);
void setup() {
pinMode(A0,INPUT);
pinMode(A1,IN... | [
"datphanhuu99@gmail.com"
] | datphanhuu99@gmail.com |
e35218d7bdf9ebd2d2a85a04f896fca56ef0c776 | 382cfe7e26143fe17e266a2d510752b25150e4d0 | /inc/npnet.h | 5bf1e0308fdf0b50939eddd326ca1a112bd73e21 | [] | no_license | strin/NPnet | 486b109daa6cb7f7712149cd27c762ac2ab15564 | 8599e2f1becaf59894b0e66f15818f8e1ca36dfc | refs/heads/master | 2020-12-24T14:10:38.634142 | 2015-04-25T17:05:41 | 2015-04-25T17:05:41 | 33,399,249 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,619 | h | #ifndef NPNET_MAIN
#define NPNET_MAIN
#include <boost/python.hpp>
#include <boost/any.hpp>
#include <boost/random.hpp>
// #include <boost/random/mersenne_twister.hpp>
// #include <boost/random/discrete_distribution.hpp>
#include <functional>
#include <string>
#include <vector>
#include <random>
#include <unordered_map... | [
"stl501@gmail.com"
] | stl501@gmail.com |
8e195dc7773efb522926519bff5a3c5893e0a38c | 5d83739af703fb400857cecc69aadaf02e07f8d1 | /Archive2/3d/e0fc53f2046845/main.cpp | 5d6b5a4df0d209d78b6bbc128c1b7821a8df2a82 | [] | no_license | WhiZTiM/coliru | 3a6c4c0bdac566d1aa1c21818118ba70479b0f40 | 2c72c048846c082f943e6c7f9fa8d94aee76979f | refs/heads/master | 2021-01-01T05:10:33.812560 | 2015-08-24T19:09:22 | 2015-08-24T19:09:22 | 56,789,706 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 538 | cpp | #include <iostream>
#include <string>
bool is_double( const std::string& str )
{
std::size_t pos ;
try
{
std::stod( str, std::addressof(pos) ) ;
return pos == str.size() ; // entire string has been consumed
}
catch( const std::exception& ) { return false ; } // error in c... | [
"francis.rammeloo@36614edc-3e3a-acb8-9062-c8ae0e4185df"
] | francis.rammeloo@36614edc-3e3a-acb8-9062-c8ae0e4185df |
c43afea92d5af7c27c5db49423066061ec8206b1 | 80925e65b4662d35c21485758a298c5962b9cc9e | /openGeeL/dependencies/bullet/src/BulletCollision/CollisionDispatch/btCollisionDispatcher.h | 063b45d548ec1f57db8db081bfd3385a18b4241f | [] | no_license | BobDeng1974/openGeeL | d88fbc3ea9acc6ec42b85e59a74ffc6305f07ee5 | b59f0206e30f233c2e2776dd3eebd095300aa0ad | refs/heads/master | 2021-09-25T08:53:46.827995 | 2018-10-19T20:52:12 | 2018-10-19T20:52:12 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,568 | h | /*
Bullet Continuous Collision Detection and Physics Library
Copyright (c) 2003-2006 Erwin Coumans http://continuousphysics.com/Bullet/
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.
Permiss... | [
"s9rathei@stud.uni-saarland.de"
] | s9rathei@stud.uni-saarland.de |
06082b7f7cbe81320c3e24b9ef37e63f0397c3b7 | 0c8327e3c194a5045462f38b28f4626ad009cba7 | /qt_cpp_version/QtGeoIp/MainWindow.h | 66d2210ed3aae5084ed6b144b6e79943d0d18063 | [] | no_license | AndreMiras/py-qt-geo-ip | 9ae25551e594d6fb8730b360066f1049f9b99040 | 2b98c88363d6184cea5717eb28591dff25f01fc2 | refs/heads/master | 2020-05-18T04:06:49.944809 | 2012-10-14T16:22:55 | 2012-10-14T16:22:55 | 33,007,696 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,884 | h | /*
* File: MainWindow.h
* Author: andre
*
* Created on September 23, 2012, 11:09 PM
*/
#ifndef _MAINWINDOW_H
#define _MAINWINDOW_H
#include "ui_main_window_ui.h"
#include "CustomMarbleWidget.h"
#include "PreferencesForm.h"
#include "MapInstallerForm.h"
#include <GeoIPCity.h>
#include <QTimer>
#include <QStrin... | [
"andre.miras@gmail.com"
] | andre.miras@gmail.com |
75326c7b2aa704fa700534f781ac24e115fd7314 | 2ba94892764a44d9c07f0f549f79f9f9dc272151 | /Engine/Source/Developer/LogVisualizer/Public/ILogVisualizer.h | f622a3cb338d34896c0f1a457dddf5140368c037 | [
"BSD-2-Clause",
"LicenseRef-scancode-proprietary-license"
] | permissive | PopCap/GameIdea | 934769eeb91f9637f5bf205d88b13ff1fc9ae8fd | 201e1df50b2bc99afc079ce326aa0a44b178a391 | refs/heads/master | 2021-01-25T00:11:38.709772 | 2018-09-11T03:38:56 | 2018-09-11T03:38:56 | 37,818,708 | 0 | 0 | BSD-2-Clause | 2018-09-11T03:39:05 | 2015-06-21T17:36:44 | null | UTF-8 | C++ | false | false | 300 | h | // Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
#pragma once
class ILogVisualizer : public IModuleInterface, public IModularFeature
{
public:
virtual void Goto(float Timestamp, FName LogOwner = NAME_None) = 0;
virtual void GotoNextItem() = 0;
virtual void GotoPreviousItem() = 0;
}; | [
"dkroell@acm.org"
] | dkroell@acm.org |
2478374b24405366ed41468510ae095bff0ca847 | b4c99a809f50c8891017ecf67086e7f951c8fad1 | /test/unittests/compiler/effect-control-linearizer-unittest.cc | cc697734a9872253e7cf43a1c681bf37c2de9f66 | [
"SunPro",
"BSD-3-Clause",
"bzip2-1.0.6"
] | permissive | haigiodhh/v8 | dc4bd4c5541aff7976235767d5ef65a945eaa294 | b8a06da63f9921488e562e88060e67df04921f42 | refs/heads/master | 2020-07-18T18:41:22.392598 | 2016-11-16T11:27:52 | 2016-11-16T11:28:43 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 14,311 | 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/effect-control-linearizer.h"
#include "src/compiler/access-builder.h"
#include "src/compiler/js-graph.h"
#include "src/compiler/l... | [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
0ebecbe165d900e38f1be7d3ae0976d09298c695 | 1911d6f70cbaaaedf0321ed66224edcb97ed5767 | /libccmyext/src/CCallFuncProxy.cpp | f5c7a98435e5f7737e63b60b12ed3dec9a86091c | [] | no_license | marszaya/huihe | bab451cde0c365defde50cbec2fffe6c8c5cfc0b | d1ac3b292ae588aea73a95cabf44f720c5f4437f | refs/heads/master | 2021-01-19T22:33:03.491040 | 2014-01-22T08:24:23 | 2014-01-22T08:24:23 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,278 | cpp | #include "CCallFuncProxy.h"
CCECallFuncProxy::CCECallFuncProxy(void)
{
m_saveCmd = -1;
}
CCECallFuncProxy::CCECallFuncProxy(int cmd, CCEMsgDispatcher* p)
{
initCCECallFuncProxy(cmd, p);
}
CCECallFuncProxy::~CCECallFuncProxy(void)
{
if(m_saveDispatcher)
m_saveDispatcher->release();
}
CCECallFuncProxy* CCECallFu... | [
"zaya@qq.com"
] | zaya@qq.com |
cb108fc3b6459afc3adfff36e2ef6b83ee63c254 | 5e007aa448d05ef39b1c7731a92be2075df09801 | /ProjectWar/GameUI.h | 2dfb25dd74981d0bb522c3610e80b2570d7615d1 | [] | no_license | AlvaroChambi/ProjectAI | 04a881047a1a7feabdd4850b09318c676e1686f1 | b5a31d358d91a071ac857afb0c18ce25eb985687 | refs/heads/develop | 2020-04-03T23:31:43.567379 | 2016-09-19T10:03:14 | 2016-09-19T10:03:14 | 32,091,207 | 2 | 0 | null | 2016-09-12T19:40:59 | 2015-03-12T17:29:49 | C++ | UTF-8 | C++ | false | false | 597 | h |
//
// GameUI.h
// ProjectWar
//
// Created by Alvaro Chambi Campos on 11/4/15.
// Copyright (c) 2015 Alvaro Chambi Campos. All rights reserved.
//
#ifndef __ProjectWar__GameUI__
#define __ProjectWar__GameUI__
#include <stdio.h>
#include "Layout.h"
#include "Text.h"
class GameUI : public Layout
{
public:
Gam... | [
"alvaro.chambi.campos@gmail.com"
] | alvaro.chambi.campos@gmail.com |
1b8f3a25c8c5d2964f98b77819d83d1a653fd099 | ea12fed4c32e9c7992956419eb3e2bace91f063a | /zombie/code/nebula2/src/gui/nguihorisliderboxed_main.cc | 9cc715fba8a8b0bb24098504c8b93d1f9d188079 | [] | no_license | ugozapad/TheZombieEngine | 832492930df28c28cd349673f79f3609b1fe7190 | 8e8c3e6225c2ed93e07287356def9fbdeacf3d6a | refs/heads/master | 2020-04-30T11:35:36.258363 | 2011-02-24T14:18:43 | 2011-02-24T14:18:43 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,355 | cc | #include "precompiled/pchngui.h"
//------------------------------------------------------------------------------
// nGuiHoriSliderBoxed_main.cc
// (C) 2004 RadonLabs GmbH
//------------------------------------------------------------------------------
#include "gui/nGuiHoriSliderBoxed.h"
#include "gui/nguiserv... | [
"magarcias@c1fa4281-9647-0410-8f2c-f027dd5e0a91"
] | magarcias@c1fa4281-9647-0410-8f2c-f027dd5e0a91 |
e4b5639b0c14e90d4379d03a8c8bf013177e9c60 | 515756675f130c5f7cf356fcb187104576bd4abf | /andEnginePhysicsBox2DExtension/src/main/jni/Box2D/Dynamics/b2ContactManager.cpp | fc6dedc0dd93482ddeff9e6187ffe09e4fb24b39 | [] | no_license | stephtelolahy/AndEngineDemo | 0a87e56b19d3113640ebef2abd1677001f56e7f4 | d8a492323479b77c6da80a393e39948bd77376c4 | refs/heads/master | 2020-12-26T03:01:21.121824 | 2014-10-29T18:52:08 | 2014-10-29T19:07:01 | 25,823,289 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 7,280 | cpp | /*
* Copyright (c) 2006-2009 Erin Catto http://www.box2d.org
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
* arising from the use of this software.
* Permission is granted to anyone to use this software for any purpos... | [
"stephano.telolahy@gmail.com"
] | stephano.telolahy@gmail.com |
82f7a11679decae696adba57519a089f1fb702f1 | 24de7d4e0be5dd3688dc2f968322ffff86d2b1f9 | /Lib.h | 236a92d751ba5937ff63b43d653e443380c7da34 | [] | no_license | john-smith/neural_network | a321faf66d25979779cf9ce4ecf5769d90488407 | 59b1c888f7f0c180c8893778837eda654134cf44 | refs/heads/master | 2020-05-19T10:52:09.329142 | 2014-02-23T11:59:26 | 2014-02-23T11:59:26 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 460 | h | #ifndef __LIB_H__
#define __LIB_H__
#ifndef NULL
#define NULL 0
#endif
#define RELEASE(x) { if((x)) { delete (x); (x) = NULL; }}
#define RELEASE_ARRAY(x) { if((x)) { delete [] (x); (x) = NULL; }}
class Lib {
static bool first;
public:
static double sigmoid(double input, double* alpha, int alphaSize);
... | [
"wakai.hirofumi@gmail.com"
] | wakai.hirofumi@gmail.com |
6c4d54ced1f34e4dd53c86c098691b0d388434e4 | 24cebd5d69d035044fb98a990525312cb9814bc1 | /library/utility/math/test/average_test.cpp | f1fe7fb575dd681f4a1d1e987d878aa7ffe93e09 | [
"Apache-2.0"
] | permissive | harmandersihra/SJSU-Dev2 | 0a66650649912ca5a2c4e710eab09321e1927be5 | d5e71dd4a4c4614a9806c7b45526b108e5b23cda | refs/heads/master | 2021-06-23T02:08:22.175064 | 2020-12-22T20:35:08 | 2020-12-22T21:25:25 | 173,637,542 | 0 | 0 | Apache-2.0 | 2019-03-03T22:26:49 | 2019-03-03T22:26:49 | null | UTF-8 | C++ | false | false | 2,099 | cpp | #include <cstdint>
#include "L4_Testing/testing_frameworks.hpp"
#include "utility/math/average.hpp"
namespace sjsu
{
#define APPROX_EQUALITY(expected, actual, resolution) \
CHECK(-resolution < (actual - expected)); \
CHECK((actual - expected) < resolution);
#define COMPILETIME_STATIC_ASSERT(expected, actual, res... | [
"kammcecorp@gmail.com"
] | kammcecorp@gmail.com |
f14b7784354714f61d41d614145d81b3bbb87e58 | 92636e2579e89b1a292358ab9d161b86beae0a21 | /src/ObjCylinder.h | 2438539382307ad2f8ace178034c2251bb383ed5 | [
"BSD-3-Clause"
] | permissive | khutchins/Naive-Raytracer | 2185214cebc544d88cef24c5481528621f2f16d1 | fcdb37a611ffecd54ed1aa39ca7e2fd8e190c16d | refs/heads/master | 2021-01-01T05:51:23.180092 | 2016-12-05T23:20:43 | 2016-12-05T23:20:43 | 2,922,851 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 439 | h | #ifndef _CYLINDER_H_
#define _CYLINDER_H_
#include "ObjContainerObject.h"
#include "VectorMath.h"
#include "StringProcessing.h"
#include "Point.h"
#include "Material.h"
#include "Diagnostic.h"
#include "ObjDisk.h"
#include "ObjTube.h"
#include <fstream>
#include <string>
#include <queue>
#include <cstdlib>
using name... | [
"possessedcow@gmail.com"
] | possessedcow@gmail.com |
c52d5250c38021aaf465a326b8ee2c7404bc5979 | 7896eb703cc63b3af0d52971853cd5ddae2e03f0 | /datatype/int256.h | 54e6ec22534f77de28aff5725a736e8ae1e91acc | [] | no_license | thiagotei/cudaSpmv | 98db5c2ea367b5f9ebd36a4d0484e27896e633eb | b67dd52a17e583431a86aa3e7afbfc9a238908a3 | refs/heads/master | 2021-05-25T08:39:26.428047 | 2018-06-08T01:22:07 | 2018-06-08T01:22:07 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,322 | h | #ifndef INT256
#define INT256
#include <fstream>
#include <iostream>
using namespace std;
class Int256
{
public:
ulong4 m;
__host__ __device__ Int256()
{
}
__host__ __device__ Int256( const int val )
{
*this = val;
}
__host__ __device_... | [
"danghvu@gmail.com"
] | danghvu@gmail.com |
94c46e8ada4e108147a67598d0aab4331ae13415 | c776476e9d06b3779d744641e758ac3a2c15cddc | /examples/litmus/c/run-scripts/tmp_5/Z6.0+dmb.ld+dmb.st+dmb.sy.c.cbmc.cpp | 995dd249dde68c4f9cdb2871fee0de51429939f6 | [] | no_license | ashutosh0gupta/llvm_bmc | aaac7961c723ba6f7ffd77a39559e0e52432eade | 0287c4fb180244e6b3c599a9902507f05c8a7234 | refs/heads/master | 2023-08-02T17:14:06.178723 | 2023-07-31T10:46:53 | 2023-07-31T10:46:53 | 143,100,825 | 3 | 4 | null | 2023-05-25T05:50:55 | 2018-08-01T03:47:00 | C++ | UTF-8 | C++ | false | false | 39,965 | cpp | // Global variabls:
// 4:atom_2_X2_0:1
// 0:vars:3
// 3:atom_1_X0_1:1
// Local global variabls:
// 0:thr0:1
// 1:thr1:1
// 2:thr2:1
#define ADDRSIZE 5
#define LOCALADDRSIZE 3
#define NTHREAD 4
#define NCONTEXT 5
#define ASSUME(stmt) __CPROVER_assume(stmt)
#define ASSERT(stmt) __CPROVER_assert(stmt, "error")
#define m... | [
"tuan-phong.ngo@it.uu.se"
] | tuan-phong.ngo@it.uu.se |
a171f2a9837f72e6efd80eadf98f3de1bd6258b5 | cac6a4d25ee7042e4a5e9e410a2b60f4b27798a1 | /tests/ParserTests.cpp | 8f1d56556eb96128bf96f2f027862d2cc3a63ae6 | [
"MIT"
] | permissive | kamilsan/lazy-interpreted-language | 0489c7fdc18205bfd72c42db1bf0944c0fc8d78d | 8c98da312cbbdd9e5173ba6ad324a5496fe86b83 | refs/heads/master | 2022-09-08T03:50:31.469439 | 2020-06-01T13:41:51 | 2020-06-01T13:41:51 | 268,524,867 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 27,705 | cpp | #include <gtest/gtest.h>
#include <sstream>
#include <functional>
#include "Parser.hpp"
#include "PrintVisitor.hpp"
void setupTest(const std::string& source, std::function<std::unique_ptr<Node>(Parser*)> function, std::unique_ptr<Node> expectedNode)
{
std::stringstream ss{source};
Parser parser{ss};
const auto ... | [
"k.przybyla@stud.elka.pw.edu.pl"
] | k.przybyla@stud.elka.pw.edu.pl |
bc93de7e5cfe3f6209703d882c79eaea7da1b22a | b98ab618a740a80f209c9274fc52720b28c88982 | /Files/Binary_Files.cpp | 1edcc8d7c69e7b65233def913b94072acba2076f | [] | no_license | QuintenBruynseraede/CPlusPlus | bc59e9e56424c893b0f876a6a4f65825fe597beb | 429959e56ffb5a38ac6cc2310b0748291877edef | refs/heads/master | 2020-11-30T06:22:27.721703 | 2020-06-10T12:29:40 | 2020-06-10T12:29:40 | 230,331,070 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,229 | cpp | #include <iostream>
#include <fstream>
using namespace std;
//Struct to write to file
//All members are public by default!
//Structs are padded for efficiency
//#pragma pack(push,1) disables this padding
//Struct is now aligned in chunks of 1 bytes
#pragma pack(push,1)
struct Person {
char name[50];
int age;
... | [
"quinten.bruynseraede@student.kuleuven.be"
] | quinten.bruynseraede@student.kuleuven.be |
9679a0aee58d0421c410eb66d11647579184b7e2 | db2a9571cda4541f72d65528e3bb538528a6838c | /src/input_old/scrollers/joystick_scroller.hpp | cafeba1ff73c8138a733d922f37179605d1976fb | [] | no_license | mornage/Maemo-pingus | 3b6545041e52adf687ed66caeda26a7768c14273 | 6bae291e9524c552745c67f2e944358e77ee4bcf | refs/heads/master | 2016-09-03T06:58:35.601709 | 2010-08-10T19:59:08 | 2010-08-10T19:59:08 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,783 | hpp | // $Id: joystick_scroller.hpp 2986 2007-08-17 16:20:09Z grumbel $
//
// Pingus - A free Lemmings clone
// Copyright (C) 2000 Ingo Ruhnke <grumbel@gmx.de>
//
// 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 S... | [
"neilkirk@hotmail.co.uk"
] | neilkirk@hotmail.co.uk |
f2268b07607132f719c79761b3935988d7356156 | ef76cdd5c65f937477297d86a06bad738a329521 | /lab 2/main.cpp | 6b56cbf503ab9f4d827d89e68ac9ac8cbbd3343d | [] | no_license | vasilypht/Parallel_programming_labs | 1f623c36a468d03a9b0f412420f0186e0d6b5af3 | 0298b2b7f736247c25817f42f03fe153a88dec84 | refs/heads/main | 2023-08-28T10:42:03.725600 | 2021-10-15T16:45:28 | 2021-10-15T16:45:28 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,184 | cpp | #include <iostream>
#include <vector>
#include <list>
#include <string>
#include <random>
#include <future>
using adj_list_t = std::vector<std::vector<uint32_t>>;
using path_list_t = std::list<std::vector<uint32_t>>;
path_list_t f_thread(const adj_list_t& graph, uint32_t cur_node, uint32_t begin_node, uint32_t end_... | [
"perekhrest-vasily@mail.ru"
] | perekhrest-vasily@mail.ru |
980c0fff12495ec8b9707cd1ccb27a60f8759c8e | 0341aa816190faa367c2b97fb016295142f34b49 | /tp1/signals/signal-handler/main.cpp | caf202dd9c2c85458eec38c08823d33bb3b015be | [] | no_license | PauloHMattos/distributed-systems | 2ce8cc58b64e049b6c57057d0b156d28010f1e31 | b094cdc0de9f2768231e3bc8b29d2cc8ef08f1b4 | refs/heads/main | 2023-08-18T14:29:04.575604 | 2021-10-13T02:14:19 | 2021-10-13T02:14:19 | 389,124,074 | 0 | 0 | null | 2021-10-13T02:14:20 | 2021-07-24T14:53:04 | C++ | UTF-8 | C++ | false | false | 1,305 | cpp | #include <signal.h>
#include <unistd.h>
#include <iostream>
using namespace std;
int received_signum = 0;
void signalHandler(int signum)
{
received_signum = signum;
}
void registerSignals()
{
signal(SIGINT, signalHandler);
signal(SIGUSR1, signalHandler);
signal(SIGUSR2, signalHandler);
}
int listen... | [
"gabriel.oliveira@cern.ch"
] | gabriel.oliveira@cern.ch |
f67f1c821d1a8f75b7a22e2139ef311ea18bb206 | b53795b88ab0201e48c5dc5737e97dfd27e07b22 | /extern/3rd_party/SpeedTreeRT4.1/Source/SourceCode/LibGlobals_Source/IdvGlobals.h | 02c9e917f066667a9d48a3ccaf11b11355f24068 | [] | no_license | davidkm2/globalmetin | 9cc63395974eb74b5784a1bf5e733622c7303aa4 | d1a21b549c68e311416544e03ca6218351e12d2f | refs/heads/main | 2023-05-27T08:10:08.506239 | 2021-05-24T01:57:37 | 2021-05-24T01:57:37 | 370,181,109 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,694 | h | ///////////////////////////////////////////////////////////////////////
// IdvGlobals.h
//
// *** INTERACTIVE DATA VISUALIZATION (IDV) CONFIDENTIAL AND PROPRIETARY INFORMATION ***
//
// This software is supplied under the terms of a license agreement or
// nondisclosure agreement with Interactive Data Visua... | [
"davidkm2012@gmail.com"
] | davidkm2012@gmail.com |
5c8aed0130f8d69a313b94403afc39a9c81b86d6 | ce039e744725692b430e6a84cc42aae2ee9db22a | /classskills.cpp | 9163d8fc2e09bd4b0f7f76f1e94cca68fe501521 | [] | no_license | fasa1964/fshkkap | adba0cd0e3ae5249833446d6d5c232835ded1ab6 | 2eacd2dfe1709f5073be2ef3f845a8328977b3c1 | refs/heads/master | 2023-02-17T09:11:30.723940 | 2021-01-20T05:52:05 | 2021-01-20T05:52:05 | 288,750,188 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,741 | cpp | #include "classskills.h"
ClassSkills::ClassSkills()
{
m_nr = 0;
m_name = "";
m_identifier = "";
m_wert = 0;
m_date = QDate();
m_evaluationType = CriteriaTypes::projectNode;
}
QString ClassSkills::name() const
{
return m_name;
}
void ClassSkills::setName(const QString &name)
{
m_name ... | [
"fasa@nb-saberi.ad.bbs-bassgeige.eu"
] | fasa@nb-saberi.ad.bbs-bassgeige.eu |
9e281757404494dd6496fd4b44359963ab44f05f | e561062002bf81e276deaae138992a551c506794 | /ConnectedComponents/ShiloachesVishkinOmp.cpp | 104777f312fc7e6b8d534008f770aee2f2fbebb2 | [] | no_license | SquareSpheres/CPU-parallel-algorithms | 19a2db75141768d84d1c41563c4904f483e564d1 | c30560747edaafce888da54d4f06e2ff9958d791 | refs/heads/master | 2021-09-08T15:17:30.436749 | 2018-03-10T15:36:02 | 2018-03-10T15:36:02 | 85,102,757 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,192 | cpp | #include "ShiloachesVishkinOmp.h"
std::vector<int> ShiloachVishkinOmp(std::pair<int, int> *graph, const int numVertices, const int numEdges)
{
std::vector<int> component(numVertices);
/************** Component vector init *************/
#pragma omp parallel for
for (int i = 0; i < numVertices; i++)
{
component[... | [
"yngvenot@gmail.com"
] | yngvenot@gmail.com |
5ea5ae117a1c34341511c2c120d87f5aba060d65 | 370881312084d8d2ce0f9c8dce147b81a3a9a923 | /Game_Code/Code/GameSDK/GameDll/PlayerStateLadder.cpp | b38353adff5465178dde22a0e78a93ec8596236b | [] | no_license | ShadowShell/QuestDrake | 3030c396cd691be96819eec0f0f376eb8c64ac89 | 9be472a977882df97612efb9c18404a5d43e76f5 | refs/heads/master | 2016-09-05T20:23:14.165400 | 2015-03-06T14:17:22 | 2015-03-06T14:17:22 | 31,463,818 | 3 | 2 | null | 2015-02-28T18:26:22 | 2015-02-28T13:45:52 | C++ | UTF-8 | C++ | false | false | 30,507 | cpp | #include "StdAfx.h"
#include "PlayerStateLadder.h"
#include "Player.h"
#include "PlayerAnimation.h"
#include "PlayerStateUtil.h"
#include "EntityUtility/EntityScriptCalls.h"
#include "Utility/CryWatch.h"
#include "PlayerStateEvents.h"
#include "Weapon.h"
#include "GameCVars.h"
#ifndef _RELEASE
#define LadderLog(...) ... | [
"cloudcodexmain@gmail.com"
] | cloudcodexmain@gmail.com |
a71e283bf4e0b7ac228c183ad05540d3e308a050 | 92c138c4395ac2c91633d831fecd1f0b1161351c | /网络通信/第一版C网络通信编程实用案例精选源代码/chap3/Neighbor/Neighbor.cpp | 68d18791459de0954b361ecff709fb692cd0bb53 | [] | no_license | netsill/web-Safety | dc771e20ddb28192e2264777924f161af4bf236f | 48d50a434c218d9099510b97cb3785bb80546dd4 | refs/heads/master | 2022-03-12T11:54:26.900908 | 2017-08-07T10:03:25 | 2017-08-07T10:03:25 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,017 | cpp | // Neighbor.cpp : Defines the class behaviors for the application.
//
#include "stdafx.h"
#include "Neighbor.h"
#include "NeighborDlg.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CNe... | [
"466217395@qq.com"
] | 466217395@qq.com |
4847e08334596aeba7ee9524840047774ee898ca | 703cc1b788895b98331f52dc6e87ac6ec1910e35 | /src/descriptor/countryavailabilitydescriptor.cpp | a91025a00cecc434810461f9476fc02186d0158d | [] | no_license | ioxuy/dvb_si_psi_parser | 1509942fb116ec23cb0ded94fffa24788864526b | 75f8fb87734ff6211e895356d4e1f8087c6fbf54 | refs/heads/master | 2021-06-04T22:13:06.628804 | 2016-09-08T05:17:47 | 2016-09-08T05:17:47 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,648 | cpp | /*
*Original Author: shko
*/
#include <countryavailabilitydescriptor.h>
CountryAvailabilityDescriptor::Country::Country(const std::string countryCode)
: countryCode(countryCode)
{
;
}
CountryAvailabilityDescriptor::Country::~Country(void)
{
;
}
std::string CountryAvailabilityDescriptor::Country::getCo... | [
"sh.ko@lge.com"
] | sh.ko@lge.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.