text
stringlengths
9
948k
/******************************************************************************* The content of this file includes portions of the AUDIOKINETIC Wwise Technology released in source code form as part of the SDK installer package. Commercial License Usage Licensees holding valid commercial licenses to the AUDIOKINETIC W...
/* * DynamicTextureAtlas.h * WhirlyGlobeLib * * Created by Steve Gifford on 2/28/13. * Copyright 2011-2019 mousebird consulting * * 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...
// // Generated by classdumpios 1.0.1 (64 bit) (iOS port by DreamDevLost)(Debug version compiled Sep 26 2020 13:48:20). // // Copyright (C) 1997-2019 Steve Nygard. // #import <objc/NSObject.h> @class NSDictionary, NSString; @interface TCCDProcess : NSObject { _Bool _haveIsPlatformBinary; // 8 = 0x8 _Boo...
#pragma once #include "utils.h" namespace glsl { template<class Trait, size_t... Indices> struct VectorProxy { static constexpr size_t VectorSize = sizeof...(Indices); using VectorItem = typename Trait::ScalarType; template<class Scalar_, size_t Size_> using VectorFactory = typename Trait::template...
// Copyright 2015 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_GCM_DRIVER_INSTANCE_ID_FAKE_GCM_DRIVER__FOR_INSTANCE_ID_H_ #define COMPONENTS_GCM_DRIVER_INSTANCE_ID_FAKE_GCM_DRIVER__FOR_INSTANCE_ID_H...
/* * Copyright (c) 2013 - 2014, Freescale Semiconductor, Inc. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * o Redistributions of source code must retain the above copyright notice, th...
int main() { return 012; }
/* Common routines between Xen store user library and daemon. Copyright (C) 2005 Rusty Russell IBM Corporation 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 v...
/****************************************************************************** * Copyright(c) 2008 - 2010 Realtek Corporation. All rights reserved. * * This program is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR ...
// // CHObserverUtils.h // // Created by lichanghong on 2017/4/19. // Copyright © 2017年 lichanghong. All rights reserved. // #import <Foundation/Foundation.h> @class CHObserverUtils; @interface NSObject (CHObserverUtils) @property (nonatomic, copy) NSString *chTag; // 为每一个NSObject增加一个懒加载的observerUtils对象,用来管理obje...
#pragma once #include <memory> #include <optional> namespace dingo { template < typename T > struct class_constructor { template < typename... Args > static T invoke(Args&& ... args) { return T(std::forward< Args >(args)...); } }; template < typename T > struct cla...
/* linphone, gtk interface. Copyright (C) 2014 Belledonne Communications SARL 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. ...
// SPDX-License-Identifier: GPL-2.0 /* Copyright(c) 2007 - 2018 Intel Corporation. */ #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt #include <linux/module.h> #include <linux/types.h> #include <linux/init.h> #include <linux/bitops.h> #include <linux/vmalloc.h> #include <linux/pagemap.h> #include <linux/netdevice.h> #inc...
// // WeatherDetailCollectionViewCell.h // KaiYuanJieKou // // Created by jiachen on 16/5/4. // Copyright © 2016年 jiachenmu. All rights reserved. // #import <UIKit/UIKit.h> #define WeatherDetailCollectionViewCellID @"WeatherDetailCollectionViewCellID" @class WeatherDetailView; @class WeatherModel; @interface We...
#ifndef _DG_BLAS_SPARSEBLOCKMAT_ #define _DG_BLAS_SPARSEBLOCKMAT_ #include "tensor_traits.h" #include "tensor_traits.h" #include "sparseblockmat.h" #include "sparseblockmat.cuh" // ///@cond namespace dg{ namespace blas2{ namespace detail{ template<class Matrix1, class Matrix2> inline void doTransfer( const Matrix1& x...
/** * \file session_server.h * \author Michal Vasko <mvasko@cesnet.cz> * \brief libnetconf2 session server manipulation * * Copyright (c) 2015 CESNET, z.s.p.o. * * This source code is licensed under BSD 3-Clause License (the "License"). * You may not use this file except in compliance with the License. * You m...
#include <weapon.h> inherit STAFF; void create() { set_name("竹扫把", ({"bamboo broom", "broom"}) ); set_weight(1000); if( clonep() ) set_default_object(__FILE__); else { set("unit", "把"); set("long", "一把快秃了头的竹扫把。\n"); set("value", 50); set("material",...
/***************************************************************************/ /* */ /* ftgloadr.h */ /* */ /* Th...
#ifndef ALTERSPACE_CHARACTER_H #define ALTERSPACE_CHARACTER_H #include <string> #include <vector> #include <numeric> #include <AlterSpace.h> #include <Inventory.h> #include <UniqueID.h> #include <Object.h> #include <utility> #include <vector> #include <boost/algorithm/string/join.hpp> using AlterSpace::ID; using Alte...
// Copyright 2015-present 650 Industries. All rights reserved. #if __has_include(<EXFileSystem/EXFileSystem.h>) #import <UIKit/UIKit.h> #import <EXFileSystem/EXFileSystem.h> #import "EXConstantsBinding.h" NS_ASSUME_NONNULL_BEGIN @interface EXScopedFileSystemModule : EXFileSystem - (instancetype)initWithExperienceId...
/** * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you...
#ifndef __SCENEINTRO_H__ #define __SCENEINTRO_H__ #include "Module.h" #include "Animation.h" #include "Globals.h" struct SDL_Texture; class SceneIntro : public Module { public: // Constructor SceneIntro(Application* app, bool start_enabled = true); // Destructor ~SceneIntro(); // Called when the module is act...
/* Author : Shujia Huang * Date : 2013-10-2 * * Region class */ #ifndef __REGION_H__ #define __REGION_H__ #include <iostream> #include <vector> #include <map> #include <stdlib.h> using namespace std; class Region { public: string id; long int start; long int end; long int regsize; // The region ...
//===-- PPCInstrInfo.h - PowerPC Instruction Information --------*- C++ -*-===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===-------------------------------------------------------...
// Room: /d/playertown/huayuan2.c 花園 // Build 1999.12.10 bmw inherit ROOM; void create() { set("short", "花園"); set("long", "你走在一條青磚小道上,兩邊整整齊齊地排着兩排楊柳,湖上總有幾\n" "艘漁船正在打漁,漁夫們歡快地唱着歌,拖起一網活蹦亂跳的魚兒。湖畔\n" "邊上是一片片翠綠的草坪,上面幾對夫婦正相依在那,低頭吟語着,偶爾\n" "還傳來一陣澀笑。\n" ); set("outdoors", "playertown"); // set("no...
#ifndef BINARIZER_H_ #define BINARIZER_H_ /* * Binarizer.h * zxing * * Copyright 2010 ZXing authors All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * ...
// Copyright (c) 2011-2014 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_QT_GUICONSTANTS_H #define BITCOIN_QT_GUICONSTANTS_H /* Milliseconds between model updates */ static const in...
/* * Copyright 2018-2020 NXP * All rights reserved. * * SPDX-License-Identifier: BSD-3-Clause */ #include "fsl_clock.h" /* Component ID definition, used by tools. */ #ifndef FSL_COMPONENT_ID #define FSL_COMPONENT_ID "platform.drivers.clock" #endif /****************************************************************...
/****************************************************************************** * Code generated with sympy 0.7.6 * * * * See http://www.sympy.org/ for more information. * ...
// circppg.h : Declaration of the CCircPropPage property page class. // // This is a part of the Microsoft Foundation Classes C++ library. // Copyright (c) Microsoft Corporation. All rights reserved. // // This source code is only intended as a supplement to the // Microsoft Foundation Classes Reference and related //...
/* Open Asset Import Library (assimp) ---------------------------------------------------------------------- Copyright (c) 2006-2020, assimp team All rights reserved. Redistribution and use of this software in source and binary forms, with or without modification, are permitted provided that the following conditions...
// rank 2 beastie #include <std.h> inherit "/d/magic/mon/naturesally/natureally.c"; void create(){ ::create(); set_id(({"wolverine","natures ally"})); set_short("%^BOLD%^%^BLACK%^dark-furred wolverine%^RESET%^"); set_long("This stocky, muscular beast looks most like a bear with a bushy tail. Such beas...
/*------------------------------------------------------------------------- * * geqo_copy.h * prototypes for copy functions in optimizer/geqo * * Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * src/include/optimiz...
/* * Copyright (C) 2018 GreenWaves Technologies * * 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 l...
/************************************************/ /* */ /* AIMP Programming Interface */ /* v4.00 build 1660 */ /* */ /* Artem Izmaylov */ /* ...
/* * Copyright 2020 Telecom Paris 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...
#ifndef HASH_FIXED_H #define HASH_FIXED_H #include <cassert> #include "config.h" #include "container_base.h" #include "utility.h" #include <chrono> #include <mutex> /** * This class implements a HashMap of fixed size to store (Key, Value) * tuples. A (Key,Value) pair will be stored according to its * hash-value ...
/**************************************************************************** * arch/arm/src/max326xx/max326_rtc_lowerhalf.c * * Copyright (C) 2018 Gregory Nutt. All rights reserved. * Author: Gregory Nutt <gnutt@nuttx.org> * * Redistribution and use in source and binary forms, with or without * modification...
// Copyright (c) 2018 The Llamacoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef LLAMACOIN_TEST_GEN_CRYPTO_GEN_H #define LLAMACOIN_TEST_GEN_CRYPTO_GEN_H #include <key.h> #include <random.h> #include <u...
/* --------------------------------------------------------------------------- Open Asset Import Library (assimp) --------------------------------------------------------------------------- Copyright (c) 2006-2020, assimp team All rights reserved. Redistribution and use of this software in source and binary forms, ...
// generated from rosidl_generator_c/resource/idl__type_support.h.em // with input from example_interfaces:msg/UInt64.idl // generated code does not contain a copyright notice #ifndef EXAMPLE_INTERFACES__MSG__DETAIL__U_INT64__TYPE_SUPPORT_H_ #define EXAMPLE_INTERFACES__MSG__DETAIL__U_INT64__TYPE_SUPPORT_H_ #include "...
/** @author Adminotech Ltd. Copyright Adminotech Ltd. All rights reserved. @file @brief */ #pragma once #include "RocketFwd.h" #include "UiFwd.h" #include "MeshmoonData.h" #include "ui_RocketOfflineLobby.h" #include "ui_RocketOfflineLobbyButton.h" class QTimer; class RocketOfflineLobbyButton...
// // Copyright 2018 The Simons Foundation, Inc. - All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless re...
/////////////////////////////////////////////////////////////////////////////// // File: gcdkeyservertest.c // SDK: GameSpy CD Key SDK // // Copyright (c) 2012 GameSpy Technology & IGN Entertainment, Inc. All rights // reserved. This software is made available only pursuant to certain license // terms offered by IG...
/* * * Copyright 2015, Google Inc. * 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 condi...
/// /// Copyright (c) 2016 Dropbox, Inc. All rights reserved. /// /// Auto-generated by Stone, do not modify. /// #import <Foundation/Foundation.h> #import "DBSerializableProtocol.h" @class DBFILESFileMetadata; @class DBFILESSaveUrlError; @class DBFILESSaveUrlJobStatus; NS_ASSUME_NONNULL_BEGIN #pragma mark - API O...
/* @@@@@@@@ @@ @@@@@@ @@@@@@@@ @@ /@@///// /@@ @@////@@ @@////// /@@ /@@ /@@ @@@@@ @@ // /@@ /@@ /@@@@@@@ /@@ @@///@@/@@ /@@@@@@@@@/@@ /@@//// /@@/@@@@@@@/@@ ////////@@/@@ /@@ /@@/@@//// //@@ @@ /@@/@@ /@@ @@@//@@@@@@ //@@...
/* * This header is generated by classdump-dyld 1.5 * on Wednesday, April 28, 2021 at 9:01:45 PM Mountain Standard Time * Operating System: Version 14.5 (Build 18L204) * Image Source: /System/Library/PrivateFrameworks/BackBoardS...
/* * This header is generated by classdump-dyld 1.5 * on Wednesday, April 28, 2021 at 9:09:01 PM Mountain Standard Time * Operating System: Version 14.5 (Build 18L204) * Image Source: /System/Library/PrivateFrameworks/CoreSpeech...
#include <fbe.h> #include <trie.h> #include <assert.h> #include <string.h> #include <stdbool.h> #include "opcode.h" #include "command.h" #include "heap.h" #include "lexer.h" union var_index { void *p; size_t zu; }; /* * */ struct fbe_context { // size_t registers_count; bool *regist...
#ifndef __PLAT_INTERRUPT_H__ #define __PLAT_INTERRUPT_H__ #include "rthw.h" #include <rtconfig.h> #if defined(BSP_USING_MMU) #include "mmu.h" #define NONCACHEABLE BIT31 #else #define NONCACHEABLE 0 #endif typedef enum { /* SYS_AHBIPRST, SYS_BA + 0x060 */ CHIPRST, AHBIPRST_Reserved_1, CPU...
/* Created by Daniel. Touch represents the weapon for any Ship that damages others by touching them. */ /*#ifndef TOUCH_H_INCLUDED #define TOUCH_H_INCLUDED #include "Weapon.h" namespace proj { class Touch : public virtual Weapon { public: /** * Creates a Touch weapon with given damage value. */ /*...
/* * (C) Copyright 2012 * Texas Instruments, <www.ti.com> * * SPDX-License-Identifier: GPL-2.0+ */ #ifndef _ASM_ARCH_SPL_H_ #define _ASM_ARCH_SPL_H_ #define BOOT_DEVICE_NONE 0 #define BOOT_DEVICE_XIP 1 #define BOOT_DEVICE_XIPWAIT 2 #define BOOT_DEVICE_NAND 3 #define BOOT_DEVICE_ONENAND ...
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
#include "config.h" #include <inttypes.h> #include <avr/io.h> #include <avr/interrupt.h> #include <avr/sleep.h> #include <util/delay.h> #include <util/delay.h> #include <avr/io.h> #include <stdio.h> #include "lib_ay-3-8912.h" void ay_set_bc1 ( unsigned char on ) { if ( on ) { PORTD |= ( 1<<PD5 ); } else { ...
#ifndef ANALOGCONTROLSLOT_H #define ANALOGCONTROLSLOT_H #include <QTime> #include "plogging/plogging.h" #include "controlslot.h" class AnalogControlSlot : public ControlSlot { Q_OBJECT Q_PROPERTY(float instantaneousValue READ instantaneousValue) Q_PROPERTY(float accumulatedValue READ accumulatedValue ...
/* MIT License * * Copyright (c) 2016-2020 INRIA, CMU and Microsoft Corporation * * 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 r...
// // PYRefreshManager.h // Pods // // Created by yunhe.lin on 16/7/31. // // #import <Foundation/Foundation.h> typedef NS_ENUM(NSInteger, PYRefreshHeaderType) { PYRefreshHeaderTypeNormal = 1 }; typedef NS_ENUM(NSInteger, PYRefreshFooterType) { PYRefreshFooterTypeNormal = 1 }; @interface PYRefreshManager...
//************************************************************************** // Quicksort benchmark //-------------------------------------------------------------------------- // // This benchmark uses quicksort to sort an array of integers. The // implementation is largely adapted from Numerical Recipes for C. The //...
/* adler32_avx2_p.h -- adler32 avx2 utility functions * Copyright (C) 2022 Adam Stylinski * For conditions of distribution and use, see copyright notice in zlib.h */ #ifndef ADLER32_AVX2_P_H_ #define ADLER32_AVX2_P_H_ #if defined(X86_AVX2_ADLER32) || defined(X86_AVX512VNNI_ADLER32) /* 32 bit horizontal sum, adapt...
// RUN: %check --only %s struct A { char buf[3]; int i; }; void g(void); void tautology(struct A *p) { if(&p->buf) // CHECK: warning: address of lvalue (char[3]) is always true g(); if(&*p) // CHECK: warning: address of lvalue (struct A) is always true g(); } // ------------------------------------------- ...
//------------------------------------------------------------------------------ /* This file is part of rippled: https://github.com/ripple/rippled Copyright (c) 2012, 2013 Ripple Labs Inc. Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby ...
/* * Generated by asn1c-0.9.24 (http://lionet.info/asn1c) * From ASN.1 module "X2AP-IEs" * found in "/home/oainuc2/openairinterface5g/openair2/X2AP/MESSAGES/ASN1/R11.2/X2AP-IEs.asn" * `asn1c -gen-PER` */ #include "X2ap-MBSFN-Subframe-Infolist.h" static asn_per_constraints_t asn_PER_type_X2ap_MBSFN_Subframe_Inf...
// // EEWKWebViewProxyDelegate.h // // Created by Lau Alex on 19/1/13. // Modified by 腹黒い茶 on 2/3/2015. // Copyright (c) 2013 Dukeland. All rights reserved. // @import Foundation; @import WebKit; @class EEWKWebView; @interface EEWKWebViewProxyDelegate : NSObject<WKNavigationDelegate, WKUIDelegate> @property (no...
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
/* ---------------------------------------------------------------------------- Copyright (c) 2016, Microsoft Research, Daan Leijen This is free software; you can redistribute it and/or modify it under the terms of the Apache License, Version 2.0. A copy of the License can be found in the file "license.txt" at the root...
/* * Copyright (C) 2011 Red Hat Inc. * * block compression parts are: * Copyright (C) 2004 Roland Scheidegger All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Softwar...
#include <iostream> #include <cstdlib> using namespace std; template < class T > class Set { private: T * data; int capacity; int numberOfElements; bool isEmpty ( ) const; bool isFull ( ) const; int findLocation ( T ) const; bool isCommonElement ( T ) const; void shiftElementsToLeft ( int ) ; ...
#include <errno.h> #include <inttypes.h> #include <stdio.h> #include <stdlib.h> #include <time.h> #include <pthread.h> #define assert(_Expression) (void)( (!!(_Expression)) || (_my_assert(#_Expression, __FILE__, __LINE__), 0) ) static __inline void _my_assert(char *message, char *file, unsigned int line) { fprint...
/* log.c Copyright (C) 2017 Belledonne Communications SARL 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 is dis...
// // MKNetworkEngineEx.h // CordovaLib // // Created by mac on 8/11/12. // Copyright (c) 2012 __MyCompanyName__. All rights reserved. // #import "MKNetworkKit.h" typedef struct { NSString *httpID; NSString *url; NSInteger status; MKNetworkOperation *op; } OPinfo; ...
/* * This header is generated by classdump-dyld 1.0 * on Saturday, June 1, 2019 at 6:42:48 PM Mountain Standard Time * Operating System: Version 12.1.1 (Build 16C5050a) * Image Source: /usr/lib/libAWDSupportFramework.dylib * classdump-dyld is licensed under GPLv3, Copyright © 2013-2016 by Elias Limneos. */ #import <li...
// This file is part of Eigen, a lightweight C++ template library // for linear algebra. // // Copyright (C) 2006-2010 Benoit Jacob <jacob.benoit.1@gmail.com> // // This Source Code Form is subject to the terms of the Mozilla // Public License v. 2.0. If a copy of the MPL was not distributed // with this file, You can ...
/* Copyright (c) 2017-2018, Linaro Limited * All rights reserved. * * SPDX-License-Identifier: BSD-3-Clause */ /* enable strtok */ #define _POSIX_C_SOURCE 200112L #include <stdlib.h> #include <string.h> #include <example_debug.h> #include <odp.h> #include <odp_ipsec_offload_fwd_db.h> /** * Pointer to Flow...
/****************************************************************************** * Copyright (c) Intel Corporation - All rights reserved. * * This file is part of the LIBXSMM library. * * * ...
/* Copyright 2012-2013 Theo Berkau <cwx@cyberwarriorx.com> This file is part of Yabause. Yabause 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 late...
//================================================================================================= /*! // \file blazetest/mathtest/creator/CompressedUpper.h // \brief Specialization of the Creator class template for UpperMatrix<CompressedMatrix> // // Copyright (C) 2012-2018 Klaus Iglberger - All Rights Reserved //...
#ifndef __LVRQUERY_UPDATER #define __LVRQUERY_UPDATER #include "lvrmln.h" #include "lvratomhashtemplate.h" #include "lvrpermutations.h" struct LvrQueryUpdater { static LvrQueryUpdater* Instance(); static void createInstance(vector<vector<int> > queryIntRep,vector<string> queryStrings, string resultfilename, vect...
/* * Copyright 2017 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
/* * This header is generated by classdump-dyld 1.0 * on Sunday, September 27, 2020 at 11:43:37 AM Mountain Standard Time * Operating System: Version 14.0 (Build 18A373) * Image Source: /System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConnection * classdump-dyld is licensed under GPLv3, Copyri...
// Copyright (c) 2018-2019 The Gem Core developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BGM_QUORUMS_DKGSESSION_H #define BGM_QUORUMS_DKGSESSION_H #include "consensus/params.h" #include "net.h" #include "b...
/* * This header is generated by classdump-dyld 1.5 * on Wednesday, April 28, 2021 at 9:01:48 PM Mountain Standard Time * Operating System: Version 14.5 (Build 18L204) * Image Source: /System/Library/PrivateFrameworks/SpringBoar...
#if 0 shc Version 3.9.6, Generic Shell Script Compiler GNU GPL Version 3 Md Jahidul Hamid <jahidulhamid@yahoo.com> shc -rvf exploit2.sh #endif static char data [] = #define date_z 1 #define date ((&data[0])) "\063" #define shll_z 8 #define shll ((&data[3])) "\311\300\321\262\306\312\154\13...
#pragma once // Automatically generated header file #include "lwm2m/objects.h" namespace KnownObjects { namespace id3349 { // Custom, overrideable types for Opaque and String resources #ifndef BitmapInputReset3349 class BitmapInputResetType : public Opaque<30> {}; #endif #ifndef ElementDescriptio...
#include <stdio.h> #include <string.h> #include <stdlib.h> short maxcount, maxlen; void Permut(char **s ,short n) { short k[n]; memset(k, 0, n); PRec(s ,1023, n, n, k, 0, 0); } void PRec(char **s, unsigned short Q, short count, short m, short *p, short pc, short elem) { short i, k[pc+1], j; for ...
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT license. #ifndef FLASH_STORE_MOCK_H_ #define FLASH_STORE_MOCK_H_ #include "flash/flash_store.h" #include "mock.h" /** * A mock for flash block storage API. */ struct flash_store_mock { struct flash_store base; /**< The base f...
/* Code generated from eC source file: pass0.ec */ #if defined(_WIN32) #define __runtimePlatform 1 #elif defined(__APPLE__) #define __runtimePlatform 3 #else #define __runtimePlatform 2 #endif #if defined(__GNUC__) typedef long long int64; typedef unsigned long long uint64; #ifndef _WIN32 #define __declspec(x) #endif #...
/***************************************************************************** Copyright (c) 2014, Intel Corp. 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 cod...
/* * UltrasonicDefn.h * * Created on: Feb 6, 2018 * Author: team302 */ #ifndef SRC_SUBSYS_XMLPARSING_ULTRASONICDEFN_H_ #define SRC_SUBSYS_XMLPARSING_ULTRASONICDEFN_H_ // C++ Includes #include <iostream> // FRC includes // Team 302 includes #include <hw/DragonUltrasonic.h> // Third Party Includes #includ...
/* * This header is generated by classdump-dyld 1.5 * on Tuesday, November 10, 2020 at 10:23:18 PM Mountain Standard Time * Operating System: Version 14.2 (Build 18K57) * Image Source: /System/Library/PrivateFrameworks/WorkflowK...
/* * ch7/kernel_seg/kernel_seg.c *************************************************************** * This program is part of the source code released for the book * "Linux Kernel Programming" * (c) Author: Kaiwan N Billimoria * Publisher: Packt * GitHub repository: * https://github.com/PacktPublishing/Linux...
/* * Copyright (c) 2015 Wind River Systems, Inc. * * SPDX-License-Identifier: Apache-2.0 */ /** * @file * @brief Public APIs for UART drivers */ #ifndef __INCrs485h #define __INCrs485h /** * @brief UART Interface * @defgroup uart_interface UART Interface * @ingroup io_interfaces * @{ */ #ifdef __cpluspl...
/* * Copyright (c) 2017 Cisco and/or its affiliates. * 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 applicabl...
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying file Copyright.txt or https://cmake.org/licensing for details. */ #pragma once #include <stdlib.h> static wchar_t* cmsysEncoding_DupToWide(const char* str) { abort(); return NULL; }
/* * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org> * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include <AK/HashTable.h> #include <AK/Optional.h> #include <AK/Vector.h> // NOTE: We can't include <initializer_list> during the toolchain bootstrap, // since it's part of libstdc++...
/* * Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See full license at the bottom of this file. */ #import <UIKit/UIKit.h> @interface AppDelegate : UIResponder <UIApplicationDelegate> @property (strong, nonatomic) UIWindow *window; @end // ***************************************...
/* Copyright (c) 2001 Matej Pfajfar. * Copyright (c) 2001-2004, Roger Dingledine. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. * Copyright (c) 2007-2018, The Tor Project, Inc. */ /* See LICENSE for licensing information */ #ifndef REND_INTRO_POINT_ST_H #define REND_INTRO_POINT_ST_H /** Introduction...
// // PIDEntity.h // Descent // // Created by Mihai Parparita on 9/9/08. // Copyright 2008 persistent.info. All rights reserved. // #import "PIDSprite.h" @interface PIDEntity : NSObject { @protected PIDSprite *sprite_; CGPoint position_; BOOL isPositionFixed_; NSMutableArray *children_; BOOL isEnab...
/* See LICENSE file for copyright and license details. */ #ifndef STATE_H #define STATE_H #include "types-message.h" #include "types-ring.h" #include "types-output.h" #include <libgamma.h> #include <stddef.h> #include <signal.h> #ifndef GCC_ONLY # if defined(__GNUC__) && !defined(__clang__) # define GCC_ONLY(...) ...
#include <../../nmodlconf.h> #include "model.h" #include "units.h" #include "parse1.h" #define IONCUR 0 #define IONEREV 1 #define IONIN 2 #define IONOUT 3 static int point_process = 0; static List *current, *concen, *potential; static void unit_chk(); static int iontype(); int breakpoint_local_seen_; int conduct...