text
stringlengths
9
948k
// // Created by Kim on 26-09-2018. // #include "entity.h" #include <stddef.h> component_t entity_cpt; static const field_t entity_fields[] = { { "Ownership", component_type(owned_cpt), offsetof(entity_t, ownership), member_size(entity_t, ownership), false }, { "Naming", component_type(named_cpt), offset...
/* ################################################################### ** THIS COMPONENT MODULE IS GENERATED BY THE TOOL. DO NOT MODIFY IT. ** Filename : MotorInt.h ** Project : TOWERS ** Processor : MC9S08QE128CLK ** Component : TimerInt ** Version : Component 02.161, Driver 01.2...
// Copyright 2017 The Ray 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 agreed to i...
/* * linux/fs/adfs/super.c * * Copyright (C) 1997-1999 Russell King * * 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. */ #include <linux/module.h> #include <linux/init.h> #in...
//================================================================================== // Copyright (c) 2016 , Advanced Micro Devices, Inc. All rights reserved. // /// \author AMD Developer Tools Team /// \file gsImageWriter.h /// //================================================================================== //--...
/* * RTP packetization for H.263 video * Copyright (c) 2012 Martin Storsjo * * This file is part of Libav. * * Libav 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 ...
/* arch/arm/plat-samsung/irq-vic-timer.c * originally part of arch/arm/plat-s3c64xx/irq.c * * Copyright 2008 Openmoko, Inc. * Copyright 2008 Simtec Electronics * Ben Dooks <ben@simtec.co.uk> * http://armlinux.simtec.co.uk/ * * S3C64XX - Interrupt handling * * This program is free software; you can r...
// // Created by carlh on 12/7/16. // #ifndef RBE_PROJECT_PID_H #define RBE_PROJECT_PID_H namespace SparkiControl { class PID { public: // Integrated Error is updated each time class gets an update and error entered is // is added to Integrated Error. float I_error; float error...
/* B W R E C T . C * BRL-CAD * * Copyright (c) 1986-2014 United States Government as represented by * the U.S. Army Research Laboratory. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public License * version 2.1 as ...
/****************************************************************************** * Copyright 2015-2020 Xilinx, 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/li...
// 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...
/* * Copyright (c) 2010 SURFnet bv * 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 condition...
/* * Copyright (C) 2006 The Android Open Source Project * * 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 app...
/* * Copyright (c) 2008-2019, Hazelcast, Inc. 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) 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://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicabl...
#include <stdio.h> void ft_rev_int_tab(int *tab, int size); int main(void) { int i; int size; size = 6; int array[6] = {1, 42, 34, 0, 100, 10000}; i = 0; ft_rev_int_tab(array, size); while (i < size) { printf("%d ", array[i]); i++; } return 0; }
// // 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 "RVKView.h" #import "RVKNodeProtocol-Protocol.h" @class NSString; @interface NXKView : RVKView <RVKNodeProtocol> { _Bool...
/** * \file * * \brief Instance description for PORT * * Copyright (c) 2018 Microchip Technology Inc. * * \asf_license_start * * \page License * * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); you may * not use this file except in compliance with t...
/*** Autogenerated by WIDL 1.6 from include/msctf.idl - Do not edit ***/ #ifndef __REQUIRED_RPCNDR_H_VERSION__ #define __REQUIRED_RPCNDR_H_VERSION__ 475 #endif #include <rpc.h> #include <rpcndr.h> #ifndef COM_NO_WINDOWS_H #include <windows.h> #include <ole2.h> #endif #ifndef __msctf_h__ #define __msctf_h__ /* Forw...
#include <assert.h> #include <string.h> #include <math.h> #ifdef IKS01A1_SENSOR_BOARD #include "x_nucleo_iks01a1.h" #include "x_nucleo_iks01a1_accelero.h" #include "x_nucleo_iks01a1_gyro.h" #include "x_nucleo_iks01a1_humidity.h" #include "x_nucleo_iks01a1_magneto.h" #include "x_nucleo_iks01a1_pressure.h" #include "x_n...
/****************************************************************************** * Copyright(c) 2008 - 2010 Realtek Corporation. All rights reserved. * * This program is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR ...
#pragma once #include "mylib/basic_define.h" #include <atomic> NS_BEG1(mylib) template <typename T> struct node { std::atomic<node<T> *> next; T value; node(T v) : value(v) { this->next.exchange(std::atomic<node<T> *>(nullptr)); } }; template <typename T> class mpsc_queue { private: node<T> * head...
/* Copyright (c) 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 conditions and the follow...
// // FCScrollComponent.h // FlexboxCanvas // // Created by Guang Yang on 2021/8/25. // #import "FCViewComponent.h" NS_ASSUME_NONNULL_BEGIN @interface FCScrollComponent : FCViewComponent @end NS_ASSUME_NONNULL_END
/* Copyright (c) 2017, Google Inc. * * 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 AUTHOR DISCLAIMS...
#ifndef SCHPUNE_NESCORE_DMC_SUPPLIER_H_INCLUDED #define SCHPUNE_NESCORE_DMC_SUPPLIER_H_INCLUDED #include "schpunetypes.h" namespace schcore { //////////////////////////////////////////////// // There needs to be 2 different DMC suppliers -- one for the DMCPU and // one for the audible DMC. The audible ...
/* * $FreeBSD: src/sys/boot/efi/include/eficon.h,v 1.2 2002/05/19 03:17:20 marcel Exp $ * $DragonFly: src/sys/boot/efi/include/eficon.h,v 1.1 2003/11/10 06:08:32 dillon Exp $ */ #ifndef _EFI_CON_H #define _EFI_CON_H /*++ Copyright (c) 1998 Intel Corporation Module Name: eficon.h Abstract: EFI console ...
/** * \file * \brief */ /* * Copyright (c) 2007, 2008, ETH Zurich. * All rights reserved. * * This file is distributed under the terms in the attached LICENSE file. * If you do not find this file, copies can be found by writing to: * ETH Zurich D-INFK, Haldeneggsteig 4, CH-8092 Zurich. Attn: Systems Group. *...
/* * Copyright (c) 2016 Intel Corporation * * SPDX-License-Identifier: Apache-2.0 */ /** * @brief Thread Tests * @defgroup kernel_thread_tests Threads * @ingroup all_tests * @{ * @} */ #include <ztest.h> #include <kernel_structs.h> #include <kernel.h> #include <kernel_internal.h> #include <string.h> exter...
/* * Arm SCP/MCP Software * Copyright (c) 2020-2021, Arm Limited and Contributors. All rights reserved. * * SPDX-License-Identifier: BSD-3-Clause */ #include <mod_ssc.h> #include <mod_system_info.h> #include <fwk_id.h> #include <fwk_module.h> #include <fwk_module_idx.h> #include <stddef.h> const struct fwk_mod...
/* FreeRTOS V7.5.3 - Copyright (C) 2013 Real Time Engineers Ltd. All rights reserved VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION. *************************************************************************** * ...
// // Generated by class-dump 3.5 (64 bit). // // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard. // #import "MMMSBaseViewController.h" @class UIImageView; @interface MMMSStartViewController : MMMSBaseViewController { UIImageView *m_logoView; } - (void).cxx_destruct; - (void...
#pragma once #include <vector> #include <UrchinCommon.h> namespace urchin { struct PlaneSurfaceSplit { std::vector<Point3<float>> planeSurfacePoints; }; class PlaneSurfaceSplitService { public: explicit PlaneSurfaceSplitService(float); std::vector<PlaneSurfaceSpl...
#pragma once #include "../HiraASCII/Headers/Behaviour.h" enum EGameManagerStates { Null, Opening, Playing, Ended }; class GameManager : public Behaviour { public: explicit GameManager(GameObject& InGo); void Establish() override; void PreCollisionTick() override; private: int Score = 0; EGam...
/* TEMPLATE GENERATED TESTCASE FILE Filename: CWE121_Stack_Based_Buffer_Overflow__CWE806_wchar_t_declare_loop_45.c Label Definition File: CWE121_Stack_Based_Buffer_Overflow__CWE806.label.xml Template File: sources-sink-45.tmpl.c */ /* * @description * CWE: 121 Stack Based Buffer Overflow * BadSource: Initialize dat...
// Copyright 2019 Shift Cryptosecurity AG // // 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 ...
/*------------------------------------------------------------------------- * * pg_opclass.h * definition of the system "opclass" relation (pg_opclass) * along with the relation's initial contents. * * The primary key for this table is <opcmethod, opcname, opcnamespace> --- * that is, there is a row for each...
/* Generated by ./xlat/gen.sh from ./xlat/rtnl_mdba_mdb_attrs.in; do not edit. */ #if !(defined(MDBA_MDB_UNSPEC) || (defined(HAVE_DECL_MDBA_MDB_UNSPEC) && HAVE_DECL_MDBA_MDB_UNSPEC)) # define MDBA_MDB_UNSPEC 0 #endif #if !(defined(MDBA_MDB_ENTRY) || (defined(HAVE_DECL_MDBA_MDB_ENTRY) && HAVE_DECL_MDBA_MDB_ENTRY)) # def...
/** * utils.c - Part of the Linux-NTFS project. * * Copyright (c) 2002-2005 Richard Russon * Copyright (c) 2003-2006 Anton Altaparmakov * Copyright (c) 2003 Lode Leroy * Copyright (c) 2005-2007 Yura Pakhuchiy * Copyright (c) 2014 Jean-Pierre Andre * * A set of shared functions for ntfs utilities * * Thi...
// Begin CVS Header // $Source: /Volumes/Home/Users/shoops/cvs/copasi_dev/copasi/sensitivities/CSensTask.h,v $ // $Revision: 1.10 $ // $Name: $ // $Author: shoops $ // $Date: 2011/03/07 19:33:42 $ // End CVS Header // Copyright (C) 2011 - 2010 by Pedro Mendes, Virginia Tech Intellectual // Properties, Inc.,...
#include <stdio.h> #include <time.h> #include "game/scenes/mainmenu/menu_video_confirm.h" #include "game/gui/gui.h" #include "game/utils/settings.h" #include "video/video.h" #include "utils/allocator.h" typedef struct { time_t video_accept_timer; settings_video *old_video_settings; int video_accept_secs;...
/** ************************************************************************** * File : at32f4xx_wwdg.c * Version: V1.2.2 * Date : 2020-07-01 * Brief : at32f4xx WWDG source file ************************************************************************** */ /* Includes -------------------------------...
/* * View_smp.h * ---------- * Purpose: Sample tab, lower panel. * Notes : (currently none) * Authors: Olivier Lapicque * OpenMPT Devs * The OpenMPT source code is released under the BSD license. Read LICENSE for more details. */ #pragma once #include "openmpt/all/BuildSettings.hpp" #include "Globa...
// // YKRemoteTableViewController.h // YKCenterDemo // // Created by Don on 2017/1/18. // Copyright © 2017年 Shenzhen Yaokan Technology Co., Ltd. All rights reserved. // #import <UIKit/UIKit.h> @interface YKRemoteTableViewController : UITableViewController @end
/* * Copyright (C) 2014 MongoDB Inc. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License, version 3, * as published by the Free Software Foundation. * * This program is distributed in the hope that it will be usefu...
#ifndef FRAMELIB_COMPLEX_UNARY_OBJECTS_H #define FRAMELIB_COMPLEX_UNARY_OBJECTS_H #include "FrameLib_Complex_Unary_Template.h" #include <functional> // Complex Unary (functions) // Info specialisations template<> inline const char *FrameLib_Complex_Unary<std::cos<double>>::getOpString() { return "cosine"; } t...
/******************************************************************************* System Initialization File File Name: initialization.c Summary: This file contains source code necessary to initialize the system. Description: This file contains source code necessary to initialize the system. It ...
#ifndef __EventDemos_h__ #define __EventDemos_h__ #if ANDROID #include <jni.h> #endif #include "common.h" #ifdef __cplusplus extern "C" { #endif DEMO_ENTRY(event, AccelerometerTest); DEMO_ENTRY(event, CharacterMoveTest); DEMO_ENTRY(event, ClickAndMoveTest); DEMO_ENTRY(event, CustomBackTest); DEMO_ENTRY(event, Doubl...
/* * Copyright (c) 2007-2013 Nicira, Inc. * * 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 hope that it will be useful, but * WITHOUT...
/* * << Haru Free PDF Library >> -- hpdf_fontdef.h * * URL: http://libharu.org * * Copyright (c) 1999-2006 Takeshi Kanno <takeshi_kanno@est.hi-ho.ne.jp> * Copyright (c) 2007-2009 Antony Dovgal <tony@daylessday.org> * * Permission to use, copy, modify, distribute and sell this software * and its documentation f...
/* * Copyright(c) 2019 Netflix, Inc. * SPDX - License - Identifier: BSD - 2 - Clause - Patent */ /* * 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 Licen...
// Copyright (c) 2010 Satoshi Nakamoto // Copyright (c) 2009-2014 The Bitcoin developers // Copyright (c) 2015-2018 The PIVX developers // Copyright (c) 2018 The Cronos developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. ...
/* * ng_pptpgre.c * * Copyright (c) 1996-1999 Whistle Communications, Inc. * All rights reserved. * * Subject to the following obligations and disclaimer of warranty, use and * redistribution of this software, in source or object code forms, with or * without modifications are expressly permitted by Whistle Co...
#pragma once #include <cstdint> #pragma pack (1) #define MNALU_START_CODE 0x00000001 #define MPACK_START_CODE 0x00 00 01 BA #define MSYSTEM_HEADER_START_CODE 0x00 00 01 BB #define MPROMGRAM_STREAM_MAP_START_CODE 0x00 00 01 BC #define MPES_START_CODE_PREFIX 0x00 00 01 //MPEG - 2 Program Stream pack header struct ps_he...
#include "cs.h" /* allocate a sparse matrix (triplet form or compressed-column form) */ cs *cs_spalloc (int m, int n, int nzmax, int values, int triplet) { cs *A = cs_calloc (1, sizeof (cs)) ; /* allocate the cs struct */ if (!A) return (NULL) ; /* out of memory */ A->m = m ; ...
// Copyright 2017 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_VIZ_SERVICE_DISPLAY_EMBEDDER_GPU_DISPLAY_PROVIDER_H_ #define COMPONENTS_VIZ_SERVICE_DISPLAY_EMBEDDER_GPU_DISPLAY_PROVIDER_H_ #include ...
#pragma once #include "Discord/Objects/Emoji.h" class QJsonObject; QDISCORD_NAMESPACE_BEGIN class Reaction { public: explicit Reaction(const QJsonObject& data); const Emoji& emoji() const { return emoji_; } int count() const { return count_; } bool me() const { return me_; } private: Emoji emoji_; int c...
#ifndef _REGEX_H_ #define _REGEX_H_ /* never again */ #ifdef __cplusplus extern "C" { #endif #define _POSIX2_RE_DUP_MAX 256 typedef off_t regoff_t; typedef struct { int re_magic; size_t re_nsub; /* number of parenthesized subexpressions */ const char *re_endp; /* end pointer for REG_PEND */ struct re_guts *r...
/* 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...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ /** * \file * Functions and types for CRC checks. * * Generated on Wed Jun 5 12:56:10 2019 * by pycrc v0.9.2, https://pycrc...
#ifndef ALITPCTRACK_H #define ALITPCTRACK_H /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. * * See cxx source for full Copyright notice */ /* $Id$ */ //------------------------------------------------------- // TPC Track Class // // Origin:...
/* * libhello.h - The hello library */ /* * A function to say hello to @person */ void hello(const char *person);
/* * Hermes.h * * Generated with * sdef /Applications/Hermes.app | sdp -fh --basename Hermes */ #import <AppKit/AppKit.h> #import <ScriptingBridge/ScriptingBridge.h> @class HermesApplication, HermesSong, HermesStation; // Legal player states enum HermesPlayerStates { HermesPlayerStatesStopped = 'stop' /* Play...
/* * pinctrl pads, groups, functions for CSR SiRFatlasVII * * Copyright (c) 2011 - 2014 Cambridge Silicon Radio Limited, a CSR plc group * company. * * Licensed under GPLv2 or later. */ #include <linux/init.h> #include <linux/platform_device.h> #include <linux/io.h> #include <linux/bitops.h> #include <linux/irq...
/** * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #pragma once #include <functional> #include <memory> #include <string> #include <vector> namespace facebook { namespace ReactABI...
/* Copyright (c) 2002-2006 Lucent Technologies; see LICENSE */ /* Copyright (c) 2004 Google Inc.; see LICENSE */ #include <stdarg.h> #include <string.h> #include "plan9.h" #include "fmt.h" #include "fmtdef.h" /* format the output into f->to and return the number of characters fmted */ int dofmt(Fmt *f, char *fmt) { ...
#include "cmsis_os2.h" // CMSIS RTOS header file /*---------------------------------------------------------------------------- * Memory Pool creation & usage *---------------------------------------------------------------------------*/ #define MEMPOOL_OBJECTS 16 ...
/* * FreeRTOS V202012.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. 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, including ...
/* frame: Heap of routines dealing with the core mpg123 data structure. copyright 2008-2014 by the mpg123 project - free software under the terms of the LGPL 2.1 see COPYING and AUTHORS files in distribution or http://mpg123.org initially written by Thomas Orgis */ #include "mpg123lib_intern.h" #include "getcpufl...
// 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...
/* Copyright (c) 2019, Ameer Haj Ali (UC Berkeley), and Intel Corporation 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 ...
/** * Autogenerated by Thrift for storage.thrift * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated */ #pragma once #include <thrift/lib/cpp2/gen/service_h.h> #include "GeneralStorageServiceAsyncClient.h" #include "storage_types.h" #include "common_types.h" #include "meta_types.h"...
#include "stdio_impl.h" #include <sys/uio.h> #include <pthread.h> // @@@ #ifdef _MSC_VER #include<errno.h> #include<efi.h> #include<efilib.h> #if defined(_DEBUG) #include "win64env.h" #endif size_t __stdio_write(FILE *f, const unsigned char *buf, size_t len) { #if !defined(_DEBUG) if ((NULL == f) || (NULL == f->ef...
/** @file Deal with devices that just exist in memory space. To follow the EFI driver model you need a root handle to start with. An EFI driver will have a driver binding protocol (Supported, Start, Stop) that is used to layer on top of a handle via a gBS->ConnectController. The first handle has to just be i...
/** * RdTk: Remote Desktop Toolkit * * Copyright 2014 Marc-Andre Moreau <marcandre.moreau@gmail.com> * * 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/lic...
/* * Copyright (C) 2020-2021 Roger Clark, VK3KYY / G4KYF * Daniel Caujolle-Bert, F1RMB * * * 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 ...
/****************************************************************************** * @section DESCRIPTION * * This subroutine saves the model state at second 0 of the date defined in the * global control file using STATEDAY, STATEMONTH, and STATEYEAR. The saved * files can then be used to initialize the model to the...
#include <lib9.h> #include <styx.h> #include "dat.h" #include "fns.h" #include "flash.h" #include "flashptab.h" #include "flashstream.h" #include "bpi.h" #include "screen.h" #include "error.h" extern FlashMap flashmap[]; extern int nflash; static FlashInfo *flashinfo; static void flash_flush(FlashInfo *f) { if(f-...
/* * Copyright (c) 2012, 2013, Joel Bodenmann aka Tectu <joel@unormal.org> * Copyright (c) 2012, 2013, Andrew Hannam aka inmarket * * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * R...
// // ObjDet.h // // Object Detection // Created by txjeremyli on 2018/02/01. // Copyright 2018 tencent. All rights reserved. // #ifndef __OBJ_DET_H #define __OBJ_DET_H #include "ImgComn.h" #include "GradTmplMatch.h" // ************************************************************************************** // ...
/*************************************************************************** * PHAST: PHylogenetic Analysis with Space/Time models * Copyright (c) 2002-2005 University of California, 2006-2010 Cornell * University. All rights reserved. * * This source code is distributed under a BSD-style license. See the * fi...
/* Copyright (c) 2014, Google Inc. * * 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 AUTHOR DISCLAIMS...
#ifndef RANSACSELECTOR_H #define RANSACSELECTOR_H #include "RansacSampleSet.h" namespace K { /** * randomly choose samples from the underlying sample-set to * pass them into: * estimation * outlier-detection */ template <typename Sample> class RansacSelector { public: /** provide a random subset,...
/* * Copyright (c) 2014-2016 Alibaba Group. All rights reserved. * License-Identifier: Apache-2.0 * * 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...
/* * Copyright 2010-2017 Amazon.com, Inc. or its affiliates. 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. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" fil...
/*========================================================================= Program: Visualization Toolkit Module: vtkImageGradientMagnitude.h Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen All rights reserved. See Copyright.txt or http://www.kitware.com/Copyright.htm for details. This s...
static int epoll_fd; static int dpy_fd; static Monitor *lastselmon; int handlexevent(struct epoll_event *ev) { if (ev->events & EPOLLIN) { XEvent ev; while (running && XPending(dpy)) { XNextEvent(dpy, &ev); /* Unfortunately the xkbEventType is not constant hence it can't be part of the * normal event ha...
/* -*- C -*- */ #ifndef CONTIKI_CONF_H #define CONTIKI_CONF_H #include "platform-conf.h" #ifndef NETSTACK_CONF_MAC #define NETSTACK_CONF_MAC csma_driver #endif /* NETSTACK_CONF_MAC */ #ifndef NETSTACK_CONF_RDC #define NETSTACK_CONF_RDC contikimac_driver #endif /* NETSTACK_CONF_RDC */ #ifndef NETSTACK_CONF_...
#ifndef Py_WARNINGS_H #define Py_WARNINGS_H #ifdef __cplusplus extern "C" { #endif #ifndef Py_LIMITED_API PyAPI_FUNC(PyObject*) _PyWarnings_Init(void); #endif PyAPI_FUNC(int) PyErr_WarnEx( PyObject *category, const char *message, /* UTF-8 encoded string */ Py_ssize_t stack_level); PyAPI_FUNC(int) P...
#ifndef _MICREL_H #define MII_KSZ9021_EXT_COMMON_CTRL 0x100 #define MII_KSZ9021_EXT_STRAP_STATUS 0x101 #define MII_KSZ9021_EXT_OP_STRAP_OVERRIDE 0x102 #define MII_KSZ9021_EXT_OP_STRAP_STATUS 0x103 #define MII_KSZ9021_EXT_RGMII_CLOCK_SKEW 0x104 #define MII_KSZ9021_EXT_RGMII_RX_DATA_SKEW 0x105 #define MII_KSZ9021_EXT...
#ifdef __OBJC__ #import <UIKit/UIKit.h> #else #ifndef FOUNDATION_EXPORT #if defined(__cplusplus) #define FOUNDATION_EXPORT extern "C" #else #define FOUNDATION_EXPORT extern #endif #endif #endif FOUNDATION_EXPORT double Pods_flix_app_flix_appUITestsVersionNumber; FOUNDATION_EXPORT const unsigned char Pods_flix_app_fli...
// // TIXboxLiveFriendsParser.h // TIXboxLiveEngine // // Created by Tom Irving on 21/10/2010. // Copyright 2010 Tom Irving. All rights reserved. // #import "TIXboxLiveEngineCookieBase.h" typedef void (^TIXboxLiveFriendsParserFriendsBlock)(NSArray * onlineFriends, NSArray * offlineFriends, NSArray * friendRequest...
/*------------------------------------------------------------------------- * * nodeIndexscan.h * * * * Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * $PostgreSQL: pgsql/src/include/executor/nodeIndexscan.h,v 1.30...
/* ---------------------------------------------------------------------- * * dndutil.c * * by Jamis Buck (jgb3@email.byu.edu) * * Utility functions for the Dungeons & Dragons(tm) API. This file is in * the public domain. * ---------------------------------------------------------------------- */ /* ----------...
#pragma once #include "Forward/Application.h" #include "Forward/Layer.h" #include "Forward/Log.h" #include "Forward/Input.h" #include "Forward/KeyCodes.h" #include "Forward/MouseButtonKeys.h" #include "Forward/ImGui/ImGuiLayer.h" #include "Forward\Core\Timestep.h" #include "Forward\Renderer\VertexArray.h" #include...
// -*- mode: c++; tab-width: 4; indent-tabs-mode: t; c-file-style: "stroustrup"; -*- // vi:set ts=4 sts=4 sw=4 noet : // Copyright 2008, The TPIE development team // // This file is part of TPIE. // // TPIE is free software: you can redistribute it and/or modify it under // the terms of the GNU Lesser General Public ...
// Copyright 2015-2018 Espressif Systems (Shanghai) PTE 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 app...
/******************************************************************************* * S T M 3 2 F 4 _ T E S T . C ******************************************************************************** * Description: * Source file for testing lwHAL. * * lwHAL (c) 2021, Silvano Furlan. **************...
/**************************************************************************** * * Copyright (c) 2009 Broadcom Corporation * * Unless you and Broadcom execute a separate written software license * agreement governing use of this software, this software is licensed to you * under the terms of the GNU General ...
/**************************************************************************** * * ttnameid.h * * TrueType name ID definitions (specification only). * * Copyright 1996-2018 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be used, * modified, ...