text stringlengths 9 948k |
|---|
/*
+----------------------------------------------------------------------+
| HipHop for PHP |
+----------------------------------------------------------------------+
| Copyright (c) 2010-2015 Facebook, Inc. (http://www.facebook.com) |
+---------... |
#define LOG_CONF_LEVEL_RPL LOG_LEVEL_WARN
#define LOG_CONF_LEVEL_TCPIP LOG_LEVEL_WARN
#define LOG_CONF_LEVEL_IPV6 LOG_LEVEL_WARN
#define LOG_CONF_LEVEL_6LOWPAN LOG_LEVEL_WARN
#define LOG_CONF_LEVEL_MAC LOG_L... |
#ifndef UQ_METHOD_INPUT_WIDGET_H
#define UQ_METHOD_INPUT_WIDGET_H
/* *****************************************************************************
Copyright (c) 2016-2017, The Regents of the University of California (Regents).
All rights reserved.
Redistribution and use in source and binary forms, with or without
mo... |
#ifndef _sht31_H_
#define _sht31_H_
#include <Wire.h>
#include <Adafruit_SHT31.h>
#include "sensor.h"
// The SHT31 classes are based on the ADAfruit_SHT31 library.
// SHT31 represents an ADAfruit (or compatible) SHT31 temperature & humidity sensor.
// The constructor creates a pointer to the instance, and starts up... |
/*
* Copyright (c) 2012 Ronald S. Bultje <rsbultje@gmail.com>
*
* This file is part of FFmpeg.
*
* FFmpeg is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or ... |
/*
* This file is part of the CN24 semantic segmentation software,
* copyright (C) 2015 Clemens-Alexander Brust (ikosa dot de at gmail dot com).
*
* For licensing information, see the LICENSE file included with this project.
*/
/**
* @file StatSink.h
* @brief Gets data from StatAggregator and processes it
*
... |
/*
* Copyright 2016 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef SKSL_INTERFACEBLOCK
#define SKSL_INTERFACEBLOCK
#include <memory>
#include <string_view>
#include "include/private/SkSLProgramElement.h"
#include "src/sksl/ir/SkSLSy... |
#ifndef FAT_TREE_3TO1_K24
#define FAT_TREE_3TO1_K24
#include "main.h"
#include "randomqueue.h"
#include "pipe.h"
#include "config.h"
#include "loggers.h"
#include "network.h"
#include "firstfit.h"
#include "topology.h"
#include "logfile.h"
#include "eventlist.h"
#include "switch.h"
#include <ostream>
#ifndef QT
#defin... |
#pragma once
#include "../../Includes/Includes.h"
class CNetChannel;
class ISpatialLeafEnumerator
{
public:
virtual bool EnumerateLeaf(int leaf, int context) = 0;
};
class ISpatialQuery
{
public:
virtual int LeafCount() const = 0;
virtual bool EnumerateLeavesAtPoint(Vec3 const &pt, ISpatialLeafEnumerator *pEnum,... |
#ifdef HAVE_CONFIG_H
#include "../../ext_config.h"
#endif
#include <php.h>
#include "../../php_ext.h"
#include "../../ext.h"
#include <Zend/zend_operators.h>
#include <Zend/zend_exceptions.h>
#include <Zend/zend_interfaces.h>
#include "kernel/main.h"
#include "kernel/memory.h"
#include "kernel/fcall.h"
#include "ker... |
/**
* Copyright 2019-2021 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 applicabl... |
//
// CSAppViewController.h
// Toast
//
// Copyright (c) 2011-2016 Charles Scalesse.
//
// 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 lim... |
/*
Simple DirectMedia Layer
Copyright (C) 1997-2013 Sam Lantinga <slouken@libsdl.org>
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.
Permission is granted to anyone to use this ... |
#include <stdio.h>
int main()
{
int num, bin=0, pot10=1, rest;
printf("entre com um numero inteiro: ");
scanf("%d", &num);
while(num>0)
{
rest = num%2;
num = num/2;
bin = bin + rest*pot10;
pot10 = pot10*10;
}
printf("%d\n", bin);
return 0;
} |
/**CFile****************************************************************
FileName [giaStr.c]
SystemName [ABC: Logic synthesis and verification system.]
PackageName [Scalable AIG package.]
Synopsis [AIG structuring.]
Author [Alan Mishchenko]
Affiliation [UC Berkeley]
Date [Ver. ... |
#include <stdio.h>
int main()
{
unsigned long int i, j;
long int num;
printf("Enter the number: ");
scanf("%ld", &num);
long primes[num+1];
for(i = 2; i <= num; i++){
primes[i] = i;
}
for(i = 2; (i*i) <= num; i++){
if(primes[i] != 0){
for(j = (i*i); j <= num; j = j + i){
primes[j... |
// Copyright 2015 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 CONTENT_CHILD_INDEXED_DB_MOCK_WEBIDBCALLBACKS_H_
#define CONTENT_CHILD_INDEXED_DB_MOCK_WEBIDBCALLBACKS_H_
#include "base/macros.h"
#include "test... |
// Copyright Joyent, Inc. and other Node contributors.
//
// 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, modi... |
#include "geminc.h"
#include "Nxm.h"
void NxmRes_check ( Display *dpy, char *resfil, char *newfil )
/************************************************************************
* NxmRes_check *
* *
* This function checks whether a resource file exists based on the *
* defined path in environmental ... |
/* Copyright (C) 1999 Lucent Technologies */
/* Excerpted from 'The Practice of Programming' */
/* by Brian W. Kernighan and Rob Pike */
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include "eprintf.h"
int grep(char*, FILE*, char*);
int match(char*, char*);
int matchhere(char*, char*);
int matchstar(in... |
/*
* Copyright (c) 2019 Intel Corporation. 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
* without limitation the rights to use, ... |
/*
yuv support
Copyright (C) 2007 Ian Armstrong <ian@iarmst.demon.co.uk>
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 License, or
(at your option)... |
//=================================================================================================
/*!
// \file blaze/util/constraints/TypeRestriction.h
// \brief Constraint on the data type
//
// Copyright (C) 2012-2020 Klaus Iglberger - All Rights Reserved
//
// This file is part of the Blaze library. You can re... |
/* ****************************************************************** **
** OpenSees - Open System for Earthquake Engineering Simulation **
** Pacific Earthquake Engineering Research Center **
** **
** ... |
/**
* \file config-thread.h
*
* \brief Minimal configuration for using TLS as part of Thread
*/
/*
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may
* not use this file except in comp... |
/*
* Test network address functions for IPv6.
*
* The canonical version of this file is maintained in the rra-c-util package,
* which can be found at <https://www.eyrie.org/~eagle/software/rra-c-util/>.
*
* Written by Russ Allbery <eagle@eyrie.org>
* Copyright 2005, 2013, 2016-2018, 2020 Russ Allbery <eagle@eyri... |
/*
* Generated by asn1c-0.9.29 (http://lionet.info/asn1c)
* From ASN.1 module "EUTRA-RRC-Definitions"
* found in "/home/user/openairinterface5g/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/user/openairinterface5g/c... |
/*
* This header is generated by classdump-dyld 1.5
* on Friday, April 30, 2021 at 11:36:54 AM Mountain Standard Time
* Operating System: Version 13.5.1 (Build 17F80)
* Image Source: /System/Library/Frameworks/NetworkExtension.f... |
// Copyright (c) 2016 CloudMakers, s. r. o.
// All rights reserved.
//
// You can use this software under the terms of 'INDIGO Astronomy
// open-source license' (see LICENSE.md).
//
// THIS SOFTWARE IS PROVIDED BY THE AUTHORS 'AS IS' AND ANY EXPRESS
// OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
/... |
#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_RealmDemoVersionNumber;
FOUNDATION_EXPORT const unsigned char Pods_RealmDemoVersionString[]; |
/*
Authored 2020, James Timothy Meech.
Authored 2021, Orestis Kaparounakis.
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 not... |
/*
**************************************************************************************************************
* NXP USB Host Stack
*
* (c) Copyright 2008, NXP SemiConductors
* (c) Copyright 2008, ... |
/*
Complete the function void update(int *a,int *b). It receives two integer pointers, int* a and int* b. Set the value of to their sum, and to their absolute difference. There is no return value, and no return statement is needed.
*/
#include <stdio.h>
void update(int *a, int *b)
{
// Complete this function
i... |
// 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/common/global_types.h
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreement... |
// Author(s): Wieger Wesselink
// Copyright: see the accompanying file COPYING or copy at
// https://github.com/mCRL2org/mCRL2/blob/master/COPYING
//
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
//
/// \file m... |
/*
* Copyright 2011-2013 Blender 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 applicable law or ag... |
/*
* Copyright © 2001-2011 Stéphane Raimbault <stephane.raimbault@gmail.com>
*
* 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, or (at your optio... |
//
// XC_EmotionListView.h
// JGGDemo
//
// Created by gao bin on 2018/2/7.
// Copyright © 2018年 apple. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface XC_EmotionListView : UIView
/** 存放表情的数据源 ****/
@property (nonatomic,strong)NSArray *EmotionArrs;
@end |
/*
* This header is generated by classdump-dyld 1.0
* on Tuesday, November 5, 2019 at 2:43:55 AM Mountain Standard Time
* Operating System: Version 13.0 (Build 17J586)
* Image Source: /System/Library/PrivateFrameworks/PhysicsKit.framework/PhysicsKit
* classdump-dyld is licensed under GPLv3, Copyright © 2013-2016 by Eli... |
/*
* Copyright (c) 2010 Red Hat, Inc.
*
* All rights reserved.
*
* Author: Angus Salkeld (asalkeld@redhat.com)
*
* This software licensed under BSD license, the text of which follows:
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the followi... |
//
// FUMakeUpChildStrengthKeyKey.h
// FUAvatarSDK
//
// Created by Chen on 2021/1/6.
//
#ifndef FUMakeUpChildStrengthKey_h
#define FUMakeUpChildStrengthKey_h
#import "FUKeysDefine.h"
FUParamsKeysDefine(FUMakeUpChildStrengthKey,
//粉底
FUMakeUpChildStrengthK... |
/* 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 not... |
#ifndef COAT_RUNTIMELLVMJIT_H_
#define COAT_RUNTIMELLVMJIT_H_
#include <utility> // tuple_size, tuple_element
#include "constexpr_helper.h" // should_not_be_reached
#include <llvm/Support/TargetSelect.h> // InitializeNativeTarget
#include <llvm/ExecutionEngine/Orc/LLJIT.h>
#include <llvm/ExecutionEngine/Orc/RTDyldOb... |
//
// ViewController.h
// Demo
//
// Created by guojianfeng on 17/3/30.
// Copyright © 2017年 guojianfeng. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "WSWebView.h"
@interface ViewController : UIViewController
@property (nonatomic, strong) WSWebView *webView;
@end |
#import <Foundation/Foundation.h>
#import <CoreFoundation/CoreFoundation.h>
typedef NS_ENUM(NSUInteger, BBSZlibErrorCode) {
BBSZlibErrorCodeFileTooLarge = 0,
BBSZlibErrorCodeDeflationError = 1,
BBSZlibErrorCodeInflationError = 2,
BBSZlibErrorCodeCouldNotCreateFileError = 3,
};
@interface NSData (zlib)... |
static void * run(void * data){
int thread_idxx;
int block_idxx;
long long lhandle;
int exception;
int handle;
int index;
lock_thread_id();
thread_idxx = global_thread_id;
++global_thread_id;
unlock_thread_id();
block_idxx = global_block_idxx;
pthread_setspecific(blockIdxxKey, (void *) block... |
/*
* @Author: IoTcat (https://iotcat.me)
* @Date: 2019-05-02 21:20:48
* @Last Modified by: IoTcat
* @Last Modified time: 2019-05-19 11:06:29
*/
#include <EEPROM.h>
#include <ESP8266HTTPUpdateServer.h>
#include <ESP8266WebServer.h>
#include <ESP8266WiFi.h>
#include <ESP8266mDNS.h>
#include <WiFiClient.h>
#ifndef ... |
/*
* Copyright (c) 2015 Cossack Labs Limited
*
* 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 ... |
/* Copyright (C) 2010-2018 The RetroArch team
*
* ---------------------------------------------------------------------------------------
* The following license statement only applies to this file (config_file.c).
* ---------------------------------------------------------------------------------------
*
* Perm... |
/**
* \file drm_atomic.h
* Atomic operations used in the DRM which may or may not be provided by the OS.
*
* \author Eric Anholt <anholt@FreeBSD.org>
*/
/*-
* Copyright 2004 Eric Anholt
* Copyright 2013 Jung-uk Kim <jkim@FreeBSD.org>
* All Rights Reserved.
*
* Permission is hereby granted, free of charge, t... |
//
// SensorsAnalyticsSDK+Public.h
// SensorsAnalyticsSDK
//
// Created by 张敏超🍎 on 2020/11/5.
// Copyright © 2020 Sensors Data 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 cop... |
/**
* Copyright (c) 2014-present, Facebook, Inc.
* 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. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*/
#ifndef __... |
#include "dsdpdatamat_impl.h"
#include "dsdpsys.h"
/*!
\file zeromat.c
\brief DSDPDataMat object with all zero entries.
*/
static int ZDestroy(void*);
static int ZView(void*);
static int ZVecVec(void*, double[], int, double *);
static int ZDot(void*, double[], int, int,double *);
static int ZGetRank(void*, int*,int);
s... |
#ifndef _PCB_H_
#define _PCB_H_
#include "thread.h"
#include "llist.h"
#include "ttools.h"
class PCB{
public:
//STATICKE PROMENJLIVE
static ID idS;
static volatile PCB* defaultPCB;
static volatile PCB* running;
static volatile PCB* mainPCB;
//STVARI POTREBNE ZA SAM PROCES
unsigned bp; //kako bi mogli da kor... |
/*
* 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.
*/
#import <React/RCTUIKit.h> // TODO(macOS ISS#2323203)
#import <React/RCTComponent.h>
#import <yoga/YGEnums.h>
@class RCTShadowVie... |
#ifndef FPS__STRING__CONVERT__H
#define FPS__STRING__CONVERT__H
#include <cstdint>
#include <cstdlib>
#include <cstring>
#include <string>
#include <cctype>
#include "fps_math/logarithm.h"
#include "fps_string/format.h"
//---------------------------------------------------------------------------
namespace fps {... |
/**
* Copyright (c) 2019, Clemens Lang <cal@macports.org>
* 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,
* ... |
// @copyright 2017-2018 zzu_softboy <zzu_softboy@163.com>
//
// THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 EVENT SHALL THE AUTHOR BE ... |
//FILE: tags.h
//Location: ~/manuprobe/src/tags (soft link in ...../cgi )
#ifndef TAGS_H
#define EN 0
#define FR 1
#define LANGS 2
#define TBEGIN '<'
#define TCLOSE '/'
#define TEND '>'
#define EBEGIN '&'
#define NUMCHARREF '#'
#define EEND ';'
#define NEWLINE '\n'
#define TAB '\t'
#define NEED_NL '\\'
#define MAX_... |
/*
* adc.c
*
* Author: Kestutis Bivainis
*/
#include "stm32f10x_conf.h"
#include "adc.h"
volatile uint16_t ADCConvertedValue[1];
void ADC_DMA_Configuration() {
DMA_InitTypeDef DMA_InitStructure;
ADC_InitTypeDef ADC_InitStructure;
GPIO_InitTypeDef GPIO_InitStructure;
RCC_ADCCLKConfig(RCC_PCLK2_Div6);
... |
/* 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 not... |
/*
* linux/drivers/char/serial_core.h
*
* Copyright (C) 2000 Deep Blue Solutions Ltd.
*
* 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 License, or
* (at your o... |
/*
* Reescreva o programa que calcula as raízes de uma equação do segundo grau do
* capítulo anterior. Nesta nova versão, escreva uma função que calcula as raízes da
* equação. A função deve retornar o número de raízes reais existentes e preencher os
* endereços passados com os valores das raízes correspondentes, s... |
/**
******************************************************************************
* @file ft6x06.h
* @author MCD Application Team
* @brief This file contains all the functions prototypes for the
* ft6x06.c IO expander driver.
******************************************************************... |
/*
+----------------------------------------------------------------------+
| PHP Version 7 |
+----------------------------------------------------------------------+
| Copyright (c) 1997-2018 The PHP Group |
+---------... |
/*
==============================================================================
This file is part of the JUCE library.
Copyright (c) 2020 - Raw Material Software Limited
JUCE is an open source library subject to commercial or open-source
licensing.
By using JUCE, you agree to the terms of both the... |
/*
* (C) Copr. 1986-92 Numerical Recipes Software
*/
#include "stdafx.h"
#include <stdio.h>
#include "min_surf.h"
#include "min_surf_prototype.h"
#include "ma_prototype.h"
#define NR_END 1
#define SWAP(a,b) itemp = (a); (a) = (b); (b) = itemp;
#define M 7
#define NSTACK 50
void indexx_for(int n, network_node **a... |
// Copyright (c) 2015-2018 The Bitcoin Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef XCOIN_TEST_TEST_XCOIN_H
#define XCOIN_TEST_TEST_XCOIN_H
#include <chainparamsbase.h>
#include <fs.h>
#include <key.h... |
#ifndef IMAGEEDITER_H
#define IMAGEEDITER_H
#include <QImage>
#include <QPixmap>
#include <QPainter>
#include <opencv2/core/core.hpp>
#include <opencv2/imgproc/imgproc.hpp>
#include <opencv2/highgui/highgui.hpp>
using namespace cv;
class ImageEditer{
public:
static QPixmap applyPaddingAndScale(QPixmap& pixmap, ... |
/* Authors: Lutong Wang and Bangqi Xu */
/*
* Copyright (c) 2019, The Regents of the University of California
* 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 sour... |
/*
* Copyright (c) 2016 Fastly, 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, publis... |
/*-------------------------------------------------------------------------
*
* slru.c
* Simple LRU buffering for transaction status logfiles
*
* We use a simple least-recently-used scheme to manage a pool of page
* buffers. Under ordinary circumstances we expect that write
* traffic will occur mostly to the l... |
/*=========================================================================
Program: Visualization Toolkit
Module: vtkPiecewiseControlPointsItem.h
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
Th... |
/* mbed Microcontroller Library
*******************************************************************************
* Copyright (c) 2014, STMicroelectronics
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following condition... |
//------------------------------------------------------------------------------
/*
This file is part of Beast: https://github.com/vinniefalco/Beast
Copyright 2013, Vinnie Falco <vinnie.falco@gmail.com>
Portions of this file are from JUCE.
Copyright (c) 2013 - Raw Material Software Ltd.
Please visi... |
#include "mpi.h"
#include "math.h"
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <time.h>
#include "mkl.h"
#include "mkl_blas.h"
#include "mkl_lapacke.h"
#include <unistd.h>
#include <errno.h>
#include <sys/types.h>
#include <memory.h>
#include <malloc.h>
#include "papi.h"
#define INDEX 100
exte... |
/*
* This header is generated by classdump-dyld 1.5
* on Wednesday, October 27, 2021 at 3:22:28 PM Mountain Standard Time
* Operating System: Version 13.5.1 (Build 17F80)
* Image Source: /System/Library/PrivateFrameworks/HomeUI.... |
/*
Implementation by the Keccak Team, namely, Guido Bertoni, Joan Daemen,
Michaël Peeters, Gilles Van Assche and Ronny Van Keer,
hereby denoted as "the implementer".
For more information, feedback or questions, please refer to our website:
https://keccak.team/
To the extent possible under law, the implementer has wai... |
// Copyright (c) 2012-2020 hors<horsicq@gmail.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, ... |
/** \file scheduler_allocators.c
*
*
* e2e scheduler functionality for DNX -- allocations
*/
/*
* This license is set out in https://raw.githubusercontent.com/Broadcom-Network-Switching-Software/OpenBCM/master/Legal/LICENSE file.
*
* Copyright 2007-2020 Broadcom Inc. All rights reserved.
*/
#ifdef BSL_LOG_M... |
/* Microsoft Reference Implementation for TPM 2.0
*
* The copyright in this software is being made available under the BSD License,
* included below. This software may be subject to other third party and
* contributor rights, including patent rights, and no such rights are granted
* under this license.
*
* ... |
/**********************************************************************************
Copyright (c) 2019 Jonas Sauer, Tobias Zündorf
MIT License
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... |
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* client.c :+: :+: :+: ... |
/*++
Copyright (c) 2007 Microsoft Corporation
Module Name:
z3_private.h
Abstract:
Z3 API.
Author:
Nikolaj Bjorner (nbjorner)
Leonardo de Moura (leonardo) 2007-06-8
Notes:
--*/
#include<iostream>
#include"rational.h"
#include"z3_macros.h"
#ifndef _Z3_PRIVATE__H_
#define _Z3_PRIVATE__H_
#ifnde... |
/*
* main.c
*
* Created on: 20 août 2021
* Author: olivier
*/
#include <stdbool.h>
#include <math.h>
#include "peripherals.h"
#include "pin_mux.h"
#include "clock_config.h"
#include "fsl_usart.h"
#include "fsl_power.h"
#include "structures.h"
//#include "monitoring.h"
// Global variables and parameters... |
// Copyright (c) the JPEG XL 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.
#ifndef LIB_JXL_ENC_FILE_H_
#define LIB_JXL_ENC_FILE_H_
// Facade for JXL encoding.
#include "lib/jxl/aux_out.h"
#include "lib/jxl/aux_out_fwd.... |
/* SPDX-License-Identifier: MIT */
#ifndef __NVKM_MSVLD_PRIV_H__
#define __NVKM_MSVLD_PRIV_H__
#include <engine/msvld.h>
int nvkm_msvld_new_(const struct nvkm_falcon_func *, struct nvkm_device *, enum nvkm_subdev_type,
int, struct nvkm_engine **);
void g98_msvld_init(struct nvkm_falcon *);
void gf100_msvld_ini... |
/*-------------------------------------------------------------------------
*
* aset.c
* Allocation set definitions.
*
* AllocSet is our standard implementation of the abstract MemoryContext
* type.
*
*
* Portions Copyright (c) 1996-2019, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Re... |
/*
*
* ao_raw.c
*
* Copyright (C) Stan Seibert - January 2001, July 2001
*
* This file is part of libao, a cross-platform audio output library. See
* README for a history of this source code.
*
* libao is free software; you can redistribute it and/or modify
* it under the terms of the GNU General ... |
/*
* adaptiveFEM.c
*
*
* Created by Xuehai Huang on 08/24/2010.
* Copyright 2010 WZU. All rights reserved.
*
*/
/*! \file adaptiveFEM.c
* \brief adaptive finite element method
*/
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <time.h>
#include "precond.h"
#include "matvec.h"
/**
*... |
#ifndef SENSOR_H
#define SENSOR_H
#include "wp3_calibrator/imageconverter.h"
#include "wp3_calibrator/defines.h"
// STD
//#include <stdio.h>
//#include <stdlib.h>
//#include <iostream>
//#include <math.h>
//#include <fstream>
#include <string>
//#include <unistd.h>
//#include <mutex>
//#include <thread>
//#include <v... |
/* Generated by RuntimeBrowser
Image: /System/Library/PrivateFrameworks/HomeUI.framework/HomeUI
*/
@interface HUItemTableViewController : HUTableViewController <HFExecutionEnvironmentObserver, HFItemManagerDelegate, HUItemManagerContainer, HUItemPresentationContainer, HUPreloadableViewController> {
unsigned lo... |
/*
* Misc utility routines for WL and Apps
* This header file housing the define and function prototype use by
* both the wl driver, tools & Apps.
*
* Copyright (C) 1999-2010, Broadcom Corporation
*
* Unless you and Broadcom execute a separate written software license
* agreement governing use of this sof... |
/******************************************************************************
* Copyright 2017 The Apollo Authors. All Rights Reserved.
* Modifications Copyright (c) 2018 LG Electronics, Inc. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file exce... |
//
// 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"
#import "NSXPCListenerDelegate.h"
@class NSString;
@interface PPNamedEntityReadWriteServerDelegate : NSObject <NSXPCListenerDelegate>
{
}
- (BOOL)listener:(... |
/*
* Copyright (c) 2003-2018, Great Software Laboratory Pvt. Ltd.
* Copyright (c) 2017 Intel Corporation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org... |
#ifndef NIMG_GENETIC_H_INCLUDED
#define NIMG_GENETIC_H_INCLUDED
#include <vector>
#include "pixmap.h"
#include "rasteriser.h"
namespace nimg {
namespace genetic_algorithms {
int init_seed(unsigned int seed);
int tri(const Pixmap &src, Pixmap &dst, const float threshold);
int tri(const Pixmap &src, Pixmap &dst
... |
#ifndef SIRIPR_UTIL_UTIL_H_
#define SIRIPR_UTIL_UTIL_H_
#include <fstream>
#include <iostream>
#include <string>
#include <vector>
#include "opencv2/core/core.hpp"
#if defined(WIN32) || defined(_WIN32)
#define OS_WINDOWS
#elif defined(__APPLE__) || defined(APPLE)
#define OS_UNIX
#elif defined(__linux__) || defined(li... |
#ifndef __PERF_RECORD_H
#define __PERF_RECORD_H
#include <limits.h>
#include <stdio.h>
#include "../perf.h"
#include "map.h"
#include "build-id.h"
#include "perf_regs.h"
struct mmap_event {
struct perf_event_header header;
u32 pid, tid;
u64 start;
u64 len;
u64 pgoff;
char filename[PATH_MAX];
};
struct mmap2_e... |
/*
* Copyright (c) 2018-2021 Arm Limited.
*
* SPDX-License-Identifier: MIT
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to
* deal in the Software without restriction, including without limitation the
* ri... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.