text
stringlengths
4
6.14k
/* * Copyright (c) 2000-2003,2005 Silicon Graphics, Inc. * 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 as * published by the Free Software Foundation. * * This program is distributed in the hope that it woul...
#include "ceph_debug.h" #include <linux/slab.h> #include "buffer.h" #include "decode.h" struct ceph_buffer *ceph_buffer_new(size_t len, gfp_t gfp) { struct ceph_buffer *b; b = kmalloc(sizeof(*b), gfp); if (!b) return NULL; b->vec.iov_base = kmalloc(len, gfp | __GFP_NOWARN); if (b->vec.iov_base) { b->is_v...
//===-- ubsan_init.h --------------------------------------------*- 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 // //===---------------------------...
/* * intc.c -- support for the old ColdFire interrupt controller * * (C) Copyright 2009, Greg Ungerer <gerg@snapgear.com> * * This file is subject to the terms and conditions of the GNU General Public * License. See the file COPYING in the main directory of this archive * for more details. */ #include <linux...
/** * @file * Application layered TCP connection API that executes a proxy-connect. * * This file provides a starting layer that executes a proxy-connect e.g. to * set up TLS connections through a http proxy. */ /* * Copyright (c) 2018 Simon Goldschmidt * All rights reserved. * * Redistribution and use in so...
#include QMK_KEYBOARD_H const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { LAYOUT( KC_KP_7, KC_KP_8, KC_KP_9, KC_KP_4, KC_KP_5, KC_KP_6, KC_KP_1, KC_KP_2, KC_KP_3, KC_KP_0 ), LAYOUT( KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS ), LAYOUT( KC_TRNS, KC_...
/* packet-wps.h * * Wifi Simple Config aka Wifi Protected Setup * * Written by Jens Braeuer using WiFi-Alliance Spec 1.0h and * parts of a patch by JP Jiang and Philippe Teuwen. November 2007 * * Spec: * https://www.wi-fi.org/knowledge_center_overview.php?type=4 * Patch: * http://wireshark.digimirror.nl/lists...
// Copyright 2014 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 ASH_WM_OVERVIEW_TRANSPARENT_ACTIVATE_WINDOW_BUTTON_H_ #define ASH_WM_OVERVIEW_TRANSPARENT_ACTIVATE_WINDOW_BUTTON_H_ #include "base/macros.h" #inc...
/* { dg-do compile } */ /* { dg-options "-O3" } */ int a, b, c, d; int e[100]; void fn1 () { int *f = &d; c = 6; for (; c; c--) { b = 0; for (; b <= 5; b++) { short g = e[(b + 2) * 9 + c]; *f = *f == a && e[(b + 2) * 9 + c]; } } }
/* * Copyright (C) ST-Ericsson AB 2010 * Author: Sjur Brendeland * License terms: GNU General Public License (GPL) version 2 */ #define pr_fmt(fmt) KBUILD_MODNAME ":%s(): " fmt, __func__ #include <linux/kernel.h> #include <linux/types.h> #include <linux/slab.h> #include <linux/errno.h> #include <net/caif/caif_lay...
/* * common UDP/RAW code * Linux INET implementation * * Authors: * Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.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 version * ...
// SPDX-License-Identifier: GPL-2.0 /* * Symbol USB barcode to serial driver * * Copyright (C) 2013 Johan Hovold <jhovold@gmail.com> * Copyright (C) 2009 Greg Kroah-Hartman <gregkh@suse.de> * Copyright (C) 2009 Novell Inc. */ #include <linux/kernel.h> #include <linux/tty.h> #include <linux/slab.h> #include <linu...
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #include "pal_compiler.h" #include <stdint.h> #include "opensslshim.h" /* Creates and initializes an EVP_MD_CTX wit...
/*************************************************************************** * Copyright (c) 2005-2009, Broadcom Corporation. * * Name: crystalhd_lnx . c * * Description: * BCM70012 Linux driver * * HISTORY: * ********************************************************************** * This file is part of t...
/* * xtl_core.c * * core code including functions for generating log messages * * Copyright (c) 2010 Citrix * Part of a generic logging interface used by various dom0 userland libraries. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Publ...
/* ldb database module Copyright (C) Stefan Metzmacher 2006 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) any later version....
/* ** Garbage collector. ** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h */ #ifndef _LJ_GC_H #define _LJ_GC_H #include "lj_obj.h" /* Garbage collector states. Order matters. */ enum { GCSpause, GCSpropagate, GCSatomic, GCSsweepstring, GCSsweep, GCSfinalize }; /* Bitmasks for marked field of...
/* PR tree-optimization/68680 */ /* { dg-do compile } */ /* { dg-options "-O2 -fstack-protector-strong" } */ int foo (char *); int bar (unsigned long x) { char a[x]; return foo (a); } /* Verify that this function is stack protected. */ /* { dg-final { scan-assembler "stack_chk_fail" } } */
/* * This file is generally used by user-level software, so you need to * be a little careful about namespace pollution etc. Also, we cannot * assume GCC is being used. */ #ifndef __SPARC_POSIX_TYPES_H #define __SPARC_POSIX_TYPES_H #if defined(__sparc__) && defined(__arch64__) /* sparc 64 bit */ typedef unsigne...
#ifndef __LINUX_BRIDGE_NETFILTER_H #define __LINUX_BRIDGE_NETFILTER_H /* bridge-specific defines for netfilter. */ #include <linux/netfilter.h> #include <linux/if_ether.h> #include <linux/if_vlan.h> #include <linux/if_pppox.h> /* Bridge Hooks */ /* After promisc drops, checksum checks. */ #define NF_BR_PRE_ROUTING...
/* -*- c++ -*- */ /* * Copyright 2012-2013 Free Software Foundation, Inc. * * This file is part of GNU Radio * * GNU Radio 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, or (at your o...
// RUN: %clang_cc1 %s -triple powerpc64-unknown-linux-gnu -fasm-blocks -verify -fsyntax-only void f() { __asm nop // expected-error {{Unsupported architecture 'powerpc64' for MS-style inline assembly}} }
/* * Copyright (C) 2010-2012 ARM Limited. All rights reserved. * * This program is free software and is provided to you under the terms of the GNU General Public License version 2 * as published by the Free Software Foundation, and any use by you of this program is subject to the terms of such GNU licence. * * A ...
/* SPDX-License-Identifier: GPL-2.0-or-later */ /* * gp8psk_fe driver */ #ifndef GP8PSK_FE_H #define GP8PSK_FE_H #include <linux/types.h> /* gp8psk commands */ #define GET_8PSK_CONFIG 0x80 /* in */ #define SET_8PSK_CONFIG 0x81 #define I2C_WRITE 0x83 #define I2C_READ 0x84 #de...
#import "Base.h" namespace Cedar { namespace Matchers { template<typename T> class Contain : public Base<> { private: Contain & operator=(const Contain &); public: explicit Contain(const T & element); ~Contain(); // Allow default copy ctor. template<typename U>...
/********************************************************************** * Copyright (c) 2015 Andrew Poelstra * * Distributed under the MIT software license, see the accompanying * * file COPYING or http://www.opensource.org/licenses/mit-license.php.* *******************************...
/* { dg-do compile } */ /* { dg-options "-O -fno-tree-fre -fdump-tree-cddce1" } */ int foo(int b) { int a[128]; a[b] = 1; if (b) { b = 2; a[2] = 0; } a[2] = 3; return a[2] + b; } /* Verify DCE removes all accesses to a but the last store and the read from a[2]. */ /* { dg-final { sca...
/* Verify straight-line strength reduction for simple integer addition with casts thrown in. */ /* { dg-do compile } */ /* { dg-options "-O3 -fdump-tree-optimized" } */ long f (int s, long c) { int a1, a2, a3; long x1, x2, x3, x; a1 = 2 * s; x1 = c + a1; a2 = 4 * s; x2 = c + a2; a3 = 6 * s; x3 = ...
// Copyright (c) 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_EXTENSIONS_GLOBAL_SHORTCUT_LISTENER_WIN_H_ #define CHROME_BROWSER_EXTENSIONS_GLOBAL_SHORTCUT_LISTENER_WIN_H_ #include <windows...
/** * Copyright (c) 2015-present, Parse, LLC. * All rights reserved. * * This source code is licensed under the BSD-style license found in the * LICENSE file in the root directory of this source tree. An additional grant * of patent rights can be found in the PATENTS file in the same directory. */ #import <Foun...
#include QMK_KEYBOARD_H #include <sendstring_norman.h> extern keymap_config_t keymap_config; // Each layer gets a name for readability, which is then used in the keymap matrix below. // The underscores don't mean anything - you can have a layer called STUFF or any other name. // Layer names don't all need to be of ...
// 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 COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_REGEX_CONSTANTS_H_ #define COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_REGEX_CONSTANTS_H_ namespace autof...
/*************************************************************************/ /*! @File services_kernel_client.h @Copyright Copyright (c) Imagination Technologies Ltd. All Rights Reserved @License Dual MIT/GPLv2 The contents of this file are subject to the MIT license as set out below. Permission ...
/* * driver for Android SensorHub SPI * * Copyright (c) 2013, Samsung Electronics. 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 as * published by the Free Software Foundation. * * This program is di...
// 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 CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_FACTORY_H_ #define CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_FACTORY_H_ #include "base/ba...
#include <linux/vmalloc.h> #include <linux/module.h> #include <linux/fs.h> #include <linux/mm.h> #include <linux/sched.h> #include <asm/uaccess.h> #include "oss/sound_firmware.h" static int do_mod_firmware_load(const char *fn, char **fp) { struct file* filp; long l; char *dp; loff_t pos; filp = filp_open(fn, 0, ...
/* * Copyright 2010 Tilera Corporation. 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 * as published by the Free Software Foundation, version 2. * * This program is distributed in the hope that it will ...
/* * Picvue PVC160206 display driver * * Brian Murphy <brian.murphy@eicon.com> * */ #include <linux/bug.h> #include <linux/kernel.h> #include <linux/module.h> #include <linux/init.h> #include <linux/errno.h> #include <linux/proc_fs.h> #include <linux/seq_file.h> #include <linux/interrupt.h> #include <linux/timer...
/* * linux/kernel/irq/handle.c * * Copyright (C) 1992, 1998-2006 Linus Torvalds, Ingo Molnar * Copyright (C) 2005-2006, Thomas Gleixner, Russell King * * This file contains the core interrupt handling code. * * Detailed information is available in Documentation/DocBook/genericirq * */ #include <linux/irq.h> ...
// 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 CONTENT_COMMON_ZYGOTE_COMMANDS_LINUX_H_ #define CONTENT_COMMON_ZYGOTE_COMMANDS_LINUX_H_ #include "base/posix/global_descriptors.h" #include "...
/* Test AAPCS layout (alignment) for callee. */ /* { dg-do run { target arm_eabi } } */ /* { dg-require-effective-target arm32 } */ /* { dg-options "-O2 -fno-inline" } */ /* Test AAPCS layout (alignment) for callee. */ extern int memcmp (const void *s1, const void *s2, __SIZE_TYPE__ n); extern void abort (void); ...
#include "tacho_mb.h" #include "LPC21xx.h" uint32_t t_duration; /* INPUT CAPTURE CAP0.0 on P0.22*/ #define TACHO_MB_PINSEL PINSEL1 #define TACHO_MB_PINSEL_VAL 0x02 #define TACHO_MB_PINSEL_BIT 12 void tacho_mb_init(void) { /* select pin for capture */ TACHO_MB_PINSEL |= TACHO_MB_PINSEL_VAL << TACHO_MB_PINSEL...
/* 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 may not...
/* Copyright (c) 2010-2012, Code Aurora Forum. 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 ho...
/* Copyright (c) 2011-2012, Code Aurora Forum. 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 ho...
/* src/include/port/darwin.h */ #define __darwin__ 1 #if HAVE_DECL_F_FULLFSYNC /* not present before OS X 10.3 */ #define HAVE_FSYNC_WRITETHROUGH #endif
/* * This header provides constants for configuring the I.MX25 ADC */ #ifndef _DT_BINDINGS_IIO_ADC_FS_IMX25_GCQ_H #define _DT_BINDINGS_IIO_ADC_FS_IMX25_GCQ_H #define MX25_ADC_REFP_YP 0 /* YP voltage reference */ #define MX25_ADC_REFP_XP 1 /* XP voltage reference */ #define MX25_ADC_REFP_EXT 2 /* External voltage re...
/* * Copyright (C) 2010-2012 ARM Limited. All rights reserved. * * This program is free software and is provided to you under the terms of the GNU General Public License version 2 * as published by the Free Software Foundation, and any use by you of this program is subject to the terms of such GNU licence. * * ...
// SPDX-License-Identifier: GPL-2.0 /* * arch/alpha/lib/dec_and_lock.c * * ll/sc version of atomic_dec_and_lock() * */ #include <linux/spinlock.h> #include <linux/atomic.h> #include <linux/export.h> asm (".text \n\ .global _atomic_dec_and_lock \n\ .ent _atomic_dec_and_lock \n\ .align 4 \n\ _atomic...
// TR1 fenv.h -*- C++ -*- // Copyright (C) 2006-2014 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library 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; eithe...
/* * include/linux/nfsd/export.h * * Public declarations for NFS exports. The definitions for the * syscall interface are in nfsctl.h * * Copyright (C) 1995-1997 Olaf Kirch <okir@monad.swb.de> */ #ifndef _UAPINFSD_EXPORT_H #define _UAPINFSD_EXPORT_H # include <linux/types.h> /* * Important limits for the ex...
/*- * Copyright (c) 2006 Joseph Koshy * 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 condit...
/* { dg-do compile { target powerpc*-*-* } } */ /* { dg-require-effective-target powerpc_altivec_ok } */ /* { dg-options "-O -maltivec -mno-vsx" } */ /* { dg-final { scan-assembler "lvx" } } */ #include <string.h> void bar (int *); void foo(void) { extern int x[8] __attribute__((aligned(128))); int y[8] __attrib...
// SPDX-License-Identifier: GPL-2.0 #include <linux/arm-smccc.h> #include <linux/kernel.h> #include <linux/smp.h> #include <asm/cp15.h> #include <asm/cputype.h> #include <asm/proc-fns.h> #include <asm/system_misc.h> #ifdef CONFIG_HARDEN_BRANCH_PREDICTOR DEFINE_PER_CPU(harden_branch_predictor_fn_t, harden_branch_predi...
/* * Copyright (c) 2000-2006 Silicon Graphics, Inc. * Copyright (c) 2012-2013 Red Hat, Inc. * 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 as * published by the Free Software Foundation. * * This program is ...
#ifndef CHARGE_SENS_H #define CHARGE_SENS_H #include "std.h" void charge_sens_init(void); void charge_sens_periodic(void); void charge_sens_event(void); #endif
#include <stdio.h> #include <stdlib.h> #include <signal.h> #include "tests/sys_mman.h" void sig_hdlr ( int signo ) { printf ( "caught sig segv\n" ); exit(1); } int main ( void ) { char* badplace; printf ( "installing sig handler\n" ); signal(SIGSEGV, sig_hdlr); printf ( "doing bad thing\n" ); badpl...
/* * Driver for SJA1000 CAN controllers on the OpenFirmware platform bus * * Copyright (C) 2008-2009 Wolfgang Grandegger <wg@grandegger.com> * * This program is free software; you can redistribute it and/or modify * it under the terms of the version 2 of the GNU General Public License * as published by the Free ...
/** * \file * * \brief Status code definitions. * * This file defines various status codes returned by functions, * indicating success or failure as well as what kind of failure. * * Copyright (c) 2009-2015 Atmel Corporation. All rights reserved. * * \asf_license_start * * \page License * * Redistribution...
/* * 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 Software Foundation. * * This progra...
/* * File: pep.h * * Phonet Pipe End Point sockets definitions * * Copyright (C) 2008 Nokia Corporation. * * 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 i...
/* * Copyright (C) 2011 Ericsson AB. All rights reserved. * Copyright (C) 2012 Google 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...
#ifndef _LINUX_MIGRATE_H #define _LINUX_MIGRATE_H #include <linux/mm.h> #include <linux/mempolicy.h> #include <linux/migrate_mode.h> typedef struct page *new_page_t(struct page *, unsigned long private, int **); #ifdef CONFIG_MIGRATION extern void putback_lru_pages(struct list_head *l); extern int migrate_page(stru...
/* * Driver for Epson RTC-9701JE * * Copyright (C) 2008 Magnus Damm * * Based on rtc-max6902.c * * Copyright (C) 2006 8D Technologies inc. * Copyright (C) 2004 Compulab Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version...
/* NetWinder Floating Point Emulator (c) Rebel.com, 1998-1999 Direct questions, comments to Scott Bambrough <scottb@netwinder.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 Foundat...
/* Test various logical operations. */ TYPE arg1 (TYPE p, TYPE q) { return p & q; } /* AND */ TYPE arg2 (TYPE p, TYPE q) { return p | q; } /* OR */ TYPE arg3 (TYPE p, TYPE q) { return p ^ q; } /* XOR */ TYPE arg4 (TYPE p) { return ~ p; } /* NOR */ TYPE arg5 (TYPE p, TYPE q) { return ~(p & q); } /* NAND *...
/* * reset.c -- common ColdFire SoC reset support * * (C) Copyright 2012, Greg Ungerer <gerg@uclinux.org> * * This file is subject to the terms and conditions of the GNU General Public * License. See the file COPYING in the main directory of this archive * for more details. */ #include <linux/kernel.h> #incl...
#include <linux/string.h> #include <linux/kernel.h> #include <linux/sched.h> #include <asm/irq.h> #include <asm/setup.h> #include <asm/bootinfo.h> #include <asm/macintosh.h> /* * Booter vars */ int boothowto; int _boothowto; /* * Called early to parse the environment (passed to us from the booter) * into a booti...
// SPDX-License-Identifier: GPL-2.0-only /* * PCM DRM helpers */ #include <linux/export.h> #include <linux/types.h> #include <sound/asoundef.h> #include <sound/pcm.h> #include <sound/pcm_params.h> #include <sound/pcm_iec958.h> static int create_iec958_consumer(uint rate, uint sample_width, u8 *cs, size_t len)...
// SPDX-License-Identifier: GPL-2.0 OR MIT /****************************************************************************** * grant_table.c * x86 specific part * * Granting foreign access to our memory reservation. * * Copyright (c) 2005-2006, Christopher Clark * Copyright (c) 2004-2005, K A Fraser * Copyright (...
/* * syscore.c - Execution of system core operations. * * Copyright (C) 2011 Rafael J. Wysocki <rjw@sisk.pl>, Novell Inc. * * This file is released under the GPLv2. */ #include <linux/syscore_ops.h> #include <linux/mutex.h> #include <linux/module.h> #include <linux/interrupt.h> #include <trace/events/power.h>...
/* * sleep.c - x86-specific ACPI sleep support. * * Copyright (C) 2001-2003 Patrick Mochel * Copyright (C) 2001-2003 Pavel Machek <pavel@ucw.cz> */ #include <linux/acpi.h> #include <linux/bootmem.h> #include <linux/memblock.h> #include <linux/dmi.h> #include <linux/cpumask.h> #include <asm/segment.h> #include <...
/* Copyright 2016 The TensorFlow 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 a...
// Copyright (c) 2013 Mutual Mobile (http://mutualmobile.com/) // // 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, co...
/* * Copyright 2015, Sam Bobroff, IBM Corp. * Licensed under GPLv2. * * Test the kernel's system call code to ensure that a system call * made from within an active HTM transaction is aborted with the * correct failure code. * Conversely, ensure that a system call made from within a * suspended transaction can ...
#ifndef _PARISC_CACHEFLUSH_H #define _PARISC_CACHEFLUSH_H #include <linux/mm.h> #include <linux/uaccess.h> /* The usual comment is "Caches aren't brain-dead on the <architecture>". * Unfortunately, that doesn't apply to PA-RISC. */ /* Internal implementation */ void flush_data_cache_local(void *); /* flushes local...
// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*- #ifndef __javax_swing_plaf_basic_BasicTreeUI$PropertyChangeHandler__ #define __javax_swing_plaf_basic_BasicTreeUI$PropertyChangeHandler__ #pragma interface #include <java/lang/Object.h> extern "Java" { namespace java { namespace beans { ...
/* * Driver for the Conexant CX23885/7/8 PCIe bridge * * Various common ioctl() support functions * * Copyright (c) 2009 Andy Walls <awalls@md.metrocast.net> * * 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 * t...
#ifndef __ASMARM_ELF_H #define __ASMARM_ELF_H #include <asm/hwcap.h> /* * ELF register definitions.. */ #include <asm/ptrace.h> #include <asm/user.h> struct task_struct; typedef unsigned long elf_greg_t; typedef unsigned long elf_freg_t[3]; #define ELF_NGREG (sizeof (struct pt_regs) / sizeof(elf_greg_t)) typedef...
/* * Copyright (C) ST-Ericsson AB 2010 * Author: Sjur Brendeland/sjur.brandeland@stericsson.com * License terms: GNU General Public License (GPL) version 2 */ #ifndef CFSERL_H_ #define CFSERL_H_ #include <net/caif/caif_layer.h> struct cflayer *cfserl_create(int instance, bool use_stx); #endif
/* * Copyright 2011-2016 by Emese Revfy <re.emese@gmail.com> * Licensed under the GPL v2, or (at your option) v3 * * Homepage: * https://github.com/ephox-gcc-plugins/cyclomatic_complexity * * https://en.wikipedia.org/wiki/Cyclomatic_complexity * The complexity M is then defined as: * M = E - N + 2P * where *...
/* * arch/arm/include/asm/fncpy.h - helper macros for function body copying * * Copyright (C) 2011 Linaro Limited * * 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 pr...
/* Qualifiers lost when taking the address of a const restrict object. PR 44322. */ /* { dg-do compile } */ /* { dg-options "-std=iso9899:1999 -pedantic-errors" } */ void * restrict const a[2]; void * restrict const (*p2)[2]; void foo(void) { p2 = &a; } void * restrict volatile b[2]; void * restrict volatile (...
/* ** $Id: lfunc.h,v 2.4.1.1 2007/12/27 13:02:25 roberto Exp $ ** Auxiliary functions to manipulate prototypes and closures ** See Copyright Notice in lua.h */ #ifndef lfunc_h #define lfunc_h #include "lobject.h" #include "lgc.h" #define sizeCclosure(n) (cast(int, sizeof(CClosure)) + \ cas...
/* Copyright 2015 The TensorFlow 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 a...
/* * Copyright (C) 2005-2006 by Texas Instruments * * The Inventra Controller Driver for Linux 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. */ #ifndef __MUSB_OMAP243X_H__ #define __MUSB_...
#ifndef _ASM_SOCKET_H #define _ASM_SOCKET_H #include <asm/sockios.h> /* For setsockopt(2) */ #define SOL_SOCKET 1 #define SO_DEBUG 1 #define SO_REUSEADDR 2 #define SO_TYPE 3 #define SO_ERROR 4 #define SO_DONTROUTE 5 #define SO_BROADCAST 6 #define SO_SNDBUF 7 #define SO_RCVBUF 8 #define SO_SNDBUFFORCE 32 #define SO_...
/* Area: ffi_call, closure_call Purpose: Check structure alignment of long double. Limitations: none. PR: none. Originator: Blake Chaffin 6/18/2007 */ /* { dg-do run { xfail strongarm*-*-* } } */ /* { dg-options -mlong-double-128 { target powerpc64*-*-linux* } } */ #include "ffitest.h" typedef struct cls_...
/* * Copyright (c) 2012 Neratec Solutions AG * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHO...
/* * Copyright (c) 2012 NVIDIA CORPORATION. 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 as published by * the Free Software Foundation; version 2 of the License. * * This program is distributed in the hope t...
/* Copyright 2013 Google 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 list of conditions a...
/* The following code used to ICE in fold_convert. */ float ceilf(float); int foo(float x) { return (double)ceilf(x); }
/***************************************************************************** (c) Cambridge Silicon Radio Limited 2010 Confidential information of CSR Refer to LICENSE.txt included with this source for details on the license terms. ***************************************************************************...
/* * PPC EDAC common defs * * Author: Dave Jiang <djiang@mvista.com> * * 2007 (c) MontaVista Software, Inc. 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. */ #ifndef ASM_EDAC...
/* Copyright (c) 2009, Code Aurora Forum. 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 ...
// SPDX-License-Identifier: MIT /* * Copyright 2019 Advanced Micro Devices, Inc. */ #include <linux/slab.h> #include <linux/tee_drv.h> #include <linux/psp-sev.h> #include "amdtee_private.h" static int pool_op_alloc(struct tee_shm_pool_mgr *poolm, struct tee_shm *shm, size_t size) { unsigned int order = get_ord...
/* * arch/arm/plat-omap/include/mach/board.h * * Information structures for board-specific data * * Copyright (C) 2004 Nokia Corporation * Written by Juha Yrjölä <juha.yrjola@nokia.com> */ #ifndef _OMAP_BOARD_H #define _OMAP_BOARD_H #include <linux/types.h> #include <plat/gpio-switch.h> /* * OMAP35x EVM...
/* * Support for the VMIVME-7805 board access to the Universe II bridge. * * Author: Arthur Benilov <arthur.benilov@iba-group.com> * Copyright 2010 Ion Beam Application, Inc. * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as pub...
/* * Generated by class-dump 3.1.2. * * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2007 by Steve Nygard. */ #import "_ADBannerContentSizeIdentifierLandscape.h" @interface Options : _ADBannerContentSizeIdentifierLandscape { BOOL highlight; BOOL disallowSleep; BOOL displayTimer; ...
/* * This file is part of OpenGrafik. * * Copyright 2009 Frederic Morcos <fred.morcos@gmail.com> * * OpenGrafik 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 * (a...