hexsha
stringlengths
40
40
size
int64
22
2.4M
ext
stringclasses
5 values
lang
stringclasses
1 value
max_stars_repo_path
stringlengths
3
260
max_stars_repo_name
stringlengths
5
109
max_stars_repo_head_hexsha
stringlengths
40
78
max_stars_repo_licenses
listlengths
1
9
max_stars_count
float64
1
191k
โŒ€
max_stars_repo_stars_event_min_datetime
stringlengths
24
24
โŒ€
max_stars_repo_stars_event_max_datetime
stringlengths
24
24
โŒ€
max_issues_repo_path
stringlengths
3
260
max_issues_repo_name
stringlengths
5
109
max_issues_repo_head_hexsha
stringlengths
40
78
max_issues_repo_licenses
listlengths
1
9
max_issues_count
float64
1
67k
โŒ€
max_issues_repo_issues_event_min_datetime
stringlengths
24
24
โŒ€
max_issues_repo_issues_event_max_datetime
stringlengths
24
24
โŒ€
max_forks_repo_path
stringlengths
3
260
max_forks_repo_name
stringlengths
5
109
max_forks_repo_head_hexsha
stringlengths
40
78
max_forks_repo_licenses
listlengths
1
9
max_forks_count
float64
1
105k
โŒ€
max_forks_repo_forks_event_min_datetime
stringlengths
24
24
โŒ€
max_forks_repo_forks_event_max_datetime
stringlengths
24
24
โŒ€
content
stringlengths
22
2.4M
avg_line_length
float64
5
169k
max_line_length
int64
5
786k
alphanum_fraction
float64
0.06
0.95
matches
listlengths
1
11
8d2cee49bbf4690fa669042cbdaffea6c190df0b
6,415
h
C
DoomEngine/DoomEngine/j1Enemy.h
thedoctormarc/DOOM_2D19
6678160975514dac3ff88908459903dfa597aafb
[ "MIT" ]
3
2019-07-24T13:00:14.000Z
2019-08-14T19:51:41.000Z
DoomEngine/DoomEngine/j1Enemy.h
TheDoctorMarc-Learning-Projects/DOOM_2D19
6678160975514dac3ff88908459903dfa597aafb
[ "MIT" ]
43
2019-06-27T18:06:40.000Z
2019-08-23T10:52:30.000Z
DoomEngine/DoomEngine/j1Enemy.h
thedoctormarc/DOOM_2D19
6678160975514dac3ff88908459903dfa597aafb
[ "MIT" ]
null
null
null
#ifndef _J1ENEMY_H__ #define _J1ENEMY_H__ #include "j1Entity.h" #include "j1EntityPlatform.h" #include <vector> enum class enemyPathType { ALL_ROUND, A_TO_B, FLYING }; enum class eCombatState { IDLE, SHOOT, STUN, DYING, DEAD }; enum class ePathState { FOLLOW_PLAYER, TEMPORAL_DEVIATION, AWAIT, }; enum c...
19.860681
156
0.703352
[ "render", "vector" ]
8d33f7bf06beae20a4024e3a1a2e991cf56f4be9
9,631
h
C
aws-cpp-sdk-kinesisanalyticsv2/include/aws/kinesisanalyticsv2/model/VpcConfigurationUpdate.h
Neusoft-Technology-Solutions/aws-sdk-cpp
88c041828b0dbee18a297c3cfe98c5ecd0706d0b
[ "Apache-2.0" ]
1
2022-02-12T08:09:30.000Z
2022-02-12T08:09:30.000Z
aws-cpp-sdk-kinesisanalyticsv2/include/aws/kinesisanalyticsv2/model/VpcConfigurationUpdate.h
Neusoft-Technology-Solutions/aws-sdk-cpp
88c041828b0dbee18a297c3cfe98c5ecd0706d0b
[ "Apache-2.0" ]
1
2022-01-03T23:59:37.000Z
2022-01-03T23:59:37.000Z
aws-cpp-sdk-kinesisanalyticsv2/include/aws/kinesisanalyticsv2/model/VpcConfigurationUpdate.h
ravindra-wagh/aws-sdk-cpp
7d5ff01b3c3b872f31ca98fb4ce868cd01e97696
[ "Apache-2.0" ]
1
2022-03-23T15:17:18.000Z
2022-03-23T15:17:18.000Z
๏ปฟ/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include <aws/kinesisanalyticsv2/KinesisAnalyticsV2_EXPORTS.h> #include <aws/core/utils/memory/stl/AWSString.h> #include <aws/core/utils/memory/stl/AWSVector.h> #include <utility> namesp...
42.804444
196
0.706157
[ "vector", "model" ]
8d37797f935631f4a8e1a6a9f7977f79db5291ee
2,742
h
C
hidato_solver.h
odobenuskr/HidatoGeneratorSolver
851a41e90cb721b9d18e2b811cd9543175c0b466
[ "MIT" ]
4
2018-11-06T10:34:24.000Z
2019-03-08T08:04:15.000Z
hidato_solver.h
Joonkkyo/Hidato-Puzzle-Generator-Solver-Verifier
b7944e6cb7f300b3d903c726d0e38ae6186b6a42
[ "MIT" ]
null
null
null
hidato_solver.h
Joonkkyo/Hidato-Puzzle-Generator-Solver-Verifier
b7944e6cb7f300b3d903c726d0e38ae6186b6a42
[ "MIT" ]
2
2018-11-06T14:32:24.000Z
2018-12-18T06:48:15.000Z
#ifndef _HIDATO_SOLVER_H_ #define _HIDATO_SOLVER_H_ #include <iostream> #include <vector> #include <iterator> #include <fstream> using namespace std; class Solver { // ํ•˜๋‚˜์˜ ์นธ์ด ๊ฐˆ ์ˆ˜ ์žˆ๋Š” 8๊ฐ€์ง€ ๊ฒฝ๋กœ(dx, dy) const int dx[8] = { -1, -1, -1, 0, 0, 1, 1, 1 }; const int dy[8] = { -1, 0, 1,-1, 1, 1, 0,-1 }; int row, col; int...
23.042017
79
0.538658
[ "vector" ]
8d3da135bc189a71bbd29043ddfda3f51a7fd082
31,215
h
C
mm-video-v4l2/vidc/venc/inc/omx_video_base.h
LOSMod/hardware_qcom_sm8150_media
709e5c2aeb6718e1829e96e24f6f5353603c4467
[ "Apache-2.0" ]
null
null
null
mm-video-v4l2/vidc/venc/inc/omx_video_base.h
LOSMod/hardware_qcom_sm8150_media
709e5c2aeb6718e1829e96e24f6f5353603c4467
[ "Apache-2.0" ]
null
null
null
mm-video-v4l2/vidc/venc/inc/omx_video_base.h
LOSMod/hardware_qcom_sm8150_media
709e5c2aeb6718e1829e96e24f6f5353603c4467
[ "Apache-2.0" ]
null
null
null
/*-------------------------------------------------------------------------- Copyright (c) 2010-2019, The Linux Foundation. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source...
38.824627
116
0.645587
[ "vector" ]
8d3e1c387499619010c4b8afcda2729bb431d460
4,963
h
C
lullaby/modules/animation_channels/transform_channels.h
jjzhang166/lullaby
d9b11ea811cb5869b46165b9b9537b6063c6cbae
[ "Apache-2.0" ]
null
null
null
lullaby/modules/animation_channels/transform_channels.h
jjzhang166/lullaby
d9b11ea811cb5869b46165b9b9537b6063c6cbae
[ "Apache-2.0" ]
null
null
null
lullaby/modules/animation_channels/transform_channels.h
jjzhang166/lullaby
d9b11ea811cb5869b46165b9b9537b6063c6cbae
[ "Apache-2.0" ]
null
null
null
/* Copyright 2017 Google 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 applicable law or agreed to in ...
30.262195
72
0.778158
[ "transform" ]
8d3fefaaef46eb55eb6bb7a3b050d5f0b21cf1cd
2,455
c
C
tools/emulator/util.c
leviathanch/NyuziProcessor
9d205e30c147dbf1736082bb33ba97ca2a843c17
[ "Apache-2.0" ]
2
2020-01-06T23:15:00.000Z
2021-05-19T18:41:35.000Z
tools/emulator/util.c
PhdBoLi/NyuziProcessor
a820fe884c055e87f13078d428c0585e8670b43e
[ "Apache-2.0" ]
null
null
null
tools/emulator/util.c
PhdBoLi/NyuziProcessor
a820fe884c055e87f13078d428c0585e8670b43e
[ "Apache-2.0" ]
null
null
null
// // Copyright 2011-2015 Jeff Bush // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed ...
26.117021
83
0.569043
[ "vector" ]
8d427a14558e7debc5b23a06531c9596ab16c283
4,278
h
C
src/xrCore/_obb.h
clayne/xray-16
32ebf81a252c7179e2824b2874f911a91e822ad1
[ "OML", "Linux-OpenIB" ]
2
2015-02-23T10:43:02.000Z
2015-06-11T14:45:08.000Z
src/xrCore/_obb.h
clayne/xray-16
32ebf81a252c7179e2824b2874f911a91e822ad1
[ "OML", "Linux-OpenIB" ]
17
2022-01-25T08:58:23.000Z
2022-03-28T17:18:28.000Z
src/xrCore/_obb.h
clayne/xray-16
32ebf81a252c7179e2824b2874f911a91e822ad1
[ "OML", "Linux-OpenIB" ]
1
2015-06-05T20:04:00.000Z
2015-06-05T20:04:00.000Z
#pragma once #ifndef FOBB_H #define FOBB_H #include "_matrix33.h" template <class T> struct _obb { public: typedef _obb<T> Self; typedef Self& SelfRef; typedef const Self& SelfCRef; typedef _vector3<T> Tvector; typedef _matrix<T> Tmatrix; protected: static bool clip(T fDenom, T fNumer, T& rfT0...
26.085366
111
0.504909
[ "transform" ]
8d4de9ec6e65836c37f16c524901263f7fa4d0aa
1,605
h
C
app/muestrasapp/models/muestra.h
josergdev/practica-muestras
4074dfc4b9db7a4a25db8e05d81251b34d20ce42
[ "MIT" ]
null
null
null
app/muestrasapp/models/muestra.h
josergdev/practica-muestras
4074dfc4b9db7a4a25db8e05d81251b34d20ce42
[ "MIT" ]
null
null
null
app/muestrasapp/models/muestra.h
josergdev/practica-muestras
4074dfc4b9db7a4a25db8e05d81251b34d20ce42
[ "MIT" ]
null
null
null
#ifndef MUESTRA_H #define MUESTRA_H #include <QStringList> #include <QDateTime> #include <QVariant> #include <QSharedDataPointer> #include <TGlobal> #include <TAbstractModel> class TModelObject; class MuestraObject; class QJsonArray; class T_MODEL_EXPORT Muestra : public TAbstractModel { public: Muestra(); ...
27.672414
92
0.723364
[ "object", "model" ]
8d51925bb5ff39038ba132501eb8af472f98d2de
1,077
h
C
StRoot/StiIst/StiIstDetectorBuilder.h
xiaohaijin/RHIC-STAR
a305cb0a6ac15c8165bd8f0d074d7075d5e58752
[ "MIT" ]
2
2018-12-24T19:37:00.000Z
2022-02-28T06:57:20.000Z
StRoot/StiIst/StiIstDetectorBuilder.h
xiaohaijin/RHIC-STAR
a305cb0a6ac15c8165bd8f0d074d7075d5e58752
[ "MIT" ]
null
null
null
StRoot/StiIst/StiIstDetectorBuilder.h
xiaohaijin/RHIC-STAR
a305cb0a6ac15c8165bd8f0d074d7075d5e58752
[ "MIT" ]
null
null
null
#ifndef StiIstDetectorBuilder_h #define StiIstDetectorBuilder_h #include "TGeoMatrix.h" #include "TVector3.h" #include "Sti/StiDetectorBuilder.h" class StIstDb; class StiDetector; class StiIsActiveFunctor; class StiShape; class StiPlacement; class StiMaterial; /** * This detector builder is responsible for constr...
23.933333
79
0.766017
[ "geometry" ]
8d5e194f4e60a6b0b57a180f9bcf2cee5b73cd1c
2,166
h
C
src/Examples/JumpPoints/JumpPointsSwitcher.h
eegeo/cardboard-vr-integration
3f0c3d0f1b7ddaa6b2ef980e46ead71c8a85a260
[ "BSD-2-Clause" ]
8
2017-07-02T01:14:29.000Z
2021-06-19T07:14:38.000Z
src/Examples/JumpPoints/JumpPointsSwitcher.h
eegeo/cardboard-vr-demo
3f0c3d0f1b7ddaa6b2ef980e46ead71c8a85a260
[ "BSD-2-Clause" ]
null
null
null
src/Examples/JumpPoints/JumpPointsSwitcher.h
eegeo/cardboard-vr-demo
3f0c3d0f1b7ddaa6b2ef980e46ead71c8a85a260
[ "BSD-2-Clause" ]
5
2018-02-07T07:43:51.000Z
2020-01-24T12:29:25.000Z
// Copyright eeGeo Ltd (2012-2015), All Rights Reserved #pragma once #include <vector> #include <map> #include "ICallback.h" #include "Types.h" #include "JumpPoint.h" #include "JumpPointRepository.h" #include "IInteriorsExplorerModule.h" namespace Examples { typedef std::vector<Eegeo::UI::JumpPoints::JumpPoint*...
36.1
137
0.732225
[ "vector" ]
8d6e5d4ec695f8fd5e045e5f0aff19a4d37d810e
4,490
h
C
tsMuxer/vod_common.h
lanvas2008/tsMuxer
5595e15338df932d58ffa2ba59f2fbdeb65e5d55
[ "Apache-2.0" ]
null
null
null
tsMuxer/vod_common.h
lanvas2008/tsMuxer
5595e15338df932d58ffa2ba59f2fbdeb65e5d55
[ "Apache-2.0" ]
null
null
null
tsMuxer/vod_common.h
lanvas2008/tsMuxer
5595e15338df932d58ffa2ba59f2fbdeb65e5d55
[ "Apache-2.0" ]
null
null
null
#ifndef __VOD_COMMON_H #define __VOD_COMMON_H #include <types/types.h> #include <string> #include <vector> #include <iostream> #include <thread> #include <chrono> #if 1 extern bool sLastMsg; #define LTRACE(level, errIndex, msg) \ {\ if (errIndex & 2) { \ if (level <= LT_WARN) std::cerr << msg << std...
30.544218
120
0.67461
[ "vector" ]
8d6fc5cf075102408e9eb56605833063fd3861d9
5,975
h
C
cocos2d-x-2.2/extensions/CocoStudio/Armature/utils/CCArmatureDataManager.h
centrallydecentralized/ufo
29e8f9ce4ce92635ed22f8a051c917cfe6e0313d
[ "BSD-3-Clause" ]
58
2015-01-05T04:40:48.000Z
2021-12-17T06:01:28.000Z
cocos2d-x-2.2/extensions/CocoStudio/Armature/utils/CCArmatureDataManager.h
centrallydecentralized/ufo
29e8f9ce4ce92635ed22f8a051c917cfe6e0313d
[ "BSD-3-Clause" ]
4
2021-04-29T06:20:51.000Z
2021-04-29T15:20:13.000Z
cocos2d-x-2.2/extensions/CocoStudio/Armature/utils/CCArmatureDataManager.h
centrallydecentralized/ufo
29e8f9ce4ce92635ed22f8a051c917cfe6e0313d
[ "BSD-3-Clause" ]
46
2015-01-03T06:20:54.000Z
2020-04-18T13:32:52.000Z
/**************************************************************************** Copyright (c) 2013 cocos2d-x.org http://www.cocos2d-x.org Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without res...
29.289216
149
0.673975
[ "vector" ]
8d78677e94b1abe2af59e73ba49a37546d90d0c6
916
c
C
karman/Antoonvh/taa.c
MNegus/fluid-art
47721e59c3b8e8db562133888571cb17c568eaf6
[ "Apache-2.0" ]
null
null
null
karman/Antoonvh/taa.c
MNegus/fluid-art
47721e59c3b8e8db562133888571cb17c568eaf6
[ "Apache-2.0" ]
null
null
null
karman/Antoonvh/taa.c
MNegus/fluid-art
47721e59c3b8e8db562133888571cb17c568eaf6
[ "Apache-2.0" ]
null
null
null
/** # An `ascii`-art example Have a look at [the output stream](taa/out). This move is generated for addional context: ![A dipole-wall collision](taa/vor.mp4) */ #include "navier-stokes/centered.h" #include "ascii-art.h" double Re = 2500; u.t[bottom] = dirichlet (0); int main() { L0 = 15; X0 = Y0 = -L0/2; ...
16.962963
57
0.546943
[ "vector" ]
8d7d73231543c70b67913fdf735c1a16cc6170b1
15,369
h
C
mojo/public/cpp/bindings/receiver_set.h
mghgroup/Glide-Browser
6a4c1eaa6632ec55014fee87781c6bbbb92a2af5
[ "BSD-3-Clause-No-Nuclear-License-2014", "BSD-3-Clause" ]
null
null
null
mojo/public/cpp/bindings/receiver_set.h
mghgroup/Glide-Browser
6a4c1eaa6632ec55014fee87781c6bbbb92a2af5
[ "BSD-3-Clause-No-Nuclear-License-2014", "BSD-3-Clause" ]
null
null
null
mojo/public/cpp/bindings/receiver_set.h
mghgroup/Glide-Browser
6a4c1eaa6632ec55014fee87781c6bbbb92a2af5
[ "BSD-3-Clause-No-Nuclear-License-2014", "BSD-3-Clause" ]
2
2021-01-05T23:43:46.000Z
2021-01-07T23:36:34.000Z
// Copyright 2019 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef MOJO_PUBLIC_CPP_BINDINGS_RECEIVER_SET_H_ #define MOJO_PUBLIC_CPP_BINDINGS_RECEIVER_SET_H_ #include <map> #include <memory> #include <string> #inc...
38.042079
80
0.713319
[ "vector" ]
8d860d316d9f265b4a4e0696336bcd6a7e14536e
1,800
c
C
modules/ml/liblinear.c
gaojian1456/go-dpi
d1bfcc8e81285255ac2746f398ade2832f3e49ba
[ "MIT" ]
162
2017-07-03T18:04:48.000Z
2022-03-31T17:12:03.000Z
modules/ml/liblinear.c
5up3rc/go-dpi
47090260f170bc8382c4d77c6dbdbf67fffd2087
[ "MIT" ]
62
2017-05-31T09:12:12.000Z
2021-05-02T06:50:59.000Z
modules/ml/liblinear.c
5up3rc/go-dpi
47090260f170bc8382c4d77c6dbdbf67fffd2087
[ "MIT" ]
53
2017-05-29T08:21:37.000Z
2022-03-22T06:20:00.000Z
#include <stdio.h> #include <stdlib.h> #include <linear.h> extern int predict_2grams(struct model *_model, int *indexes, float *values, int no_grams, float *confidence) { int n, i, j; double predict_label; double *probabilities; int nr_class = get_nr_class(_model); int nr_feature = get_nr_feature(_...
25.352113
111
0.583889
[ "model" ]
8d8f26e01aac0cc6091cb9646779ef120a3e1756
3,215
h
C
applications/ShapeOptimizationApplication/custom_utilities/response_functions/face_angle_response_function_utility.h
clazaro/Kratos
b947b82c90dfcbf13d60511427f85990d36b90be
[ "BSD-4-Clause" ]
2
2020-12-22T11:50:11.000Z
2021-09-15T11:36:30.000Z
applications/ShapeOptimizationApplication/custom_utilities/response_functions/face_angle_response_function_utility.h
clazaro/Kratos
b947b82c90dfcbf13d60511427f85990d36b90be
[ "BSD-4-Clause" ]
3
2021-08-18T16:12:20.000Z
2021-09-02T07:36:15.000Z
applications/ShapeOptimizationApplication/custom_utilities/response_functions/face_angle_response_function_utility.h
clazaro/Kratos
b947b82c90dfcbf13d60511427f85990d36b90be
[ "BSD-4-Clause" ]
1
2017-05-02T00:52:44.000Z
2017-05-02T00:52:44.000Z
// ============================================================================== // KratosShapeOptimizationApplication // // License: BSD License // license: ShapeOptimizationApplication/license.txt // // Main authors: Geiser Armin, https://github.com/armingeiser // // =================...
20.876623
86
0.501089
[ "object" ]
8d9c35acbd7e6955a051456920ee623585fba07e
1,064
c
C
msp430/msp430_hello_world_led_interrupts.c
zbigg/sandbox
bd5fe661907756bdc085a16a222a5727875fcfbe
[ "BSD-3-Clause" ]
null
null
null
msp430/msp430_hello_world_led_interrupts.c
zbigg/sandbox
bd5fe661907756bdc085a16a222a5727875fcfbe
[ "BSD-3-Clause" ]
2
2019-12-16T10:23:27.000Z
2019-12-16T10:44:29.000Z
msp430/msp430_hello_world_led_interrupts.c
zbigg/sandbox
bd5fe661907756bdc085a16a222a5727875fcfbe
[ "BSD-3-Clause" ]
null
null
null
#include <msp430.h> #define LED_0 BIT0 #define LED_1 BIT6 #define LED_OUT P1OUT #define LED_DIR P1DIR unsigned int timerCount = 0; void main(void) { WDTCTL = WDTPW + WDTHOLD; // Stop watchdog timer LED_DIR |= (LED_0 + LED_1); // Set P1.0 and P1.6 to output direction LED_OUT &= ~(LED_0 + LED_1); // Set ...
23.644444
72
0.656955
[ "vector" ]
e451db32e92a6ecb05e1e61716a116bcfc8afbac
7,802
c
C
kernel_dvfs/linux-linaro-tracking-gem5/drivers/gpu/drm/nouveau/core/engine/graph/nv30.c
lokeshjindal15/pd-gem5_transformer
f8eb40dc65a5d7e15c8aa0756b1b48dd104bd54f
[ "BSD-3-Clause" ]
55
2019-12-20T03:25:14.000Z
2022-01-16T07:19:47.000Z
kernel_dvfs/linux-linaro-tracking-gem5/drivers/gpu/drm/nouveau/core/engine/graph/nv30.c
lokeshjindal15/pd-gem5_transformer
f8eb40dc65a5d7e15c8aa0756b1b48dd104bd54f
[ "BSD-3-Clause" ]
2
2020-11-02T08:01:00.000Z
2022-03-27T02:59:18.000Z
kernel_dvfs/linux-linaro-tracking-gem5/drivers/gpu/drm/nouveau/core/engine/graph/nv30.c
lokeshjindal15/pd-gem5_transformer
f8eb40dc65a5d7e15c8aa0756b1b48dd104bd54f
[ "BSD-3-Clause" ]
11
2020-08-06T03:59:45.000Z
2022-02-25T02:31:59.000Z
#include <core/os.h> #include <core/class.h> #include <core/engctx.h> #include <core/enum.h> #include <subdev/timer.h> #include <subdev/fb.h> #include <engine/graph.h> #include "nv20.h" #include "regs.h" /******************************************************************************* * Graphics object classes ***...
32.644351
80
0.663548
[ "object" ]
e452c8e101e3378766f2e10bb5d319a3106bbd33
5,558
h
C
src/gfx-pbr/Light.h
alecnunn/mud
9e204e2dc65f4a8ab52da3d11e6a261ff279d353
[ "Zlib" ]
1
2019-03-28T20:45:32.000Z
2019-03-28T20:45:32.000Z
src/gfx-pbr/Light.h
alecnunn/mud
9e204e2dc65f4a8ab52da3d11e6a261ff279d353
[ "Zlib" ]
null
null
null
src/gfx-pbr/Light.h
alecnunn/mud
9e204e2dc65f4a8ab52da3d11e6a261ff279d353
[ "Zlib" ]
null
null
null
#pragma once #ifndef MUD_MODULES #include <gfx/Renderer.h> #include <gfx/Light.h> #endif #include <gfx-pbr/Forward.h> #ifndef MUD_CPP_20 #include <vector> #endif namespace mud { enum ShaderOptionLight : unsigned int { FOG, DIRECT_LIGHT }; template <uint16_t num_lights, uint16_t num_direct = 1> struct Lig...
34.521739
130
0.758906
[ "render", "vector" ]
e456bab90a0344c92f21c89f538951dec354c162
6,159
h
C
ProcessLib/BoundaryCondition/ConstraintDirichletBoundaryConditionLocalAssembler.h
fwitte/ogs
0b367872fc58ecd4e1dbfe1dcebbc847da6639d7
[ "BSD-3-Clause" ]
1
2019-10-24T02:38:44.000Z
2019-10-24T02:38:44.000Z
ProcessLib/BoundaryCondition/ConstraintDirichletBoundaryConditionLocalAssembler.h
fwitte/ogs
0b367872fc58ecd4e1dbfe1dcebbc847da6639d7
[ "BSD-3-Clause" ]
null
null
null
ProcessLib/BoundaryCondition/ConstraintDirichletBoundaryConditionLocalAssembler.h
fwitte/ogs
0b367872fc58ecd4e1dbfe1dcebbc847da6639d7
[ "BSD-3-Clause" ]
1
2021-04-08T08:14:08.000Z
2021-04-08T08:14:08.000Z
/** * \file * \copyright * Copyright (c) 2012-2020, OpenGeoSys Community (http://www.opengeosys.org) * Distributed under a Modified BSD License. * See accompanying file LICENSE.txt or * http://www.opengeosys.org/project/license * */ #pragma once #include "MeshLib/Elements/...
39.480769
79
0.66277
[ "mesh", "shape", "vector" ]
e45b4aeeed6f745fb0d396dfe1817bb6468470d7
4,458
c
C
packages/PIPS/validation/Scilab/COLD-1.0.5.sub/t252.c
DVSR1966/par4all
86b33ca9da736e832b568c5637a2381f360f1996
[ "MIT" ]
51
2015-01-31T01:51:39.000Z
2022-02-18T02:01:50.000Z
packages/PIPS/validation/Scilab/COLD-1.0.5.sub/t252.c
DVSR1966/par4all
86b33ca9da736e832b568c5637a2381f360f1996
[ "MIT" ]
7
2017-05-29T09:29:00.000Z
2019-03-11T16:01:39.000Z
packages/PIPS/validation/Scilab/COLD-1.0.5.sub/t252.c
DVSR1966/par4all
86b33ca9da736e832b568c5637a2381f360f1996
[ "MIT" ]
12
2015-03-26T08:05:38.000Z
2022-02-18T02:01:51.000Z
/* * (c) HPC Project - 2010-2011 - All rights reserved * */ #include "scilab_rt.h" int __lv0; int __lv1; int __lv2; int __lv3; /*----------------------------------------------------*/ /*----------------------------------------------------*/ int main(int argc, char* argv[]) { scilab_rt_init(argc, argv, COLD_...
31.174825
61
0.662853
[ "3d" ]
e45bf873c5048fc4c99d29dd92bee4d934f2c555
672,187
c
C
Application/src/main/cpp/usb3.c
smkang99/android-Camera2Basic-master
ef51916d5d2685f4235a4207be4c6d1ba06d8cf1
[ "Apache-2.0" ]
null
null
null
Application/src/main/cpp/usb3.c
smkang99/android-Camera2Basic-master
ef51916d5d2685f4235a4207be4c6d1ba06d8cf1
[ "Apache-2.0" ]
null
null
null
Application/src/main/cpp/usb3.c
smkang99/android-Camera2Basic-master
ef51916d5d2685f4235a4207be4c6d1ba06d8cf1
[ "Apache-2.0" ]
null
null
null
// // Created by 1000308297 on 7/5/2017. // #include <string.h> #include <stdio.h> #include <stdlib.h> #include <android/log.h> #include <android/bitmap.h> #include <jni.h> #include <sys/mman.h> #include <sys/stat.h> #include <fcntl.h> #include <unistd.h> #include <pthread.h> #include <sched.h> #include <errno.h> #in...
33.875271
124
0.505691
[ "render", "object", "vector", "model" ]
e46a7b49281122531d4811b3d75ce8327cc04662
1,898
h
C
src/public/split.h
vpon/log2esd
c95634d3d98fca7da16095fe78b37d2fe99b19a4
[ "Apache-2.0" ]
3
2015-01-09T06:53:12.000Z
2015-06-11T00:34:37.000Z
src/public/split.h
vpon/log2esd
c95634d3d98fca7da16095fe78b37d2fe99b19a4
[ "Apache-2.0" ]
null
null
null
src/public/split.h
vpon/log2esd
c95634d3d98fca7da16095fe78b37d2fe99b19a4
[ "Apache-2.0" ]
null
null
null
/* ================================================================================================== # Copyright 2014 vpon, Inc. # -------------------------------------------------------------------------------------------------- # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this ...
29.2
103
0.528978
[ "vector" ]
e47e663c35870bba1d652f26a44451911043e75f
19,462
c
C
pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis6326_state.c
manggoguy/parsec-modified
d14edfb62795805c84a4280d67b50cca175b95af
[ "BSD-3-Clause" ]
64
2015-03-06T00:30:56.000Z
2022-03-24T13:26:53.000Z
pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis6326_state.c
manggoguy/parsec-modified
d14edfb62795805c84a4280d67b50cca175b95af
[ "BSD-3-Clause" ]
12
2020-12-15T08:30:19.000Z
2022-03-13T03:54:24.000Z
pkgs/libs/mesa/src/src/mesa/drivers/dri/sis/sis6326_state.c
manggoguy/parsec-modified
d14edfb62795805c84a4280d67b50cca175b95af
[ "BSD-3-Clause" ]
40
2015-02-26T15:31:16.000Z
2022-03-03T23:23:37.000Z
/* * Copyright 2005 Eric Anholt * All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, mo...
26.371274
80
0.637499
[ "render" ]
e488e320bd19af710d6c0d7455408af57d1f968e
57,754
c
C
subversion/libsvn_repos/reporter.c
jmckaskill/subversion
b127ca427ed0ff175258f0b3e53485fc7652b7a0
[ "Apache-2.0" ]
1
2022-03-07T11:20:02.000Z
2022-03-07T11:20:02.000Z
subversion/libsvn_repos/reporter.c
jmckaskill/subversion
b127ca427ed0ff175258f0b3e53485fc7652b7a0
[ "Apache-2.0" ]
null
null
null
subversion/libsvn_repos/reporter.c
jmckaskill/subversion
b127ca427ed0ff175258f0b3e53485fc7652b7a0
[ "Apache-2.0" ]
6
2015-10-24T06:23:10.000Z
2022-03-07T11:25:05.000Z
/* * reporter.c : `reporter' vtable routines for updates. * * ==================================================================== * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional inform...
38.096306
81
0.611005
[ "object", "transform" ]
e491b27d350bb87e7997f0153a98d0f8e1e495b6
784
h
C
Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/Translation.h
BreakerOfThings/o3de
f4c59f868c726470ec910623facd836047d059c3
[ "Apache-2.0", "MIT" ]
null
null
null
Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/Translation.h
BreakerOfThings/o3de
f4c59f868c726470ec910623facd836047d059c3
[ "Apache-2.0", "MIT" ]
null
null
null
Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/Translation.h
BreakerOfThings/o3de
f4c59f868c726470ec910623facd836047d059c3
[ "Apache-2.0", "MIT" ]
null
null
null
/* * Copyright (c) Contributors to the Open 3D Engine Project. * For complete copyright and license terms please see the LICENSE at the root of this distribution. * * SPDX-License-Identifier: Apache-2.0 OR MIT * */ #pragma once #include <AzCore/Outcome/Outcome.h> #include <AzCore/std/string/string.h> #include ...
24.5
115
0.720663
[ "3d" ]
e494b8ac1adf8bff6e46abb587879eb51bc615b0
4,246
h
C
tuplex/core/include/logical/FileOutputOperator.h
ms705/tuplex
c395041934768e51952c4fa783775b810b2fdec8
[ "Apache-2.0" ]
null
null
null
tuplex/core/include/logical/FileOutputOperator.h
ms705/tuplex
c395041934768e51952c4fa783775b810b2fdec8
[ "Apache-2.0" ]
null
null
null
tuplex/core/include/logical/FileOutputOperator.h
ms705/tuplex
c395041934768e51952c4fa783775b810b2fdec8
[ "Apache-2.0" ]
null
null
null
//--------------------------------------------------------------------------------------------------------------------// // // // Tuplex: Blazing Fast Python Data Scien...
45.170213
120
0.480923
[ "vector" ]
e4952b8486eea989c4510733d7f3a137abb81c6c
20,437
c
C
src/completion/completion.c
sarthak-chakraborty/rrals
651e4cc8cbc7a0e730d46e965934b6c94be14023
[ "MIT" ]
null
null
null
src/completion/completion.c
sarthak-chakraborty/rrals
651e4cc8cbc7a0e730d46e965934b6c94be14023
[ "MIT" ]
null
null
null
src/completion/completion.c
sarthak-chakraborty/rrals
651e4cc8cbc7a0e730d46e965934b6c94be14023
[ "MIT" ]
null
null
null
/****************************************************************************** * INCLUDES *****************************************************************************/ #include "completion.h" #include "../io.h" #include "../util.h" #include <math.h> #include <omp.h> /******************************************...
25.739295
111
0.610217
[ "model" ]
e49f00f8e6462c1d3834801b0977135be985f1e8
7,006
c
C
lib/Board.X/Board.c
sa-y-an/open-source-autonomous-vehicle-controller
0cc415fb141d1b66ac45a7bf6b50add6814728fb
[ "MIT" ]
3
2021-06-15T05:10:00.000Z
2021-09-05T18:07:01.000Z
lib/Board.X/Board.c
sa-y-an/open-source-autonomous-vehicle-controller
0cc415fb141d1b66ac45a7bf6b50add6814728fb
[ "MIT" ]
1
2021-06-07T21:05:14.000Z
2021-06-07T21:05:14.000Z
lib/Board.X/Board.c
sa-y-an/open-source-autonomous-vehicle-controller
0cc415fb141d1b66ac45a7bf6b50add6814728fb
[ "MIT" ]
9
2021-06-10T08:42:53.000Z
2022-03-28T05:46:16.000Z
/* * File: Board.c * Author: Aaron Hunter * Brief: Sets up the microprocessor with the correct timing and vectored int * Created on 11/09/2020 * Modified on 11/10/2020 */ /******************************************************************************* * CPU Configuration ...
41.952096
118
0.530545
[ "vector" ]
e4a00eece587eef0b01ad7dd5f060bc8613724a2
76,461
c
C
src/library/blas/gens/syrxk.c
jslhs/clBLAS
0e2ddf3cefcca30f21f5200607c326f31aa7759a
[ "Apache-2.0" ]
1
2015-11-08T06:56:50.000Z
2015-11-08T06:56:50.000Z
src/library/blas/gens/syrxk.c
jslhs/clBLAS
0e2ddf3cefcca30f21f5200607c326f31aa7759a
[ "Apache-2.0" ]
null
null
null
src/library/blas/gens/syrxk.c
jslhs/clBLAS
0e2ddf3cefcca30f21f5200607c326f31aa7759a
[ "Apache-2.0" ]
null
null
null
/* ************************************************************************ * Copyright 2013 Advanced Micro Devices, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www...
29.46474
85
0.507527
[ "shape", "vector" ]
e4a19b4a858c9f2675539340ab3c6d121098843c
13,867
h
C
XivAlexander/App_ConfigRepository.h
retaker/XivAlexander
03b64118500c3e6e7c3a035af473ef2bd0303bff
[ "Apache-2.0" ]
1
2021-12-05T02:30:45.000Z
2021-12-05T02:30:45.000Z
XivAlexander/App_ConfigRepository.h
retaker/XivAlexander
03b64118500c3e6e7c3a035af473ef2bd0303bff
[ "Apache-2.0" ]
null
null
null
XivAlexander/App_ConfigRepository.h
retaker/XivAlexander
03b64118500c3e6e7c3a035af473ef2bd0303bff
[ "Apache-2.0" ]
null
null
null
#pragma once #include <XivAlexanderCommon/Sqex.h> #include <XivAlexanderCommon/Utils_ListenerManager.h> namespace App { namespace Misc { class Logger; } enum class Language { SystemDefault, English, Korean, Japanese, }; enum class HighLatencyMitigationMode { SubtractLatency, SimulateRtt, Simula...
40.785294
216
0.747097
[ "vector" ]
e4a316aacd1e49e349d9418a33be4dbdf44d2dfb
7,888
c
C
3rd_party_programs/exonerate-2.2.0/src/model/ungapped.c
b-brankovics/grabb
4ea7081305489b59b5fe94ce9f93f358851931ca
[ "MIT" ]
12
2015-10-29T15:55:02.000Z
2021-09-10T05:17:16.000Z
3rd_party_programs/exonerate-2.2.0/src/model/ungapped.c
b-brankovics/grabb
4ea7081305489b59b5fe94ce9f93f358851931ca
[ "MIT" ]
3
2017-01-13T12:03:29.000Z
2018-10-05T15:02:45.000Z
3rd_party_programs/exonerate-2.2.0/src/model/ungapped.c
b-brankovics/grabb
4ea7081305489b59b5fe94ce9f93f358851931ca
[ "MIT" ]
7
2017-02-17T21:11:10.000Z
2021-04-08T21:06:56.000Z
/****************************************************************\ * * * Module for various ungapped alignment models * * * * Guy St.C. Slater.. mailto:guy@ebi.ac.uk ...
39.44
72
0.544878
[ "model" ]
e4a88f2ffb406a0e136037008a0dbc35588507ed
2,785
h
C
src_native/sspi_impl.h
vachirkov/sspi-client
3456fe71ae003a7196891d08fbf6b1f0256b8477
[ "MIT" ]
null
null
null
src_native/sspi_impl.h
vachirkov/sspi-client
3456fe71ae003a7196891d08fbf6b1f0256b8477
[ "MIT" ]
null
null
null
src_native/sspi_impl.h
vachirkov/sspi-client
3456fe71ae003a7196891d08fbf6b1f0256b8477
[ "MIT" ]
null
null
null
#pragma once #define SECURITY_WIN32 #include <memory> #include <Windows.h> #include <Sspi.h> #include <string> #include <vector> // This class has the core SSPI client implementation. This has no dependencies on // V8 or libuv. All code in this class runs in the worker threads. It's upto the // caller to ensure thre...
30.271739
88
0.70377
[ "vector" ]
e4aaf31b0dd25e14bf4c1002f454e92dec7ec3c9
2,705
h
C
arc/network/arc_ip_config.h
emersion/chromiumos-platform2
ba71ad06f7ba52e922c647a8915ff852b2d4ebbd
[ "BSD-3-Clause" ]
5
2019-01-19T15:38:48.000Z
2021-10-06T03:59:46.000Z
arc/network/arc_ip_config.h
emersion/chromiumos-platform2
ba71ad06f7ba52e922c647a8915ff852b2d4ebbd
[ "BSD-3-Clause" ]
null
null
null
arc/network/arc_ip_config.h
emersion/chromiumos-platform2
ba71ad06f7ba52e922c647a8915ff852b2d4ebbd
[ "BSD-3-Clause" ]
1
2019-02-15T23:05:30.000Z
2019-02-15T23:05:30.000Z
// Copyright 2016 The Chromium OS 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 ARC_NETWORK_ARC_IP_CONFIG_H_ #define ARC_NETWORK_ARC_IP_CONFIG_H_ #include <netinet/in.h> #include <sys/socket.h> #include <memory> #include ...
31.091954
80
0.720518
[ "vector" ]
a512843f651e18f8e7edd5d37f4d9a16a689b59a
1,830
h
C
pizjuce/midiChords/JuceLibraryCode/modules/juce_events/native/juce_ScopedXLock.h
nonameentername/pizmidi
a985e3d2bf8f02e3c0a87300dfbb82c35608bbd2
[ "BSD-Source-Code" ]
32
2020-04-17T22:48:53.000Z
2021-06-15T13:13:28.000Z
pizjuce/midiChords/JuceLibraryCode/modules/juce_events/native/juce_ScopedXLock.h
nonameentername/pizmidi
a985e3d2bf8f02e3c0a87300dfbb82c35608bbd2
[ "BSD-Source-Code" ]
null
null
null
pizjuce/midiChords/JuceLibraryCode/modules/juce_events/native/juce_ScopedXLock.h
nonameentername/pizmidi
a985e3d2bf8f02e3c0a87300dfbb82c35608bbd2
[ "BSD-Source-Code" ]
14
2015-09-12T12:00:22.000Z
2022-03-08T22:24:24.000Z
/* ============================================================================== This file is part of the JUCE library - "Jules' Utility Class Extensions" Copyright 2004-11 by Raw Material Software Ltd. ------------------------------------------------------------------------------ JUCE can be redistrib...
35.192308
80
0.578142
[ "object" ]
a516e4e79007713d342f3669f4de3afc31e151ab
5,445
h
C
addon/bluetooth/gatt_client.h
duydatpham/artik-sdk-js
a2b13a4cf75db5fb827ea66d52ac5639ac815872
[ "Apache-2.0" ]
null
null
null
addon/bluetooth/gatt_client.h
duydatpham/artik-sdk-js
a2b13a4cf75db5fb827ea66d52ac5639ac815872
[ "Apache-2.0" ]
null
null
null
addon/bluetooth/gatt_client.h
duydatpham/artik-sdk-js
a2b13a4cf75db5fb827ea66d52ac5639ac815872
[ "Apache-2.0" ]
null
null
null
/* * * Copyright 2017 Samsung Electronics 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 require...
33.611111
79
0.730762
[ "object", "vector" ]
a5208511337ae340465be66cb98056d1175d32c7
4,697
h
C
lib/ipmeta_ds.h
CAIDA/libipmeta
4c338574b7247056224d28dc42d1b1b24066fb26
[ "BSD-2-Clause" ]
4
2019-11-20T10:57:45.000Z
2022-02-09T19:17:31.000Z
lib/ipmeta_ds.h
CAIDA/libipmeta
4c338574b7247056224d28dc42d1b1b24066fb26
[ "BSD-2-Clause" ]
6
2019-10-17T00:53:01.000Z
2021-12-03T00:13:12.000Z
lib/ipmeta_ds.h
CAIDA/libipmeta
4c338574b7247056224d28dc42d1b1b24066fb26
[ "BSD-2-Clause" ]
1
2019-07-23T04:14:45.000Z
2019-07-23T04:14:45.000Z
/* * libipmeta * * Alistair King, CAIDA, UC San Diego * corsaro-info@caida.org * * Copyright (C) 2013-2020 The Regents of the University of California. * * This file is part of libipmeta. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the fo...
39.805085
80
0.683841
[ "object" ]
a5399c853ac1c88ef4fd0e73b2947f32cb664e60
3,291
h
C
src/dist/block_service/local/local_service.h
Smityz/rdsn
dccb6b3c273197e334ef02f742dc590894e58be8
[ "MIT" ]
2
2019-08-01T11:17:19.000Z
2019-08-01T11:17:22.000Z
src/dist/block_service/local/local_service.h
Skysheepwang/rdsn
4a7eb44a5a6b4591a91475f54bcabb9df2c271f9
[ "MIT" ]
null
null
null
src/dist/block_service/local/local_service.h
Skysheepwang/rdsn
4a7eb44a5a6b4591a91475f54bcabb9df2c271f9
[ "MIT" ]
null
null
null
#pragma once #include <fstream> #include <dsn/dist/block_service.h> namespace dsn { namespace dist { namespace block_service { class local_service : public block_filesystem { public: local_service(); local_service(const std::string &root); virtual error_code initialize(const std::vector<std::string> &ar...
35.010638
85
0.53935
[ "vector" ]
a53c98b50368bd00062ce8e8616d8c13d677ff05
7,432
h
C
lib/utils.h
markoshorro/gem5McPAT
cac6dadba1ed13031dda43d48c27254453128d69
[ "MIT" ]
5
2016-05-24T08:20:41.000Z
2020-03-17T07:30:45.000Z
lib/utils.h
markoshorro/gem5McPAT
cac6dadba1ed13031dda43d48c27254453128d69
[ "MIT" ]
3
2016-04-20T04:29:49.000Z
2016-04-28T10:05:00.000Z
lib/utils.h
markoshorro/gem5McPAT
cac6dadba1ed13031dda43d48c27254453128d69
[ "MIT" ]
4
2018-03-07T11:19:42.000Z
2020-01-17T03:43:50.000Z
/* * Copyright (c) 2016 Marcos Horro * All rights reserved. MIT Licence * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: redistributions of source code must retain the above copyright * notice, this list of cond...
27.323529
73
0.664155
[ "vector" ]
a55b1362906bb404761a879f2b2710c09975d102
6,674
h
C
src/rpc/rpcprotocol.h
fffnerwork/FFF_Protocol_Core
94d75cc6b3a94e06fe6dde75967e665db26a7649
[ "MIT" ]
67
2021-10-05T05:53:33.000Z
2022-01-24T06:23:41.000Z
src/rpc/rpcprotocol.h
jichengbin/FFF_Protocol_Core
94d75cc6b3a94e06fe6dde75967e665db26a7649
[ "MIT" ]
5
2021-10-05T07:50:46.000Z
2021-10-09T09:40:30.000Z
src/rpc/rpcprotocol.h
jichengbin/FFF_Protocol_Core
94d75cc6b3a94e06fe6dde75967e665db26a7649
[ "MIT" ]
24
2021-10-05T06:34:31.000Z
2022-01-25T09:14:36.000Z
// Copyright (c) 2010 Satoshi Nakamoto // Copyright (c) 2014-2016 The FFF Core developers // Original code was distributed under the MIT software license. // Copyright (c) 2014-2019 Coin Sciences Ltd // FFF_Core code distributed under the GPLv3 license, see COPYING file. #ifndef FFF_RPCPROTOCOL_H #define FFF_RPCPROTOC...
54.704918
133
0.67306
[ "object" ]
a56d204614fb96e0de79dd24a429fec61c68270a
4,596
h
C
src/Tuple.h
bondhugula/Halide
78734b8bca3be0e79ce32978d5418083d4f2910f
[ "MIT" ]
1
2019-11-19T15:57:58.000Z
2019-11-19T15:57:58.000Z
src/Tuple.h
bondhugula/Halide
78734b8bca3be0e79ce32978d5418083d4f2910f
[ "MIT" ]
null
null
null
src/Tuple.h
bondhugula/Halide
78734b8bca3be0e79ce32978d5418083d4f2910f
[ "MIT" ]
2
2019-11-25T13:27:17.000Z
2020-03-20T15:29:14.000Z
#ifndef HALIDE_TUPLE_H #define HALIDE_TUPLE_H /** \file * * Defines Tuple - the front-end handle on small arrays of expressions. */ #include "IR.h" #include "IROperator.h" #include "Util.h" namespace Halide { class FuncRef; /** Create a small array of Exprs for defining and calling functions * with multiple ou...
30.64
111
0.62228
[ "vector" ]
a577bbee756a74220aec5a185a9a727389a38c72
24,501
c
C
lib-src/lv2/lilv/src/world.c
Marcusz97/CILP_Facilitatore_Audacity
fe7f59365317ce425abbaa79c973e931232c8680
[ "CC-BY-3.0" ]
24
2015-01-22T13:55:17.000Z
2021-06-25T09:41:19.000Z
lib-src/lv2/lilv/src/world.c
Marcusz97/CILP_Facilitatore_Audacity
fe7f59365317ce425abbaa79c973e931232c8680
[ "CC-BY-3.0" ]
2
2019-01-13T23:12:26.000Z
2019-02-03T08:07:29.000Z
lib-src/lv2/lilv/src/world.c
Marcusz97/CILP_Facilitatore_Audacity
fe7f59365317ce425abbaa79c973e931232c8680
[ "CC-BY-3.0" ]
14
2015-01-12T23:13:35.000Z
2021-01-16T09:02:41.000Z
/* Copyright 2007-2011 David Robillard <http://drobilla.net> Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THIS SOFTWARE IS PROVIDED "AS IS" AND...
29.770352
80
0.677483
[ "object", "model" ]
a579b3c0cf3fb2a008a8976ad21584ea7e2b215c
11,847
h
C
CIM_Framework/CIMFramework/CPPClasses/Include/CIM_ConcreteJob.h
rgl/lms
cda6a25e0f39b2a18f10415560ee6a2cfc5fbbcb
[ "Apache-2.0" ]
18
2019-04-17T10:43:35.000Z
2022-03-22T22:30:39.000Z
CIM_Framework/CIMFramework/CPPClasses/Include/CIM_ConcreteJob.h
rgl/lms
cda6a25e0f39b2a18f10415560ee6a2cfc5fbbcb
[ "Apache-2.0" ]
9
2019-10-03T15:29:51.000Z
2021-12-27T14:03:33.000Z
CIM_Framework/CIMFramework/CPPClasses/Include/CIM_ConcreteJob.h
isabella232/lms
50d16f81b49aba6007388c001e8137352c5eb42e
[ "Apache-2.0" ]
8
2019-06-13T23:30:50.000Z
2021-06-25T15:51:59.000Z
//---------------------------------------------------------------------------- // // Copyright (c) Intel Corporation, 2003 - 2012 All Rights Reserved. // // File: CIM_ConcreteJob.h // // Contents: A concrete version of Job. This class represents a generic and instantiable unit of work, such as a batch or a ...
58.940299
611
0.742382
[ "object", "vector" ]
a57b9411485fd3a3ecd9f03a3415e83f1d7eb68e
241
h
C
SpaceInvaders/CDP/Headers/CDP_fwd.h
Otard95/Cpp-Home-Exam
9ad6037f12e99f1ee8c054d5bd84e420704e6434
[ "MIT" ]
null
null
null
SpaceInvaders/CDP/Headers/CDP_fwd.h
Otard95/Cpp-Home-Exam
9ad6037f12e99f1ee8c054d5bd84e420704e6434
[ "MIT" ]
null
null
null
SpaceInvaders/CDP/Headers/CDP_fwd.h
Otard95/Cpp-Home-Exam
9ad6037f12e99f1ee8c054d5bd84e420704e6434
[ "MIT" ]
null
null
null
#ifndef __CDP_FWD_H__ #define __CDP_FWD_H__ namespace CDP { class GameObject; class Component; class Sprite; class Transform; class Canvas; class Physics; class Rigidbody; class Collider; class Time; } #endif // !__CDP_FWD_H__
12.05
24
0.751037
[ "transform" ]
a59330896b2132e0e1add2865eb1e178f6d31f06
22,141
c
C
Problema-II/problema2.c
Juliapp/EXA801-Algoritmos-e-Programacao-I
2b257bb15788f7e6e9b366125f25b62bb55f03f4
[ "MIT" ]
null
null
null
Problema-II/problema2.c
Juliapp/EXA801-Algoritmos-e-Programacao-I
2b257bb15788f7e6e9b366125f25b62bb55f03f4
[ "MIT" ]
null
null
null
Problema-II/problema2.c
Juliapp/EXA801-Algoritmos-e-Programacao-I
2b257bb15788f7e6e9b366125f25b62bb55f03f4
[ "MIT" ]
null
null
null
/******************************************************************************* Autor: Juliana Arag๏ฟฝo Pinto Componente Curricular: Algoritmos I Concluido em: 28/11/2017 Declaro que este c๏ฟฝdigo foi elaborado por mim de forma individual e n๏ฟฝo cont๏ฟฝm nenhum trecho de c๏ฟฝdigo de outro colega ou de outro autor, tais como pr...
27.233702
150
0.57581
[ "cad" ]
a59cb0b5608503d8ca71341c2e678658e9cc7850
1,155
h
C
kernel/include/Configuration.h
DeanoBurrito/northport
6da490b02bfe7d0a12a25316db879ecc249be1c7
[ "MIT" ]
19
2021-12-10T12:48:44.000Z
2022-03-30T09:17:14.000Z
kernel/include/Configuration.h
DeanoBurrito/northport
6da490b02bfe7d0a12a25316db879ecc249be1c7
[ "MIT" ]
24
2021-11-30T10:00:05.000Z
2022-03-29T10:19:21.000Z
kernel/include/Configuration.h
DeanoBurrito/northport
6da490b02bfe7d0a12a25316db879ecc249be1c7
[ "MIT" ]
2
2021-11-24T00:52:10.000Z
2021-12-27T23:47:32.000Z
#pragma once #include <stdint.h> #include <String.h> #include <containers/Vector.h> #include <Optional.h> namespace Kernel { enum class ConfigSlotType : uint8_t { Bool, Uint, String, }; struct ConfigSlot { ConfigSlotType type; bool locked; uint32_t ...
21.388889
104
0.593074
[ "vector" ]
a5a153a5fe4284c47623457e402fac51a4b9a34e
4,236
c
C
dep/libusbp/src/mac/serial_port_mac.c
pauldevine/fluxengine
a107d4f17f3ecf69cfcde916f4468b44712b1253
[ "MIT" ]
1
2022-01-16T10:31:25.000Z
2022-01-16T10:31:25.000Z
dep/libusbp/src/mac/serial_port_mac.c
pauldevine/fluxengine
a107d4f17f3ecf69cfcde916f4468b44712b1253
[ "MIT" ]
null
null
null
dep/libusbp/src/mac/serial_port_mac.c
pauldevine/fluxengine
a107d4f17f3ecf69cfcde916f4468b44712b1253
[ "MIT" ]
null
null
null
#include <libusbp_internal.h> struct libusbp_serial_port { // The I/O Registry ID of the IOBSDSerialClient. uint64_t id; // A port filename like "/dev/cu.usbmodemFD123". char * port_name; }; libusbp_error * libusbp_serial_port_create( const libusbp_device * device, uint8_t interface_number, ...
24.917647
96
0.646128
[ "object" ]
a5a35a9fcb746225c4e07d5cfc2653160c7f38d8
568
h
C
include/trans_eliminator.h
hgl71964/PET
4cedb25c5dce0c49eebb693125235fc4ad1e26f8
[ "Apache-2.0" ]
69
2021-06-01T03:19:12.000Z
2022-03-26T00:14:20.000Z
include/trans_eliminator.h
hgl71964/PET
4cedb25c5dce0c49eebb693125235fc4ad1e26f8
[ "Apache-2.0" ]
null
null
null
include/trans_eliminator.h
hgl71964/PET
4cedb25c5dce0c49eebb693125235fc4ad1e26f8
[ "Apache-2.0" ]
4
2021-07-10T07:21:11.000Z
2022-02-06T18:56:56.000Z
#ifndef TRANS_ELIMINATOR_H #define TRANS_ELIMINATOR_H #include "generator.h" namespace tpm { class TransEliminator { std::vector<std::shared_ptr<Operator>> all_ops; std::shared_ptr<Reciprocity> reciprocity; public: TransEliminator(); std::shared_ptr<SubGraph> eliminate(std::shared_ptr<SubGraph> &g...
22.72
74
0.711268
[ "vector" ]
a5aa454c70df59e8cd328a69de6d5e73c1163c57
4,056
h
C
src/shogun/evaluation/GradientResult.h
ShankarNara/shogun
8ab196de16b8d8917e5c84770924c8d0f5a3d17c
[ "BSD-3-Clause" ]
1
2020-09-18T04:30:46.000Z
2020-09-18T04:30:46.000Z
src/shogun/evaluation/GradientResult.h
ShankarNara/shogun
8ab196de16b8d8917e5c84770924c8d0f5a3d17c
[ "BSD-3-Clause" ]
null
null
null
src/shogun/evaluation/GradientResult.h
ShankarNara/shogun
8ab196de16b8d8917e5c84770924c8d0f5a3d17c
[ "BSD-3-Clause" ]
null
null
null
/* * This software is distributed under BSD 3-clause license (see LICENSE file). * * Authors: Jacob Walker, Roman Votyakov, Soeren Sonnenburg, Heiko Strathmann, * Yuyu Zhang, Ariane Paola Gomes */ #ifndef CGRADIENTRESULT_H_ #define CGRADIENTRESULT_H_ #include <shogun/lib/config.h> #include <shogun/eval...
22.786517
86
0.692308
[ "object" ]
a5b47c9b6e4626cba4b0f2272d5cfcf5c31f124c
1,779
h
C
src/mpipopulationfitnesscalculation.h
j0r1/EATk
4ce34a030e21925532d2725cbb9460b19442424c
[ "MIT" ]
null
null
null
src/mpipopulationfitnesscalculation.h
j0r1/EATk
4ce34a030e21925532d2725cbb9460b19442424c
[ "MIT" ]
null
null
null
src/mpipopulationfitnesscalculation.h
j0r1/EATk
4ce34a030e21925532d2725cbb9460b19442424c
[ "MIT" ]
null
null
null
#pragma once #include "eatkconfig.h" #ifdef EATKCONFIG_MPISUPPORT #include "population.h" #include "mpieventdistributor.h" // TODO: MPI_Comm seems to be a pointer in OpenMPI namespace eatk { class MPIPopulationFitnessCalculation : public PopulationFitnessCalculation, public MPIEventHandler { public: MPIPopulation...
32.944444
123
0.793704
[ "vector" ]
a5bfa7dcdd255421fef13c7fc051f3add6373ed4
4,569
h
C
app/archive/commsdsl2old/src/common.h
arobenko/commsdsl
e0f0bf42a455445d0a266d3540b008e0dc24cd15
[ "Apache-2.0" ]
4
2018-12-18T09:51:48.000Z
2019-07-31T20:21:57.000Z
app/archive/commsdsl2old/src/common.h
arobenko/commsdsl
e0f0bf42a455445d0a266d3540b008e0dc24cd15
[ "Apache-2.0" ]
4
2019-08-02T06:59:58.000Z
2020-06-01T22:10:02.000Z
app/archive/commsdsl2old/src/common.h
arobenko/commsdsl
e0f0bf42a455445d0a266d3540b008e0dc24cd15
[ "Apache-2.0" ]
2
2019-06-05T15:37:03.000Z
2020-01-30T11:47:59.000Z
// // Copyright 2018 - 2021 (C). Alex Robenko. 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 requi...
34.097015
94
0.749398
[ "vector" ]
a5ca0e70ecb5292e1451ee8546f92d70e12e46f7
419
h
C
src/Parser/BART/ParseSphere.h
mtheory101/hybrid-rendering-thesis
314a200726450e27982e1a95eec3702ad5c9d320
[ "MIT" ]
1
2019-06-14T20:22:21.000Z
2019-06-14T20:22:21.000Z
src/Parser/BART/ParseSphere.h
ptrefall/hybrid-rendering-thesis
72be3b3f6b457741737cd83cefb90f2bdbaa46dc
[ "MIT" ]
null
null
null
src/Parser/BART/ParseSphere.h
ptrefall/hybrid-rendering-thesis
72be3b3f6b457741737cd83cefb90f2bdbaa46dc
[ "MIT" ]
null
null
null
#pragma once #include <stdio.h> #include <vector> #include <memory> namespace Render { class Material; typedef std::shared_ptr<Material> MaterialPtr; } namespace File { namespace BART { struct sphere_t; }} namespace Parser { namespace BART { class ParseSphere { public: static void parse(...
17.458333
111
0.687351
[ "render", "vector" ]
a5db78af7a9cc153ed26c67b090620a51f4c20ad
3,676
h
C
avt/MIR/Tet/MaterialTetrahedron.h
ahota/visit_ospray
d80b2e18ff5654d04bfb56ae4d6f42e45f87c9b9
[ "BSD-3-Clause" ]
null
null
null
avt/MIR/Tet/MaterialTetrahedron.h
ahota/visit_ospray
d80b2e18ff5654d04bfb56ae4d6f42e45f87c9b9
[ "BSD-3-Clause" ]
null
null
null
avt/MIR/Tet/MaterialTetrahedron.h
ahota/visit_ospray
d80b2e18ff5654d04bfb56ae4d6f42e45f87c9b9
[ "BSD-3-Clause" ]
null
null
null
/***************************************************************************** * * Copyright (c) 2000 - 2014, Lawrence Livermore National Security, LLC * Produced at the Lawrence Livermore National Laboratory * LLNL-CODE-442911 * All rights reserved. * * This file is part of VisIt. For details, see https://visit.llnl...
36.039216
79
0.617791
[ "vector" ]
a5e27dfc75e3a98e4fc2e0305534757399325c3b
4,581
h
C
pelican/utility/FactoryGeneric.h
pelican/pelican
834ae2e5d0e58009500286eb7f7891611d02b50c
[ "BSD-3-Clause" ]
3
2015-10-11T07:30:59.000Z
2016-06-03T04:27:40.000Z
pelican/utility/FactoryGeneric.h
pelican/pelican
834ae2e5d0e58009500286eb7f7891611d02b50c
[ "BSD-3-Clause" ]
null
null
null
pelican/utility/FactoryGeneric.h
pelican/pelican
834ae2e5d0e58009500286eb7f7891611d02b50c
[ "BSD-3-Clause" ]
2
2016-05-09T09:52:38.000Z
2019-05-17T06:08:24.000Z
/* * Copyright (c) 2013, The University of Oxford * 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, * thi...
38.822034
87
0.705741
[ "object", "vector" ]
a5ed809f4bca4f948fef79a216e53bf5914069bd
1,911
h
C
Sample/Barnacle/Tool/BarT/stdafx.h
LordOfDorks/RIoT
8108ab7825c5401d72ceaf062dc16e4e5d693d94
[ "MIT" ]
null
null
null
Sample/Barnacle/Tool/BarT/stdafx.h
LordOfDorks/RIoT
8108ab7825c5401d72ceaf062dc16e4e5d693d94
[ "MIT" ]
2
2018-01-13T01:58:40.000Z
2018-01-13T02:22:28.000Z
Sample/Barnacle/Tool/BarT/stdafx.h
LordOfDorks/RIoT
8108ab7825c5401d72ceaf062dc16e4e5d693d94
[ "MIT" ]
1
2017-11-22T22:19:54.000Z
2017-11-22T22:19:54.000Z
// stdafx.h : include file for standard system include files, // or project specific include files that are used frequently, but // are changed infrequently // #pragma once #include "targetver.h" #define SHA256_DIGEST_LENGTH (32) #include <stdio.h> #include <tchar.h> #include <vector> #include <string> #include <me...
33.526316
109
0.760858
[ "vector" ]
a5ef5a53d6b4f359cac4171a85583eb5830260e6
6,101
h
C
2000/inc/geintrvl.h
kevinzhwl/ObjectARXCore
ce09e150aa7d87675ca15c9416497c0487e3d4d4
[ "MIT" ]
12
2015-10-05T07:11:57.000Z
2021-11-20T10:22:38.000Z
2000/inc/geintrvl.h
HelloWangQi/ObjectARXCore
ce09e150aa7d87675ca15c9416497c0487e3d4d4
[ "MIT" ]
null
null
null
2000/inc/geintrvl.h
HelloWangQi/ObjectARXCore
ce09e150aa7d87675ca15c9416497c0487e3d4d4
[ "MIT" ]
14
2015-12-04T08:42:08.000Z
2022-01-08T02:09:23.000Z
#ifndef AC_GEINTRVL_H #define AC_GEINTRVL_H // // (C) Copyright 1993-1999 by Autodesk, Inc. // // Permission to use, copy, modify, and distribute this software in // object code form for any purpose and without fee is hereby granted, // provided that the above copyright notice appears in all copies and // tha...
36.100592
101
0.64596
[ "object" ]
a5ef83c3ad61ab757324ee47a97cbd9dbdce63d3
2,041
h
C
scopecontainers.h
IrisChase/reprodyne
ab3cad0028e9894c6ea6a2f44fbbfa6ea8fabf80
[ "Apache-2.0" ]
null
null
null
scopecontainers.h
IrisChase/reprodyne
ab3cad0028e9894c6ea6a2f44fbbfa6ea8fabf80
[ "Apache-2.0" ]
1
2020-07-23T02:40:48.000Z
2020-07-23T02:40:48.000Z
scopecontainers.h
IrisChase/reprodyne
ab3cad0028e9894c6ea6a2f44fbbfa6ea8fabf80
[ "Apache-2.0" ]
null
null
null
// Copyright 2020 Iris Chase // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed...
24.297619
100
0.700147
[ "vector" ]
a5f0c2828f5d7b1cf0924ff1a377a1b5e6972f36
3,553
h
C
source/solution_zoo/xstream/methods/MultitaskPostProcessMethod/include/MultitaskPostProcessMethod/MultitaskPostProcessMethod.h
HorizonRobotics-Platform/AI-EXPRESS
413206d88dae1fbd465ced4d60b2a1769d15c171
[ "BSD-2-Clause" ]
98
2020-09-11T13:52:44.000Z
2022-03-23T11:52:02.000Z
source/solution_zoo/xstream/methods/MultitaskPostProcessMethod/include/MultitaskPostProcessMethod/MultitaskPostProcessMethod.h
HorizonRobotics-Platform/ai-express
413206d88dae1fbd465ced4d60b2a1769d15c171
[ "BSD-2-Clause" ]
8
2020-10-19T14:23:30.000Z
2022-03-16T01:00:07.000Z
source/solution_zoo/xstream/methods/MultitaskPostProcessMethod/include/MultitaskPostProcessMethod/MultitaskPostProcessMethod.h
HorizonRobotics-Platform/AI-EXPRESS
413206d88dae1fbd465ced4d60b2a1769d15c171
[ "BSD-2-Clause" ]
28
2020-09-17T14:20:35.000Z
2022-01-10T16:26:00.000Z
/** * Copyright (c) 2020 Horizon Robotics. All rights reserved. * @File: MultitaskPostProcessMethod.h * @Brief: declaration of the MultitaskPostProcessMethod * @Author: zhe.sun * @Email: zhe.sun@horizon.ai * @Date: 2020-12-03 19:32:18 * @Last Modified by: zhe.sun * @Last Modified time: 2020-12-03 21:21:32 */ ...
34.163462
78
0.713763
[ "vector" ]
5702fbc6b8c900bd4f6dda9079917e857205d9a6
31,492
c
C
arch/platform/simplelink/cc13xx-cc26xx/srf06/cc13x0/CC1350DK_7XD.c
ismaelamezcua-ucol/contiki-ng
54476e56b3b5ee793fda839f196262fa1f7585d4
[ "BSD-3-Clause" ]
948
2017-10-27T13:08:28.000Z
2022-03-29T15:03:07.000Z
arch/platform/simplelink/cc13xx-cc26xx/srf06/cc13x0/CC1350DK_7XD.c
ismaelamezcua-ucol/contiki-ng
54476e56b3b5ee793fda839f196262fa1f7585d4
[ "BSD-3-Clause" ]
1,161
2017-10-27T12:38:00.000Z
2022-03-31T06:45:44.000Z
arch/platform/simplelink/cc13xx-cc26xx/srf06/cc13x0/CC1350DK_7XD.c
ismaelamezcua-ucol/contiki-ng
54476e56b3b5ee793fda839f196262fa1f7585d4
[ "BSD-3-Clause" ]
664
2017-10-27T12:37:19.000Z
2022-03-23T20:29:38.000Z
/* * Copyright (c) 2016-2019, Texas Instruments Incorporated * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * * Redistributions of source code must retain the above copyright * n...
35.147321
140
0.668868
[ "object" ]
57030229d31093b6313bc81df4b0ace21af8ad0e
16,710
h
C
include/unsupported/Eigen/CXX11/src/Tensor/TensorContractionThreadPool.h
kwon-young/Millenium-Neural-Net
c52d3a4ad6fd0b59a89cec95437f58194b039b2c
[ "MIT" ]
36
2015-03-09T16:47:14.000Z
2021-02-04T08:32:04.000Z
ScalableLSH/DiskE2LSH/Eigen/unsupported/Eigen/CXX11/src/Tensor/TensorContractionThreadPool.h
USCDataScience/cmu-fg-bg-similarity
d8fc9a53937551f7a052bc2c6f442bcc29ea2615
[ "Apache-2.0" ]
42
2017-02-11T11:15:51.000Z
2019-12-28T16:00:44.000Z
ScalableLSH/DiskE2LSH/Eigen/unsupported/Eigen/CXX11/src/Tensor/TensorContractionThreadPool.h
USCDataScience/cmu-fg-bg-similarity
d8fc9a53937551f7a052bc2c6f442bcc29ea2615
[ "Apache-2.0" ]
5
2015-10-15T05:46:48.000Z
2020-05-11T17:40:36.000Z
// This file is part of Eigen, a lightweight C++ template library // for linear algebra. // // Copyright (C) 2014 Benoit Steiner <benoit.steiner.goog@gmail.com> // // This Source Code Form is subject to the terms of the Mozilla // Public License v. 2.0. If a copy of the MPL was not distributed // with this file, You ca...
42.19697
142
0.660203
[ "vector" ]
5703e97c3bbfcf9976db68895d7f37f3c1f0ceb2
3,667
h
C
ecs/include/alibabacloud/ecs/model/RunCommandRequest.h
aliyun/aliyun-openapi-cpp-sdk
0cf5861ece17dfb0bb251f13bf3fbdb39c0c6e36
[ "Apache-2.0" ]
89
2018-02-02T03:54:39.000Z
2021-12-13T01:32:55.000Z
ecs/include/alibabacloud/ecs/model/RunCommandRequest.h
aliyun/aliyun-openapi-cpp-sdk
0cf5861ece17dfb0bb251f13bf3fbdb39c0c6e36
[ "Apache-2.0" ]
89
2018-03-14T07:44:54.000Z
2021-11-26T07:43:25.000Z
ecs/include/alibabacloud/ecs/model/RunCommandRequest.h
aliyun/aliyun-openapi-cpp-sdk
0cf5861ece17dfb0bb251f13bf3fbdb39c0c6e36
[ "Apache-2.0" ]
69
2018-01-22T09:45:52.000Z
2022-03-28T07:58:38.000Z
/* * 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 by...
35.601942
77
0.757295
[ "vector", "model" ]
0209a39ce50b829d7c1989c279383adf7fefc203
3,058
h
C
NumCore/CompactSymmMatrix.h
AlexandraAllan23/FEBio
c94a1c30e0bae5f285c0daae40a7e893e63cff3c
[ "MIT" ]
59
2020-06-15T12:38:49.000Z
2022-03-29T19:14:47.000Z
NumCore/CompactSymmMatrix.h
AlexandraAllan23/FEBio
c94a1c30e0bae5f285c0daae40a7e893e63cff3c
[ "MIT" ]
36
2020-06-14T21:10:01.000Z
2022-03-12T12:03:14.000Z
NumCore/CompactSymmMatrix.h
AlexandraAllan23/FEBio
c94a1c30e0bae5f285c0daae40a7e893e63cff3c
[ "MIT" ]
26
2020-06-25T15:02:13.000Z
2022-03-10T09:14:03.000Z
/*This file is part of the FEBio source code and is licensed under the MIT license listed below. See Copyright-FEBio.txt for details. Copyright (c) 2020 University of Utah, The Trustees of Columbia University in the City of New York, and others. Permission is hereby granted, free of charge, to any person obtaining ...
34.359551
109
0.732505
[ "vector" ]
02140eaeabe5b8c58cc0cd594452f28d474be586
2,895
c
C
examples/many_compressors.c
stevengj/c-blosc2
1a3d5ec05f46ae02efe1993068605fc79541be51
[ "BSD-3-Clause" ]
1
2021-11-04T01:13:50.000Z
2021-11-04T01:13:50.000Z
examples/many_compressors.c
stevengj/c-blosc2
1a3d5ec05f46ae02efe1993068605fc79541be51
[ "BSD-3-Clause" ]
null
null
null
examples/many_compressors.c
stevengj/c-blosc2
1a3d5ec05f46ae02efe1993068605fc79541be51
[ "BSD-3-Clause" ]
null
null
null
/* Copyright (C) 2014 Francesc Alted http://blosc.org License: BSD 3-Clause (see LICENSE.txt) Example program demonstrating use of the Blosc filter from C code. To compile this program: $ gcc -O many_compressors.c -o many_compressors -lblosc2 To run: $ ./many_compressors Blosc ...
26.559633
82
0.630397
[ "shape" ]
02165d70952e2ab7960a63f9284ec10213197fad
45,221
c
C
mibench/office/ghostscript/src/interp.c
hyu-iot/gem5
aeccc8bd8e9a86f96fc7a6f40d978f8494337fc5
[ "BSD-3-Clause" ]
28
2017-01-20T15:25:54.000Z
2020-03-17T00:28:31.000Z
mibench/office/ghostscript/src/interp.c
hyu-iot/gem5
aeccc8bd8e9a86f96fc7a6f40d978f8494337fc5
[ "BSD-3-Clause" ]
80
2019-08-27T14:43:46.000Z
2020-12-16T11:56:19.000Z
mibench/office/ghostscript/src/interp.c
hyu-iot/gem5
aeccc8bd8e9a86f96fc7a6f40d978f8494337fc5
[ "BSD-3-Clause" ]
98
2019-08-30T14:29:16.000Z
2020-11-21T18:22:13.000Z
/* Copyright (C) 1989, 1996, 1997 Aladdin Enterprises. All rights reserved. This file is part of Aladdin Ghostscript. Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND. No author or distributor accepts any responsibility for the consequences of using it, or for whether it serves any partic...
30.783526
89
0.675261
[ "object" ]
021b8c53cc3bce34df48a328fc1d6a9fb1d3454e
9,555
h
C
test/e2e/test_master/ObjectArxHeaders/dbMultiModesGrip.h
BlueCannonBall/cppparser
9ae5f0c21268be6696532cf5b90c0384d6eb4940
[ "MIT" ]
null
null
null
test/e2e/test_master/ObjectArxHeaders/dbMultiModesGrip.h
BlueCannonBall/cppparser
9ae5f0c21268be6696532cf5b90c0384d6eb4940
[ "MIT" ]
null
null
null
test/e2e/test_master/ObjectArxHeaders/dbMultiModesGrip.h
BlueCannonBall/cppparser
9ae5f0c21268be6696532cf5b90c0384d6eb4940
[ "MIT" ]
null
null
null
// ////////////////////////////////////////////////////////////////////////////// // // Copyright 2018 Autodesk, Inc. All rights reserved. // // Use of this software is subject to the terms of the Autodesk license // agreement provided at the time of installation or download, or which // otherwise accompanies th...
37.470588
131
0.607535
[ "object" ]
021d4547a9e8763be8254cfc1bc15e28906b60fb
4,984
h
C
inetcore/mshtml/external/inc/objext.h
npocmaka/Windows-Server-2003
5c6fe3db626b63a384230a1aa6b92ac416b0765f
[ "Unlicense" ]
17
2020-11-13T13:42:52.000Z
2021-09-16T09:13:13.000Z
inetcore/mshtml/external/inc/objext.h
sancho1952007/Windows-Server-2003
5c6fe3db626b63a384230a1aa6b92ac416b0765f
[ "Unlicense" ]
2
2020-10-19T08:02:06.000Z
2020-10-19T08:23:18.000Z
inetcore/mshtml/external/inc/objext.h
sancho1952007/Windows-Server-2003
5c6fe3db626b63a384230a1aa6b92ac416b0765f
[ "Unlicense" ]
14
2020-11-14T09:43:20.000Z
2021-08-28T08:59:57.000Z
#ifndef UNIX #pragma pack(push, 8) #endif //+------------------------------------------------------------------------ // // Microsoft Windows // Copyright (C) Microsoft Corporation, 1992 - 1995. // // File: objext.h // // Contents: header file for Object Extensions interfaces // // ...
34.372414
116
0.506621
[ "object" ]
02211552d7e22a44099291fb3e2fbf2ce2db82e9
2,726
h
C
medialAxisTransform/FileHandler.h
BeauJoh/MedialAxisTransform
d2ea150a64aaf918b94c2a2bfd4784fe154bfc39
[ "Unlicense" ]
4
2015-05-16T19:09:55.000Z
2020-08-08T11:57:04.000Z
medialAxisTransform/FileHandler.h
BeauJoh/MedialAxisTransform
d2ea150a64aaf918b94c2a2bfd4784fe154bfc39
[ "Unlicense" ]
null
null
null
medialAxisTransform/FileHandler.h
BeauJoh/MedialAxisTransform
d2ea150a64aaf918b94c2a2bfd4784fe154bfc39
[ "Unlicense" ]
null
null
null
/* * FileHandler.h * MedialAxisTransform * * * Created by Beau Johnston on 25/08/11. * Copyright (C) 2011 by Beau Johnston. * * Please email me if you have any comments, suggestions or advice: * beau@inbeta.org * * Permission is hereby granted, free of charge, to any person...
32.452381
85
0.681952
[ "vector" ]
0224a479d84e610f1e3f5039a9adf870d6635ae1
1,363
h
C
src/ui/window.h
X-EcutiOnner/Bourgeon
c8f92df01f21846e994fac888508e40106205f1a
[ "MIT" ]
20
2018-01-25T03:16:13.000Z
2022-03-30T04:30:05.000Z
src/ui/window.h
X-EcutiOnner/Bourgeon
c8f92df01f21846e994fac888508e40106205f1a
[ "MIT" ]
6
2018-01-27T12:19:35.000Z
2021-06-05T18:39:17.000Z
src/ui/window.h
X-EcutiOnner/Bourgeon
c8f92df01f21846e994fac888508e40106205f1a
[ "MIT" ]
13
2018-01-27T16:20:19.000Z
2021-05-17T19:08:42.000Z
#pragma once #include <cstdint> #include <list> #include <memory> #include <optional> #include <string> #include <utility> #include <vector> #include "imgui.h" #include "pybind11/pytypes.h" #include "ui/widget.h" namespace ui { using WindowLayout = std::vector<std::vector<std::shared_ptr<Widget>>>; using MessageId ...
25.716981
76
0.709464
[ "vector" ]
0227f54a1799314f6a4a039676c3f52018e19dca
5,257
h
C
log.h
brunocalou/Log
044cbac514fddb0f488ee20f024a709516024f1b
[ "MIT" ]
null
null
null
log.h
brunocalou/Log
044cbac514fddb0f488ee20f024a709516024f1b
[ "MIT" ]
null
null
null
log.h
brunocalou/Log
044cbac514fddb0f488ee20f024a709516024f1b
[ "MIT" ]
null
null
null
/* log.h - The Log Class logs information on any Stream that inherits from the Print class. Created by Bruno Calou Alves, May, 2015. Read LICENSE for more information. */ #ifndef LOG_H #define LOG_H #include <inttypes.h> #if defined(ARDUINO) && ARDUINO >= 100 #include "Arduino.h" #else #include "WProgram.h" #en...
18.190311
111
0.66654
[ "object" ]
022fd66fb28c73aed6ead39eaba0beb1ee307a6e
4,254
h
C
stratum/p4c_backends/fpm/field_name_inspector.h
cholve/stratum
09ddb5acb604f7e694a6b7d2fe93fea79f801794
[ "Apache-2.0" ]
267
2019-09-11T15:01:37.000Z
2022-03-28T11:14:29.000Z
stratum/p4c_backends/fpm/field_name_inspector.h
cholve/stratum
09ddb5acb604f7e694a6b7d2fe93fea79f801794
[ "Apache-2.0" ]
906
2019-09-18T03:37:08.000Z
2022-03-30T00:59:53.000Z
stratum/p4c_backends/fpm/field_name_inspector.h
cholve/stratum
09ddb5acb604f7e694a6b7d2fe93fea79f801794
[ "Apache-2.0" ]
107
2019-09-16T07:30:53.000Z
2022-03-18T09:53:03.000Z
// Copyright 2019 Google LLC // SPDX-License-Identifier: Apache-2.0 // A FieldNameInspector is a p4c Inspector subclass that visits the node // hierarchy under various types of IR fields to extract a field name string. #ifndef STRATUM_P4C_BACKENDS_FPM_FIELD_NAME_INSPECTOR_H_ #define STRATUM_P4C_BACKENDS_FPM_FIELD_NAM...
42.969697
80
0.754584
[ "vector" ]
02351f155e807538cb8b82809bcab671c77b1352
13,045
h
C
src/engine/engine.h
nonoesimposible/libprimis
869172e5265f4b0011caa93c15abc856d2d77bf6
[ "Zlib" ]
30
2020-10-30T20:21:55.000Z
2022-03-19T02:23:48.000Z
src/engine/engine.h
nonoesimposible/libprimis
869172e5265f4b0011caa93c15abc856d2d77bf6
[ "Zlib" ]
74
2020-11-06T03:40:44.000Z
2022-03-30T20:18:07.000Z
src/engine/engine.h
nonoesimposible/libprimis
869172e5265f4b0011caa93c15abc856d2d77bf6
[ "Zlib" ]
5
2020-12-21T19:29:27.000Z
2022-01-12T05:17:06.000Z
#ifndef ENGINE_H_ #define ENGINE_H_ #include "../libprimis-headers/cube.h" #include "../libprimis-headers/texture.h" // texture extern int hwtexsize, hwcubetexsize, hwmaxaniso, maxtexsize, hwtexunits, hwvtexunits; extern Texture *textureload(const char *name, int clamp = 0, bool mipit = true, bool msg = true); exte...
35.352304
258
0.746646
[ "vector" ]
023f3a7a0a7392528ee4ea20395f80c496777581
15,949
c
C
ports/samd/machine_pin.c
mchobby/micropython
2c6dd588b209a8418966c909892b091a6791321d
[ "MIT" ]
null
null
null
ports/samd/machine_pin.c
mchobby/micropython
2c6dd588b209a8418966c909892b091a6791321d
[ "MIT" ]
null
null
null
ports/samd/machine_pin.c
mchobby/micropython
2c6dd588b209a8418966c909892b091a6791321d
[ "MIT" ]
null
null
null
/* * This file is part of the MicroPython project, http://micropython.org/ * * Development of the code in this file was sponsored by Microbric Pty Ltd * * The MIT License (MIT) * * Copyright (c) 2021 Dominique Meurisse - MCHobby.be * * Permission is hereby granted, free of charge, to any person obtaining a cop...
37.527059
136
0.66349
[ "object" ]
024b794428732539154f0434fc362faa0e669c72
26,501
c
C
drivers/wdm/input/hidir/pnp.c
npocmaka/Windows-Server-2003
5c6fe3db626b63a384230a1aa6b92ac416b0765f
[ "Unlicense" ]
17
2020-11-13T13:42:52.000Z
2021-09-16T09:13:13.000Z
drivers/wdm/input/hidir/pnp.c
sancho1952007/Windows-Server-2003
5c6fe3db626b63a384230a1aa6b92ac416b0765f
[ "Unlicense" ]
2
2020-10-19T08:02:06.000Z
2020-10-19T08:23:18.000Z
drivers/wdm/input/hidir/pnp.c
sancho1952007/Windows-Server-2003
5c6fe3db626b63a384230a1aa6b92ac416b0765f
[ "Unlicense" ]
14
2020-11-14T09:43:20.000Z
2021-08-28T08:59:57.000Z
/*++ Copyright (c) 1996 Microsoft Corporation Module Name: ioctl.c Abstract: Human Input Device (HID) minidriver for Infrared (IR) devices The HID IR Minidriver (HidIr) provides an abstraction layer for the HID Class to talk to HID IR devices. Author: jsenior ...
28.962842
127
0.559752
[ "object" ]
02501b191784bf7301e975e6ac69a926feeff2c7
758
h
C
016. Letter Combinations of a Phone Number/solution.h
corkiwang1122/LeetCode
39b1680b58173e6ec23a475605c3450ce8f78a81
[ "MIT" ]
3,690
2015-01-03T03:40:23.000Z
2022-03-31T08:10:19.000Z
016. Letter Combinations of a Phone Number/solution.h
Windfall94/LeetCode
1756256d7e619164076bbf358c8f7ca68cd8bd79
[ "MIT" ]
21
2015-01-25T16:39:43.000Z
2021-02-26T05:28:22.000Z
016. Letter Combinations of a Phone Number/solution.h
Windfall94/LeetCode
1756256d7e619164076bbf358c8f7ca68cd8bd79
[ "MIT" ]
1,290
2015-01-09T01:28:20.000Z
2022-03-28T12:20:39.000Z
// // Solution.h // Test // // Created by pezy on 12/27/14. // Copyright (c) 2014 pezy. All rights reserved. // #ifndef Test_Solution_h #define Test_Solution_h #include <vector> #include <string> #include <array> using std::vector; using std::string; using std::array; class Solution { public: vector<string>...
21.657143
98
0.546174
[ "vector" ]
025a8698964ae7a13aee5c12620755b39f5d8256
859
c
C
MPI/VectorScatter.c
ermus19/high-performance-computing
395c43c1795f1867e79e5d1d305b6e9ef45e9538
[ "MIT" ]
null
null
null
MPI/VectorScatter.c
ermus19/high-performance-computing
395c43c1795f1867e79e5d1d305b6e9ef45e9538
[ "MIT" ]
null
null
null
MPI/VectorScatter.c
ermus19/high-performance-computing
395c43c1795f1867e79e5d1d305b6e9ef45e9538
[ "MIT" ]
null
null
null
#include <stdio.h> #include <mpi.h> #define N 10 int main(int argc, char* argv[]){ int size, rank, i, from, to, ndat, part, tag, VA[N]; MPI_Status info; MPI_Init(&argc, &argv); MPI_Comm_size(MPI_COMM_WORLD,&size); MPI_Comm_rank(MPI_COMM_WORLD,&rank); //Inicializo vector for (i=0; i<N; i++) { VA[i] = 0; ...
17.18
75
0.558789
[ "vector" ]
025b114120bf4bd3f133723ef70bf0b345bc3393
5,441
h
C
Samples/Xbox/Samples/XDK/PlayFabCommerce/PlayFabCommerce.h
yazhenchua/PlayFab-Samples
85d1d252bd21d050575c382628caa6d0c9785ff7
[ "MIT" ]
160
2016-05-26T09:30:20.000Z
2022-03-31T08:05:56.000Z
Samples/Xbox/Samples/XDK/PlayFabCommerce/PlayFabCommerce.h
srivers8424/PlayFab-Samples
9fe465858e7f9bae3250dfe77d4500bb57d9e7fd
[ "MIT" ]
17
2016-03-22T17:37:16.000Z
2021-11-20T23:20:07.000Z
Samples/Xbox/Samples/XDK/PlayFabCommerce/PlayFabCommerce.h
srivers8424/PlayFab-Samples
9fe465858e7f9bae3250dfe77d4500bb57d9e7fd
[ "MIT" ]
204
2016-05-14T22:46:51.000Z
2022-03-04T00:45:56.000Z
//-------------------------------------------------------------------------------------- // PlayFabCommerce.h // // Advanced Technology Group (ATG) // Copyright (C) Microsoft Corporation. All rights reserved. //-------------------------------------------------------------------------------------- #pragma once #includ...
27.760204
151
0.659621
[ "render", "vector" ]
0260ab8cc4067be270a09152127044f31a6a3bb4
10,626
h
C
src/math/lp/lar_constraints.h
rashchedrin/z3
5de699f9cb301a34f71cd5734e0fd619590b0a90
[ "MIT" ]
2
2021-04-21T21:22:00.000Z
2021-06-18T14:57:42.000Z
src/math/lp/lar_constraints.h
rashchedrin/z3
5de699f9cb301a34f71cd5734e0fd619590b0a90
[ "MIT" ]
7
2020-02-26T13:19:00.000Z
2020-11-23T17:14:07.000Z
src/math/lp/lar_constraints.h
rashchedrin/z3
5de699f9cb301a34f71cd5734e0fd619590b0a90
[ "MIT" ]
null
null
null
/*++ Copyright (c) 2017 Microsoft Corporation Module Name: <name> Abstract: <abstract> Author: Lev Nachmanson (levnach) Revision History: --*/ #pragma once #include <utility> #include <string> #include <algorithm> #include "util/vector.h" #include "util/region.h" #include "math/lp/lp_utils.h" #in...
35.898649
154
0.632882
[ "vector" ]
026749c9bd133fc7421cf8e68cd76ddeeb60e3af
12,951
c
C
thirdparty/jerryscript/jerry.c
flyghost/OneOS-V2.1.0
6fedab0558c07fe679d63ba1eb8ee9992c044d86
[ "Apache-2.0" ]
null
null
null
thirdparty/jerryscript/jerry.c
flyghost/OneOS-V2.1.0
6fedab0558c07fe679d63ba1eb8ee9992c044d86
[ "Apache-2.0" ]
null
null
null
thirdparty/jerryscript/jerry.c
flyghost/OneOS-V2.1.0
6fedab0558c07fe679d63ba1eb8ee9992c044d86
[ "Apache-2.0" ]
null
null
null
#include "jerry-core/api/jerry-debugger-transport.c" #include "jerry-core/api/jerry-debugger.c" #include "jerry-core/api/jerry-snapshot.c" #include "jerry-core/api/jerry.c" #include "jerry-core/debugger/debugger.c" #include "jerry-core/ecma/base/ecma-alloc.c" #include "jerry-core/ecma/base/ecma-gc.c" #include "jerry-co...
63.17561
96
0.802023
[ "object", "transform" ]
9d0fad5f6512730287190370fce748d397756e3f
1,310
h
C
ntlmssp/unittest/testbase.h
mstoaster/ntlm
cd825c474e0f62a71d0e76ff391fa791a5606463
[ "MIT" ]
null
null
null
ntlmssp/unittest/testbase.h
mstoaster/ntlm
cd825c474e0f62a71d0e76ff391fa791a5606463
[ "MIT" ]
null
null
null
ntlmssp/unittest/testbase.h
mstoaster/ntlm
cd825c474e0f62a71d0e76ff391fa791a5606463
[ "MIT" ]
null
null
null
#pragma once #include <string> #include <vector> #include <iostream> namespace unittest { struct test { public: test() = default; void printerr() const { std::cerr << errstring << std::endl; } std::string geterr() const { return errstring; } ...
26.734694
119
0.480916
[ "vector" ]
9d10dbc8f43d35e4dbb726554e96f2299805073c
27,640
c
C
ifr_extra.c
clemej/ifrac
fb75f7e3732a7f4482353262ea608f665425790c
[ "Artistic-1.0" ]
1
2021-06-28T12:27:33.000Z
2021-06-28T12:27:33.000Z
ifr_extra.c
clemej/ifrac
fb75f7e3732a7f4482353262ea608f665425790c
[ "Artistic-1.0" ]
null
null
null
ifr_extra.c
clemej/ifrac
fb75f7e3732a7f4482353262ea608f665425790c
[ "Artistic-1.0" ]
null
null
null
/* =================================================== */ /* Intelligent FRAC. (C) 2000 Michael Glickman */ /* --------------------------------------------------- */ /* See LICENSE regarding distribution policy and */ /* conditions of use. */ /* ======================...
24.013901
92
0.617981
[ "3d" ]
9d2af1bf6e54a996eda86fa5e7de412fe395efac
6,366
h
C
src/Film/MultibounceStreakCameraFilm.h
LeksiDor/JaraboTransientRendering
62a786f3ba0ac16ee41725d26e15e137239f4c49
[ "MIT" ]
2
2020-09-23T14:17:47.000Z
2021-01-23T02:33:16.000Z
src/Film/MultibounceStreakCameraFilm.h
LeksiDor/JaraboTransientRendering
62a786f3ba0ac16ee41725d26e15e137239f4c49
[ "MIT" ]
null
null
null
src/Film/MultibounceStreakCameraFilm.h
LeksiDor/JaraboTransientRendering
62a786f3ba0ac16ee41725d26e15e137239f4c49
[ "MIT" ]
null
null
null
/* * Copyright (C) 2015, Adrian Jarabo (http://giga.cps.unizar.es/~ajarabo/) * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the ri...
31.83
109
0.727301
[ "vector" ]
9d2b36cea2a2cbf3efc9f40e373806aea7434aac
15,393
c
C
examples/Dynamic Lib Loader/main.c
DKrepsky/CC3200-Linux-SDK
6c5798afd077cf4a87e80e15f334c736088a8fc7
[ "MIT" ]
16
2015-07-07T21:22:17.000Z
2019-03-28T14:29:33.000Z
examples/Dynamic Lib Loader/main.c
DKrepsky/CC3200-Linux-SDK
6c5798afd077cf4a87e80e15f334c736088a8fc7
[ "MIT" ]
3
2015-07-07T21:28:09.000Z
2016-01-11T00:17:21.000Z
examples/Dynamic Lib Loader/main.c
DKrepsky/CC3200-Linux-SDK
6c5798afd077cf4a87e80e15f334c736088a8fc7
[ "MIT" ]
13
2015-08-13T13:45:53.000Z
2020-02-28T01:46:25.000Z
//***************************************************************************** // // Copyright (C) 2014 Texas Instruments Incorporated - http://www.ti.com/ // // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions // are...
33.174569
106
0.5038
[ "vector" ]
9d399c94d3e399a36fd880bd594d76ec41ec62e7
1,436
h
C
src/engines/physics/environment.h
cripplet/SE-800
318696e25dffd0ff251a31166825f3de74051540
[ "MIT" ]
1
2015-08-22T22:08:58.000Z
2015-08-22T22:08:58.000Z
src/engines/physics/environment.h
cripplet/SE-800
318696e25dffd0ff251a31166825f3de74051540
[ "MIT" ]
null
null
null
src/engines/physics/environment.h
cripplet/SE-800
318696e25dffd0ff251a31166825f3de74051540
[ "MIT" ]
null
null
null
#ifndef _ENVIRONMENT_H #define _ENVIRONMENT_H #include "../../engines/physics/grid.h" #include "../../engines/physics/projectile.h" #include <vector> class Environment { public: Environment(std::vector<float> size, std::vector<int> n_grids); // constructor -- automatically subdivides space into n_grid chunks ~En...
41.028571
189
0.718663
[ "object", "vector" ]
9d3adda08e7c21687072ffe2a51b8dd07a575c09
3,998
h
C
ios/Pods/Textile/Textile/Classes/Public/TextileDelegate.h
textileio/textile-mobile
a8c4e0d0a3b39efff212aaedc328226eec403786
[ "MIT" ]
169
2018-04-24T19:47:32.000Z
2019-04-16T12:04:49.000Z
Textile/Classes/Public/TextileDelegate.h
SWBMESSI/ios-textile
ffe12ce647f29482b81c7da0262bbd729f0ae9dd
[ "MIT" ]
659
2018-04-23T20:40:43.000Z
2019-04-18T14:13:22.000Z
Textile/Classes/Public/TextileDelegate.h
SWBMESSI/ios-textile
ffe12ce647f29482b81c7da0262bbd729f0ae9dd
[ "MIT" ]
15
2018-05-01T15:02:23.000Z
2019-04-01T13:26:58.000Z
// // TextileDelegate.h // Textile // // Created by Aaron Sutula on 3/4/19. // Copyright ยฉ 2019 Textile. All rights reserved. // #import <TextileCore/Model.pbobjc.h> #import <TextileCore/View.pbobjc.h> #import "FeedItemData.h" #ifndef TextileDelegate_h #define TextileDelegate_h NS_ASSUME_NONNULL_BEGIN /** * Pr...
23.656805
103
0.738619
[ "object", "model" ]
9d50e99ea5a0405caedca0c991db33487bae09a1
1,860
h
C
utils.h
pablogadhi/ParserGenerator
8ac89398958e65c52ae512ba780d755737c6473a
[ "MIT" ]
null
null
null
utils.h
pablogadhi/ParserGenerator
8ac89398958e65c52ae512ba780d755737c6473a
[ "MIT" ]
null
null
null
utils.h
pablogadhi/ParserGenerator
8ac89398958e65c52ae512ba780d755737c6473a
[ "MIT" ]
null
null
null
#ifndef UTILS_H #define UTILS_H #include <vector> namespace { template <class T> bool is_item_in_vector(T item, std::vector<T> vec) { for (T i : vec) { if (i == item) { return true; } } return false; } template <class T> bool is_item_ptr_in_vector(T item, std::vec...
16.756757
73
0.466129
[ "vector" ]
9d5286378389140d0adb82cf86de9ff540904324
8,518
h
C
Sources/Elastos/Frameworks/Droid/Base/Core/inc/elastos/droid/view/FocusFinder.h
jingcao80/Elastos
d0f39852356bdaf3a1234743b86364493a0441bc
[ "Apache-2.0" ]
7
2017-07-13T10:34:54.000Z
2021-04-16T05:40:35.000Z
Sources/Elastos/Frameworks/Droid/Base/Core/inc/elastos/droid/view/FocusFinder.h
jingcao80/Elastos
d0f39852356bdaf3a1234743b86364493a0441bc
[ "Apache-2.0" ]
null
null
null
Sources/Elastos/Frameworks/Droid/Base/Core/inc/elastos/droid/view/FocusFinder.h
jingcao80/Elastos
d0f39852356bdaf3a1234743b86364493a0441bc
[ "Apache-2.0" ]
9
2017-07-13T12:33:20.000Z
2021-06-19T02:46:48.000Z
//========================================================================= // Copyright (C) 2012 The Elastos Open Source Project // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // ...
29.992958
97
0.584409
[ "geometry", "object" ]
9d564fc92c0a199bd2b7d227cfd90301281bcd9d
533
h
C
Rocket/Render/SoftRender/Render/SoftBuffer.h
rocketman123456/RocketEngine
ede1670d70c4689a5dc8543ca5351e8f23fcb840
[ "Apache-2.0" ]
null
null
null
Rocket/Render/SoftRender/Render/SoftBuffer.h
rocketman123456/RocketEngine
ede1670d70c4689a5dc8543ca5351e8f23fcb840
[ "Apache-2.0" ]
null
null
null
Rocket/Render/SoftRender/Render/SoftBuffer.h
rocketman123456/RocketEngine
ede1670d70c4689a5dc8543ca5351e8f23fcb840
[ "Apache-2.0" ]
null
null
null
#pragma once #include "Render/RenderBuffer.h" #include <Eigen/Eigen> #include <cstdint> #include <vector> namespace Rocket { class SoftBuffer : _implements_ RenderBuffer { public: virtual ~SoftBuffer() = default; void SetPixel(const Eigen::Vector3f& point, const Eigen::Vector3f& color); ...
20.5
82
0.662289
[ "render", "vector" ]
9d5667ae8ee7c1ed0e04badc8b3dd5cd3660423c
219
h
C
nanocv/functions/function_powell.h
0x0all/nanocv
dc58dea6b4eb7be2089b168d39c2b02aa2730741
[ "MIT" ]
null
null
null
nanocv/functions/function_powell.h
0x0all/nanocv
dc58dea6b4eb7be2089b168d39c2b02aa2730741
[ "MIT" ]
null
null
null
nanocv/functions/function_powell.h
0x0all/nanocv
dc58dea6b4eb7be2089b168d39c2b02aa2730741
[ "MIT" ]
1
2018-08-02T02:41:37.000Z
2018-08-02T02:41:37.000Z
#pragma once #include "function.h" namespace ncv { /// /// \brief create Powell function tests /// NANOCV_PUBLIC std::vector<function_t> make_powell_funcs(ncv::size_t max_dims = 32); }
18.25
91
0.621005
[ "vector" ]
9d5759686b737772f8a0b10df824f7ee7f2610c9
4,324
c
C
hv/test/kvm-unit-tests/lib/arm/processor.c
wtliang110/lk_hv
fbbbb280114c44bf321b8f02301a84e3c469d8a2
[ "MIT" ]
4
2022-02-24T06:16:42.000Z
2022-02-24T23:49:29.000Z
hv/test/kvm-unit-tests/lib/arm/processor.c
wtliang110/lk_hv
fbbbb280114c44bf321b8f02301a84e3c469d8a2
[ "MIT" ]
null
null
null
hv/test/kvm-unit-tests/lib/arm/processor.c
wtliang110/lk_hv
fbbbb280114c44bf321b8f02301a84e3c469d8a2
[ "MIT" ]
null
null
null
/* * processor control and status functions * * Copyright (C) 2014, Red Hat Inc, Andrew Jones <drjones@redhat.com> * * This work is licensed under the terms of the GNU LGPL, version 2. */ #include <libcflat.h> #include <asm/ptrace.h> #include <asm/processor.h> #include <asm/thread_info.h> static const char *proc...
28.261438
72
0.621184
[ "vector" ]
9d5e0aa331e5afbbed87365ef4b9a1505930112b
9,100
h
C
source/libs/concurrent/c/public/icConcurrent/icThreadSafeWrapper.h
scthunderbolt/zilker-sdk
00b15cb8b69fcba9f61c95ca61dfd860e138ad46
[ "BSD-3-Clause" ]
null
null
null
source/libs/concurrent/c/public/icConcurrent/icThreadSafeWrapper.h
scthunderbolt/zilker-sdk
00b15cb8b69fcba9f61c95ca61dfd860e138ad46
[ "BSD-3-Clause" ]
2
2022-01-17T14:58:12.000Z
2022-01-17T16:35:55.000Z
source/libs/concurrent/c/public/icConcurrent/icThreadSafeWrapper.h
scthunderbolt/zilker-sdk
00b15cb8b69fcba9f61c95ca61dfd860e138ad46
[ "BSD-3-Clause" ]
6
2021-04-26T12:37:27.000Z
2022-01-17T13:45:43.000Z
/* * Copyright 2021 Comcast Cable Communications Management, LLC * * 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...
36.111111
127
0.755934
[ "object" ]
9d67c4f83e758fcf77d45b77d38d056aecfceb8d
14,850
h
C
applications/physbam/physbam-lib/Public_Library/PhysBAM_Geometry/Topology_Based_Geometry_Computations/TRIANGULATED_SURFACE_REFRESH.h
schinmayee/nimbus
170cd15e24a7a88243a6ea80aabadc0fc0e6e177
[ "BSD-3-Clause" ]
20
2017-07-03T19:09:09.000Z
2021-09-10T02:53:56.000Z
applications/physbam/physbam-lib/Public_Library/PhysBAM_Geometry/Topology_Based_Geometry_Computations/TRIANGULATED_SURFACE_REFRESH.h
schinmayee/nimbus
170cd15e24a7a88243a6ea80aabadc0fc0e6e177
[ "BSD-3-Clause" ]
null
null
null
applications/physbam/physbam-lib/Public_Library/PhysBAM_Geometry/Topology_Based_Geometry_Computations/TRIANGULATED_SURFACE_REFRESH.h
schinmayee/nimbus
170cd15e24a7a88243a6ea80aabadc0fc0e6e177
[ "BSD-3-Clause" ]
9
2017-09-17T02:05:06.000Z
2020-01-31T00:12:01.000Z
//##################################################################### // Copyright 2009. // This file is part of PhysBAM whose distribution is governed by the license contained in the accompanying file PHYSBAM_COPYRIGHT.txt. //##################################################################### #ifndef __TRIANGULATE...
51.5625
219
0.611044
[ "mesh", "vector" ]
9d67f31b6e8459051dbed07a09989daf328c3cb3
4,328
h
C
lib/rendercore_vulkan_rt/vulkan_shader_binding_table_generator.h
Logan-Shi/lighthouse2
23d9d77e29f372805052cc11caba89c2eb7da016
[ "Apache-2.0" ]
2
2021-12-24T18:05:27.000Z
2022-01-28T03:22:25.000Z
lib/rendercore_vulkan_rt/vulkan_shader_binding_table_generator.h
libreliu/lighthouse2-nrc-refactor
8778558ec7517dba3d75ab25fa67560e06d1d38e
[ "Apache-2.0" ]
null
null
null
lib/rendercore_vulkan_rt/vulkan_shader_binding_table_generator.h
libreliu/lighthouse2-nrc-refactor
8778558ec7517dba3d75ab25fa67560e06d1d38e
[ "Apache-2.0" ]
1
2022-01-28T03:20:02.000Z
2022-01-28T03:20:02.000Z
/* shader_binding_table_generator.h - Copyright 2019/2021 Utrecht University 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 requi...
41.219048
104
0.759473
[ "object", "vector" ]
9d6a97b5f0419b2741e7f2726ff8b7bd70ff143a
1,844
h
C
mindspore/lite/micro/coder/opcoders/base/reduce_base_coder.h
GeekHee/mindspore
896b8e5165dd0a900ed5a39e0fb23525524bf8b0
[ "Apache-2.0" ]
null
null
null
mindspore/lite/micro/coder/opcoders/base/reduce_base_coder.h
GeekHee/mindspore
896b8e5165dd0a900ed5a39e0fb23525524bf8b0
[ "Apache-2.0" ]
null
null
null
mindspore/lite/micro/coder/opcoders/base/reduce_base_coder.h
GeekHee/mindspore
896b8e5165dd0a900ed5a39e0fb23525524bf8b0
[ "Apache-2.0" ]
null
null
null
/** * Copyright 2020 Huawei Technologies Co., Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law...
30.733333
100
0.747289
[ "vector", "model" ]
9d7a1342b54c447a73b5651ef31d79c708b19473
1,128
h
C
applications/ParticlesEditor/include/Render/Particles/ParticlesDrawCommonData.h
AluminiumRat/mtt
3052f8ad0ffabead05a1033e1d714a61e77d0aa8
[ "MIT" ]
null
null
null
applications/ParticlesEditor/include/Render/Particles/ParticlesDrawCommonData.h
AluminiumRat/mtt
3052f8ad0ffabead05a1033e1d714a61e77d0aa8
[ "MIT" ]
null
null
null
applications/ParticlesEditor/include/Render/Particles/ParticlesDrawCommonData.h
AluminiumRat/mtt
3052f8ad0ffabead05a1033e1d714a61e77d0aa8
[ "MIT" ]
null
null
null
#pragma once #include <optional> #include <vector> #include <mtt/render/Pipeline/Buffer.h> #include <mtt/render/Pipeline/Sampler.h> #include <mtt/render/Pipeline/Texture2D.h> class ParticlesDrawCommonData { public: struct TextureData { std::shared_ptr<mtt::Texture2D> texture; uint8_t extent; }; public...
24.521739
80
0.765071
[ "render", "vector" ]
9d82bee150f3998c92757d77ea05dfbaee3000a1
11,705
h
C
tests/api_v2/types/complex_base.h
asherikov/ariles
cab7f0498f036fbb15ae152804ead56200af5d45
[ "Apache-2.0" ]
4
2020-03-08T17:09:25.000Z
2021-05-02T08:53:14.000Z
tests/api_v2/types/complex_base.h
asherikov/ariles
cab7f0498f036fbb15ae152804ead56200af5d45
[ "Apache-2.0" ]
12
2019-09-19T09:35:51.000Z
2021-07-08T18:49:20.000Z
tests/api_v2/types/complex_base.h
asherikov/ariles
cab7f0498f036fbb15ae152804ead56200af5d45
[ "Apache-2.0" ]
3
2020-06-02T08:14:47.000Z
2021-05-02T08:54:09.000Z
/** @file @author Alexander Sherikov @copyright 2018 Alexander Sherikov, Licensed under the Apache License, Version 2.0. (see @ref LICENSE or http://www.apache.org/licenses/LICENSE-2.0) @brief */ #pragma once #include "enum.h" namespace ariles_tests { template <class t_ConfigurableComplex>...
38.251634
119
0.598804
[ "vector" ]
9d85cf6a43ea1e5ad761d3b04507cdb4ba08a752
3,032
h
C
DearPyGui/src/ui/AppItems/mvTextureItems.h
SpikingNeurons/DearPyGui
5d706edd524fa52140153bd8c9e5a43a6d0c7d87
[ "MIT" ]
87
2020-07-28T17:21:34.000Z
2020-08-12T12:31:17.000Z
DearPyGui/src/ui/AppItems/mvTextureItems.h
SpikingNeurons/DearPyGui
5d706edd524fa52140153bd8c9e5a43a6d0c7d87
[ "MIT" ]
33
2020-06-05T17:24:07.000Z
2020-07-23T15:22:49.000Z
DearPyGui/src/ui/AppItems/mvTextureItems.h
SpikingNeurons/DearPyGui
5d706edd524fa52140153bd8c9e5a43a6d0c7d87
[ "MIT" ]
3
2020-07-27T20:05:03.000Z
2020-08-10T22:33:17.000Z
#pragma once #include "mvItemRegistry.h" #include "dearpygui.h" #include "cpp.hint" class mvTextureRegistry : public mvAppItem { public: explicit mvTextureRegistry(mvUUID uuid); void draw(ImDrawList* drawlist, float x, float y) override; void show_debugger(); private: int _selection = -1; }; cla...
26.137931
95
0.665237
[ "vector" ]
9d88fc758f86780c529fb10d09b4794989877f78
3,089
h
C
ds/security/csps/cryptoflex/slbiop/ioplock.h
npocmaka/Windows-Server-2003
5c6fe3db626b63a384230a1aa6b92ac416b0765f
[ "Unlicense" ]
17
2020-11-13T13:42:52.000Z
2021-09-16T09:13:13.000Z
ds/security/csps/cryptoflex/slbiop/ioplock.h
sancho1952007/Windows-Server-2003
5c6fe3db626b63a384230a1aa6b92ac416b0765f
[ "Unlicense" ]
2
2020-10-19T08:02:06.000Z
2020-10-19T08:23:18.000Z
ds/security/csps/cryptoflex/slbiop/ioplock.h
sancho1952007/Windows-Server-2003
5c6fe3db626b63a384230a1aa6b92ac416b0765f
[ "Unlicense" ]
14
2020-11-14T09:43:20.000Z
2021-08-28T08:59:57.000Z
// IOPLock.h: interface for the CIOPLock class. // // There is a CIOPLock object associated with each card object. The card object passes in its reader // name to the CIOPLock object in order to create the mutex by name. // ////////////////////////////////////////////////////////////////////// #if !defined(AFX...
26.86087
102
0.692457
[ "object" ]
9d8ac8d4ef9b295016f5ec2d35a9cab7c2d0cabb
4,359
h
C
src/ast/public/aeon/ast/impl/function_collection_impl.h
aeon-engine/libaeon
e42b39e621dcd0a0fba05e1c166fc688288fb69b
[ "BSD-2-Clause" ]
7
2017-02-19T16:22:16.000Z
2021-03-02T05:47:39.000Z
src/ast/public/aeon/ast/impl/function_collection_impl.h
aeon-engine/libaeon
e42b39e621dcd0a0fba05e1c166fc688288fb69b
[ "BSD-2-Clause" ]
61
2017-05-29T06:11:17.000Z
2021-03-28T21:51:44.000Z
src/ast/public/aeon/ast/impl/function_collection_impl.h
aeon-engine/libaeon
e42b39e621dcd0a0fba05e1c166fc688288fb69b
[ "BSD-2-Clause" ]
2
2017-05-28T17:17:40.000Z
2017-07-14T21:45:16.000Z
// Distributed under the BSD 2-Clause License - Copyright 2012-2021 Robin Degen #pragma once namespace aeon::ast { template <typename T> inline ast_function_collection<T>::ast_function_collection(std::vector<T> vec) noexcept : ast_entity_collection<T>{std::move(vec)} { } template <typename T> inline auto ast_fu...
33.790698
118
0.629732
[ "vector" ]
9d8b97300a6a3527ca901a4d60e86ec91a9ae310
507
h
C
src/object/datatype/struct.h
ArgonLang/Argon
462d3d8721acd5131894bcbfa0214b0cbcffdf66
[ "Apache-2.0" ]
13
2021-06-24T17:50:20.000Z
2022-03-13T23:00:16.000Z
src/object/datatype/struct.h
ArgonLang/Argon
462d3d8721acd5131894bcbfa0214b0cbcffdf66
[ "Apache-2.0" ]
null
null
null
src/object/datatype/struct.h
ArgonLang/Argon
462d3d8721acd5131894bcbfa0214b0cbcffdf66
[ "Apache-2.0" ]
1
2022-03-31T22:58:42.000Z
2022-03-31T22:58:42.000Z
// This source file is part of the Argon project. // // Licensed under the Apache License v2.0 #ifndef ARGON_OBJECT_STRUCT_H_ #define ARGON_OBJECT_STRUCT_H_ #include <object/arobject.h> #include "namespace.h" namespace argon::object { struct Struct : ArObject { Namespace *names; }; extern const...
21.125
95
0.725838
[ "object" ]
9d96d6c0c13fc7e8b923a383f2927938a7c48b7c
2,626
h
C
myutils/myutils_lib/src/myutils/myutils_c/math_stats.h
juanbarrios/multimedia_tools
91fe64779168c3dd3ad4e51e089df9ccad5f176b
[ "BSD-2-Clause" ]
6
2015-09-08T00:14:59.000Z
2018-09-11T09:46:40.000Z
myutils/myutils_lib/src/myutils/myutils_c/math_stats.h
juanbarrios/multimedia_tools
91fe64779168c3dd3ad4e51e089df9ccad5f176b
[ "BSD-2-Clause" ]
null
null
null
myutils/myutils_lib/src/myutils/myutils_c/math_stats.h
juanbarrios/multimedia_tools
91fe64779168c3dd3ad4e51e089df9ccad5f176b
[ "BSD-2-Clause" ]
1
2020-11-13T15:55:30.000Z
2020-11-13T15:55:30.000Z
/* * Copyright (C) 2012-2015, Juan Manuel Barrios <http://juan.cl/> * All rights reserved. * * This file is part of MultimediaTools. https://github.com/juanbarrios/multimedia_tools * MultimediaTools is made available under the terms of the BSD 2-Clause License. */ #ifndef MY_MATH_STATS_H #define MY_MATH_STATS_H ...
31.261905
88
0.800076
[ "vector" ]