text stringlengths 9 948k |
|---|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_AUTOFILL_AUTOFILL_MANAGER_H_
#define CHROME_BROWSER_AUTOFILL_AUTOFILL_MANAGER_H_
#pragma once
#include <list>
#include <map>
#... |
/* DirectInput Joystick device from SDL
*
* Copyright 1998,2000 Marcus Meissner
* Copyright 1998,1999 Lionel Ulmer
* Copyright 2000-2001 TransGaming Technologies Inc.
* Copyright 2005 Daniel Remenak
* Copyright 2017 CodeWeavers, Aric Stewart
*
* This library is free software; you can redistribute it and/or
* ... |
#ifndef HEADER_CURL_VTLS_H
#define HEADER_CURL_VTLS_H
/***************************************************************************
* _ _ ____ _
* Project ___| | | | _ \| |
* / __| | | | |_) | |
* | (__| ... |
//
// 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... |
/*
* The RenderMan Graphics State Attributes.
*
* $Id: attribute.h,v 1.2 2004/01/25 16:20:44 syoyo Exp $
*/
#ifndef ATTRIBUTE_H
#define ATTRIBUTE_H
#include "ri.h"
#include "material.h"
#include "shader.h"
#ifdef __cplusplus
extern "C" {
#endif
typedef struct _ri_attribute_t
{
/* The reflective color of th... |
/**
Copyright 2009-2017 National Technology and Engineering Solutions of Sandia,
LLC (NTESS). Under the terms of Contract DE-NA-0003525, the U.S. Government
retains certain rights in this software.
Sandia National Laboratories is a multimission laboratory managed and operated
by National Technology and Engineering... |
// Copyright (c) 2012-2013 The VirtaCoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef VIRTACOIN_LEVELDBWRAPPER_H
#define VIRTACOIN_LEVELDBWRAPPER_H
#include "serialize.h"
#include "util.h"
#include "ve... |
int bitCount(int n)
{
int res = 0;
for (; n != 0; n &= n - 1)
++res;
return res;
}
int isPrime(int N) //only consider prime less than 32
{
if (N == 2 || N == 3 || N == 5)
return 1;
if (N < 2 || N % 2 == 0 || N % 3 == 0 || N % 5 == 0)
return 0;
return 1;
}
int countPrimeSetBits(int L, int R)
{
int res = 0... |
/***************************************************************************/
/* */
/* ftcffdrv.h */
/* */
/* Fr... |
/*
* Copyright 2010-present Facebook.
*
* 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 agree... |
/*-------------------------------------------------------------------------
*
* equalfuncs.c
* Equality functions to compare node trees.
*
* NOTE: we currently support comparing all node types found in parse
* trees. We do not support comparing executor state trees; there
* is no need for that, and no point i... |
#define LOG_CLASS "RtcRtp"
#include "../Include_i.h"
typedef STATUS (*RtpPayloadFunc)(UINT32, PBYTE, UINT32, PBYTE, PUINT32, PUINT32, PUINT32);
STATUS createKvsRtpTransceiver(RTC_RTP_TRANSCEIVER_DIRECTION direction, PKvsPeerConnection pKvsPeerConnection, UINT32 ssrc,
UINT32 rtxSsrc, PR... |
/*
* Copyright (c) Facebook, Inc. and its affiliates.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree.
*/
#pragma once
#include <gmock/gmock.h>
#include <proxygen/lib/http/HTTPMessageFilters.h>
namespace ... |
#include "abstractLOG.h"
#include "abstractUSART.h"
#include <stdio.h>
#include <stdarg.h>
uint32_t log_buff = 0;
struct abst_usart LOG_USART =
{
.num = 3,
.word_len = ABST_USART_WL_8_BITS,
.num_stop_bits = ABST_USART_STOPBITS_1,
.baud_rate = 9600,
};
struct abst_pin TX = {
#ifdef STM32F1
.port... |
//
// ZMVideoPlayerView.h
// zChatUI
//
// Created by simon shang on 2021/1/19.
// Copyright © 2021 Zoom. All rights reserved.
//
#import "ZMBaseView.h"
#import "ZMVideoPlayerControlView.h"
NS_ASSUME_NONNULL_BEGIN
static NSString * const kPauseOthersVideoPlay = @"kPauseOthersVideoPlay";
@class ZMVideoPlayerView... |
@interface QCPixelFormat_M_I16 : QCPixelFormat
{
NSArray *_compatibilities; // 20 = 0x14
}
- (NSString*)name;
- (NSArray*)compatibilities;
- (NSString*)description;
- (void)dealloc;
- (int)pixelColorModel;
- (int)pixelType;
- (int)pixelAlpha;
- (NSUInteger)pixelBlockWidth;
- (NSUInteger)pixelBlockHeight;
- (NSUIntege... |
/*
* Copyright 2017 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef MtlTestContext_h
#define MtlTestContext_h
#include "TestContext.h"
#ifdef SK_METAL
namespace sk_gpu_test {
TestContext* CreatePlatformMtlTestContext(TestContext*);
... |
/* $NetBSD: float.c,v 1.1.1.1 2016/01/14 00:11:29 christos Exp $ */
/* float.c -- float environment functions.
Id: float.c,v 1.8 2004/07/05 22:23:22 karl Exp
Copyright (C) 2003, 2004 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of... |
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose: A base class for the client-side representation of entities.
//
// This class encompasses both entities that are created on the server
// and networked to the client AND entities that are created on the
// client.
//
// $N... |
/* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2004-2006 The Regents of the University of California.
* All rights reserved.
* Copyright (c) 2012 Sandia National Laboratories. All rights reserved.
* Copyright (c) 2015 Los Alamos National Security... |
/* tree.h -- binary search tree */
/* no same item in one tree */
#ifndef __TREE_H_
#define __TREE_H_
#include <stdbool.h>
typedef struct item{
char petname[20];
char petkind[20];
} Item;
#define MAXITEMS 10
typedef struct node{
Item item;
struct node * left;
struct node * right;
}Node;
typedef struct tree{
N... |
#pragma once
#include <emmintrin.h>
#define MATH_USE_SSE 1
#define SHUFFLE_MASK(A0, A1, B2, B3) ((A0) | ((A1)<<2) | ((B2)<<4) | ((B3)<<6))
#define VECTOR_REPLICATE(v, i) _mm_shuffle_ps(v, v, SHUFFLE_MASK(i, i, i, i))
namespace SSE
{
static const __m128 zero = _mm_setzero_ps();
static const __m128 one = _mm_set_ps... |
//
// LSCContext+Private.h
// LuaScriptCore
//
// Created by 冯鸿杰 on 2020/9/1.
// Copyright © 2020年 vimfung. All rights reserved.
//
#import "LSCContext.h"
NS_ASSUME_NONNULL_BEGIN
@class LSCMainState;
@interface LSCContext ()
/**
主状态
*/
@property (nonatomic, strong) LSCMainState *mainState;
/**
* 异常捕获方法
*... |
/*****************************************
** File: MinMaxHeap.h
** Project: CMSC 341 Project 4 - Fake Min-Max Heaps, Spring 2018
** Author: Innocent Kironji
** Date: 05/01/18
** Section: 03
** E-mail: wambugu1@umbc.edu
**
** This file contains the class and function declarations of
** the... |
/* Copyright (c) 2012-2013 Twitter4QML Project.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* * Redistributions of source code must retain the above copyright
* notice, this l... |
/*----------------------------------------------------------------------------
* Name: SMM_MPS2.h
* Purpose: SMM MPS2 definitions
*----------------------------------------------------------------------------*/
/* Copyright (c) 2011 - 2017 ARM LIMITED
All rights reserved.
Redistribution and use in source a... |
/**********************************************************************
* Copyright (c) 2014 Pieter Wuille *
* Distributed under the MIT software license, see the accompanying *
* file COPYING or http://www.opensource.org/licenses/mit-license.php.*
*******************************... |
/* $NetBSD: maketab.c,v 1.2 2014/03/12 14:20:43 ryoon Exp $ */
/****************************************************************
Copyright (C) Lucent Technologies 1997
All Rights Reserved
Permission to use, copy, modify, and distribute this software and
its documentation for any purpose and without fee is hereby
gran... |
// Copyright (c) 2013 bank Developers
#ifndef PBKDF2_H
#define PBKDF2_H
#include <openssl/sha.h>
#include <stdint.h>
typedef struct HMAC_SHA256Context {
SHA256_CTX ictx;
SHA256_CTX octx;
} HMAC_SHA256_CTX;
void
HMAC_SHA256_Init(HMAC_SHA256_CTX * ctx, const void * _K, size_t Klen);
void
HMAC_SHA256_Update(H... |
/*
Copyright (c) 2014. The YARA Authors. 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 followi... |
//
// ZXToolboxSwift.h
// https://github.com/xinyzhao/ZXToolboxSwift
//
// Copyright (c) 2019-2020 Zhao Xin
//
// 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, includin... |
#include "log.h"
#include "car.h"
#include "data.h"
#include "etc_ota.h"
#include "etcMsg.h"
#include "setting.h"
#include "types.h"
#include "da14580.h"
#include "bioMsg.h"
u8 isETCUpgrading = 0;
u8 etcOta_getUpgrading(void)
{
return isETCUpgrading;
}
u8 etcOta_setUpgrading(u8 isUpgrading)
{
isETCUpgradin... |
/*
* Copyright 2012 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 contributing ... |
/*
Copyright (c) 2017 TOSHIBA Digital Solutions 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) 1994-2010, OFFIS e.V.
* All rights reserved. See COPYRIGHT file for details.
*
* This software and supporting documentation were developed by
*
* OFFIS e.V.
* R&D Division Health
* Escherweg 2
* D-26121 Oldenburg, Germany
*
*
* Module: dcmnet
*
* Author: Marco Eic... |
/* -*- C -*- */
/*
* Copyright (c) 2015-2020 Seagate Technology LLC 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... |
#include "room.h"
#undef EXTRA_RESET
#define EXTRA_RESET\
extra_reset();
object monster;
extra_reset() {
if(!monster) {
monster = clone_object("wizards/jenny/linnake/mosut/jail_guard.c");
move_object(monster, this_object());
}
}
EIGHT_EXIT("/wizards/jenny/linnake/huoneet... |
#pragma once
#include "Car.h"
class Dacia: public Car
{
public:
Dacia() : Car(10, 10.f) {}
void ShowType() override;
}; |
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "m2tlib.h"
#define DEBUG 0
DESC_COMPONENT *st_desc_component( unsigned char *buf ){
DESC_COMPONENT *ptr = (DESC_COMPONENT *)calloc(1,sizeof(DESC_COMPONENT));
uint64_t gomi;
uint64_t boff = 0;
gomi = getBit( buf, &boff, 4);
ptr... |
/*
* GStreamer
* Copyright (C) 2015 Matthew Waters <matthew@centricular.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your optio... |
#include <msp430.h>
#include <libTimer.h>
#include "lcdutils.h"
#include "lcddraw.h"
#include "switch.h"
void switch_init() /* setup switch */
{
P2REN |= SWITCHES; /* enables resistors for switches */
P2IE |= SWITCHES; /* enable interrupts from switches */
P2OUT |= SWITCHES; /* pull-ups for switches */
... |
// -*- C++ -*-
//
// Class: EcalTrigPrimAnalyzer
//
/**\class EcalTrigPrimAnalyzer
Description: rereads the result of the EcalTrigPrimProducer
*/
//
// Original Author: Ursula Berthon
// Created: Thu Jul 4 11:38:38 CEST 2005
//
//
// system include files
//#include "FWCore/Framework/interface/Framewo... |
/*
* This header is generated by classdump-dyld 1.5
* on Friday, April 30, 2021 at 11:34:54 AM Mountain Standard Time
* Operating System: Version 13.5.1 (Build 17F80)
* Image Source: /System/Library/Frameworks/CFNetwork.framewor... |
/*
* SPDX-License-Identifier: Apache-2.0
*
* Change Logs:
* Date Author Notes
* 2022-03-16 tyx first implementation
*/
#ifndef __CB_DEF_H__
#define __CB_DEF_H__
#ifdef __cplusplus
extern "C" {
#endif
// version information
#define CB_MAINVERSION 1L /**... |
/* See LICENSE file for copyright and license details. */
/* vim: expandtab
*/
/* Default settings; can be overrided by command line. */
#if USE_XLIB
static Bool topbar = True; /* -b option; if False, dmenu appears at bottom */
#elif USE_WINAPI
static BOOL topbar = TRUE; /* -b opti... |
#ifndef CO_SYNC_H
#define CO_SYNC_H
/**
* @file co_sync.h
*
* Minimal synchronization primitives interface used by the library
*
*/
#include "co_atomics.h"
#include "co_aux.h"
#include "co_dbg.h"
#include "co_types.h"
#include <pthread.h>
#include <semaphore.h>
/**
* Semaphore type
*/
typedef sem_t co_sem_t;
... |
#include <stdio.h>
#include <string.h>
struct student
{
char name[30];
short age;
float grade;
};
int main()
{
int i;
struct student st1;
struct student st2={"First",20,4.5};
st1.age=19;
st1.grade=4;
st2.age++;
strcpy(st1.name, "Second");
} |
/*============================================================================
The Medical Imaging Interaction Toolkit (MITK)
Copyright (c) German Cancer Research Center (DKFZ)
All rights reserved.
Use of this source code is governed by a 3-clause BSD license that can be
found in the LICENSE file.
=================... |
/* Editor Settings: expandtabs and use 4 spaces for indentation
* ex: set softtabstop=4 tabstop=8 expandtab shiftwidth=4: *
* -*- mode: c, c-basic-offset: 4 -*- */
/*
* Copyright © BeyondTrust Software 2004 - 2019
* All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you m... |
//
// Created by Rostyslav Druzhchenko on 04.11.2020.
//
#include <libmx.h>
void mx_printstr_ornil(const char *s) {
if (s)
mx_printstr(s);
else
mx_printstr("<nil>");
} |
#pragma once
// Pointer which takes ownership of an object and deletes it when the pointer goes out of scope. Ownership can be transferred to another pointer, in which case the source pointer becomes null.
template <class T>
class AutoPtr
{
public:
AutoPtr() = default;
// Copy-construct. Ownership is transferred, ... |
/*
Video Core
Copyright (c) 2014 James G. Hurley
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, ... |
#include "ush.h"
static void check_path(char **arr, char *command, t_list **output,
int *flag) {
int i = 0;
char *name = NULL;
DIR *dptr;
struct dirent *ds;
while (arr[i] != NULL) {
dptr = opendir(arr[i]);
if (dptr != NULL) {
while ((ds = readdir(... |
#ifndef MBR_H
#define MBR_H
#include <stdint.h>
struct MBREntry {
uint8_t boot_indicator;
uint8_t starting_head;
uint16_t starting_sector : 6;
uint16_t starting_cylinder : 10;
uint8_t system_id;
uint8_t ending_head;
uint16_t ending_sector : 6;
uint16_t ending_cylinder : 10;
uint32_t starting_lb... |
#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
#import "CAddressModel.h"
#import "CAddressPickerView.h"
#import "CBaseView.h"
#import "CPickerView.h"
#import "CDatePickerVi... |
#pragma once
#include "fwd.h"
#include "hash.h"
#include <initializer_list>
#include <utility>
#undef value_type
template <class Value, class HashFcn, class EqualKey, class Alloc>
class THashSet {
private:
using ht = THashTable<Value, Value, HashFcn, ::TIdentity, EqualKey, Alloc>;
ht rep;
using mutable... |
/*
* Copyright 2021 Andrey Terekhov, Ilya Andreev
*
* 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 la... |
namespace CGAL {
namespace Kinetic {
/*!
\ingroup PkgKdsTri2
This is the base class for faces used by the triangulation used in
`Kinetic::Delaunay_triangulation_2<Traits, Triangulation, Visitor>`.
\sa `Kinetic:Delaunay_triangulation_2<Traits, Triangulation, Visitor>`
*/
template< typename Traits, typename Base >... |
/*
* 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... |
/*---------------------------------------------------------------------------
(c) 2002 Scorpio Software
19 Wittama Drive
Glenmore Park
Sydney NSW 2745
Australia
-----------------------------------------------------------------------------
$Workfile:: ... |
/*
* Copyright (c) 2020 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... |
/*
* Copyright 2005-2019 ECMWF.
*
* This software is licensed under the terms of the Apache Licence Version 2.0
* which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
*
* In applying this licence, ECMWF does not waive the privileges and immunities granted to it by
* virtue of its status as an int... |
//
// Copyright RIME Developers
// Distributed under the BSD License
//
// 2011-12-12 GONG Chen <chen.sst@gmail.com>
//
#ifndef RIME_SIMPLIFIER_H_
#define RIME_SIMPLIFIER_H_
#include <rime/filter.h>
#include <rime/algo/algebra.h>
#include <rime/gear/filter_commons.h>
namespace rime {
class Opencc;
class Simplifier ... |
// -*-C++-*-
#ifndef MATHFUNCS_RCP_H
#define MATHFUNCS_RCP_H
#include "mathfuncs_base.h"
#include <cmath>
namespace vecmathlib {
#if 0
// This routine works, but may be slower than the one below
template<typename realvec_t>
realvec_t mathfuncs<realvec_t>::vml_rcp(realvec_t x)
{
// Handle negative value... |
/*=========================================================================
*
* Copyright NumFOCUS
*
* 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
*
* https://www.apache.o... |
/*
* Copyright (c) 2013-2015, Roland Bock
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice, this
* list of cond... |
/*
* Copyright (C) 2019. Huawei Technologies Co.,Ltd.All rights reserved.
*
* Description: This file provides the inplemenation for a KAE engine fork
*
* 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... |
#pragma once
#include "stl_iterator.h"
#include "stl_list_node.h"
#include <cstddef> // ptrdiff_t
namespace MiniSTL {
template <class T> struct __list_iterator {
// alias declarations
using self = __list_iterator<T>;
using link_type = __list_node<T> *;
using iterator_category = ... |
//
// QIMAgreementViewController.h
// qunarChatIphone
//
// Created by chenjie on 15/8/5.
//
//
#import "QIMCommonUIFramework.h"
@interface QIMAgreementViewController : QTalkViewController
@end |
//
// STMTableViewCell.h
// STMReactiveViewController
//
// Created by Stefano Mondino on 08/06/15.
// Copyright (c) 2015 Stefano Mondino. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "STMCellViewModel.h"
@interface STMTableViewCell : UITableViewCell
@property (weak, nonatomic) IBOutlet UILabel *lbl_tex... |
/*
* This source file is part of libRocket, the HTML/CSS Interface Middleware
*
* For the latest information, see http://www.librocket.com
*
* Copyright (c) 2008-2010 CodePoint Ltd, Shift Technology Ltd
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and assoc... |
#ifndef CLIMATE
#define CLIMATE
#include <vector>
#include <string>
#include <cmath>
#include <fstream>
#include <iostream>
#include <sstream>
#include <numeric>
#include <cstdio>
#include <cstdlib>
#include <map>
#include "models.h"
#include "GENAngle.h"
using namespace std;
// *** Climate class, CitySim *** //
//... |
// Copyright 2019 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_ANDROID_AUTOFILL_ASSISTANT_INTERACTION_HANDLER_ANDROID_H_
#define CHROME_BROWSER_ANDROID_AUTOFILL_ASSISTANT_INTERACTION_HANDLER_AND... |
/*
* tm6000-video.c - driver for TM5600/TM6000/TM6010 USB video capture devices
*
* Copyright (C) 2006-2007 Mauro Carvalho Chehab <mchehab@infradead.org>
*
* Copyright (C) 2007 Michel Ludwig <michel.ludwig@gmail.com>
* - Fixed module load/unload
*
* This program is free software; you can redistribute it an... |
/**
* This file has no copyright assigned and is placed in the Public Domain.
* This file is part of the mingw-w64 runtime package.
* No warranty is given; refer to the file DISCLAIMER.PD within this package.
*/
#ifndef _INC_COMIP
#define _INC_COMIP
#include <_mingw.h>
#include <ole2.h>
#include <malloc.h>
#incl... |
/********************************************************************************************
* SHA3 hash function and SHA3-derived function SHAKE
*
* Based on the public domain implementation in crypto_hash/keccakc512/simple/
* from http://bench.cr.yp.to/supercop.html by Ronny Van Keer
* and the public domain "TweetFi... |
/*
* Copyright (c) 2014 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, merge,... |
//*****************************************************************************
//
// remoti_rtis.h - RemoTI API Surrogate defines and declarations.
//
// Copyright (c) 2012-2015 Texas Instruments Incorporated. All rights reserved.
// Software License Agreement
//
// Texas Instruments (TI) is supplying this software ... |
/*
* 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... |
// Copyright (c) 2015 GeometryFactory (France).
// All rights reserved.
//
// This file is part of CGAL (www.cgal.org).
//
// $URL: https://github.com/CGAL/cgal/blob/releases/CGAL-5.0.2/Polygon_mesh_processing/include/CGAL/Polygon_mesh_processing/bbox.h $
// $Id: bbox.h 254d60f 2019-10-19T15:23:19+02:00 Sébastien Lorio... |
/*
** FFT and FHT routines
** Copyright 1988, 1993; Ron Mayer
**
** mayer_fht(fz,n);
** Does a hartley transform of "n" points in the array "fz".
** mayer_fft(n,real,imag)
** Does a fourier transform of "n" points of the "real" and
** "imag" arrays.
** mayer_ifft(n,real,imag)
** Does an invers... |
// Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2017 The Bitcoin Core developers
// Copyright (c) 2019 The Sistemkoin Core developers
// Copyright (c) 2017 The Zcash developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit... |
//
// UISwitch+AXKit.h
// AXiOSKit
//
// Created by liuweixing on 2017/1/3.
// Copyright © 2017年 liuweixing All rights reserved.
//
#import <UIKit/UIKit.h>
@interface UISwitch (AXKit)
/**
* 按钮事件封装成block
*/
- (void)ax_addActionBlock:(void(^)(UISwitch *aSwitch))block;
@end |
#ifndef _NF_CONNTRACK_IPV6_H
#define _NF_CONNTRACK_IPV6_H
extern struct nf_conntrack_l3proto nf_conntrack_l3proto_ipv6;
extern struct nf_conntrack_l4proto nf_conntrack_l4proto_tcp6;
extern struct nf_conntrack_l4proto nf_conntrack_l4proto_udp6;
extern struct nf_conntrack_l4proto nf_conntrack_l4proto_icmpv6;
extern in... |
// Created by Petr Karnakov on 03.10.2018
// Copyright 2018 ETH Zurich
#pragma once
#include <exception>
#include <limits>
#include <sstream>
#include <string>
#include "geom/field.h"
#include "geom/range.h"
#include "geom/vect.h"
#include "solver/embed.h"
#include "util/format.h"
#include "util/logger.h"
template ... |
/*
File: AVCaptureSession.h
Framework: AVFoundation
Copyright 2010-2015 Apple Inc. All rights reserved.
*/
#import <AVFoundation/AVBase.h>
#import <AVFoundation/AVCaptureDevice.h>
#import <Foundation/Foundation.h>
#import <CoreMedia/CMFormatDescription.h>
#import <CoreMedia/CMSync.h>
/*!
@constant AVCaptur... |
//----------------------------------------------------------------------------
// 프로그램명 : I2C
//
// 만든이 : Cho Han Cheol
//
// 날 짜 :
//
// 최종 수정 :
//
// MPU_Type :
//
// 파일명 : I2C.h
//----------------------------------------------------------------------------
#ifnd... |
/*****************************************************************************/
// Copyright 2006-2019 Adobe Systems Incorporated
// All Rights Reserved.
//
// NOTICE: Adobe permits you to use, modify, and distribute this file in
// accordance with the terms of the Adobe license agreement accompanying it.
/***********... |
/*
* Generated by asn1c-0.9.24 (http://lionet.info/asn1c)
* From ASN.1 module "EUTRA-RRC-Definitions"
* found in "fixed_grammar.asn"
* `asn1c -gen-PER`
*/
#include "SystemInformationBlockType6-v8h0-IEs.h"
static int
memb_carrierFreqListUTRA_FDD_v8h0_constraint_1(asn_TYPE_descriptor_t *td, const void *sptr,
... |
/*
* Copyright (c) 2008-2013 Apple Inc. All rights reserved.
*
* @APPLE_APACHE_LICENSE_HEADER_START@
*
* 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... |
//
// QMChatBottomListView.h
// IMSDK
//
// Created by lishuijiao on 2020/10/15.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@interface QMChatBottomListView : UIView <UICollectionViewDelegate, UICollectionViewDataSource>
@property (nonatomic, copy) void(^tapSendText)(NSString *);
@property (nonatomic, st... |
/******************************************************************************
* The MIT License
*
* Copyright (c) 2010 LeafLabs LLC.
*
* 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... |
/*
* Copyright (c) 2019, United States government as represented by the
* administrator of the National Aeronautics Space Administration.
* All rights reserved. This software was created at NASA Goddard
* Space Flight Center pursuant to government contracts.
*
* This is governed by the NA... |
//------------------------------------------------------------------------------
// GB_AxB: hard-coded C=A*B and C<M>=A*B
//------------------------------------------------------------------------------
// SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2018, All Rights Reserved.
// http://suitesparse.com See Gra... |
#ifndef LIBGEODECOMP_TESTBED_PERFORMANCETESTS_CELL_H
#define LIBGEODECOMP_TESTBED_PERFORMANCETESTS_CELL_H
#include <libgeodecomp/misc/apitraits.h>
#include <libflatarray/macros.hpp>
using namespace LibGeoDecomp;
using namespace LibFlatArray;
class SoACell
{
public:
class API :
public APITraits::HasStenc... |
/* Copyright (C) 2001-2021 Artifex Software, Inc.
All Rights Reserved.
This software is provided AS-IS with no warranty, either express or
implied.
This software is distributed under license and may not be copied,
modified or distributed except as expressly authorized under the terms
of the license ... |
/* Hisilicon Hibmc SoC drm driver
*
* Based on the bochs drm driver.
*
* Copyright (c) 2016 Huawei Limited.
*
* Author:
* Rongrong Zou <zourongrong@huawei.com>
* Rongrong Zou <zourongrong@gmail.com>
* Jianhua Li <lijianhua@huawei.com>
*
* This program is free software; you can redistribute it and/or modify
... |
/*
* This header is generated by classdump-dyld 1.0
* on Sunday, September 27, 2020 at 11:40:26 AM Mountain Standard Time
* Operating System: Version 14.0 (Build 18A373)
* Image Source: /System/Library/PrivateFrameworks/PassKitCore.framework/PassKitCore
* classdump-dyld is licensed under GPLv3, Copyright © 2013-2016 by... |
// MESSAGE FILE_TRANSFER_RES PACKING
#define MAVLINK_MSG_ID_FILE_TRANSFER_RES 112
typedef struct __mavlink_file_transfer_res_t
{
uint64_t transfer_uid; ///< Unique transfer ID
uint8_t result; ///< 0: OK, 1: not permitted, 2: bad path / file name, 3: no space left on device
} mavlink_file_transfer_res_t;
#define MA... |
// Copyright © 2020 650 Industries. All rights reserved.
#import <ABI40_0_0EXUpdates/ABI40_0_0EXUpdatesAppLauncher.h>
#import <ABI40_0_0EXUpdates/ABI40_0_0EXUpdatesConfig.h>
#import <ABI40_0_0EXUpdates/ABI40_0_0EXUpdatesDatabase.h>
#import <ABI40_0_0EXUpdates/ABI40_0_0EXUpdatesSelectionPolicy.h>
#import <ABI40_0_0EXU... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.