repo_name stringlengths 6 97 | path stringlengths 3 341 | text stringlengths 8 1.02M |
|---|---|---|
motxx/SPVM | t/default/lib/TestCase/Pointer.c | <filename>t/default/lib/TestCase/Pointer.c
#include <stdlib.h>
#include <string.h>
#include <spvm_native.h>
struct TestCase__Pointer {
int32_t x;
};
int32_t SPVM_NATIVE_TestCase__Pointer__new(SPVM_ENV* env, SPVM_VALUE* args) {
(void)env;
(void)args;
int32_t x = args[0].ival;
struct TestCase__Point... |
motxx/SPVM | lib/SPVM/Builder/include/spvm_runtime.h | #ifndef SPVM_RUNTIME_H
#define SPVM_RUNTIME_H
#include "spvm_base.h"
#include "spvm_native.h"
struct SPVM_runtime {
SPVM_PORTABLE* portable;
int32_t* constant_pool;
int32_t constant_pool_length;
SPVM_OPCODE* opcodes;
SPVM_RUNTIME_BASIC_TYPE* basic_types;
SPVM_RUNTIME_BASIC_TYPE* sorted_basic_type... |
motxx/SPVM | t/default/lib/TestCase/Lib/SPVM/CORE.c | #include <stdlib.h>
#include <string.h>
#include <float.h>
#include <assert.h>
#include <stdio.h>
#include <fcntl.h>
#include <spvm_native.h>
int32_t SPVM_NATIVE_TestCase__Lib__SPVM__CORE__test_init_native_constants_native(SPVM_ENV* env, SPVM_VALUE* stack) {
(void)env;
(void)stack;
int32_t* int_constants = e... |
motxx/SPVM | lib/SPVM/Builder/src/spvm_yacc.c | <reponame>motxx/SPVM
/* A Bison parser, made by GNU Bison 2.3. */
/* Skeleton implementation for Bison's Yacc-like parsers in C
Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006
Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it ... |
motxx/SPVM | lib/SPVM/Builder/include/spvm_type.h | <gh_stars>0
#ifndef SPVM_TYPE_H
#define SPVM_TYPE_H
#include <stdio.h>
#include "spvm_base.h"
enum {
SPVM_TYPE_C_FLAG_REF = 1,
};
enum {
SPVM_TYPE_C_RUNTIME_TYPE_UNKNOWN,
SPVM_TYPE_C_RUNTIME_TYPE_BYTE,
SPVM_TYPE_C_RUNTIME_TYPE_SHORT,
SPVM_TYPE_C_RUNTIME_TYPE_INT,
SPVM_TYPE_C_RUNTIME_TYPE_LONG,
SPVM_TY... |
motxx/SPVM | lib/SPVM/Builder/include/spvm_util_allocator.h | <reponame>motxx/SPVM
#ifndef SPVM_UTIL_ALLOCATOR_H
#define SPVM_UTIL_ALLOCATOR_H
void* SPVM_UTIL_ALLOCATOR_safe_malloc(size_t byte_size);
void* SPVM_UTIL_ALLOCATOR_safe_malloc_zero(size_t byte_size);
#endif
|
motxx/SPVM | lib/SPVM/Builder/include/spvm_compiler.h | #ifndef SPVM_COMPILER_H
#define SPVM_COMPILER_H
#include <stdio.h>
#include "spvm_base.h"
#include "spvm_native.h"
enum {
SPVM_TOKE_C_STATE_VAR_EXPANSION_DEFAULT,
SPVM_TOKE_C_STATE_VAR_EXPANSION_FIRST_CONCAT,
SPVM_TOKE_C_STATE_VAR_EXPANSION_VAR,
SPVM_TOKE_C_STATE_VAR_EXPANSION_SECOND_CONCAT,
SPVM_TOKE_C_ST... |
motxx/SPVM | lib/SPVM/Builder/include/spvm_csource_builder_precompile.h | <gh_stars>0
#ifndef SPVM_CSOURCE_BUILDER_PRECOMPILE_H
#define SPVM_CSOURCE_BUILDER_PRECOMPILE_H
#include "spvm_base.h"
enum {
SPVM_CSOURCE_BUILDER_PRECOMPILE_C_CTYPE_ID_BYTE,
SPVM_CSOURCE_BUILDER_PRECOMPILE_C_CTYPE_ID_SHORT,
SPVM_CSOURCE_BUILDER_PRECOMPILE_C_CTYPE_ID_INT,
SPVM_CSOURCE_BUILDER_PRECOMPILE_C_CTY... |
motxx/SPVM | lib/SPVM/Builder/include/spvm_opcode_array.h | <reponame>motxx/SPVM
#ifndef SPVM_OPCODE_ARRAY_H
#define SPVM_OPCODE_ARRAY_H
#include "spvm_base.h"
// Array
struct SPVM_opcode_array {
SPVM_OPCODE* values;
int32_t length;
int32_t capacity;
};
// Array function
SPVM_OPCODE_ARRAY* SPVM_OPCODE_ARRAY_new(SPVM_COMPILER* compiler);
void SPVM_OPCODE_ARRAY_free(SPVM... |
motxx/SPVM | lib/SPVM/Builder/include/spvm_toke.h | <reponame>motxx/SPVM
#ifndef SPVM_TOKE_H
#define SPVM_TOKE_H
int SPVM_yylex(SPVM_YYSTYPE* yylvalp, SPVM_COMPILER* compiler);
SPVM_OP* SPVM_TOKE_newOP(SPVM_COMPILER* compiler, int32_t type);
#endif
|
motxx/SPVM | lib/SPVM/Builder/include/spvm_opcode.h | <gh_stars>0
#ifndef SPVM_OPCODE_H
#define SPVM_OPCODE_H
#include "spvm_base.h"
enum {
SPVM_OPCODE_C_ID_WIDE,
SPVM_OPCODE_C_ID_VALUE_ARRAY_FIELD_FETCH_BYTE,
SPVM_OPCODE_C_ID_VALUE_ARRAY_FIELD_FETCH_SHORT,
SPVM_OPCODE_C... |
motxx/SPVM | lib/SPVM/Builder/include/spvm_runtime_weaken_backref.h | <filename>lib/SPVM/Builder/include/spvm_runtime_weaken_backref.h
#ifndef SPVM_RUNTIME_WEAKEN_BACKREF_H
#define SPVM_RUNTIME_WEAKEN_BACKREF_H
#include <stdio.h>
#include "spvm_base.h"
struct SPVM_runtime_weaken_backref {
SPVM_OBJECT** object_address;
SPVM_RUNTIME_WEAKEN_BACKREF* next;
};
SPVM_RUNTIME_WEAKEN_BACK... |
motxx/SPVM | lib/SPVM/Builder/src/spvm_dumper.c | #include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <inttypes.h>
#include <assert.h>
#include "spvm_compiler.h"
#include "spvm_dumper.h"
#include "spvm_list.h"
#include "spvm_hash.h"
#include "spvm_constant.h"
#include "spvm_field.h"
#include "spvm_sub.h"
#include "spvm_my.h"
#include "spvm_var.h"
#in... |
motxx/SPVM | lib/SPVM/Builder/src/spvm_compiler.c | <gh_stars>0
#include <stdlib.h>
#include <string.h>
#include <assert.h>
#include <stdarg.h>
#include "spvm_compiler.h"
#include "spvm_type.h"
#include "spvm_package.h"
#include "spvm_type.h"
#include "spvm_op.h"
#include "spvm_hash.h"
#include "spvm_list.h"
#include "spvm_util_allocator.h"
#include "spvm_compiler_allo... |
motxx/SPVM | lib/SPVM/Builder/src/spvm_enumeration_value.c | #include "spvm_enumeration_value.h"
#include "spvm_compiler_allocator.h"
#include "spvm_compiler.h"
SPVM_ENUMERATION_VALUE* SPVM_ENUMERATION_VALUE_new(SPVM_COMPILER* compiler) {
return SPVM_COMPILER_ALLOCATOR_safe_malloc_zero(compiler, sizeof(SPVM_ENUMERATION_VALUE));
}
|
motxx/SPVM | lib/SPVM/Builder/include/spvm_field.h | <reponame>motxx/SPVM<filename>lib/SPVM/Builder/include/spvm_field.h<gh_stars>0
#ifndef SPVM_FIELD_H
#define SPVM_FIELD_H
#include "spvm_base.h"
enum {
SPVM_FIELD_C_FLAG_PRIVATE = 1,
SPVM_FIELD_C_FLAG_PUBLIC = 2,
};
struct SPVM_field {
const char* name;
const char* signature;
SPVM_TYPE* type;
SPVM_PACKAGE... |
motxx/SPVM | lib/SPVM/Builder/src/spvm_package.c | <filename>lib/SPVM/Builder/src/spvm_package.c
#include "spvm_package.h"
#include "spvm_compiler_allocator.h"
#include "spvm_compiler.h"
#include "spvm_field.h"
#include "spvm_op.h"
#include "spvm_list.h"
#include "spvm_type.h"
#include "spvm_limit.h"
#include "spvm_hash.h"
#include "spvm_constant_pool.h"
const char* ... |
motxx/SPVM | lib/SPVM/Example.c | <reponame>motxx/SPVM
#include <assert.h>
#include <stdio.h>
#include <stdint.h>
#include <inttypes.h>
#include <math.h>
#include <stdlib.h>
#include <float.h>
#include "spvm_native.h"
int32_t SPVM_NATIVE_SPVM__Example__isinff(SPVM_ENV* env, SPVM_VALUE* args) {
(void)env;
(void)args;
float fval = args[0].fval... |
motxx/SPVM | lib/SPVM/Builder/include/spvm_name_info.h | #ifndef SPVM_FIELD_ACCESS_H
#define SPVM_FIELD_ACCESS_H
#include "spvm_base.h"
struct SPVM_field_access {
SPVM_OP* op_term_invocant;
SPVM_OP* op_name;
const char* resolved_name;
int32_t id;
};
SPVM_FIELD_ACCESS* SPVM_FIELD_ACCESS_new(SPVM_COMPILER* compiler);
#endif
|
motxx/SPVM | lib/SPVM/Builder/src/spvm_utf8proc.c | <reponame>motxx/SPVM
/* -*- mode: c; c-basic-offset: 2; tab-width: 2; indent-tabs-mode: nil -*- */
/*
* Copyright (c) 2018 <NAME>, <NAME>, <NAME>, <NAME>, <NAME>, and other contributors.
* Copyright (c) 2009 Public Software Group e. V., Berlin, Germany
*
* Permission is hereby granted, free of charge, to any per... |
motxx/SPVM | lib/SPVM/Builder/include/spvm_object.h | <filename>lib/SPVM/Builder/include/spvm_object.h
#ifndef SPVM_OBJECT_H
#define SPVM_OBJECT_H
#include "spvm_base.h"
#include "spvm_native.h"
// SPVM_OBJECT
struct SPVM_object {
SPVM_RUNTIME_WEAKEN_BACKREF* weaken_backref_head;
int32_t ref_count;
int32_t basic_type_id;
uint8_t type_dimension;
uint8_t has_des... |
motxx/SPVM | lib/SPVM/Builder/src/spvm_hash.c | #include <string.h>
#include <stdlib.h>
#include <assert.h>
#include "spvm_hash.h"
#include "spvm_hash_entry.h"
#include "spvm_hash_func.h"
#include "spvm_util_allocator.h"
SPVM_HASH* SPVM_HASH_new(int32_t table_capacity) {
assert(table_capacity >= 0);
// Create hash
SPVM_HASH* hash = SPVM_UTIL_ALLOCATOR_sa... |
motxx/SPVM | lib/SPVM/Builder/include/spvm_package_var.h | <filename>lib/SPVM/Builder/include/spvm_package_var.h
#ifndef SPVM_PACKAGE_VAR_H
#define SPVM_PACKAGE_VAR_H
#include "spvm_base.h"
enum {
SPVM_PACKAGE_VAR_C_FLAG_PRIVATE = 1,
SPVM_PACKAGE_VAR_C_FLAG_PUBLIC = 2,
};
struct SPVM_package_var {
const char* name;
const char* signature;
SPVM_TYPE* type;
SPVM_PA... |
motxx/SPVM | lib/SPVM/Builder/include/spvm_runtime_field.h | <reponame>motxx/SPVM
#ifndef SPVM_RUNTIME_FIELD_H
#define SPVM_RUNTIME_FIELD_H
#include "spvm_base.h"
// Field information
struct SPVM_runtime_field {
int32_t id;
int32_t name_id;
int32_t signature_id;
int32_t basic_type_id;
int32_t package_id;
uint16_t index;
uint16_t flag;
uint16_t offset;
uint8_t... |
motxx/SPVM | lib/SPVM/Builder/src/spvm_compiler_allocator.c | <filename>lib/SPVM/Builder/src/spvm_compiler_allocator.c<gh_stars>0
#include <stdlib.h>
#include <stdio.h>
#include <assert.h>
#include <string.h>
#include <stdarg.h>
#include "spvm_list.h"
#include "spvm_hash.h"
#include "spvm_util_allocator.h"
#include "spvm_compiler_allocator.h"
#include "spvm_compiler.h"
#include ... |
motxx/SPVM | lib/SPVM/Builder/src/spvm_field.c | #include <assert.h>
#include <string.h>
#include "spvm_field.h"
#include "spvm_compiler_allocator.h"
#include "spvm_type.h"
#include "spvm_op.h"
#include "spvm_compiler.h"
#include "spvm_basic_type.h"
SPVM_FIELD* SPVM_FIELD_new(SPVM_COMPILER* compiler) {
(void)compiler;
return SPVM_COMPILER_ALLOCATOR_safe_mal... |
motxx/SPVM | lib/SPVM/Builder/include/spvm_runtime_arg.h | #ifndef SPVM_RUNTIME_ARG_H
#define SPVM_RUNTIME_ARG_H
#include "spvm_base.h"
// Field information
struct SPVM_runtime_arg {
int32_t basic_type_id;
uint16_t var_id;
uint16_t type_flag;
uint8_t type_dimension;
uint8_t runtime_type;
uint8_t type_width;
};
SPVM_RUNTIME_ARG* SPVM_RUNTIME_ARG_new();
#endif
|
motxx/SPVM | lib/SPVM/Builder/include/spvm_runtime_basic_type.h | <reponame>motxx/SPVM
#ifndef SPVM_RUNTIME_BASIC_TYPE_H
#define SPVM_RUNTIME_BASIC_TYPE_H
#include <stdio.h>
#include "spvm_base.h"
struct SPVM_runtime_basic_type {
int32_t name_id;
int32_t id;
int32_t package_id;
};
SPVM_RUNTIME_BASIC_TYPE* SPVM_RUNTIME_BASIC_TYPE_new();
#endif
|
motxx/SPVM | lib/SPVM/Builder/include/spvm_enumeration_value.h | #ifndef SPVM_ENUMERATION_VALUE_H
#define SPVM_ENUMERATION_VALUE_H
#include "spvm_base.h"
// Field information
struct SPVM_enumeration_value {
SPVM_OP* op_name;
SPVM_OP* op_constant;
};
SPVM_ENUMERATION_VALUE* SPVM_ENUMERATION_VALUE_new(SPVM_COMPILER* compiler);
#endif
|
chanchann/piPanTilt | src/SignalHandler.h | <filename>src/SignalHandler.h
#ifndef SIGNALHANDLER_H
#define SIGNALHANDLER_H
#include <signal.h>
#include <stdlib.h>
#include <stdio.h>
#include <functional>
class SignalHandler {
public:
explicit SignalHandler();
virtual ~SignalHandler() = default;
void registerSignalHandler(void (*handler)(int));
privat... |
chanchann/piPanTilt | src/motor.h | <gh_stars>1-10
#ifndef MOTOR_H
#define MOTOR_H
#include <iostream>
#include <wiringPi.h>
#include <stdio.h>
#include <signal.h>
#include <stdlib.h>
#include <functional>
#include <chrono>
#include <thread>
#include "SignalHandler.h"
#include "imgManager.h"
// singleton
class Motor {
public:
static Motor& Instanc... |
chanchann/piPanTilt | src/imgManager.h | #ifndef IMGMANAGER_H
#define IMGMANAGER_H
#include <opencv2/core.hpp>
#include <opencv2/videoio.hpp>
#include <opencv2/highgui.hpp>
#include <vector>
#include <string>
#include <iostream>
#include <thread>
#include <ctime>
#include <mutex>
#include <opencv2/imgcodecs.hpp>
#include <opencv2/stitching.hpp>
using namesp... |
adetaylor/wuffs | script/mmap-ring-buffer.c | // Copyright 2019 The Wuffs 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
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed... |
adetaylor/wuffs | fuzz/c/fuzzlib/fuzzlib.c | <filename>fuzz/c/fuzzlib/fuzzlib.c
// Copyright 2018 The Wuffs 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
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless r... |
adetaylor/wuffs | internal/cgen/base/image-public.h | <reponame>adetaylor/wuffs<filename>internal/cgen/base/image-public.h
// After editing this file, run "go generate" in the parent directory.
// Copyright 2017 The Wuffs Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// Y... |
adetaylor/wuffs | internal/cgen/base/all-impl.c | <reponame>adetaylor/wuffs<filename>internal/cgen/base/all-impl.c
// After editing this file, run "go generate" in the parent directory.
// Copyright 2017 The Wuffs Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You m... |
adetaylor/wuffs | internal/cgen/base/image-impl.c | <reponame>adetaylor/wuffs
// After editing this file, run "go generate" in the parent directory.
// Copyright 2017 The Wuffs 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
//
/... |
adetaylor/wuffs | internal/cgen/base/io-public.h | <filename>internal/cgen/base/io-public.h<gh_stars>0
// After editing this file, run "go generate" in the parent directory.
// Copyright 2017 The Wuffs 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 c... |
adetaylor/wuffs | test/c/mimiclib/deflate-gzip-zlib.c | <reponame>adetaylor/wuffs
// Copyright 2017 The Wuffs 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
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required b... |
adetaylor/wuffs | internal/cgen/base/io-private.h | <reponame>adetaylor/wuffs
// After editing this file, run "go generate" in the parent directory.
// Copyright 2017 The Wuffs 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
//
/... |
adetaylor/wuffs | internal/cgen/base/core-private.h | // After editing this file, run "go generate" in the parent directory.
// Copyright 2017 The Wuffs 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
//
// https://www.apache.or... |
manuknz/tpm2-tss | test/integration/esys-clear-control.int.c | /* SPDX-License-Identifier: BSD-2-Clause */
/*******************************************************************************
* Copyright 2017-2018, Fraunhofer SIT sponsored by Infineon Technologies AG
* All rights reserved.
*******************************************************************************/
#ifdef HAVE... |
manuknz/tpm2-tss | test/integration/esys-pp-commands.int.c | <gh_stars>1-10
/* SPDX-License-Identifier: BSD-2-Clause */
/*******************************************************************************
* Copyright 2017-2018, Fraunhofer SIT sponsored by Infineon Technologies AG
* All rights reserved.
******************************************************************************... |
manuknz/tpm2-tss | test/integration/esys-hashsequencestart.int.c | <reponame>manuknz/tpm2-tss
/* SPDX-License-Identifier: BSD-2-Clause */
/*******************************************************************************
* Copyright 2017-2018, Fraunhofer SIT sponsored by Infineon Technologies AG
* All rights reserved.
******************************************************************... |
manuknz/tpm2-tss | test/integration/esys-get-capability.int.c | /* SPDX-License-Identifier: BSD-2-Clause */
/*******************************************************************************
* Copyright 2017-2018, Fraunhofer SIT sponsored by Infineon Technologies AG
* All rights reserved.
*******************************************************************************/
#ifdef HAVE... |
Lynnvon/FlightSimulator | Plugins/SimulationPlugin/Source/SimulationModule/Public/SimulationUtilitiesLibrary.h | // Fill out your copyright notice in the Description page of Project Settings.
#pragma once
#include "CoreMinimal.h"
#include "GeographicCoordinates.h"
#include "LargeCoordinates.h"
#include "Kismet/BlueprintFunctionLibrary.h"
#include "SimulationUtilitiesLibrary.generated.h"
SIMULATIONMODULE_API const FGeographicCo... |
Lynnvon/FlightSimulator | Source/FlightSimulator/Public/Struct/FlightConditionStruct.h | //MIT License
//
//Copyright(c) 2021 <NAME>
//
//QQ : 632865163
//Blog : https ://www.cnblogs.com/LynnVon/
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this softwareand associated documentation files(the "Software"), to deal
// in the Software without restriction, in... |
Lynnvon/FlightSimulator | Source/FlightSimulator/Public/Online/FlightOnlineGameSettings.h | //MIT License
//
//Copyright(c) 2021 <NAME>
//
//QQ : 632865163
//Blog : https ://www.cnblogs.com/LynnVon/
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this softwareand associated documentation files(the "Software"), to deal
// in the Software without restriction, in... |
Lynnvon/FlightSimulator | ThirdParty/JSBSim/include/models/flight_control/FGFCSFunction.h | <gh_stars>1-10
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Header: FGFCSFunction.h
Author: <NAME>
Date started: 2005
------------- Copyright (C) 2005 <NAME> -------------
This program is free software; you can redistribute it and/or modify it under
the terms of ... |
Lynnvon/FlightSimulator | ThirdParty/JSBSim/include/models/flight_control/FGMagnetometer.h | <reponame>Lynnvon/FlightSimulator
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Header: FGMagnetometer.h
Author: <NAME>
Date started: August 2009
------------- Copyright (C) 2009 -------------
This program is free software; you can redistribute it and/or modify it ... |
Lynnvon/FlightSimulator | ThirdParty/JSBSim/include/input_output/FGXMLElement.h | /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
File: FGXMLElement.h
Author: <NAME>
Date started: 9/28/04
------------- Copyright (C) 2004 <NAME> (<EMAIL>) -------------
This program is free software; you can redistribute it and/or modify it under
the terms of th... |
Lynnvon/FlightSimulator | Source/FlightSimulator/Public/Weapon/FlightWeaponSystem.h | <filename>Source/FlightSimulator/Public/Weapon/FlightWeaponSystem.h
//MIT License
//
//Copyright(c) 2021 <NAME>
//
//QQ : 632865163
//Blog : https ://www.cnblogs.com/LynnVon/
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this softwareand associated documentation files(th... |
Lynnvon/FlightSimulator | ThirdParty/JSBSim/include/math/FGStateSpace.h | /*
* FGStateSpace.h
* Copyright (C) <NAME> 2010 <<EMAIL>>
*
* FGStateSpace.h is free software: you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by the
* Free Software Foundation, either version 2 of the License, or
* (at your option) any later versi... |
Lynnvon/FlightSimulator | ThirdParty/JSBSim/include/models/FGInput.h | <reponame>Lynnvon/FlightSimulator
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Header: FGInput.h
Author: <NAME>
Date started: 12/2/98
------------- Copyright (C) 1999 <NAME> (<EMAIL>) -------------
This program is free software; you can redistribute it and/or mod... |
Lynnvon/FlightSimulator | ThirdParty/JSBSim/include/input_output/FGXMLFileRead.h | <reponame>Lynnvon/FlightSimulator<filename>ThirdParty/JSBSim/include/input_output/FGXMLFileRead.h
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Module: FGXMLFileRead.h
Author: <NAME>
Date started: 02/04/07
Purpose: Shared base class that wraps the XML file readin... |
Lynnvon/FlightSimulator | ThirdParty/JSBSim/include/models/FGMassBalance.h | /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Header: FGMassBalance.h
Author: <NAME>
Date started: 09/12/2000
------------- Copyright (C) 2000 <NAME> (<EMAIL>) --------------
This program is free software; you can redistribute it and/or modify it under
the terms ... |
Lynnvon/FlightSimulator | ThirdParty/JSBSim/include/models/propulsion/FGPiston.h | /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Header: FGPiston.h
Author: <NAME>
Date started: 09/12/2000
------------- Copyright (C) 2000 <NAME> (<EMAIL>) --------------
This program is free software; you can redistribute it and/or modify it under
the terms of th... |
Lynnvon/FlightSimulator | ThirdParty/JSBSim/include/initialization/FGTrim.h | <reponame>Lynnvon/FlightSimulator<gh_stars>1-10
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Header: FGTrim.h
Author: <NAME>
Date started: 7/1/99
------------- Copyright (C) 1999 <NAME> (<EMAIL>) -------------
This program is free software; you can redistribute i... |
Lynnvon/FlightSimulator | ThirdParty/JSBSim/include/models/flight_control/FGSensor.h | /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Header: FGSensor.h
Author: <NAME>
Date started: 9 July 2005
------------- Copyright (C) 2005 -------------
This program is free software; you can redistribute it and/or modify it under
the terms of the GNU Lesser Gener... |
Lynnvon/FlightSimulator | Source/FlightSimulator/Public/Weapon/Missile/FlightMissileGuidanceSystem.h | //MIT License
//
//Copyright(c) 2021 <NAME>
//
//QQ : 632865163
//Blog : https ://www.cnblogs.com/LynnVon/
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this softwareand associated documentation files(the "Software"), to deal
// in the Software without restriction, in... |
Lynnvon/FlightSimulator | ThirdParty/JSBSim/include/input_output/FGInputSocket.h | <filename>ThirdParty/JSBSim/include/input_output/FGInputSocket.h
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Header: FGInputSocket.h
Author: <NAME>
Date started: 01/20/15
------------- Copyright (C) 2015 <NAME> -------------
This program is free software; you can... |
Lynnvon/FlightSimulator | ThirdParty/JSBSim/include/input_output/FGPropertyManager.h | <reponame>Lynnvon/FlightSimulator
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Header: FGPropertyManager.h
Author: <NAME>
Based on work originally by <NAME>
Date: 2/2002
------------- Copyright (C) 2002 -------------
This program is free soft... |
Lynnvon/FlightSimulator | ThirdParty/JSBSim/include/models/atmosphere/FGWinds.h | /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Header: FGWinds.h
Author: <NAME>, <NAME>, <NAME>
Date started: 5/2011
------------- Copyright (C) 2011 <NAME> (<EMAIL>) -------------
This program is free software; you can redistribute it and/or modify it under
the t... |
Lynnvon/FlightSimulator | Source/FlightSimulator/Public/System/AirborneComputerSystem.h | <filename>Source/FlightSimulator/Public/System/AirborneComputerSystem.h<gh_stars>1-10
//MIT License
//
//Copyright(c) 2021 <NAME>
//
//QQ : 632865163
//Blog : https ://www.cnblogs.com/LynnVon/
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this softwareand associated docu... |
Lynnvon/FlightSimulator | ThirdParty/JSBSim/include/models/FGGasCell.h | <reponame>Lynnvon/FlightSimulator
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Header: FGGasCell.h
Author: <NAME>
Date started: 01/21/2006
----- Copyright (C) 2006 - 2013 <NAME> (anders(at)gidenstam.org) --
This program is free software; you can redistribute it a... |
Lynnvon/FlightSimulator | ThirdParty/JSBSim/include/models/FGPropagate.h | /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Header: FGPropagate.h
Author: <NAME>
Date started: 1/5/99
------------- Copyright (C) 1999 <NAME> (<EMAIL>) -------------
This program is free software; you can redistribute it and/or modify it under
the terms of the ... |
Lynnvon/FlightSimulator | ThirdParty/JSBSim/include/models/FGAtmosphere.h | <reponame>Lynnvon/FlightSimulator
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Header: FGAtmosphere.h
Author: <NAME>
Date started: 6/2011
------------- Copyright (C) 2011 <NAME> (<EMAIL>) -------------
This program is free software; you can redistribute it and/or... |
Lynnvon/FlightSimulator | ThirdParty/JSBSim/include/FGFDMExec.h | <gh_stars>1-10
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Header: FGFDMExec.h
Author: <NAME>
Date started: 11/17/98
file The header file for the JSBSim executive.
------------- Copyright (C) 1999 <NAME> (<EMAIL>) -------------
This program is free software; you... |
Lynnvon/FlightSimulator | ThirdParty/JSBSim/include/initialization/FGTrimAnalysis.h | <filename>ThirdParty/JSBSim/include/initialization/FGTrimAnalysis.h<gh_stars>1-10
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Header: FGTrimAnalysis.h
Author: <NAME>
Date started: Dec/14/2006
------------- Copyright (C) 2006 <NAME> (<EMAIL>) -------
This program... |
Lynnvon/FlightSimulator | Source/FlightSimulator/Public/System/FlightSoundSystem.h | //MIT License
//
//Copyright(c) 2021 <NAME>
//
//QQ : 632865163
//Blog : https ://www.cnblogs.com/LynnVon/
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this softwareand associated documentation files(the "Software"), to deal
// in the Software without restriction, i... |
Lynnvon/FlightSimulator | Source/FlightSimulator/Public/FlightSimulator.h | //MIT License
//
//Copyright(c) 2021 <NAME>
//
//QQ : 632865163
//Blog : https ://www.cnblogs.com/LynnVon/
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this softwareand associated documentation files(the "Software"), to deal
// in the Software without restriction, in... |
Lynnvon/FlightSimulator | Source/FlightSimulator/Public/Struct/FlightWaypointStruct.h | <filename>Source/FlightSimulator/Public/Struct/FlightWaypointStruct.h<gh_stars>1-10
//MIT License
//
//Copyright(c) 2021 <NAME>
//
//QQ : 632865163
//Blog : https ://www.cnblogs.com/LynnVon/
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this softwareand associated docume... |
Lynnvon/FlightSimulator | Source/FlightSimulatorEditor/FAnimGraphNode_ModifyTransform.h | <gh_stars>1-10
//MIT License
//
//Copyright(c) 2021 <NAME>
//
//QQ : 632865163
//Blog : https ://www.cnblogs.com/LynnVon/
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this softwareand associated documentation files(the "Software"), to deal
// in the Software without ... |
Lynnvon/FlightSimulator | ThirdParty/JSBSim/include/initialization/FGLinearization.h | /*
* FGLinearization.h
* Copyright (C) <NAME> 2010 <<EMAIL>>
*
* FGLinearization.h is free software: you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by the
* Free Software Foundation, either version 2 of the License, or
* (at your option) any later... |
Lynnvon/FlightSimulator | ThirdParty/JSBSim/include/models/flight_control/FGLinearActuator.h | /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Header: FGLinearActuator.h
Author: <NAME>
Date started: 2019-01-02
------------- Copyright (C) 2019 <NAME> -------------
This program is free software; you can redistribute it and/or modify it under
the terms of the GNU Less... |
Lynnvon/FlightSimulator | ThirdParty/JSBSim/include/models/atmosphere/FGMSIS.h | /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Header: FGMSIS.h
Description: MSIS-00 Atmosphere
Author: <NAME>
Date started: 12/14/03
------------- Copyright (C) 2003 <NAME> (<EMAIL>) ------
This program is free software; you can redistribute it and/or modify ... |
Lynnvon/FlightSimulator | ThirdParty/JSBSim/include/models/propulsion/FGTransmission.h | <reponame>Lynnvon/FlightSimulator
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
JSBSim
Author: <NAME>
Date started: 08/24/00
------------- Copyright (C) 2000 <NAME> (<EMAIL>) -------------
Header: FGTransmission.h
Author: T.Kreitler
Date started: 02/05/12
... |
Lynnvon/FlightSimulator | ThirdParty/JSBSim/include/models/flight_control/FGGain.h | /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Header: FGGain.h
Author: <NAME>
Date started: 1998 ?
------------- Copyright (C) 1998 by <NAME>, <EMAIL> -------------
This program is free software; you can redistribute it and/or modify it under
the terms of the GNU ... |
Lynnvon/FlightSimulator | ThirdParty/JSBSim/include/math/FGTemplateFunc.h | /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Header: FGTemplateFunc.h
Author: <NAME>
Date started: March 10 2018
--------- Copyright (C) 2018 <NAME> (<EMAIL>) -----------
This program is free software; you can redistribute it and/or modify it under
the terms of the GN... |
Lynnvon/FlightSimulator | ThirdParty/JSBSim/include/input_output/FGOutputTextFile.h | /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Header: FGOutputTextFile.h
Author: <NAME>
Date started: 09/17/11
------------- Copyright (C) 2011 <NAME> -------------
This program is free software; you can redistribute it and/or modify it under
the terms of the GNU ... |
Lynnvon/FlightSimulator | ThirdParty/JSBSim/include/input_output/string_utilities.h | <reponame>Lynnvon/FlightSimulator
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Header: string_utilities.h
Author: <NAME>
Date started: 06/01/09
------------- Copyright (C) 2009 <NAME> (<EMAIL>) -------------
This program is free software; you can redistribute it ... |
Lynnvon/FlightSimulator | Source/FlightSimulator/Public/FlightGameInstance.h | //MIT License
//
//Copyright(c) 2021 <NAME>
//
//QQ : 632865163
//Blog : https ://www.cnblogs.com/LynnVon/
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this softwareand associated documentation files(the "Software"), to deal
// in the Software without restriction, in... |
Lynnvon/FlightSimulator | ThirdParty/JSBSim/include/models/FGFCS.h | <filename>ThirdParty/JSBSim/include/models/FGFCS.h
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Header: FGGFCS.h
Author: <NAME>
Date started: 12/12/98
------------- Copyright (C) 1999 <NAME> (<EMAIL>) -------------
This program is free software; you can redistrib... |
Lynnvon/FlightSimulator | ThirdParty/JSBSim/include/input_output/FGScript.h | <filename>ThirdParty/JSBSim/include/input_output/FGScript.h
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Header: FGScript.h
Author: <NAME>
Date started: 12/21/2001
------------- Copyright (C) 2001 <NAME> (<EMAIL>) -------------
This program is free software; you c... |
Lynnvon/FlightSimulator | Source/FlightSimulator/Public/System/FlightCockpitSystem.h | //MIT License
//
//Copyright(c) 2021 <NAME>
//
//QQ : 632865163
//Blog : https ://www.cnblogs.com/LynnVon/
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this softwareand associated documentation files(the "Software"), to deal
// in the Software without restriction, i... |
Lynnvon/FlightSimulator | ThirdParty/JSBSim/include/models/propulsion/FGRotor.h | <filename>ThirdParty/JSBSim/include/models/propulsion/FGRotor.h
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Header: FGRotor.h
Author: <NAME>
Date started: 08/24/00
------------- Copyright (C) 2010 <NAME> (<EMAIL>) -------------
This program is free software; you... |
Lynnvon/FlightSimulator | ThirdParty/JSBSim/include/input_output/FGXMLParse.h | <filename>ThirdParty/JSBSim/include/input_output/FGXMLParse.h<gh_stars>1-10
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Header: FGXMLParse.h
Author: <NAME>
Date started: 8/20/04
------------- Copyright (C) 2004 <NAME> (<EMAIL>) -------------
This program is free... |
Lynnvon/FlightSimulator | ThirdParty/JSBSim/include/models/FGOutput.h | /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Header: FGOutput.h
Author: <NAME>
Date started: 12/2/98
------------- Copyright (C) 1999 <NAME> (<EMAIL>) -------------
This program is free software; you can redistribute it and/or modify it under
the terms of the GN... |
Lynnvon/FlightSimulator | Source/FlightSimulator/Public/Weapon/CounterMeasure/FlightCMWeaponBase.h | <gh_stars>1-10
//MIT License
//
//Copyright(c) 2021 <NAME>
//
//QQ : 632865163
//Blog : https ://www.cnblogs.com/LynnVon/
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this softwareand associated documentation files(the "Software"), to deal
// in the Software without ... |
Lynnvon/FlightSimulator | Source/FlightSimulator/Public/FDM/FlightEasyFlightModel.h | //MIT License
//
//Copyright(c) 2021 <NAME>
//
//QQ : 632865163
//Blog : https ://www.cnblogs.com/LynnVon/
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this softwareand associated documentation files(the "Software"), to deal
// in the Software without restriction, in... |
Lynnvon/FlightSimulator | ThirdParty/JSBSim/include/math/FGMatrix33.h | /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Header: FGMatrix33.h
Author: <NAME>, <NAME>, <NAME>
Date started: Unknown
------------- Copyright (C) 2001 <NAME> (<EMAIL>) -------------
This program is free software; you can redistribute it and/or modify it under
the terms of the... |
Lynnvon/FlightSimulator | ThirdParty/JSBSim/include/models/FGPropulsion.h | /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Header: FGPropulsion.h
Author: <NAME>
Date started: 08/20/00
------------- Copyright (C) 1999 <NAME> (<EMAIL>) -------------
This program is free software; you can redistribute it and/or modify it under
the terms of t... |
Lynnvon/FlightSimulator | ThirdParty/JSBSim/include/input_output/FGGroundCallback.h | <reponame>Lynnvon/FlightSimulator
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Header: FGGroundCallback.h
Author: <NAME>
Date started: 05/21/04
------ Copyright (C) 2004 <NAME> (<EMAIL>) -------
This program is free software; you can redistribute it and/or modify i... |
Lynnvon/FlightSimulator | Source/FlightSimulator/Public/Weapon/FlightWeaponMount.h | //MIT License
//
//Copyright(c) 2021 <NAME>
//
//QQ : 632865163
//Blog : https ://www.cnblogs.com/LynnVon/
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this softwareand associated documentation files(the "Software"), to deal
// in the Software without restriction, in... |
Lynnvon/FlightSimulator | ThirdParty/JSBSim/include/models/propulsion/FGTank.h | <gh_stars>1-10
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Header: FGTank.h
Author: <NAME>
Date started: 01/21/99
------------- Copyright (C) 1999 <NAME> (<EMAIL>) -------------
This program is free software; you can redistribute it and/or modify it under
the t... |
Lynnvon/FlightSimulator | ThirdParty/JSBSim/include/models/FGSurface.h | /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Header: FGSurface.h
Author: <NAME>
Date started: 01/15/14
------------- Copyright (C) 2014 <NAME> (<EMAIL>) -------------
This program is free software; you can redistribute it and/or modify it under
the terms of the G... |
Lynnvon/FlightSimulator | ThirdParty/JSBSim/include/models/propulsion/FGRocket.h | <reponame>Lynnvon/FlightSimulator
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Header: FGRocket.h
Author: <NAME>
Date started: 09/12/2000
------------- Copyright (C) 2000 <NAME> (<EMAIL>) --------------
This program is free software; you can redistribute it and/o... |
Lynnvon/FlightSimulator | ThirdParty/JSBSim/include/math/FGParameter.h | /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Header: FGParameter.h
Author: <NAME>
Date started: August 25 2004
------------- Copyright (C) 2001 <NAME> (<EMAIL>) -------------
This program is free software; you can redistribute it and/or modify it under
the terms of the GNU Les... |
Lynnvon/FlightSimulator | ThirdParty/JSBSim/include/initialization/FGTrimAnalysisControl.h | /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Header: FGTrimAnalysisControl.h
Author: <NAME>
Date started: Dec/14/2006
------------- Copyright (C) 2006 <NAME> (<EMAIL>) -------
This program is free software; you can redistribute it and/or modify it under
the term... |
Lynnvon/FlightSimulator | Source/FlightSimulator/Public/Struct/FlightCockpitDataStruct.h | <reponame>Lynnvon/FlightSimulator
//MIT License
//
//Copyright(c) 2021 <NAME>
//
//QQ : 632865163
//Blog : https ://www.cnblogs.com/LynnVon/
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this softwareand associated documentation files(the "Software"), to deal
// in t... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.