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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
d1ef50f60087e449887f72dbab91e0ebfe197474 | 928 | h | C | source/parser_data.h | PixelRifts/Rift | 3870548d1660081c99f2b5ab8f8313706aec6f23 | [
"MIT"
] | 19 | 2021-10-19T14:46:13.000Z | 2022-03-28T04:23:31.000Z | source/parser_data.h | PixelRifts/Rift | 3870548d1660081c99f2b5ab8f8313706aec6f23 | [
"MIT"
] | 4 | 2022-01-10T05:48:53.000Z | 2022-01-22T03:23:27.000Z | source/parser_data.h | PixelRifts/Rift | 3870548d1660081c99f2b5ab8f8313706aec6f23 | [
"MIT"
] | 5 | 2022-01-08T21:36:48.000Z | 2022-01-25T13:42:33.000Z | /* date = February 13th 2022 8:35 pm */
#ifndef PARSER_DATA_H
#define PARSER_DATA_H
typedef u32 Prec;
enum Prec {
Prec_Invalid,
Prec_LogOr,
Prec_LogAnd,
Prec_Equality,
Prec_Compare,
Prec_Term,
Prec_Factor,
Prec_Call,
Prec_None,
};
u32 infix_expr_precs[] = {
[TokenType_OpenPare... | 21.581395 | 49 | 0.6875 |
d1f281232cf13fed59a86afb712ab984b3b629eb | 10,749 | c | C | src/mods/io.c | fy0/python_lite | f59850b6093ec8260d96302af25c2bc3bdababc9 | [
"Zlib"
] | 91 | 2016-05-12T21:10:13.000Z | 2022-03-29T14:20:36.000Z | src/mods/io.c | fy0/python_lite | f59850b6093ec8260d96302af25c2bc3bdababc9 | [
"Zlib"
] | 1 | 2017-01-11T23:17:43.000Z | 2021-11-17T05:30:23.000Z | src/mods/io.c | fy0/python_lite | f59850b6093ec8260d96302af25c2bc3bdababc9 | [
"Zlib"
] | 5 | 2017-01-02T12:23:34.000Z | 2022-03-29T14:20:41.000Z |
#include <errno.h>
#include "io.h"
#include "../intp.h"
#include "../api.h"
#include "../bind.h"
#include "../types/all.h"
#include "../types/objectE.h"
#include "../utils/misc.h"
#include "../utils/io/_io.h"
/**
class BaseIO:
def read(self, size=None):
pass
def write(self, buf):
pass
clas... | 38.252669 | 203 | 0.646572 |
d1f3f38293e833b4bd96c8593bc3b68943e8a861 | 1,151 | h | C | effects/internal/effect_panner.h | ngeiswei/zytrax | 31a6962a61af32d7a9ee2e6950b2a54467193918 | [
"MIT"
] | 197 | 2019-05-17T17:09:06.000Z | 2022-03-29T06:45:42.000Z | effects/internal/effect_panner.h | ngeiswei/zytrax | 31a6962a61af32d7a9ee2e6950b2a54467193918 | [
"MIT"
] | 12 | 2019-06-08T04:56:00.000Z | 2021-02-20T16:29:04.000Z | effects/internal/effect_panner.h | ngeiswei/zytrax | 31a6962a61af32d7a9ee2e6950b2a54467193918 | [
"MIT"
] | 9 | 2019-06-05T08:33:12.000Z | 2021-02-21T19:04:25.000Z | #ifndef EFFECT_PANNER_H
#define EFFECT_PANNER_H
#include "engine/audio_effect.h"
class AudioEffectPanner : public AudioEffect {
enum ControlPorts {
CONTROL_PORT_PAN,
CONTROL_PORT_MAX
};
ControlPortDefault control_ports[CONTROL_PORT_MAX];
int block_size;
public:
//process
virtual bool has_secondary_input(... | 26.159091 | 173 | 0.785404 |
d1f53fa3eff152afbc2806c1ccb45a76cd322bec | 208 | h | C | Source/Common/Navigation/NavigationStateCoordinator.h | reddit/AlienBlue | cc37f574c244ec2b49ad780a7edb100f0df0e400 | [
"BSD-3-Clause"
] | 23 | 2021-10-04T19:39:05.000Z | 2022-03-30T15:00:15.000Z | Source/Common/Navigation/NavigationStateCoordinator.h | reddit/AlienBlue | cc37f574c244ec2b49ad780a7edb100f0df0e400 | [
"BSD-3-Clause"
] | null | null | null | Source/Common/Navigation/NavigationStateCoordinator.h | reddit/AlienBlue | cc37f574c244ec2b49ad780a7edb100f0df0e400 | [
"BSD-3-Clause"
] | 1 | 2021-10-05T18:21:49.000Z | 2021-10-05T18:21:49.000Z | @class NavigationManager;
@interface NavigationStateCoordinator : NSObject
- (id)initWithParentNavigationManager:(NavigationManager *)parentNavigationManager;
- (void)saveState;
- (void)restoreState;
@end
| 20.8 | 83 | 0.817308 |
d1f55d49b8f74fd1a20baaf74bb2c18c8c747223 | 1,232 | h | C | System/Library/PrivateFrameworks/Silex.framework/SXFontIndexCacheKey.h | lechium/iOS1351Headers | 6bed3dada5ffc20366b27f7f2300a24a48a6284e | [
"MIT"
] | 2 | 2021-11-02T09:23:27.000Z | 2022-03-28T08:21:57.000Z | System/Library/PrivateFrameworks/Silex.framework/SXFontIndexCacheKey.h | lechium/iOS1351Headers | 6bed3dada5ffc20366b27f7f2300a24a48a6284e | [
"MIT"
] | null | null | null | System/Library/PrivateFrameworks/Silex.framework/SXFontIndexCacheKey.h | lechium/iOS1351Headers | 6bed3dada5ffc20366b27f7f2300a24a48a6284e | [
"MIT"
] | 1 | 2022-03-28T08:21:59.000Z | 2022-03-28T08:21:59.000Z | /*
* This header is generated by classdump-dyld 1.5
* on Wednesday, October 27, 2021 at 3:16:44 PM Mountain Standard Time
* Operating System: Version 13.5.1 (Build 17F80)
* Image Source: /System/Library/PrivateFrameworks/Silex.f... | 41.066667 | 155 | 0.663961 |
d1f570feca2bb96ff9d9ee72e18237183ac64c5c | 3,786 | h | C | include/il2cpp/UnityEngine/UIElements/MouseEventBase_WheelEvent_.h | martmists-gh/BDSP | d6326c5d3ad9697ea65269ed47aa0b63abac2a0a | [
"MIT"
] | 1 | 2022-01-15T20:20:27.000Z | 2022-01-15T20:20:27.000Z | include/il2cpp/UnityEngine/UIElements/MouseEventBase_WheelEvent_.h | martmists-gh/BDSP | d6326c5d3ad9697ea65269ed47aa0b63abac2a0a | [
"MIT"
] | null | null | null | include/il2cpp/UnityEngine/UIElements/MouseEventBase_WheelEvent_.h | martmists-gh/BDSP | d6326c5d3ad9697ea65269ed47aa0b63abac2a0a | [
"MIT"
] | null | null | null | #pragma once
#include "il2cpp.h"
int32_t UnityEngine_UIElements_MouseEventBase_WheelEvent___get_modifiers (UnityEngine_UIElements_MouseEventBase_WheelEvent__o* __this, const MethodInfo* method_info);
UnityEngine_Vector2_o UnityEngine_UIElements_MouseEventBase_WheelEvent___get_mousePosition (UnityEngine_UIElements_Mou... | 157.75 | 262 | 0.925251 |
d1f5d430716e4dbd80fbe9a11767762c6dec8d28 | 473 | h | C | include/DataAccess/CalDAVGetResourceOperation.h | iMokhles/MyTheosHeaders | 2c263362a8a6f947b1a868e03983ed188ead6539 | [
"MIT"
] | 7 | 2016-07-22T14:29:58.000Z | 2021-03-19T05:31:48.000Z | iphone-private-frameworks-master/DataAccess/CalDAVGetResourceOperation.h | tt295362026/demo | 7d6e9e75f29c992ea9c5693d38f76e0012bbbf15 | [
"BSD-4-Clause"
] | null | null | null | iphone-private-frameworks-master/DataAccess/CalDAVGetResourceOperation.h | tt295362026/demo | 7d6e9e75f29c992ea9c5693d38f76e0012bbbf15 | [
"BSD-4-Clause"
] | 3 | 2017-02-06T23:58:01.000Z | 2017-10-31T03:47:52.000Z | /**
* This header is generated by class-dump-z 0.2-1.
* class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3.
*
* Source: /System/Library/PrivateFrameworks/DataAccess.framework/DataAccess
*/
#import <DAVKit/AYOperation.h>
@class DAVSession, NSString;
@interface CalDAVGetResourceOperation : AYOpe... | 22.52381 | 76 | 0.737844 |
d1f69a4bd49c08da16d65c3d4e90612b24c56515 | 2,482 | c | C | srcs/log2_meta.c | AugustinLopez/Fancy_Ft_Malloc | 279d6a5090883a3060bc352159488eb41808b911 | [
"MIT"
] | 2 | 2020-10-18T22:30:17.000Z | 2020-11-25T14:39:33.000Z | srcs/log2_meta.c | AugustinLopez/Fancy_Ft_Malloc | 279d6a5090883a3060bc352159488eb41808b911 | [
"MIT"
] | null | null | null | srcs/log2_meta.c | AugustinLopez/Fancy_Ft_Malloc | 279d6a5090883a3060bc352159488eb41808b911 | [
"MIT"
] | null | null | null | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* log2_meta.c :+: :+: :+: ... | 32.233766 | 80 | 0.399275 |
d1f6e11191c0eb4d7cebc28380aa92e9119997b6 | 2,434 | c | C | C/math/Sieve_of_Eratosthenes.c | zhcet19/NeoAlgo-1 | c534a23307109280bda0e4867d6e8e490002a4ee | [
"MIT"
] | 897 | 2020-06-25T00:12:52.000Z | 2022-03-24T00:49:31.000Z | C/math/Sieve_of_Eratosthenes.c | zhcet19/NeoAlgo-1 | c534a23307109280bda0e4867d6e8e490002a4ee | [
"MIT"
] | 5,707 | 2020-06-24T17:53:28.000Z | 2022-01-22T05:03:15.000Z | C/math/Sieve_of_Eratosthenes.c | zhcet19/NeoAlgo-1 | c534a23307109280bda0e4867d6e8e490002a4ee | [
"MIT"
] | 1,817 | 2020-06-25T03:51:05.000Z | 2022-03-29T05:14:07.000Z | /*Sieve_of_eratosthenes
Sieve of Eratosthenes is an ancient algorithm for finding all prime numbers up to any given limit.
It does so by iteratively marking as composite (i.e., not prime) the multiples of each prime, starting with
the first prime number, 2. The multiples of a given prime are generated as a sequen... | 25.621053 | 124 | 0.556286 |
d1f8ccfc87496e5c0e7c5dbd7bcebe7e3626cd1f | 9,246 | h | C | client/resources/framework/cmc/ext/cmc/intervalheap.h | 6l17ch-3xpl017/uchat | 15a206010a8a9df5ad8e6ab9a97c22ffff404720 | [
"Unlicense"
] | null | null | null | client/resources/framework/cmc/ext/cmc/intervalheap.h | 6l17ch-3xpl017/uchat | 15a206010a8a9df5ad8e6ab9a97c22ffff404720 | [
"Unlicense"
] | null | null | null | client/resources/framework/cmc/ext/cmc/intervalheap.h | 6l17ch-3xpl017/uchat | 15a206010a8a9df5ad8e6ab9a97c22ffff404720 | [
"Unlicense"
] | null | null | null | /**
* ext/cmc/intervalheap.h
*
* Creation Date: 02/06/2020
*
* Authors:
* Leonardo Vencovsky (https://github.com/LeoVen)
*
*/
#ifndef CMC_EXT_CMC_INTERVALHEAP_H
#define CMC_EXT_CMC_INTERVALHEAP_H
#include "../../cor/core.h"
/**
* All the EXT parts of CMC IntervalHeap.
*/
#define CMC_EXT_CMC_INTERVALHEAP_PA... | 30.019481 | 120 | 0.551698 |
d1fa01ff17906201015d77e7703d2898af81f14a | 16,021 | h | C | WDYBaseProject/Classes/UIComponent/ModalPresentationViewController.h | wangdongyang/WDYBaseProject | 863982cc88d4ca9a999f4653b89d1ce8a0a16687 | [
"MIT"
] | null | null | null | WDYBaseProject/Classes/UIComponent/ModalPresentationViewController.h | wangdongyang/WDYBaseProject | 863982cc88d4ca9a999f4653b89d1ce8a0a16687 | [
"MIT"
] | null | null | null | WDYBaseProject/Classes/UIComponent/ModalPresentationViewController.h | wangdongyang/WDYBaseProject | 863982cc88d4ca9a999f4653b89d1ce8a0a16687 | [
"MIT"
] | null | null | null | //
// ModalPresentationViewController.h
// MultiCustomUIComponent
//
// Created by fang wang on 17/1/13.
// Copyright © 2017年 wdy. All rights reserved.
//
#import <UIKit/UIKit.h>
@class ModalPresentationViewController;
typedef enum : NSUInteger {
ModalPresentationAnimationStyleFade, // 渐现渐隐,默认
ModalPr... | 37.171694 | 239 | 0.740715 |
d1fa721b72dc16038a8fbd471392d2f592be8555 | 2,104 | c | C | test_projects/nif/c_src/example/example.c | vanillahsu/unifex | a501479b611a94c8a1477d969e170a7280673b7c | [
"Apache-2.0"
] | 42 | 2018-09-11T02:27:00.000Z | 2022-03-23T18:30:56.000Z | test_projects/nif/c_src/example/example.c | vanillahsu/unifex | a501479b611a94c8a1477d969e170a7280673b7c | [
"Apache-2.0"
] | 30 | 2018-10-18T10:56:22.000Z | 2022-03-09T13:04:51.000Z | test_projects/nif/c_src/example/example.c | vanillahsu/unifex | a501479b611a94c8a1477d969e170a7280673b7c | [
"Apache-2.0"
] | 7 | 2018-10-24T09:21:40.000Z | 2022-03-29T12:39:08.000Z | #include "example.h"
int example_was_handle_load_called = 0;
int handle_load(UnifexEnv *env, void **priv_data) {
UNIFEX_UNUSED(env);
UNIFEX_UNUSED(priv_data);
example_was_handle_load_called = 1;
return 0;
}
UNIFEX_TERM init(UnifexEnv *env) {
MyState *state = unifex_alloc_state(env);
state->a = 42;
UNIF... | 27.684211 | 79 | 0.75903 |
d1fb39152a3ca6ffb11c970ac2772b903ed81e49 | 1,304 | h | C | components/sync/model/local_change_observer.h | google-ar/chromium | 2441c86a5fd975f09a6c30cddb57dfb7fc239699 | [
"Apache-2.0",
"BSD-3-Clause-No-Nuclear-License-2014",
"BSD-3-Clause"
] | 2,151 | 2020-04-18T07:31:17.000Z | 2022-03-31T08:39:18.000Z | components/sync/model/local_change_observer.h | harrymarkovskiy/WebARonARCore | 2441c86a5fd975f09a6c30cddb57dfb7fc239699 | [
"Apache-2.0",
"BSD-3-Clause-No-Nuclear-License-2014",
"BSD-3-Clause"
] | 395 | 2020-04-18T08:22:18.000Z | 2021-12-08T13:04:49.000Z | components/sync/model/local_change_observer.h | harrymarkovskiy/WebARonARCore | 2441c86a5fd975f09a6c30cddb57dfb7fc239699 | [
"Apache-2.0",
"BSD-3-Clause-No-Nuclear-License-2014",
"BSD-3-Clause"
] | 338 | 2020-04-18T08:03:10.000Z | 2022-03-29T12:33:22.000Z | // Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef COMPONENTS_SYNC_MODEL_LOCAL_CHANGE_OBSERVER_H_
#define COMPONENTS_SYNC_MODEL_LOCAL_CHANGE_OBSERVER_H_
namespace syncer {
class SyncChange;
names... | 39.515152 | 80 | 0.77684 |
06013bccaacdc2a365f05dbdc529e17809bbdcfc | 916 | h | C | qWebTest/qskinobject/config/configurator.h | privet56/qWebTest | d85166445d04d9fe918b7225986cf62b7e757797 | [
"Apache-2.0"
] | null | null | null | qWebTest/qskinobject/config/configurator.h | privet56/qWebTest | d85166445d04d9fe918b7225986cf62b7e757797 | [
"Apache-2.0"
] | null | null | null | qWebTest/qskinobject/config/configurator.h | privet56/qWebTest | d85166445d04d9fe918b7225986cf62b7e757797 | [
"Apache-2.0"
] | null | null | null | #ifndef CONFIGURATOR_H_
#define CONFIGURATOR_H_
#include <QtGui>
#include "ui_configurator.h"
#include "../qskinobject/qskinobject.h"
class Configurator : public QWidget, public Ui::configurator
{
Q_OBJECT
public:
Configurator(QWidget *parent = 0);
void initData();
public slots:
void skinOnToggled(... | 19.489362 | 60 | 0.633188 |
0601b7018ce8f54c982910490256789295a92c7f | 1,284 | h | C | src/arpmonitorworker.h | ktemelkov/arp-monitor | 2e7914768d841a3665d8e25135e4a5449aa3298a | [
"MIT"
] | null | null | null | src/arpmonitorworker.h | ktemelkov/arp-monitor | 2e7914768d841a3665d8e25135e4a5449aa3298a | [
"MIT"
] | null | null | null | src/arpmonitorworker.h | ktemelkov/arp-monitor | 2e7914768d841a3665d8e25135e4a5449aa3298a | [
"MIT"
] | null | null | null | #include <napi.h>
#include <pcap/pcap.h>
/**
*
*/
class ArpMonitorWorker : public Napi::AsyncProgressQueueWorker<u_char> {
public:
/**
*
*/
ArpMonitorWorker(const Napi::Env& env, Napi::String intfName, Napi::Array hwAddr, Napi::Function& progressCallback, ArpMonitorWorker** parentPointer);
/**
*
... | 16.253165 | 152 | 0.642523 |
06020c358c6a021f31c34d52ae3cd1d60a68dfec | 1,031 | h | C | plot_2D_opengl.h | RomanFesenko/SurfaceViewer | e8f27946ae3bce125b4c6639d9315e4652f401e5 | [
"MIT"
] | null | null | null | plot_2D_opengl.h | RomanFesenko/SurfaceViewer | e8f27946ae3bce125b4c6639d9315e4652f401e5 | [
"MIT"
] | null | null | null | plot_2D_opengl.h | RomanFesenko/SurfaceViewer | e8f27946ae3bce125b4c6639d9315e4652f401e5 | [
"MIT"
] | null | null | null |
#ifndef _plot_2D_opengl_
#define _plot_2D_opengl_
#include <utility>
#include <functional>
#include "plot_2D_base.h"
class COpenGLDrawer2D:public CDrawer2D
{
using point_t=Eigen::Vector2f;
using box_t=Eigen::AlignedBox<float,2>;
bool m_domain_init=false;
bool m_draw=false;
const float m_b... | 28.638889 | 64 | 0.735209 |
060744f96b9f853315274212f927ac3d9236bf6a | 602 | h | C | resources/Wireshark/WiresharkDissectorFoo/epan/dissectors/packet-bssap.h | joshis1/C_Programming | 4a8003321251448a167bfca0b595c5eeab88608d | [
"MIT"
] | 2 | 2020-09-11T05:51:42.000Z | 2020-12-31T11:42:02.000Z | resources/Wireshark/WiresharkDissectorFoo/epan/dissectors/packet-bssap.h | joshis1/C_Programming | 4a8003321251448a167bfca0b595c5eeab88608d | [
"MIT"
] | null | null | null | resources/Wireshark/WiresharkDissectorFoo/epan/dissectors/packet-bssap.h | joshis1/C_Programming | 4a8003321251448a167bfca0b595c5eeab88608d | [
"MIT"
] | null | null | null | /* packet-bssap.h
* Routines for Base Station Subsystem Application Part (BSSAP/BSAP) dissection
* Specifications from 3GPP2 (www.3gpp2.org) and 3GPP (www.3gpp.org)
* IOS 4.0.1 (BSAP)
* GSM 08.06 (BSSAP)
*
* Copyright 2003, Michael Lum <mlum [AT] telostech.com>
* In association with Telos Technology Inc.
*
* W... | 28.666667 | 79 | 0.750831 |
0607edd1d90c51b5b39812f18c6a3cdb127c9f3d | 4,266 | c | C | Clothing Adviser/ColorPaletteRatingMATLAB/getPlaneFeatures.c | pallik/OutfitAdvisor | 37611cb5601e240cd58d5c49d82fe1ae4ac1196f | [
"MIT"
] | null | null | null | Clothing Adviser/ColorPaletteRatingMATLAB/getPlaneFeatures.c | pallik/OutfitAdvisor | 37611cb5601e240cd58d5c49d82fe1ae4ac1196f | [
"MIT"
] | null | null | null | Clothing Adviser/ColorPaletteRatingMATLAB/getPlaneFeatures.c | pallik/OutfitAdvisor | 37611cb5601e240cd58d5c49d82fe1ae4ac1196f | [
"MIT"
] | null | null | null | /*
* getPlaneFeatures.c
*
* Code generation for function 'getPlaneFeatures'
*
* C source code generated on: Sat Jan 10 16:52:51 2015
*
*/
/* Include files */
#include "rateColorPalette.h"
#include "getPlaneFeatures.h"
#include "sum.h"
#include "pca2.h"
/* Function Definitions */
void getPlaneFeatures(const rea... | 20.411483 | 81 | 0.474449 |
0608bf1165304473b1f21dbe99f2e62e438e888c | 85 | h | C | tools/Ubertooth/firmware/btbr/include/ubtbr/master_state.h | Charmve/BLE-Security-Att-Def | 3652d84bf4ac0c694bb3c4c0f611098da9122af0 | [
"BSD-2-Clause"
] | 149 | 2020-10-23T23:31:51.000Z | 2022-03-15T00:25:35.000Z | tools/Ubertooth/firmware/btbr/include/ubtbr/master_state.h | Charmve/BLE-Security-Att-Def | 3652d84bf4ac0c694bb3c4c0f611098da9122af0 | [
"BSD-2-Clause"
] | 1 | 2021-04-12T19:24:00.000Z | 2021-04-27T03:11:07.000Z | tools/Ubertooth/firmware/btbr/include/ubtbr/master_state.h | Charmve/BLE-Security-Att-Def | 3652d84bf4ac0c694bb3c4c0f611098da9122af0 | [
"BSD-2-Clause"
] | 22 | 2020-11-17T02:52:40.000Z | 2022-03-15T00:26:38.000Z | #ifndef __MASTER_TASK_H
#define __MASTER_TASK_H
void master_state_init(void);
#endif
| 17 | 29 | 0.847059 |
4d4252d1a0894f5c7036bd678771e4a6cdeb6a96 | 714 | h | C | src/lllengine.h | gligneul/Lua-LLVM | 1579b46e28d9ca16b70b9e9f3c11b389734eca00 | [
"MIT"
] | 12 | 2016-02-26T02:50:59.000Z | 2021-05-27T00:56:16.000Z | src/lllengine.h | gligneul/Lua-LLVM | 1579b46e28d9ca16b70b9e9f3c11b389734eca00 | [
"MIT"
] | null | null | null | src/lllengine.h | gligneul/Lua-LLVM | 1579b46e28d9ca16b70b9e9f3c11b389734eca00 | [
"MIT"
] | 1 | 2021-03-25T18:56:50.000Z | 2021-03-25T18:56:50.000Z | /*
** LLL - Lua Low Level
** September, 2015
** Author: Gabriel de Quadros Ligneul
** Copyright Notice for LLL: see lllcore.h
**
** lllengine.h
*/
#ifndef LLLENGINE_H
#define LLLENGINE_H
#include <memory>
#include <llvm/ExecutionEngine/ExecutionEngine.h>
namespace lll {
class Engine {
public:
Engine(llvm::Exec... | 16.604651 | 59 | 0.672269 |
4d427687cd6ecd52cb367481eb37a0980a682b0f | 229 | h | C | test/unit-test/src/test-mbus-001.h | solosTec/node | e35e127867a4f66129477b780cbd09c5231fc7da | [
"MIT"
] | 2 | 2020-03-03T12:40:29.000Z | 2021-05-06T06:20:19.000Z | test/unit-test/src/test-mbus-001.h | solosTec/node | e35e127867a4f66129477b780cbd09c5231fc7da | [
"MIT"
] | 7 | 2020-01-14T20:38:04.000Z | 2021-05-17T09:52:07.000Z | test/unit-test/src/test-mbus-001.h | solosTec/node | e35e127867a4f66129477b780cbd09c5231fc7da | [
"MIT"
] | 2 | 2019-11-09T09:14:48.000Z | 2020-03-03T12:40:30.000Z | /*
* The MIT License (MIT)
*
* Copyright (c) 2018 Sylko Olzscher
*
*/
#ifndef TEST_MBUS_001_H
#define TEST_MBUS_001_H
#include <NODE_project_info.h>
namespace node
{
bool test_mbus_001();
}
#endif // TEST_MBUS_001_H
| 13.470588 | 37 | 0.69869 |
4d447ce36fbb5c1c263b3cb3ade2098734cfdc93 | 1,001 | h | C | include/QMarkdown/extensions/admonition.h | mugwort-rc/QMarkdown | cd865b41ef6038d32d109bdb0eae830ed1eb14a3 | [
"BSD-3-Clause"
] | null | null | null | include/QMarkdown/extensions/admonition.h | mugwort-rc/QMarkdown | cd865b41ef6038d32d109bdb0eae830ed1eb14a3 | [
"BSD-3-Clause"
] | null | null | null | include/QMarkdown/extensions/admonition.h | mugwort-rc/QMarkdown | cd865b41ef6038d32d109bdb0eae830ed1eb14a3 | [
"BSD-3-Clause"
] | null | null | null | #ifndef ADMONITION_H
#define ADMONITION_H
/*!
* Admonition extension for Python-Markdown
* ========================================
*
* Adds rST-style admonitions. Inspired by [rST][] feature with the same name.
*
* [rST]: http://docutils.sourceforge.net/docs/ref/rst/directives.html#specific-admonitions # noqa
... | 24.414634 | 102 | 0.705295 |
4d45c75be923d17342b3fecab42e857c91dc85bc | 2,775 | h | C | include/monkey/mk_http2_dynamic_table.h | leonardo-albertovich/monkey | 2df5dd2d2f844d2d022e68d8e8a15862e733a5fd | [
"Apache-2.0"
] | null | null | null | include/monkey/mk_http2_dynamic_table.h | leonardo-albertovich/monkey | 2df5dd2d2f844d2d022e68d8e8a15862e733a5fd | [
"Apache-2.0"
] | null | null | null | include/monkey/mk_http2_dynamic_table.h | leonardo-albertovich/monkey | 2df5dd2d2f844d2d022e68d8e8a15862e733a5fd | [
"Apache-2.0"
] | null | null | null | /* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/* Monkey HTTP Server
* ==================
* Copyright 2001-2017 Eduardo Silva <eduardo@monkey.io>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the Licens... | 39.642857 | 85 | 0.628108 |
4d462649d872f92621120683eeda12b27f54d34a | 3,469 | h | C | protobuf_demo/item_write.h | deguangchow/protobuf_demo | 73d983868d93e3005f27cf098e04e3adad40f6a0 | [
"MIT"
] | null | null | null | protobuf_demo/item_write.h | deguangchow/protobuf_demo | 73d983868d93e3005f27cf098e04e3adad40f6a0 | [
"MIT"
] | null | null | null | protobuf_demo/item_write.h | deguangchow/protobuf_demo | 73d983868d93e3005f27cf098e04e3adad40f6a0 | [
"MIT"
] | null | null | null | /// Copyright (C) 2019 DG.C, DGCHOW, deguangchow
/// deguangchow@qq.com
///
/// \brief item_write : item 写
///
/// \author deguangchow
/// \version 1.0
/// \2019/10/28
#pragma once
#pragma once
#ifndef ITEM_WRITE_H
#define ITEM_WRITE_H
#include "item.pb.h"
void PromptForItemProperty(::cor... | 24.090278 | 78 | 0.515999 |
4d46ccf0ac4bb259b48ec6a00473643926280b97 | 484 | h | C | LibWaveSynther/A_MOTHOD.h | Angelic47/LibWaveSynther | bd0b71a59a46dab562f13f67424242d722b26779 | [
"MIT"
] | 20 | 2021-02-12T19:27:17.000Z | 2022-02-10T14:29:44.000Z | LibWaveSynther/A_MOTHOD.h | Angelic47/LibWaveSynther | bd0b71a59a46dab562f13f67424242d722b26779 | [
"MIT"
] | 1 | 2021-09-13T01:44:56.000Z | 2021-09-18T12:56:31.000Z | LibWaveSynther/A_MOTHOD.h | Angelic47/LibWaveSynther | bd0b71a59a46dab562f13f67424242d722b26779 | [
"MIT"
] | 3 | 2021-02-13T10:06:19.000Z | 2021-09-13T01:36:39.000Z | #ifndef A_MOTHOD_H
#define A_MOTHOD_H
#define _0 255
#define _1 38
#define _2 40
#define _3 42
#define _4 43
#define _5 45
#define _6 47
#define _7 49
#define _1U 50
#define _2U 52
#define _3U 54
#define _4U 55
#define _5U 57
#define _6U 59
#define _7U 61
#define _1B 26
#define _2B 28
#define _3B 30
#define _4B 31
#... | 13.081081 | 18 | 0.735537 |
4d49475a56846b2611be11d8d206e84e3326fdad | 14,809 | c | C | src/graphic.c | MrrRaph/Encode-Decode-Morse-Code | f628d52d272056db3fc4db3b79981b50fd58d5a3 | [
"Apache-2.0"
] | 2 | 2021-01-30T07:26:01.000Z | 2022-01-12T06:15:53.000Z | src/graphic.c | MrrRaph/Encode-Decode-Morse-Code | f628d52d272056db3fc4db3b79981b50fd58d5a3 | [
"Apache-2.0"
] | null | null | null | src/graphic.c | MrrRaph/Encode-Decode-Morse-Code | f628d52d272056db3fc4db3b79981b50fd58d5a3 | [
"Apache-2.0"
] | null | null | null | #include "../headers/graphic.h"
int graphicInterface(Arbre tree)
{
if(SDLnIMGnTTF_Initialize() == EXIT_FAILURE)
return EXIT_FAILURE;
SDL_Window * window = SDL_CreateWindow("Encode&Decode Morse Code", SDL_WINDOWPOS_CENTERED, SDL_WINDOWPOS_CENTERED,
SCREEN_WIDTH, SCREEN_HEIGHT, SDL_WINDOW_SHOWN);
if(!wi... | 27.322878 | 203 | 0.670673 |
4d4b4a09c1a07b9da2af6e659d10f890eb4e1de9 | 123 | h | C | src/include/font_mine.h | MarkRoss470/pepperOS | 669e3b24840cc9ba1d25db2d2180a0406026b500 | [
"MIT"
] | null | null | null | src/include/font_mine.h | MarkRoss470/pepperOS | 669e3b24840cc9ba1d25db2d2180a0406026b500 | [
"MIT"
] | null | null | null | src/include/font_mine.h | MarkRoss470/pepperOS | 669e3b24840cc9ba1d25db2d2180a0406026b500 | [
"MIT"
] | null | null | null | #ifndef FONT_H
#define FONT_H
#include <stdint.h>
#include <util/types.h>
const uint8_t *font_char_mine(char c);
#endif
| 12.3 | 38 | 0.739837 |
4d4bbda5de6801ded470d343f62861fcb29a01f7 | 4,862 | h | C | platform/gucefCORE/include/CROIOAccess.h | amvb/GUCEF | 08fd423bbb5cdebbe4b70df24c0ae51716b65825 | [
"Apache-2.0"
] | 5 | 2016-04-18T23:12:51.000Z | 2022-03-06T05:12:07.000Z | platform/gucefCORE/include/CROIOAccess.h | amvb/GUCEF | 08fd423bbb5cdebbe4b70df24c0ae51716b65825 | [
"Apache-2.0"
] | 2 | 2015-10-09T19:13:25.000Z | 2018-12-25T17:16:54.000Z | platform/gucefCORE/include/CROIOAccess.h | amvb/GUCEF | 08fd423bbb5cdebbe4b70df24c0ae51716b65825 | [
"Apache-2.0"
] | 15 | 2015-02-23T16:35:28.000Z | 2022-03-25T13:40:33.000Z | /*
* gucefCORE: GUCEF module providing O/S abstraction and generic solutions
* Copyright (C) 2002 - 2007. Dinand Vanvelzen
*
* 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 Foundati... | 41.913793 | 80 | 0.358083 |
4d501eb776c3668e9870f958525b2d7a8b994232 | 892 | h | C | MiaoSha/Pods/TTCounterLabel/Source/TTCounterLabel.h | daqiangge/ZhengFengDuoMiao | 155533193f68a5f93233679cd135bd38621f7109 | [
"Apache-2.0"
] | 1 | 2017-10-27T06:38:41.000Z | 2017-10-27T06:38:41.000Z | Sport/ThirdKit/CustomUi/TimerLabel/TTCounterLabel.h | zltqzj/Sport | 28c9b443ba683a548ba72fb01d575a40eaf3b0fe | [
"Apache-2.0"
] | null | null | null | Sport/ThirdKit/CustomUi/TimerLabel/TTCounterLabel.h | zltqzj/Sport | 28c9b443ba683a548ba72fb01d575a40eaf3b0fe | [
"Apache-2.0"
] | null | null | null | //
// TTCounterLabel.h
// TTCounterLabel
//
// Created by Ross Gibson on 10/10/2013.
// Copyright (c) 2013 Triggertrap. All rights reserved.
//
#import "TTTAttributedLabel.h"
typedef NS_ENUM(NSInteger, kCountDirection){
kCountDirectionUp = 0,
kCountDirectionDown
};
@protocol TTCounterLabelDelegate <NSObj... | 22.871795 | 63 | 0.758969 |
4d519ff03dcd08179a98d4c69004d9517e171f6e | 580 | h | C | CoreUI.framework/CUINamedRecognitionImage.h | reels-research/iOS-Private-Frameworks | 9a4f4534939310a51fdbf5a439dd22487efb0f01 | [
"MIT"
] | 4 | 2021-10-06T12:15:26.000Z | 2022-02-21T02:26:00.000Z | CoreUI.framework/CUINamedRecognitionImage.h | reels-research/iOS-Private-Frameworks | 9a4f4534939310a51fdbf5a439dd22487efb0f01 | [
"MIT"
] | null | null | null | CoreUI.framework/CUINamedRecognitionImage.h | reels-research/iOS-Private-Frameworks | 9a4f4534939310a51fdbf5a439dd22487efb0f01 | [
"MIT"
] | 1 | 2021-10-08T07:40:53.000Z | 2021-10-08T07:40:53.000Z | /* Generated by RuntimeBrowser
Image: /System/Library/PrivateFrameworks/CoreUI.framework/CoreUI
*/
@interface CUINamedRecognitionImage : CUINamedLookup
@property (nonatomic, readonly) int exifOrientation;
@property (nonatomic, readonly) struct CGImage { }*image;
@property (nonatomic, readonly) struct CGSize { dou... | 34.117647 | 93 | 0.768966 |
4d52831e2229f5245d0145dc8b4a4ef66ba84f35 | 2,074 | h | C | System/Library/PrivateFrameworks/PersonalizationPortraitInternals.framework/PPContact.h | lechium/iPhoneOS_12.1.1_Headers | aac688b174273dfcbade13bab104461f463db772 | [
"MIT"
] | 12 | 2019-06-02T02:42:41.000Z | 2021-04-13T07:22:20.000Z | System/Library/PrivateFrameworks/PersonalizationPortraitInternals.framework/PPContact.h | lechium/iPhoneOS_12.1.1_Headers | aac688b174273dfcbade13bab104461f463db772 | [
"MIT"
] | null | null | null | System/Library/PrivateFrameworks/PersonalizationPortraitInternals.framework/PPContact.h | lechium/iPhoneOS_12.1.1_Headers | aac688b174273dfcbade13bab104461f463db772 | [
"MIT"
] | 3 | 2019-06-11T02:46:10.000Z | 2019-12-21T14:58:16.000Z | /*
* This header is generated by classdump-dyld 1.0
* on Saturday, June 1, 2019 at 6:52:49 PM Mountain Standard Time
* Operating System: Version 12.1.1 (Build 16C5050a)
* Image Source: /System/Library/PrivateFrameworks/PersonalizationPortraitInternals.framework/PersonalizationPortraitInternals
* classdump-dyld is licen... | 35.758621 | 135 | 0.725651 |
4d54c4440c55f21b1722d55f6b62f017647d5b69 | 345 | h | C | include/ee2/CombineAO.h | xzrunner/easyeditor2 | 7b399e7b6571c93d3193d9ed6e47b5d4a946c036 | [
"MIT"
] | null | null | null | include/ee2/CombineAO.h | xzrunner/easyeditor2 | 7b399e7b6571c93d3193d9ed6e47b5d4a946c036 | [
"MIT"
] | null | null | null | include/ee2/CombineAO.h | xzrunner/easyeditor2 | 7b399e7b6571c93d3193d9ed6e47b5d4a946c036 | [
"MIT"
] | null | null | null | #pragma once
#include <ee0/AtomicOP.h>
#include <memory>
#include <vector>
namespace ee2
{
class CombineAO : public ee0::AtomicOP
{
public:
virtual void Undo() override;
virtual void Redo() override;
void Add(const std::shared_ptr<ee0::AtomicOP>& ao);
private:
std::vector<std::shared_ptr<ee0::AtomicOP>> m_ato... | 14.375 | 55 | 0.713043 |
4d557aec9b4834628ae7dc7882436df45ed67f88 | 334 | h | C | YFCategory/Foundation/YFCategory+Foundation.h | ghostfeng/YFCategory | 2d932651a38ff8023d33108f44feae8ce445f5bc | [
"MIT"
] | null | null | null | YFCategory/Foundation/YFCategory+Foundation.h | ghostfeng/YFCategory | 2d932651a38ff8023d33108f44feae8ce445f5bc | [
"MIT"
] | null | null | null | YFCategory/Foundation/YFCategory+Foundation.h | ghostfeng/YFCategory | 2d932651a38ff8023d33108f44feae8ce445f5bc | [
"MIT"
] | null | null | null | //
// YFCategory+Foundation.h
// YFCategoryDemo
//
// Created by 刘永峰 on 2019/3/19.
// Copyright © 2019 刘永峰. All rights reserved.
//
#ifndef YFCategory_Foundation_h
#define YFCategory_Foundation_h
#import "NSObject+YFCategory.h"
#import "NSDate+YFCategory.h"
#import "NSString+YFCategory.h"
#endif /* YFCategory_Fo... | 19.647059 | 46 | 0.742515 |
4d5611e5f1ffa0a0e07289b5ce2fa3112e7230f1 | 1,893 | h | C | DYLTool/DYLTool/HttpService/NetWork/MacrosNetWork.h | a619668402/DYLTool | 3cce16df7c7c7bf1cbc68ac2e4f6089eeb4b0923 | [
"Apache-2.0"
] | null | null | null | DYLTool/DYLTool/HttpService/NetWork/MacrosNetWork.h | a619668402/DYLTool | 3cce16df7c7c7bf1cbc68ac2e4f6089eeb4b0923 | [
"Apache-2.0"
] | null | null | null | DYLTool/DYLTool/HttpService/NetWork/MacrosNetWork.h | a619668402/DYLTool | 3cce16df7c7c7bf1cbc68ac2e4f6089eeb4b0923 | [
"Apache-2.0"
] | null | null | null | //
// MacrosNetWork.h
// DYLTool
//
// Created by sky on 2018/6/13.
// Copyright © 2018年 DYL. All rights reserved.
//
/*********************************************
网络请求相关
*********************************************/
#ifndef MacrosNetWork_h
#define ... | 38.632653 | 91 | 0.467512 |
4d56171e710d9d70cf84f29f4f3c90e00c264b9c | 10,704 | h | C | Engine/Core/Containers/StringPointerHash.h | vitei/Usa | c44f893d5b3d8080529ecf0e227f983fddb829d4 | [
"MIT"
] | 47 | 2018-04-27T02:16:26.000Z | 2022-02-28T05:21:24.000Z | Engine/Core/Containers/StringPointerHash.h | vitei/Usa | c44f893d5b3d8080529ecf0e227f983fddb829d4 | [
"MIT"
] | 2 | 2018-11-13T18:46:41.000Z | 2022-03-12T00:04:44.000Z | Engine/Core/Containers/StringPointerHash.h | vitei/Usa | c44f893d5b3d8080529ecf0e227f983fddb829d4 | [
"MIT"
] | 6 | 2019-08-10T21:56:23.000Z | 2020-10-21T11:18:29.000Z | /****************************************************************************
// Usagi Engine, Copyright © Vitei, Inc. 2013
****************************************************************************/
#pragma once
#ifndef STRING_POINTER_HASH_H
#define STRING_POINTER_HASH_H
#include "Engine/Memory/MemHeap.h"
#includ... | 20.427481 | 143 | 0.626588 |
4d569da24fab4ef9d2df49473e41c5d4e28afab5 | 7,505 | h | C | src/java.desktop/share/native/libmlib_image/mlib_image_types.h | siweilxy/openjdkstudy | 8597674ec1d6809faf55cbee1f45f4e9149d670d | [
"Apache-2.0"
] | 2 | 2018-06-19T05:43:32.000Z | 2018-06-23T10:04:56.000Z | src/java.desktop/share/native/libmlib_image/mlib_image_types.h | siweilxy/openjdkstudy | 8597674ec1d6809faf55cbee1f45f4e9149d670d | [
"Apache-2.0"
] | 1 | 2020-12-26T04:57:19.000Z | 2020-12-26T04:57:19.000Z | src/java.desktop/share/native/libmlib_image/mlib_image_types.h | siweilxy/openjdkstudy | 8597674ec1d6809faf55cbee1f45f4e9149d670d | [
"Apache-2.0"
] | 1 | 2021-12-06T01:13:18.000Z | 2021-12-06T01:13:18.000Z | /*
* Copyright (c) 1997, 2003, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free ... | 41.010929 | 91 | 0.57455 |
4d56fc38f0c47be5604a6688754528d43c803240 | 1,377 | h | C | linux-socfpga/arch/mips/include/asm/mach-loongson32/regs-clk.h | AlbandeCrevoisier/ldd-athens | 93112a15ceac601c93e577ec16369ba7d3b6949e | [
"BSD-3-Clause"
] | null | null | null | linux-socfpga/arch/mips/include/asm/mach-loongson32/regs-clk.h | AlbandeCrevoisier/ldd-athens | 93112a15ceac601c93e577ec16369ba7d3b6949e | [
"BSD-3-Clause"
] | null | null | null | linux-socfpga/arch/mips/include/asm/mach-loongson32/regs-clk.h | AlbandeCrevoisier/ldd-athens | 93112a15ceac601c93e577ec16369ba7d3b6949e | [
"BSD-3-Clause"
] | null | null | null | /*
* Copyright (c) 2011 Zhang, Keguang <keguang.zhang@gmail.com>
*
* Loongson 1 Clock Register Definitions.
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2 of the L... | 26.480769 | 75 | 0.750908 |
4d5834aaca10028051a53c70e15f77e4db1cd4db | 274 | h | C | kernels.h | voxel-tracer/cuda-raytracing-optimized | 3e20bc1194a498a69d527f1c0786803e25060c61 | [
"MIT"
] | null | null | null | kernels.h | voxel-tracer/cuda-raytracing-optimized | 3e20bc1194a498a69d527f1c0786803e25060c61 | [
"MIT"
] | null | null | null | kernels.h | voxel-tracer/cuda-raytracing-optimized | 3e20bc1194a498a69d527f1c0786803e25060c61 | [
"MIT"
] | null | null | null | #pragma once
// Required to include vec3.h
#include "helper_structs.h"
extern "C" void initRenderer(const kernel_scene sc, const camera cam, vec3 * *fb, int nx, int ny, int maxDepth);
extern "C" void runRenderer(int ns, int tx, int ty);
extern "C" void cleanupRenderer();
| 30.444444 | 112 | 0.729927 |
4d585f6c1e04879a1881cfbcf7ae0345cb89601f | 8,077 | h | C | Slicer/Slicing/FunctionStaticSlicer.h | twang15/BarrierFinder | c20ff99ffeeeabc1508682bc99ffb4c7659e7e9f | [
"MIT"
] | null | null | null | Slicer/Slicing/FunctionStaticSlicer.h | twang15/BarrierFinder | c20ff99ffeeeabc1508682bc99ffb4c7659e7e9f | [
"MIT"
] | null | null | null | Slicer/Slicing/FunctionStaticSlicer.h | twang15/BarrierFinder | c20ff99ffeeeabc1508682bc99ffb4c7659e7e9f | [
"MIT"
] | null | null | null | // This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
#ifndef SLICING_FUNCTIONSTATICSLICER_H
#define SLICING_FUNCTIONSTATICSLICER_H
#include <map>
#include <utility> /* pair */
#include "llvm/IR/Value.h"
#include "llvm/ADT/SetVector.h"
#include "llvm/IR/Ins... | 33.376033 | 116 | 0.657794 |
4d5a524384327b19756dcf5491628424569ff370 | 534 | h | C | Books/SFML Game Development by Example/Chapter 3/Snake/Snake/include/Textbox.h | mequint/Cpp-Samples | a5e8e08381121c10c100632ae190cc509be3293e | [
"MIT"
] | null | null | null | Books/SFML Game Development by Example/Chapter 3/Snake/Snake/include/Textbox.h | mequint/Cpp-Samples | a5e8e08381121c10c100632ae190cc509be3293e | [
"MIT"
] | null | null | null | Books/SFML Game Development by Example/Chapter 3/Snake/Snake/include/Textbox.h | mequint/Cpp-Samples | a5e8e08381121c10c100632ae190cc509be3293e | [
"MIT"
] | null | null | null | #pragma once
#include <SFML/Graphics.hpp>
using MessageContainer = std::vector<std::string>;
class Textbox {
public:
Textbox();
Textbox(int visible, int charSize, int width, const sf::Vector2f& screenPos);
~Textbox();
void Setup(int visible, int charSize, int width, const sf::Vector2f& screenPos);
void Add(cons... | 21.36 | 81 | 0.735955 |
4d5cca1d5f6e66d41947b59b4f688eae99650c78 | 619 | h | C | phase_1/eval/livingston/variants/unpatched/common/include/Wave.h | cromulencellc/chess-aces | 7780e29de1991758078816ca501ff79a2586b8c2 | [
"MIT"
] | null | null | null | phase_1/eval/livingston/variants/unpatched/common/include/Wave.h | cromulencellc/chess-aces | 7780e29de1991758078816ca501ff79a2586b8c2 | [
"MIT"
] | null | null | null | phase_1/eval/livingston/variants/unpatched/common/include/Wave.h | cromulencellc/chess-aces | 7780e29de1991758078816ca501ff79a2586b8c2 | [
"MIT"
] | null | null | null | #ifndef WAVE_H
#define WAVE_H
#include "Serializable.h"
#include "Utils.h"
class LFO;
class Wave : public Serializable {
public:
Wave();
Wave(uint32_t sampleRate);
virtual ~Wave();
void addLFO(double detune, double modDepth, double rate);
virtual double getCarrierSignal(double freq) = 0;
virtual audio_sampl... | 25.791667 | 59 | 0.746365 |
4d6163f5d3d470fb6e7293c3afaa62f3b2bf5366 | 9,035 | c | C | src/ace/acecli.c | zvezdochiot/iminterp | f3ca130e2b7d849f236d1a46d23b4f35ab6596f0 | [
"BSD-2-Clause"
] | 1 | 2019-06-14T20:13:33.000Z | 2019-06-14T20:13:33.000Z | src/ace/acecli.c | IPOL-Fork/iminterp | f3ca130e2b7d849f236d1a46d23b4f35ab6596f0 | [
"BSD-2-Clause"
] | null | null | null | src/ace/acecli.c | IPOL-Fork/iminterp | f3ca130e2b7d849f236d1a46d23b4f35ab6596f0 | [
"BSD-2-Clause"
] | null | null | null | /**
* @file acecli.c
* @brief ACE automatic color enhancement command line program
* @author Pascal Getreuer <getreuer@gmail.com>
*
* Copyright (c) 2012, Pascal Getreuer
* All rights reserved.
*
* This program is free software: you can redistribute it and/or modify it
* under, at your option, the terms of the ... | 30.523649 | 78 | 0.50249 |
4d62884ec27e5bf1bbfdaba300aafb12ad6837f3 | 5,800 | c | C | src/bcon.c | mochimo-in-a-container/mochimo | 7ae45d7dd6157cc0fe7997a0c2fc39e86dab668c | [
"BSD-3-Clause-No-Nuclear-Warranty",
"Unlicense"
] | null | null | null | src/bcon.c | mochimo-in-a-container/mochimo | 7ae45d7dd6157cc0fe7997a0c2fc39e86dab668c | [
"BSD-3-Clause-No-Nuclear-Warranty",
"Unlicense"
] | null | null | null | src/bcon.c | mochimo-in-a-container/mochimo | 7ae45d7dd6157cc0fe7997a0c2fc39e86dab668c | [
"BSD-3-Clause-No-Nuclear-Warranty",
"Unlicense"
] | null | null | null | /* bcon.c Block Constructor
*
* Copyright (c) 2018 by Adequate Systems, LLC. All Rights Reserved.
* See LICENSE.PDF **** NO WARRANTY ****
*
* The Mochimo Project System Software
*
* Date: 10 January 2018
*
* NOTE: Invoked by server.c by fork() and execl()
*
* Inputs: argv[1], txclean.dat
*
* Output... | 28.15534 | 79 | 0.596724 |
4d63000c93ec9a7851a1f67524322124a6e17676 | 2,484 | c | C | src/test/test_endianess.c | sseering/pycryptodome | ebe633f30ae5b1a6f171fc75a33a6dfca9a7a0b3 | [
"Unlicense"
] | 1 | 2021-05-12T04:02:03.000Z | 2021-05-12T04:02:03.000Z | src/test/test_endianess.c | sseering/pycryptodome | ebe633f30ae5b1a6f171fc75a33a6dfca9a7a0b3 | [
"Unlicense"
] | null | null | null | src/test/test_endianess.c | sseering/pycryptodome | ebe633f30ae5b1a6f171fc75a33a6dfca9a7a0b3 | [
"Unlicense"
] | null | null | null | #include "common.h"
#include <assert.h>
void test_little_32(void)
{
uint32_t t;
uint8_t res[4];
t = 0x04030201U;
memset(res, 0xFF, 4);
u32to8_little(res, &t);
assert(0 == memcmp(res, "\x01\x02\x03\x04", 4));
t = ~0U;
u8to32_little(&t, res);
assert(t == 0x04030201U);
t = ~0U;
... | 19.40625 | 68 | 0.58132 |
4d66de0ba837bfdcbdbdb20e98607a236dd42588 | 583 | h | C | src/BLASxON/gnd/util/inc/m__swaprow.h | meinkea/RottenCore | 310a1cad96558e6e6accc1f67baf141fb921048c | [
"Unlicense"
] | null | null | null | src/BLASxON/gnd/util/inc/m__swaprow.h | meinkea/RottenCore | 310a1cad96558e6e6accc1f67baf141fb921048c | [
"Unlicense"
] | null | null | null | src/BLASxON/gnd/util/inc/m__swaprow.h | meinkea/RottenCore | 310a1cad96558e6e6accc1f67baf141fb921048c | [
"Unlicense"
] | null | null | null | /*! /file m__swaprow.h
*
*/
#ifndef BLASxON__M__SWAPROW_H
#define BLASxON__M__SWAPROW_H
// -- CPU Architecture
#include "../../cpu_architecture/cpu_architecture.h"
// -- BLAS Datatypes
// #include "../../datatypes/inc/vector.h"
#include "../../datatypes/inc/matrix.h"
#ifdef __cplusplus
exter... | 14.219512 | 54 | 0.634648 |
4d66e564b3108d5db596a3e27e6b82ff13802dc3 | 1,325 | c | C | Cadeira Algoritmos em C/Nro Primos Acima DiagP.c | rhuanlinke/banco-algoritmo | b026cedaf3415d7f51f079cf32e8976cb97f0516 | [
"MIT"
] | 1 | 2020-06-16T04:31:06.000Z | 2020-06-16T04:31:06.000Z | Cadeira Algoritmos em C/Nro Primos Acima DiagP.c | rhuanlinke/Banco-Algoritmo | b026cedaf3415d7f51f079cf32e8976cb97f0516 | [
"MIT"
] | null | null | null | Cadeira Algoritmos em C/Nro Primos Acima DiagP.c | rhuanlinke/Banco-Algoritmo | b026cedaf3415d7f51f079cf32e8976cb97f0516 | [
"MIT"
] | null | null | null | /******************************************************************************
Faça um algoritmo que armazena em uma matriz quadrada a quantidade de numeros do tipo int definidos pelo usuário
e que verifica e imprime na tela todos os números que são primos e que estão presentes acima diagonal principal.
Ex.: Em Amar... | 23.245614 | 112 | 0.355472 |
4d688643c7dc9595eb3ee7a87587585098a3a777 | 5,514 | h | C | usr/src/cmd/rpcbind/rpcbind.h | AsahiOS/gate | 283d47da4e17a5871d9d575e7ffb81e8f6c52e51 | [
"MIT"
] | null | null | null | usr/src/cmd/rpcbind/rpcbind.h | AsahiOS/gate | 283d47da4e17a5871d9d575e7ffb81e8f6c52e51 | [
"MIT"
] | null | null | null | usr/src/cmd/rpcbind/rpcbind.h | 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... | 32.05814 | 78 | 0.735945 |
4d694b6ace0bbd4e82c4b4d7d8234c63d7b1f602 | 5,201 | h | C | Examples_3/Unit_Tests/src/06_MaterialPlayground/Shaders/FSL/Quest/hair.comp.h | divecoder/The-Forge | e882fbc000b2915b52c98fe3a8c791930490dd3c | [
"Apache-2.0"
] | 3,058 | 2017-10-03T01:33:22.000Z | 2022-03-30T22:04:23.000Z | Examples_3/Unit_Tests/src/06_MaterialPlayground/Shaders/FSL/Quest/hair.comp.h | juteman/The-Forge | e882fbc000b2915b52c98fe3a8c791930490dd3c | [
"Apache-2.0"
] | 157 | 2018-01-26T10:18:33.000Z | 2022-03-06T10:59:23.000Z | Examples_3/Unit_Tests/src/06_MaterialPlayground/Shaders/FSL/Quest/hair.comp.h | juteman/The-Forge | e882fbc000b2915b52c98fe3a8c791930490dd3c | [
"Apache-2.0"
] | 388 | 2017-12-21T10:52:32.000Z | 2022-03-31T18:25:49.000Z |
#define THREAD_GROUP_SIZE 64
struct VertexIndices
{
uint globalStrandIndex;
uint localStrandIndex;
uint globalVertexIndex;
uint localVertexIndex;
uint indexSharedMem;
};
struct StrandIndices
{
uint globalStrandIndex;
uint globalRootVertexIndex;
};
struct Capsule
{
float4 center0AndRadius0;
float4 center1A... | 26.535714 | 124 | 0.722553 |
4d6bd495975dd3d18c14d8ecc0cbc35cf7f1426d | 5,773 | h | C | libimage/source/Image.h | PRImA-Research-Lab/prima-image-lib | 9072672cf1f42caf35e8c69d6b09ee6217fb24a6 | [
"Apache-2.0"
] | 4 | 2017-10-04T06:23:11.000Z | 2019-05-09T14:39:12.000Z | libimage/source/Image.h | PRImA-Research-Lab/prima-image-lib | 9072672cf1f42caf35e8c69d6b09ee6217fb24a6 | [
"Apache-2.0"
] | null | null | null | libimage/source/Image.h | PRImA-Research-Lab/prima-image-lib | 9072672cf1f42caf35e8c69d6b09ee6217fb24a6 | [
"Apache-2.0"
] | 2 | 2018-10-11T02:01:42.000Z | 2019-02-09T21:30:59.000Z | #ifndef IMAGE_H
#define IMAGE_H
#ifdef _MSC_VER
#include "afxwin.h"
#include "extrastring.h"
//#include <pstdint.h>
#include <cstdint>
#else
#include <stdint.h>
#endif
#ifndef DllExport
#ifndef PRIMA_DLL_IMPORT
#define DllExport __declspec( dllexport )
#else
#define DllExport __declspec( dllimport )
#endif
#en... | 31.546448 | 133 | 0.69877 |
4d6e51162ab6375cb3034413d88f41df5ca52b15 | 342 | h | C | Websocket/ftp/ftp_command.h | JacobBorden/Websocket | b21fc17f1363b898a0c1ff94c093bd083d0b6a8c | [
"MIT"
] | null | null | null | Websocket/ftp/ftp_command.h | JacobBorden/Websocket | b21fc17f1363b898a0c1ff94c093bd083d0b6a8c | [
"MIT"
] | 27 | 2021-04-05T03:39:51.000Z | 2021-04-11T19:52:20.000Z | Websocket/ftp/ftp_command.h | JacobBorden/Websocket | b21fc17f1363b898a0c1ff94c093bd083d0b6a8c | [
"MIT"
] | null | null | null | #pragma once
#ifndef FTP_COMMAND_H
#define FTP_COMMAND_H
#include <iostream>
#include "../socket/socket.h"
#include "ftp_command.h"
namespace ftp {
class Cmd
{
public:
std::string code = "\0";
std::string args = "\0";
int Send(Socket websocket);
static int ReceiveResponse(Socket websocket);
};
}
#en... | 14.25 | 47 | 0.687135 |
4d6e863219bdf83bcd64042a1e11be2b3715e7ec | 369 | h | C | include/nsessentials/util/GLDebug.h | NSchertler/NSEssentials | e5bceb01708368756528fdc95054bd3d05b7b745 | [
"BSD-3-Clause"
] | 2 | 2020-11-20T13:21:36.000Z | 2022-03-25T17:41:58.000Z | include/nsessentials/util/GLDebug.h | NSchertler/NSEssentials | e5bceb01708368756528fdc95054bd3d05b7b745 | [
"BSD-3-Clause"
] | null | null | null | include/nsessentials/util/GLDebug.h | NSchertler/NSEssentials | e5bceb01708368756528fdc95054bd3d05b7b745 | [
"BSD-3-Clause"
] | 2 | 2019-02-21T03:10:25.000Z | 2022-03-25T17:42:04.000Z | #pragma once
#ifdef HAVE_NANOGUI
#include <nanogui/opengl.h>
#include <unordered_set>
#include "nsessentials/NSELibrary.h"
namespace nse
{
namespace util
{
class NSE_EXPORT GLDebug
{
public:
static void IgnoreGLError(GLuint errorId);
static void SetupDebugCallback();
private:
static std::unor... | 14.192308 | 48 | 0.718157 |
4d716afb1644fdcbf4f9847c4242bc0dd2c02817 | 5,108 | c | C | app/src/main/cpp/tcpick/lookup_tree.c | alessandrodd/AndroidintheMiddle | dfc12ae5108d7ad03de5b896d7808a6c55916f14 | [
"MIT"
] | null | null | null | app/src/main/cpp/tcpick/lookup_tree.c | alessandrodd/AndroidintheMiddle | dfc12ae5108d7ad03de5b896d7808a6c55916f14 | [
"MIT"
] | 1 | 2021-07-01T03:15:27.000Z | 2021-07-01T03:15:27.000Z | app/src/main/cpp/tcpick/src/lookup_tree.c | alessandrodd/AndroidintheMiddle | dfc12ae5108d7ad03de5b896d7808a6c55916f14 | [
"MIT"
] | null | null | null | /*
* lookup_tree.c -- the tree of host lookup engine
* Part of the tcpick project
*
* Author: Francesco Stablum <duskdruid @ despammed.com>
*
* Copyright (C) 2003, 2004 Francesco Stablum
* Licensed under the GPL
*
*/
/*
* This program is free software; you can redistribute it and/or
* modify it under the ... | 17.198653 | 70 | 0.606891 |
4d733ed39501b921007549696d3c1506463b4932 | 627 | h | C | src/rx/core/traits/remove_extent.h | DethRaid/rex | 21ba92d38398240faa45a402583c11f8c72e6e41 | [
"MIT"
] | 2 | 2020-06-13T11:39:46.000Z | 2021-03-10T01:03:03.000Z | src/rx/core/traits/remove_extent.h | DethRaid/rex | 21ba92d38398240faa45a402583c11f8c72e6e41 | [
"MIT"
] | null | null | null | src/rx/core/traits/remove_extent.h | DethRaid/rex | 21ba92d38398240faa45a402583c11f8c72e6e41 | [
"MIT"
] | 1 | 2021-01-06T03:47:08.000Z | 2021-01-06T03:47:08.000Z | #ifndef RX_CORE_TRAITS_REMOVE_EXTENT_H
#define RX_CORE_TRAITS_REMOVE_EXTENT_H
#include "rx/core/types.h" // Size
#include "rx/core/traits/type_identity.h"
namespace rx::traits {
namespace detail {
template<typename T>
struct remove_extent : traits::type_identity<T> {};
template<typename T>
struct remove_exte... | 25.08 | 62 | 0.749601 |
4d75e514301ddcd1ea2429137df32c4750b7fd28 | 53,254 | c | C | NAMD_2.12_Source/charm-6.7.1/src/conv-core/memory-charmdebug.c | scottkwarren/config-db | fb5c3da2465e5cff0ad30950493b11d452bd686b | [
"MIT"
] | 1 | 2019-01-17T20:07:23.000Z | 2019-01-17T20:07:23.000Z | NAMD_2.12_Source/charm-6.7.1/src/conv-core/memory-charmdebug.c | scottkwarren/config-db | fb5c3da2465e5cff0ad30950493b11d452bd686b | [
"MIT"
] | null | null | null | NAMD_2.12_Source/charm-6.7.1/src/conv-core/memory-charmdebug.c | scottkwarren/config-db | fb5c3da2465e5cff0ad30950493b11d452bd686b | [
"MIT"
] | null | null | null | /*
* Filippo's charm debug memory module, gioachin@uiuc.edu, 2005/10
* based on Orion's memory-leak.c
*
* This special version of malloc() and company is meant to be used in
* conjunction with the parallel debugger CharmDebug.
*
* Functionalities provided:
* - detect multiple delete on a pointer
* - stacktrace... | 30.889791 | 167 | 0.660007 |
4d7729af937db335ca144ee252a9e6964cced95e | 188 | c | C | Tests/Programs/Exp.c | ALMikhai/CCompiler | a5df9a834685ffb673d5d545ebb9e7ab28c02b93 | [
"MIT"
] | null | null | null | Tests/Programs/Exp.c | ALMikhai/CCompiler | a5df9a834685ffb673d5d545ebb9e7ab28c02b93 | [
"MIT"
] | null | null | null | Tests/Programs/Exp.c | ALMikhai/CCompiler | a5df9a834685ffb673d5d545ebb9e7ab28c02b93 | [
"MIT"
] | null | null | null | #include <stdio.h>
void print_int(int a) {
printf("%d\n", a);
}
int main() {
int a = 3;
int b = 0;
a = (1, print_int(a), b = 1, 4);
print_int(a);
print_int(b);
}
| 13.428571 | 36 | 0.484043 |
4d77d9314228ceb45274b37ca13786db87684ed1 | 3,359 | h | C | src/normalized_conjunction.h | denis631/llvm-lab | 113bf8be19b74db7320779137a1082b4ad6de238 | [
"Unlicense"
] | null | null | null | src/normalized_conjunction.h | denis631/llvm-lab | 113bf8be19b74db7320779137a1082b4ad6de238 | [
"Unlicense"
] | null | null | null | src/normalized_conjunction.h | denis631/llvm-lab | 113bf8be19b74db7320779137a1082b4ad6de238 | [
"Unlicense"
] | null | null | null | //
// conjunction.h
// PAIN
//
// Created by Tim Gymnich on 17.1.20.
//
#pragma once
#include <unordered_map>
#include <vector>
#include <set>
#include <llvm/IR/Instructions.h>
#include "global.h"
#include "linear_equality.h"
namespace pcpo {
class NormalizedConjunction {
public:
std::unordered_map<llvm::V... | 41.9875 | 134 | 0.730277 |
4d7af0584e1f567bc4285afcb39eec5d3b95957b | 1,375 | c | C | deps/nanoresource/allocator.c | jwerle/sleepfile.c | 34f8f1d1b9fbc5357555928feb6c80fc1083e503 | [
"MIT"
] | 5 | 2019-07-25T23:11:14.000Z | 2022-02-25T15:58:20.000Z | deps/nanoresource/allocator.c | jwerle/libsleepfile | 34f8f1d1b9fbc5357555928feb6c80fc1083e503 | [
"MIT"
] | null | null | null | deps/nanoresource/allocator.c | jwerle/libsleepfile | 34f8f1d1b9fbc5357555928feb6c80fc1083e503 | [
"MIT"
] | null | null | null | #include "nanoresource/allocator.h"
#include <stdlib.h>
#ifndef NANORESOURCE_ALLOCATOR_ALLOC
#define NANORESOURCE_ALLOCATOR_ALLOC 0
#endif
#ifndef NANORESOURCE_ALLOCATOR_FREE
#define NANORESOURCE_ALLOCATOR_FREE 0
#endif
static void *(*alloc)(unsigned long int) = NANORESOURCE_ALLOCATOR_ALLOC;
static void (*dealloc)(v... | 19.642857 | 72 | 0.711273 |
4d7b616977ddeac3d1828a137776c5512fa13ccb | 1,387 | c | C | main/kernel.c | kammce/KinXOS | 637ecc7a345e19df7ebffd95b476591ce1134829 | [
"MIT"
] | null | null | null | main/kernel.c | kammce/KinXOS | 637ecc7a345e19df7ebffd95b476591ce1134829 | [
"MIT"
] | null | null | null | main/kernel.c | kammce/KinXOS | 637ecc7a345e19df7ebffd95b476591ce1134829 | [
"MIT"
] | null | null | null | /* Desc: Kernel C Code and Main file */
/* Check if the bit BIT in FLAGS is set. */
#include <multiboot.h>
#include <cpu.h>
#include <core.h>
#include <memory.h>
#include <shell.h>
#include <stdio.h>
#include <varg.h>
#include <video.h>
kmain(unsigned long magic, unsigned long info) //like normal main in C programs
{... | 25.218182 | 79 | 0.658255 |
4d7e91a644bf5c69f0fe55f1da730a021fe53227 | 3,723 | c | C | kamailio/modules/src/mod_dsiprouter.c | ednt/dsiprouter | 7f24186c907e4bdf8f63a90a8cfc311139db3189 | [
"Apache-2.0"
] | 130 | 2017-07-18T11:50:56.000Z | 2022-02-26T09:21:53.000Z | kamailio/modules/src/mod_dsiprouter.c | ednt/dsiprouter | 7f24186c907e4bdf8f63a90a8cfc311139db3189 | [
"Apache-2.0"
] | 319 | 2017-07-21T15:46:30.000Z | 2022-03-27T05:25:24.000Z | kamailio/modules/src/mod_dsiprouter.c | ednt/dsiprouter | 7f24186c907e4bdf8f63a90a8cfc311139db3189 | [
"Apache-2.0"
] | 87 | 2017-07-21T13:27:05.000Z | 2022-02-22T20:06:41.000Z | /*
* mod_dsiprouter.c
*/
/*!
* \file
* \brief dSipRouter Module Interface
* \ingroup dsiprouter
* Module: \ref dsiprouter
*/
/**
* @defgroup dsiprouter dsiprouter :: Kamailio dsiprouter module
* @brief Kamailio dsiprouter module
*/
#include <string.h>
#include <stdio.h>
#include "../../core/ver_defs.h"
#in... | 28.638462 | 99 | 0.701853 |
4d7f46c85e1d0d8559341e2ce4ab87108658e49f | 1,531 | c | C | problem_production_of_water/queue.c | Paulo-http/pthreads | da7e45b7cb87da9a72f09a25c4d8dadf4f78b07f | [
"MIT"
] | null | null | null | problem_production_of_water/queue.c | Paulo-http/pthreads | da7e45b7cb87da9a72f09a25c4d8dadf4f78b07f | [
"MIT"
] | null | null | null | problem_production_of_water/queue.c | Paulo-http/pthreads | da7e45b7cb87da9a72f09a25c4d8dadf4f78b07f | [
"MIT"
] | null | null | null | //
// queue.c
// pthreads
//
// Created by Paulo Henrique Leite on 10/04/2018.
// Copyright © 2018 com.hfleite. All rights reserved.
//
#include "queue.h"
bool is_empty(node *atoms) {
return (atoms->next == NULL) ? true : false;
}
void _free(node *atoms) {
if (is_empty(atoms)) {
return;
}
... | 18.22619 | 54 | 0.524494 |
4d81906ba84de7a0fb54f361ae255e6562a2667b | 237 | h | C | helper/PrivateInterfaces/NSTouchbarItem.h | cyco/karma-touchbar-reporter | 39657ca0ca6fc6d9a3aaef71d08a90237cce4631 | [
"MIT"
] | 10 | 2018-04-27T10:41:33.000Z | 2020-09-15T14:18:25.000Z | helper/PrivateInterfaces/NSTouchbarItem.h | cyco/karma-touchbar-reporter | 39657ca0ca6fc6d9a3aaef71d08a90237cce4631 | [
"MIT"
] | 1 | 2018-06-17T18:41:57.000Z | 2018-06-20T19:21:45.000Z | helper/PrivateInterfaces/NSTouchbarItem.h | cyco/karma-touchbar-reporter | 39657ca0ca6fc6d9a3aaef71d08a90237cce4631 | [
"MIT"
] | null | null | null | #ifndef NSTouchbarItem_h
#define NSTouchbarItem_h
@interface NSTouchBarItem ()
+ (void)removeSystemTrayItem:(id)arg1;
+ (void)addSystemTrayItem:(id)arg1;
+ (void)removeTouchIDItem:(id)arg1;
+ (void)addTouchIDItem:(id)arg1;
@end
#endif
| 19.75 | 38 | 0.772152 |
4d8a2b03562eea73ca277931c19702f12608c191 | 1,136 | h | C | System/Library/PrivateFrameworks/PersonalizationPortraitInternals.framework/PPDiscoverySuggester.h | lechium/iPhoneOS_12.1.1_Headers | aac688b174273dfcbade13bab104461f463db772 | [
"MIT"
] | 12 | 2019-06-02T02:42:41.000Z | 2021-04-13T07:22:20.000Z | System/Library/PrivateFrameworks/PersonalizationPortraitInternals.framework/PPDiscoverySuggester.h | lechium/iPhoneOS_12.1.1_Headers | aac688b174273dfcbade13bab104461f463db772 | [
"MIT"
] | null | null | null | System/Library/PrivateFrameworks/PersonalizationPortraitInternals.framework/PPDiscoverySuggester.h | lechium/iPhoneOS_12.1.1_Headers | aac688b174273dfcbade13bab104461f463db772 | [
"MIT"
] | 3 | 2019-06-11T02:46:10.000Z | 2019-12-21T14:58:16.000Z | /*
* This header is generated by classdump-dyld 1.0
* on Saturday, June 1, 2019 at 6:52:49 PM Mountain Standard Time
* Operating System: Version 12.1.1 (Build 16C5050a)
* Image Source: /System/Library/PrivateFrameworks/PersonalizationPortraitInternals.framework/PersonalizationPortraitInternals
* classdump-dyld is licen... | 31.555556 | 125 | 0.78081 |
4d8beedcf8c668464a3b2b63f73abc3476b0c0dc | 506 | h | C | PrivateFrameworks/PassKitUI.framework/PKStoreProductViewController.h | shaojiankui/iOS10-Runtime-Headers | 6b0d842bed0c52c2a7c1464087b3081af7e10c43 | [
"MIT"
] | 36 | 2016-04-20T04:19:04.000Z | 2018-10-08T04:12:25.000Z | PrivateFrameworks/PassKitUI.framework/PKStoreProductViewController.h | shaojiankui/iOS10-Runtime-Headers | 6b0d842bed0c52c2a7c1464087b3081af7e10c43 | [
"MIT"
] | null | null | null | PrivateFrameworks/PassKitUI.framework/PKStoreProductViewController.h | shaojiankui/iOS10-Runtime-Headers | 6b0d842bed0c52c2a7c1464087b3081af7e10c43 | [
"MIT"
] | 10 | 2016-06-16T02:40:44.000Z | 2019-01-15T03:31:45.000Z | /* Generated by RuntimeBrowser
Image: /System/Library/PrivateFrameworks/PassKitUI.framework/PassKitUI
*/
@interface PKStoreProductViewController : SKStoreProductViewController <SKStoreProductViewControllerDelegate>
@property (readonly, copy) NSString *debugDescription;
@property (readonly, copy) NSString *descrip... | 31.625 | 109 | 0.812253 |
4d8bfe9c29835c910eed92a8c706b8d834d584dc | 1,514 | h | C | SJVideoPlayer/ControlView/SJVideoPlayerFilmEditingControlView.h | MiaoShichang/SJVideoPlayer | 831fc57d74419c5a1914a6e3f83165fe0615e0bf | [
"MIT"
] | 1 | 2018-05-30T07:05:59.000Z | 2018-05-30T07:05:59.000Z | SJVideoPlayer/ControlView/SJVideoPlayerFilmEditingControlView.h | hgl753951/SJVideoPlayer | f73b60feea7efa06e0e3da2b73b33940fadb3eb7 | [
"MIT"
] | null | null | null | SJVideoPlayer/ControlView/SJVideoPlayerFilmEditingControlView.h | hgl753951/SJVideoPlayer | f73b60feea7efa06e0e3da2b73b33940fadb3eb7 | [
"MIT"
] | 1 | 2020-04-22T03:04:26.000Z | 2020-04-22T03:04:26.000Z | //
// SJVideoPlayerFilmEditingControlView.h
// SJVideoPlayerProject
//
// Created by BlueDancer on 2018/3/9.
// Copyright © 2018年 SanJiang. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "SJVideoPlayerFilmEditingStatus.h"
#import "SJVideoPlayerFilmEditingCommonHeader.h"
NS_ASSUME_NONNULL_BEGIN
@interfac... | 38.820513 | 111 | 0.783355 |
4d901670519f58c1441c8e72063650acc05b8560 | 2,247 | c | C | Validation/pyFrame3DD-master/gcc-master/gcc/testsuite/c-c++-common/Wrestrict-2.c | djamal2727/Main-Bearing-Analytical-Model | 2f00c2219c71be0175c6f4f8f1d4cca231d97096 | [
"Apache-2.0"
] | null | null | null | Validation/pyFrame3DD-master/gcc-master/gcc/testsuite/c-c++-common/Wrestrict-2.c | djamal2727/Main-Bearing-Analytical-Model | 2f00c2219c71be0175c6f4f8f1d4cca231d97096 | [
"Apache-2.0"
] | null | null | null | Validation/pyFrame3DD-master/gcc-master/gcc/testsuite/c-c++-common/Wrestrict-2.c | djamal2727/Main-Bearing-Analytical-Model | 2f00c2219c71be0175c6f4f8f1d4cca231d97096 | [
"Apache-2.0"
] | null | null | null | /* PR 35503 - Warn about restricted pointers
Test to exercise that -Wrestrict warnings are issued for memory and
sring functions when they are declared in system headers (i.e., not
just when they are explicitly declared in the source file.)
Also verify that the warnings are issued even for calls where the
... | 24.16129 | 118 | 0.665777 |
4d90b11dd20b7eb25da6863974d5bd4125ff493d | 701 | h | C | srv/espaciocomplementario.h | stsewd/polideportivo | 420da8135b4529115fb5f5acae901c0b6cbca3f7 | [
"MIT"
] | null | null | null | srv/espaciocomplementario.h | stsewd/polideportivo | 420da8135b4529115fb5f5acae901c0b6cbca3f7 | [
"MIT"
] | null | null | null | srv/espaciocomplementario.h | stsewd/polideportivo | 420da8135b4529115fb5f5acae901c0b6cbca3f7 | [
"MIT"
] | null | null | null | #ifndef ESPACIOCOIMPLEMENTARIO_H
#define ESPACIOCOIMPLEMENTARIO_H
#include <string>
#include "espacio.h"
class TipoEspacioComplementario {
public:
std::string nombre;
TipoEspacioComplementario(){}
TipoEspacioComplementario(std::string nombre){
this->nombre = nombre;
}
};
class EspacioComplem... | 24.172414 | 110 | 0.733238 |
4d91f43231e49960d2e3ee355531f7084a06e54f | 1,227 | h | C | M5Bridge.h | biblepaywallet/M5Widgets | 1c8a5577c967d81212550e778313c09f02f6776c | [
"MIT"
] | 3 | 2019-05-27T05:31:35.000Z | 2020-07-23T15:54:16.000Z | M5Bridge.h | biblepaywallet/M5Widgets | 1c8a5577c967d81212550e778313c09f02f6776c | [
"MIT"
] | null | null | null | M5Bridge.h | biblepaywallet/M5Widgets | 1c8a5577c967d81212550e778313c09f02f6776c | [
"MIT"
] | 1 | 2021-05-13T08:51:38.000Z | 2021-05-13T08:51:38.000Z | #ifndef _M5BRIDGE_H_
#define _M5BRIDGE_H_
#include <Arduino.h>
#include <M5LoRa.h>
#include <SPI.h>
#define PIPE0 0
#define PIPE1 1
#define INPUTPIPE 0
#define OUTPUTPIPE 1
#define tSERIAL0 0
#define tSERIAL2 1
#define tLoRa 2
class M5Bridge {
public:
M5Bridge();
void setIOFunction(uint8_t, uint8_t);
v... | 24.54 | 64 | 0.718826 |
4d93053737fadbb8a0a322a1c7fb5996e8b77b24 | 468,171 | h | C | SOFTWARE/c/TOMBSTONE_BMP.h | rob-ng15/PAWS | 12a0f6bbce641898fc0e3c6bb2a26ce9637dcf97 | [
"MIT"
] | 20 | 2021-11-17T08:24:44.000Z | 2022-02-23T11:15:55.000Z | SOFTWARE/c/TOMBSTONE_BMP.h | rob-ng15/PAWS | 12a0f6bbce641898fc0e3c6bb2a26ce9637dcf97 | [
"MIT"
] | null | null | null | SOFTWARE/c/TOMBSTONE_BMP.h | rob-ng15/PAWS | 12a0f6bbce641898fc0e3c6bb2a26ce9637dcf97 | [
"MIT"
] | 3 | 2021-12-02T15:20:53.000Z | 2022-01-07T22:01:46.000Z | unsigned char tombstonebitmap[] = {
0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,
0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,
0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,
0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0... | 78.512661 | 80 | 0.78356 |
4d95ef910adf1e21121c1b29df2088fc0cf9a8aa | 10,654 | h | C | private/shell/shlwapi/thunk.h | King0987654/windows2000 | 01f9c2e62c4289194e33244aade34b7d19e7c9b8 | [
"MIT"
] | 11 | 2017-09-02T11:27:08.000Z | 2022-01-02T15:25:24.000Z | private/shell/shlwapi/thunk.h | King0987654/windows2000 | 01f9c2e62c4289194e33244aade34b7d19e7c9b8 | [
"MIT"
] | null | null | null | private/shell/shlwapi/thunk.h | King0987654/windows2000 | 01f9c2e62c4289194e33244aade34b7d19e7c9b8 | [
"MIT"
] | 14 | 2019-01-16T01:01:23.000Z | 2022-02-20T15:54:27.000Z |
BOOL
AnsiFromUnicode(
LPSTR * ppszAnsi,
LPCWSTR pwszWide, // NULL to clean up
LPSTR pszBuf,
int cchBuf);
#define RegSetValueExW RegSetValueExWrapW
#define CompareStringW CompareStringWrapW
#define GetFileAttributesW GetFileAttributesWrapW
#define GetFullPathNameW GetFul... | 37.514085 | 85 | 0.819129 |
4d975a2442039678ac049a60ed12ff37a600b61c | 224 | c | C | test/tricky3.c | nn4ip/pluto | 92ace2441b6b8d6b66d1bb7ef3e893df4ff23a4d | [
"MIT"
] | 183 | 2017-01-28T17:23:29.000Z | 2022-03-25T08:58:56.000Z | test/tricky3.c | nn4ip/pluto | 92ace2441b6b8d6b66d1bb7ef3e893df4ff23a4d | [
"MIT"
] | 70 | 2017-03-29T09:51:04.000Z | 2021-12-28T07:00:44.000Z | test/tricky3.c | nn4ip/pluto | 92ace2441b6b8d6b66d1bb7ef3e893df4ff23a4d | [
"MIT"
] | 57 | 2017-03-29T07:27:58.000Z | 2022-01-14T03:13:39.000Z | // CHECK: Output written
#pragma scop
for (p = 0; p < pointc; ++p) {
dist_min = 0;
for (k = 0; k < clusterc; ++k) {
dist = 0;
kmin = 0;
}
for (d = 0; d < dims; ++d) {
clusterv = 0;
}
}
#pragma endscop
| 14.933333 | 34 | 0.482143 |
4d98d34071e46d5358b59f0b435378a48f40e070 | 421 | c | C | src/kernel/global.c | JasonChuanTian/onix | f19b39e15059f45352781bd58bc1da83a6f966ac | [
"MIT"
] | 1 | 2022-03-23T10:27:50.000Z | 2022-03-23T10:27:50.000Z | src/kernel/global.c | JasonChuanTian/onix | f19b39e15059f45352781bd58bc1da83a6f966ac | [
"MIT"
] | null | null | null | src/kernel/global.c | JasonChuanTian/onix | f19b39e15059f45352781bd58bc1da83a6f966ac | [
"MIT"
] | null | null | null | #include <onix/global.h>
#include <onix/string.h>
#include <onix/debug.h>
descriptor_t gdt[GDT_SIZE]; // 内核全局描述符表
pointer_t gdt_ptr; // 内核全局描述符表指针
// 初始化内核全局描述符表
void gdt_init()
{
DEBUGK("init gdt!!!\n");
asm volatile("sgdt gdt_ptr");
memcpy(&gdt, (void *)gdt_ptr.base, gdt_ptr.limit + 1);
... | 20.047619 | 58 | 0.63658 |
4d9e5c1e912f7599fc0e842599e33dc7f86be87f | 2,844 | h | C | stromx/runtime/Visualization.h | roteroktober/stromx | e081a35114f68a77e99a4761946b8b8c64eb591a | [
"Apache-2.0"
] | 11 | 2015-08-16T09:59:07.000Z | 2021-06-15T14:39:20.000Z | stromx/runtime/Visualization.h | roteroktober/stromx | e081a35114f68a77e99a4761946b8b8c64eb591a | [
"Apache-2.0"
] | null | null | null | stromx/runtime/Visualization.h | roteroktober/stromx | e081a35114f68a77e99a4761946b8b8c64eb591a | [
"Apache-2.0"
] | 8 | 2015-05-10T02:25:37.000Z | 2020-10-28T13:06:01.000Z | /*
* Copyright 2016 Matthias Fuchs
*
* 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 ... | 33.458824 | 76 | 0.579114 |
4da6665533f8c317f45fb4e60f6353db493fc121 | 662 | c | C | benchmarks/Angha_small/extr_citrus_iso2022__ISO2022_sputwchar/extr_citrus_iso2022__ISO2022_sputwchar.c | ComputerSystemsLab/OptimizationCache | 9c30ae120673e57b772ea42e29e087f775aa9de9 | [
"Apache-2.0"
] | 2 | 2021-03-11T00:46:25.000Z | 2021-07-08T16:44:58.000Z | benchmarks/Angha_small/extr_citrus_iso2022__ISO2022_sputwchar/extr_citrus_iso2022__ISO2022_sputwchar.c | ComputerSystemsLab/OptimizationCache | 9c30ae120673e57b772ea42e29e087f775aa9de9 | [
"Apache-2.0"
] | null | null | null | benchmarks/Angha_small/extr_citrus_iso2022__ISO2022_sputwchar/extr_citrus_iso2022__ISO2022_sputwchar.c | ComputerSystemsLab/OptimizationCache | 9c30ae120673e57b772ea42e29e087f775aa9de9 | [
"Apache-2.0"
] | null | null | null | struct {
int b
} * q;
c, d, e, f, a, g, h, j, l, m, n, o;
char k;
r(s) {
char *p;
char b[f];
int i = 0;
if (t())
m = a;
else if (c & 128)
n = 8;
else
n = 0;
p = b;
if (h)
*p++ = h;
k = h;
if (o == 1 && c)
*p++ = 'n';
if (o == 3 && q->b) {
p++;
p++;
} else if (o == 1... | 13.24 | 35 | 0.276435 |
4da9977ace804ced85f80ab501fcfabe3c561010 | 2,221 | h | C | RKBaseLibs/RKBaseLibs/Classes/Network/HPRequest+UploadFile.h | juzi888999/RKBaseLibs | decff22bcf07a86166059da384b29ff5616d7495 | [
"MIT"
] | 1 | 2019-11-09T11:06:50.000Z | 2019-11-09T11:06:50.000Z | RKBaseLibs/RKBaseLibs/Classes/Network/HPRequest+UploadFile.h | juzi888999/RKBaseLibs | decff22bcf07a86166059da384b29ff5616d7495 | [
"MIT"
] | null | null | null | RKBaseLibs/RKBaseLibs/Classes/Network/HPRequest+UploadFile.h | juzi888999/RKBaseLibs | decff22bcf07a86166059da384b29ff5616d7495 | [
"MIT"
] | null | null | null | //
// HPRequest+UploadFile.h
// RKBaseLibs
//
// Created by rk on 16/6/7.
// Copyright © 2016年 haixiaedu. All rights reserved.
//
#import "HPRequest.h"
/**
* 上传状态
*/
typedef NS_ENUM(NSInteger, HPUploadState) {
HPUploadStateProgress,
HPUploadStateFinished,
HPUploadStateFailed,
};
/**
* 上传文件类型
*/
ty... | 29.223684 | 165 | 0.686628 |
4daa35e15139d94185db48ebe950b549f07ce856 | 71,754 | c | C | src/bcmfp/handler/util/bcmfp_lt_group.c | lguohan/SDKLT | 37acbc80e162bdfc7f7d5fb0833178f4f7a8afd4 | [
"Apache-2.0"
] | 2 | 2018-01-31T07:21:32.000Z | 2018-01-31T07:21:49.000Z | src/bcmfp/handler/util/bcmfp_lt_group.c | lguohan/SDKLT | 37acbc80e162bdfc7f7d5fb0833178f4f7a8afd4 | [
"Apache-2.0"
] | null | null | null | src/bcmfp/handler/util/bcmfp_lt_group.c | lguohan/SDKLT | 37acbc80e162bdfc7f7d5fb0833178f4f7a8afd4 | [
"Apache-2.0"
] | 3 | 2021-07-13T08:29:18.000Z | 2022-01-14T06:14:56.000Z | /*! \file bcmfp_lt_group.c
*
* APIs for LT group interface
*
* This file contains function definitions for group LT template.
*/
/*
* Copyright: (c) 2018 Broadcom. All Rights Reserved. "Broadcom" refers to
* Broadcom Limited and/or its subsidiaries.
*
* Broadcom Switch Software License
*
* This license go... | 38.453376 | 100 | 0.534688 |
4daa5797dac0304b5de962139664356b9a34d64b | 6,447 | c | C | src/kernel/sdhost.c | LJP-TW/test | 1e2898e784a888799c97bb22a3a9eaf59b356e66 | [
"MIT"
] | 1 | 2022-03-14T10:16:35.000Z | 2022-03-14T10:16:35.000Z | src/kernel/sdhost.c | LJP-TW/test | 1e2898e784a888799c97bb22a3a9eaf59b356e66 | [
"MIT"
] | null | null | null | src/kernel/sdhost.c | LJP-TW/test | 1e2898e784a888799c97bb22a3a9eaf59b356e66 | [
"MIT"
] | null | null | null | #include <sdhost.h>
#include <BCM2837.h>
#include <utils.h>
// SD card command
#define GO_IDLE_STATE 0
#define SEND_OP_CMD 1
#define ALL_SEND_CID 2
#define SEND_RELATIVE_ADDR 3
#define SELECT_CARD 7
#define SEND_IF_COND 8
#define VOLTAGE_CHECK_PATTERN 0x1a... | 27.551282 | 80 | 0.597953 |
4dab5780f30eccd04485d9f58bf8e528f1eac9c6 | 3,058 | h | C | Other/Headers/UploadVideoReportData.h | XWJACK/WeChatPlugin-MacOS | 4241ddb10ccce9484fcf6d5bd51a6afa3b446632 | [
"MIT"
] | 2 | 2019-01-11T02:02:55.000Z | 2020-04-23T02:42:01.000Z | Other/Headers/UploadVideoReportData.h | XWJACK/WeChatPlugin-MacOS | 4241ddb10ccce9484fcf6d5bd51a6afa3b446632 | [
"MIT"
] | null | null | null | Other/Headers/UploadVideoReportData.h | XWJACK/WeChatPlugin-MacOS | 4241ddb10ccce9484fcf6d5bd51a6afa3b446632 | [
"MIT"
] | 1 | 2021-01-09T14:54:27.000Z | 2021-01-09T14:54:27.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 NSString;
@interface UploadVideoReportData : NSObject
{
unsigned int _m_touin;
unsigned int ... | 44.970588 | 102 | 0.775016 |
4dae6d8ae97caeffa23009f585df83d91603b941 | 640 | h | C | OGPeerObjC/OGStreamView.h | satansly/PeerObjC | 854229f65df08424c67e853719815daf1ae6db90 | [
"MIT"
] | 2 | 2016-05-30T04:22:11.000Z | 2017-06-03T12:56:47.000Z | OGPeerObjC/OGStreamView.h | satansly/PeerObjC | 854229f65df08424c67e853719815daf1ae6db90 | [
"MIT"
] | 2 | 2016-05-31T06:26:31.000Z | 2016-06-01T02:43:03.000Z | OGPeerObjC/OGStreamView.h | satansly/PeerObjC | 854229f65df08424c67e853719815daf1ae6db90 | [
"MIT"
] | null | null | null | //
// OGStreamView.h
// Pods
//
// Created by Omar Hussain on 2/13/16.
//
//
#import <UIKit/UIKit.h>
@class RTCMediaStream;
@interface OGStreamView : UIView
/**
* @brief RTCMediaStream object used to render the the video
*/
@property(nonatomic, strong) RTCMediaStream* stream;
/**
* @brief Initializes and ... | 18.823529 | 76 | 0.710938 |
4db2ca9395a6b0d0971463a0d51241c59cea7507 | 14,253 | c | C | src/benchmark.c | ibireme/yyjson_benchmark | 79cb96635354b1a4e2b50e173ba457337e627082 | [
"MIT"
] | 36 | 2020-10-08T12:11:07.000Z | 2022-01-08T08:39:31.000Z | src/benchmark.c | ibireme/yyjson_benchmark | 79cb96635354b1a4e2b50e173ba457337e627082 | [
"MIT"
] | 1 | 2021-01-01T15:05:43.000Z | 2021-01-25T02:17:50.000Z | src/benchmark.c | ibireme/yyjson_benchmark | 79cb96635354b1a4e2b50e173ba457337e627082 | [
"MIT"
] | 6 | 2020-10-09T02:57:57.000Z | 2022-02-23T04:05:01.000Z | #include "benchmark.h"
static int reader_num = 0;
static const char *reader_names[64];
static int reader_name_max = 0;
static reader_measure_func reader_funcs[64];
static int writer_num = 0;
static const char *writer_names[64];
static int writer_name_max = 0;
static writer_measure_func writer_funcs[64];
static int s... | 33.457746 | 129 | 0.618817 |
4db31e0ca3189737a37f2eb579b63d37bce16c89 | 444 | h | C | External Sources/PDF/LZWHandle.h | Waitsnake/xee | b0e52760420d517399a87ab19e1afb567efe3d11 | [
"CC0-1.0"
] | null | null | null | External Sources/PDF/LZWHandle.h | Waitsnake/xee | b0e52760420d517399a87ab19e1afb567efe3d11 | [
"CC0-1.0"
] | null | null | null | External Sources/PDF/LZWHandle.h | Waitsnake/xee | b0e52760420d517399a87ab19e1afb567efe3d11 | [
"CC0-1.0"
] | null | null | null | #import <XADMaster/CSByteStreamHandle.h>
#import <XADMaster/LZW.h>
#import "PDFNameCollisionPreventer.h"
extern NSString *LZWInvalidCodeException;
@interface LZWHandle : CSByteStreamHandle {
BOOL early;
LZW *lzw;
int symbolsize;
int currbyte;
uint8_t buffer[4096];
}
- (id)initWithHandle:(CSHandle *)handle ear... | 17.76 | 70 | 0.765766 |
4db4c280d70ef9945f2e3691c7473f487c67d422 | 1,821 | h | C | ov/src/OVreturns.h | dualword/pymol-open-source | abc307745d7d231af4f77f984ebd64f1b428cef8 | [
"CNRI-Python"
] | 636 | 2018-06-21T20:46:36.000Z | 2022-03-30T13:07:47.000Z | ov/src/OVreturns.h | dualword/pymol-open-source | abc307745d7d231af4f77f984ebd64f1b428cef8 | [
"CNRI-Python"
] | 218 | 2018-06-25T00:10:59.000Z | 2022-03-23T14:15:48.000Z | ov/src/OVreturns.h | dualword/pymol-open-source | abc307745d7d231af4f77f984ebd64f1b428cef8 | [
"CNRI-Python"
] | 192 | 2018-06-21T17:33:10.000Z | 2022-03-31T17:53:03.000Z | #ifndef _H_OVreturns
#define _H_OVreturns
typedef struct {
ov_word status;
} OVstatus;
/* a few very common result codes */
#define OVstatus_NO_EFFECT 2
#define OVstatus_YES 1
#define OVstatus_NO 0
#define OVstatus_SUCCESS 0
#define OVstatus_FAILURE -1
#def... | 35.705882 | 105 | 0.739703 |
4db51d15d47bb46539cb6910a2d81605e6737a01 | 1,194 | c | C | src/tests_ppm.c | Smoltbob/JPEG-decoder.c | 4a8c03f26481e29741c4fcad0a8235534d893023 | [
"MIT"
] | null | null | null | src/tests_ppm.c | Smoltbob/JPEG-decoder.c | 4a8c03f26481e29741c4fcad0a8235534d893023 | [
"MIT"
] | null | null | null | src/tests_ppm.c | Smoltbob/JPEG-decoder.c | 4a8c03f26481e29741c4fcad0a8235534d893023 | [
"MIT"
] | null | null | null | /* Module de tests de la génération d'images ppm */
#include <stdio.h>
#include "ppm.h"
int main(void)
{
/* Générer une petite image 8x8 : invader noir et blanc avec yeux rouge */
uint32_t invader[64] = { 0x000000, 0x000000, 0x000000, 0xFFFFFF, 0xFFFFFF, 0x000000, 0x000000, 0x000000,
... | 56.857143 | 108 | 0.603015 |
4db7ed96918568942ff91d12e9640a169a3835a5 | 3,403 | h | C | package/standalone_kr_usn/sdk/apps/atcmd/lwip_ping.h | teledatics/nrc7292_sdk | d0ba3f17e1bef3d6fec7370e7f0ffa77db56e3a4 | [
"MIT"
] | null | null | null | package/standalone_kr_usn/sdk/apps/atcmd/lwip_ping.h | teledatics/nrc7292_sdk | d0ba3f17e1bef3d6fec7370e7f0ffa77db56e3a4 | [
"MIT"
] | null | null | null | package/standalone_kr_usn/sdk/apps/atcmd/lwip_ping.h | teledatics/nrc7292_sdk | d0ba3f17e1bef3d6fec7370e7f0ffa77db56e3a4 | [
"MIT"
] | null | null | null | /*
* MIT License
*
* Copyright (c) 2020 Newracom, Inc.
*
* 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, m... | 26.379845 | 96 | 0.693506 |
4db863f1a8871cc62f8851f2c1957a6c9d87b1cd | 8,220 | h | C | wrapper/nim_cpp_wrapper/api/nim_cpp_sysmsg.h | Mao-Lin-Cooperation/NIM_PC_Demo | f7a6b79bd6945bdf6bdaf46b7190de12ca581119 | [
"BSD-2-Clause",
"OpenSSL"
] | 1 | 2022-01-17T09:42:37.000Z | 2022-01-17T09:42:37.000Z | wrapper/nim_cpp_wrapper/api/nim_cpp_sysmsg.h | Mao-Lin-Cooperation/NIM_PC_Demo | f7a6b79bd6945bdf6bdaf46b7190de12ca581119 | [
"BSD-2-Clause",
"OpenSSL"
] | null | null | null | wrapper/nim_cpp_wrapper/api/nim_cpp_sysmsg.h | Mao-Lin-Cooperation/NIM_PC_Demo | f7a6b79bd6945bdf6bdaf46b7190de12ca581119 | [
"BSD-2-Clause",
"OpenSSL"
] | null | null | null | /** @file nim_cpp_sysmsg.h
* @brief 系统(自定义)消息
* @copyright (c) 2015-2017, NetEase Inc. All rights reserved
* @date 2015/2/1
*/
#ifndef _NIM_SDK_CPP_SYSMSG_H_
#define _NIM_SDK_CPP_SYSMSG_H_
#include <functional>
#include <list>
#include <string>
#include "nim_cpp_wrapper/helper/nim_msg_helper.h"
#include "nim_cpp_... | 43.957219 | 149 | 0.614842 |
4db8a84551c148c7557173abc30d2b7292da88b8 | 6,659 | c | C | src/core/core.c | JirJIN/core | 0199fddc6092d78e4c0613dfdc7a176cd5037255 | [
"Zlib"
] | null | null | null | src/core/core.c | JirJIN/core | 0199fddc6092d78e4c0613dfdc7a176cd5037255 | [
"Zlib"
] | null | null | null | src/core/core.c | JirJIN/core | 0199fddc6092d78e4c0613dfdc7a176cd5037255 | [
"Zlib"
] | null | null | null | #include "core.h"
#include "gll/gll.h"
#include "time.h"
#include "thread/thread.h"
#include "window/window.h"
#include "env/env.h"
struct JIN_Window *root; /* Root window */
struct JIN_Env env; /* Environment variables */
struct JIN_Input JIN_inputv = {0};
struct JIN_Input JIN_input = {0};
/* CORE FUNCTIONS *... | 26.320158 | 170 | 0.659558 |
4db9fa10b48571b14339d60e12adc046b0c35a49 | 442 | h | C | CallTraceForWeChat/CallTraceForWeChat/WeChat_Headers/WNSelectionViewDelegate-Protocol.h | ceekay1991/CallTraceForWeChat | 5767cb6f781821b6bf9facc8c87e58e15fa88541 | [
"MIT"
] | 30 | 2020-03-22T12:30:21.000Z | 2022-02-09T08:49:13.000Z | CallTraceForWeChat/CallTraceForWeChat/WeChat_Headers/WNSelectionViewDelegate-Protocol.h | ceekay1991/CallTraceForWeChat | 5767cb6f781821b6bf9facc8c87e58e15fa88541 | [
"MIT"
] | null | null | null | CallTraceForWeChat/CallTraceForWeChat/WeChat_Headers/WNSelectionViewDelegate-Protocol.h | ceekay1991/CallTraceForWeChat | 5767cb6f781821b6bf9facc8c87e58e15fa88541 | [
"MIT"
] | 8 | 2020-03-22T12:30:23.000Z | 2020-09-22T04:01:47.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 "MMUIViewControllerDelegate-Protocol.h"
@class MMUIViewController;
@protocol WNSelectionViewDelegate <MMUIViewControllerDeleg... | 26 | 90 | 0.751131 |
4dbb7f1ed7b38f9c5ec82226c900f7f4ad654c94 | 2,299 | h | C | Networking/Bomb.h | devilmhzx/UE4-Cpp-Tutorials | 2cbf9d44dd4fa1c4eb68530f692065fc2c36b55d | [
"MIT"
] | 531 | 2016-10-19T14:04:55.000Z | 2022-03-28T06:34:25.000Z | Networking/Bomb.h | devilmhzx/UE4-Cpp-Tutorials | 2cbf9d44dd4fa1c4eb68530f692065fc2c36b55d | [
"MIT"
] | null | null | null | Networking/Bomb.h | devilmhzx/UE4-Cpp-Tutorials | 2cbf9d44dd4fa1c4eb68530f692065fc2c36b55d | [
"MIT"
] | 172 | 2016-10-18T14:53:11.000Z | 2022-03-22T10:39:44.000Z | // Fill out your copyright notice in the Description page of Project Settings.
#pragma once
#include "GameFramework/Actor.h"
#include "GameFramework/ProjectileMovementComponent.h"
#include "Bomb.generated.h"
UCLASS()
class NETWORKINGTUT_API ABomb : public AActor
{
GENERATED_BODY()
public:
// Sets default values... | 26.425287 | 114 | 0.765985 |
4dbc0c2ab834746824b145fee4d7a019c782c4c4 | 549 | h | C | include/tewi/EventSystem/Event.h | andry-dev/tewi | eb75eb8a00ee61f36f1df5040e25928089745d77 | [
"MIT"
] | null | null | null | include/tewi/EventSystem/Event.h | andry-dev/tewi | eb75eb8a00ee61f36f1df5040e25928089745d77 | [
"MIT"
] | null | null | null | include/tewi/EventSystem/Event.h | andry-dev/tewi | eb75eb8a00ee61f36f1df5040e25928089745d77 | [
"MIT"
] | null | null | null | #ifndef EVENT_SYSTEM_EVENT_H
#define EVENT_SYSTEM_EVENT_H
#include <cstdint>
#include "EventType.h"
namespace tewi
{
namespace EventSystem
{
class Event
{
public:
auto getType() { return m_eventType; }
protected:
Event(std::uint32_t eventType)
... | 15.685714 | 62 | 0.522769 |
4dc1de91c16fa3fb6c23d1a0f1f3b6f956eee025 | 1,004 | h | C | LibFoundation/Mathematics/Wm4Sphere3.h | wjezxujian/WildMagic4 | 249a17f8c447cf57c6283408e01009039810206a | [
"BSL-1.0"
] | 3 | 2021-08-02T04:03:03.000Z | 2022-01-04T07:31:20.000Z | LibFoundation/Mathematics/Wm4Sphere3.h | wjezxujian/WildMagic4 | 249a17f8c447cf57c6283408e01009039810206a | [
"BSL-1.0"
] | null | null | null | LibFoundation/Mathematics/Wm4Sphere3.h | wjezxujian/WildMagic4 | 249a17f8c447cf57c6283408e01009039810206a | [
"BSL-1.0"
] | 5 | 2019-10-13T02:44:19.000Z | 2021-08-02T04:03:10.000Z | // Geometric Tools, Inc.
// http://www.geometrictools.com
// Copyright (c) 1998-2006. All Rights Reserved
//
// The Wild Magic Version 4 Foundation Library source code is supplied
// under the terms of the license agreement
// http://www.geometrictools.com/License/Wm4FoundationLicense.pdf
// and may not be copied ... | 21.826087 | 76 | 0.716135 |
4dc2133e8b564516ffbde64868ce68e06ce7f54e | 386 | h | C | PrivateFrameworks/XQuery/XQueryFilterStep.h | phatblat/macOSPrivateFrameworks | 9047371eb80f925642c8a7c4f1e00095aec66044 | [
"MIT"
] | 17 | 2018-11-13T04:02:58.000Z | 2022-01-20T09:27:13.000Z | PrivateFrameworks/XQuery/XQueryFilterStep.h | phatblat/macOSPrivateFrameworks | 9047371eb80f925642c8a7c4f1e00095aec66044 | [
"MIT"
] | 3 | 2018-04-06T02:02:27.000Z | 2018-10-02T01:12:10.000Z | PrivateFrameworks/XQuery/XQueryFilterStep.h | phatblat/macOSPrivateFrameworks | 9047371eb80f925642c8a7c4f1e00095aec66044 | [
"MIT"
] | 1 | 2018-09-28T13:54:23.000Z | 2018-09-28T13:54:23.000Z | //
// Generated by class-dump 3.5 (64 bit).
//
// class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard.
//
#import <XQuery/XQueryStep.h>
__attribute__((visibility("hidden")))
@interface XQueryFilterStep : XQueryStep
{
}
+ (id)filterStepWithExpr:(id)arg1;
- (void)processItems:(id)arg1 t... | 20.315789 | 89 | 0.699482 |
4dc253d5a4deb534278a32bcfad5b91fc6099257 | 298 | h | C | include_pybind11.h | after5cst/pybind11_gil_demo | 2fb9e457c1b0646b013ed4de16b15f20028c8b34 | [
"MIT"
] | 2 | 2019-10-08T02:38:10.000Z | 2020-01-28T16:33:33.000Z | include_pybind11.h | after5cst/pybind11_gil_demo | 2fb9e457c1b0646b013ed4de16b15f20028c8b34 | [
"MIT"
] | 1 | 2019-10-08T02:30:58.000Z | 2019-10-21T00:11:00.000Z | include_pybind11.h | after5cst/pybind11_gil_demo | 2fb9e457c1b0646b013ed4de16b15f20028c8b34 | [
"MIT"
] | null | null | null | #pragma once
// Include the pybind11 headers, suppressing warnings
// that we don't allow in our own code.
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Weffc++"
#include "pybind11/include/pybind11/pybind11.h"
#include "pybind11/include/pybind11/chrono.h"
#pragma GCC diagnostic pop
| 33.111111 | 53 | 0.781879 |
4dc25f506b4624f5436488d3df846a0ef306717b | 1,014 | h | C | src/vglTiffIo.h | HDANILO/visiongl | 7cff4404a1ac9ff6db6b44742d72bdb9004aba84 | [
"Apache-2.0"
] | 12 | 2015-09-04T08:09:43.000Z | 2018-11-03T15:49:30.000Z | src/vglTiffIo.h | HDANILO/visiongl | 7cff4404a1ac9ff6db6b44742d72bdb9004aba84 | [
"Apache-2.0"
] | 14 | 2015-01-09T19:43:50.000Z | 2019-04-18T17:09:26.000Z | src/vglTiffIo.h | HDANILO/visiongl | 7cff4404a1ac9ff6db6b44742d72bdb9004aba84 | [
"Apache-2.0"
] | 9 | 2015-10-06T00:31:27.000Z | 2022-03-14T17:49:18.000Z | /*********************************************************************
*** ***
*** Header file vglTiffIo.h ***
*** ***
************************************... | 29.823529 | 83 | 0.519724 |
4dc3dcb56cfc4b7a977743bf7ef60f068003427e | 1,041 | h | C | PrivateFrameworks/PreferencePanesSupport/IOServiceObserver.h | phatblat/macOSPrivateFrameworks | 9047371eb80f925642c8a7c4f1e00095aec66044 | [
"MIT"
] | 17 | 2018-11-13T04:02:58.000Z | 2022-01-20T09:27:13.000Z | PrivateFrameworks/PreferencePanesSupport/IOServiceObserver.h | phatblat/macOSPrivateFrameworks | 9047371eb80f925642c8a7c4f1e00095aec66044 | [
"MIT"
] | 3 | 2018-04-06T02:02:27.000Z | 2018-10-02T01:12:10.000Z | PrivateFrameworks/PreferencePanesSupport/IOServiceObserver.h | phatblat/macOSPrivateFrameworks | 9047371eb80f925642c8a7c4f1e00095aec66044 | [
"MIT"
] | 1 | 2018-09-28T13:54:23.000Z | 2018-09-28T13:54:23.000Z | //
// Generated by class-dump 3.5 (64 bit).
//
// class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard.
//
#import "NSObject.h"
@interface IOServiceObserver : NSObject
{
id mTarget;
SEL mSelector;
unsigned int mIOConnectIterator;
unsigned int mIOTerminateIterator;
}
+ (... | 31.545455 | 97 | 0.746398 |
4dc6ddc3404bb49d2562b44d5f68fdeaef80de0e | 14,139 | h | C | code/include/playfab/PFAnalytics.h | PlayFab/XPlatCSdk | 101896fff5c5ce822dd188e4670a9ba8c1705619 | [
"MIT"
] | null | null | null | code/include/playfab/PFAnalytics.h | PlayFab/XPlatCSdk | 101896fff5c5ce822dd188e4670a9ba8c1705619 | [
"MIT"
] | 1 | 2022-03-04T20:50:28.000Z | 2022-03-04T21:02:12.000Z | code/include/playfab/PFAnalytics.h | PlayFab/XPlatCSdk | 101896fff5c5ce822dd188e4670a9ba8c1705619 | [
"MIT"
] | 3 | 2021-12-04T20:43:04.000Z | 2022-01-03T21:16:32.000Z | // Copyright (c) Microsoft Corporation
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
#if !defined(__cplusplus)
#error C++11 required
#endif
#pragma once
#include <playfab/PFAnalyticsDataModels.h>
#include <playfab/PFGlobal.h>
#include <playfab/PFTitlePlayer.h>
... | 42.332335 | 103 | 0.745951 |
4dca878b90bd0507e05afe5c6273a0b79053eb0b | 1,020 | c | C | test/asynctest-drystream.c | rauhma/async | 699864d96e28eb2a5a7b0a8b01f73db175306270 | [
"Apache-2.0"
] | null | null | null | test/asynctest-drystream.c | rauhma/async | 699864d96e28eb2a5a7b0a8b01f73db175306270 | [
"Apache-2.0"
] | 3 | 2020-06-05T16:55:15.000Z | 2021-12-29T08:55:11.000Z | test/asynctest-drystream.c | rauhma/async | 699864d96e28eb2a5a7b0a8b01f73db175306270 | [
"Apache-2.0"
] | 14 | 2020-02-10T09:30:50.000Z | 2021-08-18T11:05:17.000Z | #include "asynctest-drystream.h"
#include <errno.h>
#include <async/async.h>
#include <async/drystream.h>
static void dry_probe(tester_base_t *context)
{
uint8_t buffer[100];
ssize_t count = bytestream_1_read(drystream, buffer, sizeof buffer);
if (count >= 0 || errno != EAGAIN) {
context->verdict... | 27.567568 | 72 | 0.67451 |
4dcb339197c6c7cc315030e95cb8f3cec0a38413 | 6,351 | c | C | nfc/mnfc.c | blarz/heiko | c99da90709a7a21498257a2922f7663a8d5547a9 | [
"MIT"
] | 3 | 2018-05-19T13:10:07.000Z | 2019-01-08T17:50:53.000Z | nfc/mnfc.c | blarz/heiko | c99da90709a7a21498257a2922f7663a8d5547a9 | [
"MIT"
] | 44 | 2019-01-07T09:06:41.000Z | 2019-11-07T22:04:30.000Z | nfc/mnfc.c | blarz/heiko | c99da90709a7a21498257a2922f7663a8d5547a9 | [
"MIT"
] | 3 | 2019-06-13T19:23:06.000Z | 2019-08-08T18:55:13.000Z | /*
Mifare NFC Python Module for Heiko
Copyright (C) 2019 Christian Carlowitz <chca@cmesh.de>
This program 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 3 of the License, or (at your
... | 20.487097 | 112 | 0.658322 |
4dcb8786aef5e9c3a62d68061689d48cab1c5b68 | 3,542 | h | C | src/event/subscription.h | simula/flexran | 372a6e3398d839f4f87961217dbf6c5610464fbc | [
"Apache-2.0"
] | 2 | 2020-12-01T02:02:24.000Z | 2021-01-13T03:05:02.000Z | src/event/subscription.h | simula/flexran | 372a6e3398d839f4f87961217dbf6c5610464fbc | [
"Apache-2.0"
] | null | null | null | src/event/subscription.h | simula/flexran | 372a6e3398d839f4f87961217dbf6c5610464fbc | [
"Apache-2.0"
] | 2 | 2020-12-03T12:31:26.000Z | 2021-09-29T02:56:43.000Z | /*
* Copyright 2016-2018 FlexRAN Authors, Eurecom and The University of Edinburgh
* 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
*
* U... | 36.142857 | 92 | 0.727273 |
4dcfd356daf15dda385d05c5a468230af0309bad | 690 | c | C | coding_interviews/q_8/nvidia2.c | darbinreyes/subparprogrammer | e3588adc494a69a564fe0a9859ff296fc710eab0 | [
"MIT"
] | null | null | null | coding_interviews/q_8/nvidia2.c | darbinreyes/subparprogrammer | e3588adc494a69a564fe0a9859ff296fc710eab0 | [
"MIT"
] | 1 | 2021-05-11T22:20:01.000Z | 2021-05-11T22:20:01.000Z | coding_interviews/q_8/nvidia2.c | darbinreyes/subparprogrammer | e3588adc494a69a564fe0a9859ff296fc710eab0 | [
"MIT"
] | null | null | null | // test
// input - unsigned int, output input with
// 1010 -> 0101
// 1
unsigned int swap_adj_bits (unsigned int v) {
int num_bits = sizeof(v) * 8;
unsigned int t0, t1;
int i;
// 1010
// 3210
// 0101
// 0x55555555
t0 = v & 0xAAAAAAAA;
t1 = v & 0x55555555;
v = (t0 >> 1) | (t1 ... | 18.157895 | 45 | 0.343478 |
4dd1c67454645b7b124343fa6c17054af5c3abcf | 1,398 | h | C | Item.h | keithbarker/3503_group_project | a13ad81d0c8565f92154cd12ace5f4da9e013639 | [
"MIT"
] | 1 | 2016-03-21T21:41:08.000Z | 2016-03-21T21:41:08.000Z | Item.h | keithbarker/3503_group_project | a13ad81d0c8565f92154cd12ace5f4da9e013639 | [
"MIT"
] | 2 | 2016-03-31T14:32:52.000Z | 2016-04-10T03:19:51.000Z | Item.h | keithbarker/3503_group_project | a13ad81d0c8565f92154cd12ace5f4da9e013639 | [
"MIT"
] | null | null | null | #pragma once
#include <string>
#include <QObject>
using namespace std;
class Item : public QObject //stores information for individual food and drink items
{
private:
Q_OBJECT
int itemsLeft;
double price;
string name;
string description;
string size;
string flavor;
int quantity;
vector... | 23.3 | 121 | 0.716023 |
4dd3418e08c7e6fb88fe55828f83c7efbb89d86e | 258 | c | C | src/main.c | jsaka1259/sh | 6963d473f01987dd404031c2c1a82fb007a2d2ed | [
"MIT"
] | 1 | 2020-02-24T06:55:45.000Z | 2020-02-24T06:55:45.000Z | src/main.c | jsaka1259/sh | 6963d473f01987dd404031c2c1a82fb007a2d2ed | [
"MIT"
] | null | null | null | src/main.c | jsaka1259/sh | 6963d473f01987dd404031c2c1a82fb007a2d2ed | [
"MIT"
] | null | null | null | #include "common.h"
#define PROMPT "$ "
int main(int argc, char **argv) {
cmd_t *cmd = NULL;
while (1) {
fputs(PROMPT, stdout);
cmd = get_cmd();
while (!cmd->argv)
free(cmd->argv);
free(cmd);
cmd = NULL;
}
return 0;
}
| 12.285714 | 33 | 0.531008 |