text stringlengths 9 948k |
|---|
/*
* linux/arch/arm/mach-pxa/cm-x270.c
*
* Copyright (C) 2007, 2008 CompuLab, Ltd.
* Mike Rapoport <mike@compulab.co.il>
*
* This program 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 Software Foundation.
*/
... |
// 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_WARNINGS_H
#define GLOBALBOOST_WARNINGS_H
#include <stdlib.h... |
/*
* Rack Gnome
* Copyright (C) 2016 David M. Syzdek <syzdek@bindlebinaries.com>.
*
* @SYZDEK_BSD_LICENSE_START@
*
* 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... |
/***********************************************************************
* Copyright (c) 2020 Gregory Maxwell *
* Distributed under the MIT software license, see the accompanying *
* file COPYING or https://www.opensource.org/licenses/mit-license.php.*
***************************... |
#include <tommath_private.h>
#ifdef BN_FAST_S_MP_SQR_C
/* LibTomMath, multiple-precision integer library -- Tom St Denis
*
* LibTomMath is a library that provides multiple-precision
* integer arithmetic as well as number theoretic functionality.
*
* The library was designed directly after the MPI library by
* Mic... |
#ifndef __PARSERTOOLS_H__
#define __PARSERTOOLS_H__
class ParserTools;
#include <string>
#include "log.h"
#include "block.h"
class ParserTools{
public:
/**
* Parses a line to a block
* @arg line The line to parse to a block
* @arg delimiter The delimiter that splits the... |
// This file is part of VIO - Semi-direct Visual Odometry.
//
// Copyright (C) 2014 Christian Forster <forster at ifi dot uzh dot ch>
// (Robotics and Perception Group, University of Zurich, Switzerland).
//
// VIO is free software: you can redistribute it and/or modify it under the
// terms of the GNU General Public L... |
#include "_test_common.h"
extern void _rotate_left(struct rbtree_t* tree, rbnode_t* node);
extern void _rotate_right(struct rbtree_t* tree, rbnode_t* node);
void setup_rotate_test_tree(void** state) {
/* create a tree like this(R for red and B for black):
8B
/ \
... |
/*
* Copyright (c) 2000-2010 Apple Inc. All rights reserved.
*
* @APPLE_OSREFERENCE_LICENSE_HEADER_START@
*
* This file contains Original Code and/or Modifications of Original Code
* as defined in and that are subject to the Apple Public Source License
* Version 2.0 (the 'License'). You may not use this file ex... |
/* $Xorg: FreeEData.c,v 1.4 2001/02/09 02:03:33 xorgcvs Exp $ */
/*
Copyright 1986, 1998 The Open Group
Permission to use, copy, modify, distribute, and sell this software and its
documentation for any purpose is hereby granted without fee, provided that
the above copyright notice appear in all copies and that both ... |
#include "emu.h"
#include "includes/n64.h"
#include "video/n64.h"
namespace N64
{
namespace RDP
{
#define LookUpCC(A, B, C, D) m_rdp->GetCCLUT2()[(m_rdp->GetCCLUT1()[(A << 16) | (B << 8) | C] << 8) | D]
void Processor::RenderSpans(int start, int end, int tilenum, bool shade, bool texture, bool zbuffer, bool flip)
{... |
//
// VKIMMessageData.h
// SecurIM
//
// Created by kovtash on 11.03.13.
// Copyright (c) 2013 Vlad Kovtash. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "VKIMContactData.h"
@interface VKIMMessageData : NSObject
@property (strong,nonatomic) NSString *messageID;
@property (strong,nonatomic) NS... |
/*
* Copyright (c) 2014 Mellanox Technologies, Inc.
* All rights reserved.
* Copyright (c) 2014 Cisco Systems, Inc. All rights reserved.
* Copyright (c) 2014-2017 Intel, Inc. All rights reserved.
* $COPYRIGHT$
*
* Additional copyrights may follow
*
* $HEADER$
*/
#ifndef PM... |
#pragma once
#include "util.h"
#include <gtkmm.h>
namespace AhoViewer
{
class StatusBar : public Gtk::Box
{
public:
enum class Priority : uint8_t
{
UNUSED = 0,
DOWNLOAD,
SAVE,
MESSAGE,
TOOLTIP
};
StatusBar(BaseObj... |
/*
* Copyright (C) 2019 Alibaba Inc. All rights reserved.
* Author: Kraken Team.
*/
#ifndef KRAKEN_BRIDGE_JSC_H
#define KRAKEN_BRIDGE_JSC_H
// MUST READ:
// All the struct which prefix with NativeXXX struct (exp: NativeElement) has a corresponding struct in Dart code.
// All struct members include variables and fu... |
/**
* Autogenerated by Thrift for src/module.thrift
*
* DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
* @generated
*/
#pragma once
#include "thrift/compiler/test/fixtures/fatal/gen-cpp2/reflection_dep_B_fatal_types.h"
#include "thrift/compiler/test/fixtures/fatal/gen-cpp2/reflection_dep_C_fa... |
// Copyright (C) 2013 Davis E. King (davis@dlib.net)
// License: Boost Software License See LICENSE.txt for the full license.
#ifndef DLIB_PYTHoN_TOP_
#define DLIB_PYTHoN_TOP_
#include "python/pybind_utils.h"
#include "python/pyassert.h"
#include "python/serialize_pickle.h"
#include "python/numpy_image.h"
#endif ... |
/*
* This header is generated by classdump-dyld 1.0
* on Tuesday, November 5, 2019 at 2:44:46 AM Mountain Standard Time
* Operating System: Version 13.0 (Build 17J586)
* Image Source: /System/Library/PrivateFrameworks/SecurityFoundation.framework/SecurityFoundation
* classdump-dyld is licensed under GPLv3, Copyright © ... |
// Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2014 The Bitcoin developers
// Copyright (c) 2014-2015 The Dash developers
// Copyright (c) 2015-2017 The PIVX developers
// Copyright (c) 2015-2017 The SVALQO developers
// Distributed under the MIT software license, see the accompanying
// file COPYIN... |
// C Program to Calculate Standard Deviation
// C programming source code to compute standard deviation by passing elements of an array to function....
#include <stdio.h>
#include <math.h>
float calculateSD(float data[]);
int main()
{
int i;
float data[10];
printf("Enter 10 elements: ");
for(i=0; i... |
#ifndef _MEMORY_REMOTEDTOBASE_H_
#define _MEMORY_REMOTEDTOBASE_H_
#pragma once
#include "../Member/Base/RemoteDtoMemberBase.h"
#include "../../Process/RemoteProcessService.h"
#include <vector>
#include <windows.h>
#include <list>
namespace Memory
{
class RemoteDtoBase
{
SharedRemoteProcessService ... |
#pragma once
#include "project.h"
namespace RF::cc::site {
///////////////////////////////////////////////////////////////////////////////
class Site;
struct SiteDesc;
///////////////////////////////////////////////////////////////////////////////
} |
/**
* \file
*
* \brief Autogenerated API include file for the Atmel Software Framework (ASF)
*
* Copyright (c) 2012 Atmel Corporation. All rights reserved.
*
* \asf_license_start
*
* \page License
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided t... |
#include "i2s_data_bus.h"
#include "driver/periph_ctrl.h"
#if ESP_IDF_VERSION < (4, 0, 0) || ARDUINO_ARCH_ESP32
#include "rom/lldesc.h"
#else
#include "esp32/rom/lldesc.h"
#endif
#include "esp_heap_caps.h"
#include "soc/i2s_reg.h"
#include "soc/i2s_struct.h"
#include "soc/rtc.h"
/// DMA descriptors for front and back ... |
// Compiler:
// Run-time:
// env-var: YKD_PRINT_IR=jit-pre-opt
// stderr:
// ...
// define internal void @__yk_compiled_trace_0(i32* %0) {
// store i32 3, i32* %0, align 4, !tbaa !0
// ret void
// }
// ...
// Check that basic trace compilation works.
#include <assert.h>
#include <stdio... |
/*****************************************************************************
* _ _ ____ _
* Project ___| | | | _ \| |
* / __| | | | |_) | |
* | (__| |_| | _ <| |___
* \___... |
/***************************************************************************//**
* @file
* @brief Top level application functions
*******************************************************************************
* # License
* <b>Copyright 2020 Silicon Laboratories Inc. www.silabs.com</b>
***************************... |
/* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
/*
Vamp
An API for audio analysis and feature extraction plugins.
Centre for Digital Music, Queen Mary, University of London.
Copyright 2006-2012 Chris Cannam and QMUL.
Permission is hereby granted, free of charge, ... |
#ifndef _CBLAS_H_
#define _CBLAS_H_
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
#include "root.h"
#ifdef __cplusplus
#ifndef MKL_DECLSPEC
#ifdef _WIN32
#define MKL_DECLSPEC __declspec(dllexport)
#else
#define MKL_DECLSPEC
#endif
#endif
/*
* Enumerated and derived types
*/
#define CBLAS_INDEX size_t /... |
/* Software floating-point emulation.
Return a converted to IEEE quad
Copyright (C) 1997,1999,2006 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Richard Henderson (rth@cygnus.com) and
Jakub Jelinek (jj@ultra.linux.cz).
The GNU C Library is free software; you c... |
// Copyright 2021 XMOS LIMITED.
// This Software is subject to the terms of the XMOS Public Licence: Version 1.
#ifndef MODEL_MEMORY_LOADER_H_
#define MODEL_MEMORY_LOADER_H_
#include <cstring>
#include <xs1.h>
#include "tensorflow/lite/micro/kernels/xcore/xcore_memory_loader.h"
extern "C" {
#include "nn_operator.h"
... |
/* xdelta3 - delta compression tools and library
Copyright 2016 Joshua MacDonald
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... |
//------------------------------------------------------------------------------
// GB_AxB: hard-coded functions for semiring: C<M>=A*B or A'*B
//------------------------------------------------------------------------------
// SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2019, All Rights Reserved.
// http://sui... |
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Microsoft Windows
Copyright (C) Microsoft Corporation, 1995 - 1999.
File: Convert.h
Content: Declaration of convertion routines.
History: 11-15-99 dsie created
--------------------------------------------... |
#ifndef RANDOMOUTPUTS_H
#define RANDOMOUTPUTS_H
#include "om_log.h"
#include "src/MicroCore.h"
namespace xmreg
{
class CurrentBlockchainStatus;
/**
* @brief Returns random ouputs for given amounts
*
* This is a replacement for a method that used to be
* avaliable in the monero itself, but which was dropped.
*... |
// Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2014 The Bitcoin developers
// Copyright (c) 2014-2015 The Dash developers
// Copyright (c) 2015-2018 The ATEC developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-licens... |
/* 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... |
/* SPDX-License-Identifier: BSD-3-Clause
* Copyright(c) 2018 Intel Corporation
*/
#include <ethdev_driver.h>
#include <rte_net.h>
#include <rte_vect.h>
#include "rte_pmd_ice.h"
#include "ice_rxtx.h"
#define ICE_TX_CKSUM_OFFLOAD_MASK ( \
PKT_TX_IP_CKSUM | \
PKT_TX_L4_MASK | \
PKT_TX_TCP_SEG | \
PKT_... |
// 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 EXTENSIONS_BROWSER_API_WEB_REQUEST_WEB_REQUEST_PERMISSIONS_H_
#define EXTENSIONS_BROWSER_API_WEB_REQUEST_WEB_REQUEST_PERMISSIONS_H_
#include ... |
//
// Copyright 2019 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 required by applicable law or agreed to ... |
/* ====================================================================
* Copyright (c) 1998-2000 Carnegie Mellon University. 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. Red... |
#ifndef APPLICATIONSMENUAPPLET_H
#define APPLICATIONSMENUAPPLET_H
#include <QMap>
#include <QList>
#include <QAction>
#include <QCommonStyle>
#include "applet.h"
class ApplicationsMenuStyle: public QCommonStyle
{
Q_OBJECT
public:
int pixelMetric(PixelMetric metric, const QStyleOption* option, const QWidget* w... |
#pragma once
//------------------------------------------------------------------------------
/**
@class OpenGL4::OGL4VertexLayoutServer
Implements a layout server for handling vertex layouts with DX11
(C) 2012-2016 Individual contributors, see AUTHORS file
*/
#include "core/singleton.h"
#include ... |
//
// Problem6.h
// Project Euler
//
// Created by Matt Jones on 12/9/10.
// Copyright 2010 Mr Mustard Media. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "Problem.h"
#import "ProblemViewController.h"
@interface Problem6 : Problem
- (NSString *) solve:(ProblemViewController *)pvc;
@end |
/*
SDLPoP, a port/conversion of the DOS game Prince of Persia.
Copyright (C) 2013-2021 Dávid Nagy
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 3 of the License, or
(at your option)... |
/*
* This header is generated by classdump-dyld 1.5
* on Wednesday, April 14, 2021 at 2:21:28 PM Mountain Standard Time
* Operating System: Version 14.4 (Build 18K802)
* Image Source: /System/Library/PrivateFrameworks/GeoService... |
/*
* i810-tco 0.02: TCO timer driver for i810 chipsets
*
* (c) Copyright 2000 kernel concepts <nils@kernelconcepts.de>, All Rights Reserved.
* http://www.kernelconcepts.de
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as publ... |
/*!\file arm_inlines_temperature.h
** \author SMFSW
** \copyright MIT (c) 2017-2021, SMFSW
** \brief Temperature conversion inlines
*/
/****************************************************************/
#ifndef __ARM_INLINES_TEMPERATURE_H
#define __ARM_INLINES_TEMPERATURE_H
#ifdef __cplusplus
extern "C" {
#endif
/***... |
/*
+----------------------------------------------------------------------+
| PHP Version 7 |
+----------------------------------------------------------------------+
| Copyright (c) 1997-2017 The PHP Group |
+---------... |
SUBROUTINE ana_scope (ng, tile, model)
!
!! svn $Id: ana_scope.h 2328 2014-01-23 20:16:18Z arango $
!!======================================================================
!! Copyright (c) 2002-2014 The ROMS/TOMS Group !
!! Licensed under a MIT/X style license !
!... |
#pragma once
#include <Arduino.h>
#include <FastLED.h>
// We say D1 but in actuality the magic happens on pin 5
#define LED_PIN D1
#define NUM_LEDS 275
namespace Leds {
extern CRGB leds[NUM_LEDS];
void setup();
void loop();
} |
/*************************************************************************************************************
Copyright 2021-2022, Skyworks Solutions, 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 Lice... |
/*
* Routines for managing persistent storage of port mappings, etc.
*
* $Copyright Open Broadcom Corporation$
*
* $Id: nvparse.c,v 1.18.8.1 2003/10/16 21:26:01 mthawani Exp $
*/
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#include <string.h>
#include <ctype.h>
#include <unistd.h>
#include <limits... |
/**
* @file RobotMap.h
* @date 1/13/2022
* @author Jonah Boan, Aidan Cobb, Alex Nolan
* @brief RobotMap is used to define all the variables used throughout the Robot Program
**/
#include <frc/DoubleSolenoid.h>
/** Motor Controller ID Definitions */
/** Motor ID for the left leader motor controller on driv... |
//
// DeviceListViewController.h
// RokidSDKDemoObjc
//
// Created by Yock on 2017/12/7.
// Copyright © 2017年 Rokid. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface DeviceListViewController : UIViewController
@property (weak, nonatomic) IBOutlet UITableView *deviceListView;
@end |
/*
* This header is generated by classdump-dyld 1.5
* on Friday, April 30, 2021 at 11:36:13 AM Mountain Standard Time
* Operating System: Version 13.5.1 (Build 17F80)
* Image Source: /System/Library/Frameworks/MediaPlayer.framew... |
/* { dg-do run { target { powerpc64le-*-* } } } */
/* { dg-skip-if "do not override -mcpu" { powerpc*-*-* } { "-mcpu=*" } { "-mcpu=power8" } } */
/* { dg-options "-mcpu=power8 -O3" } */
void abort();
#define N 16
signed char ca[N] __attribute__((aligned(16)));
signed char cb[] __attribute__((aligned(16)))
= {8, 7,... |
// SPDX-License-Identifier: GPL-2.0+
//
// em28xx-core.c - driver for Empia EM2800/EM2820/2840 USB video capture devices
//
// Copyright (C) 2005 Ludovico Cavedon <cavedon@sssup.it>
// Markus Rechberger <mrechberger@gmail.com>
// Mauro Carvalho Chehab <mchehab@kernel.org>
// Sascha Sommer <saschaso... |
//
// NSString+RACSequenceAdditions.h
// ReactiveObjC
//
// Created by Justin Spahr-Summers on 2012-10-29.
// Copyright (c) 2012 GitHub. All rights reserved.
//
#import <Foundation/Foundation.h>
@class RACSequence<__covariant ValueType>;
NS_ASSUME_NONNULL_BEGIN
@interface NSString (RACSequenceAdditions)
/// Cr... |
/*
IMPORTANT! This file is auto-generated each time you save your
project - if you alter its contents, your changes may be overwritten!
This is the header file that your files should include in order to get all the
JUCE library headers. You should avoid including the JUCE headers directly in
your ... |
/*
* This header is generated by classdump-dyld 1.0
* on Tuesday, November 5, 2019 at 2:50:29 AM Mountain Standard Time
* Operating System: Version 13.0 (Build 17J586)
* Image Source: /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/MPSNeuralNetwork
* classdump-dyld is ... |
// Copyright (c) 2014-2019, The Mask Project
//
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without modification, are
// permitted provided that the following conditions are met:
//
// 1. Redistributions of source code must retain the above copyright notice, this list of
// ... |
/*
+----------------------------------------------------------------------+
| HipHop for PHP |
+----------------------------------------------------------------------+
| Copyright (c) 2010-2016 Facebook, Inc. (http://www.facebook.com) |
+---------... |
/*
* This header is generated by classdump-dyld 1.5
* on Wednesday, April 14, 2021 at 2:35:56 PM Mountain Standard Time
* Operating System: Version 14.4 (Build 18K802)
* Image Source: /System/Library/PrivateFrameworks/SiriActiva... |
//
// LYAppDelegate.h
// LYADsModule
//
// Created by liyu158163 on 01/22/2019.
// Copyright (c) 2019 liyu158163. All rights reserved.
//
@import UIKit;
@interface LYAppDelegate : UIResponder <UIApplicationDelegate>
@property (strong, nonatomic) UIWindow *window;
@end |
/*
* \brief Backend interface used by the Remote_rom client and server
* \author Johannes Schlatow
* \date 2016-02-17
*/
/*
* Copyright (C) 2016 Genode Labs GmbH
*
* This file is part of the Genode OS framework, which is distributed
* under the terms of the GNU General Public License version 2.
*/
#ifndef... |
#pragma once
namespace Hazel
{
enum class Key
{
Invalid = -1,
Space = 32,
Apostrophe = 39,
Comma = 44,
Minus = 45,
Period = 46,
Slash = 47,
D0 = 48,
D1 = 49,
D2 = 50,
D3 = 51,
D4 = 52,
D5 = 53,
D6 = 54,
D7 = 55,
D8 = 56,
D9 = 57,
Semicolon = 59,
Equal = 61,
A = 65,
B = 66,
... |
//
// WeightedSumNeuron.h
// neuralnet
//
// Created by Adam Wulf on 10/9/17.
// Copyright © 2017 Adam Wulf. All rights reserved.
//
#import "AbstractNeuron.h"
@interface WeightedSumNeuron : AbstractNeuron
@end |
/*
* Copyright (c) 2021 Huawei Device Co., 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 applicable law ... |
/***********************************************************
Copyright 1987 by Digital Equipment Corporation, Maynard, Massachusetts,
and the Massachusetts Institute of Technology, Cambridge, Massachusetts.
All Rights Reserved
Permission to use, copy, modify, and distribute this software and i... |
/*
* Automatically Generated from Mathematica.
* Thu 8 Apr 2021 07:50:02 GMT+08:00
*/
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include "R_hip_flexion_right_src.h"
#ifdef _MSC_VER
#define INLINE __forceinline /* use __forceinline (VC++ specific) */
#else
#define INLINE static __inline__ ... |
/* { dg-do compile } */
/* { dg-options "-O1 -fdump-tree-optimized" } */
/* LLVM LOCAL test not applicable */
/* { dg-require-fdump "" } */
void bla(void);
void
foo(int c, int d)
{
goto skip;
ebef:
goto xxx;
skip:
if (c)
{
xxx:;
if (!c)
bla ();
}
if (d)
goto ebef;
}
/* Bla shoul... |
/*
* Copyright (C) 2013-2015 Apple 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 the above copyright
* notice, this list of conditi... |
/**
* Copyright (c) 2021 OceanBase
* OceanBase CE is licensed under Mulan PubL v2.
* You can use this software according to the terms and conditions of the Mulan PubL v2.
* You may obtain a copy of Mulan PubL v2 at:
* http://license.coscl.org.cn/MulanPubL-2.0
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BAS... |
/*
posix/_tcdrain.c
Created: July 26, 1994 by Philip Homburg
*/
#define tcdrain _tcdrain
#define ioctl _ioctl
#include <termios.h>
#include <sys/ioctl.h>
int tcdrain(fd)
int fd;
{
return(ioctl(fd, TCDRAIN, (void *)0));
} |
// shi.c
inherit NPC;
void create()
{
set_name("史镖头", ({ "shi biaotou", "shi" }));
set("gender", "男性");
set("age", 45);
set("combat_exp", 7000);
set("shen_type", 1);
set_skill("unarmed", 30);
set_skill("blade", 40);
set_skill("parry", 30);
set_skill("dodge", 30);
set_temp("apply/attack", 20);
set_temp(... |
/*
* =============================================================================
* HSA Runtime Conformance Release License
* =============================================================================
* The University of Illinois/NCSA
* Open Source License (NCSA)
*
* Copyright (c) 2014, Advanced Micro Devi... |
/*
* Handles the M-Systems DiskOnChip G3 chip
*
* Copyright (C) 2011 Robert Jarzmik
*
* 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 optio... |
//
// PsdNormalBaseMaker.h
// PsdReader
//
// Created by huang kaizhan on 2017/12/31.
// Copyright © 2017年 huangkaizhan. All rights reserved.
// 正常控件创建器,如按钮,图片等单一控件
#import "PsdBaseMaker.h"
/**
正常控件创建器
*/
@interface PsdNormalBaseMaker : PsdBaseMaker
/**
获取创建控件的字符串
@param space 前置空格
@return 字符串
*/
- (NSM... |
/******************************************************************************
*
* Module Name: utxfinit - External interfaces for ACPICA initialization
*
*****************************************************************************/
/*
* Copyright (C) 2000 - 2016, Intel Corp.
* All rights reserved.
*
* Redis... |
// This file is licensed under the Elastic License 2.0. Copyright 2021 StarRocks Limited.
#pragma once
#include <arrow/api.h>
#include <arrow/buffer.h>
#include <arrow/io/api.h>
#include <arrow/io/file.h>
#include <arrow/io/interfaces.h>
#include <column/vectorized_fwd.h>
#include <env/env.h>
#include <exec/file_read... |
/*
* Copyright (c) 2020, Industrial Systems Institute (ISI), Patras, Greece
* 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 copyr... |
/*
** my_str_isalpha.c for in /home/daniel_b/Piscine_C_J06
**
** Made by Erwan DANIEL
** Login <daniel_b@epitech.net>
**
** Started on Tue Oct 7 11:54:54 2014 Erwan DANIEL
** Last update Sun Feb 1 19:42:53 2015 DANIEL Erwan
*/
#include <stdio.h>
int my_str_isalpha(char *str)
{
int counter;
int return_valu... |
/* Copyright 2018 The Blueoil 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
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agre... |
// Supported with union (c) 2018 Union team
#ifndef __ZAI_H__VER1__
#define __ZAI_H__VER1__
namespace Gothic_I_Addon {
class zCAIBase : public zCObject {
public:
zCLASS_DECLARATION( zCAIBase )
zCAIBase() {}
virtual zCClassDef* _GetClassDef() const zCall( 0x0048F200 );
... |
/*============================================================================
This C source file is part of the SoftFloat IEEE Floating-Point Arithmetic
Package, Release 3b, by John R. Hauser.
Copyright 2011, 2012, 2013, 2014, 2015, 2016 The Regents of the University of
California. All rights reserved.
Redistribut... |
// Copyright 1998-2016 Epic Games, Inc. All Rights Reserved.
#pragma once
/**
* Describes the workspace menu from which tabs are summoned
*
* +-Asset Editor Tabs
* |-Tab
* |-...
* |
* +-Level Editor Tabs
* |-Tab
* |-...
* | \ Viewports >
* +-Tools Tabs
* |-Tab
* |-...
* \ D... |
/*******************************************************************************
* File Name: Signal_1_C.h
* Version 2.20
*
* Description:
* This file contains Pin function prototypes and register defines
*
* Note:
*
********************************************************************************
* Copyright 2008-20... |
// 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 IPC_IPC_CHANNEL_WIN_H_
#define IPC_IPC_CHANNEL_WIN_H_
#include "ipc/ipc_channel.h"
#include <queue>
#include <string>
#include "base/memory... |
#pragma once
#include "sm_vas.h"
#include "table_man.h"
#include "table_desc.h"
#include "skewer.h"
#include "shore_env.h"
#include "shore_client.h"
#include "util/random_input.h"
namespace ycsb {
// YCSB table has 10 fields of 100 bytes each and an 8-byte primary key
static constexpr int FieldSize = 100;
static con... |
/* vax780_defs.h: VAX 780 model-specific definitions file
Copyright (c) 2004-2011, Robert M Supnik
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 witho... |
/*
* This header is generated by classdump-dyld 1.5
* on Wednesday, October 27, 2021 at 3:22:27 PM Mountain Standard Time
* Operating System: Version 13.5.1 (Build 17F80)
* Image Source: /System/Library/PrivateFrameworks/HeartRh... |
#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_myreptestsam1_ExampleVersionNumber;
FOUNDATION_EXPORT const unsigned char Pods_myreptestsam1_E... |
/* Generated by RuntimeBrowser
Image: /System/Library/PrivateFrameworks/MetalPerformanceShaders.framework/Versions/A/MetalPerformanceShaders
*/
@interface MPSCNNNeuronReLU : MPSCNNNeuron
@property (atomic, readonly) float a;
- (float)a;
- (id)initWithDevice:(id)arg1 a:(float)arg2;
@end |
#include <libmx.h>
char *mx_strjoin(const char *s1, const char *s2) {
if (s1 == 0 && s2 == 0) {
return 0;
}
if (s1 == 0) {
return mx_strdup(s2);
}
if (s2 == 0) {
return mx_strdup(s1);
}
int l1 = mx_strlen(s1);
int l2 = mx_strlen(s2);
char *result = mx_strnew... |
/*
* Generated by asn1c-0.9.29 (http://lionet.info/asn1c)
* From ASN.1 module "E2SM-RC-PRE-IEs"
* found in "../v2/e2sm-rc-pre_v2_rsys.asn"
* `asn1c -fcompound-names -fincludes-quoted -fno-include-deps -findirect-choice -gen-PER -no-gen-OER -D.`
*/
#ifndef _CellGlobalID_RCPRE_H_
#define _CellGlobalID_RCPRE_H_
... |
Content stub:
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_ll_utils.h |
#pragma once
#ifdef _WINDOWS
#include <windows.h>
namespace ClickEffect
{
class Hooker;
class Painter;
Hooker* getHooker(HWND hWnd);
Hooker* getHooker(LPVOID lpParam);
Painter* getPainter(HWND hWnd);
Painter* getPainter(LPVOID lpParam);
void Hook(int64_t color, int64_t radius, int64_t width, int64_t delay, int... |
#include "mpi.h"
#include <stdio.h>
#include <stdlib.h>
#define MULTI 5 // chunk dimension
#define ROOT 0
int main (int argc, char *argv[])
{
int numtasks, rank, len;
char hostname[MPI_MAX_PROCESSOR_NAME];
MPI_Init(&argc, &argv);
MPI_Comm_size(MPI_COMM_WORLD, &numtasks);
MPI_Comm_rank(MPI_COMM_W... |
/*
* Copyright(c) 2021 Intel 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 applicable law or agre... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.