text
stringlengths
9
948k
// // KSYDBCreater.h // KSYPlayerDemo // // Created by ksy on 16/4/25. // Copyright © 2016年 kingsoft. All rights reserved. // #import <Foundation/Foundation.h> @interface KSYDBCreater : NSObject + (void)initDatabase; @end
/* Disassembly specific to Motorola architectures */ #ifndef ROSE_DisassemblerM68k_H #define ROSE_DisassemblerM68k_H #include "Disassembler.h" #include "InstructionEnumsM68k.h" #include "BitPattern.h" #include <boost/serialization/access.hpp> #include <boost/serialization/base_object.hpp> #include <boost/serializatio...
#ifndef __PREY_PHYSICS_DELTA_H__ #define __PREY_PHYSICS_DELTA_H__ class hhPhysics_Delta : public idPhysics_Actor { public: CLASS_PROTOTYPE( hhPhysics_Delta ); hhPhysics_Delta(); void SetOrigin( const idVec3 &newOrigin, int id = -1 ); void SetAxis( const idMat3 &newAxis, int id = -1 ); bool E...
// Copyright (c) 2015 The WebM project authors. All Rights Reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. An additional intellectual property rights grant can be found // in the file PATENTS. All contributing projec...
// 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. // This file contains macros to simplify histogram reporting from the disk // cache. The main issue is that we want to have separate histograms for ea...
#include "serialization/log.h" /*======Private======*/ /*Thread of log gestion*/ void* logGestion(void* logGestion_void){ LogGestion* logGestion = (LogGestion*) logGestion_void; char* message = NULL; while(true){ /*Take message in the buffer*/ pthread_mutex_lock(&logGestion->messageMutex); if(*logGestion->m...
/* sort/gsl_sort_char.h * * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Thomas Walter, Brian Gough * * 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,...
/* * This header is generated by classdump-dyld 1.0 * on Tuesday, November 5, 2019 at 2:46:02 AM Mountain Standard Time * Operating System: Version 13.0 (Build 17J586) * Image Source: /System/Library/PrivateFrameworks/UIKitCore.framework/UIKitCore * classdump-dyld is licensed under GPLv3, Copyright © 2013-2016 by Elias...
// // JSONValueTransformer.h // // @version 0.13.0 // @author Marin Todorov, http://www.touch-code-magazine.com // // Copyright (c) 2012-2013 Marin Todorov, Underplot ltd. // This code is distributed under the terms and conditions of the MIT license. // // Permission is hereby granted, free of charge, to any person...
/* * EdUrlParser.h * * Created on: Nov 25, 2014 * Author: netmind */ #ifndef CAHTTPURLPARSER_H_ #define CAHTTPURLPARSER_H_ #include <memory> #include <unordered_map> #include <tuple> #include <vector> #include <string> namespace cahttp { typedef struct { std::string key; std::string val; } query_kv_t; ...
#include <libws.h> #include <libws_log.h> #include <inttypes.h> #include <string.h> #include <stdio.h> #include <stdlib.h> #include <time.h> #include <assert.h> #include "jansson.h" #include "cargo/cargo.h" #include "libws_test_helpers.h" #ifdef _WIN32 #define snprintf _snprintf #endif typedef enum libws_autobahn_sta...
// Copyright (c) 2011-2013 The Bitcoin developers // Copyright (c) 2015-2017 Bean Core www.bitbean.org // Copyright (c) 2017-2021 Bean Core www.beancash.org // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef MACNOTIFI...
/* * Copyright (c) 2009-2013 Travis Geiselbrecht * * 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, m...
/* TEMPLATE GENERATED TESTCASE FILE Filename: CWE190_Integer_Overflow__int_rand_square_13.c Label Definition File: CWE190_Integer_Overflow__int.label.xml Template File: sources-sinks-13.tmpl.c */ /* * @description * CWE: 190 Integer Overflow * BadSource: rand Set data to result of rand(), which may be zero * GoodSo...
/* Tests of areadlinkat_with_size. Copyright (C) 2009, 2010 Free Software Foundation, Inc. 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 ...
#ifndef LIGHTNING_DAEMON_STATE_H #define LIGHTNING_DAEMON_STATE_H #include "config.h" #include "daemon/state_types.h" #include <stdbool.h> static inline bool state_is_error(enum state s) { return s >= STATE_ERR_BREAKDOWN && s <= STATE_ERR_INTERNAL; } static inline bool state_is_shutdown(enum state s) { return s ==...
//========= Copyright Valve Corporation, All rights reserved. ============// // // Purpose: // //=============================================================================// #ifndef GAMETRACE_H #define GAMETRACE_H #ifdef _WIN32 #pragma once #endif #include "cmodel.h" #include "utlvector.h" #include "ihandleentity...
/* * xrick/data/dat_picsPC.c * * Copyright (C) 1998-2002 BigOrno (bigorno@bigorno.net). All rights reserved. * * The use and distribution terms for this software are contained in the file * named README, which can be found in the root of this distribution. By * using this software in any fashion, you are agreein...
#include "jvm.h" /* with javap -s -p <class> you can get method signatures This plugin is the core for all of the JVM-based ones some function (for performance reason) use static vars. They are thread safe in gcc. */ extern struct uwsgi_server uwsgi; struct uwsgi_plugin jvm_plugin; struct uwsgi_jvm ujvm; int uw...
/* * Copyright (c) 1980 Regents of the University of California. * All rights reserved. The Berkeley software License Agreement * specifies the terms and conditions for redistribution. */ /* * ls * * 4.2bsd version for symbolic links, variable length * directory entries, block size in the inode, etc. */ #inc...
/* *********************************************************************************************************************** * * Copyright (c) 2016-2020 Advanced Micro Devices, Inc. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associ...
#define __IO volatile #define __IM volatile #define __OM volatile #define __IOM volatile #define __I volatile #define __O volatile // Macros to enable/disable global interrupts #define enable_interrupts() asm(" cpsie i ") #define disable_interrupts() asm(" cpsid i ") // macro for putting the CPU in to sleep mode #defin...
/* Bullet Continuous Collision Detection and Physics Library Copyright (c) 2003-2006 Erwin Coumans http://continuousphysics.com/Bullet/ 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. Permiss...
/**************************************************************************//** * @file ARMv8MML_DP.h * @brief CMSIS Core Peripheral Access Layer Header File for * ARMv8MML Device Series (configured for ARMv8MML with double precision FPU, without DSP extension, with TrustZone) * @version V5.00 * ...
#include QMK_KEYBOARD_H const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { /* * ┌───┐   ┌───┬───┬───┬───┐ ┌───┬───┬───┬───┐ ┌───┬───┬───┬───┐ ┌───┬───┬───┐ * │Esc│   │F1 │F2 │F3 │F4 │ │F5 │F6 │F7 │F8 │ │F9 │F10│F11│F12│ │PSc│Scr│Pse│ * └───┘   └───┴───┴───┴───┘ └───┴───┴───┴───┘ └───┴───...
/*************************************************************************** This source file is part of OGREBULLET (Object-oriented Graphics Rendering Engine Bullet Wrapper) For the latest info, see http://www.ogre3d.org/phpBB2addons/viewforum.php?f=10 Copyright (c) 2007 tuan.kuranes@gmail.com (Use it Freely, even S...
/***********************************************************************************************//** * \file xensiv_dps3xx.c * * Description: This file is the public implementation of the DPS3xx pressure sensors. *************************************************************************************************** * ...
#ifndef TRIVILOG_TRIVILOG_SAFE_FILE_LOGGER_H #define TRIVILOG_TRIVILOG_SAFE_FILE_LOGGER_H #include <mutex> #include "trivilog/file_logger.h" namespace trivilog { class SafeFileLogger : public FileLogger { public: explicit SafeFileLogger(std::ofstream &&ofstream); explicit SafeFileLogger(const std::strin...
/* * This file is part of the GROMACS molecular simulation package. * * Copyright (c) 2017,2018,2019,2020, by the GROMACS development team, led by * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl, * and including many others, as listed in the AUTHORS file in the * top-level source directory and at...
/* Public domain. */ #include "taia.h" double taia_frac(const struct taia *t) { return (t->atto * 0.000000001 + t->nano) * 0.000000001; }
#ifndef KOLIBRI_SRC_PASCAL_TOKEN_H_ #define KOLIBRI_SRC_PASCAL_TOKEN_H_ #include "base/token.h" namespace languages { namespace pascal { enum class PascalTokenId { kUnknown, // kPlus, kMinus, kMultiply, kIntegerDiv, kFloatDiv, kBegin, kEnd, kReal, kInteger, kRealConst, kIntegerConst, kId, ...
/* $NetBSD: ofbus.c,v 1.10 1998/02/24 05:44:39 mycroft Exp $ */ /* * Copyright (C) 1995, 1996 Wolfgang Solfrank. * Copyright (C) 1995, 1996 TooLs GmbH. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following condition...
/* LibTomCrypt, modular cryptographic library -- Tom St Denis * * LibTomCrypt is a library that provides various cryptographic * algorithms in a highly modular and flexible manner. * * The library is free for all purposes without any express * guarantee it works. */ /* The implementation is based on: * Public ...
/* * COPYRIGHT AND PERMISSION NOTICE * * Copyright (c) 2003 Embedded Unit Project * * All rights reserved. * * 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,...
// Copyright (c) 2021-2022 ByteDance 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 // to use, copy, modify, merge, pu...
/* ======================================== * Ensemble - Ensemble.h * Created 8/12/11 by SPIAdmin * Copyright (c) 2011 __MyCompanyName__, All rights reserved * ======================================== */ #ifndef __Ensemble_H #define __Ensemble_H #ifndef __audioeffect__ #include "audioeffectx.h" #endif #includ...
// // Created by liuxi on 2019/1/15. // #ifndef MATRIX2_INDEX_H #define MATRIX2_INDEX_H #include <vector> #include <type_traits> namespace Mx { template <typename T> struct Index: std::vector<T>{ Index() {} Index(int count, const T& v): vector<T>(count,v) {} Index(const std::initializ...
/* * This header is generated by classdump-dyld 1.0 * on Saturday, September 26, 2020 at 1:43:49 AM Mountain Standard Time * Operating System: Version 14.0 (Build 18J386) * Image Source: /System/Library/PrivateFrameworks/ConfigurationEngineModel.framework/ConfigurationEngineModel * classdump-dyld is licensed under GPLv...
/* * Linux AIO request queue * * Copyright 2012 IBM, Corp. * Copyright 2012 Red Hat, Inc. and/or its affiliates * * Authors: * Stefan Hajnoczi <stefanha@redhat.com> * * This work is licensed under the terms of the GNU GPL, version 2 or later. * See the COPYING file in the top-level directory. * */ #inclu...
/* * copyright 1999-2004 The Apache Software 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 applica...
#include "builtins/libgcc.h" #include "unit_test.h" #include <stddef.h> #include <stdint.h> #include "__udivmoddi4_data.inl" TEST(__udivdi3, validates_against_data) { size_t count = sizeof(tests) / sizeof(tests[0]); for (size_t i = 0; i < count; i++) { uint64_t num = tests[i][0]; ui...
/* * This header is generated by classdump-dyld 1.0 * on Tuesday, November 5, 2019 at 2:44:21 AM Mountain Standard Time * Operating System: Version 13.0 (Build 17J586) * Image Source: /System/Library/PrivateFrameworks/SAObjects.framework/SAObjects * classdump-dyld is licensed under GPLv3, Copyright © 2013-2016 by Elias...
/****************************************************************************** * * Copyright(c) 2007 - 2011 Realtek Corporation. All rights reserved. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU Genera...
/* * rfbserver.c - deal with server-side of the RFB protocol. */ /* * Copyright (C) 2005 Rohit Kumar, Johannes E. Schindelin * Copyright (C) 2002 RealVNC Ltd. * OSXvnc Copyright (C) 2001 Dan McGuirk <mcguirk@incompleteness.net>. * Original Xvnc code Copyright (C) 1999 AT&T Laboratories Cambridge. * All Rig...
//------------------------------------------------------------------------------ // shadows-sapp.c // Render to an offscreen rendertarget texture, and use this texture // for rendering shadows to the screen. //------------------------------------------------------------------------------ #define SOKOL_IMPL #include ...
#include <string.h> /* Headers required by PAPI */ #include "papi.h" #include "papi_internal.h" #include "papi_vector.h" #include "papi_memory.h" #include "linux-coretemp.h" /* this is what I found on my core2 machine * but I have not explored this widely yet*/ #define REFRESH_LAT 4000 #define INVALID_RESULT -100...
#pragma once #include <iostream> #include <memory> #include <vector> namespace Nitrade { class OptimiseParameter { private: std::string _name{""}; double _min{ 0 }; double _max{ 0 }; double _step{ 0 }; double _defaultValue{ 0 }; public: OptimiseParameter() = default; OptimiseParameter(std::string na...
// Copyright 2009-2012 The 'Mumble for iOS' Developers. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. #import <MumbleKit/MKServerModel.h> @class MUMessageRecipientViewController; @protocol MUMessageRecipientViewControllerDelegate - (void)...
/* * 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...
/* ** display_on_list.c for display_on_list in /home/soto_a/rendu/CPE_2014_Pushswap ** ** Made by Kaso Soto ** Login <soto_a@epitech.net> ** ** Started on Sat Dec 13 18:17:55 2014 Kaso Soto ** Last update Sun Oct 16 15:36:18 2016 */ #include "42sh.h" static void my_putvalue_env(char *str) { if (write(1, str, ...
#ifndef SPLAYER_H #define SPLAYER_H 1 #include "system.h" #include "vs1053.h" AppInfo* splayer(void); PlayerInfo* splayer_p(void); void splayer_playFile(char* path); uint8_t splayer_start(void); uint8_t splayer_stop(void); uint8_t splayer_pstart(void); uint8_t splayer_pstop(void); void splayer_pcomplete(void); ...
/** ****************************************************************************** * @file USB_Device/MSC_Standalone/Src/usbd_conf.c * @author MCD Application Team * @version V1.0.3 * @date 22-April-2016 * @brief This file implements the USB Device library callbacks and MSP **********************...
/* * Copyright (C) 2005-2019 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * * https://www.orfeo-toolbox.org/ * * 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 ...
#ifndef MESH_OBJECT #define MESH_OBJECT #include <queue> #include <vector> #include <math.h> #include <functional> #include <opencv2/opencv.hpp> #include <opencv2/highgui/highgui.hpp> #include <opencv2/video/tracking.hpp> #include <opencv2/imgproc.hpp> #include <opencv/cvaux.hpp> #include "Particle.h" #include "Hungar...
#pragma once #include <Engine/Messages/Message.hpp> #include <Engine/Mathematics.hpp> struct Weather : public mqs::ManagedMessage<Weather> { explicit Weather(float windStrenght, math::Angle windAngle) : ManagedMessage(1U) , windStrenght(windStrenght) , windAngle(windAngle) {}; float windStrenght; math::Angl...
/* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "EUTRA-RRC-Definitions" * found in "/home/lixh/enb_folder/openair2/RRC/LTE/MESSAGES/asn1c/ASN1_files/lte-rrc-14.7.0.asn1" * `asn1c -pdu=all -fcompound-names -gen-PER -no-gen-OER -no-gen-example -D /home/lixh/enb_folder/cmake_targets/lte...
// dear imgui: wrapper to use FreeType (instead of stb_truetype) // Get latest version at https://github.com/ocornut/imgui/tree/master/misc/freetype // Original code by @Vuhdo (Aleksei Skriabin), maintained by @ocornut #pragma once #include "imgui.h" // IMGUI_API, ImFontAtlas namespace ImGuiFreeType { typed...
#pragma once #include "common.h" #include "RiffFile.h" struct Loop; class VGMSamp; /* Articulation connection graph definitions */ /* Generic Sources */ #define CONN_SRC_NONE 0x0000 #define CONN_SRC_LFO 0x0001 #define CONN_SRC_KEYONVELOCITY 0x0002 #define CONN_SRC_KEYNUMBER ...
/* * Copyright (c) 2016, Alliance for Open Media. All rights reserved * * This source code is subject to the terms of the BSD 2 Clause License and * the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License * was not distributed with this source code in the LICENSE file, you can * obtain it at w...
// // AppDelegate.h // BluetoothUse // // Created by comyn on 2018/3/16. // Copyright © 2018年 comyn. All rights reserved. // #import <UIKit/UIKit.h> @interface AppDelegate : UIResponder <UIApplicationDelegate> @property (strong, nonatomic) UIWindow *window; @end
/* * Copyright (c) 2017 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 * rights ...
#ifndef INCLUDED_CORE_MAP_BASE_INPUT_H #define INCLUDED_CORE_MAP_BASE_INPUT_H #include "platform/i_platform.h" #include "i_input.h" #include <map> namespace map { class BaseInput : public IInput { public: ~BaseInput(); int_function_t GetInputNode( int32_t ordinal ); int_function_t GetInputNodeId( int32_t...
//================================================================================================= /*! // \file blaze_tensor/math/DilatedSubmatrix.h // \brief Header file for the complete DilatedSubmatrix implementation // // Copyright (C) 2012-2019 Klaus Iglberger - All Rights Reserved // Copyright (C) 2018-2019 ...
/* The MIT License (MIT) Copyright (c) [2016] [BTC.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, copy, modify, me...
/* Copyright 2017 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...
// This file is made available under Elastic License 2.0. // This file is based on code available under the Apache license here: // https://github.com/apache/incubator-doris/blob/master/be/src/olap/rowset/rowset.h // Licensed to the Apache Software Foundation (ASF) under one // or more contributor license agreements...
/*************************************************************************/ /* particles_2d_editor_plugin.h */ /*************************************************************************/ /* This file is part of: */ /* ...
/*************************************************************************** * * tdtcp.h * * This module contains private Transport Driver defines and structures * * Copyright 1998, Microsoft * * ****************************************************************************/ #define htons(x) ((((x) >> 8) & 0x0...
/* L I B B R E P _ B R E P _ T O O L S . H * BRL-CAD * * Copyright (c) 2013-2016 United States Government as represented by * the U.S. Army Research Laboratory. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public License * ver...
/* * Copyright (c) 2015-2019 Cadence Design Systems, 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 to use, copy, ...
/** ************************************************************************************** * @file reg_AD16C4T.h * @brief AD16C4T Head File * * @version V0.01 * @date 3/12/2018 * @author Eastsoft MCU Software Team * @note * * Copyright (C) 2018 Shanghai Eastsoft Microelectronics Co., Ltd. A...
/* ** String library. ** Copyright (C) 2005-2022 Mike Pall. See Copyright Notice in luajit.h ** ** Major portions taken verbatim or adapted from the Lua interpreter. ** Copyright (C) 1994-2008 Lua.org, PUC-Rio. See Copyright Notice in lua.h */ #define lib_string_c #define LUA_LIB #include "lua.h" #include "lauxlib.h"...
/* Copyright (c) 2011 Stefan Kurtz <kurtz@zbh.uni-hamburg.de> Copyright (c) 2011 Center for Bioinformatics, University of Hamburg Permission to use, copy, modify, and distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission n...
/* B G E T Buffer allocator Designed and implemented in April of 1972 by John Walker, based on the Case Algol OPRO$ algorithm implemented in 1966. Reimplemented in 1975 by John Walker for the Interdata 70. Reimplemented in 1977 by John Walker for the Marinchip 9900. Reimplemented...
#ifndef Py_CPYTHON_ABSTRACTOBJECT_H # error "this header file must not be included directly" #endif #ifdef __cplusplus extern "C" { #endif /* === Object Protocol ================================================== */ #ifdef PY_SSIZE_T_CLEAN # define _PyObject_CallMethodId _PyObject_CallMethodId_SizeT #endif /* Con...
/* Copyright (c) 2018 Griefer@Work * * * * This software is provided 'as-is', without any express or implied * * warranty. In no event will the authors be held liable for any damages * ...
// 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 BASE_MAC_SCOPED_TYPEREF_H_ #define BASE_MAC_SCOPED_TYPEREF_H_ #include "base/check.h" #include "base/compiler_specific.h" #include "base/memory/s...
/** DBG2 table parser Copyright (c) 2016 - 2018, ARM Limited. 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://opensour...
// secure_memzero.h version 1 (October 29, 2016) // // This code is released into the public domain. // // THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, // INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND // FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO E...
#include <std.h> #include "../tunnel.h" inherit TUNNELS + "mouthroom.c"; void create(){ ::create(); set_exits( ([ "south" : TUNNELS + "tun03" , "northeast" : TUNNELS + "tun05"]) ); } void enter_room() { if (!present("magicmouth")) { mouthsay("This next room to the northeast is very deadly. Enter ...
//============================================================================= // Copyright (C) 2011-2017 The pmp-library developers // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are met: // // * Redistributions of source ...
//////////////////////////////////////////////////////////////////////////////// /// DISCLAIMER /// /// Copyright 2014-2016 ArangoDB GmbH, Cologne, Germany /// Copyright 2004-2014 triAGENS GmbH, Cologne, Germany /// /// Licensed under the Apache License, Version 2.0 (the "License"); /// you may not use this file except...
/**************************************************************************** ** ** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies). ** All rights reserved. ** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the QtGui module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL$ ** ...
#define QT_VERSION_MAJOR 5 #define QT_VERSION_MINOR 7 #define QT_VERSION_PATCH 1 #define QT_VERSION_STR "5.7.1" /* Everything */ /* Compile time features */ /* Qt was configured for a static build */ #if !defined(QT_SHARED) && !defined(QT_STATIC) # define QT_STATIC #endif #define QT_LARGEFILE_SUPPORT 64...
/********************************************************************** * 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.* *******************************...
#pragma once #include <JuceHeader.h> #include "SpatialSynthSound.h" #include "SpatialSynthVoice.h" /** These classes are based on the Juce Synth classes but replace the midi functionality for arbitrary control sources and prioritise multichannel output. */ //================================================...
/** * Copyright 2020 Huawei Technologies Co., Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law...
/** ****************************************************************************** * @file stm32f4xx_hal_sd.c * @author MCD Application Team * @version V1.5.2 * @date 22-September-2016 * @brief SD card HAL module driver. * This file provides firmware functions to manage the following ...
/* TEMPLATE GENERATED TESTCASE FILE Filename: CWE122_Heap_Based_Buffer_Overflow__c_dest_char_ncpy_13.c Label Definition File: CWE122_Heap_Based_Buffer_Overflow__c_dest.string.label.xml Template File: sources-sink-13.tmpl.c */ /* * @description * CWE: 122 Heap Based Buffer Overflow * BadSource: Allocate using malloc...
/* TEMPLATE GENERATED TESTCASE FILE Filename: CWE272_Least_Privilege_Violation__w32_wchar_t_RegCreateKey_15.c Label Definition File: CWE272_Least_Privilege_Violation__w32.label.xml Template File: point-flaw-15.tmpl.c */ /* * @description * CWE: 272 Least Privilege Violation * Sinks: RegCreateKey * GoodSink: Crea...
/* * This header is generated by classdump-dyld 1.0 * on Sunday, September 27, 2020 at 11:53:37 AM Mountain Standard Time * Operating System: Version 14.0 (Build 18A373) * Image Source: /System/Library/PreferenceBundles/BluetoothSettings.bundle/BluetoothSettings * classdump-dyld is licensed under GPLv3, Copyright © 201...
// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*- #ifndef __gnu_javax_imageio_bmp_DecodeRLE4__ #define __gnu_javax_imageio_bmp_DecodeRLE4__ #pragma interface #include <gnu/javax/imageio/bmp/BMPDecoder.h> #include <gcj/array.h> extern "Java" { namespace gnu { namespace javax { namespac...
#pragma once #include "user.h" pn_t iommu_alloc_root(size_t i, uintptr_t va, int bar); void iommu_map(pn_t root, void *va, size_t n);
#ifndef FARM_NG_CALIBRATION_MULTI_VIEW_APRILTAG_RIG_CALIBRATOR_H_ #define FARM_NG_CALIBRATION_MULTI_VIEW_APRILTAG_RIG_CALIBRATOR_H_ #include "farm_ng/calibration/calibrate_multi_view_apriltag_rig.pb.h" #include "farm_ng/calibration/calibrator.pb.h" #include "farm_ng/perception/pose_graph.h" namespace farm_ng::calibra...
//------------------------------------------------------------------ // **MEDYAN** - Simulation Package for the Mechanochemical // Dynamics of Active Networks, v4.0 // // Copyright (2015-2018) Papoian Lab, University of Maryland // // ALL RIGHTS RESERVED // // See the MEDYAN web page f...
/* * Copyright (C) 2012 Intel Corporation. All rights reserved. * Copyright (C) 2012 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 r...
/* * psql - the PostgreSQL interactive terminal * * Copyright (c) 2000-2010, PostgreSQL Global Development Group * * src/bin/psql/command.c */ #include "postgres_fe.h" #include "command.h" #ifdef __BORLANDC__ /* needed for BCC */ #undef mkdir #endif #include <ctype.h> #ifdef HAVE_PWD_H #include <pwd.h> #endi...
/** -------------------------------------------------------------------------------------------------------------------- * <copyright company="Aspose" file="UnprotectDocumentRequest.h"> * Copyright (c) 2020 Aspose.Words for Cloud * </copyright> * <summary> * Permission is hereby granted, free of charge, to any pers...
/** ########################################################################## # If not stated otherwise in this file or this component's LICENSE # file the following copyright and licenses apply: # # Copyright 2019 RDK Management # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use thi...
// // Person.h // RaiseMan // // Created by MacRae Linton on 3/2/09. // Copyright 2009 Duke University. All rights reserved. // #import <Foundation/Foundation.h> @interface Person : NSObject <NSCoding> { NSString *personName; float expectedRaise; } @property (copy) NSString *personName; @property float expecte...