text stringlengths 9 948k |
|---|
/*
Copyright 1999-2016 ImageMagick Studio LLC, a non-profit organization
dedicated to making software imaging solutions freely available.
You may not use this file except in compliance with the License.
obtain a copy of the License at
http://www.imagemagick.org/script/license.php
Unless required by app... |
#include <stdio.h>
#include <stdlib.h>
#include <ucontext.h>
// operating system check
#if defined(_WIN32) || (!defined(__unix__) && !defined(__unix) && (!defined(__APPLE__) || !defined(__MACH__)))
#warning Este codigo foi planejado para ambientes UNIX (LInux, *BSD, MacOS). A compilacao e execucao em outros ambientes ... |
// Copyright (c) 2014-present, Facebook, Inc. All rights reserved.
//
// You are hereby granted a non-exclusive, worldwide, royalty-free license to use,
// copy, modify, and distribute this software in source code or binary form for use
// in connection with the web services and APIs provided by Facebook.
//
// As with... |
#pragma once
#include <glad/glad.h>
#include <GLFW/glfw3.h>
namespace engine {
namespace graphics {
class Window
{
private:
const char* m_Title;
int m_Width;
int m_Height;
GLFWwindow* m_Window;
public:
Window(int width, int height, const char* title);
~Window();
void init();
bool c... |
// green_cloth.c
#include <armor.h>
inherit CLOTH;
void create()
{
set_name("翠綠綢衫", ({ "green cloth", "cloth" }) );
set_weight(1000);
if( clonep() )
set_default_object(__FILE__);
else {
set("long", "這件翠綠色的綢衫上面繡着幾隻黃鵲,聞起來還有一股淡香。\n");
set("... |
/* Declaration of functions and data types used for MD5 sum computing
library functions.
Copyright (C) 1995-1997, 1999-2001, 2004-2006, 2008-2015 Free Software
Foundation, Inc.
This file is part of the GNU C Library.
This program is free software; you can redistribute it and/or modify it
under the te... |
// Filename: recorderTable.h
// Created by: drose (27Jan04)
//
////////////////////////////////////////////////////////////////////
//
// PANDA 3D SOFTWARE
// Copyright (c) Carnegie Mellon University. All rights reserved.
//
// All use of this software is subject to the terms of the revised BSD
// license. You shoul... |
main()
{
int i = 1;
switch(i)
{
printf("\nHello, ");
case 1: printf("One, ");
i++;
break;
case 2: printf("Two");
break;
}
} |
/*
* 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 ma... |
/*
* wm831x-otp.c -- OTP for Wolfson WM831x PMICs
*
* Copyright 2009 Wolfson Microelectronics PLC.
*
* Author: Mark Brown <broonie@opensource.wolfsonmicro.com>
*
* 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 ... |
// 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 CHROME_BROWSER_UI_COCOA_WEBSITE_SETTINGS_CHOOSER_BUBBLE_UI_COCOA_H_
#define CHROME_BROWSER_UI_COCOA_WEBSITE_SETTINGS_CHOOSER_BUBBLE_UI_COCOA_H_
#... |
// Copyright 2015, VIXL authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
// * Redistributions of source code must retain the above copyright notice,
// this list of conditions ... |
/* mbed Microcontroller Library
* Copyright (c) 2006-2013 ARM Limited
*
* 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... |
/*
* Copyright (c) 2012 Andrew D'Addesio
* Copyright (c) 2013-2014 Mozilla Corporation
*
* 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
* versi... |
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/un.h>
#include <netinet/in.h>
#include <linux/dn.h>
#include <stdlib.h>
#include "net.h"
#include "random.h"
#include "utils.h"
static void unix_gen_sockaddr(struct sockaddr **addr, socklen_t *addrlen)
{
struct sockaddr_un *unixsock;
unsigned int len;
un... |
/****
Copyright 2005-2007, Moshe Looks
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 ... |
//
// 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 ... |
/* Generated by RuntimeBrowser
Image: /System/Library/Frameworks/UIKit.framework/UIKit
*/
@interface UIStatusBarHideAnimationParameters : UIStatusBarAnimationParameters {
double _additionalSlideHeight;
int _hideAnimation;
}
@property (nonatomic) double additionalSlideHeight;
@property (nonatomic) int hi... |
/* Return positive difference between arguments.
Copyright (C) 1997-2015 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GN... |
// Copyright (c) 2017 The PIVX Developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef BITCOIN_BIP38_H
#define BITCOIN_BIP38_H
#include "pubkey.h"
#include "uint256.h"
#include <string>
/** 39 bytes - 78 characte... |
#ifndef __GUIButton_H__
#define __GUIButton_H__
#include "GUIElement.h"
class GUIButton : public GUIElement
{
public:
GUIButton(int x, int y, SDL_Rect image_area_normal, SDL_Rect image_area_hover, SDL_Rect image_area_pressed, GUIElement* son);
~GUIButton() {};
void Update(float dt);
void Click();
SDL_Rect ini... |
// SPDX-License-Identifier: GPL-2.0-only
/******************************************************************************
AudioScience HPI driver
Copyright (C) 1997-2014 AudioScience Inc. <support@audioscience.com>
Extended Message Function With Response Caching
(C) Copyright AudioScience Inc. 2002
********... |
#include <stdio.h>
void main()
{
float sale;
while (1)
{
printf("Enter sales in pounds: ");
scanf("%f", &sale);
if (sale == -1)
break;
printf("Salary is: £%.2f\n\n", 200.0 + (sale * 0.09));
}
} |
/*!
* Copyright (c) 2014 by Contributors
* \file tensor.h
* \brief header file of tensor data structure and functions
* This lib requires explicit memory allocation and de-allocation
* all the data structure Tensor<cpu,1>, Tensor<gpu,1> are like handles(pointers),
* no memory allocation is happening during ca... |
//-------------------------------------------------------------------------------------------------------
// Copyright (C) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
//-------------------------------------------------... |
// Copyright (c) 2014-2017, The Monero 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 o... |
//==============================================================================
// config.h
// config settings for application
//
// Created by Hugo Pristauz on 2021-Dec-15
// Copyright © 2021 fuseAware. All rights reserved.
//==============================================================================
//
// Cm... |
#pragma once
#include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <stdint.h>
// System.Array
struct Il2CppArray;
#include "mscorlib_System_ValueType1744280289.h"
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offse... |
//
// Licensed under the terms in License.txt
//
// Copyright 2010 Allen Ding. All rights reserved.
//
#import "KiwiConfiguration.h"
@class KWMessagePattern;
@interface KWStub : NSObject {
@private
KWMessagePattern *messagePattern;
id value;
id returnValueTimes;
int returnedValueTimes;
id secondV... |
#pragma once
class GuiComponent;
class GuiEvent;
class GuiAttribute;
#include <vector>
#include <mutex>
class GuiFeature
{
protected:
std::recursive_mutex mutex;
friend GuiComponent;
GuiComponent* component = nullptr;
GuiFeature(GuiComponent*);
public:
GuiFeature(GuiFeature&)=delete;
~GuiFeature();
virtual... |
/**
* @file core.h Internal API
*
* Copyright (C) 2010 Creytiv.com
*/
#include <limits.h>
/* max bytes in pathname */
#if defined (PATH_MAX)
#define FS_PATH_MAX PATH_MAX
#elif defined (_POSIX_PATH_MAX)
#define FS_PATH_MAX _POSIX_PATH_MAX
#else
#define FS_PATH_MAX 512
#endif
/**
* RFC 3551:
*
* 0 - 95 ... |
/*****************************************************************************
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... |
/*
* 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 distributed in the hope that it will be use... |
/*! \file sem.h
\brief Semaphore management syscalls.
*/
#ifndef __SYS_SEM_H__
#define __SYS_SEM_H__
#include <ppu-lv2.h>
/*! \brief Default protocol for semaphore attributes. */
#define SYS_SEM_ATTR_PROTOCOL 0x0002
/*! \brief Default sharing policy for semaphore attributes. */
#define SYS_SEM_ATTR_PSHARED 0x02... |
#pragma once
#include <jsi/jsi.h>
namespace Babylon
{
using Dispatcher = std::function<void(std::function<void()>)>;
void Initialize(facebook::jsi::Runtime& jsiRuntime, Dispatcher jsDispatcher);
void Deinitialize();
void UpdateView(void* windowPtr, size_t width, size_t height);
void RenderView();... |
/* file: ip.c
* description: IPv4 protocol implementation (RFC791)
* date: 02/2013
* author: Sergio Johann Filho <sergio.johann@acad.pucrs.br>
*/
#include <hellfire.h>
#include <ustack.h>
static uint32_t ipchksum(uint8_t *packet)
{
uint32_t sum=0;
uint16_t i;
for(i = 0; i < 20; i +=... |
/******************************************************************************
* device/hid/hid.h
* by Alex Chadwick
*
* A light weight implementation of the USB protocol stack fit for a simple
* driver.
*
* device/hid/hid.h contains definitions relating to generic human interface
* devices. Information about the hi... |
//
// MyTextView.h
// JGB
//
// Created by JGBMACMINI01 on 14-12-11.
// Copyright (c) 2014年 JGBMACMINI01. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface MyTextView : UITextView
- (void)anyStyle ;
@end |
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_UI_COCOA_APPS_APP_SHIM_MENU_CONTROLLER_MAC_H_
#define CHROME_BROWSER_UI_COCOA_APPS_APP_SHIM_MENU_CONTROLLER_MAC_H_
#import <Cocoa/... |
// REQUIRES: x86-registered-target
// REQUIRES: powerpc-registered-target
// UNSUPPORTED: darwin
//
// Generate all the types of files we can bundle.
//
// RUN: %clang -O0 -target %itanium_abi_triple %s -E -o %t.i
// RUN: %clangxx -O0 -target %itanium_abi_triple -x c++ %s -E -o %t.ii
// RUN: %clang -O0 -target %itaniu... |
// Auto-generated file. Do not edit!
// Template: src/f32-dwconv2d-chw/5x5s2p2-wasmsimd-splat.c.in
// Generator: tools/xngen
//
// Copyright 2020 Google LLC
//
// This source code is licensed under the BSD-style license found in the
// LICENSE file in the root directory of this source tree.
#include <assert.h>
#i... |
/**
*
* @generated s Tue Jan 7 11:45:24 2014
*
**/
#define _TYPE float
#define _PREC float
#define _LAMCH LAPACKE_slamch_work
#define _NAME "PLASMA_spotrf"
/* See Lawn 41 page 120 */
#define _FMULS FMULS_POTRF( N )
#define _FADDS FADDS_POTRF( N )
#include "./timing.c"
static int
RunTest(int *iparam, float *d... |
/*
* WMGaugeView.h
*
* Copyright (C) 2014 William Markezana <william.markezana@me.com>
*
*/
#import <UIKit/UIKit.h>
/**
* Styling enumerations
*/
typedef enum
{
WMGaugeViewSubdivisionsAlignmentTop,
WMGaugeViewSubdivisionsAlignmentCenter,
WMGaugeViewSubdivisionsAlignmentBottom
}
WMGaugeViewSubdivisionsAlignm... |
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/protobuf/util/internal/testdata/default_value_test.proto
#ifndef PROTOBUF_google_2fprotobuf_2futil_2finternal_2ftestdata_2fdefault_5fvalue_5ftest_2eproto__INCLUDED
#define PROTOBUF_google_2fprotobuf_2futil_2finternal_2ftestdata_2fdefault_5fv... |
/****************************************************************************************************************************
MySQL_Generic_WiFiNINA.h
Library for communicating with a MySQL or MariaDB Server
Based on and modified from Dr. Charles A. Bell's MySQL_Connector_Arduino Library https://github.com/... |
/* $Id$
*
* ICC specific routines
*
* Author Matt Henderson & Guy Ellis
* Copyright by Traverse Technologies Pty Ltd, www.travers.com.au
*
* This software may be used and distributed according to the terms
* of the GNU General Public License, incorporated herein by reference.
*
* 1999.6.25 Initial im... |
// -*- C++ -*-
#ifndef DUNE_STOKES_BICGSTAB_BLAS_H
#define DUNE_STOKES_BICGSTAB_BLAS_H
// ============================================================================
//
// BICGstab
//
// siehe
// Ashby, Manteuffel, Saylor
// A taxononmy for conjugate gradient methods
// SIAM J Numer Anal 27, 1542-1568 (19... |
#include <3ds/util/rbtree.h>
#include "rbtree_internal.h"
static inline rbtree_node_t*
do_minmax(const rbtree_t *tree,
int max)
{
rbtree_node_t *node = tree->root;
if(node == NULL)
return NULL;
while(node->child[max] != NULL)
node = node->child[max];
return node;
}
rbtree_node_... |
/*
* Copyright (c) 2018 STMicroelectronics
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <zephyr.h>
#include <sys/printk.h>
#include <drivers/gpio.h>
#include <drivers/led.h>
#include <drivers/i2c.h>
#include <drivers/spi.h>
#include <drivers/sensor.h>
#include <usb/usb_device.h>
#include <drivers/uart.h>
... |
//
// Generated by class-dump 3.5 (64 bit) (Debug version compiled Mar 29 2017 23:22:24).
//
// class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2015 by Steve Nygard.
//
#import "MMService.h"
#import "MMService-Protocol.h"
@class NSString;
@interface WCPayDigitalCertMgr : MMService <MMService>
{
N... |
/*
* Copyright 2006 The Android Open Source Project
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef SkDashPathEffect_DEFINED
#define SkDashPathEffect_DEFINED
#include "SkPathEffect.h"
class SK_API SkDashPathEffect {
public:
/** intervals: ar... |
/* Move registers around to reduce number of move instructions needed.
Copyright (C) 1987, 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
1999, 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
This file is part of GCC.
GCC is free software; you can redistribute it and/or modify it under
... |
/*------------------------------------------------------------------------------
BOD test.C - adapted for the P89LPC98x
Demonstration for Enhanced BOD of LPC98x
Copyright NXP Semiconductors.
Rev.01, 2009 Jun 25.
------------------------------------------------------------------------------*/
#include <REG98x.H> ... |
#include "mupdf/html.h"
enum { T, R, B, L };
static const char *default_css =
"@page{margin:1em 0}"
"a{color:#06C;text-decoration:underline}"
"address{display:block;font-style:italic}"
"b{font-weight:bold}"
"bdo{direction:rtl;unicode-bidi:bidi-override}"
"blockquote{display:block;margin:1em 40px}"
"body{display:block... |
/* Copyright (C) 2001-2020 Free Software Foundation, Inc.
Contributed by Jakub Jelinek <jakub@redhat.com>.
This file is part of the GNU C Library.
The GNU C 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 Fr... |
//
// 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 <objc/NSObject.h>
@interface SystemConfiger : NSObject
{
int _enviroment;
}
+ (id)sharedSystemConfiger;
@property(nonatom... |
#pragma once
#include"Application.h"
#include"Component.h"
#include<imgui.h>
class FrameList : public Component
{
public:
FrameList();
~FrameList();
virtual void update() override;
virtual void render() override;
}; |
/**
* @file
*
* URL Model Management.
*
* These functions support inferring the format X implementation for urls.
* It looks at various fragment (#...) pairs.
*
* Copyright 2018 University Corporation for Atmospheric
* Research/Unidata. See COPYRIGHT file for more info.
*/
#include "config.h"
#include <stdlib... |
/* fdimd2
Copyright (C) 2006, 2007 Sony Computer Entertainment 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
... |
//******************************************************************************
//
// Copyright (c) 2016 Microsoft Corporation. All rights reserved.
//
// This code is licensed under the MIT License (MIT).
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LI... |
/*
* balloc.c -- Block allocation module
*
* Copyright (c) GoAhead Software Inc., 1995-2010. All Rights Reserved.
*
* See the file "license.txt" for usage and redistribution license requirements
*
*/
#define IN_BALLOC
#include "balloc.h"
#include <stdarg.h>
#include <stdlib.h>
#include <string.h>
#include <st... |
/* -------------------------------------------------------------------------
// WINX: a C++ template GUI library - MOST SIMPLE BUT EFFECTIVE
//
// This file is a part of the WINX Library.
// The use and distribution terms for this software are covered by the
// Common Public License 1.0 (http://opensource.org/licenses... |
/*This file is part of the FEBio source code and is licensed under the MIT license
listed below.
See Copyright-FEBio.txt for details.
Copyright (c) 2021 University of Utah, The Trustees of Columbia University in
the City of New York, and others.
Permission is hereby granted, free of charge, to any person obtaining a... |
// Copyright 2014 PDFium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
#ifndef FPDFSDK_PWL_CPWL_EDIT_H_
#define FPDFSDK_PWL_CPWL_EDIT_H_
#include <u... |
/* text version of maze 'mazefiles/binary/minos01w.maz'
generated by mazetool (c) Peter Harrison 2018
o---o---o---o---o---o---o---o---o---o---o---o---o---o---o---o---o
| | | | |
o o o o---o---o---o o o o o o o o o o o
| | | ... |
/*
* Copyright © 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 deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, pub... |
/*
* This file is part of the MicroPython project, http://micropython.org/
*
* The MIT License (MIT)
*
* Copyright (c) 2020 Lucian Copeland for Adafruit Industries
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Softwar... |
//k_road09.c - Road through Koenig - coded by Circe 11/15/03
#include <std.h>
#include "../koenig.h"
inherit VILROADS;
void create() {
::create();
set_long(
"%^ORANGE%^This %^BOLD%^%^BLACK%^na%^RESET%^rr%^BOLD%^o%^BLACK%^w b%^RESET%^r%^BOLD%^o%^RESET%^ke%^BOLD%^%^BLACK%^n r%^WHITE%^oa%^RESET%^dw%^BOLD%^%^B... |
#ifndef RecoLocalTracker_SiStripClusterizer_SiStripApvShotCleaner_H
#define RecoLocalTracker_SiStripClusterizer_SiStripApvShotCleaner_H
#include "FWCore/MessageLogger/interface/MessageLogger.h"
#include "DataFormats/Common/interface/DetSetVector.h"
#include "DataFormats/Common/interface/DetSetVectorNew.h"
#include "Da... |
/*
* QEMU ARM CPU -- internal functions and types
*
* Copyright (c) 2014 Linaro Ltd
*
* 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... |
/*=========================================================================
Program: Visualization Toolkit
Module: vtkTransformTextureCoords.h
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This s... |
/***************************************************************************
Copyright (c) 2013, The OpenBLAS 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... |
#ifndef SENSOR_RADAR
#define SENSOR_RADAR
#include "sensor.h"
#include <cmath>
#define STD_R 0.3
#define STD_TH 0.03
#define STD_PV 0.3
#include <iostream>
using namespace std;
using Eigen::VectorXd;
class Radar : public Sensor{
public:
Radar();
virtual ~Radar();
VectorXd GetMeasurement(VectorXd x);
Vec... |
/*
* arch/arm/mach-kirkwood/rd88f6192-nas-setup.c
*
* Marvell RD-88F6192-NAS Reference Board Setup
*
* This file is licensed under the terms of the GNU General Public
* License version 2. This program is licensed "as is" without any
* warranty of any kind, whether express or implied.
*/
#include <linux/kernel... |
/**
* |----------------------------------------------------------------------
* | Copyright (c) 2016 Tilen Majerle
* |
* | 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 r... |
#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_XKVAreaCombation_TestsVersionNumber;
FOUNDATION_EXPORT const unsigned char Pods_XKVAreaCombati... |
//
// BAKitVC_WKWebView3.h
// BAWKWebView
//
// Created by boai on 2017/6/30.
// Copyright © 2017年 boai. All rights reserved.
//
#import "BABaseViewController.h"
@interface BAKitVC_WKWebView3 : BABaseViewController
@end |
// This file was generated based on C:/Users/JuanJose/AppData/Local/Fusetools/Packages/Fuse.Reactive.Bindings/1.9.0/ItemsWindowList.uno.
// WARNING: Changes might be lost if you edit this file directly.
#pragma once
#include <Fuse.Reactive.IObserver.h>
#include <Fuse.Reactive.WindowL-23794a38.h>
#include <Fuse.Reactiv... |
#region Local Var
var uLocal_0 = 0;
var uLocal_1 = 0;
int iLocal_2 = 0;
int iLocal_3 = 0;
int iLocal_4 = 0;
int iLocal_5 = 0;
int iLocal_6 = 0;
int iLocal_7 = 0;
int iLocal_8 = 0;
int iLocal_9 = 0;
int iLocal_10 = 0;
int iLocal_11 = 0;
var uLocal_12 = 0;
var uLocal_13 = 0;
float fLocal_14 = 0f;
var uLoc... |
/* SPDX-License-Identifier: GPL-2.0 */
/*
* Support for Intel Camera Imaging ISP subsystem.
* Copyright (c) 2015, Intel Corporation.
*
* This program is free software; you can redistribute it and/or modify it
* under the terms and conditions of the GNU General Public License,
* version 2, as published by the Free... |
/*
The Forgotten Client
Copyright (C) 2020 Saiyans King
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 software for any purpose,
in... |
/**
* SmartCard-HSM PKCS#11 Module
*
* Copyright (c) 2013, CardContact Systems GmbH, Minden, Germany
* 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 ... |
#include <stdio.h> // changeme
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <unistd.h>
#include <pthread.h>
#include <sys/socket.h>
#include <errno.h>
#include "headers/includes.h"
#include "headers/server.h"
#include "headers/telnet_info.h"
#include "headers/binary.h"
#include "headers/util.h"
... |
// The author disclaims copyright to this source code.
#ifndef _TEST_MEM_H_
#define _TEST_MEM_H_
/**
* @file
* FreeRTOS MEM test task.
*/
#include "spi_mem.h"
#include "esp_err.h"
typedef struct test_mem_config_t {
spi_mem_handle_t spi_mem_handle;
} test_mem_config_t;
esp_err_t test_mem(test_mem_config_t config... |
// Copyright 2016 The Fuchsia 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 SYSROOT_ZIRCON_HW_USB_H_
#define SYSROOT_ZIRCON_HW_USB_H_
// clang-format off
#include <endian.h>
#include <stdint.h>
#include <zircon/compiler.h... |
/*
* Copyright (C) 2014 Mozilla Foundation
*
* 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 (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the LICENSE
* file in the root directory of this source tree.
*/
#pragma once
#include <folly/Format.h>
#include "mcrouter/lib/network/AsciiSerialized.h"
#include "mcrouter/lib/network/McSeriali... |
/* -*- Mode: C++; tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*- */
/*
* Copyright 2010 Couchbase, 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
*
* h... |
C $Header: /u/gcmpack/MITgcm/verification/tutorial_deep_convection/code/SIZE.h,v 1.2 2008/04/23 23:24:22 jmc Exp $
C $Name: $
C
C /==========================================================\
C | SIZE.h Declare size of underlying computational grid. |
C |==================================================... |
//
// VZFRasterizeNodeTool.h
// VZFlexLayout
//
// Created by heling on 2017/2/10.
// Copyright © 2017年 Vizlab. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "VZFRenderer.h"
#import "VZFNode.h"
#import "VZFNodeLayout.h"
@interface VZFRasterizeNodeTool : NSObject
+ (VZFRenderer *)getRenderer4... |
/*
* Copyright (c) 2004-2007 Voltaire, Inc. All rights reserved.
* Copyright (c) 2005 Intel Corporation. All rights reserved.
* Copyright (c) 2005 Mellanox Technologies Ltd. All rights reserved.
* Copyright (c) 2009 HNR Consulting. All rights reserved.
* Copyright (c) 2014 Intel Corporation. All rights reserved... |
/** @file
MSR Definitions for Intel(R) Xeon(R) Processor D product Family.
Provides defines for Machine Specific Registers(MSR) indexes. Data structures
are provided for MSRs that contain one or more bit fields. If the MSR value
returned is a single 32-bit or 64-bit value, then a data structure is not
provi... |
/**
* This header is generated by class-dump-z 0.2a.
* class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3.
*
* Source: (null)
*/
#import "WXPBGeneratedMessage.h"
@class BaseResponse, NSString;
@interface PayAuthAppResponse : WXPBGeneratedMessage {
}
@property(retain, nonatomic) NSString* callb... |
#pragma once
#include <stdint.h>
#include <stdlib.h>
uint64_t memhash(const void *buf, size_t len);
uint64_t memhash_cont(uint64_t seed, const void *buf, size_t len); |
//----------------------------------------------------------------------------
//
// TSDuck - The MPEG Transport Stream Toolkit
// Copyright (c) 2005-2021, Thierry Lelegard
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the f... |
// Copyright 2008-present Contributors to the OpenImageIO project.
// SPDX-License-Identifier: BSD-3-Clause
// https://github.com/OpenImageIO/oiio/blob/master/LICENSE.md
/////////////////////////////////////////////////////////////////////////////
// Private definitions internal to the jpeg.imageio plugin
///////////... |
/****************************************************************************
* binfmt/binfmt_schedunload.c
*
* Copyright (C) 2013, 2016-2017 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
*
* Redistribution and use in source and binary forms, with or without
* modification, are ... |
#include "contiki.h"
#include "os/net/mac/framer/frame802154.h"
#include "os/net/mac/tsch/tsch.h"
#include "os/net/mac/tsch/tsch-conf.h"
#include "os/net/mac/tsch/tsch-schedule.h"
#include "os/net/ipv6/uip-nd6.h"
#include "os/net/ipv6/uipopt.h"
#include "os/net/queuebuf.h"
#include "os/net/nbr-table.h"
#include "os/sys... |
/*
* Copyright (C) ST-Ericsson SA 2010
*
* License Terms: GNU General Public License, version 2
* Author: Rabin Vincent <rabin.vincent@stericsson.com> for ST-Ericsson
*/
#ifndef __LINUX_MFD_STMPE_H
#define __LINUX_MFD_STMPE_H
#include <linux/mutex.h>
struct device;
struct regulator;
enum stmpe_block {
STMPE_B... |
/* $OpenBSD: v3_skey.c,v 1.13 2015/09/30 18:41:06 jsing Exp $ */
/* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
* project 1999.
*/
/* ====================================================================
* Copyright (c) 1999 The OpenSSL Project. All rights reserved.
*
* Redistribution and us... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.