text
stringlengths
9
948k
// SPDX-License-Identifier: GPL-2.0 /* * Arch specific cpu topology information * * Copyright (C) 2016, ARM Ltd. * Written by: Juri Lelli, ARM Ltd. */ #include <linux/acpi.h> #include <linux/cpu.h> #include <linux/cpufreq.h> #include <linux/device.h> #include <linux/of.h> #include <linux/slab.h> #include <linux/s...
#pragma once #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Wempty-body" #pragma clang diagnostic ignored "-Wswitch" #endif #include <altv-cpp-api/SDK.h> #include "position.h" #include "rotation.h" #include "rgba.h" #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __cpl...
/** \file * Polygon clipping. <br> * * Copyright 2005-2006 Herocraft Hitech Co. Ltd.<br> * Version 1.0 beta. */ #ifndef __MD_POLYCLIP_H__ #define __MD_POLYCLIP_H__ #define POLYCLIP_EPSILON (F_ONE/100) namespace mdragon { /// 2D point class. class Point { public: /// Default constructor. Point() {} /// Con...
/**************************************************************************** * include/lzf.h * http://liblzf.plan9.de/ * * Copyright (c) 2000-2008 Marc Alexander Lehmann <schmorp@schmorp.de> * This algorithm is believed to be patent-free. * * Redistribution and use in source and binary forms, with or withou...
/* * Copyright (c) 2022 Winsider Seminars & Solutions, Inc. All rights reserved. * * This file is part of System Informer. * * Authors: * * wj32 2010-2011 * dmex 2016-2021 * */ #include "exttools.h" typedef struct _UNLOADED_DLLS_CONTEXT { BOOLEAN IsWow64; HWND ListViewHandle; HWND...
/* $Id: ice_session.c 5850 2018-08-01 08:34:19Z ming $ */ /* * Copyright (C) 2008-2011 Teluu Inc. (http://www.teluu.com) * Copyright (C) 2003-2008 Benny Prijono <benny@prijono.org> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as pu...
#ifndef _PLIB_CMP_P32XXXX_H #define _PLIB_CMP_P32XXXX_H #if defined(__32MK1024GPE100__) #include "cmp_p32mk1024gpe100.h" #elif defined(__32MK1024GPD100__) #include "cmp_p32mk1024gpd100.h" #elif defined(__32MK1024GPE064__) #include "cmp_p32mk1024gpe064.h" #elif defined(__32MK1024GPD064__) #include "c...
#ifndef __wrapper_LHdecayTable_decl_Pythia_8_212_h__ #define __wrapper_LHdecayTable_decl_Pythia_8_212_h__ #include <cstddef> #include "forward_decls_wrapper_classes.h" #include "gambit/Backends/wrapperbase.hpp" #include "abstract_LHdecayTable.h" #include "wrapper_LHdecayChannel_decl.h" #include <vector> #include <stri...
// // BPDetailTextFieldTableViewCell.h // qinziyuan_b_ios // // Created by zhudou on 2017/12/6. // Copyright ยฉ 2017ๅนด ryb. All rights reserved. // #import "BPPureTextImageTableViewCell.h" @interface BPDetailTextFieldTableViewCell : BPPureTextImageTableViewCell @property (nonatomic, weak) UITextField* detailTextFi...
// // Copyright (c) SRG SSR. All rights reserved. // // License information is available from the LICENSE file. // @import SRGAnalyticsDataProvider; NS_ASSUME_NONNULL_BEGIN /** * Settings to be applied when performing resource lookup retrieval for media playback. Resource lookup attempts * to find a close matc...
//------------------------------------------------------------------------------ // GB_unop: hard-coded functions for each built-in unary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved. // SPDX-Li...
๏ปฟ/* * 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...
/* * Copyright (C) 2004-2015 Internet Systems Consortium, Inc. ("ISC") * Copyright (C) 1999-2003 Internet Software Consortium. * * 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 permiss...
๏ปฟ/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include <aws/ds/DirectoryService_EXPORTS.h> #include <aws/ds/DirectoryServiceRequest.h> #include <aws/core/utils/memory/stl/AWSString.h> #include <utility> namespace Aws { namespace Dir...
/* * This header is generated by classdump-dyld 1.0 * on Sunday, September 27, 2020 at 11:43:25 AM Mountain Standard Time * Operating System: Version 14.0 (Build 18A373) * Image Source: /System/Library/PrivateFrameworks/NewsUI2.framework/NewsUI2 * classdump-dyld is licensed under GPLv3, Copyright ยฉ 2013-2016 by Elias L...
/* * This header is generated by classdump-dyld 1.5 * on Wednesday, October 27, 2021 at 3:22:21 PM Mountain Standard Time * Operating System: Version 13.5.1 (Build 17F80) * Image Source: /System/Library/PrivateFrameworks/HealthE...
/** * This software is distributed under the terms of the MIT License. * Copyright (c) 2020 LXRobotics. * Author: Alexander Entinger <alexander.entinger@lxrobotics.com> * Contributors: https://github.com/107-systems/107-Arduino-Cyphal/graphs/contributors. */ /******************************************************...
/* ---------------------------------------------------------------------------- */ /* Atmel Microcontroller Software Support */ /* SAM Software Package License */ /* --------------------------------------------------------------------...
/** * @file Params.h * * @brief Parameter classes for Zerocoin. * * @author Ian Miers, Christina Garman and Matthew Green * @date June 2013 * * @copyright Copyright 2013 Ian Miers, Christina Garman and Matthew Green * @license This project is released under the MIT license. **/ // Copyright (c)...
#include <stdio.h> #include <stdlib.h> #include <sys/types.h> #include <sys/wait.h> #include <pthread.h> #include <unistd.h> static void * worker (void *dummy) { exit (26); } #define TEST_FUNCTION do_test () #define TIMEOUT 10 static int do_test (void) { pthread_t th; pid_t pid; int status; switch ((pid = ...
/************************************************* * Perl-Compatible Regular Expressions * *************************************************/ /* PCRE is a library of functions to support regular expressions whose syntax and semantics are as close as possible to those of the Perl 5 language. ...
// // 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 CUIRenditionKey, NSDate, NSObject<TDCustomAssetSource>, NSString; @interface TDCustomAssetImportInfo : NSObject { BOOL _optOutOfThinning; CUIRe...
// // Created by chengxin on 16/1/20. // Copyright (c) 2016 Grant. All rights reserved. // #import <Foundation/Foundation.h> #import <UIKit/UIKit.h> #import "objc/runtime.h" #define BYTStoryboard(sb, vc) [[UIStoryboard storyboardWithName:sb bundle:nil] instantiateViewControllerWithIdentifier:vc]; @interface UIStoryb...
#include<stdio.h> #include"common.h" void push_tail(Node** head, Message *new_data) { Node* new_node = (struct node*) malloc(sizeof(Node)); Node * tmp = *head; memcpy(&new_node->data, new_data, sizeof(Message)); new_node->next = NULL; if(*head == NULL) { *head = new_node; } ...
/** * 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...
/* Open Asset Import Library (assimp) ---------------------------------------------------------------------- Copyright (c) 2006-2017, assimp team All rights reserved. Redistribution and use of this software in source and binary forms, with or without modification, are permitted provided that the following conditions...
/* * this file is part of pylzfse. * * Copyright (c) 2016, 2017 Dima Krasner * * 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 rig...
/** ****************************************************************************** * @file stm32f0xx_hal_gpio.c * @author MCD Application Team * @version V1.1.0 * @date 03-Oct-2014 * @brief GPIO HAL module driver. * This file provides firmware functions to manage the following * ...
/* $OpenBSD: cpu.c,v 1.28 2010/11/28 20:57:09 miod Exp $ */ /* $NetBSD: cpu.c,v 1.44 2000/05/23 05:12:53 thorpej Exp $ */ /*- * Copyright (c) 1998, 1999 The NetBSD Foundation, Inc. * All rights reserved. * * This code is derived from software contributed to The NetBSD Foundation * by Jason R. Thorpe of the Numeri...
/* * Copyright 2020 Google Inc. * * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #ifndef D3DTestContext_DEFINED #define D3DTestContext_DEFINED #include "tools/gpu/TestContext.h" #ifdef SK_DIRECT3D # include "include/gpu/d3d/GrD3DBackendContext.h" name...
// Copyright (c) 2014 Adafruit Industries // Author: Tony DiCola // 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 2011-2014 NimbusKit // // 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 t...
#pragma once #include "Fusion/Core/Base.h" namespace Fusion { namespace Graphics { enum class ShaderDataType { None = 0, Float, Float2, Float3, Float4, Mat3, Mat4, Int, Int2, Int3, Int4, Bool }; static uint32_t ShaderDataTypeSize(ShaderDataType type) { switch (type) { case ShaderDataType::Float: ret...
/* * This header is generated by classdump-dyld 1.5 * on Wednesday, April 14, 2021 at 2:21:32 PM Mountain Standard Time * Operating System: Version 14.4 (Build 18K802) * Image Source: /System/Library/PrivateFrameworks/GeoService...
#include <ip.h> rn_link * getroute(ip_state * state, rn_message * msg, tw_lp * lp) { rn_machine *me = rn_getmachine(lp->gid); rn_link *link = NULL; //int next_hop = -1; /* * Get the next_hop destination from the forwarding table * for this IP packet. */ if(msg->src == lp->gid && me->nlinks == 1) lin...
/******************************************************************************* * Copyright (c) 2014 IBM Corp. * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this d...
#include <stdio.h> #include <stdlib.h> #include "rank.h" #include "../cabecalho.h" #include "../jogador/jogador.h" int rank_imprimir(void) { int dias; char nome[JOGADOR_NOME]; FILE *file = fopen(JOGO_ARQUIVO, JOGO_ARQUIVO_MODO_LEITURA); if (file == NULL) return -1; fscanf(file, "%[^;] %*c", nome...
#include <stdio.h> #include <string.h> #include <stdlib.h> int arr[1024]; int jesam[1024]; char oznake[1024][1024]; typedef struct Cvor { int value; int *arr; int len; } Cvor; Cvor cvor[1024]; void dodaj(int pos,char znak) { int i; for(i=0;i<1024;++i) { if(oznake[pos][i]==0) { oznake[pos][i] = znak; re...
#include <Python.h> #include <numpy/npy_math.h> #include <stdio.h> #include <math.h> #include "sf_error.h" #include "../cephes.h" #undef fabs #include "misc.h" /* Limits after which to issue warnings about non-convergence */ #define ALLOWED_ATOL (1e-306) #define ALLOWED_RTOL (1e-6) /* Inverse of the (regularised...
#include <geminc.h> #include <gemprm.h> #include <dccmn.h> #include <na.h> #include "dcgrib.h" typedef struct glist { int center; int subcenter; int gridid; int modelid; char filnam[512]; int maxgrids; struct glist *next; } glist; struct glist *head=NULL; #define MAXMODS 10 #define NUM_FIELDS 6 #define MAX...
/* * @file JosephusProblem.h * @author (original JAVA) Micah Stairs * (conversion to C++) Armin Zare Zadeh, ali.a.zarezadeh@gmail.com * @date 15 July 2020 * @version 0.1 * @brief An implementation of the Josephus problem Time complexity: O(n) */ #ifndef D_JOSEPHUSPROBLEM_H #define D_JOSEPHUSPROBLE...
/* * This header is generated by classdump-dyld 1.0 * on Saturday, August 24, 2019 at 9:44:46 PM Mountain Standard Time * Operating System: Version 12.4 (Build 16M568) * Image Source: /System/Library/PrivateFrameworks/PhotoLibraryServices.framework/PhotoLibraryServices * classdump-dyld is licensed under GPLv3, Copyrigh...
/* * Copyright 2016 The Chromium OS 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 DRV_H_ #define DRV_H_ #ifdef __cplusplus extern "C" { #endif #include <drm_fourcc.h> #include <stdint.h> #define DRV_MAX_PLANES 4 //...
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * Copyright by The HDF Group. * * Copyright by the Board of Trustees of the University of Illinois. * * All rights reserved. * * ...
/***************************************************************************//** * @brief OTA Storage Linux configuration header. ******************************************************************************** * # License * <b>Copyright 2022 Silicon Laboratories Inc. www.silabs.com</b> ***************************...
/* * Copyright (c) 2016 Hisilicon Limited. * Copyright (c) 2007, 2008 Mellanox Technologies. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the fi...
/* C-Function containing the specific implementation of NN mapping and coupling algorithm between ANSYS Fluent and ANSYS Mechanical APDL. Can be modified to fit special case i.e. multi region coupling. License (MIT): Copyright (c) 2016-2019 Christian Schubert Permission is hereby granted, free of charge, to any p...
/* * Copyright 1994 by the Massachusetts Institute of Technology. * All Rights Reserved. * * Export of this software from the United States of America may * require a specific license from the United States Government. * It is the responsibility of any person or organization contemplating * export to obtai...
#define LOG_LOCAL_LEVEL ESP_LOG_INFO #include <stdio.h> #include <vl53l0x_platform.h> #include "vl53l0x_helper.h" // #include "mqtt.h" // #include "esp_wifi.h" #include "esp_event_loop.h" #include "nvs_flash.h" #include <driver/i2c.h> #include <vl53l0x_def.h> // #include "freertos/FreeRTOS.h" // #include "freertos/t...
#pragma once void DinoControl(int16_t item_number);
/* * Copyright (C) 2021 Huawei Device 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 ...
#pragma once #include <btrc/builtin/renderer/wavefront/soa.h> #include <btrc/core/camera.h> #include <btrc/core/film.h> #include <btrc/core/film_filter.h> #include <btrc/core/scene.h> #include <btrc/utils/cuda/module.h> #include <btrc/utils/uncopyable.h> BTRC_WFPT_BEGIN namespace generate_pipeline_detail { stru...
/* * ============================================================================ * Copyright (c) 2010 Marvell International, Ltd. All Rights Reserved * * Marvell Confidential * ============================================================================ * * Test th...
// ---------------------------------------------------------------------------- // // // OpenSteer -- Steering Behaviors for Autonomous Characters // // Copyright (c) 2002-2005, Sony Computer Entertainment America // Original author: Craig Reynolds <craig_reynolds@playstation.sony.com> // // Permission is hereby grante...
/* Copyright 2021 Hein-Pieter van Braam-Stewart * * This file is part of ppelib (Portable Portable Executable LIBrary) * * 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://ww...
/* * SDL_sound -- An abstract sound format decoding API. * Copyright (C) 2001 Ryan C. Gordon. * * This library 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...
/**************************************************************************** * arch/arm/src/stm32/stm32f40xxx_alarm.h * * 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 copy...
#include<reg52.h> #include<lcd.h> sbit RS = P0^0; sbit EN = P0^1; sbit D4 = P2^4; sbit D5 = P2^5; sbit D6 = P2^6; sbit D7 = P2^7; void main() { int i; Lcd4_init(); Lcd4_Set_Cursor(1,1); Lcd4_Clear(); Lcd4_Write...
/******************************************************************************* * - FILE: work_index.h * - DESC: Pipelines Workflow Subroutines. * WORK interfaces between pipeline WORKER object and various *functions. Build, load and retrieve file indexes. ***********************************...
#pragma once #include <Foundation/Math/Vec3.h> #include <Foundation/Math/Vec4.h> /// \brief Describes on which side of a plane a point or an object is located. struct ezPositionOnPlane { enum Enum { Back, ///< Something is completely on the back side of a plane Front, ///< Something is completely i...
// SoftEther VPN Source Code - Stable Edition Repository // Cedar Communication Module // // SoftEther VPN Server, Client and Bridge are free software under GPLv2. // // Copyright (c) Daiyuu Nobori. // Copyright (c) SoftEther VPN Project, University of Tsukuba, Japan. // Copyright (c) SoftEther Corporation. // // Al...
/** ****************************************************************************** * @file usbd_req.h * @author MCD Application Team * @version V1.0.0 * @date 22-July-2011 * @brief header file for the usbd_req.c file ****************************************************************************** ...
// // 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 <UIKit/UIImage.h> @interface UIImage (APTexture) + (id)grayimageWithMTLSize:(CDStruct_da2e99ad)arg1 Buffer:(id)arg2; + (id)gra...
// Copyright (c) 2019 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...
// // UINavigationController+GKCategory.h // GKNavigationBarViewController // // Created by QuintGao on 2017/7/7. // Copyright ยฉ 2017ๅนด ้ซ˜ๅค. All rights reserved. // #import <UIKit/UIKit.h> #import "UIViewController+GKCategory.h" #import "UIBarButtonItem+GKCategory.h" #import "GKDelegateHandler.h" @interface UINavig...
/* * Copyright (c) 2016 Particle Industries, Inc. All rights reserved. * * This library 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 3 of the License, or (at your option) any ...
#include "lan8720.h" #include "lwip_comm.h" #include "stm32f4x7_eth.h" __align(4) ETH_DMADESCTypeDef DMARxDscrTab[ETH_RXBUFNB]; //ไปฅๅคช็ฝ‘DMAๆŽฅๆ”ถๆ่ฟฐ็ฌฆๆ•ฐๆฎ็ป“ๆž„ไฝ“ๆŒ‡้’ˆ __align(4) ETH_DMADESCTypeDef DMATxDscrTab[ETH_TXBUFNB]; //ไปฅๅคช็ฝ‘DMAๅ‘้€ๆ่ฟฐ็ฌฆๆ•ฐๆฎ็ป“ๆž„ไฝ“ๆŒ‡้’ˆ __align(4) uint8_t Rx_Buff[ETH_RX_BUF_SIZE*ETH_RXBUFNB]; //ไปฅๅคช็ฝ‘ๅบ•ๅฑ‚้ฉฑๅŠจๆŽฅๆ”ถbuffersๆŒ‡้’ˆ __align(4) ...
// Copyright (c) 2006-2008 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_WEB_CONTENTS_H_ #define CHROME_BROWSER_WEB_CONTENTS_H_ #include "base/hash_tables.h" #include "chrome/browser/download/sa...
/* * This header is generated by classdump-dyld 1.0 * on Tuesday, November 5, 2019 at 2:39:11 AM Mountain Standard Time * Operating System: Version 13.0 (Build 17J586) * Image Source: /System/Library/PrivateFrameworks/AssistantUI.framework/AssistantUI * classdump-dyld is licensed under GPLv3, Copyright ยฉ 2013-2016 by E...
#ifndef SAM_SCO2CSPSYSTEM_H_ #define SAM_SCO2CSPSYSTEM_H_ #include "visibility.h" #include "SAM_api.h" #include <stdint.h> #ifdef __cplusplus extern "C" { #endif // // Sco2CspSystem Technology Model // /** * Create a Sco2CspSystem variable table. * @param def: the set of financial model-dependent defaults...
/** @file Root include file to support building OpenSSL Crypto Library. Copyright (c) 2010 - 2011, Intel Corporation. All rights reserved.<BR> This program and the accompanying materials are licensed and made available under the terms and conditions of the BSD License which accompanies this distribution. The full t...
/** * MIT License * * Copyright (c) 2018 Matt Chiasson * * 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, m...
#ifndef _STRING_H #include <sys/types.h> extern void *__memccpy (void *__dest, __const void *__src, int __c, size_t __n); extern size_t __strnlen (__const char *__string, size_t __maxlen) __attribute_pure__; extern char *__strsep (char **__stringp, __const char *__delim); extern int __strverscmp (__const c...
// // SwingTwistConstraint.h // // Copyright 2015 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_SwingTwistConstraint_h #define hifi_SwingTwistConstraint_h #include <vector> #incl...
/* * Copyright (c) 2019 Linaro Limited * * SPDX-License-Identifier: Apache-2.0 */ #include <device.h> #include <init.h> #include <kernel.h> #include <pinmux.h> #include <soc.h> #include <sys_io.h> #include <gpio/gpio_cmsdk_ahb.h> #include "pinmux/pinmux.h" #define IOMUX_MAIN_INSEL (0x68 >> 2) #define IOMUX_MAIN_...
/* * This header is generated by classdump-dyld 1.0 * on Sunday, September 27, 2020 at 11:54:49 AM Mountain Standard Time * Operating System: Version 14.0 (Build 18A373) * Image Source: /System/Library/PrivateFrameworks/NanoWeatherComplicationsCompanion.framework/NanoWeatherComplicationsCompanion * classdump-dyld is li...
/* DO NOT EDIT THIS FILE - it is machine generated */ #include <jni.h> /* Header for class org_java_gtk_gtk_Dialog */ #ifndef _Included_org_java_gtk_gtk_Dialog #define _Included_org_java_gtk_gtk_Dialog #ifdef __cplusplus extern "C" { #endif /* * Class: org_java_gtk_gtk_Dialog * Method: gtk_dialog_new * Signa...
/* * Copyright (c) 2016 The WebRTC 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 contribut...
/* linux/include/linux/clocksource.h * * This file contains the structure definitions for clocksources. * * If you are not a clocksource, or timekeeping code, you should * not be including this file! */ #ifndef _LINUX_CLOCKSOURCE_H #define _LINUX_CLOCKSOURCE_H #include <linux/types.h> #include <linux/timex.h...
// // RootViewController.h // JKAlert // // Created by Jakey on 15/1/20. // Copyright (c) 2015ๅนด www.skyfox.org. All rights reserved. // #import <UIKit/UIKit.h> @interface RootViewController : UIViewController - (IBAction)alertTouched:(id)sender; - (IBAction)actionsheet:(id)sender; - (IBAction)multiAlertTouched:(...
// SPDX-License-Identifier: LGPL-2.1 /* * Copyright (c) 2012 Taobao. * Written by Tao Ma <boyu.mt@taobao.com> */ #include <linux/iomap.h> #include <linux/fiemap.h> #include <linux/iversion.h> #include "ext4_jbd2.h" #include "ext4.h" #include "xattr.h" #include "truncate.h" #define EXT4_XATTR_SYSTEM_DATA "data" #d...
/* * This header is generated by classdump-dyld 1.0 * on Sunday, September 27, 2020 at 11:53:24 AM Mountain Standard Time * Operating System: Version 14.0 (Build 18A373) * Image Source: /System/Library/Frameworks/IntentsUI.framework/IntentsUI * classdump-dyld is licensed under GPLv3, Copyright ยฉ 2013-2016 by Elias Limn...
/* Siconos is a program dedicated to modeling, simulation and control * of non smooth dynamical systems. * * Copyright 2016 INRIA. * * 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 * *...
/** * Copyright (c) 2015 - 2017, Nordic Semiconductor ASA * * 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,...
#include "../hmac.c" #include "../onion.c" #include "../onionreply.c" #include "../sphinx.c" #include <secp256k1.h> #include <ccan/opt/opt.h> #include <ccan/short_types/short_types.h> #include <string.h> #include <ccan/str/hex/hex.h> #include <common/ecdh.h> #include <common/sphinx.h> #include <common/utils.h> #include...
/* * $Id: SCA_KeyboardSensor.h 35063 2011-02-22 10:33:14Z jesterking $ * * ***** BEGIN GPL LICENSE BLOCK ***** * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the...
/***************************************************************************//** * @file * @brief EFM32LG_PRS register and bit field definitions ******************************************************************************* * # License * <b>Copyright 2020 Silicon Laboratories Inc. www.silabs.com</b> ************...
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-โ”‚ โ”‚vi: set net ft=c ts=2 sts=2 sw=2 fenc=utf-8 :viโ”‚ โ•žโ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•ก โ”‚ Copyright 2020 Justine Alexandra Roberts Tunney ...
/* * Copyright (c) 2008 Apple Inc. All rights reserved. * * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ * * This file contains Original Code and/or Modifications of Original Code * as defined in and that are subject to the Apple Public Source License * Version 2.0 (the 'License'). You may not use this file except ...
#ifndef WEATHER_H #define WEATHER_H #include <QtNetwork> #include <QDateTime> #include "serialcom.h" #include <QObject> #define ON true #define OFF false #define recuperation_temperature "t" // Code ASCII de la lettre "t" #define recuperation_humidite_air "h" // Code ASCII de la lettre "h" #define recuperation_h...
/*********************************************************************************** CryptoMiniSat -- Copyright (c) 2009 Mate Soos 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 ...
/* SHA3 module * * This module provides an interface to the SHA3 algorithm * * See below for information about the original code this module was * based upon. Additional work performed by: * * Andrew Kuchling (amk@amk.ca) * Greg Stein (gstein@lyra.org) * Trevor Perrin (trevp@trevp.net) * Gregory P. Smith ...
/* creates an butterworth filter. * * 02/01/14 * - from butterworth.c */ /* This file is part of VIPS. VIPS 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 of th...
// Copyright 2015-present 650 Industries. All rights reserved. @import UIKit; #import <UMCore/UMAppDelegateWrapper.h> NS_ASSUME_NONNULL_BEGIN @class EXRootViewController; @interface EXAppDelegate : UMAppDelegateWrapper @property (strong, nonatomic, nullable) UIWindow *window; @property (nonatomic, strong) EXRootVi...
// // SPDX-License-Identifier: BSD-3-Clause // Copyright Contributors to the OpenEXR Project. // // // An interval class // #ifndef INCLUDED_IMATHINTERVAL_H #define INCLUDED_IMATHINTERVAL_H #include "ImathNamespace.h" #include "ImathVec.h" IMATH_INTERNAL_NAMESPACE_HEADER_ENTER /// /// An Interval has a min and a m...
/* * Copyright (c) 2012-2016 The Linux Foundation. All rights reserved. * * Previously licensed under the ISC license by Qualcomm Atheros, 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 noti...
/* * Copyright 2020, Data61, CSIRO (ABN 41 687 119 230) * * SPDX-License-Identifier: GPL-2.0-only */ #pragma once #include <config.h> #include <arch/types.h> #include <arch/model/statedata.h> #include <model/statedata.h> #include <model/smp.h> #include <mode/model/smp.h> #ifdef ENABLE_SMP_SUPPORT typedef struct...
/* * Copyright (c) 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015 * Jonathan Schleifer <js@webkeks.org> * * All rights reserved. * * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE.QPL included in * the packaging of this f...
/** * Author: Crownstone Team * Copyright: Crownstone (https://crownstone.rocks) * Date: Aug 20, 2018 * Triple-license: LGPLv3+, Apache License, and/or MIT */ #include "cfg/cs_Boards.h" #include "cfg/cs_DeviceTypes.h" #include "nrf_error.h" #include "nrf52.h" void asACR01B1D(boards_config_t* p_config) { p_confi...
#if !defined(__ximadefs_h) #define __ximadefs_h #include "ximacfg.h" #if defined(_AFXDLL)||defined(_USRDLL) #define DLL_EXP __declspec(dllexport) #elif defined(_MSC_VER)&&(_MSC_VER<1200) #define DLL_EXP __declspec(dllimport) #else #define DLL_EXP #endif #if CXIMAGE_SUPPORT_EXCEPTION_HANDLING #define cx_try try...