text
stringlengths
9
948k
// // Copyright (c) Microsoft. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. // //***************************************************************************** // DbgShim.h // //****************************************************************...
// Copyright 2021 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 SRC_DEVICES_BOARD_DRIVERS_X86_ACPI_TEST_DEVICE_H_ #define SRC_DEVICES_BOARD_DRIVERS_X86_ACPI_TEST_DEVICE_H_ #include <memory> #include <optional> ...
// // 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 "PBGeneratedMessage.h" @class BaseResponse; @interface UxLifeOpCommentResp : PBGeneratedMessage { unsigned int hasBaseRes...
/* * Copyright 2004-2006 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...
/* *------------------------------------------------------------------ * Copyright (c) 2017 Cisco and/or its affiliates. * 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://w...
// // VTDateField.h // OfficeOneStudy // // Created by viettel on 11/1/14. // // #import <UIKit/UIKit.h> @protocol VTDateFieldDelegate <NSObject> @optional -(void) dateFieldClick:(id)sender withIndex:(NSInteger)index; @end @interface VTDateField : UIView @end
/* include the peptide headers. */ #include "peptide.h" #include "peptide-atoms.h" /* peptide_bond_find(): lookup a bond in a peptide structure by its atom * array indices. * * arguments: * @P: pointer to the peptide structure to access. * @id*: array indices of the query atoms. * * returns: * index of the ...
/* * Copyright (C) 2008-2009 SVOX AG, Baslerstr. 30, 8048 Zuerich, Switzerland * * 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 * * ...
// // Generated by class-dump 3.5 (64 bit). // // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard. // #import "NSObject.h" @class NSError, NSString; @protocol SBFAuthenticationPolicy <NSObject> - (void)wipeDeviceWithReason:(NSString *)arg1; - (_Bool)usesSecureMode; - (_Bool)should...
/* * Copyright © 2009 CNRS * Copyright © 2009-2018 Inria. All rights reserved. * Copyright © 2009-2011 Université Bordeaux * Copyright © 2009-2018 Cisco Systems, Inc. All rights reserved. * See COPYING in top-level directory. */ #include <private/autogen/config.h> #include <hwloc.h> #include <private/xml.h> #i...
/* Copyright (c) 1994,2006 *Fraunhofer Institut for Solar Energy Systems * Heidenhofstr. 2, D-79110 Freiburg, Germany * *Agence de l'Environnement et de la Maitrise de l'Energie * Centre de Valbonne, 500 route des Lucioles, 06565 Sophia Antipolis Cedex, France * *BOUYGUES * 1...
// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved. #pragma once #include "Light.h" #include "PointLight.generated.h" UCLASS(ClassGroup=(Lights, PointLights), ComponentWrapperClass, MinimalAPI, meta=(ChildCanTick)) class APointLight : public ALight { GENERATED_UCLASS_BODY() UPROPERTY(BlueprintReadOnly, Ca...
#pragma once #include "custom_types.h" #ifndef HID_USAGE_PAGE_GENERIC #define HID_USAGE_PAGE_GENERIC ((USHORT) 0x01) #endif #ifndef HID_USAGE_GENERIC_MOUSE #define HID_USAGE_GENERIC_MOUSE ((USHORT) 0x02) #endif
// // Generated by class-dump 3.5 (64 bit) (Debug version compiled Mar 30 2018 09:30:25). // // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2015 by Steve Nygard. // #import <AppKit/NSPathControl.h> #import <IDEKit/DVTInvalidation-Protocol.h> @class DVTStackBacktrace, NSString; @interface IDEPathC...
// // ODBCMetaColumn.h // // $Id: //poco/Main/Data/ODBC/include/Poco/Data/ODBC/ODBCMetaColumn.h#3 $ // // Library: ODBC // Package: ODBC // Module: ODBCMetaColumn // // Definition of ODBCMetaColumn. // // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // // SPDX-License-Identif...
// KASAN: use-after-free Write in hci_conn_del // https://syzkaller.appspot.com/bug?id=7b1677fecb5976b0a099 // status:0 // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include <arpa/inet.h> #include <dirent.h> #include <endian.h> #include <errno.h> #include <fcntl.h> #include ...
//===-- mulsf3vfp_test.c - Test __mulsf3vfp -------------------------------===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===-------------------------------------------------------...
char *convertToBase7(int num) { if (num == 0) return "0"; bool neg = num > 0 ? false : true; num = num > 0 ? num : -num; // Space for digits, end marker and neg sign if applicable. int len = 0, size = snprintf(NULL, 0, "%d", num) + 1 + (neg ? 1 : 0); char *digits = malloc(size + 1); if (neg) { d...
#ifndef __ASM_SMPBOOT_H #define __ASM_SMPBOOT_H /*emum for clustered_apic_mode values*/ enum{ CLUSTERED_APIC_NONE = 0, CLUSTERED_APIC_XAPIC, CLUSTERED_APIC_NUMAQ }; #ifdef CONFIG_X86_CLUSTERED_APIC extern unsigned int apic_broadcast_id; extern unsigned char clustered_apic_mode; extern unsigned char esr_disable; ex...
/* * All or portions of this file Copyright (c) Amazon.com, Inc. or its affiliates or * its licensors. * * For complete copyright and license terms please see the LICENSE at the root of this * distribution (the "License"). All use of this software is governed by the License, * or, if provided, by the license below or t...
// Copyright 2020 Google Inc. All Rights Reserved. #ifndef FIREBASE_INTERNAL_TYPE_TRAITS_H #define FIREBASE_INTERNAL_TYPE_TRAITS_H #include "firebase/firebase/internal/type_traits.h" #endif // FIREBASE_INTERNAL_TYPE_TRAITS_H
/**************************************************************************** * * Copyright (C) 2015 Mark Charlebois. 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. Redistributio...
/** * \file esp_pbuf.h * \brief Packet buffer manager */ /* * Copyright (c) 2019 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 restrict...
///////////////////////////////////////////////////////////////////////////// // Name: wx/xrc/xh_gdctl.h // Purpose: XML resource handler for wxGenericDirCtrl // Author: Markus Greither // Created: 2002/01/20 // RCS-ID: $Id: xh_gdctl.h 41590 2006-10-03 14:53:40Z VZ $ // Copyright: (c) 2002 Ma...
/*++ Copyright (c) 2006 Microsoft Corporation Module Name: union_find.h Abstract: <abstract> Author: Leonardo de Moura (leonardo) 2008-05-31. Revision History: --*/ #pragma once #include "util/trail.h" #include "util/trace.h" class union_find_default_ctx { public: typedef trail_stack<union_fin...
// Copyright (c) 2013-2014 The Bitcoin Core developers // Copyright (c) 2017 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef ALTERN8_NOUI_H #define ALTERN8_NOUI_H extern void noui_connect(); #...
// SPDX-License-Identifier: BSD-2-Clause /* * Copyright (c) 2016, Linaro Limited */ #include <stdio.h> #include <string.h> #include <tee/uuid.h> #include <util.h> void tee_uuid_to_octets(uint8_t *d, const TEE_UUID *s) { d[0] = s->timeLow >> 24; d[1] = s->timeLow >> 16; d[2] = s->timeLow >> 8; d[3] = s->timeLow;...
/* db_vm.h - definitions for a simple virtual machine * * Copyright (c) 2014 by David Michael Betz. All rights reserved. * */ #ifndef __DB_VM_H__ #define __DB_VM_H__ #include "db_system.h" #include "db_image.h" /* prototypes from db_vmint.c */ int Execute(System *sys, ImageHdr *image, VMVALUE main); #endif
#ifndef _AD_H_ #define _AD_H_ #include "stm32f10x_adc.h" #include "stm32f10x_dma.h" #include "stm32f10x_gpio.h" #include "stm32f10x_rcc.h" #include "SystemCore.h" #define MAX_AD 2 extern u16 ADCConvertedValue[MAX_AD]; extern u16 AD_Value[MAX_AD]; void DMA_ADC1_Init(void); void ADCdeal(void); #endif
#pragma once #include "../state.h" template<typename _Object> class CStateGroupAttackRun : public CState<_Object> { typedef CState<_Object> inherited; using inherited::object; using inherited::time_state_started; TTime m_time_path_rebuild; TTime m_next_encircle_tick; TTime m_en...
/* * Generated by asn1c-0.9.24 (http://lionet.info/asn1c) * From ASN.1 module "NBIOT-InterNodeDefinitions" * found in "fixed_grammar.asn" * `asn1c -gen-PER` */ #include "UERadioAccessCapabilityInformation-NB.h" static asn_per_constraints_t asn_PER_type_c1_constr_3 GCC_NOTUSED = { { APC_CONSTRAINED, 2, 2, 0...
/* * Copyright (c) 2018 Samsung Electronics Co., Ltd. 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 * * Unle...
/*++ Copyright (c) 1991-1992 Microsoft Corporation Module Name: CmdLine.c Abstract: This module contains support routines for processing server service command-line arguments. Author: David Treadwell (davidtr) 10-Mar-1991 Revision History: --*/ #include "srvsvcp.h" #include <netlibnt.h> #i...
/* * Copyright (c) 2016 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 ...
/*=================================================================== The Medical Imaging Interaction Toolkit (MITK) Copyright (c) German Cancer Research Center, Division of Medical and Biological Informatics. All rights reserved. This software is distributed WITHOUT ANY WARRANTY; without even the implied warranty o...
/* Copyright 2021 Peter Repukat - FlatspotSoftware 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 in writ...
/** ****************************************************************************** * @file : usbd_conf.c * @brief : This file implements the board support package for the USB device library ****************************************************************************** * * COPYRIGHT(c) 201...
/* $NetBSD: fpu_implode.c,v 1.3 1997/07/19 22:28:50 is Exp $ */ /* * Copyright (c) 1992, 1993 * The Regents of the University of California. All rights reserved. * * This software was developed by the Computer Systems Engineering group * at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and * contri...
#ifndef DEBUGGER_H #define DEBUGGER_H #include <bb/blitz/debug.h> extern "C" BBDECL Debugger * __cdecl debuggerGetDebugger( void *mod,void *env ); #endif
/* Agar icon data file */ /* Generated by agarpaint 1.1 */ static const Uint32 sgIconLighting_Data[256] = {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0,0,0,0,0,0,0,0,0,0,0xff000000,0xff3f6f75,0xff60dfee,0xff60dfee,0xff60dfee,0xff3f6f...
/* Added for Tor. */ #ifndef CRYPTO_INT64_H #define CRYPTO_INT64_H #include <stdint.h> #define crypto_int64 int64_t #define crypto_uint64 uint64_t /* Stop signed left shifts overflowing by using unsigned types for bitwise operations */ #ifndef OVERFLOW_SAFE_SIGNED_LSHIFT #define OVERFLOW_SAFE_SIGNED_LSHIFT(s, l...
#include <dawn/dawn_proc.h>
#include <stdio.h> int main(void) { int N; scanf("%d", &N); int i = 0; int sum = 0; while(sum < N) { i++; sum += i; } int diff = sum-N; if(i%2 == 1) printf("%d/%d\n", 1+diff, i-diff); else printf("%d/%d\n", i-diff, 1+diff); return 0; }
/* * Copyright 2015 The Etc2Comp Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agr...
/* * This header is generated by classdump-dyld 1.0 * on Sunday, September 27, 2020 at 11:54:57 AM Mountain Standard Time * Operating System: Version 14.0 (Build 18A373) * Image Source: /System/Library/PrivateFrameworks/OfficeImport.framework/OfficeImport * classdump-dyld is licensed under GPLv3, Copyright © 2013-2016 ...
/* * librdkafka - Apache Kafka C library * * Copyright (c) 2018 Magnus Edenhill * 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...
#pragma once #include <ntdll.h> ////////////////////////////////////////////////////////////////////////// // Private functions. ////////////////////////////////////////////////////////////////////////// PVOID NTAPI WofpAllocate( _In_ SIZE_T Size ); VOID NTAPI WofpFree( _In_opt_ PVOID Pointer );
#pragma once #include "ctre/phoenix/ErrorCode.h" namespace ctre { namespace phoenix { namespace motorcontrol { namespace can { class TalonSRX; } } } } namespace ctre { namespace phoenix { namespace motorcontrol { /** * Collection of sensors available to a motor controller. * * For best performance and update-...
#include <stdio.h> int max3(int a, int b, int c) { int max = a; if (b > max) max = b; if (c > max) max = c; return max; } int main(void) { printf("max3(%d, %d, %d) = %d\n", 3, 2, 1, max3(3, 2, 1)); printf("max3(%d, %d, %d) = %d\n", 3, 2, 2, max3(3, 2, 2)); printf("max3(%d, %d, %d) = %d\n", 3, 1, 2, max3(3, 1, ...
#include <stdio.h> #include <stdlib.h> #include <string.h> #include "lisp.h" static S *ATOM, *EQ, *CAR, *CDR, *CONS, *QUOTE, *COND, *LABEL, *LAMBDA; static S *T, *F, *NIL; void init(void) { ATOM = Symbol("ATOM"); EQ = Symbol("EQ"); CAR = Symbol("CAR"); CDR = Symbol("CDR"); CONS = Symbol("CONS"); QUOTE = Symbol...
/* ** Copyright (c) 2021, Arm Limited. ** Copyright (c) 2021 LunarG, Inc. ** ** 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...
// Copyright (c) 2017 Google Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to...
/* * This header is generated by classdump-dyld 1.0 * on Sunday, September 27, 2020 at 11:41:20 AM Mountain Standard Time * Operating System: Version 14.0 (Build 18A373) * Image Source: /System/Library/PrivateFrameworks/iTunesCloud.framework/iTunesCloud * classdump-dyld is licensed under GPLv3, Copyright © 2013-2016 by...
/* Copyright 2019 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...
/* The MIT License Copyright (c) 2008, 2009, 2011 by Attractive Chaos <attractor@live.co.uk> 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 ...
/* * Copyright 2018 WebAssembly Community Group participants * * 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...
/* * Copyright (c) 2016-2017, The Linux Foundation. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted (subject to the limitations in the * disclaimer below) provided that the following conditions are met: * * * Redistributions of source c...
// Copyright (c) 2018 PaddlePaddle 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...
// Copyright (c) 2020, the BACCA contributors, as // shown by the AUTHORS file. All rights reserved. // // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // // The following code has been generated with GRAPHGEN: // https://github.com/prittt/GRAPHGEN sl_tree_0: if ...
/* See LICENSE file for copyright and license details. */ /* Default settings; can be overriden by command line. */ static int topbar = 1; /* -b option; if 0, dmenu appears at bottom */ static int centered = 0; /* -c option; centers dmenu on screen */ static int min_width =...
#include "defines.h" int main(){ int a[5]; int len=0; int i; // @assume i == (23 + 42) while(__NONDET__()){ if (len==4) len =0; a[len]=0; len++; } return 1; }
/*******************************************************/ /* "C" Language Integrated Production System */ /* */ /* CLIPS Version 6.24 07/01/05 */ /* */ /* ...
/* * Copyright (c) 2010-2015 SURFnet bv * Copyright (c) 2015 Roland van Rijswijk-Deij * 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 ...
// // 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 TXCRSA : NSObject { } + (id)decryptData:(id)arg1 publicKey:(id)arg2; + (id)decryptString:(id)arg...
/* Copyright 2018 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...
#pragma once #include <DB/Core/Types.h> namespace DB { /// До какой стадии выполнен или нужно выполнить SELECT запрос. namespace QueryProcessingStage { /// Номера имеют значение - более поздняя стадия имеет больший номер. enum Enum { FetchColumns = 0, /// Только прочитать/прочитаны указанные в запросе столбцы...
#ifndef CONFIGURATOR_H #define CONFIGURATOR_H #include <string> #include "Encryptor.h" #include "Decryptor.h" #include "Engine.h" #include "BigInteger.h" enum Modes {ENCRYPT, DECRYPT, GENERATE}; /** * Синглтон **/ class Configurator { std::string inputPath; std::string outputPath; std::string publicKeyPath; ...
/** * Copyright (c) 2015-present, Facebook, Inc. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #import <UIKit/UIKit.h> /** * Contains any methods related to scrolling. Any `ABI29_0_0RCTView` that has scrolling * features should ...
/** @file Copyright (c) 2012-2018, ARM Ltd. All rights reserved. This program and the accompanying materials are licensed and made available under the terms and conditions of the BSD License which accompanies this distribution. The full text of the license may be found at http://opensource.org/licenses/bsd...
/* * Copyright (c) 2017-2018 ARM Limited. * * SPDX-License-Identifier: MIT * * 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 * ri...
// // INDCollectionTextCellViewController.h // Indragie Karunaratne // // Created by Indragie Karunaratne on 2014-04-09. // Copyright (c) 2014 Indragie Karunaratne. All rights reserved. // #import "MNSHostedViewController.h" /** * View controller for collection view attributed text cell. */ @interface INDColle...
/* * Bumble Bots Re-Pair, a Gamebuino game * * Copyright 2020, Erwin Bonsma */ #include <Gamebuino-Meta.h> #include "Utils.h" const uint8_t numPalettes = 2; const uint8_t PALETTE_DEFAULT = 0; const uint8_t PALETTE_GAME = 1; const uint8_t numPaletteColors = 16; extern const Color palettes[numPalettes][numPalett...
/* The copyright in this software is being made available under the BSD * License, included below. This software may be subject to other third party * and contributor rights, including patent rights, and no such rights are * granted under this license. * * Copyright (c) 2010-2011, ITU/ISO/IEC * All rights reser...
/* * * ZDCChatAlertHelper.h * ZDCChat * * Created by Zendesk on 08/12/2015. * * Copyright (c) 2015 Zendesk. All rights reserved. * * By downloading or using the Zopim Chat SDK, You agree to the Zendesk Terms * of Service https://www.zendesk.com/company/terms and Application Developer and API License * ...
/* * Do not modify this file; it is automatically * generated and any modifications will be overwritten. * * @(#) xdc-E10 */ #include <xdc/std.h> #include <ti/sysbios/heaps/HeapMem.h> extern const ti_sysbios_heaps_HeapMem_Handle heap0; extern int xdc_runtime_Startup__EXECFXN__C; extern int xdc_runtime_Start...
/* TEMPLATE GENERATED TESTCASE FILE Filename: CWE121_Stack_Based_Buffer_Overflow__CWE806_wchar_t_alloca_snprintf_61a.c Label Definition File: CWE121_Stack_Based_Buffer_Overflow__CWE806.label.xml Template File: sources-sink-61a.tmpl.c */ /* * @description * CWE: 121 Stack Based Buffer Overflow * BadSource: Initializ...
// // Copyright (C) 2004-2011 by Autodesk, Inc. // // This library is free software; you can redistribute it and/or // modify it under the terms of version 2.1 of the GNU Lesser // General Public License as published by the Free Software Foundation. // // This library is distributed in the hope that it will be use...
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. #pragma once #include "operationhandler.h" #include "iteratorhandler.h" #include "joinoperationhandler.h" #include "splitoperationhandler.h" #include "memfilepersistenceprovidermetrics.h" #include "th...
/* +----------------------------------------------------------------------+ | php-go | +----------------------------------------------------------------------+ | Copyright (c) 2015-2016 Arnaud Le Blanc | +--------------...
/* * Copyright (c) 2012 Ronald S. Bultje <rsbultje@gmail.com> * * 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 * version 2.1 of the License, or ...
// SPDX-License-Identifier: GPL-2.0+ /* * Copyright 2015 Freescale Semiconductor, Inc. */ #include <common.h> #include <netdev.h> #include <asm/io.h> #include <asm/arch/fsl_serdes.h> #include <hwconfig.h> #include <fsl_mdio.h> #include <malloc.h> #include <fm_eth.h> #include <i2c.h> #include <miiphy.h> #include <fsl...
/** ****************************************************************************** * @file system_stm32f7xx.c * @author MCD Application Team * @version V1.0.0 * @date 25-June-2015 * @brief CMSIS Cortex-M7 Device Peripheral Access Layer System Source File. * * This file provides two functions ...
/* mbed Microcontroller Library ******************************************************************************* * SPDX-License-Identifier: BSD-3-Clause * Copyright (c) 2018, STMicroelectronics * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permit...
// // Foundation.h // Twilight // // Created by 锋炜 刘 on 16/8/21. // Copyright © 2016年 kAzec. All rights reserved. // #import <Foundation/Foundation.h> //! Project version number for Twilight. FOUNDATION_EXPORT double TwilightVersionNumber; //! Project version string for Twilight. FOUNDATION_EXPORT const unsigned...
/* * libtcod 1.5.1 * Copyright (c) 2008,2009,2010,2012 Jice & Mingos * 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 * ...
/* s_tanhf.c -- float version of s_tanh.c. * Conversion to float by Ian Lance Taylor, Cygnus Support, ian@cygnus.com. */ /* * ==================================================== * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. * * Developed at SunPro, a Sun Microsystems, Inc. business. * Per...
// SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) /* Copyright (c) 2020 Facebook */ #include <vmlinux.h> #include <bpf/bpf_helpers.h> #include <bpf/bpf_core_read.h> #include <bpf/bpf_tracing.h> #include "pid_iter.h" /* keep in sync with the definition in main.h */ enum bpf_obj_type { BPF_OBJ_UNKNOWN, BPF_OB...
// // GLCanvas.h // interface/src // // Created by Stephen Birarda on 8/14/13. // Copyright 2013 High Fidelity, Inc. // // Distributed under the Apache License, Version 2.0. // See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html // #ifndef hifi_GLCanvas_h #define hifi_GLCanvas_h ...
/* Generated by Nim Compiler v1.0.11 */ /* (c) 2019 Andreas Rumpf */ /* The generated code is subject to the original license. */ #define NIM_INTBITS 64 #include "nimbase.h" #include <string.h> #undef LANGUAGE_C #undef MIPSEB #undef MIPSEL #undef PPC #undef R3000 #undef R4000 #undef i386 #undef linux #undef mips #un...
/* src/lib/button.h MIT License Copyright (c) 2021 Julio Cesar Kochhann 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...
//////////////////////////////////////////////////////////////////////////// // Module : smart_cover_planner_actions_inline.h // Created : 04.09.2007 // Author : Alexander Dudin // Description : Smart cover planner action classes inline functions /////////////////////////////////////////////////////////////////////...
#pragma once #include <algorithm> #include <cassert> #include <cmath> #include <cstring> #include <string> #include <unordered_map> #include <utility> #include <csv.h> #include "DataStructures/Geometry/CoordinateTransformation.h" #include "DataStructures/Geometry/LatLng.h" #include "DataStructures/Geometry/Point.h" ...
// // Generated by classdumpios 1.0.1 (64 bit) (iOS port by DreamDevLost)(Debug version compiled Sep 26 2020 13:48:20). // // Copyright (C) 1997-2019 Steve Nygard. // #import <objc/NSObject.h> @class CKKnowledgeStore, NSString; @interface ADAnalyticsFBFDeliveryInfrastructure : NSObject { CKKnowledgeStore *_...
/* * Copyright (c) 2004-2007 The Trustees of Indiana University and Indiana * University Research and Technology * Corporation. All rights reserved. * Copyright (c) 2004-2005 The University of Tennessee and The University * of Tennessee Resea...
/* SCTP kernel Implementation * (C) Copyright IBM Corp. 2004 * Copyright (c) 1999-2001 Motorola, Inc. * * The SCTP implementation 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 (...
/* * Copyright (c) Contributors to the Open 3D Engine Project. * For complete copyright and license terms please see the LICENSE at the root of this distribution. * * SPDX-License-Identifier: Apache-2.0 OR MIT * */ #pragma once #if !defined(Q_MOC_RUN) #include <EMotionFX/CommandSystem/Source/SelectionCommands.h...
// // Created by chris on 14.11.13. // #import <Foundation/Foundation.h> #import <CoreData/CoreData.h> @interface ModelObject : NSManagedObject + (id)entityName; + (instancetype)insertNewObjectIntoContext:(NSManagedObjectContext*)context; @end
/* * Copyright 2009-2017 Alibaba Cloud 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...
/* * Copyright (c) Facebook, Inc. and its affiliates. * * 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 applic...
// Copyright 2013 The Flutter 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 SHELL_COMMON_SHELL_H_ #define SHELL_COMMON_SHELL_H_ #include <functional> #include <mutex> #include <string_view> #include <unordered_map> #inclu...