text stringlengths 9 948k |
|---|
/** @file
* Copyright (c) 2020-2021, Arm Limited or its affiliates. All rights reserved.
* SPDX-License-Identifier : Apache-2.0
* 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... |
/*
GWEN
Copyright (c) 2010 Facepunch Studios
See license in Gwen.h
*/
#pragma once
#ifndef GWEN_CONTROLS_LAYOUT_SPLITTER_H
#define GWEN_CONTROLS_LAYOUT_SPLITTER_H
#include "Gwen/Controls/Base.h"
namespace Gwen
{
namespace Controls
{
namespace Layout
{
class GWEN_EXPORT Splitter : public Base
{
... |
//
// Generated by class-dump 3.5 (64 bit).
//
// class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard.
//
#import "MSEventHandler.h"
@class MSBitmapEditInspectorViewController, MSBitmapMagicWandEditor, MSBitmapRectangleEditor, NSBezierPath, NSBitmapImageRep, NSCursor;
@interface MSBit... |
/********************************************************************/
/** Microsoft LAN Manager **/
/** Copyright(c) Microsoft Corp., 1990-1992 **/
/********************************************************************/
/* :ts=4 */
//** LLIPIF0.H - Lower ... |
/*
ChibiOS - Copyright (C) 2006..2015 Giovanni Di Sirio
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 ap... |
#pragma once
#include <library.h>
class CHal
{
public:
~CHal() = default;
virtual void SetPixel(int x, int y, uint16_t c) = 0;
virtual uint16_t GetPixel(int x, int y) = 0;
virtual bool IsRunning() = 0;
virtual char GetKey() = 0;
#ifdef LA104
// GPIO
virtual void UartSetup(int baudrate, BIOS... |
/*
* This header is generated by classdump-dyld 1.0
* on Saturday, August 24, 2019 at 9:46:47 PM Mountain Standard Time
* Operating System: Version 12.4 (Build 16M568)
* Image Source: /System/Library/PrivateFrameworks/NetAppsUtilitiesUI.framework/NetAppsUtilitiesUI
* classdump-dyld is licensed under GPLv3, Copyright © ... |
/*
* 'OpenSSL for Ruby' project
* Copyright (C) 2001 Michal Rokos <m.rokos@sh.cvut.cz>
* All rights reserved.
*/
/*
* This program is licensed under the same licence as Ruby.
* (See the file 'LICENCE'.)
*/
#include "ossl.h"
#define NewX509Name(klass) \
TypedData_Wrap_Struct((klass), &ossl_x509name_type, 0)
... |
#pragma once
#include "Networking.h"
class GridElement
{
public:
static GridElement NewProducer(uint32_t formId)
{
return GridElement(formId, true);
}
static GridElement NewConsumer(Networking::UserId userId)
{
return GridElement(userId, false);
}
bool IsProducer() const noexcept { return isPro... |
/*
Name - Nikhil Ranjan Nayak
Regd no - 1641012040
Desc - Cylinder containers calculator
*/
#include "stdio.h"
#define PI 3.14
void instruct();
double calculate(double ,double , double , double);
double area(double, double);
void main()
{
double radius, height, cost_per_square, quantity, total_cost, each_cost;
inst... |
/*
Implementation based on algorithm described in:
The cache performance and optimizations of blocked algorithms
M. D. Lam, E. E. Rothberg, and M. E. Wolf
ASPLOS 1991
*/
#include "gemm.h"
void bbgemm(TYPE m1[N], TYPE m2[N], TYPE prod[N]) {
int i, k, j, jj, kk;
int i_row, k_row;
TYPE temp_x, mul;
loopjj:
for ... |
/* ******************************************************************************
*
*
* This program and the accompanying materials are made available under the
* terms of the Apache License, Version 2.0 which is available at
* https://www.apache.org/licenses/LICENSE-2.0.
*
* See the NOTICE file distributed wit... |
/* TEMPLATE GENERATED TESTCASE FILE
Filename: CWE773_Missing_Reference_to_Active_File_Descriptor_or_Handle__open_53a.c
Label Definition File: CWE773_Missing_Reference_to_Active_File_Descriptor_or_Handle__open.label.xml
Template File: source-sinks-53a.tmpl.c
*/
/*
* @description
* CWE: 773 Missing Reference to Active ... |
/*
* File: genlib.h
* --------------
* This file contains several definitions that form the
* core of a general-purpose ANSI C library developed by Eric
* Roberts. The goal of this library is to provide a basic
* set of tools and coventions that increasse the readablility
* of C programs, particularly as they ar... |
#include <stdio.h>
#include <time.h>
struct
{
int a;
int b;
} s[5000];
int main(int argc, char **argv)
{
int ii, i, X1, X2;
int R[40000];
struct timespec cgt1,cgt2; double ncgt;
clock_gettime(CLOCK_REALTIME,&cgt1);
for (ii = 1; ii <= 40000; ii++)
{
X1 = 0; X2 = 0;
... |
#ifndef _BCRYPTO_COMPAT_HH
#define _BCRYPTO_COMPAT_HH
#include "openssl/opensslv.h"
#if OPENSSL_VERSION_NUMBER >= 0x1010008fL
#define BCRYPTO_HAS_DSA
#define BCRYPTO_HAS_RSA
#define BCRYPTO_HAS_ECDSA
#endif
#ifdef OPENSSL_IS_BORINGSSL
// BoringSSL uses a custom allocator.
// Switch to the regular libc allocator.
#de... |
/*********************************************************************************
* MIT License *
* *
* Copyright (c) 2021 Chenxi Zhou <chnx.zhou@gmail.com> ... |
/* Decode a Game Genie code into an M68000 address/data pair.
* The Game Genie code is made of the characters
* ABCDEFGHJKLMNPRSTVWXYZ0123456789 (notice the missing I, O, Q and U).
* Where A = 00000, B = 00001, C = 00010, ... , on to 9 = 11111.
*
* These come out to a very scrambled bit pattern like this:
* (SCRA... |
// Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2014 The Bitcoin developers
// Copyright (c) 2019 The YODA developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef BITCOIN_DB_H
#define BITCOIN_DB_H
#... |
/*
* Copyright (c) 2006 Michael Niedermayer <michaelni@gmx.at>
*
* This file is part of FFmpeg.
*
* FFmpeg 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.1 of the License, or... |
#include "homenet.h"
#include <string.h>
#include <stdlib.h>
#include <stdio.h>
uint32_t homenet_toi(const char * ip_addr){
char num_str[9];
char * octet = strtok(ip_addr,".");
while(octet != NULL){
sprintf(num_str + strlen(num_str),"%02x",atoi(octet));
octet = strtok(NULL,".");
}
return (uint32_t... |
/*
* Carsten Langgaard, carstenl@mips.com
* Copyright (C) 2000 MIPS Technologies, Inc. All rights reserved.
*
* This program is free software; you can distribute it and/or modify it
* under the terms of the GNU General Public License (Version 2) as
* published by the Free Software Foundation.
*
* This prog... |
// SPDX-License-Identifier: GPL-2.0
/*
* Test for x86 KVM_CAP_HYPERV_CPUID
*
* Copyright (C) 2018, Red Hat, Inc.
*
* This work is licensed under the terms of the GNU GPL, version 2.
*
*/
#define _GNU_SOURCE /* for program_invocation_short_name */
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#includ... |
#pragma once
#include "Hazel/Core.h"
#include "Hazel/Events/Event.h"
namespace Hazel {
class HAZEL_API Layer
{
public:
Layer(const std::string& name = "Layer");
virtual ~Layer();
virtual void OnAttach() {}
virtual void OnDetach() {}
virtual void OnUpdate() {}
virtual void OnImGuiRender(){}
virtual ... |
/* Definitions to target GDB to ARM embedded systems.
Copyright 1986, 1987, 1988, 1989, 1991, 1993, 1994, 1995, 1996, 1997,
1998, 1999, 2000 Free Software Foundation, Inc.
This file is part of GDB.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU Genera... |
/**
******************************************************************************
* @file stm32_hal_legacy.h
* @author MCD Application Team
* @brief This file contains aliases definition for the STM32Cube HAL constants
* macros and functions maintained for legacy purpose.
*******************... |
/*
* Generated by asn1c-0.9.29 (http://lionet.info/asn1c)
* From ASN.1 module "X2AP-IEs"
* found in "/home/user/openairinterface5g/openair2/X2AP/MESSAGES/ASN1/R14/x2ap-14.6.0.asn1"
* `asn1c -pdu=all -fcompound-names -fno-include-deps -gen-PER -no-gen-OER -no-gen-example -D /home/user/openairinterface5g/cmake_targ... |
int getchar();
int putchar(int c);
int main() {
char *s = "Hello, world!\n";
char *p;
for (p = s; p < s + 14; p++) putchar(*p);
return 0;
} |
#pragma once
#if defined(__GNUC__)
# define ATTR_UNUSED __attribute__((__unused__))
#else
# warning unsupported compiler: results may vary
# define ATTR_UNUSED
#endif |
/* ------------------------------------------------------------------
Copyright (c) 2019 Marc Toussaint
email: marc.toussaint@informatik.uni-stuttgart.de
This code is distributed under the MIT License.
Please see <root-path>/LICENSE for details.
----------------------------------------------------... |
/** Generated, do not edit ! */
#import <Foundation/Foundation.h>
extern short const kArsdkFeatureMinidroneRemotecontrollerstateUid;
struct arsdk_cmd;
@protocol ArsdkFeatureMinidroneRemotecontrollerstateCallback<NSObject>
@optional
/**
State of the connection to the remote controller changed.
- parameter stat... |
/*
* This header is generated by classdump-dyld 1.5
* on Wednesday, April 14, 2021 at 2:30:09 PM Mountain Standard Time
* Operating System: Version 14.4 (Build 18K802)
* Image Source: /System/Library/AccessibilityBundles/UIKit.a... |
// Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2016 The Bitcoin developers
// Copyright (c) 2016 The Viral developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef BITCOIN_DB_H
#define BITCOIN_DB_... |
// 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.
// Singly or Multiply-included shared traits file depending on circumstances.
// This allows the use of IPC serialization macros in more than one IPC ... |
/*******************************************************************************
*
* DO NOT EDIT THIS FILE!
* This file is auto-generated by fltg from
* INTERNAL/fltg/xgs/fp/bcm56990_b0/bcm56990_b0_FP_COMPRESSION_IP_PROTOCOL.map.ltl for
* bcm56990_b0
*
* Tool: $SDK/INTERNAL/fltg/bin/fltg
*
* Edits to t... |
#pragma once
#include "anim/PlayCtrl.h"
#include "anim/AnimTemplate.h"
#include <node0/typedef.h>
#include <memory>
#include <vector>
#include <functional>
namespace anim
{
class AnimInstance : boost::noncopyable
{
public:
AnimInstance(const std::shared_ptr<AnimTemplate>& anim_temp);
void Build();
bool Update... |
/* public domain, Simple, Minimalistic GIF writer - http://jonolick.com
*
* Quick Notes:
* Supports only 4 component input, alpha is currently ignored. (RGBX)
*
* Latest revisions:
* 1.00 (2015-11-03) initial release
*
* Basic usage:
* char *frame = new char[128*128*4]; // 4 component. RGBX format, where X i... |
/*
* Simple RTDM demo that generates a running light on your PC keyboard
* or on a BF537-STAMP board.
* Copyright (C) 2005-2007 Jan Kiszka <jan.kiszka@web.de>
*
* 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... |
#include "chip8/defs.h"
#include "logger.h"
int opcode_D(const uint16_t opcode, chip8_system_t *c8)
{
byte_t x = c8->V[(opcode & 0x0F00) >> 8];
byte_t y = c8->V[(opcode & 0x00F0) >> 4];
byte_t height = opcode & 0x000F;
byte_t pixel;
c8->V[0xF] = 0;
for (byte_t yl = 0; yl < height; ++yl) { // i... |
#ifndef _SPARC_SYSEN_H
#define _SPARC_SYSEN_H
/* sysen.h: Bit fields within the "System Enable" register accessed via
the ASI_CONTROL address space at address AC_SYSENABLE.
Copyright (C) 1994 David S. Miller (davem@caip.rutgers.edu)
*/
#define SENABLE_DVMA 0x20 /* enable dvma transfers */
#defin... |
/* DirectMusicBand Main
*
* Copyright (C) 2003-2004 Rok Mandeljc
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any late... |
//////////////////////////////////////////////////////////////////////////////
//
// Copyright 2015 Autodesk, Inc. All rights reserved.
//
// Use of this software is subject to the terms of the Autodesk license
// agreement provided at the time of installation or download, or which
// otherwise accompanies this ... |
@import UIKit;
#import "RCTBridgeModule.h"
#import <PushKit/PushKit.h>
@interface RNNotifications : NSObject <RCTBridgeModule>
+ (void)didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken;
+ (void)didFailToRegisterForRemoteNotificationsWithError:(NSError *)error;
+ (void)didRegisterUserNotification... |
/****************************************************************************
*
* (c) 2009-2020 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
*
* QGroundControl is licensed according to the terms in the file
* COPYING.md in the root of the source code directory.
*
***************************************... |
/*
* Copyright (C) 2010 Alexey Charkov <alchark@gmail.com>
*
* Based on msm_serial.c, which is:
* Copyright (C) 2007 Google, Inc.
* Author: Robert Love <rlove@google.com>
*
* This software is licensed under the terms of the GNU General Public
* License version 2, as published by the Free Software Foundation, an... |
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
#pragma once
#include "config.h"
#include "bond_fwd.h"
#include "detail/mpl.h"
#include "scalar_interface.h"
#include <boost/type_traits/has_nothrow_copy.hpp>
#include... |
#ifndef ROWS_DELAY_RISKINESS_CONSTRAINT_H
#define ROWS_DELAY_RISKINESS_CONSTRAINT_H
#include <ortools/constraint_solver/routing.h>
#include <ortools/constraint_solver/constraint_solveri.h>
#include "delay_constraint.h"
#include "delay_tracker.h"
#include "failed_index_repository.h"
namespace rows {
class DelayR... |
/* Generated by Nim Compiler v1.0.11 */
/* (c) 2019 Andreas Rumpf */
/* The generated code is subject to the original license. */
#define NIM_INTBITS 32
#include "nimbase.h"
#include <string.h>
#undef LANGUAGE_C
#undef MIPSEB
#undef MIPSEL
#undef PPC
#undef R3000
#undef R4000
#undef i386
#undef linux
#undef mips
#un... |
/*
* Copyright (c) 2006-2021, RT-Thread Development Team
*
* SPDX-License-Identifier: Apache-2.0
*
* Change Logs:
*
*/
/*
* 程序清单:消息队列例程
*
* 这个程序会创建3个动态线程,一个线程会从消息队列中收取消息;一个线程会定时给消
* 息队列发送消息;一个线程会定时给消息队列发送紧急消息。
*/
#include <rtthread.h>
#include "tc_comm.h"
/* 指向线程控制块的指针 */
static rt_thread_t tid = RT_NULL;... |
/*-------------------------------------------------------------------------
STM8AL3LE88.h - Device Declarations
STM8L/STM8AL, high/medium+ density with ROM bootloader
Copyright (C) 2020, Georg Icking-Konert
Automotive 8-bit ultra-low-power MCU with 64 Kbytes Flash, LIN, RTC, LCD, data EEPROM, timers, USARTs... |
#ifndef __sitkMattesMutualInformationMetric_h
#define __sitkMattesMutualInformationMetric_h
#include "sitkMacro.h"
#include "sitkDetail.h"
#include "sitkImage.h"
#include "sitkPixelIDTokens.h"
#include "sitkMetric.h"
#include "itkMattesMutualInformationImageToImageMetric.h"
#include "sitkMemberFunctionFactory.h"
#in... |
#include "pool.h"
#include <stdlib.h>
struct rrPool {
rr_pool_create_func create_func;
rr_pool_reset_func reset_func;
rr_pool_destroy_func destroy_func;
void* user_data;
cutil_vector* reserve;
};
rrPool* rr_pool_create(rr_pool_create_func create_func, rr_pool_reset_func reset_func, rr_pool_destro... |
/*
* This header is generated by classdump-dyld 1.5
* on Wednesday, October 27, 2021 at 3:23:45 PM Mountain Standard Time
* Operating System: Version 13.5.1 (Build 17F80)
* Image Source: /System/Library/PrivateFrameworks/SpringB... |
// This code contains NVIDIA Confidential Information and is disclosed to you
// under a form of NVIDIA software license agreement provided separately to you.
//
// Notice
// NVIDIA Corporation and its licensors retain all intellectual property and
// proprietary rights in and to this software and related documentation... |
/*
* Copyright (c) 2015 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... |
//
// Generated by class-dump 3.5 (64 bit).
//
// class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard.
//
@import Foundation;
@class NSMutableArray;
@interface DVTExtraXMLArchiveData : NSObject
{
NSMutableArray *_mutableAttributes;
NSMutableArray *_mutableElements;
}
@propert... |
/** @file
Legacy Master Boot Record Format Definition.
Copyright (c) 2006 - 2008, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
which accompanies this distrib... |
/*
* Copyright (c) 2019, NVIDIA CORPORATION. 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 requir... |
#pragma once
#include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <stdint.h>
// System.IO.BinaryReader
struct BinaryReader_t2158806251;
// System.Object
struct Il2CppObject;
// System.Runtime.Serialization.IFormatter
struct IFormatter_t2688329594;
// System.St... |
#ifndef FRC971_CONTROL_LOOPS_DRIVETRAIN_DRIVETRAIN_Q_H_
#define FRC971_CONTROL_LOOPS_DRIVETRAIN_DRIVETRAIN_Q_H_
#include <array>
#include "aos/macros.h"
namespace frc971 {
namespace control_loops {
struct GearLogging {
GearLogging();
void Zero();
int8_t controller_index;
bool left_loop_high;
bool right_loo... |
/** @file
Implementation of Watchdog Timer Architectural Protocol using UEFI APIs.
Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include "WatchdogTimer.h"
//
// Handle for the Watchdog Timer Architectural Protocol instance produced by this... |
#include "clar_libgit2.h"
#include "buffer.h"
#include "posix.h"
#include "vector.h"
#include "../submodule/submodule_helpers.h"
#include "push_util.h"
#include "refspec.h"
#include "remote.h"
static git_repository *_repo;
static char *_remote_url = NULL;
static char *_remote_user = NULL;
static char *_remote_pass =... |
/*
* Do not modify this file; it is automatically
* generated and any modifications will be overwritten.
*
* @(#) xdc-A46
*/
#ifndef xdc_runtime_knl_Cache__INTERNAL__
#define xdc_runtime_knl_Cache__INTERNAL__
#ifndef xdc_runtime_knl_Cache__internalaccess
#define xdc_runtime_knl_Cache__internalaccess
#endif
#... |
#ifndef _SPIRAM_H_
#define _SPIRAM_H_
#ifdef __cplusplus
extern "C"
{
#endif
#define SPIRAMSIZE (128*1024) //for a 23LC1024 chip
//Define this to use the SPI RAM in QSPI mode. This mode theoretically improves
//the bandwith to the chip four-fold, but it needs all 4 SDIO pins connected. It's
//disabled here because ... |
// 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 UI_VIEWS_CONTROLS_BUTTON_CHECKBOX_H_
#define UI_VIEWS_CONTROLS_BUTTON_CHECKBOX_H_
#include <memory>
#include <string>
#include "base/compile... |
#pragma once
#include "il2cpp.h"
void Dpr_UI_ShopBoutique___c__DisplayClass21_0___ctor (Dpr_UI_ShopBoutique___c__DisplayClass21_0_o* __this, const MethodInfo* method_info);
void Dpr_UI_ShopBoutique___c__DisplayClass21_0___SetupModelView_b__0 (Dpr_UI_ShopBoutique___c__DisplayClass21_0_o* __this, Dpr_UI_CharacterModelV... |
// Copyright (c) 2013, Kenton Varda <temporal@gmail.com>
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
// 1. Redistributions of source code must retain the above copyright notice, this
//... |
/*
* This header is generated by classdump-dyld 1.0
* on Tuesday, November 5, 2019 at 2:45:43 AM Mountain Standard Time
* Operating System: Version 13.0 (Build 17J586)
* Image Source: /System/Library/PrivateFrameworks/Transparency.framework/Transparency
* classdump-dyld is licensed under GPLv3, Copyright © 2013-2016 by... |
//
// touch.c
// Codea
//
// Created by Simeon Nasilowski on 25/09/11.
//
// Copyright 2012 Two Lives Left Pty. Ltd.
//
// 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
//
// ht... |
/* YAMLGetField.h
* get field from YAML config node and replace "${today}" token to today_str variable
*
* Usage:
* Given a YAML config file
* ```yaml
* Count: 42
* Price: 10.43
* SomeFile: Data/${today}/some.csv
* ```
*
* load with yaml-cpp lib
* ```cpp
* YAML::Node config = YAML::LoadFile(conf_file);
*... |
/*******************************************************************************
PORT PLIB
Company:
Microchip Technology Inc.
File Name:
plib_port.c
Summary:
Interface definition of PORT PLIB
Description:
This file provides an interface to control and interact with PORT-I/O
Pin control... |
/*
* This header is generated by classdump-dyld 1.0
* on Wednesday, March 22, 2017 at 9:05:21 AM Mountain Standard Time
* Operating System: Version 10.1 (Build 14U593)
* Image Source: /System/Library/PrivateFrameworks/ContactsAutocomplete.framework/ContactsAutocomplete
* classdump-dyld is licensed under GPLv3, Copyrigh... |
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/devops-guru/DevOpsGuru_EXPORTS.h>
#include <aws/devops-guru/DevOpsGuruErrors.h>
#include <aws/core/client/AWSError.h>
#include <aws/core/client/ClientConfiguration.h>
#inclu... |
/*
* All or portions of this file Copyright (c) Amazon.com, Inc. or its affiliates or
* its licensors.
*
* For complete copyright and license terms please see the LICENSE at the root of this
* distribution (the "License"). All use of this software is governed by the License,
* or, if provided, by the license below or t... |
/* float.c -- float environment functions.
$Id: float.c,v 1.1.1.1 2006/07/17 16:03:46 espie Exp $
Copyright (C) 2003, 2004 Free Software Foundation, Inc.
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 So... |
/*
* This header is generated by classdump-dyld 1.5
* on Friday, April 30, 2021 at 11:36:52 AM Mountain Standard Time
* Operating System: Version 13.5.1 (Build 17F80)
* Image Source: /System/Library/PrivateFrameworks/ManagedConf... |
/*
* This file is part of the WebKit open source project.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later ve... |
/******************************************************************************
Include file MPC_AVC_implementation_usr.c:
Definition of functions for user-defined initialization,
system I/O, and background process code.
RTI1005 6.2 (14-Nov-2008)
Wed Mar 02 14:07:24 2016
(c) Copyright 2008, dSPACE... |
#ifdef FROM_CPP
extern "C" {
#else
typedef struct CbcModel CbcModel;
#endif
CbcModel* newModel();
void freeModel(CbcModel* model);
void loadProblem(CbcModel* model, int ncols, int nrows,
int* starts, int* indices, double* values,
double* collb, double* colub,
... |
/*
* Copyright 2020 Ke Sun
*
* Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
*
* 2. ... |
/*=========================================================================
Program: ALBA (Agile Library for Biomedical Applications)
Module: albaOpMML3
Authors: Mel Krokos, Nigel McFarlane
Copyright (c) BIC
All rights reserved. See Copyright.txt or
This software is distributed WITHOUT ANY WARRANTY; without ... |
//! \file mgaction.h
//! \brief 定义上下文动作接口 MgActionDispatcher
// Copyright (c) 2004-2012, Zhang Yungui
// License: LGPL, https://github.com/rhcad/touchvg
#ifndef __GEOMETRY_MGACTION_H_
#define __GEOMETRY_MGACTION_H_
//! 默认上下文动作
typedef enum {
kMgActionInvalid,
kMgActionSelAll, //!< 全选
kMgActionS... |
//
// UIView+CornerRadius.h
//
//
// Created by 兵伍 on 2019/3/26.
// Copyright © 2019年 兵伍. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface UIView(CornerRadius)
- (void)ext_setCorner:(UIRectCorner)corner radius:(NSInteger)radius;
- (void)ext_setCorner:(UIRectCorner)corner radius:(NSInteger)radius bounds:... |
//=========================================================================
// Copyright (C) 2012 The Elastos Open Source Project
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// ... |
#pragma once
//#include <Engine/Renderer/Texture.h>
namespace FakeReal {
class SceneMap;
class Object;
class Actor;
class Node;
//class TextureFilePanel;
class SceneHierarchyPanel
{
public:
SceneHierarchyPanel();
~SceneHierarchyPanel();
void OnImguiRender();
void SetContext(SceneMap* pContext);
void... |
#pragma once
#include <map>
#include <d3d.h>
#include <d3dnthal.h>
#include <d3dumddi.h>
namespace D3dDdi
{
class Adapter
{
public:
Adapter(const D3DDDIARG_OPENADAPTER& data);
Adapter(const Adapter&) = delete;
Adapter(Adapter&&) = delete;
Adapter& operator=(const Adapter&) = delete;
Adapter& operator=(A... |
/*
** Copyright (C) 1998-2013 George Tzanetakis <gtzan@cs.uvic.ca>
**
** 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... |
//
// Generated by class-dump 3.5 (64 bit) (Debug version compiled Sep 17 2017 16:24:48).
//
// class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2015 by Steve Nygard.
//
#import "WXPBGeneratedMessage.h"
@class BaseRequest, NSString;
@interface DelContactLabelRequest : WXPBGeneratedMessage
{
}
+ (void)... |
/*
* Copyright 2016 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... |
/* SPDX-License-Identifier: BSD-3-Clause
* Copyright(c) 2010-2016 Intel Corporation
*/
#include <string.h>
#include "test_table_combined.h"
#include "test_table.h"
#include <rte_table_lpm_ipv6.h>
#define MAX_TEST_KEYS 128
#define N_PACKETS 50
enum check_table_result {
CHECK_TABLE_OK,
CHECK_TABLE_PORT_CONFIG,
CH... |
/*
* vga.h
*
* This file is subject to the terms and conditions of the GNU General Public
* License. See the file COPYING in the main directory of this archive
* for more details.
*/
#ifndef _XEN_VGA_H
#define _XEN_VGA_H
#include <xen/video.h>
#ifdef CONFIG_VGA
extern struct xen_vga_console_info vga_conso... |
/*
* Generated by asn1c-0.9.29 (http://lionet.info/asn1c)
* From ASN.1 module "EUTRA-RRC-Definitions"
* found in "/home/user/openairinterface5g/openair2/RRC/LTE/MESSAGES/asn1c/ASN1_files/lte-rrc-14.7.0.asn1"
* `asn1c -pdu=all -fcompound-names -gen-PER -no-gen-OER -no-gen-example -D /home/user/openairinterface5g/c... |
/*
* comm.c:
* Communication routines "platform specific" for Up-Board computer
*
* Copyright (c) 2016-2018 Sequent Microsystem
* <http://www.sequentmicrosystem.com>
***********************************************************************
* Author: Alexandru Burcea
**********************************************... |
// This may look like C code, but it is really -*- C++ -*-
/*
Copyright (C) 1988 Free Software Foundation
written by Doug Lea (dl@rocky.oswego.edu)
This file is part of the GNU C++ Library. This library is free
software; you can redistribute it and/or modify it under the terms of
the GNU Library General Public L... |
#include <ansi.h>
inherit CLASS_D("generate") + "/boss";
void random_move();
void do_swing();
void set_from_me(object me);
void create()
{
string *names = ({ "青銅猛獁" });
::create();
set_name( names[random(sizeof(names))], ({ "mammoth bronze", "mammoth", "bronze" }));
set("long", @LONG
這... |
/*-
* Copyright (c) 2005 Doug Rabson
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditi... |
#ifndef GL2VERTEXBUFFER_H
#define GL2VERTEXBUFFER_H
#include "3d.h"
#include "ivertexbuffer.h"
#include "gl2.h"
class GL2VertexBuffer : public IVertexBuffer
{
public:
GL2VertexBuffer();
virtual ~GL2VertexBuffer();
virtual void Init( const SInit& InitStruct );
virtual void* GetPositions();
virtual void* GetC... |
//
// Created by chokearth on 8/2/21.
//
#pragma once
#include <glad/glad.h>
#include <fstream>
#include <iostream>
#include <cstring>
// Load a file to a char array
void load_file(char ** charBuffer, const char *path);
std::string get_file_contents(const char* filename);
// Compile a shader
void compile_shader(GLui... |
/**HEADER********************************************************************
*
* Copyright (c) 2008 Freescale Semiconductor;
* All Rights Reserved
*
***************************************************************************
*
* THIS SOFTWARE IS PROVIDED BY FREESCALE "AS IS" AND ANY EXPRESSED OR
* IMPLIED WARRANTIE... |
/* Generated by RuntimeBrowser
Image: /System/Library/PrivateFrameworks/SAObjects.framework/SAObjects
*/
@interface SALocalSearchRating : AceObject <SAAceSerializable>
@property (nonatomic) long long count;
@property (readonly, copy) NSString *debugDescription;
@property (readonly, copy) NSString *description;
@p... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.