text stringlengths 9 948k |
|---|
/* Trie header file */
#ifndef TRIE_H_INCLUDED
#define TRIE_H_INCLUDED
typedef struct TrieNode {
char key;
/* value that the node references (not NULL if node is a leaf) */
Book* value;
/* pointers to children (26 letters of latin alphabet) */
struct TrieNode *edges[26];
} TrieNode;
/* prototypes */
Book* t... |
/*
* ex: set tabstop=4 ai expandtab softtabstop=4 shiftwidth=4:
* $Id$
*/
/************************************************************************
* *
* Copyright (C) 2003 *
* ... |
//
// VHAlertView.h
// VhallModuleUI_demo
//
// Created by xiongchao on 2019/12/4.
// Copyright © 2019 vhall. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface VHAlertView : UIView
/// 自定义标题、内容、取消、确定按钮
/// @param title 标题
/// @param content 内容
/// @param cancelText 取消文字
/// @param cancelBlock 取消回调
/// @... |
// Copyright 1998-2016 Epic Games, Inc. All Rights Reserved.
#pragma once
#include "SlateTextRun.h"
class FWhiteSpaceTextRun : public FSlateTextRun
{
public:
static TSharedRef< FWhiteSpaceTextRun > Create( const FRunInfo& InRunInfo, const TSharedRef< const FString >& InText, const FTextBlockStyle& Style, const FTex... |
/****************************************************************************************
* File: OpenGLES2Render.h
* Desc: Render class using OpenGL
*
* Divided in:
* - OpenGLES2Render.cpp
* - RenderTransform2dOpenGL.cpp
* - RenderTransform3dOpenGL.cpp
* - RenderTransformCommonOpenGL.cpp
* - RenderObject2dOpe... |
//
// PNCircleChart.h
// PNChartDemo
//
// Created by kevinzhow on 13-11-30.
// Copyright (c) 2013年 kevinzhow. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "PNColor.h"
#import <UICountingLabel/UICountingLabel.h>
typedef NS_ENUM (NSUInteger, PNChartFormatType) {
PNChartFormatTypePercent,
PNChart... |
/*
* This header is generated by classdump-dyld 1.0
* on Saturday, August 24, 2019 at 9:42:25 PM Mountain Standard Time
* Operating System: Version 12.4 (Build 16M568)
* Image Source: /System/Library/Frameworks/CoreImage.framework/CoreImage
* classdump-dyld is licensed under GPLv3, Copyright © 2013-2016 by Elias Limneo... |
#pragma once
#include <windows.h>
#include <windowsx.h>
#include <string>
#include <ui/events/event.h>
namespace StupidPlot
{
namespace UI
{
namespace Events
{
class NotifyEvent : public Event
{
public:
NMHDR nmh;
WPARAM w... |
// -----------------------------------------------------------------------------------------
// QSVEnc/NVEnc by rigaya
// -----------------------------------------------------------------------------------------
// The MIT License
//
// Copyright (c) 2011-2016 rigaya
//
// Permission is hereby granted, free of charge,... |
//
// MovieCell.h
// Flix
//
// Created by Alex Oseguera on 6/24/20.
// Copyright © 2020 Alex Oseguera. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "Movie.h"
NS_ASSUME_NONNULL_BEGIN
@interface MovieCell : UITableViewCell
@property (weak, nonatomic) IBOutlet UILabel *synopsisLabel;
@property (weak, no... |
// 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 CONTENT_RENDERER_RENDERER_WEBAPPLICATIONCACHEHOST_IMPL_H_
#define CONTENT_RENDERER_RENDERER_WEBAPPLICATIONCACHEHOST_IMPL_H_
#include "webkit/... |
/*********************************************************************
* Software License Agreement (BSD License)
*
* Copyright (c) 2012-2016, Kevin Hallenbeck
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the followi... |
/*
* Copyright 2006-2021 The OpenSSL Project Authors. All Rights Reserved.
*
* Licensed under the Apache License 2.0 (the "License"). You may not use
* this file except in compliance with the License. You can obtain a copy
* in the file LICENSE in the source distribution or at
* https://www.openssl.org/source/l... |
// Copyright 2017-2019 Espressif Systems (Shanghai) PTE LTD
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by app... |
//------------------------------------------------------------------------------
// GB_AxB__any_min_int16.c: matrix multiply for a single semiring
//------------------------------------------------------------------------------
// SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2022, All Rights Reserved.
// SPDX-Lic... |
// Copyright (c) 2017, uPlexa Team
//
// 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
// cond... |
/*
* QEMU 8259 - internal interfaces
*
* Copyright (c) 2011 Jan Kiszka, Siemens AG
*
* 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 t... |
/*
* Copyright (c) 2015-2018, Texas Instruments Incorporated
* 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
* n... |
/**
* Author......: See docs/credits.txt
* License.....: MIT
*/
#include "common.h"
#include "types.h"
#include "modules.h"
#include "bitops.h"
#include "convert.h"
#include "shared.h"
#include "emu_inc_cipher_des.h"
static const u32 ATTACK_EXEC = ATTACK_EXEC_INSIDE_KERNEL;
static const u32 DGST_POS0 =... |
/*
* 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) 1999, 2000, 2004 MIPS Technologies, Inc.
* All rights reserved.
* Authors: Carsten Langgaard <carstenl@mips.com>
* Maciej W. Rozycki <macro@mips.com>
*
* This program is free software; you can distribute it and/or modify it
* under the terms of the GNU General Public License (Version 2) a... |
#pragma once
#include <common.h>
#include <joint.h>
class SkeletonMesh : public AMesh<SkeletonVertex>{
public:
using AMesh::AMesh;
//add some methods to change polygons and joints
Joint rootJoint;
JointList joints;
//remove?
void genJointsFromRoot(){
joints.appendFromRootJoint(rootJ... |
/*
* $Id: stat_mkdir.c,v 1.7 2006-01-08 12:04:24 obarthel Exp $
*
* :ts=4
*
* Portable ISO 'C' (1994) runtime library for the Amiga computer
* Copyright (c) 2002-2015 by Olaf Barthel <obarthel (at) gmx.net>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modific... |
// Copyright (C) 2017 by Pedro Mendes, Virginia Tech Intellectual
// Properties, Inc., University of Heidelberg, and University of
// of Connecticut School of Medicine.
// All rights reserved.
// Copyright (C) 2010 - 2016 by Pedro Mendes, Virginia Tech Intellectual
// Properties, Inc., University of Heidelberg, and Th... |
#ifndef QPROCESSBASE_H
#define QPROCESSBASE_H
#include <QString>
#include "processbase.h"
class _Export QProcessBase : public ProcessBase
{
typedef ProcessBase Super;
public:
QProcessBase(){}
void BeginProcess(const QString& title, bool shadow = false);
void BeginProcess(const QString& title, int st... |
// ----------------------------------------------------------------------------------------------------------------------------
//
// Version 2.04
//
// ----------------------------------------------------------------------------------------------------------------------------
#pragma once
#define _USE_MATH_DEFINES
#i... |
/* Branchless UTF-8 decoder
*
* This is free and unencumbered software released into the public domain.
*/
#ifndef UTF8_H
#define UTF8_H
#include <stdint.h>
/* Decode the next character, C, from BUF, reporting errors in E.
*
* Since this is a branchless decoder, four bytes will be read from the
* buffer regardl... |
#ifndef libcv_ctf
#define libcv_ctf
#include "Array.h"
#import "Ellipse.h"
#include "MRC.h"
#include "Image.h"
#include "util.h"
#include "cvtypes.h"
#include <fftw3.h>
#include <math.h>
#include "geometry.h"
#include <gsl/gsl_math.h>
#include <gsl/gsl_linalg.h>
#include <gsl/gsl_blas.h>
#include <gsl/gsl_eigen.h>
#in... |
/*
* Copyright (C) 2021 Anders Wennmo
* This file is part of forestadventure which is released under MIT license.
* See file LICENSE for full license details.
*/
#pragma once
#include <map>
#include <tuple>
#include "Animation/Animation.h"
#include "Enum/EntityType.h"
#include "Enum/FaceDirection.h"
#include "En... |
/*
*COPYRIGHT
*All modification made by Intel Corporation: © 2017 Intel Corporation.
*Copyright (c) 2015 Preferred Infrastructure, Inc.
*Copyright (c) 2015 Preferred Networks, Inc.
*
*Permission is hereby granted, free of charge, to any person obtaining a copy
*of this software and associated documentation files... |
#ifndef _HAL_H
#define _HAL_H
//****************************************************************************
//**
//** Hal.h
//** Hardware Abstraction Layer Interface
//**
//** The Hardware Abstraction Layer (HAL) provides an abstract interface
//** to control the basic motherboard hardware devices. This is accompl... |
/**@file zdocumentable.h
* @brief Parent interface of documentable classes
* @author Ting Zhao
*/
#ifndef _ZDOCUMENTABLE_H_
#define _ZDOCUMENTABLE_H_
#include "zinterface.h"
// abstract class for those can be documentable
class ZDocumentable : public virtual ZInterface {
public:
virtual void save(const char *fi... |
#ifndef NAVIGATIONPOLYGONEDITORPLUGIN_H
#define NAVIGATIONPOLYGONEDITORPLUGIN_H
#include "tools/editor/editor_plugin.h"
#include "tools/editor/editor_node.h"
#include "scene/2d/navigation_polygon.h"
#include "scene/gui/tool_button.h"
#include "scene/gui/button_group.h"
/**
@author Juan Linietsky <reduzio@gmail.com... |
#import "UAAirshipMessageCenterCoreImport.h"
#import "UADefaultMessageCenterListViewController.h"
#import "UADefaultMessageCenterMessageViewController.h"
#import "UADefaultMessageCenterSplitViewController.h"
#import "UADefaultMessageCenterSplitViewDelegate.h"
#import "UADefaultMessageCenterUI.h"
#import "UAInboxMessage... |
// Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
#ifndef RUNTIME_VM_THREAD_H_
#define RUNTIME_VM_THREAD_H_
#if defined(SHOULD_NOT_INCLUDE_RUNTIME)
#err... |
//
// CSBase.h
// CoreSpotlight
//
// Copyright © 2014 Apple. All rights reserved.
//
#import <Foundation/Foundation.h>
#if !defined(CORESPOTLIGHT_EXPORT)
#define CORESPOTLIGHT_EXPORT extern
#endif
#ifndef CS_AVAILABLE
#define CS_AVAILABLE(mac, ios) NS_AVAILABLE(10_11, ios)
#endif
#ifndef CS_CLASS_AVAILABLE
#def... |
/**CFile****************************************************************
FileName [fretMain.c]
SystemName [ABC: Logic synthesis and verification system.]
PackageName [Flow-based retiming package.]
Synopsis [Main file for retiming package.]
Author [Aaron Hurst]
Affiliation [UC Berkeley]
... |
#pragma once
#include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <stdint.h>
#include "UnityEngine_UI_UnityEngine_UI_MaskableGraphic540192618.h"
#include "UnityEngine_UI_UnityEngine_UI_Image_Type3352948571.h"
#include "UnityEngine_UI_UnityEngine_UI_Image_FillM... |
#pragma warning( disable: 4049 ) /* more than 64k source lines */
/* verify that the <rpcndr.h> version is high enough to compile this file*/
#ifndef __REQUIRED_RPCNDR_H_VERSION__
#define __REQUIRED_RPCNDR_H_VERSION__ 500
#endif
/* verify that the <rpcsal.h> version is high enough to compile this file*/
#ifndef __RE... |
/*******************************************************************************************
*
* raygui - Controls test
*
* TEST CONTROLS:
* - GuiScrollPanel()
*
* DEPENDENCIES:
* raylib 2.5 - Windowing/input management and drawing.
* raygui 2.0 - Immediate-mode GUI controls.
*
* COMPILATION... |
/* Thread package.
This is intended to be usable independently from Python.
The implementation for system foobar is in a file thread_foobar.h
which is included by this file dependent on config settings.
Stuff shared by all thread_*.h files is collected here. */
#include "Python.h"
#include "internal/pystat... |
#include <stdio.h>
int main()
{
int count = 30;
int first = 0;
int second = 0;
int value;
for (int i = 0; i < count; i++ )
{
if ( i <= 1 )
value = i;
else
{
value = first + second;
first = second;
second = value;
}
printf("%d\n", val... |
/*
* Generated by erpcgen 1.7.4 on Fri Feb 26 16:04:25 2021.
*
* AUTOGENERATED - DO NOT EDIT
*/
#if !defined(_rpc_ble_callback_h_)
#define _rpc_ble_callback_h_
// Common types header file
#include "rpc_system_header.h"
/*! @brief rpc_ble_callback identifiers */
enum _rpc_ble_callback_ids
{
krpc_ble_callback... |
/*
* Copyright (c) 1991 Michael Landy
*
* Disclaimer: No guarantees of performance accompany this software,
* nor is any responsibility assumed on the part of the authors. All the
* software has been tested extensively and every effort has been made to
* insure its reliability.
*/
/*
* interdepth.c - interle... |
/* * Copyright (c) 2017-2020 Project PAI Foundation
* Distributed under the MIT software license, see the accompanying
* file COPYING or http://www.opensource.org/licenses/mit-license.php.
*/
#ifndef PAICOIN_WALLET_AUTOVOTER_AUTOVOTER_H
#define PAICOIN_WALLET_AUTOVOTER_AUTOVOTER_H
#include "autovoterconfig.h"
#in... |
/* Copyright (C) 2005-2013 Shugo Maeda <shugo@ruby-lang.org> and Charlie Savage <cfis@savagexi.com>
Please see the LICENSE file for copyright and distribution information */
#include "ruby_prof.h"
VALUE cRpThread;
/* ====== thread_data_t ====== */
thread_data_t*
thread_data_create()
{
thread_data_t* result... |
/* QLogic qed NIC Driver
* Copyright (c) 2015-2017 QLogic Corporation
*
* 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 file
* COPYING in the main directory of this ... |
#pragma once
#include "Config/Typedef.h"
#include "Config/Char.h"
#include "Kernel/HashType.h"
#include "Kernel/IntrusiveLinked.h"
namespace Mengine
{
class ConstStringHolder
: public IntrusiveLinked<ConstStringHolder>
{
protected:
ConstStringHolder();
virtual ~ConstStringHolder()... |
#ifndef _STD_FILE_H_
#define _STD_FILE_H_
#include <nes_emu/abstract_file.h>
#include <tchar.h>
class Std_File_Reader_u : public Std_File_Reader
{
public:
blargg_err_t open( const TCHAR* path );
};
class Std_File_Writer_u : public Std_File_Writer
{
public:
blargg_err_t open( const TCHAR* path );
};
class Gzip_Fil... |
/*
The Jinx library is distributed under the MIT License (MIT)
https://opensource.org/licenses/MIT
See LICENSE.TXT or Jinx.h for license details.
Copyright (c) 2016 James Boer
*/
#pragma once
#ifndef JX_VARIABLE_STACK_FRAME_H__
#define JX_VARIABLE_STACK_FRAME_H__
namespace Jinx::Impl
{
class VariableStackFrame
{
... |
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <fcntl.h>
#include <dirent.h>
#include <sys/stat.h>
#include <pwd.h>
#include <signal.h>
#include <readline/readline.h>
#include <readline/history.h>
struct dd{
char haha[2][256];
int ... |
////////////////////////////////////////////////////////////////////////////////
/// DISCLAIMER
///
/// Copyright 2014-2022 ArangoDB GmbH, Cologne, Germany
/// Copyright 2004-2014 triAGENS GmbH, Cologne, Germany
///
/// Licensed under the Apache License, Version 2.0 (the "License");
/// you may not use this file except... |
/*
* Copyright (c) 2017-2019 THL A29 Limited, a Tencent company. 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
... |
//
// MONativeNetworkViewController.h
// MODemoOC
//
// Created by MikiMo on 2020/12/18.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@interface MONativeNetworkViewController : UIViewController
@end
NS_ASSUME_NONNULL_END |
/** @file
The Mac Connection2 Protocol adapter functions for WiFi Connection Manager.
Copyright (c) 2019, 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 distribut... |
/* Internal interfaces for the Windows code
Copyright (C) 1995-2020 Free Software Foundation, Inc.
This file is part of GDB.
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 ver... |
/*
* Copyright 2013 MongoDB, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to ... |
#include <stdio.h>
#include <stdlib.h>
struct node
{
int data;
struct node *next;
}*top=NULL,*top_rev=NULL,*newnode;
//function prototypes
void display(struct node *top);
void reverse(struct node **top,struct node **top_rev);
void push(int num,struct node **top);
int pop(struct node **top);
//push function
vo... |
/*
* DO NOT EDIT THIS FILE!
* This file is auto-generated.
* Edits to this file will be lost when it is regenerated.
* Tool: INTERNAL/drd/instpkgs.pl
*
* This license is set out in https://raw.githubusercontent.com/Broadcom-Network-Switching-Software/OpenBCM/master/Legal/LICENSE file.
*
* Copyright 2007-2020 B... |
#include "platform.h"
#include "io_int.h"
/*---------------------------------------------------------------------------
* NAME
* io_write - write data to stream.
*
* SYNOPSIS
*/
INT
io_write
(
IN IO_FILE p_io,
IN void * p_data,
IN INT p_len,
OUT ... |
/**
* Copyright (C) 2012-2015 MongoDB Inc.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License, version 3,
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be... |
/*
* Copyright (C) 2019-2020 Alibaba Group Holding Limited
*/
#include <stdbool.h>
#include <aos/aos.h>
#include <yoc/yoc.h>
#include <aos/hal/flash.h>
#include <aos/cli.h>
#include "board.h"
#include "app_init.h"
const char *TAG = "INIT";
#ifndef CONSOLE_IDX
#define CONSOLE_IDX 0
#endif
void board_yoc_init()
{
... |
// Copyright 2011 the V8 project 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:
//
// * Redistributions of source code must retain the above copyright
// notice, this list of ... |
#pragma once
#include "db.h"
#include <unordered_map>
#include <utility>
#include <leveldb/db.h>
class DBLevelDB : public DB {
public:
DBLevelDB(const std::string &mapdir);
std::vector<BlockPos> getBlockPos(BlockPos min, BlockPos max) override;
void getBlocksOnXZ(BlockList &blocks, int16_t x, int16_t z,
int16_t... |
//
// 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 IDEIndexDBConnection, IDEIndexDatabase;
@interface IDEIndexDBSQLStream : NSObject
{
}
- (void)willSubmitTransaction:(id)arg1;
- (id)newTransaction;
- ... |
/**
* Copyright 2020 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 applicable law... |
/* emyg_atod.c
**
** Copyright (C) 2015 Doug Currie, Londonderry, NH, USA
**
** 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
... |
#pragma once
#include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <stdint.h>
// UnityEngine.Analytics.TrackableProperty/FieldWithTarget[]
struct FieldWithTargetU5BU5D_t3882163336;
#include "mscorlib_System_Object2689449295.h"
#ifdef __clang__
#pragma clang d... |
/*
* Copyright (c) 2020, University of Trento.
* 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 ... |
//
// Created on 2019-11-08.
//
#include "AndroidGifsicle.h"
#include "gifsicle.h"
#include "kcolor.h"
#include <jni.h>
#include <errno.h>
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include <assert.h>
#include <android/log.h>
#include <android/bitmap.h>
Gt_Frame def_frame;
Gt_Frameset *frames = 0;
in... |
//
// CDAUtilities.h
// ContentfulSDK
//
// Created by Boris Bügling on 04/03/14.
//
//
#import <ContentfulDeliveryAPI/CDAClient.h>
#import <Foundation/Foundation.h>
NSString* CDACacheFileNameForQuery(CDAResourceType resourceType, NSDictionary* query);
NSString* CDACacheFileNameForResource(CDAResource* resource);
... |
// Copyright (c) 2006, Google Inc.
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// * Redistributions of source code must retain the above copyright
// notice, this list of conditi... |
#pragma once
#include "../client/utilities/csgo.hpp"
#include "../hack/menu/variables.h"
#include "imgui/imgui.h"
#include "imgui/imgui_freetype.h"
#pragma comment(lib, "freetype.lib")
#include "imgui/imgui_impl_dx9.h"
#include "imgui/imgui_impl_win32.h"
#include "imgui/imgui_internal.h"
#define ColorSelect(x1,x2,x3) ... |
#ifndef _UV_TCP_H
#define _UV_TCP_H
#include "../php_ext_uv.h"
#include "uv_loop_resource.h"
#include "fcall.h"
#define UV_PIPE_HANDLE_INTERNAL_REF 1
#define UV_PIPE_HANDLE_START (1<<1)
#define UV_PIPE_READ_START (1<<2)
#define UV_PIPE_CLOSING_START (1<<3)
#define UV_PIPE_WRITE_CALLBACK_ENABLE (1<<4)
#define UV_PIPE_S... |
/* SPDX-License-Identifier: GPL-2.0-only */
/*
* VMware vSockets Driver
*
* Copyright (C) 2007-2013 VMware, Inc. All rights reserved.
*/
#ifndef __AF_VSOCK_H__
#define __AF_VSOCK_H__
#include <linux/kernel.h>
#include <linux/workqueue.h>
#include <uapi/linux/vm_sockets.h>
#include "vsock_addr.h"
#define LAST_RE... |
#pragma once
#include <cublas_v2.h>
#include <cuda.h>
#include <curand.h>
#define CUDA_CALL(x) \
do { \
if ((x) != cudaSuccess) { \
printf("Error at %s:%d\n", __FILE__, __LINE__); \
exit(EXIT_FAIL... |
/* linalg/test_ldlt.c
*
* Copyright (C) 2018 Patrick Alken
*
* 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 option) any later version.
* ... |
// messaged.h
#ifndef __MESSAGE_D__
#define __MESSAGE_D__
// chatter object
#define CHATTER_OB "/clone/user/chatter"
// item index in connection
#define NAME "name"
#define ADDRESS "address"
#define GENDER "gender"
#define AGE "age"... |
// Copyright 2020 Google LLC
//
// 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 ... |
/*===========================================================================
_____ _____ _____ _____
___| _|__ __|_ |__ __|__ |__ __| __ |__ ______
| \ / | || \ || | || |/ / ||___ |
| \/ | || \ || \ || \ ||___ |
|__/\__... |
/*
* Copyright (c) 2015 Cisco and/or its affiliates.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at:
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicabl... |
/*
* Copyright (c) 2003, Intel Corporation. All rights reserved.
* Created by: crystal.xiong REMOVE-THIS AT intel DOT com
* This file is licensed under the GPL license. For the full content
* of this license, see the COPYING file at the top level of this
* source tree.
*/
/*
* mq_unlink() test plan:
* mq_... |
/*
* FIPS 186-2 PRF for libgcrypt
* Copyright (c) 2004-2009, Jouni Malinen <j@w1.fi>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
* Alternatively, this software may be d... |
/* $Id: vid_tee.h 3664 2011-07-19 03:42:28Z nanang $ */
/*
* Copyright (C) 2011 Teluu Inc. (http://www.teluu.com)
*
* 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 ... |
//
// Generated by class-dump 3.5 (64 bit) (Debug version compiled Sep 30 2020 21:18:12).
//
// Copyright (C) 1997-2019 Steve Nygard.
//
#import <IDEKit/IDEAlertsPrefsBehaviorTableCellView.h>
@class IDEKeyBindingField, NSTableView;
@interface IDEAlertsPrefsCustomBehaviorTableCellView : IDEAlertsPrefsBehaviorTab... |
//
// 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"
@interface CATStateMachineEvent : NSObject
{
id _trigger;
id _context;
}
+ (id)eventWithTrigger:(id)arg1 context:(id)arg2;
@property(readonly, nonatom... |
// Copyright Jean Pierre Cimalando 2018.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE or copy at
// http://www.boost.org/LICENSE_1_0.txt)
#pragma once
#include "JuceHeader.h"
// XXX(jpc) a hack so we don't need to link the whole `juce_audio_utils... |
//
// QBTabBarControllerProtocol.h
// QBCore
//
// Created by Qiaokai on 2017/3/6.
// Copyright © 2017年 QianBao. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "QBTableViewModel.h"
NS_ASSUME_NONNULL_BEGIN
@protocol QBTableViewModelProtocol <NSObject>
@property (nullable, nonatomic, strong, rea... |
/**The MIT License (MIT)
Copyright (c) 2015 by Daniel Eichhorn
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, m... |
/**
@file types.h
@brief Header file for type classes used to perform type-checking during the semantic analysis checks
@copyright 2015 Assured Information Security, Inc.
@author Jacob Torrey <torreyj@ainfosec.com>
The Type family of classes are used to store type information about various expressions a... |
/*
* This file is part of the coreboot project.
*
* Copyright (C) 2008-2009 coresystems GmbH
*
* 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; version 2 of
* the License.
*
* This prog... |
/**
* This header is generated by class-dump-z 0.2a.
* class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3.
*
* Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow
*/
#import "BRControlHeightFactory.h"
#import "BRControlFactory.h"
@interface BRMetadataPreviewControlFactory : NSO... |
/*
Copyright 2015 refractionPOINT
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 writing, software
... |
/**
* @file
*
* @brief A plugin that reads configuration files and saves keys on a line by line basis *
* @copyright BSD License (see doc/COPYING or http://www.libelektra.org)
*
*/
#ifndef HAVE_KDBCONFIG
#include "kdbconfig.h"
#endif
#include "line.h"
#include <kdbease.h>
#include <kdberrors.h>
#include <kdbpr... |
/**
* Copyright 2017 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 law or agreed... |
/*
* This header is generated by classdump-dyld 1.0
* on Tuesday, November 5, 2019 at 2:44:13 AM Mountain Standard Time
* Operating System: Version 13.0 (Build 17J586)
* Image Source: /System/Library/PrivateFrameworks/RelevanceEngine.framework/RelevanceEngine
* classdump-dyld is licensed under GPLv3, Copyright © 2013-2... |
# SPDX-License-Identifier : Apache-2.0
# Copyright (c) 2021 STMicroelectronics
#include <stm32f4xx_hal_conf.h> |
//===--- AnyRequest.h - Requests Instances ----------------------*- C++ -*-===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2017 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See https://swift.org/L... |
/* Copyright (C) 1999, 2003, 2004, 2007, 2008, 2010, 2011
Free Software Foundation, Inc.
This file is part of GCC.
GCC 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, or (at your option)
any... |
//
// SKSocketHeader.h
// Client_Socket
//
// Created by KUN on 2017/8/30.
// Copyright © 2017年 lemon. All rights reserved.
//
//
#if DEBUG
static NSString * HOST = @"10.22.64.148";
static const int PORT = 8888;
#else
static NSString * HOST = @"10.22.64.148";
static const int PORT = 7070;
#endif
static NSTimeInte... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.