text stringlengths 9 948k |
|---|
/* Scanning of rtl for dataflow analysis.
Copyright (C) 1999-2017 Free Software Foundation, Inc.
Originally contributed by Michael P. Hayes
(m.hayes@elec.canterbury.ac.nz, mhayes@redhat.com)
Major rewrite contributed by Danny Berlin (dberlin@dberlin.org)
and Kenneth Zadeck (zadeck@nat... |
/**
* @file GaussianDistribution.h
*
* Definition of class GaussianDistribution
*
* @author <a href="mailto:timlaue@informatik.uni-bremen.de">Tim Laue</a>
*/
#pragma once
#include "Vector2.h"
/**
* @class GaussianDistribution
* Represents a 1-dimensional normal distribution
*/
class GaussianDistribution
{
public:
... |
#ifdef __OBJC__
#import <UIKit/UIKit.h>
#else
#ifndef FOUNDATION_EXPORT
#if defined(__cplusplus)
#define FOUNDATION_EXPORT extern "C"
#else
#define FOUNDATION_EXPORT extern
#endif
#endif
#endif
FOUNDATION_EXPORT double Pods_XKUtil_TestsVersionNumber;
FOUNDATION_EXPORT const unsigned char Pods_XKUtil_TestsVersionStrin... |
#ifdef INCLUDE_INTERNET_MODULE
EXTERN InternetModule Internet;
#endif
#ifdef INCLUDE_TERMINAL_MODULE
EXTERN TerminalModule Terminal;
#endif
#ifdef INCLUDE_DABBLEINPUTS_MODULE
EXTERN DabbleInputs Inputs;
#endif
#ifdef INCLUDE_MOTORCONTROL_MODULE
EXTERN motorControls Controls;
#endif
#ifdef INCLUDE_GAMEPAD_MODULE
EXT... |
// Copyright (c) 2011-2016 The PlanBcoin developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef BITCOIN_QT_RECEIVEREQUESTDIALOG_H
#define BITCOIN_QT_RECEIVEREQUESTDIALOG_H
#include "walletmodel.h"
#include <QDialog... |
/*
COPYRIGHT 2015 ESRI
TRADE SECRETS: ESRI PROPRIETARY AND CONFIDENTIAL
Unpublished material - all rights reserved under the
Copyright Laws of the United States and applicable international
laws, treaties, and conventions.
For additional information, contact:
Environmental Systems Research Institute, Inc.
A... |
//
// Copyright 2019 The Abseil Authors.
//
// 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
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or... |
#ifndef __MCX_LIBMODULES_AWEBSERVER_HEADER__
#define __MCX_LIBMODULES_AWEBSERVER_HEADER__
#include <AFileServer.h>
#include <AModule.h>
#include <AUpdateServer.h>
#include <ESPAsyncWebServer.h>
#include <SafeMode.h>
#include <compat.h>
#include <memory>
class AWebServer;
// typedef void (*AWebServerFunc)(AsyncWebSe... |
/************************************************************************************
* arch/arm/src/sam34/sam4l_periphclks.h
*
* Copyright (C) 2013 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
*
* Redistribution and use in source and binary forms, with or without
* modificatio... |
/*-
* Copyright (c) 1996 - 2001 Brian Somers <brian@Awfulhak.org>
* based on work by Toshiharu OHNO <tony-o@iij.ad.jp>
* Internet Initiative Japan, Inc (IIJ)
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permit... |
// SPDX-License-Identifier: BSD-3-Clause
// Copyright (c) 2020-2021, The Monero Project.
#ifndef FEATHER_NODEMODEL_H
#define FEATHER_NODEMODEL_H
#include <QAbstractTableModel>
#include <QIcon>
class FeatherNode;
class NodeModel : public QAbstractTableModel {
Q_OBJECT
public:
enum ModelColumn {
URL,... |
#include <stdio.h>
#include <stdlib.h>
int main(void)
{
// Variables declaration
int n, sum = 0;
// Assigns the input to the corresponding variable
scanf("%d", &n);
// Allocates the necessary memory bytes for the array (n * 4 bytes)
int *arr = (int *)malloc(n * sizeof(int));
// Loop from 0 to n - 1
for (int... |
/*
==== Author:
Relja Arandjelovic (relja@robots.ox.ac.uk)
Visual Geometry Group,
Department of Engineering Science
University of Oxford
==== Copyright:
The library belongs to Relja Arandjelovic and the University of Oxford.
No usage or redistribution is allowed without explicit permission.
*/
#ifndef _DESC_FROM_FV... |
/****************************************************************************
*
* Copyright 2016 Samsung Electronics 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... |
//===- Builders.h - MLIR Declarative Builder Classes ------------*- C++ -*-===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===---------------------------... |
// Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2019 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 BITCOINRELOAD_UTIL_FEES_H
#define BITCOINRELOAD_UTIL_FEES_H
#include <str... |
/*
* Copyright 2014 Henri Verbeet for CodeWeavers
*
* 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.1 of the License, or (at your option) any later version.
*
*... |
// Copyright (c) 2012-2013, the Scal Project Authors. All rights reserved.
// Please see the AUTHORS file for details. Use of this source code is governed
// by a BSD license that can be found in the LICENSE file.
// Implementing the wait-free queue from:
//
// A. Kogan and E. Petrank. A methodology for creating fas... |
/*++
Copyright (c) 2007, Intel Corporation
All rights reserved. This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
which accompanies this distribution. ... |
#ifndef UTILS_EXCEPTIONS_H
#define UTILS_EXCEPTIONS_H
namespace utils {
// Base class for custom exception types.
class Exception {
public:
virtual ~Exception() = default;
virtual void print() const = 0;
};
}
#endif |
/*
* Copyright 2010-2017 Amazon.com, Inc. or its affiliates. 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.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" fil... |
/* cgbp.h
*
* Copyright (c) 2018, mar77i <mar77i at protonmail dot ch>
*
* This software may be modified and distributed under the terms
* of the ISC license. See the LICENSE file for details.
*/
#ifndef CGBP_H
#define CGBP_H
#include <stdint.h>
#include <time.h>
struct cgbp;
struct cgbp_size {
size_t w, h;... |
/* Copyright (C) 2018 Jack Ogaja.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, di... |
#ifndef SNAKEGLOB_H
#define SNAKEGLOB_H
void snake(void);
#endif |
/*-
* SPDX-License-Identifier: BSD-2-Clause-FreeBSD
*
* Copyright (c) 2012 NetApp, 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:
* 1. Redistributions of source code must retain t... |
#ifndef RT_CONFIG_H__
#define RT_CONFIG_H__
/* Automatically generated file; DO NOT EDIT. */
/* RT-Thread Configuration */
/* RT-Thread Kernel */
#define RT_NAME_MAX 8
#define RT_ALIGN_SIZE 4
#define RT_THREAD_PRIORITY_32
#define RT_THREAD_PRIORITY_MAX 32
#define RT_TICK_PER_SECOND 1000
#define RT_USING_OVERFLOW_CHE... |
/**
* @author hans@dkmt.o
* @date 2021-06-22
*/
#pragma once
#include "timer.h"
#include "uncopyable.h"
#include <uv.h>
#include <stdint.h>
#include <memory>
namespace dkcoro { //
class uv_timer final : public timer,
public std::enable_shared_from_this<uv_timer> {
public:
static std:... |
/// @file CubeComms.h
///
/// Class to provide extra MPI communicator functionality to manage the writing
/// of distributed spectral cubes.
///
/// @copyright (c) 2016 CSIRO
/// Australia Telescope National Facility (ATNF)
/// Commonwealth Scientific and Industrial Research Organisation (CSIRO)
/// PO Box 76, Epping N... |
#include "ClassId.h"
#include "ClientClass.h"
#include "Engine.h"
#include "EngineTrace.h"
#include "Entity.h"
#include "EntityList.h"
#include "Matrix3x4.h"
#include "../Memory.h"
#include "Utils.h"
#include "Vector.h"
struct ClientClass* Entity_getClientClass(PVOID entity)
{
return CALL_VIRTUAL_METHOD(struct Cli... |
// Copyright 2012 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_CODE_FACTORY_H_
#define V8_CODE_FACTORY_H_
#include "src/allocation.h"
#include "src/assembler.h"
#include "src/codegen.h"
#include "src/glo... |
/*
* Author: Thomas Ingleby <thomas.c.ingleby@intel.com>
* Contributors: Alex Tereschenko <alext.mkrs@gmail.com>
* Copyright (c) 2014 Intel Corporation.
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to de... |
/*
* This header is generated by classdump-dyld 1.5
* on Wednesday, October 27, 2021 at 3:22:30 PM Mountain Standard Time
* Operating System: Version 13.5.1 (Build 17F80)
* Image Source: /System/Library/PrivateFrameworks/HomeUI.... |
#define UPDATE_ROW_DECL(NAME, TARGET, SOURCE) \
\
extern void NAME ## _row_ ## TARGET ## _ ## SOURCE(ml_array_dimension_t *TargetDimension, char *TargetData, ml_array_dimension_t *SourceDimension, char *SourceData);
#define UPDATE_ROW_VALUE_DECL(NAME, SOURCE) \
\
extern void NAME ## _row_value_ ## SOURCE(ml_array_dime... |
#ifndef _game_h_
#include <GL/glew.h>
#include <GLFW/glfw3.h>
#include <curl/curl.h>
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include "auth.h"
#include "client.h"
#include "config.h"
#include "cube.h"
#include "db.h"
#include "item.h"
#include "map.h"
#include "m... |
// Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2018 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 GLOBALBOOST_COMPAT_H
#define GLOBALBOOST_COMPAT_H
#if defined(HAVE_CONFI... |
/*
* Generated by asn1c-0.9.29 (http://lionet.info/asn1c)
* From ASN.1 module "NR-RRC-Definitions"
* found in "NR-RRC-Definitions.asn"
* `asn1c -fcompound-names -no-gen-example -pdu=all`
*/
#include "RangeToBestCell.h"
/*
* This type is implemented using Q_OffsetRange,
* so here we adjust the DEF accordingly... |
#ifndef TRIPLE_H_
#define TRIPLE_H_
#include "json/json_fwd.h"
#include <iosfwd>
// Color, Point and Vector are all Triples (name them so)
class Triple;
typedef Triple Color;
typedef Triple Point;
typedef Triple Vector;
class Triple
{
public:
// --- data members -------------------------------------------------... |
/*
* Vortex OpenSplice
*
* This software and documentation are Copyright 2006 to TO_YEAR ADLINK
* Technology Limited, its affiliated companies and licensors. All rights
* reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file e... |
/*
Copyright (c) 2013-2017 Jinrong Xie (jrxie at ucdavis dot edu)
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify,... |
/* $NetBSD: lvm-static.c,v 1.1.1.2 2009/02/18 11:17:44 haad Exp $ */
/*
* Copyright (C) 2001-2004 Sistina Software, Inc. All rights reserved.
* Copyright (C) 2004-2007 Red Hat, Inc. All rights reserved.
*
* This file is part of LVM2.
*
* This copyrighted material is made available to anyone wishing to use,
* mo... |
/*----------------------------------------------------------------------------*/
/* bbgen tool */
/* */
/* Copyright (C) 2003 Henrik Storner <henrik@hswn.dk> ... |
/**
* \copyright
* Copyright (c) 2012-2018, OpenGeoSys Community (http://www.opengeosys.org)
* Distributed under a Modified BSD License.
* See accompanying file LICENSE.txt or
* http://www.opengeosys.org/project/license
*
*/
#pragma once
#include "NumLib/NumericsConfig.h"
#... |
#pragma once
/*******************************************************************
Author: David Ge (dge893@gmail.com, aka Wei Ge)
Last modified: 03/31/2018
Allrights reserved by David Ge
********************************************************************/
#include "../EMField/EMField.h"
#include "../EMField/Radiu... |
/*
* mini-x86.c: x86 backend for the Mono code generator
*
* Authors:
* Paolo Molaro (lupus@ximian.com)
* Dietmar Maurer (dietmar@ximian.com)
* Patrik Torstensson
*
* Copyright 2003 Ximian, Inc.
* Copyright 2003-2011 Novell Inc.
* Copyright 2011 Xamarin Inc.
*/
#include "mini.h"
#include <string.h>
#in... |
/*
* Copyright 2011-present Facebook, 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 a... |
#pragma once
#include"colorOptions.h"
extern vec3 WHITE;
extern vec3 RED;
extern vec3 GREEN;
extern vec3 BLUE;
extern vec3 YELLOW;
extern vec3 BLACK;
extern vec3 ORANGE;
extern vec3 PURPLE; |
#ifndef SNPEMODEL_H
#define SNPEMODEL_H
#include <SNPE/SNPE.hpp>
#include <SNPE/SNPEBuilder.hpp>
#include <SNPE/SNPEFactory.hpp>
#include <DlContainer/IDlContainer.hpp>
#include <DlSystem/DlError.hpp>
#include <DlSystem/ITensor.hpp>
#include <DlSystem/ITensorFactory.hpp>
#include <DlSystem/IUserBuffer.hpp>
#include <D... |
#include "shadow-memory.h"
#include <string.h>
#include <sys/mman.h>
#include "memory/hpcrun-malloc.h"
/* MACROs */
// 64KB shadow pages
#define PAGE_OFFSET_BITS (16LL)
#define PAGE_OFFSET(addr) ( addr & 0xFFFF)
#define PAGE_OFFSET_MASK ( 0xFFFF)
#define PAGE_SIZE (1 << PAGE_OFFSET_BITS)
// 2 level page table
#def... |
//
// RERatingControl.h
// RERatingControl
//
// Created by Nikolay Korotkov on 22/04/15.
// Copyright (c) 2015 Simple Communication. All rights reserved.
//
#import <UIKit/UIKit.h>
@protocol RERatingControlDelegate <NSObject>
@optional
- (void)ratingDidChangeTo:(NSInteger)rating;
@end
IB_DESIGNABLE
@interfa... |
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.
#pragma once
#include <Microsoft.ApplicationModel.Activation.ActivationRegistrationManager.g.h>
namespace winrt::Microsoft::ApplicationModel::Activation::implementa... |
#include <spawn.h>
int posix_spawnattr_setflags(posix_spawnattr_t *attr, short flags)
{
attr->__flags = flags;
return 0;
} |
/**********
Copyright 1990 Regents of the University of California. All rights reserved.
Author: 1985 Thomas L. Quarles
**********/
/*
*/
#include "ngspice/ngspice.h"
#include "ngspice/cktdefs.h"
#include "tradefs.h"
#include "ngspice/sperror.h"
#include "ngspice/suffix.h"
int
TRAtrunc(GENmodel *inModel, CKTcircui... |
/********************************************************************
* Part of Mike Field's emulate-risc-v project.
*
* (c) 2018 Mike Field <hamster@snap.net.nz>
*
* See https://github.com/hamsternz/emulate-risc-v for licensing
* and additional info
*
***********************************************************... |
/*
* Copyright (C) 2018 bzt (bztsrc@github)
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
* files (the "Software"), to deal in the Software without
* restriction, including without limitation the rights to use, copy,
* modify, mer... |
//
// Generated by class-dump 3.5 (64 bit).
//
// class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard.
//
#import <MTLToolsServices/DYMTLResourceObject.h>
#import "DYTexture.h"
@class NSDictionary, NSMutableDictionary, NSString;
@interface DYMTLTexture : DYMTLResourceObject <DYTextur... |
//===----- KaleidoscopeJIT.h - A simple JIT for Kaleidoscope ----*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===-------------------------------------------------------... |
//
// PKAppDelegate.h
// iOS-Component-ModuleB
//
// Created by liuzhongning on 05/30/2020.
// Copyright (c) 2020 liuzhongning. All rights reserved.
//
@import UIKit;
@interface PKAppDelegate : UIResponder <UIApplicationDelegate>
@property (strong, nonatomic) UIWindow *window;
@end |
// -*- coding: utf-8 -*-
// Copyright (C) 2006-2014 Rosen Diankov <rosen.diankov@gmail.com>
//
// This file is part of OpenRAVE.
// OpenRAVE 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 vers... |
#include <stdint.h>
#include <string.h>
#include <stdbool.h>
#include <stdio.h>
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
#include "freertos/queue.h"
#include "driver/gpio.h"
#include "esp_log.h"
#include "button.h"
#define TAG "BUTTON"
typedef struct {
uint8_t pin;
bool inverted;
uint16_t his... |
/* SPDX-License-Identifier: BSD-3-Clause
* Copyright(c) 2018 Intel Corporation.
* All rights reserved.
*/
#include <string.h>
#include <rte_common.h>
#include <rte_mempool.h>
#include <rte_mbuf.h>
#include <rte_cryptodev.h>
#include <rte_eventdev.h>
#include <rte_bus_vdev.h>
#include <rte_service.h>
#include <rte_e... |
// ----------------------------------------------------------------------------
// Copyright 2016-2017 ARM 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
//
// http://www.ap... |
// Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2012 The CORONA developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef _BITCOIN_COMPAT_H
#define _BITCOIN_COMPAT_H
#ifdef WIN32
#define _WIN32_WIN... |
#include <config.h>
#include <gsl/gsl_math.h>
#include <gsl/gsl_statistics.h>
#include <gsl/gsl_sort.h>
#define BASE_LONG_DOUBLE
#include "templates_on.h"
#include "Qn_source.c"
#include "templates_off.h"
#undef BASE_LONG_DOUBLE
#define BASE_DOUBLE
#include "templates_on.h"
#include "Qn_source.c"
#include "templates... |
/*-
* SPDX-License-Identifier: BSD-3-Clause
*
* Copyright (c) 1989, 1993
* The Regents of the University of California. All rights reserved.
*
* This code is derived from software contributed to Berkeley by
* Tony Nardo of the Johns Hopkins University/Applied Physics Lab.
*
* Redistribution and use in source ... |
/*
SDL - Simple DirectMedia Layer
Copyright (C) 1997-2011 Sam Lantinga
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.1 of the License, or (at your op... |
/********************************************************************
created: 2017/1/25
filename: TAA.h
author: Crazii
purpose:
*********************************************************************/
#ifndef __Blade_TAA_h__
#define __Blade_TAA_h__
#include <interface/public/IImageEffect.h>
#include <math/Vector2... |
/*
Simple DirectMedia Layer
Copyright (C) 1997-2011 Sam Lantinga <slouken@libsdl.org>
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this ... |
/* +---------------------------------------------------------------------------+
| Mobile Robot Programming Toolkit (MRPT) |
| http://www.mrpt.org/ |
| ... |
/* Created RJudd October 9, 2000 */
/* SPAWARSYSCEN D857 */
/**********************************************************************
// For TASP VSIPL Documentation and Code neither the United States /
// Government, the United States Navy, nor any of their employees, /
// makes any warranty, express o... |
/*
* m68k op helpers
*
* Copyright (c) 2006-2007 CodeSourcery
* Written by Paul Brook
*
* 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 (... |
/*
* GPL HEADER START
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 only,
* as published by the Free Software Foundation.
*
* This program is distributed... |
/******************************************************************************
* Filename: hw_vims_h
* Revised: 2017-01-31 09:37:48 +0100 (Tue, 31 Jan 2017)
* Revision: 48345
*
* Copyright (c) 2015 - 2017, Texas Instruments Incorporated
* All rights reserved.
*
* Redistribution and use in source ... |
//============================================================================
// Copyright (c) Kitware, Inc.
// All rights reserved.
// See LICENSE.txt for details.
//
// This software is distributed WITHOUT ANY WARRANTY; without even
// the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
// PURP... |
// Protocol Buffers - Google's data interchange format
// Copyright 2008 Google Inc. All rights reserved.
// https://developers.google.com/protocol-buffers/
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// ... |
// Copyright 2015-2017 Espressif Systems (Shanghai) PTE 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
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by a... |
#define SCSITAP_MAX_CMD_LEN 16
#define SCSITAP_CANQUEUE 8192
#define SCSITAP_MAX_LUNS 256
#define SCSITAP_MAX_TARGETS 1
#define SCSITAP_MAX_CHANNELS 0
#define SCSITAP_CMDS_PER_LUN 128
#define SCSITAP_MAX_SG SG_ALL
#define SCSITAP_MAX_SECTORS 256
#define SCSITAP_PROC_NA... |
/*
* This header is generated by classdump-dyld 1.5
* on Wednesday, October 27, 2021 at 3:17:19 PM Mountain Standard Time
* Operating System: Version 13.5.1 (Build 17F80)
* Image Source: /System/Library/PrivateFrameworks/AppStor... |
/** @file
This file contains GPIO routines for RC usage
Copyright (c) 2021, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include <Base.h>
#include <Uefi/UefiBaseType.h>
#include <Library/IoLib.h>
#include <Library/DebugLib.h>
#include <Library/BaseMemoryLib.h>
#in... |
/**
* Copyright (c) 2014 ray
*
* This library is free software; you can redistribute it and/or modify it
* under the terms of the MIT license. See LICENSE for details.
*
* @author: Ray
*/
#ifndef RFILE_H
#define RFILE_H
#ifdef __cplusplus
extern "C" {
#endif
#include "rcommon.h"
#include "rlist.h"
/* ------... |
/*******************************************************************************
*
* DO NOT EDIT THIS FILE!
* This file is auto-generated by fltg from Logical Table mapping files.
*
* Tool: $SDK/INTERNAL/fltg/bin/fltg
*
* Edits to this file will be lost when it is regenerated.
*
* This license is set out in ht... |
#ifndef SCREEN_LIVE_MAIN_WINDOW_H
#define SCREEN_LIVE_MAIN_WINDOW_H
#include "SDL.h"
#include "SDL_syswm.h"
#include "Overlay.h"
#include "ScreenLive.h"
#include <string>
class MainWindow : public OverlayCallack
{
public:
MainWindow();
virtual ~MainWindow();
bool Create();
void Destroy();
bool IsWindow() const;... |
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: auth.proto
#ifndef PROTOBUF_auth_2eproto__INCLUDED
#define PROTOBUF_auth_2eproto__INCLUDED
#include <string>
#include <google/protobuf/stubs/common.h>
#if GOOGLE_PROTOBUF_VERSION < 3005000
#error This file was generated by a newer version of pro... |
#pragma once
#include "vec.h"
#include <vector>
#include <limits>
#include <set>
#include <algorithm>
namespace jtk
{
namespace point_tree_details
{
template <class _Ty>
inline _Ty _Sqr(_Ty _Value)
{
return _Value * _Value;
}
template <class _Ty, class _Point_type, int _Dim>
... |
//
// SmuckKitOSX.h
// SmuckKitOSX
//
// Created by Trygve Sanne Hardersen on 22/03/15.
// Copyright (c) 2015 Trygve Sanne Hardersen. All rights reserved.
//
#import <Cocoa/Cocoa.h>
//! Project version number for SmuckKitOSX.
FOUNDATION_EXPORT double SmuckKitOSXVersionNumber;
//! Project version string for Smuck... |
#ifndef CONFIGURACAOCOMPUTADOR_H
#define CONFIGURACAOCOMPUTADOR_H
#include <QWidget>
#include <QMessageBox>
namespace Ui {
class ConfiguracaoComputador;
}
class ConfiguracaoComputador : public QWidget
{
Q_OBJECT
public:
explicit ConfiguracaoComputador(QWidget *parent = 0);
~ConfiguracaoComputador();... |
/* Key binding functions */
static void defaultgaps(const Arg *arg);
static void incrgaps(const Arg *arg);
static void incrigaps(const Arg *arg);
static void incrogaps(const Arg *arg);
static void incrohgaps(const Arg *arg);
static void incrovgaps(const Arg *arg);
static void incrihgaps(const Arg *arg);
static void inc... |
/*
* This header is generated by classdump-dyld 1.0
* on Saturday, August 24, 2019 at 9:46:38 PM Mountain Standard Time
* Operating System: Version 12.4 (Build 16M568)
* Image Source: /System/Library/Frameworks/MetalKit.framework/MetalKit
* classdump-dyld is licensed under GPLv3, Copyright © 2013-2016 by Elias Limneos.... |
#pragma once
#include <string>
namespace at {
class Tensor;
} // namespace at
namespace c10 {
struct IValue;
namespace detail {
// Determine the return type of `IValue::to() const &`. It's a const
// reference when possible and a copy otherwise. It is in this
// separate header so that List can use it as well.
templ... |
/*
* Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
* University Research and Technology
* Corporation. All rights reserved.
* Copyright (c) 2004-2005 The University of Tennessee and The University
* of Tennessee Resea... |
/*
* This header is generated by classdump-dyld 1.0
* on Saturday, August 24, 2019 at 9:45:25 PM Mountain Standard Time
* Operating System: Version 12.4 (Build 16M568)
* Image Source: /System/Library/Frameworks/WebKit.framework/WebKit
* classdump-dyld is licensed under GPLv3, Copyright © 2013-2016 by Elias Limneos.
*/
... |
/*
* This header is generated by classdump-dyld 1.0
* on Saturday, June 1, 2019 at 6:43:40 PM Mountain Standard Time
* Operating System: Version 12.1.1 (Build 16C5050a)
* Image Source: /System/Library/PrivateFrameworks/GeoServices.framework/GeoServices
* classdump-dyld is licensed under GPLv3, Copyright © 2013-2016 by ... |
//
// AppMonitorMeasureValue.h
// AppMonitor
//
// Created by christ.yuj on 15/2/15.
// Copyright (c) 2015年 君展. All rights reserved.
//
#import <Foundation/Foundation.h>
/**
* 监控指标值
*
*/
@interface AppMonitorMeasureValue : NSObject
/**
* 耗时操作是否已经完成
*/
@property (nonatomic, assign) BOOL isFinish;
@property ... |
// Copyright 2004-present Facebook. All Rights Reserved.
#pragma once
#include "caffe2/core/context.h"
#include "caffe2/core/logging.h"
#include "caffe2/core/operator.h"
#include "caffe2/utils/math.h"
namespace caffe2 {
template <typename T, class Context>
class LambdaRankNdcgOp final : public Operator<Context> {
... |
//
// Generated by class-dump 3.5 (64 bit).
//
// class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard.
//
#import "NSObject.h"
#import "EFCacheable.h"
#import "NSCopying.h"
#import "NSSecureCoding.h"
@class EFStringHash, NSString;
@interface EMObjectID : NSObject <EFCacheable, NSSecu... |
/* glpios07.c (mixed cover cut generator) */
/***********************************************************************
* This code is part of GLPK (GNU Linear Programming Kit).
*
* Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008,
* 2009, 2010, 2011, 2013, 2018 Andrew Makhorin, Department for Appli... |
/*
* Copyright © 2018 Intel 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 rights to use, copy, modify, merge, pub... |
/** --------------------------------------------------------------------------------------------------------------------
* <copyright company="Aspose" file="delete_fields_response.h">
* Copyright (c) 2021 Aspose.Words for Cloud
* </copyright>
* <summary>
* Permission is hereby granted, free of charge, to any perso... |
/*
* Copyright (c) 2002-2019 "Neo4j,"
* Neo4j Sweden AB [http://neo4j.com]
*
* This file is part of Neo4j.
*
* 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.... |
/*
* DynamicObject.h
*
* Created on: Oct 20, 2014
* Author: ian
*/
#ifndef DYNAMICOBJECT_H_
#define DYNAMICOBJECT_H_
#include "GameObject.h"
#include "../Vector3.h"
class DynamicObject : public virtual GameObject {
private:
Vector3 _speed;
public:
DynamicObject();
virtual ... |
/*
* Copyright (c) 2001-2002 by David Brownell
*
* 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 progra... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.