max_stars_repo_path
stringlengths
4
186
max_stars_repo_name
stringlengths
7
73
max_stars_count
float64
0
14.7k
id
stringlengths
5
7
text
stringlengths
10
753k
lang
stringclasses
1 value
aws-cpp-sdk-glue/include/aws/glue/model/StatementOutput.h
Nexuscompute/aws-sdk-cpp
1
451895
/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include <aws/glue/Glue_EXPORTS.h> #include <aws/glue/model/StatementOutputData.h> #include <aws/glue/model/StatementState.h> #include <aws/core/utils/memory/stl/AWSString.h> #include <aws...
c
Thread/06thread.c
aniruddha2000/kacha-badam
0
565873
/* Passing argument to thread */ #include <pthread.h> #include <stdio.h> #include <stdlib.h> #include <unistd.h> int primes[10] = {2, 3, 5, 7, 11, 13, 17, 19, 23, 29}; void *routine(void *arg) { int index = *(int *)arg; int sum = 0; for (int i = 0; i < 5; i++) { sum += primes[index + i]; } printf("Lo...
c
include/BoardMulti.h
dawidd6/qtictactoe
2
4952240
#pragma once class BoardMulti : public AbstractBoard { private: SetupConnection *setup_connection; Window *w; Game *g; AbstractSymbol *symbol_my; AbstractSymbol *symbol_enemy; QTcpSocket socket; QStatusBar statusbar; QString response; QChar symbol_char_my; QChar symbol_char_enemy; volatile int t...
c
IN100/tri_fusion.c
emeric75/uvsq_licence
0
1841491
#include <uvsqgraphics.h> #include <stdio.h> #include <stdlib.h> #include <time.h> #define N 16 #define MAX 100 int T[N]; void init(){ for(int i=0; i<N; i++){ T[i] = alea_int(MAX-10)+10; } } void disp(){ for(int i=0; i<N; i++){ write_int(T[i]);write_text(" "); if(i%20 == 19){ writeln(); } } writeln();...
c
test/e2e/test_master/wxWidgets/include/wx/generic/activityindicator.h
BlueCannonBall/cppparser
0
4800467
/////////////////////////////////////////////////////////////////////////////// // Name: wx/generic/activityindicator.h // Purpose: Declaration of wxActivityIndicatorGeneric. // Author: <NAME> // Created: 2015-03-06 // Copyright: (c) 2015 <NAME> <<EMAIL>> // Licence: wxWindows licence ////////...
c
LYLOptionPickerDemo/LYLOptionPickerDemo/LYLOptionPicker/LYLOptionPicker.h
LiuYulei001/LYLOptionPicker
1
1832317
// // LYLOptionPicker.h // LYLOptionPickerDemo // // Created by Rainy on 2017/12/12. // Copyright © 2017年 Rainy. All rights reserved. // #import <Foundation/Foundation.h> #import <UIKit/UIKit.h> @interface LYLOptionPicker : NSObject typedef void(^DetermineChoose)(NSArray *indexes,id selectedItems); + (void)sho...
c
external/cpp/mgtest/test_ocr.h
asedl/XpaDemo
5
4450997
#pragma once extern int testOcr(wchar_t* lpszImagefilename);
c
SoftwareRenderer/Source/Core/Utils.h
sunzedd/software-renderer
1
7767478
#pragma once namespace core { template <typename T> T clamp(T value, T min, T max) { return std::max(min, std::min(value, max)); } template <typename T> T clampNormalize(T value) { return clamp<T>(value, 0.0, 1.0); } } // namespace core
c
firmware/Inc/app.h
windsorschmidt/reflow
1
207662
#ifndef APP_INIT #define APP_INIT // #define NOBEEP #define APP_IPC_Q_SIZE 8 #define LOG_IPC_Q_SIZE 8 #define TEMP_IPC_Q_SIZE 8 #define OLED_IPC_Q_SIZE 8 #define SPEAKER_IPC_Q_SIZE 8 #define BUTTON_IPC_Q_SIZE 8 #define TIMER_IPC_Q_SIZE 8 #define BUTTON_ISR_Q_SIZE 4 #define TIMER_ISR_Q_SIZE 4 #define MSG_TIMER_1HZ_T...
c
src/utils/bluetooth/inc/bluetooth_types.h
ddoyon92/brainflow
528
4743764
#pragma once enum class SocketBluetoothReturnCodes : int { STATUS_OK = 0, WSA_STARTUP_ERROR = 1, CREATE_SOCKET_ERROR = 2, CONNECT_ERROR = 3, WSA_ADDR_ERROR = 4, IOCTL_ERROR = 5, ANOTHER_DEVICE_IS_CREATED_ERROR = 6, DEVICE_IS_NOT_CREATED_ERROR = 7, UNIMPLEMENTED_ERROR = 8, GENER...
c
tests/openacc-users-group/NAS_SHOC_OpenACC_2.5/reference/ref_exact_rhs.c
passlab/accparser
0
2402388
#pragma acc update device (forcing)
c
eva/utest/test_vqec_utest_cli.c
wmanley/cisco-vqe-client
5
8075491
/* * Copyright (c) 2007-2010 by Cisco Systems, Inc. * All rights reserved. */ #include "test_vqec_utest_main.h" #include "test_vqec_utest_interposers.h" #include "../add-ons/include/CUnit/CUnit.h" #include "../add-ons/include/CUnit/Basic.h" #include "vam_util.h" #include "vqec_cli_register.h" #include "vqec_tuner....
c
src/morus.c
ildyria/MiniMorus
0
6456275
#include "morus.h" void print_state(state state) { printf("--------------------------------------------\n"); printf(" S0 | S1 | S3 | S3 | S4 \n"); printf("%08x %08x %08x %08x %08x\n", state[0][3], state[1][3], state[2][3], state[3][3], state[4][3]); printf("%08x %08x %08x %08x %08x\n", stat...
c
80186PC/include/ATA/ATADevice.h
moon-touched/80186PC
0
4480063
#ifndef ATA_ATA_DEVICE_H #define ATA_ATA_DEVICE_H #include <thread> #include <mutex> #include <atomic> #include <array> #include <ATA/IATADevice.h> class ATADevice : public IATADevice { protected: ATADevice(); ~ATADevice(); public: void write(CS cs, uint8_t address, uint16_t value) override; uint16_t read(CS cs...
c
test/aarch32/traces/assembler-cond-rd-rn-rm-uadd8-a32.h
capablevms/VIXL
573
8050247
// Copyright 2015, VIXL authors // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are met: // // * Redistributions of source code must retain the above copyright notice, // this list of conditions ...
c
okl4_kernel/okl4_2.1.1-patch.9/l4test/src/platformcontrol.c
CyberQueenMara/baseband-research
77
1390033
/* * Copyright (c) 2007 Open Kernel Labs, Inc. (Copyright Holder). * All rights reserved. * * 1. Redistribution and use of OKL4 (Software) in source and binary * forms, with or without modification, are permitted provided that the * following conditions are met: * * (a) Redistributions of source code must r...
c
testsuite/EXP_4/test919.c
ishiura-compiler/CF3
34
2594518
/* 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" static int8_t x1 = INT8_MAX; static int64_t x5 = INT64_MIN; int16_t x7 = -1; int16_t x9 = INT16_MAX; int32_t t2...
c
include/al/iuse/IUseAreaObj.h
3096/starlight
385
5830356
/** * @file IUseAreaObj.h * @brief Basic implementation of an area object. */ #pragma once namespace al { class AreaObjDirector; class IUseAreaObj { public: virtual al::AreaObjDirector* getAreaObjDirector() const = 0; }; };
c
libbrillo/brillo/streams/fake_stream.h
Toromino/chromiumos-platform2
4
7828939
// Copyright 2015 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 LIBBRILLO_BRILLO_STREAMS_FAKE_STREAM_H_ #define LIBBRILLO_BRILLO_STREAMS_FAKE_STREAM_H_ #include <queue> #include <string> #include <base/cal...
c
ZF/ZFCore/zfsrc/ZFCore/ZFCoreDef/ZFIterator.h
ZFFrameworkDist/ZFFramework
57
1745538
/** * @file ZFIterator.h * @brief iterator in ZFFramework */ #ifndef _ZFI_ZFIterator_h_ #define _ZFI_ZFIterator_h_ #include "ZFCoreTypeDef.h" ZF_NAMESPACE_GLOBAL_BEGIN /** * @brief iterator for ZFFramework * * zfiterator is an abstract iterator holder, * which simply stores an void * pointer for implementati...
c
src/Practice/CozyThunder.Core/HttpClient.h
zpublic/cozy
48
519430
#ifndef __COZY_HTTP_CLIENT__ #define __COZY_HTTP_CLIENT__ #include "HttpDef.h" namespace Cozy { class HttpClient { public: HttpClient(); ~HttpClient(); public: HttpStatusCode Get(const std::string& strUrl, const IBuffer* input, IBuffer* output); HttpStatusCode Post(con...
c
SOFTWARE/A64-TERES/u-boot_new/board/genesi/mx51_efikamx/efikamx-usb.c
xloem/DIY-LAPTOP
35
6816899
/* * Copyright (C) 2010 <NAME> <<EMAIL>> * * (C) Copyright 2009 Freescale Semiconductor, Inc. * * SPDX-License-Identifier: GPL-2.0+ */ #include <common.h> #include <usb.h> #include <asm/io.h> #include <asm/arch/imx-regs.h> #include <asm/arch/iomux-mx51.h> #include <asm/gpio.h> #include <usb/ehci-fsl.h> #include ...
c
sdk-6.5.16/src/soc/i2c/cy22150.c
copslock/broadcom_cpri
0
6920134
/* * * This license is set out in https://raw.githubusercontent.com/Broadcom-Network-Switching-Software/OpenBCM/master/Legal/LICENSE file. * * Copyright 2007-2019 Broadcom Inc. All rights reserved. * _____ _____________________ * / __\ \ / / _ \ _ \ __/ __/ __| * | (__ \ ^ /| _/ / _|\__ \__ \ * \...
c
macOS/macOS/AppDelegate.h
christophpurrer/native-menus
0
309912
// // AppDelegate.h // macOS // // Created by <NAME> on 3/10/21. // #import <Cocoa/Cocoa.h> @interface AppDelegate : NSObject <NSApplicationDelegate> @end
c
VPImageCropperDemo/VPImageCropperDemo/VPViewController.h
briansoule/VPImageCropper
535
3999636
// // VPViewController.h // VPImageCropperDemo // // Created by Vinson.D.Warm on 1/13/14. // Copyright (c) 2014 Vinson.D.Warm. All rights reserved. // #import <UIKit/UIKit.h> @interface VPViewController : UIViewController @end
c
Application/Users/Main/inc/fsmc.h
Tyroo/stm32f407zgt6-template
1
2377595
#ifndef __FSMC_H__ #define __FSMC_H__ /** * @include **/ #include "stm32f4xx_fsmc.h" #include "stm32f4xx_rcc.h" /** * @define **/ #define SRAM_START_ADDR 0x68000000 /** * @function **/ void FsmcSram_Init(void); void Fsmc_AF_Config(GPIO_TypeDef* Gpio, u8* Arr, u8 Len); void FsmcSram_Write(u16* Data, u32 StartAddr,...
c
linux-3.0.1/drivers/net/wireless/rtl8189es/include/sdio_ops.h
tonghua209/samsun6410_linux_3_0_0_1_for_aws
0
2316480
/****************************************************************************** * * Copyright(c) 2007 - 2011 Realtek Corporation. All rights reserved. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU Genera...
c
ports/raspberrypi/common-hal/microcontroller/Pin.c
Neradoc/circuitpython
3,010
7999930
/* * This file is part of the MicroPython project, http://micropython.org/ * * The MIT License (MIT) * * Copyright (c) 2021 <NAME> for Adafruit Industries * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to d...
c
code/utils/xrCompress/lzo/lzo1b_4.c
InNoHurryToCode/xray-162
58
302183
#define COMPRESS_ID 4 #define DDBITS 1 #define CLEVEL 2 #include "compr1b.h"
c
VTU/OverViewCells.h
DevJock/VTU
0
2686596
// // OverViewCells.h // VTU // // Created by <NAME> on 11/26/14. // Copyright (c) 2014 <NAME>. All rights reserved. // #import <UIKit/UIKit.h> @interface OverViewCells : UITableViewCell @property (strong, nonatomic) IBOutlet UILabel *sName; @property (strong, nonatomic) IBOutlet UILabel *iMarks; @property (stro...
c
Year-1/FOP-fundamentals-of-algorithmization-and-programming/laboratory-work-11-v-16/employee.h
Ellanity/university
0
3848069
#pragma once #ifndef employee_H #define employee_H // Standard libraries #include <iostream> #include <fstream> #include <vector> #include <string> using std::ifstream; using std::ofstream; using std::string; using std::vector; using std::to_string; using std::cout; using std::cin; class Employee { private: strin...
c
src/parser.c
autopp/lisplay
0
7837072
/** * Copyright 2017 autopp * * 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 w...
c
jslide/video_reader.h
janm31415/jslide
0
8226828
#pragma once /* From: https://github.com/bartjoyce/video-app */ #include <stdint.h> #ifdef _FFMPEG_SUPPORTED extern "C" { #include "libavcodec/avcodec.h" #include "libavformat/avformat.h" #include "libswscale/swscale.h" } struct VideoReaderState { int width=0, height=0; AVRational time_base; AVFormatCon...
c
cmake_targets/lte_build_oai/build/CMakeFiles/Rel14/RRCConnectionResumeRequest-r13.h
davidraditya/OAI-Powder
1
4304051
/* * Generated by asn1c-0.9.24 (http://lionet.info/asn1c) * From ASN.1 module "EUTRA-RRC-Definitions" * found in "fixed_grammar.asn" * `asn1c -gen-PER` */ #ifndef _RRCConnectionResumeRequest_r13_H_ #define _RRCConnectionResumeRequest_r13_H_ #include <asn_application.h> /* Including external dependencies */ #...
c
src/klist.c
tmbx/libktools
0
4971313
/** * src/klist.c * Copyright (C) 2005-2012 Opersys inc., All rights reserved. * * List utilities. */ #include <string.h> #include "klist.h" #include "kmem.h" #include "kutils.h" #include "kerror.h" static struct klist_node *klist_node_new(void *data) { struct klist_node *self = kcalloc(sizeof(struct klist_n...
c
src/day15.h
AdamOttvar/AoC_2020
0
3625761
// // Created by AdamOttvar on 2020-12-15 // #ifndef _DAY15_H_ #define _DAY15_H_ #include "common.h" int day15(bool part_two = false); #endif //_DAY15_H_
c
src/lms7002_wxgui/lms7002_pnlSX_view.h
enterstudio/LimeSuite
0
4640459
#ifndef __lms7002_pnlSX_view__ #define __lms7002_pnlSX_view__ /** @file Subclass of pnlSX_view, which is generated by wxFormBuilder. */ #include "lms7002_wxgui.h" //// end generated include #include <map> #include "lime/LimeSuite.h" namespace lime{ } /** Implementing pnlSX_view */ class lms7002_pnlSX_view : public ...
c
sketches/Bluetooth/Bluetooth/src/commands/i2c/SetPinCommand.h
jeff-winn/nemesis-mod
2
3088048
#ifndef SET_PIN_COMMAND_H #define SET_PIN_COMMAND_H #include "../Command.h" class SetPinCommand : public Command { public: SetPinCommand() = default; protected: void executeImpl(const uint8_t* data, const uint8_t len) override; }; #endif /* SET_PIN_COMMAND_H */
c
usr/src/uts/i86pc/io/pci/pci_kstats.c
AsahiOS/gate
0
8297705
/* * 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...
c
src/ios/InneractiveAdSDK-iOS-v7.0.6/Inneractive SDK/IASDKClientPub/IASDKClient/UI/IAColors.h
mingz2013/cordova-plugin-ironsource-ads
0
2220789
// // IAColors.h // IASDKClient // // Created by Inneractive on 06/04/2017. // Copyright (c) 2017 Inneractive. All rights reserved. // #import <Foundation/Foundation.h> #define kIAColorsNavigationBar [UIColor whiteColor] #define kIAColorsButtonsText [UIColor colorWithRed:255/255.0 green:151/255.0 blue:4/255.0 alp...
c
src/ios/HTTPRequestOperationData.h
xatshepsut/cordova-plugin-http-requester
0
4126826
// // HTTPRequestOperationData.h // // Created by <NAME> on 3/27/17. // Copyright © 2017 Macadamian. All rights reserved. // #import <Foundation/Foundation.h> @interface HTTPRequestOperationData : NSObject @property (nonatomic, strong, nonnull) NSString *identifier; @property (nonatomic, strong, nonnull) NSString...
c
HTSTrainingScripts/dependencies/ActiveTcl/include/tclxml/docObj.h
falabrasil/resources_for_BP_HMM-based_Speech_Synthesis
4
5518609
/* docObj.h -- * * This module manages libxml2 xmlDocPtr Tcl objects. * * Copyright (c) 2003 Zveno Pty Ltd * http://www.zveno.com/ * * Zveno Pty Ltd makes this software and associated documentation * available free of charge for any purpose. You may make copies * of the software but you must include all of th...
c
Source/Engine/Source/ING/Event/Storage/Storage.h
vinoxphucs/ING
1
2651729
#pragma once /** * Include Entry Point */ #include <ING\EntryPoint\EntryPoint.h> /** * Include Utils */ #include <ING/Utils/Utils.h> using namespace ING::Utils; /** * Include Map */ #include <map> namespace ING { class Event; class ING_API EventStorage { /** * Constructors And Destructor ...
c
HLHorizontalPageLayoutDemo/HLHorizontalPageLayout/HLHorizontalPageLayout.h
dhl613/HLHorizontalPageLayoutDemo
22
1435562
// // HLHorizontalPageLayout.h // HLHorizontalPageLayoutDemo // // Created by dhl613 on 2018/8/24. // Copyright © 2018年 dhl613. All rights reserved. // #import <UIKit/UIKit.h> @interface HLHorizontalPageLayout : UICollectionViewLayout @property (nonatomic) CGFloat minimumLineSpacing; @property (nonatomic) CGFloa...
c
src/util/file.c
conquerw/cw_reactor
2
6081408
/************************************************ * @addtogroup CITS * @{ * @file : file.c * @brief : * @author: wangshaobo * @email : <EMAIL> * @date : 2019-05-10 10:43:51 ************************************************/ //----------------------------------------------- // Copyright (c) CITS //------------...
c
contrib/cube/cubedata.h
wotchin/openGauss-server
1
5668945
/* contrib/cube/cubedata.h */ #define CUBE_MAX_DIM (100) typedef struct NDBOX { int32 vl_len_; /* varlena header (do not touch directly!) */ unsigned int dim; double x[1]; } NDBOX; #define DatumGetNDBOX(x) ((NDBOX*)DatumGetPointer(x)) #define PG_GETARG_NDBOX(x) DatumGetNDBOX(PG_DETOAST_DATUM(PG_GETARG_DA...
c
src/heapy/stdtypes.h
odidev/guppy3
251
4690667
#ifndef NY_STDDEFS_INCLUDED #define NY_STDDEFS_INCLUDED /* Definitions of type structure(s) that were not exported but were needed anyway. XXX dangerous, if Python changes this may break. Should be made officially exported. Or pull some from offset in tp_members, but that seems a too complicated workaround for n...
c
util.c
laserbat/dzen-gitorious
0
852693
/* * (C)opyright MMVI-MMVII <NAME> <<EMAIL>beam at gmail dot com> * (C)opyright MMVII <NAME> <rob dot manea at gmail dot com> * See LICENSE file for license details. * */ #include "dzen.h" #include <stdarg.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <sys/wait.h> #include <unistd.h> #d...
c
src/loader/spectral/SpectralMapperManager.h
PearCoding/PearRay
19
6469041
#pragma once #include "AbstractDatabase.h" #include "ISpectralMapperPlugin.h" #include "plugin/AbstractManager.h" namespace PR { class ISpectralMapperFactory; class Environment; class PR_LIB_LOADER SpectralMapperManager : public AbstractManager<ISpectralMapperPlugin> { public: SpectralMapperManager(); virtual ~Spe...
c
Chapter1/Exercises/15.c
Peter-Fam/K-and-R-C-programming-language-exercises
0
891307
#include <stdio.h> /* * Exercise 15 * Page: 27 * Rewrite the temperatute conversion program of section 1.2 * to use a function for conversion. * */ #define LOWER 0 #define UPPER 300 #define STEP 20 static double toCelsius(double fahr); int main(void) { double fahr; printf("%12s:%12s\n", "Fahrenhiet", "...
c
thirdparty/simpleuv/simpleuv/triangulate.h
MelvinG24/dust3d
2,392
6894646
#ifndef SIMPLEUV_TRIANGULATE_H #define SIMPLEUV_TRIANGULATE_H #include <simpleuv/meshdatatype.h> namespace simpleuv { void triangulate(const std::vector<Vertex> &vertices, std::vector<Face> &faces, const std::vector<size_t> &ring); } #endif
c
cmake_targets/lte_build_oai/build/CMakeFiles/Rel14/RCLWI-Config-r13.c
davidraditya/OAI-Powder
0
4575516
/* * Generated by asn1c-0.9.24 (http://lionet.info/asn1c) * From ASN.1 module "EUTRA-RRC-Definitions" * found in "fixed_grammar.asn" * `asn1c -gen-PER` */ #include "RCLWI-Config-r13.h" static asn_per_constraints_t asn_PER_type_command_constr_2 GCC_NOTUSED = { { APC_CONSTRAINED, 1, 1, 0, 1 } /* (0..1) */, ...
c
crc32.c
data-respons-solutions/libnvram
0
4060932
#include "crc32.h" /* * Lookup table and calc_crc32 function taken from here: * http://web.mit.edu/wwwdev/src/harvest-1.3.pl3/components/gatherer/standard/unbinhex/crc/ccitt32.c * http://web.mit.edu/wwwdev/src/harvest-1.3.pl3/components/gatherer/standard/unbinhex/crc/makecrc.c * * Value used by: CCITT3...
c
pset3/find/less/tests/sort.c
UncleRumbert/osd-cs-cs50
0
8156766
#include <cs50.h> #include <stdio.h> void sort(int values[], int n) { int temp = 0; for (int i = 0; i < n - 1; i++) { if (values[i] > values[i + 1]) { temp = values[i]; values[i] = values[i + 1]; values[i + 1] = temp; i = 0; } } ...
c
Homework/Homework5/minesweeper.h
RogelioASR/C
0
4789949
#define forloop(i, x) for(i = 0; i != x; i++)//i used it a lot so just to make it easier #define BOMB -1 //set bombs #define CONTL 10 //number of rows and columns (counter line) #define LOST 'l' #define WON 'O' #define OK '?' void bombs(int); void neighbours(int); int open(); void kaboom(); void empty(int, int); ch...
c
main.c
j000/expression
0
39527
#include <stdlib.h> #include <stdio.h> #include <errno.h> #include <string.h> #include "bool.h" #include "stack.h" int main(int argc, char **argv) { printf("char: %zu\n", sizeof(char)); printf("int: %zu\n", sizeof(int)); printf("long: %zu\n", sizeof(long)); printf("double: %zu\n", sizeof(double)); printf("void *...
c
ompi/contrib/vt/vt/extlib/otf/tools/otfprofile-mpi/create_latex.h
bringhurst/ompi
1
199976
/* This is part of the OTF library. Copyright by ZIH, TU Dresden 2005-2011. Authors: <NAME>, <NAME>, <NAME> */ #ifndef CREATE_LATEX_H #define CREATE_LATEX_H #include "datastructs.h" /* generate PGF output */ bool CreateTex( AllData& alldata ); #endif /* CREATE_LATEX_H */
c
freebsd5/sys/compat/svr4/svr4_proto.h
MarginC/kame
91
3293745
/* * System call prototypes. * * DO NOT EDIT-- this file is automatically generated. * $FreeBSD: src/sys/compat/svr4/svr4_proto.h,v 1.12 2002/03/20 05:41:38 alfred Exp $ * created from FreeBSD: src/sys/compat/svr4/syscalls.master,v 1.11 2000/08/31 22:54:05 obrien Exp */ #ifndef _SVR4_SYSPROTO_H_ #define _SVR4_S...
c
JL/datastructure/ts_set.c
jeffreymanzione/jeff-vm-lang-2
1
215828
/* * ts_set.c * * Created on: Jan 6, 2019 * Author: Jeff */ #include "ts_set.h" #include "../memory/memory.h" TsSet *ts_set_create(uint32_t table_size, Hasher hasher, Comparator comparator) { TsSet *set = ALLOC(TsSet); ts_set_init(set, table_size, hasher, comparator); return set; } TsSet *ts_set_cr...
c
include/battery_voltage_reader.h
ESaar-t/node-platform
0
103111
/* * Battery voltage reader API. * * Copyright Thinnect Inc. 2021 * @license MIT */ #ifndef BATTERY_VOLTAGE_READER_H_ #define BATTERY_VOLTAGE_READER_H_ #include <stdint.h> #include <stdbool.h> /** * Read battery voltage. * * The function will try to acquire the ADC from platform_adc and * returns quickly wit...
c
platform/switch/switch_wrapper.h
GX-Plan/godot
0
7169511
/*************************************************************************/ /* switch_wrapper.h */ /*************************************************************************/ /* This file is part of: */ /* ...
c
experiment/aug202015_1/05_tas_true-unreach-call.c_anno.c
heryxpc/prototype
0
5904908
extern void __VERIFIER_error() __attribute__ ((__noreturn__)); //Simple test_and_set lock with exponential backoff // //From Algorithms for Scalable Synchronization on Shared-Memory Multiprocessors, 1991 (Fig. 1). //Also available as pseudo-code here: http://www.cs.rochester.edu/research/synchronization/pseudocode/ss....
c
EXPERTconnect/UI/Sections/Forms/ECSTextFormItemViewController.h
humanifydev/SDK-iOS
2
2316481
// // ECSTextFormItemViewController.h // EXPERTconnect // // Copyright (c) 2015 Humanify, Inc. All rights reserved. // #import "ECSFormItemViewController.h" /** * View controller for presenting a single line text entry form item. Expected to be * used as a child view controller of ECSFormViewController */ @inte...
c
programs/kF/De.c
mirrorscotty/regression
0
7109128
/** * @file De.c * Calculate Deborah number. */ #include <math.h> #include "matrix.h" #include "material-data.h" #include "kf.h" /** * Determine the lowest number row in kF such that all rows after it contain * positive values. * @param kF Vector of kF values. * @returns Row number */ int FindInitialPointkF(v...
c
C/Algorithm/FillMatrix.c
piovezan/SOpt
148
4623107
#include <stdio.h> #include <math.h> void receber_matriz(int l, int c) { int M[l][c]; for (int linha = 0; linha < l ; linha++) { for (int coluna = 0; coluna < c; coluna++) { printf ("\nInsira o valor do numero da linha: %d e da coluna: %d", linha, coluna); scanf ("%d", &M[linha]...
c
include/II_K7/ch16_ddc_source_c.h
Innovative-DSP/gr-II_K7_310R
0
8249676
/* -*- c++ -*- */ /* * Copyright 2016 Innovative Integration, Inc. * * This is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3, or (at your option) * any later version. * * This softwa...
c
src/configuration.h
paper-lark/space-shooter
0
7333969
#ifndef SPACESHOOTER_CONFIGURATION_H #define SPACESHOOTER_CONFIGURATION_H //#define GOD_MODE #endif
c
GTpo/src/gtpo/utils.h
winterheart/QuickQanava
768
5098499
/* Copyright (c) 2008-2020, <NAME> All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the fo...
c
sdk/sdk/codec/wmadecode/bswap.h
doyaGu/C0501Q_HWJL01
1
2152369
/** * @file bswap.h * byte swap. */ #ifndef __BSWAP_H__ # define __BSWAP_H__ # ifdef ROCKBOX /* rockbox' optimised inline functions */ # define bswap_16(x) swap16(x) # define bswap_32(x) swap32(x) static __inline uint64_t ByteSwap64(uint64_t x) { union { uint64_t ll; struct { ...
c
cl/opencl1/Device.h
k-a-z-u/KLib
2
6646587
#ifndef K_CL_DEVICE_H #define K_CL_DEVICE_H #include "Base.h" #include "DeviceAttributes.h" #include <unordered_map> #include <string> #include <vector> namespace K { namespace CL { class Platform; class Device { CLASS_NAME("Device"); private: /** the platform this device belongs to */ Platf...
c
code/src/mupen64plus-rsp-paraLLEl/lightning/lib/jit_hppa-fpu.c
OotinnyoO1/N64Wasm
335
7189092
/* * Copyright (C) 2013-2019 Free Software Foundation, Inc. * * This file is part of GNU lightning. * * GNU lightning 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, or (at you...
c
timer_blink_led.c
alexjaw/atmel_xmega_e
0
2217880
/* * timer_blink_led.c * * Blink LED using the Timer/Counter module on atxmega e * Based on examples in AVR1501, http://www.microchip.com//wwwAppNotes/AppNotes.aspx?appnote=en591816 * * Created: 2017-06-28 11:24:31 * Author: alexander */ #ifndef F_CPU #define F_CPU 1000000UL #endif #include <avr/io.h> #inclu...
c
net/message.h
wanchuanheng/wtaf
0
6574998
#ifndef WTAF__NET__MESSAGE_H_ #define WTAF__NET__MESSAGE_H_ #include <memory> #include <rapidjson/rapidjson.h> #include <rapidjson/document.h> #include <rapidjson/stringbuffer.h> #include <rapidjson/writer.h> #include "base/common.h" namespace wtaf { namespace net { class Connection; class Message { friend clas...
c
Engine/Plugins/Runtime/OculusLibrary/Source/OculusLibrary/Public/IOculusLibraryPlugin.h
PopCap/GameIdea
0
2693780
// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved. #pragma once #include "ModuleManager.h" /** * The public interface to this module */ class IOculusLibraryPlugin : public IModuleInterface { public: /** * Singleton-like access to this module's interface. This is just for convenience! * Beware of...
c
code/User_Code/pvalue.h
idnewfeel/temp_measure
0
1261376
#ifndef _pvalue_h_ #define _pvalue_h_ #include "main.h" extern uc16 pressure[1501]; /* Exported functions ------------------------------------------------------- */ float P_Calc(s16 temperature,u8 state); u16 RH_Calc(s16 tdp,s16 temperature); s16 DP_Calc(u16 RH,s16 temperature); u16 pw_Calc(s16 tdp,s16 temp...
c
PrivateFrameworks/AppleAccount/AAFamilyMember.h
phatblat/macOSPrivateFrameworks
17
5841462
// // Generated by class-dump 3.5 (64 bit). // // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by <NAME>. // #import "NSObject.h" @class NSDate, NSNumber, NSString; @interface AAFamilyMember : NSObject { BOOL _isMe; BOOL _isChild; BOOL _isSharingPurchases; BOOL _isOrganizer; ...
c
src/measures.c
victormatheus/LibOPF
7
5777398
#include "common.h" #include "measures.h" // Normalized cut double opf_graph_normalized_cut (struct opf_graph * sg) { int l, p, q; struct set *Saux; double ncut, dist; double *acumIC; //acumulate weights inside each class double *acumEC; //acumulate weights between the class and...
c
src/Game/zEntTeleportBox.h
DarkRTA/bfbbdecomp
0
4353876
#ifndef ZENTTELEPORTBOX_H #define ZENTTELEPORTBOX_H #endif
c
Microblink.xcframework/ios-arm64_x86_64-maccatalyst/Microblink.framework/Versions/5.10.0/Headers/MBRecognizerRunnerViewControllerMetadataDelegates.h
MoathOthman/blinkid-ios
377
3376762
// // MBRecognizerRunnerViewControllerMetadataDelegates.h // // AUTOMATICALLY GENERATED SOURCE. DO NOT EDIT! // #import "MBDebugRecognizerRunnerViewControllerDelegate.h" #import "MBDetectionRecognizerRunnerViewControllerDelegate.h" #import "MBOcrRecognizerRunnerViewControllerDelegate.h" #import "MBGlareRecognizerR...
c
libhipl/lsidb.c
levush/hipl
0
2219499
/* * Copyright (c) 2012 Aalto University and RWTH Aachen University. * * 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 ...
c
include/xenomai/cobalt/uapi/kernel/pipe.h
thomasfaingnaert/scriptable-guitar-pedal
7
3495786
/* * Copyright (C) 2014 <NAME> <<EMAIL>>. * * 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 the License, or (at your option) any later version. * * This libr...
c
src/notary_server/notary_server.h
blur-network/blur-dpow
0
513365
// Copyright (c) 2019-2022, Blur Network // Copyright (c) 2017-2018, The Masari Project // Copyright (c) 2014-2018, The Monero Project // // All rights reserved. // // Redistribution and use in source and binary forms, with or without modification, are // permitted provided that the following conditions are met: // // ...
c
BMPHEADER.h
K3rne132/Stegano-BMP
0
7461071
#ifndef BMPHEADER_H #define BMPHEADER_H #define WORD unsigned short #define DWORD unsigned long #pragma pack(push, 1) typedef struct { WORD bfType; DWORD bfSize; WORD bfReserved1; WORD bfReserved2; DWORD bfOffBits; } BITMAPFILEHEADER; #pragma pack(pop) #endif
c
project752/src/testComponent910/headers/testComponent910/lib2.h
gradle/perf-native-large
2
8187488
#ifndef PROJECT_HEADER_testComponent910_2_H #define PROJECT_HEADER_testComponent910_2_H int testComponent910_2(); #endif // PROJECT_HEADER_testComponent910_2_H
c
bare-metal-apps/lib/include/libc.h
zanon005/hellfire-hypervisor
3
3050470
/* Copyright (c) 2016, prpl Foundation Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRA...
c
src/SynchronizationInstrumentor/CodeTransformer.h
mozafari/vprofiler
107
4171788
// Clang libs #include "clang/Frontend/CompilerInstance.h" #include "clang/Parse/ParseAST.h" #include "clang/Basic/TargetOptions.h" #include "clang/Basic/TargetInfo.h" #include "clang/Rewrite/Core/Rewriter.h" // STL libs #include <vector> #include <unordered_map> #include <string> // VProf libs #include "ClangBase.h"...
c
lib/AerisWeatherKit.xcframework/tvos-arm64_x86_64-simulator/AerisWeatherKit.framework/Headers/AWFLightningStrikes.h
aerisweather/aerisweather-ios
0
3321873
// // AFLightningStrikesLoader.h // Aeris // // Created by <NAME> on 9/6/13. // Copyright (c) 2013 AerisWeather, LLC. All rights reserved. // #import <AerisWeatherKit/AWFWeatherEndpoint.h> #import <AerisWeatherKit/AWFLightningStrike.h> NS_ASSUME_NONNULL_BEGIN typedef NSString * AWFLightningStrikeFilter NS_TYPED_...
c
src/skeleton_model.h
huhwang/skeleton-based-robot-reasoning
0
2753133
#pragma once #include <vector> #include <string> #include <fstream> #include <sstream> #include <map> using namespace std; #ifndef _SKELETON_POSITION_ #define _SKELETON_POSITION_ struct position { float x; float y; float z; position() { x = 0; y = 0; z = 0; } positi...
c
MapwizeUI/Scenes/SearchScene/MWZUISearchViewControllerOptions.h
Mapwize/mapwize-ui-ios
18
4677439
#import <Foundation/Foundation.h> @import MapwizeSDK; NS_ASSUME_NONNULL_BEGIN @interface MWZUISearchViewControllerOptions : NSObject @property (assign) BOOL isDirection; @property (assign) BOOL isFrom; @property (assign) BOOL isTo; @property (nonatomic, copy) NSString* language; @property (nonatomic, copy) NSString...
c
YtelAPIV3/Models/Type36EnumHelper.h
mgrofsky/Ytel-API-OBJC-iOS
0
4842797
// // YtelAPIV3 // // This file was automatically generated by APIMATIC v2.0 ( https://apimatic.io ). // #ifndef APIMATIC_TYPE36ENUMHELPER #define APIMATIC_TYPE36ENUMHELPER #include "Type36Enum.h" /** * Helper class interface for Type36Enum to NSString conversion */ @interface Type36EnumHelper : NSObject +(id) str...
c
ArcFaceDemo-master/android-extend/src/main/jni/image/image.h
Tokymin/Face
1
4463783
/* * image.h * * Created on: 2015年6月18日 * Author: gqj3375 */ #ifndef JNI_IMAGE_IMAGE_H_ #define JNI_IMAGE_IMAGE_H_ #define CP_MJPEG 0xA000 #define CP_PNG 0xB000 #define CP_RGBA8888 1 #define CP_RGB565 4 #define CP_RGBA4444 7 #define CP_ALPHA8 8 #define CP_PAF_NV21 0x802 #define CP_PAF_NV12 0x801 #...
c
Example/CYYKit/YYViewController.h
caoyuanyuan/CYYKit
0
2891242
// // YYViewController.h // CYYKit // // Created by caoyuanyuan on 08/05/2019. // Copyright (c) 2019 caoyuanyuan. All rights reserved. // @import UIKit; @interface YYViewController : UIViewController @end
c
pfl/utils/typedump/typedump.c
zhihui-slash2/slash2-stable
0
5098515
/* $Id$ */ /* * %ISC_START_LICENSE% * --------------------------------------------------------------------- * Copyright (c) 2006-2015, Pittsburgh Supercomputing Center (PSC). * All rights reserved. * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby g...
c
usr.bin/f77/libI77/wrtfmt.c
weiss/original-bsd
114
1390135
/*- * Copyright (c) 1980 The Regents of the University of California. * All rights reserved. * * %sccs.include.proprietary.c% */ #ifndef lint static char sccsid[] = "@(#)wrtfmt.c 5.2 (Berkeley) 04/12/91"; #endif /* not lint */ /* * formatted write routines */ #include "fio.h" #include "format.h" extern char ...
c
kernel/linux-5.4/drivers/media/rc/keymaps/rc-cec.c
josehu07/SplitFS
27
6333122
// SPDX-License-Identifier: GPL-2.0-or-later /* Keytable for the CEC remote control * * Copyright (c) 2015 by <NAME> */ #include <media/rc-map.h> #include <linux/module.h> /* * CEC Spec "High-Definition Multimedia Interface Specification" can be obtained * here: http://xtreamerdev.googlecode.com/files/CEC_Specs....
c
Corsair Ambience/UpdateManager.h
hamodyk/Corsair-Ambience
12
3194855
#pragma once class UpdateManager { public: static void checkForAnUpdate(); };
c
Src/bsp_driver_sram.c
todo-assert/STM32F407VET6
1
3683839
/* USER CODE BEGIN Header */ /** ****************************************************************************** * @file bsp_driver_sram.c for F4 (based on stm32469i_eval_sram.c) * @brief This file includes a generic SRAM driver. ****************************************************************************** ...
c
src/nvmpool/pmalloc.h
lh2debug/quartzmemkv2
0
959013
/*************************************************************************** Copyright 2016 Hewlett Packard Enterprise Development LP. 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 ...
c
boards/frdmk28fa/driver_examples/dspi/interrupt/pin_mux.c
flit/mcux-sdk
1
5564679
/* * Copyright (c) 2016, Freescale Semiconductor, Inc. * Copyright 2016-2017 NXP * All rights reserved. * * SPDX-License-Identifier: BSD-3-Clause */ /* clang-format off */ /* * TEXT BELOW IS USED AS SETTING FOR TOOLS ************************************* !!GlobalInfo product: Pins v3.0 processor: MK28FN2M0Axxx...
c
mlir/include/Dialect/HiSPN/HiSPNEnums.h
lukasmweber/spn-compiler
8
7506206
//============================================================================== // This file is part of the SPNC project under the Apache License v2.0 by the // Embedded Systems and Applications Group, TU Darmstadt. // For the full copyright and license information, please view the LICENSE // file that was distributed...
c