text stringlengths 9 948k |
|---|
// Copyright (c) 2018 The SalemCash developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef SALEMCASH_CRYPTO_HMAC_SHA512_H
#define SALEMCASH_CRYPTO_HMAC_SHA512_H
#include <crypto/sha512.h>
#include <stdint.h>
#inclu... |
#ifndef __ENDIAN_H__
#define __ENDIAN_H__
#include <features.h>
#include <bits/endian.h>
#define __LITTLE_ENDIAN 1234
#define __BIG_ENDIAN 4321
#if (_BSD_SOURCE)
#define LITTLE_ENDIAN __LITTLE_ENDIAN
#define BIG_ENDIAN __BIG_ENDIAN
#define BYTE_ORDER __BYTE_ORDER
#endif
#endif /* __ENDIAN_H__ */ |
#define SET_PREV( f64, p32 ) SET_UPPER( f64, p32 )
#define SET_NEXT( f64, n32 ) SET_LOWER( f64, n32 )
#define COPY_PREV( f64, p64 ) SET_UPPER64( f64, p64 )
#define COPY_NEXT( f64, n64 ) SET_LOWER64( f64, n64 )
#define GET_PREV( f64 ) GET_UPPER( f64 )
#define GET_NEXT( f64 ) G... |
#ifndef AES_H
#define AES_H
#include <stdint.h>
#include <stdlib.h>
#include <oqs/aes.h>
#define AES128_KEYBYTES 16
#define AES192_KEYBYTES 24
#define AES256_KEYBYTES 32
#define AESCTR_NONCEBYTES 12
#define AES_BLOCKBYTES 16
typedef void * aes128ctx;
#define aes128_keyexp(r, key) OQS_AES128_load_schedule((key), (r... |
/**
* UGENE - Integrated Bioinformatics Tools.
* Copyright (C) 2008-2020 UniPro <ugene@unipro.ru>
* http://ugene.net
*
* 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
k
... |
#include <stdio.h>
#include "falcon.h"
#include <oqs/sig_falcon.h>
static void *
xmalloc(size_t len)
{
void *buf;
if (len == 0) {
return NULL;
}
buf = malloc(len);
if (buf == NULL) {
fprintf(stderr, "memory allocation error\n");
exit(EXIT_FAILURE);
}
return buf;
}
static void
xfree(void *buf)
{
if (bu... |
// Auto-generated file. Do not edit!
// Template: src/f32-vrnd/vrndd-psimd.c.in
// Generator: tools/xngen
//
// Copyright 2020 Google LLC
//
// This source code is licensed under the BSD-style license found in the
// LICENSE file in the root directory of this source tree.
#include <assert.h>
#include <psimd.h>
#... |
/****************************************************************************
* Copyright (C) from 2009 to Present EPAM Systems.
*
* This file is part of Indigo toolkit.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You ma... |
#pragma once
#if WITH_EDITOR
#include "IAssetTypeActions.h"
#endif
#include "JavascriptEditorModule.h"
#include "JavascriptAssetTypeActions.generated.h"
class UJavascriptAssetEditorToolkit;
class UJavascriptUIExtender;
/**
*
*/
UCLASS()
class JAVASCRIPTEDITOR_API UJavascriptAssetTypeActions : public UObject, pub... |
#pragma once
#include <geometry_msgs/PointStamped.h>
#include <interactive_markers/interactive_marker_server.h>
#include <interactive_markers/menu_handler.h>
#include <ros/ros.h>
#include <rviz/display_group.h>
#include <rviz/properties/bool_property.h>
#include <rviz/properties/float_property.h>
#include <rviz/proper... |
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_RENDERER_PEPPER_PEPPER_FLASH_DRM_RENDERER_HOST_H_
#define CHROME_RENDERER_PEPPER_PEPPER_FLASH_DRM_RENDERER_HOST_H_
#include "base/basi... |
#ifndef TESTS_H
#define TESTS_H
#define ABS_BLK_OFFSET_TEST 1024
#define LARGE_START_OFFSET 2048
// test launcher
void launch_tests(unsigned int start);
#endif /* TESTS_H */ |
//
// TKAppDelegate.h
// TKMInitializeModule
//
// Created by zhengxianda0512@gmail.com on 03/25/2021.
// Copyright (c) 2021 zhengxianda0512@gmail.com. All rights reserved.
//
@import UIKit;
@interface TKAppDelegate : UIResponder <UIApplicationDelegate>
@property (strong, nonatomic) UIWindow *window;
@end |
/*
Copyright (c) 2012-2015, Pierre-Olivier Latour
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 a... |
/*******************************************************************************
infoDialog.h
This header file is included by infoDialog.c
*******************************************************************************/
#ifndef _INFODIALOG_INCLUDED
#define _INFODIALOG_INCLUDED
#include <stdio.h>
#ifde... |
/*============================================================================
WCSLIB 7.2 - an implementation of the FITS WCS standard.
Copyright (C) 1995-2020, Mark Calabretta
This file is part of WCSLIB.
WCSLIB is free software: you can redistribute it and/or modify it under the
terms of the GNU Lesser G... |
//-------------------------------------------------------------------------
/*
Copyright (C) 2010 EDuke32 developers and contributors
This file is part of EDuke32.
EDuke32 is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License version 2
as published by the Free So... |
<<<<<<< HEAD
/* Copyright (c) 2010-2018, Delft University of Technology
=======
/* Copyright (c) 2010-2019, Delft University of Technology
>>>>>>> origin/master
* All rigths reserved
*
* This file is part of the Tudat. Redistribution and use in source and
* binary forms, with or without modification,... |
/*******************************************************************************
*
* Module Name: nsnames - Name manipulation and search
*
******************************************************************************/
/******************************************************************************
*
* 1. Copyrig... |
#define PY_SSIZE_T_CLEAN
#include <Python.h>
#include "structmember.h"
#define NPY_NO_DEPRECATED_API NPY_API_VERSION
#define _MULTIARRAYMODULE
#include "numpy/arrayobject.h"
#include "numpy/arrayscalars.h"
#include "npy_config.h"
#include "npy_pycompat.h"
#include "arrayobject.h"
#include "iterators.h"
#include "ct... |
// Copyright 2018 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef V8_INTL_SUPPORT
#error Internationalization is expected to be enabled.
#endif // V8_INTL_SUPPORT
#ifndef V8_OBJECTS_JS_PLURAL_RULES_INL_H_
#de... |
/*
* Copyright (c) 2013-2017 Intel Corporation. All rights reserved.
*
* This software is available to you under the BSD license below:
*
* Redistribution and use in source and binary forms, with or
* without modification, are permitted provided that the following
* conditions are met:
*
* - ... |
// cudamatrix/cu-matrix.h
// Copyright 2009-2012 Karel Vesely
// 2013 Johns Hopkins University (author: Daniel Povey)
// 2013 Hainan Xu
// 2013 Xiaohui Zhang
// 2013-2015 Guoguo Chen
// See ../../COPYING for clarification regarding multiple authors
//
// Lic... |
/*
* Licensed to the OpenAirInterface (OAI) Software Alliance under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The OpenAirInterface Software Alliance licenses this file to You under
* the terms found in... |
/*-------------------------------------------------------
* Copyright (C) 2010 Digi International, All Rights Reserved.
*
*
* This software is provided as instructional material without charge
* by Digi International for use by its employees and customers
* subject to the following terms.
*
* PERMISSION
* Permission is... |
#if !defined(_AppleEvents_H_)
#define _AppleEvents_H_
/*
* Copyright 1996 by Abacus Research and Development, Inc.
* All rights reserved.
*
* $Id: AppleEvents.h 63 2004-12-24 18:19:43Z ctm $
*/
#include "EventMgr.h"
#include "NotifyMgr.h"
typedef int32 AEEventClass;
typedef int32 AEEventID;
typedef int32 AEKeyw... |
#ifdef WITH_MODULES
#ifdef WITH_ETHER
#ifndef MATCHER_MODULE_ETHER_H
#define MATCHER_MODULE_ETHER_H
#include <bson.h>
#include "mongoc-matcher-op-private.h"
#include "uthash.h"
#include<net/ethernet.h>
#include<netinet/tcp.h> //Provides declarations for tcp header
#include<netinet/ip.h>
#include <sys/socket.h>
#in... |
#ifndef _GLOBAL
#define _GLOBAL
/* Compile flags. */
#define WIN32_LEAN_AND_MEAN /* Ignore large portion of Windows-specific headers. */
#define _CRT_SECURE_NO_WARNINGS
#define _CRT_NONSTDC_NO_DEPRECATE
#ifdef __cplusplus
#include <iostream>
using namespace std;
#endif /* __cplusplus */
#include <wtypes.... |
/*
* Generated by asn1c-0.9.24 (http://lionet.info/asn1c)
* From ASN.1 module "X2AP-IEs"
* found in "/home/thomas/lwa_ue_working/openair2/X2AP/MESSAGES/ASN1/R11.2/X2AP-IEs.asn"
* `asn1c -gen-PER`
*/
#include "X2ap-MultibandInfoList.h"
static asn_per_constraints_t asn_PER_type_X2ap_MultibandInfoList_constr_1 GC... |
// SPDX-License-Identifier: Apache-2.0
#include "applets.h"
#include "device.h"
#include "ndef.h"
#include "oath.h"
#include "openpgp.h"
#include "piv.h"
#include <admin.h>
#include <aes.h>
#include <apdu.h>
#include <assert.h>
#include <bd/lfs_filebd.h>
#include <ctap.h>
#include <fs.h>
#include <lfs.h>
static struct... |
#pragma once
#include <cstdint>
#include "hw/Core.h"
namespace Pomi {
class System {
public:
System() = delete;
System(const System&) = delete;
System& operator =(const System&) = delete;
static inline void init() { Hw::Core::enableSysTick(); }
... |
#pragma once
#include "CoreDEF.h"
#include "Engine/Graphics/InputSlots/InputSlots.h"
namespace bv
{
// ***********************
//
class IInputHandler
{
private:
public:
virtual ~IInputHandler () = 0 {}
virtual void RegisterInputs ( RenderContext * ctx, InputSlotsPtr inputSlots ) = 0;
... |
// Program to calculate simple interest
#include <stdio.h>
int main()
{
float PrincipleAmount, Rate, Time, SimpleInterest;
printf("Enter Principal Amount, Rate of interest and Time Respectively\n");
scanf("%f%f%f", &PrincipleAmount, &Rate, &Time);
SimpleInterest = (PrincipleAmount * Rate * Time) / 100;... |
/****************************************************************************
* Driver for Solarflare network controllers and boards
* Copyright 2005-2006 Fen Systems Ltd.
* Copyright 2006-2013 Solarflare Communications Inc.
*
* This program is free software; you can redistribute it and/or modify it
* under the t... |
// Copyright (c) 2018 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 THIRD_PARTY_BLINK_RENDERER_PLATFORM_HEAP_HEAP_TRAITS_H_
#define THIRD_PARTY_BLINK_RENDERER_PLATFORM_HEAP_HEAP_TRAITS_H_
#include <type_traits... |
/********** tell emacs we use -*- c++ -*- style comments *******************
$Revision: 1.3 $ $Author: trey $ $Date: 2007-03-24 22:44:33 $
@file GenericDiscreteMDP.h
@brief No brief
Copyright (c) 2006, Trey Smith.
Licensed under the Apache License, Version 2.0 (the "License"); you may
not use this fi... |
#ifndef _BAIDU_SHUTTLE_GRU_H_
#define _BAIDU_SHUTTLE_GRU_H_
#include <string>
#include <stdint.h>
#include "proto/shuttle.pb.h"
#include "galaxy.h"
namespace baidu {
namespace shuttle {
class Gru {
public:
Gru(::baidu::galaxy::Galaxy* galaxy, JobDescriptor* job,
const std::string& job_id, WorkMode mode... |
// license:GPL-2.0+
// copyright-holders:Jarek Burczynski,Tatsuyuki Satoh
#ifndef MAME_SOUND_FMOPL_H
#define MAME_SOUND_FMOPL_H
#pragma once
#if defined(_MSC_VER) && (_MSC_VER <= 1500)
#include <SDL.h>
#else
#include <stdint.h>
#endif
/* --- select emulation chips --- */
#define BUILD_YM3812 1
#define BUILD_YM3526... |
/* TEMPLATE GENERATED TESTCASE FILE
Filename: CWE78_OS_Command_Injection__char_environment_w32_execv_34.c
Label Definition File: CWE78_OS_Command_Injection.strings.label.xml
Template File: sources-sink-34.tmpl.c
*/
/*
* @description
* CWE: 78 OS Command Injection
* BadSource: environment Read input from an environme... |
#pragma once
#include <ostream>
void problem_24_main(std::ostream& os);
void problem_24_main(); |
#include <linux/module.h> // required by all modules
#include <linux/kernel.h> // required for sysinfo
#include <linux/init.h> // used by module_init, module_exit macros
#include <linux/jiffies.h> // where jiffies and its helpers reside
#include <linux/slab.h>
#include <linux/list.h>
#include <linux/kthre... |
/*
+------------------------------------------------------------------------+
| Phalcon Framework |
+------------------------------------------------------------------------+
| Copyright (c) 2011-2013 Phalcon Team (http://www.phalconphp.com) |
+------... |
// Copyright (c) 2016-2019 The thecoffeecoins Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef thecoffeecoins_THREADINTERRUPT_H
#define thecoffeecoins_THREADINTERRUPT_H
#include <sync.h>
#include <atomic... |
/*=========================================================================
Program: Visualization Toolkit
Module: vtkAffineRepresentation2D.h
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This s... |
#ifndef _GDT_INC
#define _GDT_INC
#include <stdint.h>
//file to define and use the global descriptor table
#define MAX_GDT_DESC 3
#define GDT_ACC 0x0001
#define GDT_RW 0x0002
#define GDT_DIR 0x0004
#define GDT_EXE 0x0008
#define GDT_CDT 0x0010
#define GDT_DPL 0x0060
#define GDT_MEM 0x0080
#define GDT_GR_HI 0x0f
#d... |
/*
** 2010 February 23
**
** The author disclaims copyright to this source code. In place of
** a legal notice, here is a blessing:
**
** May you do good and not evil.
** May you find forgiveness for yourself and forgive others.
** May you share freely, never taking more than you give.
**
********************... |
// Copyright (c) 1997
// Utrecht University (The Netherlands),
// ETH Zurich (Switzerland),
// INRIA Sophia-Antipolis (France),
// Max-Planck-Institute Saarbruecken (Germany),
// and Tel-Aviv University (Israel). All rights reserved.
//
// This file is part of CGAL (www.cgal.org); you can redistribute it and/or
// ... |
// generated by kiste2cpp
#pragma once
#include <kiste/terminal.h>
/*
* Copyright (c) 2015-2015, Roland Bock
* 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... |
#pragma once
#include <Common/memcmpSmall.h>
#include <Common/assert_cast.h>
#include <Columns/ColumnsNumber.h>
#include <Columns/ColumnConst.h>
#include <Columns/ColumnDecimal.h>
#include <Columns/ColumnString.h>
#include <Columns/ColumnFixedString.h>
#include <Columns/ColumnTuple.h>
#include <Columns/ColumnArray.h>... |
/**
Defining the types of functions that will receive the states.
*/
#define STX 0x02
#define ETX 0x03
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
typedef void (*Action_t)(void *, unsigned char);
typedef void (*Callback_t)(unsigned char *);
typedef enum{
ST_STX,
ST_ADDR,
ST_QTD,
ST_DADOS,
... |
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#include <winsock2.h>
#include "lib.h"
#include "xdns.h"
#include "massmail.h"
#pragma comment(lib, "ws2_32.lib")
#pragma comment(lib, "user32.lib")
#define my_tolower(c) (((c) >= 'a' && (c) <= 'z') ? ((c)-'a'+'A') : (c));
#define my_isdigit(c) ((c) >= '0' && (c) <= '9'... |
/*
The MIT License (MIT)
Copyright (c) 2012-2017 Syoyo Fujita and many contributors.
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
t... |
/* $NetBSD: bus_space.c,v 1.2 2000/04/16 14:44:03 kleink Exp $ */
/*-
* Copyright (c) 1996, 1997, 1998 The NetBSD Foundation, Inc.
* All rights reserved.
*
* This code is derived from software contributed to The NetBSD Foundation
* by Charles M. Hannum and by Jason R. Thorpe of the Numerical Aerospace
* Simulati... |
#pragma once
#include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <stdint.h>
#include "mscorlib_System_ValueType3640485471.h"
// System.Array
struct Il2CppArray;
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-of... |
/*****************************************************************************
# *
# Copyright 2019 AT&T Intellectual Property *
# *
# Li... |
/**
@file GMutex.h
@created 2005-09-22
@edited 2009-03-25
*/
#ifndef G3D_GMutex_h
#define G3D_GMutex_h
#include "G3D/platform.h"
#include "G3D/AtomicInt32.h"
#include "G3D/debugAssert.h"
#include <string>
#ifndef G3D_WIN32
# include <pthread.h>
# include <unistd.h>
# include <signal.h>
#endif
nam... |
#pragma once
// credit: https://github.com/skeeto/mandel-simd/
struct spec {
/* Image Specification */
int width;
int height;
int depth;
/* Fractal Specification */
float xlim[2];
float ylim[2];
int iterations;
}; |
/* ----------------------------------------------------------------------- *
*
* Copyright 2008 rPath, Inc. - All Rights Reserved
*
* This file is part of the Linux kernel, and is made available under
* the terms of the GNU General Public License version 2 or (at your
* option) any later version; incorpor... |
#include "hash.h"
HashTable *create_table(int size)
{
HashTable * ht = (HashTable *)malloc(sizeof(HashTable));
ht->table = (int*)malloc(sizeof(int)*size);
for(int i=0;i<size;i++)
{
ht->table[i]=-1;//initialize all the hashtable elements to -1
}
ht->size = size;///initializing the size o... |
#include "samtools.pysam.h"
/* bam_fastq.c -- FASTA and FASTQ file generation
Copyright (C) 2009-2017, 2019-2020 Genome Research Ltd.
Portions copyright (C) 2009, 2011, 2012 Broad Institute.
Author: Heng Li <lh3@sanger.ac.uk>
Permission is hereby granted, free of charge, to any person obtaining a copy
... |
/**
* Copyright (c) 2014, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*/
#pragma once
... |
/****************************************************************************
* system/fsutils/passwd/passwd_encrypt.c
*
* Copyright (C) 2016 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
*
* Redistribution and use in source and binary forms, with or without
* modification, are ... |
#ifndef __UTIL_H__
#define __UTIL_H__
#define _CRT_SECURE_NO_DEPRECATE // remove warning C4996,
#include "ostype.h"
#include "Lock.h"
#include "yaolog/yaolog.h"
#include "GlobalConfig.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#ifndef _MSC_VER
#include <strings.h>
#endif
#include <sys/stat.h>
#i... |
/**
******************************************************************************
* @file stm32l5xx_ll_exti.h
* @author MCD Application Team
* @brief Header file of EXTI LL module.
******************************************************************************
* @attention
*
* <h2><center>© C... |
/*
* This header is generated by classdump-dyld 1.5
* on Wednesday, April 14, 2021 at 2:22:22 PM Mountain Standard Time
* Operating System: Version 14.4 (Build 18K802)
* Image Source: /System/Library/Frameworks/Intents.framework... |
/**
******************************************************************************
* @file USB_Device/CDC_Standalone/Inc/usbd_conf.h
* @author MCD Application Team
* @brief General low level driver configuration
******************************************************************************
* @attenti... |
// Copyright 2014 PDFium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
#ifndef FPDFSDK_INCLUDE_PDFWINDOW_PWL_LABEL_H_
#define FPDFSDK_INCLUDE_PDFWIN... |
#pragma once
#include "AK_Main.h"
OB_PREOP_CALLBACK_STATUS ObjectPreCallback(
IN PVOID RegistrationContext,
IN POB_PRE_OPERATION_INFORMATION OperationInformation
);
VOID ObjectPostCallback(
IN PVOID RegistrationContext,
IN POB_POST_OPERATION_INFORMATION OperationInformation
);
NTSTATUS RegisterCallbackFunct... |
/*
* This header is generated by classdump-dyld 1.0
* on Tuesday, November 5, 2019 at 2:44:03 AM Mountain Standard Time
* Operating System: Version 13.0 (Build 17J586)
* Image Source: /System/Library/PrivateFrameworks/ProVideo.framework/ProVideo
* classdump-dyld is licensed under GPLv3, Copyright © 2013-2016 by Elias L... |
/* Copyright (C) 2011 Circuits At Home, LTD. All rights reserved.
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 License, or
(at your option) any later version.
This program... |
// Copyright 2019 Andrew Karasyov
//
// Copyright 2018 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless require... |
/**
* SDL_sound; An abstract sound format decoding API.
*
* Please see the file LICENSE.txt in the source's root directory.
*
* This file written by Ryan C. Gordon.
*/
/*
* Internal function/structure declaration. Do NOT include in your
* application.
*/
#ifndef _INCLUDE_SDL_SOUND_INTERNAL_H_
#define _INCL... |
// RUN: jlang-cc -mcpu=pentium4 %s -print-stats
#ifdef __APPLE__
#include <Carbon/Carbon.h>
#endif |
// graphics.c
// Created 12/1/2010; 12:56:48 PM
#include "../lib/extgraph.h"
#include "sprite.h"
#include "graphics.h"
#include "error.h"
#include <alloc.h>
#include <graph.h>
//initialize graphics
//returns FALSE if GrayOn() fails
short InitGraphics(void)
{
WheelBuffer = NULL;
return GrayOn();
}
//draws a string ... |
// C++/WinRT v2.0.201201.7
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
#ifndef WINRT_Windows_Media_Devices_1_H
#define WINRT_Windows_Media_Devices_1_H
#include "winrt/impl/Windows.Media.Devices.0.h"
WINRT_EXPORT namespace winrt::Windows::Media::Devices
{
struct ... |
/*
* This header is generated by classdump-dyld 1.0
* on Sunday, September 27, 2020 at 11:54:03 AM Mountain Standard Time
* Operating System: Version 14.0 (Build 18A373)
* Image Source: /System/Library/PrivateFrameworks/CameraEffectsKit.framework/CameraEffectsKit
* classdump-dyld is licensed under GPLv3, Copyright © 20... |
// Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2018 The DigiByte Core developers
// Copyright (c) 2015-2019 The Auroracoin developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef DIGIBYTE_SCRIPT_DIG... |
/****************************************************************************
* wireless/bluetooth/bt_l2cap.c
* L2CAP handling
*
* Copyright (C) 2018 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
*
* Ported from the Intel/Zephyr arduino101_firmware_source-v1.tar package
* where... |
//
// AppDelegate.h
// NoSQL
//
// Created by Mattt Thompson on 12/01/15.
// Copyright (c) 2012年 __MyCompanyName__. All rights reserved.
//
#import <Cocoa/Cocoa.h>
@interface AppDelegate : NSObject <NSApplicationDelegate>
@property (assign) IBOutlet NSWindow *window;
- (IBAction)newWindow:(id)sender;
@end |
extern void abort(void);
void reach_error(){}
extern void abort(void);
void assume_abort_if_not(int cond) {
if(!cond) {abort();}
}
void __VERIFIER_assert(int cond) {
if (!(cond)) {
ERROR: {reach_error();abort();}
}
return;
}
int __VERIFIER_nondet_int();
_Bool __VERIFIER_nondet_bool();
int main()
{
... |
#pragma once
#include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <stdint.h>
// System.Collections.Generic.Dictionary`2<System.String,System.Boolean>
struct Dictionary_2_t1445386684;
#include "mscorlib_System_ValueType3507792607.h"
#include "mscorlib_System_C... |
#ifndef WEAPON_COLLECTION
#define WEAPON_COLLECTION
#include "Weapon.h"
class NoWeaponsException { };
class NoMoreSpaceException { };
class WeaponCollection
{
public:
WeaponCollection(int capacity);
~WeaponCollection();
void next();
void prev();
Weapon* current();
void add(Weapon *w);
bool full();
... |
/*
** $Id: lobject.c,v 2.126 2018/06/01 17:40:38 roberto Exp $
** Some generic functions over Lua objects
** See Copyright Notice in lua.h
*/
#define lobject_c
#define LUA_CORE
#include "lprefix.h"
#include <locale.h>
#include <math.h>
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
... |
/*
* This header is generated by classdump-dyld 1.0
* on Sunday, September 27, 2020 at 12:32:54 PM Mountain Standard Time
* Operating System: Version 14.0 (Build 18A373)
* Image Source: /usr/lib/libacmobileshim.dylib
* classdump-dyld is licensed under GPLv3, Copyright © 2013-2016 by Elias Limneos.
*/
#import <libacmob... |
/**************************************************************************//**
* @file efr32bg1b_letimer.h
* @brief EFR32BG1B_LETIMER register and bit field definitions
* @version 5.4.0
******************************************************************************
* # License
* <b>Copyright 2017 Silicon Laborato... |
#include <unistd.h>
#include <stdlib.h>
#include <stdio.h>
#include <fcntl.h>
const char *test_file = "/tmp/test_lock";
#define SIZE_TO_TRY 5
void show_lock_info(struct flock *to_show);
int main()
{
int file_desc;
int res;
struct flock region_to_test;
int start_byte;
file_desc = open(test_file, O_RDWR | O_CRE... |
#pragma once
#include "common/Scoped_event_handlers.h"
#include "models/Transform_tool.h"
#include "presenters/IPresenter.h"
class Dataset_model;
class IImage_view;
class QMouseEvent;
class Tool_bar;
class Image_presenter : public IPresenter
{
public:
Image_presenter(IImage_view&, Dataset_model&, Tool_bar&);
... |
/************************************************************************************
* *
* Copyright (c) 2014, 2015 - 2016 Axel Menzel <info@rttr.org> *
* ... |
/* Copyright 2016 Stanford University, NVIDIA Corporation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by app... |
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
#include "pal_types.h"
#include <openssl/bio.h>
/*
Creates a new memory-backed BIO instance.
*/
extern "C" BIO* Cr... |
//
// ofxCvOpticalFlowLK.h - a OpenCV cvOpticalFlowLK warpper for openFrameworks
//
// Copyright (C) 2008 Takashi Maekawa <takachin@generative.info>
// All rights reserved.
// This is free software with ABSOLUTELY NO WARRANTY.
//
// You can redistribute it and/or modify it under the terms of
// the GNU Lesser... |
/*
* list.c Copyright (C) 2014 c9s <yoanlin93@gmail.com>
*
* Distributed under terms of the MIT license.
*/
#include <stdlib.h>
#include "r3_list.h"
#include "zmalloc.h"
/* Naive linked list implementation */
list *
list_create()
{
list *l = (list *) zmalloc(sizeof(list));
l->count = ... |
/**
* @file include/retdec/llvmir2hll/pattern/pattern_finder_runners/no_action_pattern_finder_runner.h
* @brief Runner of pattern finders that performs no additional actions.
* @copyright (c) 2017 Avast Software, licensed under the MIT license
*/
#ifndef RETDEC_LLVMIR2HLL_PATTERN_PATTERN_FINDER_RUNNERS_NO_ACTION_PATTE... |
/***************************************************************************
inptport.h
Handle input ports and mappings.
Copyright Nicola Salmoria and the MAME Team.
Visit http://mamedev.org for licensing and usage restrictions.
***********************************************************************... |
//
// CMStaticCell.h
// DYNet
//
// Created by MyMac on 15/7/30.
// Copyright (c) 2015年 Apple. All rights reserved.
//
#import <UIKit/UIKit.h>
@class CMStaticCellItem;
@interface CMStaticCell : UITableViewCell
@property (nonatomic,strong) CMStaticCellItem *staticCellItem;
@end |
/** @file
The application to show the Boot Manager Menu.
Copyright (c) 2011 - 2018, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include "BootManagerMenu.h"
EFI_HII_HANDLE gStringPackHandle;
BOOLEAN mModeInitialized = FALSE;
//
// Boot video resolution and text... |
/*
Copyright (C) 2008-2012 David Anderson. All Rights Reserved.
Portions Copyright 2012 SN Systems Ltd. All rights reserved.
This program is free software; you can redistribute it and/or modify it
under the terms of version 2.1 of the GNU Lesser General Public License
as published by the Free Software Found... |
/*
* This header is generated by classdump-dyld 1.0
* on Sunday, September 27, 2020 at 11:42:08 AM Mountain Standard Time
* Operating System: Version 14.0 (Build 18A373)
* Image Source: /System/Library/PrivateFrameworks/SAObjects.framework/SAObjects
* classdump-dyld is licensed under GPLv3, Copyright © 2013-2016 by Eli... |
#pragma once
#include <cx/cx.h>
#include <cx/string.h>
#include <cx/core/stvar.h>
enum LOG_LEVEL_ENUM {
LOG_Fatal,
LOG_Error,
LOG_Warn,
LOG_Notice,
LOG_Info,
LOG_Verbose,
LOG_Debug, // Compiled out of non-development builds
LOG_Trace, // Only available in debug builds... |
#include <coldforce/core/co_std.h>
#include <coldforce/core/co_string.h>
#include <coldforce/http/co_http_request.h>
#include <coldforce/http/co_http_config.h>
//---------------------------------------------------------------------------//
// http request
//------------------------------------------------------------... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.