text stringlengths 9 948k |
|---|
#ifndef __MSS_MODE_H__
#define __MSS_MODE_H__
#include "dart/dart.hpp"
namespace MSS
{
class MotionAction
{
public:
std::string name;
double lb;
Eigen::VectorXd a;
MotionAction(const std::string& _name,const Eigen::VectorXd& upper,const Eigen::VectorXd& lower);
void SetLB(double _lb){lb = _lb;};
void Set(Eigen::... |
/*
*
* Copyright (c) 1996,1997
* Silicon Graphics Computer Systems, Inc.
*
* Copyright (c) 1997
* Moscow Center for SPARC Technology
*
* Copyright (c) 1999
* Boris Fomitchev
*
* This material is provided "as is", with absolutely no warranty expressed
* or implied. Any use is at your own risk.
*
* Permiss... |
//
// MHDeviceProfile.h
// MiNetworkFramework
//
// Created by CoolKernel on 05/07/2017.
// Copyright © 2017 zhangyinze. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface MHDevPropertyValue : NSObject
@property (nonatomic, strong) id value;
@property (nonatomic, copy) NSString *des;
@property (... |
#ifndef SRC_NODE_H_
#define SRC_NODE_H_
#ifdef _WIN32
# ifndef BUILDING_NODE_EXTENSION
# define NODE_EXTERN __declspec(dllexport)
# else
# define NODE_EXTERN __declspec(dllimport)
# endif
#else
# define NODE_EXTERN /* nothing */
#endif
#ifdef BUILDING_NODE_EXTENSION
# undef BUILDING_V8_SHARED
# undef BUILDING_UV_... |
/*
* Copyright (C) 2008-2010 Freescale Semiconductor, Inc. All Rights Reserved.
*/
/*
* The code contained herein is licensed under the GNU General Public
* License. You may obtain a copy of the GNU General Public License
* Version 2 or later at the following locations:
*
* http://www.opensource.org/licenses/gp... |
/*
* This header is generated by classdump-dyld 1.0
* on Tuesday, November 5, 2019 at 2:41:22 AM Mountain Standard Time
* Operating System: Version 13.0 (Build 17J586)
* Image Source: /System/Library/PrivateFrameworks/GeoServices.framework/GeoServices
* classdump-dyld is licensed under GPLv3, Copyright © 2013-2016 by E... |
/*
* 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... |
/* Test file for round away.
Copyright 2000-2019 Free Software Foundation, Inc.
Contributed by the AriC and Caramba projects, INRIA.
This file is part of the GNU MPFR Library.
The GNU MPFR Library is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as p... |
#include <unistd.h>
char *utoa(unsigned int value, char *s, unsigned char radix) {
char buf[sizeof(unsigned int) * CHAR_BIT + 1];
char *s1 = s;
char *s2 = buf;
do {
*s2++ = "0123456789abcdefghijklmnopqrstuvwxyz"[value % radix];
value /= radix;
} while (value > 0);
*s2 = '\0';
do {
*s1++ =... |
//=================================================================================================
/*!
// \file blazemark/boost/Complex4.h
// \brief Header file for the Boost kernel for the complex expression b += s * A * a
//
// Copyright (C) 2012-2017 Klaus Iglberger - All Rights Reserved
//
// This file is part... |
// Fill out your copyright notice in the Description page of Project Settings.
#pragma once
#include "CoreMinimal.h"
#include "GameFramework/GameModeBase.h"
#include "BomberGameMode.generated.h"
/**
*
*/
UCLASS()
class MYPROJECT2_API ABomberGameMode : public AGameModeBase
{
GENERATED_BODY()
ABomberGameMode();
... |
// mmap.h
/* Copyright 2009 10gen 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 use... |
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define MAX_BOOKS 10
struct book {
char *title, *author, *publisher;
int publishing_year;
int university_text_book;
};
typedef struct book book;
book make_book(char *title, char *author, char *publisher,
int year, int text_book){
book... |
#include <string>
#include <algorithm>
using std::string;
//Function Prototypes
double get_gc_content(const string& dna);
string get_dna_complement(string dna);
string get_reverse_string(string dna);
int menu(int num); |
/*
Copyright (c) 2014-2016 stoyan shopov
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, publish, distribu... |
#include "analytics/analytics.h"
void analytics_inc(eAnalyticsKey key) {
return;
} |
#define RT_FORMAT_TEST_TIMESTAMPS (RT_FORMAT_DTA_105_AND_NEWER | RT_FORMAT_SPSS | RT_FORMAT_SAS7BDAT)
static rt_test_group_t _test_groups[] = {
{
.label = "Table name",
.tests = {
{
.label = "Legal name",
.test_formats = RT_FORMAT_XPORT,
... |
// Copyright (c) 2013 GitHub, Inc. All rights reserved.
// Use of this source code is governed by the MIT license that can be
// found in the LICENSE file.
#ifndef ATOM_BROWSER_NATIVE_WINDOW_H_
#define ATOM_BROWSER_NATIVE_WINDOW_H_
#include <map>
#include <string>
#include <vector>
#include "base/basictypes.h"
#incl... |
/*
==========================================================================
contains win32 application class
class Application
==========================================================================
*/
#ifndef APPLICATION_WIN32_H
#define APPLICATION_WIN32_H
#pragma comment(lib, "opengl32.lib")
#pragma comment(l... |
#include <std.h>
#include "/d/dagger/drow/temple/short.h"
inherit ROOM;
void create() {
::create();
set_terrain(STONE_BUILDING);
set_travel(PAVED_ROAD);
set_property("light",-3);
set_property("indoors",1);
set_property("no teleport",1);
set_short( (:TO,"shrt_fun" :) );
set_long( (:TO,"lng_f... |
/*
* dlfcn-win32
* Copyright (c) 2007 Ramiro Polla
*
* 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 option) any later version.
*
... |
//%LICENSE////////////////////////////////////////////////////////////////
//
// Licensed to The Open Group (TOG) under one or more contributor license
// agreements. Refer to the OpenPegasusNOTICE.txt file distributed with
// this work for additional information regarding copyright ownership.
// Each contributor lice... |
// Copyright 2014 the V8 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 V8_OSTREAMS_H_
#define V8_OSTREAMS_H_
#include <stddef.h>
#include <stdio.h>
#include <string.h>
#include "include/v8config.h"
#include "src/b... |
//
// YaPB - Counter-Strike Bot based on PODBot by Markus Klinge.
// Copyright © 2004-2022 YaPB Project <yapb@jeefo.net>.
//
// SPDX-License-Identifier: MIT
//
#pragma once
#include <string.h>
#include <ctype.h>
#include <crlib/basic.h>
#include <crlib/memory.h>
#include <crlib/movable.h>
#include <crlib/uniqueptr.h... |
// WitherSkullEntity.h
// Declares the cWitherSkullEntity class representing the entity used by both blue and black wither skulls
#pragma once
#include "ProjectileEntity.h"
// tolua_begin
class cWitherSkullEntity :
public cProjectileEntity
{
// tolua_end
using super = cProjectileEntity;
public: // tol... |
// Generated by Apple Swift version 5.1 effective-4.1.50 (swiftlang-1100.0.270.13 clang-1100.0.33.7)
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wgcc-compat"
#if !defined(__has_include)
# define __has_include(x) 0
#endif
#if !defined(__has_attribute)
# define __has_attribute(x) 0
#endif
#if !defin... |
/*
* 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 ... |
#ifndef MATERIALX_HARDWAREPLATFORM_H
//
// Platform macros. All platform specific files in the module should use the OS*_ macros
// instead of the native ones.
//
#if defined(_WIN64)
#define OSWin_
#elif defined(__linux__)
#define OSLinux_
#elif defined(__APPLE__)
#define OSMac_
#else
#define OSUnsupported_
#endif
#e... |
/* Copyright (C) 2007-2018 Free Software Foundation, Inc.
This file is part of BFD, the Binary File Descriptor library.
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 o... |
#pragma once
#include "RenderCore.h"
#include "GTSL/RGB.h"
#undef MemoryBarrier
namespace GAL
{
class Buffer;
class Texture;
class CommandList
{
public:
CommandList() = default;
~CommandList() = default;
//Starts recording of commands.
//Ends recording of commands.
// COMMANDS
// BIND COMMAND... |
/** --------------------------------------------------------------------------------------------------------------------
* <copyright company="Aspose" file="doc_save_options_data.h">
* Copyright (c) 2021 Aspose.Words for Cloud
* </copyright>
* <summary>
* Permission is hereby granted, free of charge, to any person... |
/*Teste de operações +,-,*,/,% de dois numeros*/
/*
Enunciado da questão:
Escreva um programa que peça ao usuário para digitar dois números, obtenha-os do usuário e
imprima a soma, o produto, a diferença, o quociente e o resto da divisão dos dois números.
*/
#include<stdio.h>
int main()
{
int num1,num2,sum,dif... |
/*
* Copyright 2011 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#include "SkUtils.h"
#if DSTSIZE==32
#define DSTTYPE SkPMColor
#elif DSTSIZE==16
#define DSTTYPE uint16_t
#else
#error "need DSTSIZE to be 32 or 16"
#endif
#if (... |
/*
*
* Copyright 2015 gRPC 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 agree... |
#include <stdlib.h>
#ifndef _LISTADOBLECIRCULARH
#define _LISTADOBLECIRCULARH
typedef struct
{
int Id;
char *Titulo;
int Anyo;
char *Clasificacion;
float Calificacion;
float Duracion;
int CantidadGeneros;
char **Generos;
char *Sinopsis;
}Pelicula;
typedef struct sNodo
{
Pelicul... |
#ifndef __SIMD_MAP_H
#define __SIMD_MAP_H
#include "simd_const.h"
#define simd_zeros vmovq_n_f32(0.0f)
#define simd_adds vaddq_f32
#define simd_addw vaddq_s32
#define simd_andw vandq_s32
#define simd_notw vmvnq_s32
#define simd_subs vsubq_f32
#define simd_subw vsubq_s32
#define simd_muls vmulq_f32... |
/*
* This header is generated by classdump-dyld 1.0
* on Sunday, September 27, 2020 at 11:40:45 AM Mountain Standard Time
* Operating System: Version 14.0 (Build 18A373)
* Image Source: /System/Library/PrivateFrameworks/WebCore.framework/WebCore
* classdump-dyld is licensed under GPLv3, Copyright © 2013-2016 by Elias L... |
/*
*
* Copyright (c) 2020 Project CHIP Authors
* Copyright (c) 2016-2018 Nest Labs, 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
*
*... |
/*
* Copyright (C) 2015-2018, Xilinx Inc - All rights reserved
* Xilinx Runtime (XRT) APIs
*
* 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://www.apache.org/licenses/LICENSE-2... |
//
// CustomVolumeViewController.h
// WYLVolumeView
//
// Created by 王老师 on 15/10/7.
// Copyright © 2015年 wyl. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface CustomVolumeViewController : UIViewController
@end |
/**
* @author Sebastian Roland <seroland86@gmail.com>
*/
#ifndef LINENUMBERENTRY_H
#define LINENUMBERENTRY_H
#include <functional>
namespace psr {
class LineNumberEntry
{
public:
LineNumberEntry(unsigned int _lineNumber) :
lineNumber(_lineNumber) { }
~LineNumberEntry() = default;
bool operator<(const... |
//
// RecipeTableViewController.h
// WaffleTest
//
// Created by Roger Luan on 5/2/16.
// Copyright © 2016 Roger Oba. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "APIManager.h"
@interface RecipeTableViewController : UITableViewController
- (instancetype)initWithAPIManager:(APIManager *)APIManager;
... |
/*
* Copyright (c) 2017 Intel Corporation
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <ztest.h>
#include <sys/rb.h>
#define TREE_SIZE 512
/* zephyr can't do floating-point arithmetic,
* so manual: dlog_N = 2log(TREE_SIZE) = 18
*/
const static uint32_t dlog_N = 18;
/* rbnode structure is embeddedable in... |
/*
ChibiOS - Copyright (C) 2006..2016 Giovanni Di Sirio
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 ap... |
/*
*
* Copyright (c) 2021 Project CHIP 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... |
// Copyright (c) 2017-2019 The QuantisNet Core developers
// Copyright (c) 2011-2015 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 BITCOIN_QT_BANTABLEMODEL_H
#define BITCOIN_QT_BANTABLEMODEL... |
#include "input-mouse.h"
/**
* The mouse remained still, so clear out dx and dy movements.
*/
void cnMouse_Still(CnMouse* m)
{
CN_ASSERT(m, "Cannot keep a null mouse still");
m->dx = 0;
m->dy = 0;
}
void cnMouse_Move(CnMouse* m, int32_t x, int32_t y, int32_t dx, int32_t dy)
{
CN_ASSERT(m, "Cannot move a null mo... |
/*
* This header is generated by classdump-dyld 1.0
* on Sunday, September 27, 2020 at 12:26:48 PM Mountain Standard Time
* Operating System: Version 14.0 (Build 18A373)
* Image Source: /System/Library/PrivateFrameworks/TouchML.framework/TouchML
* classdump-dyld is licensed under GPLv3, Copyright © 2013-2016 by Elias L... |
/*
Copyright 2000-2004 KnowNow, Inc. All rights reserved.
@KNOWNOW_LICENSE_START@
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 cond... |
// Copyright (c) 2014-2017, The SL8 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:
//
// 1. Redistributions of source code must retain the above copyright notice, this list of
/... |
// Copyright 2015-present 650 Industries. All rights reserved.
#import <UIKit/UIKit.h>
#import "ABI26_0_0EXScopedEventEmitter.h"
@protocol ABI26_0_0EXLinkingManagerScopedModuleDelegate
- (void)linkingModule:(id)linkingModule didOpenUrl:(NSString *)url;
/**
* @return whether the url should be routed internally as... |
/*
* 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) 2019-2020 Zilliz. 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 l... |
/*
Unix SMB/CIFS implementation.
LDAP server
Copyright (C) Stefan Metzmacher 2004
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your... |
/* **********************************************************
* Copyright 2007 VMware, Inc. All rights reserved.
* **********************************************************/
/*
* codeset.h --
*
* UTF-16 handling macros. Based on utf16.h from ICU 1.8.1.
*
* ICU 1.8.1 license follows:
*
* ICU L... |
//===- AArch64InstrInfo.h - AArch64 Instruction Information -----*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===-------------------------------------------------------... |
/*
* fitscheck.c
*
* Functions related for FITS file integrity.
*
*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
*
* This file part of: AstrOmatic FITS/LDAC library
*
* Copyright: (C) 1995-2010 Emmanuel Bertin -- IAP/CNRS/UPMC
*
* License: GNU General Public License
*
* AstrOmatic s... |
/*
* 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 SKSL_SECTIONANDPARAMETERHELPER
#define SKSL_SECTIONANDPARAMETERHELPER
#include "SkSLErrorReporter.h"
#include "ir/SkSLProgram.h"
#include "ir/SkSLSection.h"
#include ... |
/*
* Copyright 2013 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 ... |
#include "WebCore/loader/icon/IconDatabaseClient.h" |
//
// OCSDefinition.h
// Reliant
//
// Created by Michael Seghers on 6/05/12.
// Copyright (c) 2012 AppFoundry. All rights reserved.
//
#import <Foundation/Foundation.h>
/**
Describes an object configuration in the application context.
*/
@interface OCSDefinition : NSObject
/**
The key for the definition. This k... |
// Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2012 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef BITCOIN_NET_H
#define BITCOIN_NET_H
#include <deque>
#include <boost/array... |
/*
* Copyright 2017 Google
*
* 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 in w... |
// WARNING
// This file has been generated automatically by Visual Studio to
// mirror C# types. Changes in this file made by drag-connecting
// from the UI designer will be synchronized back to C#, but
// more complex manual changes may not transfer correctly.
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h... |
/*****************************************************************************/
/*
* devio.c -- User space communication with USB devices.
*
* Copyright (C) 1999-2000 Thomas Sailer (sailer@ife.ee.ethz.ch)
*
* This program is free software; you can redistribute it and/or modify
* it under t... |
//
// 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 "REBaseViewController.h"
#import "APPickerDelegate-Protocol.h"
#import "REErrorViewDelegate-Protocol.h"
#import "REMoreFooterV... |
/*
* Crc.h
*
* Created: 22.05.2014 16:06:39
* Author: Vladimir
*/
#ifndef CRC_H_
#define CRC_H_
#include "memory/include/Memory.h"
class MemoryCrc {
public:
MemoryCrc(Memory *memory);
void startCrc();
MemoryResult write(const void *data, uint16_t len);
MemoryResult writeCrc();
MemoryResult read(void *buf,... |
/* this file was generated by makeunicodedata.py 3.2 */
#define UNIDATA_VERSION "10.0.0"
/* a list of unique database records */
static const UCDRecord ucd_records[] = {
{2, 0, 18, 5, 102, 39},
{0, 0, 14, 5, 0, 21},
{0, 0, 16, 5, 0, 17},
{0, 0, 15, 5, 0, 34},
{0, 0, 16, 5, 0, 30},
{0, 0, 17, 5, 0, 30},
{0, 0, 1... |
#ifndef OPENSIM_PROPERTY_INT_H_
#define OPENSIM_PROPERTY_INT_H_
/* -------------------------------------------------------------------------- *
* OpenSim: PropertyInt.h *
* -------------------------------------------------------------------------- *
* The OpenSim A... |
/* ibmtr.c: A shared-memory IBM Token Ring 16/4 driver for linux
*
* Written 1993 by Mark Swanson and Peter De Schrijver.
* This software may be used and distributed according to the terms
* of the GNU General Public License, incorporated herein by reference.
*
* This device driver should work with Any IBM Token... |
/*
* This file is a part of libacars
*
* Copyright (c) 2018 Tomasz Lemiech <szpajder@gmail.com>
*/
#include <libacars/macros.h> // la_assert
#include <libacars/list.h> // la_list
#include <libacars/util.h> // LA_XCALLOC, LA_XFREE
la_list *la_list_next(la_list const * const l) {
if(l == NULL) {
return NULL;
... |
#define VERSION_INT(V,R,M,P) ( ((V)<<24) | ((R)<<16) | ((M)<<8) | (P))
CONFIG_LOADED=YES
#if __GNUC__
/* also true for clang */
GNUISH=YES
USR_CXXFLAGS += -std=c++11
#endif
#if __GNUC__ && !__clang__
#define GCC_VERSION VERSION_INT(__GNUC__, __GNUC_MINOR__, __GNUC_PATCHLEVEL__, 0)
/* avoid linking with unnecessary ... |
/*
Hyperborea (c) by Nicolas @ https://github.com/NicolasDe
Hyperborea is licensed under a
Creative Commons Attribution-ShareAlike 4.0 International License.
You should have received a copy of the license along with this
work. If not, see <http://creativecommons.org/licenses/by-sa/4.0/>.
*/
#pragma once
#include "... |
//
// Created by mwo on 8/04/16.
//
#ifndef CROWARQ_PAGE_H
#define CROWARQ_PAGE_H
#include "mstch/mstch.hpp"
#include "arqma_headers.h"
#include "../gen/version.h"
#include "MicroCore.h"
#include "tools.h"
#include "rpccalls.h"
#include "CurrentBlockchainStatus.h"
#include "MempoolStatus.h"
#include "../ext/cr... |
#ifndef CPPAPI_C_HEADER_USING_NAMESPACE_PROJECT_H
#define CPPAPI_C_HEADER_USING_NAMESPACE_PROJECT_H
#if defined(CPPAPI_C_HEADER_PROJECT_H) && !defined(CPPAPI_C_MACRO_PROJECT_USINGED)
# define CPPAPI_C_MACRO_PROJECT_USINGED
typedef cppapi_project project;
# ifdef __cplusplus
extern "C"
{
# endif
CPPAPI_C_EXPORT int... |
/* Automatically generated nanopb header */
/* Generated by nanopb-0.3.9.1 at Fri Nov 09 16:58:28 2018. */
#ifndef PB_TRANSPORT_PB_H_INCLUDED
#define PB_TRANSPORT_PB_H_INCLUDED
#include <pb.h>
#include "common.pb.h"
/* @@protoc_insertion_point(includes) */
#if PB_PROTO_HEADER_VERSION != 30
#error Regenerate this fil... |
/**
* @file skip_list.h
*
* @author hutusi (hutusi@outlook.com)
*
* @brief Skip List.
*
* @date 2020-03-29
*
* @copyright Copyright (c) 2020, hutusi.com
*
*/
#ifndef RETHINK_C_SKIP_LIST_H
#define RETHINK_C_SKIP_LIST_H
/** Max level of the @ref SkipList **/
#define SKIP_LIST_MAX_LEVEL 16
/** Random level fa... |
#define _GNU_SOURCE
#include <math.h>
int finitef(float x)
{
return isfinite(x);
} |
// 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 CHROME_BROWSER_SSL_INSECURE_SENSITIVE_INPUT_DRIVER_H_
#define CHROME_BROWSER_SSL_INSECURE_SENSITIVE_INPUT_DRIVER_H_
#include "mojo/public/cpp/bin... |
#ifndef FILE_COPY_H
#define FILE_COPY_H
/* Copy file atomically. First try hardlinking, then fallback to creating
a temporary file (destpath.tmp) and rename()ing it over srcpath.
If the destination file already exists, it may or may not be overwritten,
so that shouldn't be relied on.
Returns -1 = error, 0... |
/* A Bison parser, made by GNU Bison 3.0.4. */
/* Bison implementation for Yacc-like parsers in C
Copyright (C) 1984, 1989-1990, 2000-2015 Free Software Foundation, Inc.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by... |
// 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 a... |
#pragma once
#include "common/common/non_copyable.h"
#include "extensions/quic_listeners/quiche/envoy_quic_alarm.h"
#pragma GCC diagnostic push
// QUICHE allows unused parameters.
#pragma GCC diagnostic ignored "-Wunused-parameter"
#include "quiche/quic/core/quic_alarm_factory.h"
#include "quiche/quic/core/quic_are... |
/*
* Copyright (C) 2018-2021 Jolla Ltd.
* Copyright (C) 2018-2021 Slava Monich <slava.monich@jolla.com>
*
* You may use this file under the terms of BSD license as follows:
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
... |
//
// FLWsdlPortType.h
//
// DO NOT MODIFY!! Modifications will be overwritten.
// Generated by: Mike Fullerton @ 6/2/13 5:36 PM with PackMule (3.0.0.100)
//
// Project: FishLamp CodeWriter WSDL Interpreter
// Schema: FLWsdlObjects
//
// Copyright 2013 (c) GreenTongue Software, LLC
//
#import "FLModelObject.h"
@... |
/* DO NOT EDIT THIS FILE - it is machine generated */
#include <jni.h>
/* Header for class org_lwjgl_opengl_MacOSXPbufferPeerInfo */
#ifndef _Included_org_lwjgl_opengl_MacOSXPbufferPeerInfo
#define _Included_org_lwjgl_opengl_MacOSXPbufferPeerInfo
#ifdef __cplusplus
extern "C" {
#endif
/*
* Class: org_lwjgl_opengl... |
#pragma once
#include "CoreMinimal.h"
#include "FlowData.generated.h"
UCLASS(Blueprintable, BlueprintType, meta = (DisplayName = "Street Map Flow Data"))
class STREETMAPRUNTIME_API UFlowData : public UObject
{
GENERATED_BODY()
public:
UPROPERTY(BlueprintReadOnly, Category = "StreetMap")
FName RdsTmc;
UPROPERT... |
/* 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... |
#ifndef _NATIVE_UTF8_CODEC_H_
#define _NATIVE_UTF8_CODEC_H_ 1
// Module Dependencies
#include "stringcodec.h"
namespace native
{
/**
Utf8Codec is the StringCodec that performs conversions between Strings
and UTF-8 data.
*/
class Utf8Codec : public StringCodec
{
public:
/** Creates a Utf8Codec. */
Utf8Co... |
/*
* Copyright (c) 2015 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,... |
/****************************************************************************
* arch/arm/src/kinetis/kinetis_start.c
*
* Copyright (C) 2011-2012 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
*
* Redistribution and use in source and binary forms, with or without
* modification, a... |
/*
* (c) Copyright 2008, IBM 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 by applicable... |
#pragma once
#include "guiBaseObject.h"
#include "guiColor.h"
#include "simpleColor.h"
#include "guiValue.h"
#include "guiCustomImpl.h"
class guiTypeCustom : public guiBaseObject{
public:
guiTypeCustom();
void setup(string customName, guiCustomImpl * customIn, float panelWidth, float panelHeigh... |
struct sctp_chunk *CVE_2011_1573_VULN_sctp_make_init(const struct sctp_association *asoc,
const struct sctp_bind_addr *bp,
gfp_t gfp, int vparam_len)
{
sctp_inithdr_t init;
union sctp_params addrs;
size_t chunksize;
struct sctp_chunk *retval = NULL;
int num_types, addrs_len = 0;
struct sctp_sock *... |
#ifndef _ROS_SERVICE_StopRapp_h
#define _ROS_SERVICE_StopRapp_h
#include <stdint.h>
#include <string.h>
#include <stdlib.h>
#include "ros/msg.h"
namespace rocon_app_manager_msgs
{
static const char STOPRAPP[] = "rocon_app_manager_msgs/StopRapp";
class StopRappRequest : public ros::Msg
{
public:
StopRapp... |
/****************************************************************************
**
** Copyright (C) 2015 The Qt Company Ltd.
** Contact: http://www.qt.io/licensing/
**
** This file is part of the qmake spec of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL21$
** Commercial License Usage
** Licensees holding valid commercia... |
/*
* This header is generated by classdump-dyld 1.5
* on Wednesday, October 27, 2021 at 3:16:49 PM Mountain Standard Time
* Operating System: Version 13.5.1 (Build 17F80)
* Image Source: /System/Library/Frameworks/PhotosUI.frame... |
/*
Copyright (C) 2000, 2001 Silicon Graphics, Inc. All Rights Reserved.
This program 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 program is distributed in the hope tha... |
// SPDX-License-Identifier: GPL-2.0-only
/*
* rt5631.c -- RT5631 ALSA Soc Audio driver
*
* Copyright 2011 Realtek Microelectronics
*
* Author: flove <flove@realtek.com>
*
* Based on WM8753.c
*/
#include <linux/module.h>
#include <linux/moduleparam.h>
#include <linux/init.h>
#include <linux/delay.h>
#include <... |
//
// 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 "WXPBGeneratedMessage.h"
@class NSString;
@interface EmotionSummary : WXPBGeneratedMessage
{
}
+ (void)initialize;
// Remai... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.