text stringlengths 4 6.14k |
|---|
#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/interrupt.h>
#include <linux/platform_device.h>
#include <linux/switch.h>
#include <linux/workqueue.h>
#include <linux/gpio.h>
#include <linux/delay.h>
#include <linux/slab.h>
#include <asm/io.h>
#include <plat/imapx.h>
#ifdef... |
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
//
// copyright : (C) 2008 by Eran Ifrah
// file name : vcimporter.h
//
// -----------------------------------------------------------... |
/*
* $Id$
*
* (C) 2008 by dbt <info@dbox2-tuning.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 Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* Thi... |
#ifndef __SCENE_PRIMITIVE_ARRAY__H_
#define __SCENE_PRIMITIVE_ARRAY__H_
/*LICENSE_START*/
/*
* Copyright (C) 2014 Washington University School of Medicine
*
* 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 <string.h>
void* memset(void* bufptr, int value, size_t size)
{
unsigned char* buf = (unsigned char*) bufptr;
for ( size_t i = 0; i < size; i++ )
buf[i] = (unsigned char) value;
return bufptr;
}
|
// Copyright (C) 2005 - 2022 Settlers Freaks (sf-team at siedler25.org)
//
// SPDX-License-Identifier: GPL-2.0-or-later
#pragma once
#include "IngameWindow.h"
#include "gameTypes/ServerType.h"
#include <boost/signals2/connection.hpp>
class iwDirectIPConnect : public IngameWindow
{
private:
ServerType serverType_... |
/* ScummVM - Graphic Adventure Engine
*
* ScummVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU... |
#ifndef TORUS_H
#define TORUS_H
#include "objects/solid.h"
#include "transformer.h"
/**
* A mathematical torus.
*
* A torus are the points satisfying
*
* \f[ (x^2 + y^2 + z^2 + R^2 - r^2)^2 - 4R^2(x^2+y^2) = 0 \f]
*
* with volume
*
* \f[ V = \frac{1}{4}\pi^2(r+R)(R-r)^2 \f]
*
* and surface area
*
* \f[ ... |
/*
This is part of TeXworks, an environment for working with TeX documents
Copyright (C) 2011-2013 Jonathan Kew, Stefan Löffler, Charlie Sharpsteen
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 Foundatio... |
/*
* scandir, alphasort - scan a directory
*
* implementation for systems that do not have it in libc
*/
#include "../config.h"
#ifndef HAVE_SCANDIR
#include <sys/types.h>
#include <dirent.h>
#include <stdlib.h>
#include <stddef.h>
#include <string.h>
/*
* convenience helper function for scandir's |compar()| f... |
#ifndef LOGGING_H
#define LOGGING_H
#define TRACE_DEBUG "DEBUG"
#define TRACE_INFO "INFOR"
#define TRACE_WARNING "WARNI"
#define TRACE_ERROR "ERROR"
#define TRACE_FATAL "FATAL"
void initLoggingFile (const char *path);
void logging (const char *tag, const char *format, ...);
void closeLoggingFi... |
/*
* OMAP3 voltage domain data
*
* Copyright (C) 2007, 2010 Texas Instruments, Inc.
* Rajendra Nayak <rnayak@ti.com>
* Lesly A M <x0080970@ti.com>
* Thara Gopinath <thara@ti.com>
*
* Copyright (C) 2008, 2011 Nokia Corporation
* Kalle Jokiniemi
* Paul Walmsley
*
* This program is free software; you can redis... |
/*
* Copyright (C) 2016-2017 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... |
/*
* This file is part of the coreboot project.
*
* Copyright (C) 2007 Uwe Hermann <uwe@hermann-uwe.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 Software Foundation; either version 2 of the License, ... |
/*
* Copyright 2010 Cisco Systems, Inc. All rights reserved.
*
* This program is free software; you may redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; version 2 of the License.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WAR... |
/*-------------------------------------------------------------------------
atanf.c - Computes arctan of a 32-bit float as outlined in [1]
Copyright (C) 2001, 2002, Jesus Calvino-Fraga <jesusc At ieee.org>
This library is free software; you can redistribute it and/or modify it
under the terms of the GNU G... |
/* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
/*
Rosegarden
A sequencer and musical notation editor.
Copyright 2000-2010 the Rosegarden development team.
See the AUTHORS file for more details.
This program is free software; you can redistribute it and/or
... |
/*
* The ManaPlus Client
* Copyright (C) 2012-2014 The ManaPlus Developers
*
* This file is part of The ManaPlus Client.
*
* 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 v... |
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
#ifndef XPATH_ROUTING_HELPER_H
#define XPATH_ROUTING_HELPER_H
#include "ns3/ipv4-xpath-routing.h"
#include "ns3/ipv4-routing-helper.h"
namespace ns3 {
class Ipv4XPathRoutingHelper : public Ipv4RoutingHelper
{
public:
Ipv4XPathRoutingHelper ();
... |
//! A singleton abstract class to hold a game state
//! Uses the singleton pattern
#ifndef GAMESTATE_H
#define GAMESTATE_H
// Forward declarations
namespace GfxModule
{
class GfxModuleWrapper;
}
namespace SoundModule
{
class SoundModuleWrapper;
}
namespace InputModule
{
class Input;
... |
#include <Python.h>
//#define dbg(...) fprintf (stderr, __VA_ARGS__)
#define dbg(...)
extern PyTypeObject pylcmeventlog_type;
extern PyTypeObject pylcm_type;
extern PyTypeObject pylcm_subscription_type;
/* module initialization */
static PyMethodDef lcmmod_methods[] = {
{ NULL, NULL } /* sentinel */
};
PyDoc_ST... |
#include<stdio.h>
#include<conio.h>
typedef struct node
{
int info;
struct node *next;
}node_type;
void insert(node_type**,node_type**);
void del(node_type **);
void display(node_type *);
void main()
{
node_type *left=NULL,*right=NULL;
int ch;
do
{
printf("\n menu");
printf("\n 1... |
#if(0)
FTANGLE v1.53, created with UNIX on "Thursday, September 21, 1995 at 15:06."
COMMAND LINE: "web/ftangle web/y_type -A -# --F -= 1.53/web/y_type.h"
RUN TIME: "Saturday, September 23, 1995 at 16:17."
WEB FILE: "web/y_type.web"
CHANGE FILE: (none)
#endif
void HUGE*alloc PROTO((CONST outer_char abbre... |
/*
Copyright (c) 2012-2013 Montel Laurent <montel@kde.org>
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.
This program is distributed in the hope that it will be useful, but
... |
/*
* song_editor.h - declaration of class songEditor, a window where you can
* setup your songs
*
* Copyright (c) 2004-2011 Tobias Doerffel <tobydox/at/users.sourceforge.net>
*
* This file is part of Linux MultiMedia Studio - http://lmms.sourceforge.net
*
* This program is free software; you ca... |
/* G E T _ I N P . C
*
* Copyright (C) 2019 Duncan Roe */
/* Implement ^<INP> and ^<INPF> run machine opcodes */
/* Headers */
#include <errno.h>
#include <string.h>
#include <ctype.h>
#include <stdlib.h>
#include "alu.h"
bool
get_inp(double *fval, long *val, long *len, char **err)
{
char *endptr; ... |
/*
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 ... |
// Copyright 2013 Dolphin Emulator Project
// Licensed under GPLv2+
// Refer to the license.txt file included.
// Modified for Ishiiruka By Tino
#pragma once
#include <memory>
#include "VideoCommon/NativeVertexFormat.h"
extern const float fractionTable[32];
struct VertexLoaderParameters
{
u8* source;
u8* destinati... |
#define IN_JSLTYPETAB_C
#include "jsltypetab.h"
#define HASH_FUN(elemp) hashFun(elemp->d->name)
#define HASH_ELEM_EQUAL(e1,e2) ( \
e1->d->bits.symbolType==e2->d->bits.symbolType \
&& strcmp(e1->d->name,e2->d->name)==0 ... |
#ifndef SCGRAPH_MATERIAL_HH
#define SCGRAPH_MATERIAL_HH
#include "color_rgba.h"
/** a material */
struct Material
{
float _shinyness;
ColorRGBA _ambient_reflection;
ColorRGBA _diffuse_reflection;
ColorRGBA _specular_reflection;
ColorRGBA _emissive_color;
Material ();
};
#endif
|
/*
* input.h: header for input.c
*
* Written By Michael Sandrof
*
* Copyright (c) 1990 Michael Sandrof.
* Copyright (c) 1991, 1992 Troy Rollo.
* Copyright (c) 1992-2014 Matthew R. Green.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitt... |
/*
The Balsa Asynchronous Hardware Synthesis System
Copyright (C) 1995-2003 Department of Computer Science
The University of Manchester, Oxford Road, Manchester, UK, M13 9PL
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
... |
#import <Foundation/Foundation.h>
#import <CoreData/CoreData.h>
#import <WordPressApi/WordPressApi.h>
#import "WordPressComApi.h"
@class Blog;
@interface WPAccount : NSManagedObject
///-----------------
/// @name Properties
///-----------------
@property (nonatomic, strong) NSNumber *userID;
@property (nonat... |
/****************************************************************************/
/*
* uclinux.c -- generic memory mapped MTD driver for uclinux
*
* (C) Copyright 2002, Greg Ungerer (gerg@snapgear.com)
*
* $Id: uclinux.c,v 1.1.1.1 2010/03/11 21:07:58 kris Exp $
*/
/************************************************... |
/*
* Copyright (C) 1996-2015 The Squid Software Foundation and contributors
*
* Squid software is distributed under GPLv2+ license and includes
* contributions from numerous individuals and organizations.
* Please see the COPYING and CONTRIBUTORS files for details.
*/
/*
NT_auth - Version 2.0
Modified to a... |
#include <stdio.h>
void main(int argc, const char *argv[]){
printf("Mea Error! =P\n");
return 0;
}
|
/*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: net command
* FILE: base/applications/network/net/cmdContinue.c
* PURPOSE:
*
* PROGRAMMERS: Aleksandar Andrejevic <theflash AT sdf DOT lonestar DOT org>
*/
#include "net.h"
INT cmdContinue(INT argc, WCHAR **argv)
{
... |
/*
* arch/arm/mach-netx/generic.c
*
* Copyright (C) 2005 Sascha Hauer <s.hauer@pengutronix.de>, Pengutronix
*
* 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.
*
* This program ... |
/********************************************
* *
* Eyüp Can KILINÇDEMİR *
* KARADENİZ TEKNİK UNİVERSİTESİ *
* ceksoft.wordpress.com *
* eyupcankilincdemir@gmail.com *
* ... |
/*
* NEC PC-9801 keyboard controller driver for Linux
*
* Copyright (c) 1999-2002 Osamu Tomita <tomita@cinet.co.jp>
* Based on i8042.c written by Vojtech Pavlik
*/
/*
* 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 p... |
// -------------------------------------------------------------------------
// generator/ecp_g_force.h dla QNX6
// Deklaracje generatorow dla procesow ECP z wykorzystaniem sily
//
// -------------------------------------------------------------------------
#if !defined(_ECP_GEN_EIH_H)
#def... |
/*
mimetypeswidget.h
This file is part of GammaRay, the Qt application inspection and
manipulation tool.
Copyright (C) 2012-2014 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com
Author: Volker Krause <volker.krause@kdab.com>
This program is free software; you can redistribute it and/or m... |
/*
* UWB Multi-interface Controller device management.
*
* Copyright (C) 2007 Cambridge Silicon Radio Ltd.
*
* This file is released under the GNU GPL v2.
*/
#include <linux/kernel.h>
#include <linux/slab.h>
#include <linux/uwb/umc.h>
static void umc_device_release(struct device *dev)
{
struct umc_... |
/*
* Copyright 2013 Michael Zanetti
*
* 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; version 2.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ... |
/* Copyright (C) 1995,1996 Robert de Bath <rdebath@cix.compulink.co.uk>
* This file is part of the Linux-8086 C library and is distributed
* under the GNU Library General Public License.
*
* This is a combined alloca/malloc package. It uses a classic algorithm
* and so may be seen to be quite slow compared to more... |
/**
******************************************************************************
* @file WWDG/WWDG_Example/Inc/main.h
* @author MCD Application Team
* @version V1.1.0
* @date 26-June-2014
* @brief Header for main.c module.
****************************************************************... |
/***************************************************************************
* Copyright (C) 2004 by Diego "Flameeyes" Pettenò *
* dgp85@users.sourceforge.net *
* *
* This pr... |
/*
Copyright (C) 2014 Erik Ogenvik
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 ho... |
#define DEB(stmt) /* stmt */ /* For debug printing */
#define DEB2(stmt) /* stmt */ /* For debug printing */
#define DEB3(stmt) stmt /* For debug printing */
#define DEB_ALWAYS(stmt) stmt /* Interesting things */
#define _INCLUDE_POSIX_SOURCE 1
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <strin... |
/* CC0 (Public domain) - see LICENSE file for details */
#ifndef CCAN_TYPESAFE_CB_H
#define CCAN_TYPESAFE_CB_H
#include "config.h"
#define typesafe_cb_cast(desttype, oktype, expr) ((desttype)(expr))
/**
* typesafe_cb_cast3 - only cast an expression if it matches given types
* @desttype: the type to cast to
* @ok1:... |
/*******************************************************************************
* This file is part of OpenWSN, the Open Wireless Sensor Network Platform.
*
* Copyright (C) 2005-2010 zhangwei(TongJi University)
*
* OpenWSN is a free software; you can redistribute it and/or modify it under
* the terms of the GNU ... |
// Copyleft 2008 Chris Korda
// 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 any later version.
/*
chris korda
revision history:
rev date co... |
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/*
* File: FileGLogger.h
* Author: gedas
*
* Created on Pirmadienis, 2016, kovas 28, 22.32
*/
#ifndef FILEGLOGGER_H
#define F... |
#ifndef DIALOGS_SETTINGSDIALOG_H
#define DIALOGS_SETTINGSDIALOG_H
#include "../global.h"
#include <QDialog>
#include <memory>
namespace QtUtilities {
class OptionCategoryModel;
class OptionCategoryFilterModel;
class OptionCategory;
class OptionPage;
namespace Ui {
class SettingsDialog;
}
class QT_UTILITIES_EXPOR... |
#ifndef OBJECT_H_
#define OBJECT_H_
#include "Config.h"
#include "IDGenerator.h"
#include <string>
namespace buf
{
// FIXME: key_generator may be used in different threads
// XXX: only has id, id may be std::string
template <typename KG = IDGenerator >
class Object
{
public:
typedef KG key_generator;
typed... |
/*
* Milkymist VJ SoC (Software)
* Copyright (C) 2007, 2008, 2009, 2010 Sebastien Bourdeauducq
*
* 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, version 3 of the License.
*
* This progra... |
/*
* Copyright (C) 2016 Matt Kilgore
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License v2 as published by the
* Free Software Foundation.
*/
#include <protura/types.h>
#include <protura/debug.h>
#include <protura/string.h>
#include <pr... |
/*
* Copyright 2000-2015 Rochus Keller <mailto:rkeller@nmr.ch>
*
* This file is part of the CARA (Computer Aided Resonance Assignment,
* see <http://cara.nmr.ch/>) NMR Application Framework (NAF) library.
*
* The following is the license that applies to this copy of the
* library. For a license to use the librar... |
#include "Click_7x10_R_types.h"
const uint32_t _C7X10R_SPI_CFG[ 2 ] =
{
_SPI_FPCLK_DIV2,
_SPI_FIRST_CLK_EDGE_TRANSITION |
_SPI_CLK_IDLE_LOW |
_SPI_MASTER |
_SPI_MSB_FIRST |
_SPI_8_BIT |
_SPI_SSM_ENABLE |
_SPI_SS_DISABLE |
_SPI_SSI_1
};
|
/*
Copyright (c) 2007, 2009 Volker Krause <vkrause@kde.org>
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 ... |
/*
* SYSCALL_DEFINE3(getrandom, char __user *, buf, size_t, count, unsigned int, flags)
*/
#include <errno.h>
#include "maps.h"
#include "sanitise.h"
#include "trinity.h"
#define GRND_NONBLOCK 0x0001
#define GRND_RANDOM 0x0002
static void sanitise_getrandom(__unused__ struct syscallrecord *rec)
{
(void) common... |
#include <linux/blkdev.h>
/* hm. sometimes this pragma is ignored :(
* use BUILD_BUG_ON instead.
#pragma GCC diagnostic warning "-Werror"
*/
/* in Commit 5a7bbad27a410350e64a2d7f5ec18fc73836c14f (between Linux-3.1 and 3.2)
make_request() becomes type void. Before it had type int.
*/
void drbd_make_request(stru... |
/*
* atmel-pcm.c -- ALSA PCM interface for the Atmel atmel SoC.
*
* Copyright (C) 2005 SAN People
* Copyright (C) 2008 Atmel
*
* Authors: Sedji Gaouaou <sedji.gaouaou@atmel.com>
*
* Based on at91-pcm. by:
* Frank Mandarino <fmandarino@endrelia.com>
* Copyright 2006 Endrelia Technologies Inc.
*
* Based o... |
/*
* Copyright 2003-2004 Sun Microsystems, Inc. All Rights Reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* - Redistributions of source code must retain the above copyright
* notice, this l... |
/**
@file system_ADUCRF101.h
@brief: CMSIS Cortex-M3 Device Peripheral Access Layer Header File
for the ADuCRF101
@version v0.2
@author PAD CSE group
@date March 09th 2012
@section disclaimer Disclaimer
THIS SOFTWARE IS PROVIDED BY ANALOG DEVICES INC. ``AS IS'' AND ANY EXPRESS OR
IMPLIED WARR... |
/***************************************************************************
qgsvectorlayerdiagramprovider.h
--------------------------------------
Date : September 2015
Copyright : (C) 2015 by Martin Dobias
Email : wonder dot sk at gmail dot com
********************... |
/*
randompool.c
(P)RNG, relies on system /dev/random to get the data.
Copyright:
Copyright (c) 2002, 2003 SFNT Finland Oy.
All rights reserved.
*/
#include "sshincludes.h"
#include "sshcrypt.h"
#include "sshcrypt_i.h"
#include "sshrandom_i.h"
#define SSH_DEBUG_MODULE "SshRandomPool"
typedef struct... |
#ifndef __CUSTOM_HEURISTIC_H_
#define __CUSTOM_HEURISTIC_H_
int apply_custom_fit(void);
#endif
|
/* ResidualVM - A 3D game interpreter
*
* ResidualVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms ... |
/*
** FamiTracker - NES/Famicom sound tracker
** Copyright (C) 2005-2014 Jonathan Liss
**
** 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 yo... |
#undef CONFIG_SENSORS_SIS5595
|
/*
* Copyright (C) 2005-2008 MaNGOS <http://www.mangosproject.org/>
*
* Copyright (C) 2008 Trinity <http://www.trinitycore.org/>
*
* 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 v... |
/*
* module.h Interface to the RADIUS module system.
*
* Version: $Id$
*
*/
#ifndef RADIUS_MODULES_H
#define RADIUS_MODULES_H
#include <freeradius-devel/ident.h>
RCSIDH(modules_h, "$Id$")
#include <freeradius-devel/conffile.h>
#ifdef __cplusplus
extern "C" {
#endif
typedef int (*packetmethod)(void *instance, ... |
#ifndef ARTERY_NETWORKINTERFACETABLE_H_
#define ARTERY_NETWORKINTERFACETABLE_H_
#include "artery/application/NetworkInterface.h"
#include "artery/utility/Channel.h"
#include <memory>
#include <unordered_set>
namespace artery
{
/**
* NetworkInterfaceTable maintains NetworkInterfaces registered at a Middleware
*/
cl... |
#if defined(__GNUC__)
#ident "University of Edinburgh $Id$"
#else
static char _WarperSourceViewer_h[] = "University of Edinburgh $Id$";
#endif
/*!
* \file WarperSourceViewer.h
* \author Zsolt Husz
* \date October 2008
* \version $Id$
* \par
* Address:
* MRC Human Genetics Unit,
... |
/* This file is part of the KDE libraries
Copyright (C) 2004-2005 Anders Lund <anders@alweb.dk>
Copyright (C) 2002 John Firebaugh <jfirebaugh@kde.org>
Copyright (C) 2001-2004 Christoph Cullmann <cullmann@kde.org>
Copyright (C) 2001 Joseph Wenninger <jowenn@kde.org>
Copyright (C) 1999 Jochen Wilhelmy <dig... |
/* Common code for ARM software single stepping support.
Copyright (C) 1988-2015 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 General Public License as published by
the Free Software Foundati... |
/*
==============================================================================
This file is part of the JUCE library.
Copyright (c) 2017 - ROLI Ltd.
JUCE is an open source library subject to commercial or open-source
licensing.
The code included in this file is provided under the terms o... |
//========================================================================================
//
// $HeadURL: svn://localhost/izine/iZinePlns/Codebase/trunk/iZinePublishUI/Source/Controls/TreeViewHeader/IZPTVColumnsInfo.h $
// $Revision: 2644 $
// $Date: 2011-03-31 09:47:39 +0200 (Thu, 31 Mar 2011) $
// $Author: rajkumar... |
/*
* ntfs-3g_common.h - Common declarations for ntfs-3g and lowntfs-3g.
*
* Copyright (c) 2010-2011 Jean-Pierre Andre
* Copyright (c) 2010 Erik Larsson
*
* This program/include file is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
*... |
//Copyright Paul Reiche, Fred Ford. 1992-2002
/*
* 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 pr... |
/** \file cmdline_progress_display.h */ // -*-c++-*-
// Copyright (C) 2010 Daniel Burrows
//
// 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... |
/**
* ${project-name} - a GNU/Linux console-based file manager
*
* Implementation of different actions related to iface
*
* Copyright 2008 Sergey I. Sharybin <g.ulairi@gmail.com>
* Copyright 2008 Alex A. Smirnov <sceptic13@gmail.com>
*
* This program can be distributed under the terms of the GNU GPL.
* See the... |
/* Copyright (c) 2011-2012, The Linux Foundation. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 and
* only version 2 as published by the Free Software Foundation.
*
* This program is distributed in the... |
/***************************************************************************
* __________ __ ___.
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> ... |
/*
* Copyright (C) 2011 Hendrik Leppkes
* http://www.1f0.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 Software Foundation; either version 2, or (at your option)
* any later version.
*
... |
/*
* Copyright (C) 2011 Anton Burdinuk
* clark15b@gmail.com
* https://tsdemuxer.googlecode.com/svn/trunk/xupnpd
*/
#ifndef __SOAP_H
#define __SOAP_H
namespace soap
{
class string
{
protected:
char* ptr;
int size;
public:
string(void):ptr(0),size(0) {}
~string(void)... |
// 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_GFX_ANIMATION_THROB_ANIMATION_H_
#define UI_GFX_ANIMATION_THROB_ANIMATION_H_
#include "ui/gfx/animation/slide_animation.h"
namespace gfx ... |
/*
This file is part of BGSLibrary.
BGSLibrary 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) any later version.
BGSLibrary is distributed in the hope that i... |
/********************
PhyloBayes MPI. Copyright 2010-2013 Nicolas Lartillot, Nicolas Rodrigue, Daniel Stubbs, Jacques Richer.
PhyloBayes 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 L... |
// Copyright (c) 2011 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_AUTOMATION_AUTOMATION_UTIL_H_
#define CHROME_BROWSER_AUTOMATION_AUTOMATION_UTIL_H_
#pragma once
#include <string>
#include "b... |
// 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 SANDBOX_LINUX_SECCOMP_BPF_VERIFIER_H__
#define SANDBOX_LINUX_SECCOMP_BPF_VERIFIER_H__
#include <linux/filter.h>
#include <utility>
#include ... |
//-----------------------------------------------------------------------------
// File: VerilogWireWriter.h
//-----------------------------------------------------------------------------
// Project: Kactus2
// Author: Esko Pekkarinen
// Date: 21.08.2014
//
// Description:
// Class for writing a Verilog wire d... |
/**
* @file sam3x_eth.h
* @brief SAM3X Ethernet MAC controller
*
* @section License
*
* Copyright (C) 2010-2013 Oryx Embedded. All rights reserved.
*
* This file is part of CycloneTCP Open.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Gen... |
/*
* Copyright (c) 2005, Bull S.A.. All rights reserved.
* Created by: Sebastien Decugis
* This program is free software; you can redistribute it and/or modify it
* under the terms of version 2 of the GNU General Public License as
* published by the Free Software Foundation.
*
* This program is distributed in the hop... |
/*
* Copyright (C) Dag Henning Liodden Sørbø <daghenning@lioddensorbo.com>
*
* 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.
*
* This program is distributed in the hope that it ... |
/*
* Copyright 1997-2008 Sun Microsystems, Inc. All Rights Reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code 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 Fou... |
//*****************************************************************************
// Mishira: An audiovisual production tool for broadcasting live video
//
// Copyright (C) 2014 Lucas Murray <lucas@polyflare.com>
// All rights reserved.
//
// This program is free software; you can redistribute it and/or modify it
// unde... |
#ifndef strings_h
#define strings_h
/* MSVC doesn't define ffs/ffsl. This dummy strings.h header is provided
* for both */
#include <intrin.h>
#pragma intrinsic(_BitScanForward)
static __forceinline int ffsl(long x)
{
unsigned long i;
if (_BitScanForward(&i, x))
return (i + 1);
... |
/** @file
The form data for user profile manager driver.
Copyright (c) 2009 - 2011, 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 distribution. The full text of the lice... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.