hexsha stringlengths 40 40 | size int64 5 2.72M | ext stringclasses 5
values | lang stringclasses 1
value | max_stars_repo_path stringlengths 3 976 | max_stars_repo_name stringlengths 5 113 | max_stars_repo_head_hexsha stringlengths 40 78 | max_stars_repo_licenses listlengths 1 10 | max_stars_count float64 1 191k ⌀ | max_stars_repo_stars_event_min_datetime stringdate 2015-01-01 00:01:43 2022-03-31 23:59:48 ⌀ | max_stars_repo_stars_event_max_datetime stringdate 2015-01-01 00:06:24 2022-03-31 23:59:53 ⌀ | max_issues_repo_path stringlengths 3 976 | max_issues_repo_name stringlengths 5 116 | max_issues_repo_head_hexsha stringlengths 40 78 | max_issues_repo_licenses listlengths 1 10 | max_issues_count float64 1 134k ⌀ | 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 976 | max_forks_repo_name stringlengths 5 116 | max_forks_repo_head_hexsha stringlengths 40 78 | max_forks_repo_licenses listlengths 1 10 | max_forks_count float64 1 105k ⌀ | max_forks_repo_forks_event_min_datetime stringdate 2015-01-01 00:01:19 2022-03-31 23:59:49 ⌀ | max_forks_repo_forks_event_max_datetime stringdate 2015-01-03 12:00:57 2022-03-31 23:59:49 ⌀ | content stringlengths 5 2.72M | avg_line_length float64 1.38 573k | max_line_length int64 2 1.01M | alphanum_fraction float64 0 1 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
288c76a4379dea43bc4edacef36a45869c05c51e | 470 | h | C | src/lib/fmath/configure.h | eduardomgutierrez/RIAF_radproc | 0e4166f04cce27fed2cbd2c7078023c10e0e8d12 | [
"MIT"
] | 1 | 2021-08-30T06:56:03.000Z | 2021-08-30T06:56:03.000Z | src/lib/fmath/configure.h | eduardomgutierrez/RIAF_radproc | 0e4166f04cce27fed2cbd2c7078023c10e0e8d12 | [
"MIT"
] | null | null | null | src/lib/fmath/configure.h | eduardomgutierrez/RIAF_radproc | 0e4166f04cce27fed2cbd2c7078023c10e0e8d12 | [
"MIT"
] | null | null | null | #pragma once
#include "RungeKutta.h"
#include <boost/property_tree/ptree.hpp>
void fmath_configure(boost::property_tree::ptree& cfg)
{
DefOpt_RungeKutta.samples_x = cfg.get<int>("math.runge-kutta-2.samples.x", DefOpt_RungeKutta.samples_x);
DefOpt_RungeKutta.samples_y = cfg.get<int>("math.runge-kutta-2.samples.y", ... | 36.153846 | 117 | 0.787234 |
288e77cb57af3419c9ab7159e10f3ce3f8a62d88 | 848 | c | C | sources/user_interface/hud_main.c | KernelOverseer/KSICARDOOM | 08bef9229b05a3229288777bf187e2b84fe5a6a0 | [
"MIT"
] | 16 | 2020-05-11T23:12:16.000Z | 2021-04-19T18:28:15.000Z | sources/user_interface/hud_main.c | KernelOverseer/KSICARDOOM | 08bef9229b05a3229288777bf187e2b84fe5a6a0 | [
"MIT"
] | 4 | 2020-05-06T21:22:11.000Z | 2020-05-20T17:46:59.000Z | sources/user_interface/hud_main.c | KernelOverseer/KSICARDOOM | 08bef9229b05a3229288777bf187e2b84fe5a6a0 | [
"MIT"
] | null | null | null | #include "doom_nukem.h"
static int ft_place_label_value(t_doom_env *env, char *label,
char *value, t_text rect)
{
t_sdl_image *main_image;
main_image = env->main_scene.render_image;
ft_sdl_put_text(label, rect,
env->menu_manager->medium_font, main_image);
ft_sdl_put_text(value, (t_text){rect.x + 200, rect.y,
... | 26.5 | 61 | 0.721698 |
288f4527d3ecaff72836e108e7daa59bb7d1e07a | 360 | c | C | Books/Teach-YourSelf-C.Herbert-Schildt/chapter-10/Review-Skills-Check/b02.c | shihab4t/Competitive-Programming | e8eec7d4f7d86bfa1c00b7fbbedfd6a1518f19be | [
"Unlicense"
] | 3 | 2021-06-15T01:19:23.000Z | 2022-03-16T18:23:53.000Z | Books/Teach-YourSelf-C.Herbert-Schildt/chapter-10/Review-Skills-Check/b02.c | shihab4t/Competitive-Programming | e8eec7d4f7d86bfa1c00b7fbbedfd6a1518f19be | [
"Unlicense"
] | null | null | null | Books/Teach-YourSelf-C.Herbert-Schildt/chapter-10/Review-Skills-Check/b02.c | shihab4t/Competitive-Programming | e8eec7d4f7d86bfa1c00b7fbbedfd6a1518f19be | [
"Unlicense"
] | null | null | null | #include <stdio.h>
int main(void)
{
FILE *fp;
if ( (fp = fopen("outfile_temp.txt", "w")) == NULL ) {
printf("File opening faile\n");
return 1;
}
fprintf(fp, "%s %lf %X %c\n", "this is a string", 1230.23, 0x1FFF, 'A');
if (ferror(fp)) {
printf("File writing faile\n");
... | 18 | 76 | 0.491667 |
28910a6391956d37ee19fa3c1668dbd01d2f0a65 | 10,282 | c | C | peep.c | daveshields/AdaEd | 57daecfb7ccadfd9aaf13b4d54f51065affbe599 | [
"BSD-4-Clause",
"BSD-3-Clause"
] | 3 | 2019-05-11T04:11:33.000Z | 2021-04-18T14:55:43.000Z | peep.c | daveshields/AdaEd | 57daecfb7ccadfd9aaf13b4d54f51065affbe599 | [
"BSD-4-Clause",
"BSD-3-Clause"
] | null | null | null | peep.c | daveshields/AdaEd | 57daecfb7ccadfd9aaf13b4d54f51065affbe599 | [
"BSD-4-Clause",
"BSD-3-Clause"
] | 2 | 2016-10-29T22:52:56.000Z | 2021-04-18T14:55:45.000Z | /*
* Copyright (C) 1985-1992 New York University
*
* This file is part of the Ada/Ed-C system. See the Ada/Ed README file for
* warranty (none) and distribution info and also the GNU General Public
* License for more details.
*/
#define GEN
#include "hdr.h"
#include "vars.h"
#include "gvars.h"
#include "ops.... | 25.513648 | 76 | 0.656001 |
2896fcbb1bd37776e1092ba47f620af5219a0670 | 113 | c | C | apostila_c/captulo_1/a3.c | Douglasbm040/PROGRAMACAO-1- | 3f77aa45f44ed75ba0bf3a647444869e959d7591 | [
"MIT"
] | null | null | null | apostila_c/captulo_1/a3.c | Douglasbm040/PROGRAMACAO-1- | 3f77aa45f44ed75ba0bf3a647444869e959d7591 | [
"MIT"
] | null | null | null | apostila_c/captulo_1/a3.c | Douglasbm040/PROGRAMACAO-1- | 3f77aa45f44ed75ba0bf3a647444869e959d7591 | [
"MIT"
] | null | null | null | #include <stdio.h>
int main(){
float media = (5+8+12)/3;
printf("a medida e %.2f",media);
return 0 ;
} | 14.125 | 35 | 0.557522 |
289a4ef66888911bc4f180763a2a65de1763aad2 | 724 | h | C | osx/KBKit/KBKit/System/KBSharedFileList.h | jamesmwright/client | b37a74a1ec263f3c51fcb8521103720adc41fd9a | [
"BSD-3-Clause"
] | 2 | 2019-05-24T14:10:09.000Z | 2019-05-24T14:27:56.000Z | osx/KBKit/KBKit/System/KBSharedFileList.h | jamesmwright/client | b37a74a1ec263f3c51fcb8521103720adc41fd9a | [
"BSD-3-Clause"
] | 2 | 2021-05-09T11:02:01.000Z | 2022-02-10T18:57:58.000Z | osx/KBKit/KBKit/System/KBSharedFileList.h | MichaelAquilina/client | 0300a8228787479799ebb2734ef82d75d07c127f | [
"BSD-3-Clause"
] | null | null | null | //
// KBSharedFileList.h
// KBKit
//
// Created by Gabriel on 2/23/16.
// Copyright © 2016 Gabriel Handford. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface KBSharedFileList : NSObject
+ (void)findLoginItemForURL:(NSURL *)URL completion:(void (^)(LSSharedFileListRef fileListRef, CFArrayRef i... | 30.166667 | 175 | 0.756906 |
289d356171d303b6f418aa6b69a817bfcfea6a01 | 58,637 | c | C | usr/src/lib/fm/topo/libtopo/common/topo_xml.c | AsahiOS/gate | 283d47da4e17a5871d9d575e7ffb81e8f6c52e51 | [
"MIT"
] | null | null | null | usr/src/lib/fm/topo/libtopo/common/topo_xml.c | AsahiOS/gate | 283d47da4e17a5871d9d575e7ffb81e8f6c52e51 | [
"MIT"
] | null | null | null | usr/src/lib/fm/topo/libtopo/common/topo_xml.c | AsahiOS/gate | 283d47da4e17a5871d9d575e7ffb81e8f6c52e51 | [
"MIT"
] | 1 | 2020-12-30T00:04:16.000Z | 2020-12-30T00:04:16.000Z | /*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* or http://www.opensolar... | 27.349347 | 79 | 0.650784 |
28a048c5a3f03d750bb0d226b22715035db4976e | 3,284 | h | C | src/http2/stream.h | wooshdev/webserver | e42771670c3ad252a17ca374ae21dc8cbc948df1 | [
"Zlib"
] | 5 | 2019-12-05T15:25:14.000Z | 2020-02-10T14:51:12.000Z | src/http2/stream.h | wooshdev/webserver | e42771670c3ad252a17ca374ae21dc8cbc948df1 | [
"Zlib"
] | null | null | null | src/http2/stream.h | wooshdev/webserver | e42771670c3ad252a17ca374ae21dc8cbc948df1 | [
"Zlib"
] | null | null | null | /**
* Copyright (C) 2019-2020 Tristan
* For conditions of distribution and use, see copyright notice in the COPYING file.
*/
#ifndef STREAM_H
#define STREAM_H
#include <stdint.h>
#define STREAM_LIST_STEP_SIZE 4
typedef enum {
/* IDLE streams shouldn't really exists in code,
* since they're essentially uniniti... | 25.457364 | 84 | 0.695189 |
28a382ff881c6f51e3bcf631deee0f6bf70ffe9f | 168 | h | C | project/CppIntroduction/CppIntroduction/BitConverter.h | forsbergsskola-se/marczaku-gp20-2021-0524-nim-game-Jackoberto | b058b7f031c922f861a3b451d7db2a9d9a56c43f | [
"MIT"
] | null | null | null | project/CppIntroduction/CppIntroduction/BitConverter.h | forsbergsskola-se/marczaku-gp20-2021-0524-nim-game-Jackoberto | b058b7f031c922f861a3b451d7db2a9d9a56c43f | [
"MIT"
] | null | null | null | project/CppIntroduction/CppIntroduction/BitConverter.h | forsbergsskola-se/marczaku-gp20-2021-0524-nim-game-Jackoberto | b058b7f031c922f861a3b451d7db2a9d9a56c43f | [
"MIT"
] | null | null | null | #pragma once
class BitConverter
{
void decimalToBinary(unsigned n);
void decimalToBinaryExtra(unsigned n);
unsigned getNumber();
public:
int run();
};
| 15.272727 | 42 | 0.696429 |
28a4ab4757798008e0fc6844868b0096f9c3eafb | 11,415 | h | C | src/phobosic/TGlbEvent.h | rnavier/rnavier | 6f30abc9969daa1a8e6b72d0c1069e2a477ad610 | [
"MIT"
] | 2 | 2015-08-04T14:02:15.000Z | 2021-05-05T15:03:33.000Z | src/phobosic/TGlbEvent.h | rnavier/rnavier | 6f30abc9969daa1a8e6b72d0c1069e2a477ad610 | [
"MIT"
] | null | null | null | src/phobosic/TGlbEvent.h | rnavier/rnavier | 6f30abc9969daa1a8e6b72d0c1069e2a477ad610 | [
"MIT"
] | null | null | null | /*
* Copyright (c) 2015, Aleksas Mazeliauskas and Derek Teaney
* All rights reserved.
*
* rnavier is distributed under MIT license;
* see the LICENSE file that should be present in the root
* of the source distribution, or alternately available at:
* https://github.com/rnavier/rnavier/
*/
//! \addtogroup GlbEve... | 35.123077 | 105 | 0.606045 |
28a4f4ac073490c84135c41920c15e374dd6df26 | 4,769 | h | C | src/5Modules/Mod_INA219.h | unicab369/esp_mess | 459ba88355f917c05264abc02ea959b203d7046d | [
"MIT"
] | 1 | 2021-08-17T15:51:44.000Z | 2021-08-17T15:51:44.000Z | src/5Modules/Mod_INA219.h | unicab369/esp_mess | 459ba88355f917c05264abc02ea959b203d7046d | [
"MIT"
] | null | null | null | src/5Modules/Mod_INA219.h | unicab369/esp_mess | 459ba88355f917c05264abc02ea959b203d7046d | [
"MIT"
] | null | null | null |
#include <Adafruit_INA219.h>
// #define INA219_ADDRESS (0x45) // 0x45 A0 & A1 jumpers, 0x41 A0 jumper
class INA219 {
Adafruit_INA219 ina219;
bool didStart = false;
public:
INA219() {
ina219 = Adafruit_INA219(0x45);
}
void begin(TwoWire *wire = &Wire) {
... | 30.375796 | 119 | 0.547075 |
28a5b1b74d28cf0734761b20d312e9af4db74add | 1,121 | h | C | packages/legacycomponents/mcstas2/lib/Gravity.h | mcvine/mcvine | 42232534b0c6af729628009bed165cd7d833789d | [
"BSD-3-Clause"
] | 5 | 2017-01-16T03:59:47.000Z | 2020-06-23T02:54:19.000Z | packages/legacycomponents/mcstas2/lib/Gravity.h | mcvine/mcvine | 42232534b0c6af729628009bed165cd7d833789d | [
"BSD-3-Clause"
] | 293 | 2015-10-29T17:45:52.000Z | 2022-01-07T16:31:09.000Z | packages/legacycomponents/mcstas2/lib/Gravity.h | mcvine/mcvine | 42232534b0c6af729628009bed165cd7d833789d | [
"BSD-3-Clause"
] | 1 | 2019-05-25T00:53:31.000Z | 2019-05-25T00:53:31.000Z | // -*- C++ -*-
//
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
//
// Jiao Lin
// California Institute of Technology
// (C) 2005 All Rights Reserved
//
// {LicenseText}
//
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~... | 21.980392 | 87 | 0.487957 |
28adf7e2241b30ca9528a80ac392487290c1ca62 | 2,177 | h | C | AliPayForDebug/AliPayForDebug/AlipayWallet_Headers/LOTTransformInterpolator.h | ceekay1991/AliPayForDebug | 5795e5db31e5b649d4758469b752585e63e84d94 | [
"MIT"
] | 5 | 2020-03-29T12:08:37.000Z | 2021-05-26T05:20:11.000Z | AliPayForDebug/AliPayForDebug/AlipayWallet_Headers/LOTTransformInterpolator.h | ceekay1991/AliPayForDebug | 5795e5db31e5b649d4758469b752585e63e84d94 | [
"MIT"
] | null | null | null | AliPayForDebug/AliPayForDebug/AlipayWallet_Headers/LOTTransformInterpolator.h | ceekay1991/AliPayForDebug | 5795e5db31e5b649d4758469b752585e63e84d94 | [
"MIT"
] | 5 | 2020-04-17T03:24:04.000Z | 2022-03-30T05:42:17.000Z | //
// Generated by class-dump 3.5 (64 bit) (Debug version compiled Sep 17 2017 16:24:48).
//
// class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2015 by Steve Nygard.
//
#import <objc/NSObject.h>
@class LOTNumberInterpolator, LOTPointInterpolator, LOTSizeInterpolator, NSString;
@interface LOTTransformI... | 53.097561 | 137 | 0.808452 |
28ae0217447d193163d2a62edb65f07fbf66324b | 598 | c | C | cpu/cpu-libwrap.c | RWTH-ACS/cricket | 16a72595e5825377f8545ae65d678dfdcff0fa0b | [
"MIT"
] | 6 | 2021-05-24T03:36:01.000Z | 2022-03-29T12:21:09.000Z | cpu/cpu-libwrap.c | RWTH-ACS/cricket | 16a72595e5825377f8545ae65d678dfdcff0fa0b | [
"MIT"
] | null | null | null | cpu/cpu-libwrap.c | RWTH-ACS/cricket | 16a72595e5825377f8545ae65d678dfdcff0fa0b | [
"MIT"
] | 3 | 2021-07-07T05:41:19.000Z | 2022-03-08T08:46:36.000Z | #include <stdlib.h>
#include "cpu-libwrap.h"
#include "log.h"
static const char* LIBCUDA_PATH;
static void *so_handle;
inline void* libwrap_get_sohandle()
{
if (!so_handle) {
if ( !(so_handle = dlopen(LIBCUDA_PATH, RTLD_LAZY)) ) {
LOGE(LOG_ERROR, "%s", dlerror());
so_handle = NULL... | 20.62069 | 70 | 0.617057 |
28b12923d57e132f9af4a627fa243f3fa592ca47 | 255 | h | C | include/calc_pn_mgx_no_pi_delay.h | chronopoulos/prometheus-node | 477d040f83e0ac149701b843d77880d869dcd26f | [
"MIT"
] | null | null | null | include/calc_pn_mgx_no_pi_delay.h | chronopoulos/prometheus-node | 477d040f83e0ac149701b843d77880d869dcd26f | [
"MIT"
] | null | null | null | include/calc_pn_mgx_no_pi_delay.h | chronopoulos/prometheus-node | 477d040f83e0ac149701b843d77880d869dcd26f | [
"MIT"
] | null | null | null | #ifndef _CALC_PN_MGX_NO_PI_DELAY_H_
#define _CALC_PN_MGX_NO_PI_DELAY_H_
#include <stdint.h>
int calcPNMGXNoPiDelayGetDist(uint16_t **data);
int calcPNMGXNoPiDelayGetAmp(uint16_t **data);
int calcPNMGXNoPiDelayGetInfo(uint16_t **data);
#endif
| 23.181818 | 48 | 0.8 |
28b2bd90573376e4ab9762fd48c4843df290c65f | 79 | c | C | tests/test_expected/law1.c | metatoaster/cellml-api | d7baf9038e42859fa96117db6c9644f9f09ecf8b | [
"W3C"
] | 1 | 2018-12-27T01:06:37.000Z | 2018-12-27T01:06:37.000Z | tests/test_expected/law1.c | metatoaster/cellml-api | d7baf9038e42859fa96117db6c9644f9f09ecf8b | [
"W3C"
] | 1 | 2016-12-05T09:20:14.000Z | 2016-12-05T18:08:05.000Z | tests/test_expected/law1.c | metatoaster/cellml-api | d7baf9038e42859fa96117db6c9644f9f09ecf8b | [
"W3C"
] | 14 | 2015-07-27T13:45:54.000Z | 2022-02-02T05:19:53.000Z | /* Model is underconstrained due to missing initial_value on M (in interface)
| 26.333333 | 77 | 0.78481 |
28b6aea8b54ae740103ed336fdf9c834ba7dff64 | 1,019 | h | C | 0_Exam2_Graph/header/grafo.h | eduherminio/Academic_ArtificialIntelligence | f0ec4d35cef64a1bf6841ea7ecf1d33017b3745f | [
"MIT"
] | 3 | 2017-05-16T22:25:16.000Z | 2019-05-07T16:12:21.000Z | 0_Exam2_Graph/header/grafo.h | eduherminio/Academic_ArtificialIntelligence | f0ec4d35cef64a1bf6841ea7ecf1d33017b3745f | [
"MIT"
] | null | null | null | 0_Exam2_Graph/header/grafo.h | eduherminio/Academic_ArtificialIntelligence | f0ec4d35cef64a1bf6841ea7ecf1d33017b3745f | [
"MIT"
] | null | null | null | #ifndef GRAFO_H_INCLUDED
#define GRAFO_H_INCLUDED
#include <vector>
#include <string>
namespace grafo
{
using std::vector;
using std::string;
struct Nodo
{
string nombre;
// To complete
vector<int> hijos;
vector<int> coste_operadores;
int coste_actual;
int heuristica;
... | 22.644444 | 83 | 0.656526 |
28b6c13cae49d34e6fdd7ad0e65cba785d75fc27 | 3,657 | c | C | src/debugger.c | ushitora-anqou/aqemu | ceb40a47d70e2b2ae826d8cead0cd6dc5d5d6a55 | [
"MIT"
] | 1 | 2020-05-06T08:07:14.000Z | 2020-05-06T08:07:14.000Z | src/debugger.c | ushitora-anqou/aqemu | ceb40a47d70e2b2ae826d8cead0cd6dc5d5d6a55 | [
"MIT"
] | 2 | 2019-04-28T08:20:37.000Z | 2019-05-09T10:35:28.000Z | src/debugger.c | ushitora-anqou/aqemu | ceb40a47d70e2b2ae826d8cead0cd6dc5d5d6a55 | [
"MIT"
] | 1 | 2019-05-09T09:55:38.000Z | 2019-05-09T09:55:38.000Z | #include "debugger.h"
#include "utility.h"
#include <getopt.h>
#define INST_LENGTH 128
static char insts[64 * 1024][INST_LENGTH];
static int ninsts;
void load_insts(FILE *fh)
{
while (fgets(insts[ninsts++], INST_LENGTH, fh))
;
}
_Noreturn void print_usage_and_exit(char *argv0)
{
fprintf(stderr,
... | 26.309353 | 80 | 0.458846 |
28be4b9b6022810ff3a4dcd1e757382aed1d904d | 198 | c | C | Aula/Aula04/exercicio-struct-1.c | AllanGaiteiro/Estrutura_de_Dados | 490116dd47a3861c32e75025777ee60536d04746 | [
"MIT"
] | null | null | null | Aula/Aula04/exercicio-struct-1.c | AllanGaiteiro/Estrutura_de_Dados | 490116dd47a3861c32e75025777ee60536d04746 | [
"MIT"
] | null | null | null | Aula/Aula04/exercicio-struct-1.c | AllanGaiteiro/Estrutura_de_Dados | 490116dd47a3861c32e75025777ee60536d04746 | [
"MIT"
] | null | null | null | #include<stdio.h>
int main (void){
struct cadastros
{
char marca;
char placa;
int ano;
};
struct cadastros carros;
return 0;
} | 9.428571 | 29 | 0.459596 |
28c05bb7cba5f65f55f1077f1c55234952286f14 | 985 | h | C | include/jtorch/sequential.h | jonathantompson/jtorch | 06263b3f45552937c7ac2f3a59e4d59ae92c1ba2 | [
"BSD-2-Clause"
] | 77 | 2015-01-27T03:05:26.000Z | 2020-11-18T12:34:12.000Z | include/jtorch/sequential.h | jonathantompson/jtorch | 06263b3f45552937c7ac2f3a59e4d59ae92c1ba2 | [
"BSD-2-Clause"
] | 6 | 2015-05-28T00:40:46.000Z | 2017-01-04T00:26:08.000Z | include/jtorch/sequential.h | jonathantompson/jtorch | 06263b3f45552937c7ac2f3a59e4d59ae92c1ba2 | [
"BSD-2-Clause"
] | 16 | 2015-02-09T02:23:02.000Z | 2020-04-24T17:23:26.000Z | //
// sequential.h
//
// Created by Jonathan Tompson on 4/2/13.
//
#pragma once
#include <fstream>
#include <iomanip>
#include <iostream>
#include <memory>
#include <vector>
#include "jcl/math/int_types.h"
#include "jtorch/torch_stage.h"
namespace jtorch {
class Sequential : public TorchStage {
public:
// Con... | 21.888889 | 71 | 0.718782 |
28c08e5ee8acbba6569ac4c7cb2b8a118e434d27 | 289 | h | C | src/main/iidxhook-util/clock.h | Soyandroid/bemanitools | 0fd499266f4d724b8eea7217a6fd4e6a0caba948 | [
"Unlicense"
] | 5 | 2021-12-20T02:57:07.000Z | 2022-02-28T20:19:26.000Z | src/main/iidxhook-util/clock.h | Soyandroid/bemanitools | 0fd499266f4d724b8eea7217a6fd4e6a0caba948 | [
"Unlicense"
] | null | null | null | src/main/iidxhook-util/clock.h | Soyandroid/bemanitools | 0fd499266f4d724b8eea7217a6fd4e6a0caba948 | [
"Unlicense"
] | 1 | 2021-12-21T18:49:01.000Z | 2021-12-21T18:49:01.000Z | #ifndef IIDXHOOK_UTIL_CLOCK_H
#define IIDXHOOK_UTIL_CLOCK_H
/**
* Hook clock related calls to avoid chaning the system clock
* time from the operator menu. 9th style is a special case here as it
* allows a max. year of 2009, only.
*/
void iidxhook_util_clock_hook_init(void);
#endif
| 24.083333 | 70 | 0.768166 |
28c0f01a9b0a132727ff4f11581f5559a8d7a8a7 | 964 | c | C | d/tharis/newtharis/rooms/east2.c | Dbevan/SunderingShadows | 6c15ec56cef43c36361899bae6dc08d0ee907304 | [
"MIT"
] | 13 | 2019-07-19T05:24:44.000Z | 2021-11-18T04:08:19.000Z | d/tharis/newtharis/rooms/east2.c | Dbevan/SunderingShadows | 6c15ec56cef43c36361899bae6dc08d0ee907304 | [
"MIT"
] | 4 | 2021-03-15T18:56:39.000Z | 2021-08-17T17:08:22.000Z | d/tharis/newtharis/rooms/east2.c | Dbevan/SunderingShadows | 6c15ec56cef43c36361899bae6dc08d0ee907304 | [
"MIT"
] | 13 | 2019-09-12T06:22:38.000Z | 2022-01-31T01:15:12.000Z | #include <std.h>
#include "../tharis.h"
inherit STORAGE"slum";
void create(){
::create();
set_long(::query_long()+" To the east, the road broadens and the buildings gain a more delicate quality, but the area grows eerily quiet. A dark alleyway leads off between the shabby houses here.%^RESET%^\n");
set_exits(... | 56.705882 | 212 | 0.704357 |
28c3dcc0bdd92b8a1a092751bc0117419140788b | 1,246 | h | C | Source/Lib/Encoder/Codec/EbInitialRateControlReorderQueue.h | GuillaumePugnet/SVT-AV1 | cfe2a5eb49cad50a683f1f7aa076c0905bb182af | [
"BSD-3-Clause-Clear",
"BSD-2-Clause"
] | 1,180 | 2019-02-01T08:39:49.000Z | 2020-09-07T14:51:08.000Z | Source/Lib/Encoder/Codec/EbInitialRateControlReorderQueue.h | GuillaumePugnet/SVT-AV1 | cfe2a5eb49cad50a683f1f7aa076c0905bb182af | [
"BSD-3-Clause-Clear",
"BSD-2-Clause"
] | 1,179 | 2019-02-01T18:31:50.000Z | 2020-09-07T07:08:30.000Z | Source/Lib/Encoder/Codec/EbInitialRateControlReorderQueue.h | GuillaumePugnet/SVT-AV1 | cfe2a5eb49cad50a683f1f7aa076c0905bb182af | [
"BSD-3-Clause-Clear",
"BSD-2-Clause"
] | 243 | 2019-02-01T19:10:56.000Z | 2020-09-03T02:09:19.000Z | /*
* Copyright(c) 2019 Intel Corporation
*
* This source code is subject to the terms of the BSD 2 Clause License and
* the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License
* was not distributed with this source code in the LICENSE file, you can
* obtain it at https://www.aomedia.org/license/soft... | 38.9375 | 89 | 0.730337 |
28c506a4615f3d2dc73a18cfcec9d2e0d50e1af5 | 284 | h | C | src/blitter.h | geomodular/px-drummer | 554ac6f204ef53fd2f852fd920b3b9fc0f2f35b5 | [
"MIT"
] | 1 | 2017-12-14T13:26:12.000Z | 2017-12-14T13:26:12.000Z | src/blitter.h | geomodular/px-drummer | 554ac6f204ef53fd2f852fd920b3b9fc0f2f35b5 | [
"MIT"
] | null | null | null | src/blitter.h | geomodular/px-drummer | 554ac6f204ef53fd2f852fd920b3b9fc0f2f35b5 | [
"MIT"
] | null | null | null | #pragma once
#include <SDL2/SDL.h>
struct Blitter
{
SDL_Renderer* renderer;
SDL_Texture* texture;
int tile_width;
int tile_height;
};
void blit(const struct Blitter* blitter, int x, int y, int index);
void blit_ex(const struct Blitter* blitter, int x, int y, int count, ...);
| 17.75 | 74 | 0.71831 |
28c5609a7992b13a97578a134d47c6941afdc30d | 198 | h | C | pyqt-env/lib/python3.8/site-packages/qt5_applications/Qt/lib/QtDBus.framework/Versions/5/Headers/qtdbusversion.h | rawheel/Tvshows-Listing-Desktop-App | 9a47f866c8861990ae2d8355efd6cce8ce51fae3 | [
"MIT"
] | 3 | 2021-11-05T21:09:09.000Z | 2021-11-15T22:48:10.000Z | pyqt-env/lib/python3.8/site-packages/qt5_applications/Qt/lib/QtDBus.framework/Versions/5/Headers/qtdbusversion.h | rawheel/Tvshows-Listing-Desktop-App | 9a47f866c8861990ae2d8355efd6cce8ce51fae3 | [
"MIT"
] | null | null | null | pyqt-env/lib/python3.8/site-packages/qt5_applications/Qt/lib/QtDBus.framework/Versions/5/Headers/qtdbusversion.h | rawheel/Tvshows-Listing-Desktop-App | 9a47f866c8861990ae2d8355efd6cce8ce51fae3 | [
"MIT"
] | null | null | null | /* This file was generated by syncqt. */
#ifndef QT_QTDBUS_VERSION_H
#define QT_QTDBUS_VERSION_H
#define QTDBUS_VERSION_STR "5.15.2"
#define QTDBUS_VERSION 0x050F02
#endif // QT_QTDBUS_VERSION_H
| 19.8 | 40 | 0.79798 |
28ccafbe74d5c276ca76e9b2af8a33d46790208e | 27,138 | c | C | src/backend/utils/misc/faultinjector.c | qiuwenhuifx/PolarDB-for-PostgreSQL | 398902a8ba8cc3a89dc581f3d681971e887e7ebd | [
"Apache-2.0"
] | 202 | 2021-10-13T09:21:34.000Z | 2022-03-31T09:52:47.000Z | src/backend/utils/misc/faultinjector.c | qiuwenhuifx/PolarDB-for-PostgreSQL | 398902a8ba8cc3a89dc581f3d681971e887e7ebd | [
"Apache-2.0"
] | 9 | 2021-11-01T09:10:56.000Z | 2022-03-28T14:24:23.000Z | src/backend/utils/misc/faultinjector.c | qiuwenhuifx/PolarDB-for-PostgreSQL | 398902a8ba8cc3a89dc581f3d681971e887e7ebd | [
"Apache-2.0"
] | 47 | 2021-10-21T07:15:26.000Z | 2022-03-29T11:37:15.000Z | /*-------------------------------------------------------------------------
*
* faultinjector.c
*
* Fault injectors are used for fine control during testing. They allow a
* developer to create deterministic tests for scenarios that are hard to
* reproduce. This is done by programming actions at certain key areas ... | 27.720123 | 118 | 0.686749 |
28cd92d223ce9110be0f510c0f3ad22c7782a23b | 5,138 | c | C | src/peptide-residues.c | tmalliavin/ibp-ng | 80e02767c5d3fcc021c1099edc3eef8dea256687 | [
"MIT"
] | 1 | 2021-02-04T12:30:03.000Z | 2021-02-04T12:30:03.000Z | src/peptide-residues.c | tmalliavin/ibp-ng | 80e02767c5d3fcc021c1099edc3eef8dea256687 | [
"MIT"
] | null | null | null | src/peptide-residues.c | tmalliavin/ibp-ng | 80e02767c5d3fcc021c1099edc3eef8dea256687 | [
"MIT"
] | 2 | 2017-12-11T22:05:25.000Z | 2021-03-30T09:57:56.000Z |
/* include the peptide header. */
#include "peptide.h"
/* peptide_add_residue(): add a residue to a peptide structure based
* on the three-letter residue code.
*
* arguments:
* @P: pointer to the peptide structure to modify.
* @res: residue three-letter code to add.
*
* returns:
* integer indicating whethe... | 26.621762 | 73 | 0.631569 |
28cda601119ec282d5697648f29ea050e54f15d1 | 1,372 | h | C | runtime_probe/function_templates/network.h | strassek/chromiumos-platform2 | 12c953f41f48b8a6b0bd1c181d09bdb1de38325c | [
"BSD-3-Clause"
] | 4 | 2020-07-24T06:54:16.000Z | 2021-06-16T17:13:53.000Z | runtime_probe/function_templates/network.h | strassek/chromiumos-platform2 | 12c953f41f48b8a6b0bd1c181d09bdb1de38325c | [
"BSD-3-Clause"
] | 1 | 2021-04-02T17:35:07.000Z | 2021-04-02T17:35:07.000Z | runtime_probe/function_templates/network.h | strassek/chromiumos-platform2 | 12c953f41f48b8a6b0bd1c181d09bdb1de38325c | [
"BSD-3-Clause"
] | 1 | 2020-11-04T22:31:45.000Z | 2020-11-04T22:31:45.000Z | // Copyright 2020 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 RUNTIME_PROBE_FUNCTION_TEMPLATES_NETWORK_H_
#define RUNTIME_PROBE_FUNCTION_TEMPLATES_NETWORK_H_
#include <memory>
#include <string>
#include <... | 29.191489 | 75 | 0.758746 |
28d168941f944ef363b320d0631132559e5414c7 | 323 | c | C | pagai2/ex/aws_CAV13/32.c | trailofbits/screen | 311e5e4e1a8ee12844b404c5a4d39e27072cbb6f | [
"Apache-2.0"
] | 19 | 2016-10-24T22:12:24.000Z | 2022-03-16T03:36:21.000Z | ex/aws_CAV13/32.c | julienhenry/pagai | d58578c460b755c7239987350202ff35bd9ec2aa | [
"CECILL-B"
] | 8 | 2016-10-05T19:35:21.000Z | 2016-11-10T02:15:57.000Z | pagai2/ex/aws_CAV13/32.c | trailofbits/screen | 311e5e4e1a8ee12844b404c5a4d39e27072cbb6f | [
"Apache-2.0"
] | 4 | 2016-12-22T04:53:00.000Z | 2022-03-16T03:36:24.000Z | #include "../../pagai_assert.h"
int unknown1();
int unknown2();
int unknown3();
int unknown4();
void main(int n)
{
int k=1;
int i=1;
int j=0;
while(i<=n-1) {
if(k <= i-1)
ERROR: assert(0);
j=0;
while(j<=i-1) {
k += (i-j);
j++;
}
if(j < i)
return;
i++;
}
}
... | 11.962963 | 32 | 0.436533 |
28d17f5066fd0f50f1a6bf4a41431f6a24621700 | 718 | h | C | MyCF/Classes/News/CommonModel/AndyNewsCommonFrame.h | lyandy/MyCF_iOS | 81c8ed136898384a828abaa9aae5352958c73f0b | [
"MIT"
] | 1 | 2019-02-10T01:52:33.000Z | 2019-02-10T01:52:33.000Z | MyCF/Classes/News/CommonModel/AndyNewsCommonFrame.h | lyandy/MyCF_iOS | 81c8ed136898384a828abaa9aae5352958c73f0b | [
"MIT"
] | null | null | null | MyCF/Classes/News/CommonModel/AndyNewsCommonFrame.h | lyandy/MyCF_iOS | 81c8ed136898384a828abaa9aae5352958c73f0b | [
"MIT"
] | null | null | null | //
// AndyNewsCommonFrame.h
// MyCF
//
// Created by 李扬 on 15/12/15.
// Copyright © 2015年 andyli. All rights reserved.
//
#import <Foundation/Foundation.h>
@class AndyNewsModel;
@interface AndyNewsCommonFrame : NSObject
@property (nonatomic, strong) AndyNewsModel *newsModel;
@property (nonatomic, assign, readon... | 23.16129 | 63 | 0.761838 |
28d5061fa5e248834f2bc6aab8e815546ae8d7d3 | 177 | h | C | cgc.h | rzbdz/min-cgc | 8eb893b99dbfe01ad33de2b18089bd95fcc96710 | [
"Apache-2.0"
] | null | null | null | cgc.h | rzbdz/min-cgc | 8eb893b99dbfe01ad33de2b18089bd95fcc96710 | [
"Apache-2.0"
] | null | null | null | cgc.h | rzbdz/min-cgc | 8eb893b99dbfe01ad33de2b18089bd95fcc96710 | [
"Apache-2.0"
] | null | null | null | #ifndef _MIN_CGC
#define _MIN_CGC
int cgc_init();
void* cgc_malloc(size_t size);
void cgc_free(void* ptr);
void* cgc_realloc(void* ptr, size_t size);
int cgc(void);
#endif | 12.642857 | 42 | 0.728814 |
28d73a49a7da68a32fa850779ab943d29247c204 | 11,145 | h | C | Platform/OSX/Frameworks/CEGUI.framework/Versions/A/Headers/CEGUICoordConverter.h | unconed/NFSpace | bbd544afb32a10bc4ee497e1d58cefe4bbbe7953 | [
"BSD-3-Clause"
] | 91 | 2015-01-19T11:03:56.000Z | 2022-03-12T15:54:06.000Z | Platform/OSX/Frameworks/CEGUI.framework/Versions/A/Headers/CEGUICoordConverter.h | unconed/NFSpace | bbd544afb32a10bc4ee497e1d58cefe4bbbe7953 | [
"BSD-3-Clause"
] | null | null | null | Platform/OSX/Frameworks/CEGUI.framework/Versions/A/Headers/CEGUICoordConverter.h | unconed/NFSpace | bbd544afb32a10bc4ee497e1d58cefe4bbbe7953 | [
"BSD-3-Clause"
] | 9 | 2015-03-16T03:36:50.000Z | 2021-06-17T09:47:26.000Z | /***********************************************************************
filename: CEGUICoordConverter.h
created: Sun Sep 18 2005
author: Paul D Turner <paul@cegui.org.uk>
*************************************************************************/
/**********************************************... | 31.394366 | 81 | 0.629879 |
28d751319ed5b037fc04b3176266089760018ae0 | 20,964 | c | C | OmniXtend-0.1.1/emu/main.c | marjanradi/omnixtend | c80c922b150e9221c489175c3f08a59be58e88f2 | [
"Apache-2.0"
] | null | null | null | OmniXtend-0.1.1/emu/main.c | marjanradi/omnixtend | c80c922b150e9221c489175c3f08a59be58e88f2 | [
"Apache-2.0"
] | 1 | 2022-01-30T10:14:38.000Z | 2022-01-30T10:14:38.000Z | OmniXtend-0.1.1/emu/main.c | isabella232/omnixtend-1 | fc4d0aea6ef0d070405a7db08922ef6d89eda4fb | [
"Apache-2.0"
] | null | null | null | /* SPDX-License-Identifier: BSD-3-Clause
* Copyright(c) 2010-2015 Intel Corporation
*
* Author: Huynh Tu Dang
*/
#include <stdint.h>
#include <math.h>
#include <inttypes.h>
#include <arpa/inet.h>
#include <getopt.h>
#include <rte_eal.h>
#include <rte_ethdev.h>
#include <rte_cycles.h>
#include <rte_lcore.h>
#include... | 28.836314 | 98 | 0.698054 |
28d965e53c577e778c9620ed2e54be99149ba7fd | 867 | h | C | kernel/linux-5.4/drivers/media/dvb-frontends/nxt6000.h | josehu07/SplitFS | d7442fa67a17de7057664f91defbfdbf10dd7f4a | [
"Apache-2.0"
] | 44 | 2022-03-16T08:32:31.000Z | 2022-03-31T16:02:35.000Z | kernel/linux-5.4/drivers/media/dvb-frontends/nxt6000.h | josehu07/SplitFS | d7442fa67a17de7057664f91defbfdbf10dd7f4a | [
"Apache-2.0"
] | 13 | 2021-07-10T04:36:17.000Z | 2022-03-03T10:50:05.000Z | kernel/linux-5.4/drivers/media/dvb-frontends/nxt6000.h | josehu07/SplitFS | d7442fa67a17de7057664f91defbfdbf10dd7f4a | [
"Apache-2.0"
] | 18 | 2022-03-19T04:41:04.000Z | 2022-03-31T03:32:12.000Z | /* SPDX-License-Identifier: GPL-2.0-or-later */
/*
NxtWave Communications - NXT6000 demodulator driver
Copyright (C) 2002-2003 Florian Schirmer <jolt@tuxbox.org>
Copyright (C) 2003 Paul Andreassen <paul@andreassen.com.au>
*/
#ifndef NXT6000_H
#define NXT6000_H
#include <linux/dvb/frontend.h>
struct nxt600... | 23.432432 | 86 | 0.746251 |
28d9b8454f5fa241127c9e9426fe1c00175bce07 | 4,088 | h | C | Unix Family/Linux.lrk.e/ssh-2.0.13/lib/sshcrypt/sshcrypti.h | fengjixuchui/Family | 2abe167082817d70ff2fd6567104ce4bcf0fe304 | [
"MIT"
] | 3 | 2021-05-15T15:57:13.000Z | 2022-03-16T09:11:05.000Z | Unix Family/Linux.lrk.e/ssh-2.0.13/lib/sshcrypt/sshcrypti.h | fengjixuchui/Family | 2abe167082817d70ff2fd6567104ce4bcf0fe304 | [
"MIT"
] | null | null | null | Unix Family/Linux.lrk.e/ssh-2.0.13/lib/sshcrypt/sshcrypti.h | fengjixuchui/Family | 2abe167082817d70ff2fd6567104ce4bcf0fe304 | [
"MIT"
] | 3 | 2021-05-15T15:57:15.000Z | 2022-01-08T20:51:04.000Z | /*
sshcrypti.h
Author: Mika Kojo <mkojo@ssh.fi>
Copyright (C) 1996,1997 SSH Communications Security Oy, Espoo, Finland
All rights reserved.
Created: Mon Jun 30 14:15:05 1997 [mkojo]
Definitions for internal use only.
*/
/*
* $Id: sshcrypti.h,v 1.15 1998/12/03 19:48:28 mkojo Exp $
* $Log: sshcry... | 32.967742 | 79 | 0.691781 |
28dd1634b893ca0638bba9764854c3ddcd1675f2 | 2,174 | c | C | utilities/VTU/diffVtu.c | lcw/libparanumal | 9c0f46b25ad6fe127ff49fc6cf75cf6cb4944322 | [
"MIT"
] | null | null | null | utilities/VTU/diffVtu.c | lcw/libparanumal | 9c0f46b25ad6fe127ff49fc6cf75cf6cb4944322 | [
"MIT"
] | null | null | null | utilities/VTU/diffVtu.c | lcw/libparanumal | 9c0f46b25ad6fe127ff49fc6cf75cf6cb4944322 | [
"MIT"
] | 1 | 2019-11-24T17:23:29.000Z | 2019-11-24T17:23:29.000Z | /*
The MIT License (MIT)
Copyright (c) 2017 Tim Warburton, Noel Chalmers, Jesse Chan, Ali Karakus
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 limitatio... | 25.27907 | 78 | 0.672493 |
28dd7329d5d5e7c77a3de80225b21e31449ded51 | 2,008 | h | C | src/syntax/grammar.h | eddieshan/lox | c84756fc2309ef516218489503c8b4dbcca8ae2a | [
"MIT"
] | null | null | null | src/syntax/grammar.h | eddieshan/lox | c84756fc2309ef516218489503c8b4dbcca8ae2a | [
"MIT"
] | null | null | null | src/syntax/grammar.h | eddieshan/lox | c84756fc2309ef516218489503c8b4dbcca8ae2a | [
"MIT"
] | null | null | null | #pragma once
#include <memory>
#include "../utils/slice.h"
#include "../utils/range.h"
#include "../utils/packed_array.h"
namespace syntax {
enum class TokenType: int {
Plain = 0,
Delimiter = 1,
Operator = 2,
Keyword = 3,
TypeKeyword = 4,
NumericLiteral = 5,
... | 34.62069 | 70 | 0.632968 |
28e1f871451914aa1e26fa54cf5d14421315bfc0 | 406 | h | C | archieves/sample_WeiboPlus/Controllers/HomeViewController.h | jzmq/WeiboSDK | 740a55f06043c29479816b1c97e46e7dbdb89b8a | [
"Apache-2.0"
] | 89 | 2015-01-08T08:57:53.000Z | 2020-11-30T22:26:44.000Z | archieves/sample_WeiboPlus/Controllers/HomeViewController.h | jzmq/WeiboSDK | 740a55f06043c29479816b1c97e46e7dbdb89b8a | [
"Apache-2.0"
] | 6 | 2015-05-27T07:10:26.000Z | 2018-01-23T12:12:05.000Z | archieves/sample_WeiboPlus/Controllers/HomeViewController.h | jzmq/WeiboSDK | 740a55f06043c29479816b1c97e46e7dbdb89b8a | [
"Apache-2.0"
] | 38 | 2015-03-18T11:29:18.000Z | 2022-03-30T08:31:30.000Z | //
// HomeViewController.h
// ZhiWeiboPhone
//
// Created by junmin liu on 12-8-25.
// Copyright (c) 2012年 idfsoft. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "TimelineQuery.h"
#import "TweetViewCell.h"
#import "TweetViewCellLayout.h"
@interface HomeViewController : UITableViewController {
NSMuta... | 19.333333 | 55 | 0.73399 |
28e4bc0d9d9b4320e39342bb16d16738dbddd8d7 | 783 | h | C | gui/country_name_dialog.h | TaimoorRana/Risk | ed96461f2b87d6336e50b27a35f50946e9125c86 | [
"MIT"
] | 3 | 2016-05-23T09:39:08.000Z | 2016-10-08T03:28:24.000Z | gui/country_name_dialog.h | TaimoorRana/Risk | ed96461f2b87d6336e50b27a35f50946e9125c86 | [
"MIT"
] | 3 | 2017-09-11T00:51:55.000Z | 2017-09-11T00:52:05.000Z | gui/country_name_dialog.h | TaimoorRana/Risk | ed96461f2b87d6336e50b27a35f50946e9125c86 | [
"MIT"
] | 1 | 2019-01-18T14:15:28.000Z | 2019-01-18T14:15:28.000Z | #ifndef COUNTRYNAMEDIALOG_H
#define COUNTRYNAMEDIALOG_H
#include <QDialog>
#include <QString>
namespace Ui {
class CountryNameDialog;
}
/**
* @brief The CountryNameDialog class serves as a lightweight class with a ui to
* capture Country name and Continent name when entering Country objects within
* the MapEdito... | 23.727273 | 80 | 0.759898 |
28e58c6057e7ffc8a492ee54702d5654ece51c0d | 22,345 | h | C | Source/Kernel/Convert.h | jorgy343/RustyOS | 2d41f620165a991370754803fb2fcecb50fff3ef | [
"MIT"
] | null | null | null | Source/Kernel/Convert.h | jorgy343/RustyOS | 2d41f620165a991370754803fb2fcecb50fff3ef | [
"MIT"
] | null | null | null | Source/Kernel/Convert.h | jorgy343/RustyOS | 2d41f620165a991370754803fb2fcecb50fff3ef | [
"MIT"
] | null | null | null | #pragma once
#include "Global.h"
namespace Kernel
{
namespace Utility
{
/// Contains static methods for converting to and from strings and other types. This class
/// cannot be inherited.
class Convert final
{
public:
/// Converts a @c char value ... | 88.670635 | 232 | 0.665563 |
28e63f25b68237548271df8c1e86df7b1f03a12d | 1,014 | c | C | rts/test/stableptr_test.c | jimcrayne/jhc | 1ff035af3d697f9175f8761c8d08edbffde03b4e | [
"MIT"
] | 38 | 2015-08-27T04:38:47.000Z | 2022-03-29T06:01:16.000Z | rts/test/stableptr_test.c | spl/jhc | b015269ba878132703fab83a1b710bed4edf69c0 | [
"MIT"
] | 1 | 2018-08-22T10:47:59.000Z | 2018-08-22T10:47:59.000Z | rts/test/stableptr_test.c | spl/jhc | b015269ba878132703fab83a1b710bed4edf69c0 | [
"MIT"
] | 6 | 2017-04-13T20:18:10.000Z | 2021-12-22T18:13:10.000Z | #include "jhc_rts_header.h"
#include "sys/queue.h"
#include "seatest.h"
#define SAMPLE_SPTR (sptr_t)TO_SPTR(P_VALUE,0xF0D0);
int num_stableptrs(void)
{
int count = 0;
struct StablePtr *sp;
LIST_FOREACH(sp, &root_StablePtrs, link)
count++;
return count;
}
bool in_stableptr_lis... | 22.533333 | 52 | 0.617357 |
93a058594c382f02f96b626b67ed8121d99f4d4e | 92 | h | C | out_t1108_r7.h | BailiShanghai/pywzl-bin2c_array | 244b988e264a4dda7f948d727f274ba47f0ccf23 | [
"MIT"
] | 1 | 2019-07-18T07:36:42.000Z | 2019-07-18T07:36:42.000Z | out_t1108_r7.h | BailiShanghai/pywzl-bin2c_array | 244b988e264a4dda7f948d727f274ba47f0ccf23 | [
"MIT"
] | null | null | null | out_t1108_r7.h | BailiShanghai/pywzl-bin2c_array | 244b988e264a4dda7f948d727f274ba47f0ccf23 | [
"MIT"
] | null | null | null | #ifndef _OUT_H_
#define _OUT_H_
extern const unsigned char b_bin_array[];
#endif
//eof
| 11.5 | 41 | 0.73913 |
93a73b3484b2319e5a6ff0358816ddeb7434d342 | 1,566 | c | C | d11/ex12/ft_list_remove_if.c | joaquim-oliveira-neto/42-C-Piscine | e3c3a827a4c7fc045021e52f91f86b47451378ce | [
"MIT"
] | 15 | 2018-07-06T12:47:44.000Z | 2022-03-18T11:20:39.000Z | d11/ex12/ft_list_remove_if.c | joaquim-oliveira-neto/42-C-Piscine | e3c3a827a4c7fc045021e52f91f86b47451378ce | [
"MIT"
] | null | null | null | d11/ex12/ft_list_remove_if.c | joaquim-oliveira-neto/42-C-Piscine | e3c3a827a4c7fc045021e52f91f86b47451378ce | [
"MIT"
] | 7 | 2019-04-19T09:16:54.000Z | 2022-01-12T17:21:32.000Z | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_list_remove_if.c :+: :+: :+: ... | 35.590909 | 80 | 0.362708 |
93a7acdbd5067ecb71299069c1b263d8df476aff | 299 | c | C | SDL/learn.c | filol/Facificator | db6250d83d6fc994308d276b254482087ee3548b | [
"MIT"
] | null | null | null | SDL/learn.c | filol/Facificator | db6250d83d6fc994308d276b254482087ee3548b | [
"MIT"
] | null | null | null | SDL/learn.c | filol/Facificator | db6250d83d6fc994308d276b254482087ee3548b | [
"MIT"
] | null | null | null | #include "adaboost.h"
int main() {
init_sdl();
image_dataset_t* dataset = alloc_image_dataset();
dataset = fill_dataset(dataset);
double max_false_positive_rate = 0.10;
double min_detection_rate = 0.99;
build_cascade(dataset, max_false_positive_rate, min_detection_rate);
return 0;
}
| 24.916667 | 70 | 0.752508 |
93aacc95cf255c622206807e7cb18109975aaa6c | 1,170 | h | C | src/_adts/FenwickTree.h | turesnake/leetPractice | a87b9b90eb8016038d7e5d3ad8e50e4ceb54d69b | [
"MIT"
] | null | null | null | src/_adts/FenwickTree.h | turesnake/leetPractice | a87b9b90eb8016038d7e5d3ad8e50e4ceb54d69b | [
"MIT"
] | null | null | null | src/_adts/FenwickTree.h | turesnake/leetPractice | a87b9b90eb8016038d7e5d3ad8e50e4ceb54d69b | [
"MIT"
] | null | null | null | /*
* ====================== FenwickTree.h ==========================
* -- tpr --
* CREATE -- 2020.05.15
* MODIFY --
* ----------------------------------------------------------
* 树状数组
*/
#ifndef TPR_FENWICK_TR... | 20.892857 | 66 | 0.389744 |
93b1a7ec7ad441594676fe38538fc21bf295101b | 54,837 | c | C | testsuite/EXP_2/test2339.c | ishiura-compiler/CF3 | 0718aa176d0303a4ea8a46bd6c794997cbb8fabb | [
"MIT"
] | 34 | 2017-07-04T14:16:12.000Z | 2021-04-22T21:04:43.000Z | testsuite/EXP_2/test2339.c | ishiura-compiler/CF3 | 0718aa176d0303a4ea8a46bd6c794997cbb8fabb | [
"MIT"
] | 1 | 2017-07-06T03:43:44.000Z | 2017-07-06T03:43:44.000Z | testsuite/EXP_2/test2339.c | ishiura-compiler/CF3 | 0718aa176d0303a4ea8a46bd6c794997cbb8fabb | [
"MIT"
] | 6 | 2017-07-04T16:30:42.000Z | 2019-10-16T05:37:29.000Z |
/*
CF3
Copyright (c) 2015 ishiura-lab.
Released under the MIT license.
https://github.com/ishiura-compiler/CF3/MIT-LICENSE.md
*/
#include<stdio.h>
#include<stdint.h>
#include<stdlib.h>
#include"test1.h"
int8_t x15 = -37;
int64_t t3 = 5907776LL;
uint32_t x25 = 14U;
uint16_t x26 = 3137U;
int64_t x32 = INT64_MIN;
i... | 19.418201 | 61 | 0.604209 |
93b30ca7a02e171099d04465f4a3c7cfc9fc2c49 | 5,303 | c | C | monitor/src/threads.c | EPantelaios/System-Programming-Sockets-and-Threads | 219587c61b5fc98bdc56bc3715fc77e052c9287e | [
"MIT"
] | null | null | null | monitor/src/threads.c | EPantelaios/System-Programming-Sockets-and-Threads | 219587c61b5fc98bdc56bc3715fc77e052c9287e | [
"MIT"
] | null | null | null | monitor/src/threads.c | EPantelaios/System-Programming-Sockets-and-Threads | 219587c61b5fc98bdc56bc3715fc77e052c9287e | [
"MIT"
] | null | null | null | #include "../include/threads.h"
int buffer_is_empty(char **cyclic_buffer, int cyclic_buf_size){
for(int i=0;i<cyclic_buf_size;i++){
if(strcmp(cyclic_buffer[i], "")){
return false;
}
}
return true;
}
int get_country_from_cyclic_buffer(char **cyclic_buffer, int cyclic_buf_... | 24.104545 | 136 | 0.582312 |
93b593d26f203ec8260e017f88111e13281dc332 | 25,054 | c | C | SDK/APS_PATCH/examples/bluetooth/ancs/ancs_app_client.c | Opulinks-Tech/OPL1000 | 391c37a13b71027c43f01c6d91c6b67ee45a4f6b | [
"Apache-2.0"
] | 14 | 2018-06-12T07:36:27.000Z | 2019-07-22T01:18:49.000Z | SDK/APS_PATCH/examples/bluetooth/ancs/ancs_app_client.c | Opulinks-Tech/OPL1000 | 391c37a13b71027c43f01c6d91c6b67ee45a4f6b | [
"Apache-2.0"
] | null | null | null | SDK/APS_PATCH/examples/bluetooth/ancs/ancs_app_client.c | Opulinks-Tech/OPL1000 | 391c37a13b71027c43f01c6d91c6b67ee45a4f6b | [
"Apache-2.0"
] | 12 | 2018-08-02T10:16:10.000Z | 2019-07-10T12:42:21.000Z | /******************************************************************************
* Copyright 2017 - 2018, Opulinks Technology Ltd.
* ---------------------------------------------------------------------------
* Statement:
* ----------
* This software is protected by Copyright and the information contained
* herein... | 23.680529 | 154 | 0.618065 |
93b5ae0c2406934b8f32de7ea3aa8ba97088466b | 9,380 | h | C | Libraries/ITK/CorticalThickness/itkRegistrationBasedCorticalThicknessFilter.h | NifTK/NifTK | 2358b333c89ff1bba1c232eecbbcdc8003305dfe | [
"BSD-3-Clause"
] | 13 | 2018-07-28T13:36:38.000Z | 2021-11-01T19:17:39.000Z | Libraries/ITK/CorticalThickness/itkRegistrationBasedCorticalThicknessFilter.h | NifTK/NifTK | 2358b333c89ff1bba1c232eecbbcdc8003305dfe | [
"BSD-3-Clause"
] | null | null | null | Libraries/ITK/CorticalThickness/itkRegistrationBasedCorticalThicknessFilter.h | NifTK/NifTK | 2358b333c89ff1bba1c232eecbbcdc8003305dfe | [
"BSD-3-Clause"
] | 10 | 2018-08-20T07:06:00.000Z | 2021-07-07T07:55:27.000Z | /*=============================================================================
NifTK: A software platform for medical image computing.
Copyright (c) University College London (UCL). All rights reserved.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY o... | 43.425926 | 146 | 0.67452 |
93b9a7c09c927d0dbbd611692a4a3000b4452be0 | 677 | h | C | JDToolsModule/JDTools/JDPick/JDragonLocation.h | lyc59621/JDToolsModule | 7324b0abf758e7f9bf1a5f1bd40406d6d5a0de91 | [
"MIT"
] | 1 | 2019-08-12T02:01:04.000Z | 2019-08-12T02:01:04.000Z | JDToolsModule/JDTools/JDPick/JDragonLocation.h | lyc59621/JDToolsModule | 7324b0abf758e7f9bf1a5f1bd40406d6d5a0de91 | [
"MIT"
] | null | null | null | JDToolsModule/JDTools/JDPick/JDragonLocation.h | lyc59621/JDToolsModule | 7324b0abf758e7f9bf1a5f1bd40406d6d5a0de91 | [
"MIT"
] | 1 | 2020-01-02T08:28:23.000Z | 2020-01-02T08:28:23.000Z | //
// JDragonLocation.h
// JDragonFrameWork
//
// Created by long on 15/6/22.
// Copyright (c) 2015年 姜锦龙. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface JDragonLocation : NSObject
@property (copy, nonatomic) NSString *provinceID;
@property (copy, nonatomic) NSString *province;
@property (c... | 21.15625 | 51 | 0.738552 |
93ba97cddace63134de5839f75b742becead0279 | 1,682 | c | C | Chapter_06/Exercise_6.7.c | w-tr/programming_in_c | 5897d4718a7ef7783e226e317049f9537117fd0d | [
"MIT"
] | null | null | null | Chapter_06/Exercise_6.7.c | w-tr/programming_in_c | 5897d4718a7ef7783e226e317049f9537117fd0d | [
"MIT"
] | null | null | null | Chapter_06/Exercise_6.7.c | w-tr/programming_in_c | 5897d4718a7ef7783e226e317049f9537117fd0d | [
"MIT"
] | null | null | null | //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// ____ ___ __ _
// / __// o |,'_/ .' \
// / _/ / _,'/ /_n / o / _ __ _ ___ _ _ __
// /_/ /_/ |__,'/_n_/ / \,' /.' \ ,' _/,' \ / |/ /
// / \,' // o /_\ `./ o ... | 35.041667 | 126 | 0.394768 |
93bb16e61f40957bc1eae27f9b25238bd1c51cf4 | 2,522 | h | C | Slimfish/Source/Graphics/D3D11/SlimD3D11GpuBuffer.h | ThatBeanBag/Slimfish | 7b0f821bccf2cae7d67f8a822f078def7a2d354d | [
"Apache-2.0"
] | null | null | null | Slimfish/Source/Graphics/D3D11/SlimD3D11GpuBuffer.h | ThatBeanBag/Slimfish | 7b0f821bccf2cae7d67f8a822f078def7a2d354d | [
"Apache-2.0"
] | null | null | null | Slimfish/Source/Graphics/D3D11/SlimD3D11GpuBuffer.h | ThatBeanBag/Slimfish | 7b0f821bccf2cae7d67f8a822f078def7a2d354d | [
"Apache-2.0"
] | null | null | null | //
// Bachelor of Software Engineering
// Media Design School
// Auckland
// New Zealand
//
// (c) 2005 - 2015 Media Design School
//
// File Name : SlimD3D11GpuBuffer.h
// Description : CSlimD3D11GpuBuffer declaration file.
// Author : Hayden Asplet.
// Mail : hayden.asplet@mediadesignschool.com
//
#pragma once
... | 29.670588 | 106 | 0.733148 |
93bcafa1071f45cb292e33104347bb7cd0547966 | 1,098 | h | C | simulation/mmwave/parameters.h | FlyerMaxwell/Bubble | 70ca988bca3a5debce5d9c61f203b08005bdefaf | [
"MIT"
] | null | null | null | simulation/mmwave/parameters.h | FlyerMaxwell/Bubble | 70ca988bca3a5debce5d9c61f203b08005bdefaf | [
"MIT"
] | null | null | null | simulation/mmwave/parameters.h | FlyerMaxwell/Bubble | 70ca988bca3a5debce5d9c61f203b08005bdefaf | [
"MIT"
] | null | null | null | #ifndef PARAMETERS_H
#define PARAMETERS_H
#include <stdio.h>
#define false 0
#define true 1
/***********************parameters**********************/
extern int Car_Number;
extern int BEACON_NUM;
extern int BEACON_INTERVAL;
extern int safe_dis; //safe distance between two cars
extern int com_dis; //communication dis... | 22.408163 | 57 | 0.755009 |
93bd62e01a88bd422f125f9f5135ae58cb3f2ead | 30,577 | c | C | manual_tests/test_citadel.c | jingpad-bsp/android_external_nos_host_android | a37b9e60f71cb638cb9069003d09af5a8f26b55c | [
"Apache-2.0"
] | null | null | null | manual_tests/test_citadel.c | jingpad-bsp/android_external_nos_host_android | a37b9e60f71cb638cb9069003d09af5a8f26b55c | [
"Apache-2.0"
] | null | null | null | manual_tests/test_citadel.c | jingpad-bsp/android_external_nos_host_android | a37b9e60f71cb638cb9069003d09af5a8f26b55c | [
"Apache-2.0"
] | null | null | null | /*
* Copyright (C) 2017 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by app... | 29.010436 | 81 | 0.542859 |
93bf946842cd94b86e94956b67e737c548fb3909 | 2,083 | c | C | 01-sorting/sort.c | xietx1995/Data-Structures-and-Algorithms | 9e102b6a9f97cb59f74d948ffc0c4abe100a5821 | [
"MIT"
] | 2 | 2021-09-14T18:20:32.000Z | 2021-09-21T03:21:16.000Z | 01-sorting/sort.c | xietx1995/Data-Structures-and-Algorithms | 9e102b6a9f97cb59f74d948ffc0c4abe100a5821 | [
"MIT"
] | null | null | null | 01-sorting/sort.c | xietx1995/Data-Structures-and-Algorithms | 9e102b6a9f97cb59f74d948ffc0c4abe100a5821 | [
"MIT"
] | null | null | null | #include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "algorithms.h"
// 打印数组
void print_arr(int arr[], int len)
{
int i = 0;
while (i < len)
printf("%d ", arr[i++]);
putchar('\n');
}
// 用法提示
void usage()
{
printf(
" usage: sort numbers algorithm(quick sort is default... | 26.367089 | 83 | 0.548728 |
93c57c2402b198d6a6b085c6956505b9f22f6b21 | 827 | h | C | src/Framework/Game/GameComponent.h | xcasadio/casaengine | 19e34c0457265435c28667df7f2e5c137d954b98 | [
"MIT"
] | null | null | null | src/Framework/Game/GameComponent.h | xcasadio/casaengine | 19e34c0457265435c28667df7f2e5c137d954b98 | [
"MIT"
] | null | null | null | src/Framework/Game/GameComponent.h | xcasadio/casaengine | 19e34c0457265435c28667df7f2e5c137d954b98 | [
"MIT"
] | null | null | null |
#ifndef _GAMECOMPONENT_H_
#define _GAMECOMPONENT_H_
#include "CA_Export.h"
#include "GameTime.h"
#include "Memory/MemoryAllocation.h"
namespace CasaEngine
{
class Game;
/////////////////////////////////////////////////////////////
/// CGameComponent
/////////////////////////////////////////////////////////////
... | 19.690476 | 62 | 0.62757 |
93c5a5084eb4016bdc3ed2aa87b333af22e18854 | 10,156 | h | C | parameters.h | TehGoat/c_osrm | e5fcc4247dce4247b4222bdfa044286ab5de1557 | [
"MIT"
] | null | null | null | parameters.h | TehGoat/c_osrm | e5fcc4247dce4247b4222bdfa044286ab5de1557 | [
"MIT"
] | null | null | null | parameters.h | TehGoat/c_osrm | e5fcc4247dce4247b4222bdfa044286ab5de1557 | [
"MIT"
] | 1 | 2020-10-06T03:41:47.000Z | 2020-10-06T03:41:47.000Z | //
// Created by tehkoza on 2020-02-10.
//
#ifndef C_OSRM_PARAMETERS_H
#define C_OSRM_PARAMETERS_H
#ifdef __cplusplus
extern "C" {
#endif
#include <float.h>
enum boolean {
FALSE,
TRUE
};
enum Algorithm
{
CH,
CoreCH, // Deprecated, will be removed in v6.0
MLD
};
enum GeometriesType
{
Polyli... | 21.070539 | 90 | 0.702836 |
93c789b10b4337fc7b95ee72b8e7af09eb17b8a0 | 7,911 | h | C | chrome/browser/chromeos/status/input_method_menu.h | gavinp/chromium | 681563ea0f892a051f4ef3d5e53438e0bb7d2261 | [
"BSD-3-Clause"
] | 1 | 2016-03-10T09:13:57.000Z | 2016-03-10T09:13:57.000Z | chrome/browser/chromeos/status/input_method_menu.h | gavinp/chromium | 681563ea0f892a051f4ef3d5e53438e0bb7d2261 | [
"BSD-3-Clause"
] | 1 | 2022-03-13T08:39:05.000Z | 2022-03-13T08:39:05.000Z | chrome/browser/chromeos/status/input_method_menu.h | gavinp/chromium | 681563ea0f892a051f4ef3d5e53438e0bb7d2261 | [
"BSD-3-Clause"
] | null | null | null | // Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_CHROMEOS_STATUS_INPUT_METHOD_MENU_H_
#define CHROME_BROWSER_CHROMEOS_STATUS_INPUT_METHOD_MENU_H_
#pragma once
#include <string... | 39.163366 | 80 | 0.760587 |
93c8cefc2ca8126504dc9e73113e5b7c64264cb6 | 1,435 | c | C | pgm_image.c | afissegalaad/ImgFilter | 90156ecac4b76b46549f6c472d796fc0a5e72890 | [
"MIT"
] | 1 | 2017-11-04T04:13:35.000Z | 2017-11-04T04:13:35.000Z | pgm_image.c | afissegalaad/ImgFilter | 90156ecac4b76b46549f6c472d796fc0a5e72890 | [
"MIT"
] | null | null | null | pgm_image.c | afissegalaad/ImgFilter | 90156ecac4b76b46549f6c472d796fc0a5e72890 | [
"MIT"
] | null | null | null | #include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "pgm_image.h"
#define TAILLE_MAX 1024
image_t *charger_image_pgm(char *nom_fichier)
{
FILE *fic;
image_t *img = creer_image();
unsigned long nx,ny, nbg;
char *chaine = malloc(5);
//printf("ouverture du fichier en écriture\n");
fic = fopen (no... | 21.41791 | 93 | 0.628571 |
93c9769c941b943b39d3340d5016d7cd2d8d4f87 | 935 | h | C | logger_impl.h | sgh1/console-logger | 8838bf0566765533a7b3d9b77cf8bed11b68cae0 | [
"MIT"
] | null | null | null | logger_impl.h | sgh1/console-logger | 8838bf0566765533a7b3d9b77cf8bed11b68cae0 | [
"MIT"
] | null | null | null | logger_impl.h | sgh1/console-logger | 8838bf0566765533a7b3d9b77cf8bed11b68cae0 | [
"MIT"
] | null | null | null |
#ifndef LOGGER_IMPL_H
#define LOGGER_IMPL_H
#include <mutex>
namespace devlib
{
// Simple console logger.
class logger_impl
{
public:
// Constructor & destructor.
logger_impl();
~logger_impl();
// Don't allow copies.
logger_impl(logger_impl const& copy) = del... | 22.261905 | 72 | 0.618182 |
93ca3a0128830ab99bd66503e9345810a86fc79e | 3,088 | h | C | src/zoneserver/controller/player/PlayerAuctionController.h | mark-online/server | ca24898e2e5a9ccbaa11ef1ade57bb25260b717f | [
"MIT"
] | null | null | null | src/zoneserver/controller/player/PlayerAuctionController.h | mark-online/server | ca24898e2e5a9ccbaa11ef1ade57bb25260b717f | [
"MIT"
] | null | null | null | src/zoneserver/controller/player/PlayerAuctionController.h | mark-online/server | ca24898e2e5a9ccbaa11ef1ade57bb25260b717f | [
"MIT"
] | null | null | null | #pragma once
#include "../../zoneserver_export.h"
#include "../Controller.h"
#include <gideon/cs/shared/rpc/player/AuctionRpc.h>
#include <sne/srpc/RpcForwarder.h>
#include <sne/srpc/RpcReceiver.h>
namespace sne { namespace sgp {
class RpcingExtension;
}} // namespace sne { namespace sgp {
namespace gideon { na... | 34.311111 | 98 | 0.74158 |
93cd6d87669b4f334749b87838772f6055eb13bd | 10,528 | c | C | tk_qsrc/tkrast/tkr_span_zat.c | cr88192/bgbtech_btsr1arch | dcee6e5c7bbdac33a6891228f2238f6489e3c29a | [
"MIT"
] | 15 | 2019-05-19T15:51:06.000Z | 2021-12-01T08:12:17.000Z | tk_qsrc/tkrast/tkr_span_zat.c | cr88192/bgbtech_btsr1arch | dcee6e5c7bbdac33a6891228f2238f6489e3c29a | [
"MIT"
] | null | null | null | tk_qsrc/tkrast/tkr_span_zat.c | cr88192/bgbtech_btsr1arch | dcee6e5c7bbdac33a6891228f2238f6489e3c29a | [
"MIT"
] | 1 | 2019-11-21T16:57:31.000Z | 2019-11-21T16:57:31.000Z |
void TKRA_DrawSpan_ZatModTexMortZt(u64 *parm,
tkra_rastpixel *dstc, tkra_zbufpixel *dstz, int cnt)
{
TKRA_Context *ctx;
tkra_blendfunc_t Blend;
tkra_zatest_t ZaTest;
tkra_rastpixel *ct, *cte, *src;
tkra_zbufpixel *ctz;
u64 tpos, tstep;
u64 cpos, cstep;
u64 zpos, zstep;
u64 cval, dval, cref;
u32 xmask, yma... | 19.939394 | 62 | 0.663089 |
93ce7cca4de162d8e697704c0d0023b845964ea6 | 2,011 | h | C | src/vw/Plate/SnapshotManager.h | digimatronics/ComputerVision | 2af5da17dfd277f0cb3f19a97e3d49ba19cc9d24 | [
"NASA-1.3"
] | 1 | 2021-05-16T23:57:32.000Z | 2021-05-16T23:57:32.000Z | src/vw/Plate/SnapshotManager.h | rkrishnasanka/visionworkbench | 2af5da17dfd277f0cb3f19a97e3d49ba19cc9d24 | [
"NASA-1.3"
] | null | null | null | src/vw/Plate/SnapshotManager.h | rkrishnasanka/visionworkbench | 2af5da17dfd277f0cb3f19a97e3d49ba19cc9d24 | [
"NASA-1.3"
] | 2 | 2017-03-18T04:06:32.000Z | 2019-01-17T10:34:39.000Z | // __BEGIN_LICENSE__
// Copyright (C) 2006-2011 United States Government as represented by
// the Administrator of the National Aeronautics and Space Administration.
// All Rights Reserved.
// __END_LICENSE__
#ifndef __VW_PLATE_SNAPSHOT_MANAGER_H__
#define __VW_PLATE_SNAPSHOT_MANAGER_H__
#include <vw/Plate/IndexData... | 37.943396 | 170 | 0.72551 |
93ceb5255c7d5329ed78d22b68fb33b87c3822b1 | 5,817 | c | C | xdk-asf-3.51.0/sam/drivers/rswdt/unit_tests/unit_tests.c | j3270/SAMD_Experiments | 5c242aff44fc8d7092322d7baf2dda450a78a9b7 | [
"MIT"
] | 1 | 2021-10-06T07:51:27.000Z | 2021-10-06T07:51:27.000Z | sam/asf/sam/drivers/rswdt/unit_tests/unit_tests.c | MilesEngineering/ucplatform | 3ef48f3ae5dab763b1507509ce0dc790a4c72b7a | [
"Unlicense"
] | null | null | null | sam/asf/sam/drivers/rswdt/unit_tests/unit_tests.c | MilesEngineering/ucplatform | 3ef48f3ae5dab763b1507509ce0dc790a4c72b7a | [
"Unlicense"
] | null | null | null | /**
* \file
*
* \brief Unit tests for RSWDT driver.
*
* Copyright (c) 2015-2018 Microchip Technology Inc. and its subsidiaries.
*
* \asf_license_start
*
* \page License
*
* Subject to your compliance with these terms, you may use Microchip
* software and any derivatives exclusively with Microchip products.
... | 27.438679 | 123 | 0.73354 |
93cec57804e6298135dcb92ac4777eaa928d059e | 466 | h | C | examples/GPArtificialAnt/TurnRight.h | KarlaSalamun/ECF | 4bd21cf43d09435f034259a6b59129b1df6ad1b3 | [
"MIT"
] | null | null | null | examples/GPArtificialAnt/TurnRight.h | KarlaSalamun/ECF | 4bd21cf43d09435f034259a6b59129b1df6ad1b3 | [
"MIT"
] | null | null | null | examples/GPArtificialAnt/TurnRight.h | KarlaSalamun/ECF | 4bd21cf43d09435f034259a6b59129b1df6ad1b3 | [
"MIT"
] | null | null | null | #include "AntEvalOp.h"
/**
* \ingroup ant
* \brief GP terminal, turns the ant right
*/
class TurnRight : public Tree::Primitives::Primitive
{
public:
TurnRight()
{
nArguments_ = 0;
name_ = "right";
}
void execute(void* evalOp, Tree::Tree& tree)
{
// get pointer to simulator from the c... | 17.259259 | 67 | 0.613734 |
93d2cda7e2c7e7d74c6d0d8451a2d94f30f30794 | 279 | c | C | tests/code_C/comparison.c | jeanmarie-dormoy/GDEB-archi-PS5 | 6c1eeff0789d33d3c84456b7c27e57c1a473190a | [
"MIT"
] | null | null | null | tests/code_C/comparison.c | jeanmarie-dormoy/GDEB-archi-PS5 | 6c1eeff0789d33d3c84456b7c27e57c1a473190a | [
"MIT"
] | null | null | null | tests/code_C/comparison.c | jeanmarie-dormoy/GDEB-archi-PS5 | 6c1eeff0789d33d3c84456b7c27e57c1a473190a | [
"MIT"
] | null | null | null | int main(void) {
// Par multiplications
int base, pow;
int res;
base = 2;
pow = 10;
res = 1;
for(int i=0; i<pow; i++)
res *= base;
// Par décalage
int res2 = 1;
res2 = res2 << pow;
// Validation
if (res == res2)
return 0;
else
return -1;
}
| 14.684211 | 26 | 0.523297 |
93d5a370aebb07c0973f2d2591581bb7121a92c2 | 1,414 | c | C | 024.c | zg/pe | cab92a564abf2faaee7d5ec3628831338ff95a3d | [
"MIT"
] | null | null | null | 024.c | zg/pe | cab92a564abf2faaee7d5ec3628831338ff95a3d | [
"MIT"
] | null | null | null | 024.c | zg/pe | cab92a564abf2faaee7d5ec3628831338ff95a3d | [
"MIT"
] | null | null | null | #include <math.h>
#include <stdio.h>
int digit_at(int n, int idx) {
if(idx < 0)
return -1;
int len = (int)log10(n) + 1;
if(len <= idx)
return -1;
for(int c = 0; c < len - idx - 1; c++)
n /= 10;
return n % 10;
}
int swap(int n, int idx, int jdx) {
if(idx < 0 || jdx < 0)
... | 23.566667 | 71 | 0.494342 |
93d5a80abd2706d0df9481f2403c95986300a120 | 1,147 | h | C | src/Adapter/DirectX/DirectXImage.h | TheReincarnator/glaziery | f688943163b73cea7034e929539fff8aa39d63e5 | [
"MIT"
] | null | null | null | src/Adapter/DirectX/DirectXImage.h | TheReincarnator/glaziery | f688943163b73cea7034e929539fff8aa39d63e5 | [
"MIT"
] | null | null | null | src/Adapter/DirectX/DirectXImage.h | TheReincarnator/glaziery | f688943163b73cea7034e929539fff8aa39d63e5 | [
"MIT"
] | null | null | null | /*
* This file is part of the Glaziery.
* Copyright Thomas Jacob.
*
* READ README.TXT BEFORE USE!!
*/
#ifndef __GLAZIERY_DIRECTXIMAGE_H
#define __GLAZIERY_DIRECTXIMAGE_H
namespace glaziery
{
class DirectXImage : public Image
{
friend DirectXFont;
friend DirectXPlatformAdapter;
private:
bool fatalE... | 19.116667 | 61 | 0.719268 |
93dc6db0dac6880e054b5374bdd583a630db7646 | 506 | h | C | Intermediate Object-Oriented Programming for Unreal Games/week3/Digitizer.h | ChanderJindal/C-Programming-for-Unreal-Game-Development | 9f39ae4cf2914dceca3577c54c7c0f500865719c | [
"MIT"
] | null | null | null | Intermediate Object-Oriented Programming for Unreal Games/week3/Digitizer.h | ChanderJindal/C-Programming-for-Unreal-Game-Development | 9f39ae4cf2914dceca3577c54c7c0f500865719c | [
"MIT"
] | null | null | null | Intermediate Object-Oriented Programming for Unreal Games/week3/Digitizer.h | ChanderJindal/C-Programming-for-Unreal-Game-Development | 9f39ae4cf2914dceca3577c54c7c0f500865719c | [
"MIT"
] | null | null | null | // Copyright A.T. Chamillard. All Rights Reserved.
#pragma once
#include <unordered_map>
/**
* Converts words to digits
*/
class Digitizer
{
private:
// declare your map variable here
public:
/**
* Constructor
*/
Digitizer();
/**
* Converts the given word to the corresponding digit.
... | 16.866667 | 57 | 0.640316 |
93de8d6c2f1a465714a53803eebe16798d8fce77 | 88,657 | c | C | demo/createEdgeAddressing/edgeAddressing.c | whutddk/Klampt_Robotic_Arm_Script | bc732ed03a1bd8d21805a401714180e5f3e1990d | [
"Apache-2.0"
] | null | null | null | demo/createEdgeAddressing/edgeAddressing.c | whutddk/Klampt_Robotic_Arm_Script | bc732ed03a1bd8d21805a401714180e5f3e1990d | [
"Apache-2.0"
] | 19 | 2019-01-08T08:38:25.000Z | 2019-03-04T07:07:03.000Z | state2/createEdgeAddressing/edgeAddressing.c | whutddk/Klampt_Robotic_Arm_Script | bc732ed03a1bd8d21805a401714180e5f3e1990d | [
"Apache-2.0"
] | null | null | null | /*******************************************
****** Wuhan University of Technology ******
****** Ruige Lee ******
year: 2019
month: 7
date: 28
hour: 20
minutes: 15
second: 3
********************************************/
#include <stdint.h>
const uint16_t lookUpedgeTable[8192][2] = {
{0,1},
{1,2},
{2,3},
{3,4},
{... | 13.120764 | 45 | 0.541864 |
93deadd8f8aa84e1d92d95ca23c97555647113bf | 3,186 | h | C | PCD8544.h | sndnvaps/rpi_lcd | caf9c88b3ef5e466f74157a9e2afcdec3af188dc | [
"MIT"
] | null | null | null | PCD8544.h | sndnvaps/rpi_lcd | caf9c88b3ef5e466f74157a9e2afcdec3af188dc | [
"MIT"
] | null | null | null | PCD8544.h | sndnvaps/rpi_lcd | caf9c88b3ef5e466f74157a9e2afcdec3af188dc | [
"MIT"
] | 1 | 2018-11-18T10:58:36.000Z | 2018-11-18T10:58:36.000Z | /*
=================================================================================
Name : PCD8544.h
Version : 0.1
Copyright (C) 2010 Limor Fried, Adafruit Industries
CORTEX-M3 version by Le Dang Dung, 2011 LeeDangDung@gmail.com (tested on LPC1769)
Raspberry Pi version by Andre Wussow, 2012, de... | 37.046512 | 105 | 0.693346 |
93e04ec10e7bbe3066e243f3e831800840c55662 | 270 | h | C | Appsisteme/RegisterViewController.h | DevelopersOfTalent/AppSistemeIOS | cc7a9d47af981601b2c572fbca88e1d6e84c5c1f | [
"MIT"
] | null | null | null | Appsisteme/RegisterViewController.h | DevelopersOfTalent/AppSistemeIOS | cc7a9d47af981601b2c572fbca88e1d6e84c5c1f | [
"MIT"
] | null | null | null | Appsisteme/RegisterViewController.h | DevelopersOfTalent/AppSistemeIOS | cc7a9d47af981601b2c572fbca88e1d6e84c5c1f | [
"MIT"
] | null | null | null | //
// RegisterViewController.h
// Appsisteme
//
// Created by Alumno on 25/05/16.
// Copyright © 2016 Alumno. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface RegisterViewController : UIViewController
-(void)receiveUserType:(NSString *) userType;
@end
| 16.875 | 52 | 0.718519 |
93e4371cefb7206e1d787fa531360f3cf8bb1584 | 115,091 | h | C | platforms/linux/deps/protocol/Packet_generated.h | iotile/baBLE-linux | faedca2c70b7fe91ea8ae0c3d8aff6bf843bd9db | [
"MIT"
] | 13 | 2018-07-04T16:35:37.000Z | 2021-03-03T10:41:07.000Z | platforms/linux/deps/protocol/Packet_generated.h | iotile/baBLE | faedca2c70b7fe91ea8ae0c3d8aff6bf843bd9db | [
"MIT"
] | 11 | 2018-06-01T20:32:32.000Z | 2019-01-21T17:03:47.000Z | platforms/linux/deps/protocol/Packet_generated.h | iotile/baBLE-linux | faedca2c70b7fe91ea8ae0c3d8aff6bf843bd9db | [
"MIT"
] | null | null | null | // automatically generated by the FlatBuffers compiler, do not modify
#ifndef FLATBUFFERS_GENERATED_PACKET_BABLE_H_
#define FLATBUFFERS_GENERATED_PACKET_BABLE_H_
#include "flatbuffers/flatbuffers.h"
namespace BaBLE {
struct Controller;
struct GetControllersList;
struct GetControllersIds;
struct GetControllerInf... | 34.010343 | 171 | 0.726182 |
93ea1eb249e1cb99058a25f65cfe9afae1784f42 | 677 | h | C | src/CAPSImg/CapsFile.h | jvernet/capsimage | b6a7693d9379333ae6f1c7d29164d12866170904 | [
"Linux-OpenIB"
] | 8 | 2019-04-01T10:06:14.000Z | 2021-02-06T23:54:01.000Z | src/CAPSImg/CapsFile.h | jvernet/capsimage | b6a7693d9379333ae6f1c7d29164d12866170904 | [
"Linux-OpenIB"
] | 3 | 2018-11-09T17:11:13.000Z | 2021-02-25T17:57:58.000Z | src/CAPSImg/CapsFile.h | jvernet/capsimage | b6a7693d9379333ae6f1c7d29164d12866170904 | [
"Linux-OpenIB"
] | 5 | 2020-04-14T19:37:43.000Z | 2021-02-07T00:32:24.000Z | #ifndef CAPSFILE_H
#define CAPSFILE_H
// generic file descriptor
struct CapsFile {
LPCSTR name;
PUBYTE memmap;
UDWORD flag;
int size;
};
typedef CapsFile *PCAPSFILE;
// file mode flags
#define CFF_WRITE DF_0
#define CFF_MEMMAP DF_1
#define CFF_MEMREF DF_2
#define CFF_CREATE DF_3
// legacy CAPS file handler... | 14.717391 | 59 | 0.731167 |
93ef335eb01da5b8199a4345ac9e8eacd767894b | 1,098 | h | C | code/include/Widget/Edit.h | TheodorusWare/Archivarius | c7bc89a2faaadc37bb65c24fc2e978c915edd582 | [
"Apache-2.0"
] | null | null | null | code/include/Widget/Edit.h | TheodorusWare/Archivarius | c7bc89a2faaadc37bb65c24fc2e978c915edd582 | [
"Apache-2.0"
] | null | null | null | code/include/Widget/Edit.h | TheodorusWare/Archivarius | c7bc89a2faaadc37bb65c24fc2e978c915edd582 | [
"Apache-2.0"
] | null | null | null | /*
Copyright (C) 2018-2020 Theodorus Software
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 writing,... | 24.4 | 103 | 0.765027 |
93f1e75d3f0e8fc546b668b1d77eaa45b7df7099 | 700 | h | C | AgoraChat/Code/Utilities/ACDUtil.h | hxqblog/AgoraChat-ios | 82a9e6f43bfff67ab9bb00a54f5abdc34cb3ccca | [
"Apache-2.0"
] | null | null | null | AgoraChat/Code/Utilities/ACDUtil.h | hxqblog/AgoraChat-ios | 82a9e6f43bfff67ab9bb00a54f5abdc34cb3ccca | [
"Apache-2.0"
] | 1 | 2022-03-22T03:38:44.000Z | 2022-03-30T10:35:28.000Z | AgoraChat/Code/Utilities/ACDUtil.h | hxqblog/AgoraChat-ios | 82a9e6f43bfff67ab9bb00a54f5abdc34cb3ccca | [
"Apache-2.0"
] | 6 | 2022-01-13T07:05:02.000Z | 2022-03-14T03:02:17.000Z | //
// ACDUtil.h
// ChatDemo-UI3.0
//
// Created by liang on 2021/11/8.
// Copyright © 2021 easemob. All rights reserved.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@interface ACDUtil : NSObject
+ (NSAttributedString *)attributeContent:(NSString *)content color:(UIColor *)color font:(UIFont *)fo... | 25.925926 | 104 | 0.621429 |
93f40f4491e4b652887930746c95eea67777a344 | 863 | h | C | src/Satanonaut/defines.h | clone45/voxglitch | 121d5fd7e4c94b86d5a25349134eee92970939d4 | [
"BSD-3-Clause"
] | 60 | 2020-01-02T15:56:47.000Z | 2022-03-25T21:28:53.000Z | src/Satanonaut/defines.h | clone45/voxglitch | 121d5fd7e4c94b86d5a25349134eee92970939d4 | [
"BSD-3-Clause"
] | 47 | 2020-01-02T08:49:55.000Z | 2022-03-11T18:26:33.000Z | src/Satanonaut/defines.h | clone45/voxglitch | 121d5fd7e4c94b86d5a25349134eee92970939d4 | [
"BSD-3-Clause"
] | 9 | 2020-01-19T19:57:23.000Z | 2022-03-01T11:29:02.000Z | // #define _TIME_DRAWING 1
#define NUMBER_OF_EFFECTS 13
#define COLUMN_1 9.525
#define COLUMN_2 19.050
#define COLUMN_3 28.575
#define COLUMN_4 38.100
#define COLUMN_5 47.625
#define COLUMN_6 57.150
#define COLUMN_7 66.675
#define COLUMN_8 76.200
#define COLUMN_9 85.725
#define COLUMN_10 95.250
#define ... | 22.710526 | 34 | 0.753187 |
93f411bef2e0de1871aba25ad811e303ed214056 | 1,867 | c | C | nitan/clone/fam/item/longxue.c | cantona/NT6 | 073f4d491b3cfe6bfbe02fbad12db8983c1b9201 | [
"MIT"
] | 1 | 2019-03-27T07:25:16.000Z | 2019-03-27T07:25:16.000Z | nitan/clone/fam/item/longxue.c | cantona/NT6 | 073f4d491b3cfe6bfbe02fbad12db8983c1b9201 | [
"MIT"
] | null | null | null | nitan/clone/fam/item/longxue.c | cantona/NT6 | 073f4d491b3cfe6bfbe02fbad12db8983c1b9201 | [
"MIT"
] | null | null | null |
#include <ansi.h>
inherit ITEM;
void create()
{
set_name(HIR "龍血" NOR, ({ "dragon blood", "dragon", "blood" }) );
set_weight(30);
if (clonep())
set_default_object(__FILE__);
else {
set("long", HIR "一瓶龍之血液,可以用來修復鑲嵌物(指令 rehab)。\n "
... | 24.246753 | 93 | 0.477236 |
93f57e3b9dd7e921eb0d84db0f71e0c392353185 | 2,892 | h | C | Modules/Module6/CPP/4_ClosedAddressing/HashTableChaining.h | hackettccp/CSCI211 | 3003c897de9a78ee4f7b551238d343d71a055e86 | [
"MIT"
] | 1 | 2019-10-23T03:23:09.000Z | 2019-10-23T03:23:09.000Z | Modules/Module6/CPP/4_ClosedAddressing/HashTableChaining.h | hackettccp/CSCI211 | 3003c897de9a78ee4f7b551238d343d71a055e86 | [
"MIT"
] | null | null | null | Modules/Module6/CPP/4_ClosedAddressing/HashTableChaining.h | hackettccp/CSCI211 | 3003c897de9a78ee4f7b551238d343d71a055e86 | [
"MIT"
] | null | null | null | /**
* A hash table that uses chaining (closed addressing) to resolve collisions.
* Implemented with an array of singly linked lists.
* Size of Array = 100
*/
#include<iostream>
#include<stdexcept>
#include "Bucket.h"
using namespace std;
class HashTable {
private:
Bucket **map; ... | 39.616438 | 127 | 0.466805 |
93f6452681ac6744bdd02686784e853df8787f5d | 934 | h | C | src/core/utils/qmath.h | karagog/gutil | 43936af9bc4be1945e4f1a3656e91dfbf42cc35b | [
"Apache-2.0"
] | null | null | null | src/core/utils/qmath.h | karagog/gutil | 43936af9bc4be1945e4f1a3656e91dfbf42cc35b | [
"Apache-2.0"
] | 2 | 2015-01-30T21:47:55.000Z | 2015-02-10T00:22:27.000Z | src/core/utils/qmath.h | karagog/gutil | 43936af9bc4be1945e4f1a3656e91dfbf42cc35b | [
"Apache-2.0"
] | null | null | null | /*Copyright 2014-2015 George Karagoulis
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 writing, so... | 22.780488 | 72 | 0.722698 |
93f658e7e27bd3a531abf23a5dba88d778845fde | 332 | h | C | Example/Pods/Target Support Files/TYSMTimer/TYSMTimer-umbrella.h | cookies-J/TYSMTimer | 0f5b83e73422d2c0d6ae32a848f46c03a2cfffe3 | [
"MIT"
] | null | null | null | Example/Pods/Target Support Files/TYSMTimer/TYSMTimer-umbrella.h | cookies-J/TYSMTimer | 0f5b83e73422d2c0d6ae32a848f46c03a2cfffe3 | [
"MIT"
] | null | null | null | Example/Pods/Target Support Files/TYSMTimer/TYSMTimer-umbrella.h | cookies-J/TYSMTimer | 0f5b83e73422d2c0d6ae32a848f46c03a2cfffe3 | [
"MIT"
] | null | null | null | #ifdef __OBJC__
#import <UIKit/UIKit.h>
#else
#ifndef FOUNDATION_EXPORT
#if defined(__cplusplus)
#define FOUNDATION_EXPORT extern "C"
#else
#define FOUNDATION_EXPORT extern
#endif
#endif
#endif
#import "TYSMTimer.h"
FOUNDATION_EXPORT double TYSMTimerVersionNumber;
FOUNDATION_EXPORT const unsigned char TYSMTimerVersio... | 18.444444 | 63 | 0.819277 |
93fae3d1f3e2d34e7eea4e940a1e13427a6b01ca | 25,953 | w | C | doc/inc/appendix/code-fragments/graphics.w | sosterwalder/mte7103-qde | e4ed8beda40c9cd15d3c815567d9a4e3396adee7 | [
"MIT"
] | null | null | null | doc/inc/appendix/code-fragments/graphics.w | sosterwalder/mte7103-qde | e4ed8beda40c9cd15d3c815567d9a4e3396adee7 | [
"MIT"
] | null | null | null | doc/inc/appendix/code-fragments/graphics.w | sosterwalder/mte7103-qde | e4ed8beda40c9cd15d3c815567d9a4e3396adee7 | [
"MIT"
] | null | null | null | % -*- mode: poly-latex+python; coding: utf-8 -*-
@o ../src/qde/editor/technical/graphics.py
@{# -*- coding: utf-8 -*-
"""Module providing an abstraction layer for graphics."""
# System imports
import jinja2
import numpy as np
import os
import sys
from PyQt5 import QtCore
from PyQt5 import QtGui
# Project imports
fr... | 27.638978 | 84 | 0.675259 |
93fd17c2dc5d6023630fa74d023359a6fe347341 | 896 | h | C | anreader_sources/datalist_dialog/delegates/lineeditdelegate.h | anpp/anreader | 47fe345d9bfed72cee5686abd0e2662d3ba7629c | [
"BSD-2-Clause"
] | 2 | 2022-03-13T14:10:11.000Z | 2022-03-14T11:35:33.000Z | anreader_sources/datalist_dialog/delegates/lineeditdelegate.h | anpp/anreader | 47fe345d9bfed72cee5686abd0e2662d3ba7629c | [
"BSD-2-Clause"
] | null | null | null | anreader_sources/datalist_dialog/delegates/lineeditdelegate.h | anpp/anreader | 47fe345d9bfed72cee5686abd0e2662d3ba7629c | [
"BSD-2-Clause"
] | null | null | null | #ifndef LINEEDITDELEGATE_H
#define LINEEDITDELEGATE_H
#include <QItemDelegate>
#include <QLineEdit>
#include "common/common.h"
enum class chars_type: int {all = 0, lat_only};
class LineEditDelegate : public QItemDelegate
{
Q_OBJECT
chars_type m_ct = chars_type::all;
public:
LineEditDelegate(QObject *pa... | 30.896552 | 124 | 0.75558 |
93feb98f0afaab45dff572ac2a2bd656d5450349 | 12,360 | c | C | extern/gtk/gtk/gtkgesturelongpress.c | PableteProgramming/download | 013e35bb5c085e5dfdb57a3a0a39cdf2fd3064b8 | [
"MIT"
] | null | null | null | extern/gtk/gtk/gtkgesturelongpress.c | PableteProgramming/download | 013e35bb5c085e5dfdb57a3a0a39cdf2fd3064b8 | [
"MIT"
] | null | null | null | extern/gtk/gtk/gtkgesturelongpress.c | PableteProgramming/download | 013e35bb5c085e5dfdb57a3a0a39cdf2fd3064b8 | [
"MIT"
] | null | null | null | /* GTK - The GIMP Toolkit
* Copyright (C) 2012, One Laptop Per Child.
* Copyright (C) 2014, Red Hat, Inc.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2 of th... | 31.370558 | 173 | 0.700971 |
93ffadf9e474857abc483b5d044b04c2e5cd56d9 | 395 | h | C | Convert.h | CarlOhlsson/Arduino-Converter | b85187035f75b451383af894da04a1a3b6bf5d03 | [
"MIT"
] | 6 | 2018-08-25T17:08:11.000Z | 2021-10-04T12:15:27.000Z | Convert.h | CarlOhlsson/Arduino-Converter | b85187035f75b451383af894da04a1a3b6bf5d03 | [
"MIT"
] | 3 | 2017-09-26T10:09:06.000Z | 2021-02-27T00:11:36.000Z | Convert.h | CarlOhlsson/Arduino-Converter | b85187035f75b451383af894da04a1a3b6bf5d03 | [
"MIT"
] | 4 | 2017-09-16T06:24:37.000Z | 2020-07-02T16:28:51.000Z |
#ifndef Convert_h
#define Convert_h
#include "Arduino.h"
class Convert
{
public:
Convert();
long binaryToDecimal(String value);
long hexaToDecimal(String value);
long octalToDecimal(String value);
String decimalToBinary(long value);
String decimalToHexa(long value);
String decimalToOcta... | 18.809524 | 39 | 0.724051 |
9e014b33b0529c2582dd544bf202bc13f4a20527 | 1,870 | h | C | TeleopUtils/TeleopUtils.h | hprobotics/ftcresources | 4e7217dcf1eccb14f6577db4e43827753b742882 | [
"MIT"
] | 1 | 2019-02-08T15:37:42.000Z | 2019-02-08T15:37:42.000Z | TeleopUtils/TeleopUtils.h | hprobotics/ftcresources | 4e7217dcf1eccb14f6577db4e43827753b742882 | [
"MIT"
] | null | null | null | TeleopUtils/TeleopUtils.h | hprobotics/ftcresources | 4e7217dcf1eccb14f6577db4e43827753b742882 | [
"MIT"
] | null | null | null | #pragma SystemFile
//For more precise joystick control, use these names (i.e. leftjoy1_y) instead of joystick.[name] (i.e. joystick.joy1_y1)
int sign(int num){return (num<0)?-1:1;}
#define leftjoy1_y joystick.joy1_y1*joystick.joy1_y1*100.0/(128.0*128.0)*sign(joystick.joy1_y1)
#define rightjoy1_y joystick.joy1_y2*joyst... | 32.807018 | 121 | 0.754545 |
75c201e0a56af6e3c11a171f49b9fbc140292fcc | 401 | h | C | Twitter-Dumped/7.51.5/t1/T1OnboardingWaitable-Protocol.h | ichitaso/TwitterListEnabler | d4d9ba973e59ff7f0d97ae74fc473bdd0aea54df | [
"MIT"
] | 1 | 2019-10-15T09:26:49.000Z | 2019-10-15T09:26:49.000Z | Twitter-Dumped/7.60.6/T1OnboardingWaitable-Protocol.h | ichitaso/TwitterListEnabler | d4d9ba973e59ff7f0d97ae74fc473bdd0aea54df | [
"MIT"
] | null | null | null | Twitter-Dumped/7.60.6/T1OnboardingWaitable-Protocol.h | ichitaso/TwitterListEnabler | d4d9ba973e59ff7f0d97ae74fc473bdd0aea54df | [
"MIT"
] | 1 | 2019-11-17T06:06:49.000Z | 2019-11-17T06:06:49.000Z | //
// Generated by class-dump 3.5 (64 bit) (Debug version compiled Sep 17 2017 16:24:48).
//
// class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2015 by Steve Nygard.
//
#import <T1Twitter/NSObject-Protocol.h>
@class NSString;
@protocol T1OnboardingWaitable <NSObject>
- (void)stopWaiting;
- (void)waitW... | 23.588235 | 90 | 0.710723 |
75c2732561cc784f2e05150566d406aad77a12ac | 2,359 | h | C | md-parser/src/path.h | kev0960/ModooCode | aae17e3be86da2f39bf93d7a91364b2a6a348525 | [
"Apache-2.0"
] | 39 | 2019-02-26T08:21:06.000Z | 2022-03-24T06:38:25.000Z | md-parser/src/path.h | kev0960/ModooCode | aae17e3be86da2f39bf93d7a91364b2a6a348525 | [
"Apache-2.0"
] | 9 | 2019-03-01T05:07:44.000Z | 2022-02-21T07:39:11.000Z | md-parser/src/path.h | kev0960/ModooCode | aae17e3be86da2f39bf93d7a91364b2a6a348525 | [
"Apache-2.0"
] | 5 | 2021-02-08T05:52:01.000Z | 2022-03-08T06:37:34.000Z | #include <experimental/optional>
#include <map>
#include <memory>
#include <set>
#include <string>
#include <unordered_map>
#include <vector>
using std::string;
using std::experimental::optional;
namespace md_parser {
class PageStructure {
public:
PageStructure(bool is_root_page, const string& current_page_dir);
... | 28.768293 | 80 | 0.740144 |
75c276c025ecbeeecb8f608ba7848b3cdf9666ab | 3,643 | h | C | ecat/src/lib/kernel/matrix_64.h | brainvisa/aims-free | 5852c1164292cadefc97cecace022d14ab362dc4 | [
"CECILL-B"
] | 4 | 2019-07-09T05:34:10.000Z | 2020-10-16T00:03:15.000Z | ecat/src/lib/kernel/matrix_64.h | brainvisa/aims-free | 5852c1164292cadefc97cecace022d14ab362dc4 | [
"CECILL-B"
] | 72 | 2018-10-31T14:52:50.000Z | 2022-03-04T11:22:51.000Z | ecat/src/lib/kernel/matrix_64.h | brainvisa/aims-free | 5852c1164292cadefc97cecace022d14ab362dc4 | [
"CECILL-B"
] | null | null | null | /* @(#)matrix.h 1.5 2/8/93 Copyright 1989 CTI, Inc.";*/
/* prevent recursive definition */
/*
* modification by Sibomana@topo.ucl.ac.be 19-sep-1994
* used to convert 6.4 image files in 7.0 format.
*
*/
#ifndef matrix_64_h
#define matrix_64_h
#include <ecat/kernel/matrix.h>
typedef short int word;
typedef st... | 19.691892 | 65 | 0.736206 |
75c5dc434818d47099c2e49391281d8df2894718 | 468 | h | C | cris-ios/cris-ios/PostsViewController.h | umarmiti/COMP-4350--Group-8 | 396a6e0ef3e1c81f39827b1d82e30b98daa4daf3 | [
"MIT"
] | 1 | 2019-01-10T03:31:48.000Z | 2019-01-10T03:31:48.000Z | cris-ios/cris-ios/PostsViewController.h | umarmiti/COMP-4350--Group-8 | 396a6e0ef3e1c81f39827b1d82e30b98daa4daf3 | [
"MIT"
] | null | null | null | cris-ios/cris-ios/PostsViewController.h | umarmiti/COMP-4350--Group-8 | 396a6e0ef3e1c81f39827b1d82e30b98daa4daf3 | [
"MIT"
] | null | null | null | //
// PostsViewController.h
// cris-ios
//
// Created by Scott Hofer on 2013-03-20.
// Copyright (c) 2013 Scott Hofer. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface PostsViewController : UIViewController <UITableViewDataSource,UITableViewDelegate> {
IBOutlet UITableView *postsTableView;
IBOut... | 21.272727 | 95 | 0.752137 |
75c9c45c76b1d49c2293113d98c44dcd037ca5d2 | 509 | c | C | src/libre/class/utf8_Hangul.c | data-man/libfsm | 90eb0e0794f4eee2e65584549104023f224fed89 | [
"BSD-2-Clause"
] | 766 | 2017-02-01T21:47:09.000Z | 2022-03-30T23:14:02.000Z | src/libre/class/utf8_Hangul.c | data-man/libfsm | 90eb0e0794f4eee2e65584549104023f224fed89 | [
"BSD-2-Clause"
] | 174 | 2017-02-02T18:11:46.000Z | 2022-02-24T23:06:17.000Z | src/libre/class/utf8_Hangul.c | data-man/libfsm | 90eb0e0794f4eee2e65584549104023f224fed89 | [
"BSD-2-Clause"
] | 52 | 2017-02-01T21:45:45.000Z | 2022-01-25T09:21:30.000Z | /* generated */
#include "class.h"
static const struct range ranges[] = {
{ 0x1100UL, 0x11FFUL },
{ 0x302EUL, 0x302FUL },
{ 0x3131UL, 0x318EUL },
{ 0x3200UL, 0x321EUL },
{ 0x3260UL, 0x327EUL },
{ 0xA960UL, 0xA97CUL },
{ 0xAC00UL, 0xD7A3UL },
{ 0xD7B0UL, 0xD7C6UL },
{ 0xD7CBUL, 0xD7FBUL },
{ 0xFFA0UL, 0xFFBE... | 18.851852 | 38 | 0.650295 |
75ca2fbb760747931bd42062088294518ef15298 | 5,685 | h | C | include/tmrl/driver/driver.h | kentsai0319/tmrlib_dev | 019e21d9a5f36a7abafdac3ab017d0513786c165 | [
"BSD-3-Clause"
] | null | null | null | include/tmrl/driver/driver.h | kentsai0319/tmrlib_dev | 019e21d9a5f36a7abafdac3ab017d0513786c165 | [
"BSD-3-Clause"
] | null | null | null | include/tmrl/driver/driver.h | kentsai0319/tmrlib_dev | 019e21d9a5f36a7abafdac3ab017d0513786c165 | [
"BSD-3-Clause"
] | 1 | 2021-02-18T18:36:20.000Z | 2021-02-18T18:36:20.000Z | #pragma once
#include "tmrl/driver/tmsvr_client.h"
#include "tmrl/driver/tmsct_client.h"
#include "tmrl/driver/script_commands.h"
namespace tmrl
{
namespace driver
{
class Driver
{
public:
RobotState &state;
TmsvrClient &tmsvr;
TmsctClient &tmsct;
explicit Driver(TmsvrClient &svr, TmsctClient &sct);
bool... | 34.877301 | 124 | 0.715567 |
75ca611e4df92d69f5f470fd28672983f8f38379 | 23,850 | c | C | src/printer_settings.c | maurerpe/libprinter_settings | 0e362d42bd80b647824cdcd4b6284fd8d1890e5f | [
"BSD-3-Clause"
] | null | null | null | src/printer_settings.c | maurerpe/libprinter_settings | 0e362d42bd80b647824cdcd4b6284fd8d1890e5f | [
"BSD-3-Clause"
] | null | null | null | src/printer_settings.c | maurerpe/libprinter_settings | 0e362d42bd80b647824cdcd4b6284fd8d1890e5f | [
"BSD-3-Clause"
] | null | null | null | /*
Copyright (C) 2018 Paul Maurer
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 and the following disclaimer.
... | 24.237805 | 130 | 0.648008 |
75cb1776b84e108ec69faacfd39519583118ee42 | 1,764 | h | C | TAO/tao/IORInterceptor/IORInterceptor_Details.h | cflowe/ACE | 5ff60b41adbe1772372d1a43bcc1f2726ff8f810 | [
"DOC"
] | 36 | 2015-01-10T07:27:33.000Z | 2022-03-07T03:32:08.000Z | TAO/tao/IORInterceptor/IORInterceptor_Details.h | cflowe/ACE | 5ff60b41adbe1772372d1a43bcc1f2726ff8f810 | [
"DOC"
] | 2 | 2018-08-13T07:30:51.000Z | 2019-02-25T03:04:31.000Z | TAO/tao/IORInterceptor/IORInterceptor_Details.h | cflowe/ACE | 5ff60b41adbe1772372d1a43bcc1f2726ff8f810 | [
"DOC"
] | 38 | 2015-01-08T14:12:06.000Z | 2022-01-19T08:33:00.000Z | // -*- C++ -*-
//=============================================================================
/**
* @file IORInterceptor_Details.h
*
* $Id: IORInterceptor_Details.h 79241 2007-08-07 12:42:30Z johnnyw $
*
* This file declares a class that manages the details
* about a registered client request intercept... | 28 | 79 | 0.667234 |
75cc87acf68f7c4e406a358a3ae2f78b6c4455c9 | 3,747 | h | C | runtime/windows/include/omniORB4/GIOP.h | t-b/igorpro-binding | 9b9d3568d37bc0db5a107d019854e529e19008df | [
"BSD-3-Clause"
] | null | null | null | runtime/windows/include/omniORB4/GIOP.h | t-b/igorpro-binding | 9b9d3568d37bc0db5a107d019854e529e19008df | [
"BSD-3-Clause"
] | null | null | null | runtime/windows/include/omniORB4/GIOP.h | t-b/igorpro-binding | 9b9d3568d37bc0db5a107d019854e529e19008df | [
"BSD-3-Clause"
] | null | null | null | // -*- Mode: C++; -*-
// Package : omniORB2
// GIOP.h Created on: 8/2/96
// Author : Sai Lai Lo (sll)
//
// Copyright (C) 1996-1999 AT&T Laboratories Cambridge
//
// This file is part of the omniORB library
//
// The omniORB library... | 28.823077 | 74 | 0.627969 |
75ce213995f1b54a2745f3f27f552b7cddcf390a | 5,089 | h | C | chrome/browser/ui/tab_contents/tab_contents.h | junmin-zhu/chromium-rivertrail | eb1a57aca71fe68d96e48af8998dcfbe45171ee1 | [
"BSD-3-Clause"
] | 5 | 2018-03-10T13:08:42.000Z | 2021-07-26T15:02:11.000Z | chrome/browser/ui/tab_contents/tab_contents.h | sanyaade-mobiledev/chromium.src | d496dfeebb0f282468827654c2b3769b3378c087 | [
"BSD-3-Clause"
] | 1 | 2015-07-21T08:02:01.000Z | 2015-07-21T08:02:01.000Z | chrome/browser/ui/tab_contents/tab_contents.h | jianglong0156/chromium.src | d496dfeebb0f282468827654c2b3769b3378c087 | [
"BSD-3-Clause"
] | 6 | 2016-11-14T10:13:35.000Z | 2021-01-23T15:29:53.000Z | // 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 CHROME_BROWSER_UI_TAB_CONTENTS_TAB_CONTENTS_H_
#define CHROME_BROWSER_UI_TAB_CONTENTS_TAB_CONTENTS_H_
#include "base/basictypes.h"
#include "... | 36.092199 | 80 | 0.76066 |
75cf66afc87e9e114c7eb8d948c3fdd6d658c5c3 | 174 | c | C | pwdtest.c | zhitaorz/payload | 356e296ae68b47f476af5e4d30ef7efff5c85f4c | [
"MIT-0"
] | null | null | null | pwdtest.c | zhitaorz/payload | 356e296ae68b47f476af5e4d30ef7efff5c85f4c | [
"MIT-0"
] | null | null | null | pwdtest.c | zhitaorz/payload | 356e296ae68b47f476af5e4d30ef7efff5c85f4c | [
"MIT-0"
] | null | null | null | #include "types.h"
#include "user.h"
#include "fcntl.h"
int main(int argc, char *argv[])
{
char path[256];
pwd(path, 256);
printf(0, "%s\n", path);
exit();
} | 15.818182 | 32 | 0.563218 |
75d4bbc52730acea5a45ca2af2455304474c9e19 | 2,781 | c | C | BST_traversing_month.c | BhautikDonga/DATA-STRUCTURE | 50713ef572c2857c4981de0cba14be32ae5866b3 | [
"MIT"
] | null | null | null | BST_traversing_month.c | BhautikDonga/DATA-STRUCTURE | 50713ef572c2857c4981de0cba14be32ae5866b3 | [
"MIT"
] | null | null | null | BST_traversing_month.c | BhautikDonga/DATA-STRUCTURE | 50713ef572c2857c4981de0cba14be32ae5866b3 | [
"MIT"
] | null | null | null | //compare and assign month using array
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
struct treeNode{
char month[10];
struct treeNode * left;
struct treeNode * right;
};
struct treeNode* insert_month(struct treeNode * root, char mon[]){
struct treeNode * newNode,*temp = root;
... | 24.610619 | 67 | 0.488673 |
75d72b9fd6686d742d1109c83daa2ce36af646e1 | 1,465 | h | C | KnowledgeSet/A_C&C++/D_Embedded/_Monitor_/MiniOS/MiniOSTimer.h | HelloUnkira/StudyRecord | 99bdd940609977f3691dcd24ad2a039e8598568a | [
"Apache-2.0"
] | null | null | null | KnowledgeSet/A_C&C++/D_Embedded/_Monitor_/MiniOS/MiniOSTimer.h | HelloUnkira/StudyRecord | 99bdd940609977f3691dcd24ad2a039e8598568a | [
"Apache-2.0"
] | null | null | null | KnowledgeSet/A_C&C++/D_Embedded/_Monitor_/MiniOS/MiniOSTimer.h | HelloUnkira/StudyRecord | 99bdd940609977f3691dcd24ad2a039e8598568a | [
"Apache-2.0"
] | null | null | null | #ifndef MINI_OS_TIMER_H
#define MINI_OS_TIMER_H
//C std lib
#include <stdint.h>
#include <stdbool.h>
#include <stddef.h>
/*************************************************************************************************/
/*************************************************************************************************/... | 58.6 | 99 | 0.245051 |
75d73cac424a738ed473e06c5b1d77507bba852f | 75 | h | C | Inc/adc.h | SteveMoody73/EPROMEmu | fdaf84801461a06c68415c15b15ad7e75b0ac00d | [
"MIT"
] | null | null | null | Inc/adc.h | SteveMoody73/EPROMEmu | fdaf84801461a06c68415c15b15ad7e75b0ac00d | [
"MIT"
] | null | null | null | Inc/adc.h | SteveMoody73/EPROMEmu | fdaf84801461a06c68415c15b15ad7e75b0ac00d | [
"MIT"
] | null | null | null | #ifndef ADC_H
#define ADC_H
#include "stm32f0xx_system.h"
#endif
| 9.375 | 30 | 0.68 |