hexsha
stringlengths
40
40
size
int64
5
2.72M
ext
stringclasses
5 values
lang
stringclasses
1 value
max_stars_repo_path
stringlengths
3
976
max_stars_repo_name
stringlengths
5
113
max_stars_repo_head_hexsha
stringlengths
40
78
max_stars_repo_licenses
listlengths
1
10
max_stars_count
float64
1
191k
max_stars_repo_stars_event_min_datetime
stringdate
2015-01-01 00:01:43
2022-03-31 23:59:48
max_stars_repo_stars_event_max_datetime
stringdate
2015-01-01 00:06:24
2022-03-31 23:59:53
max_issues_repo_path
stringlengths
3
976
max_issues_repo_name
stringlengths
5
116
max_issues_repo_head_hexsha
stringlengths
40
78
max_issues_repo_licenses
listlengths
1
10
max_issues_count
float64
1
134k
max_issues_repo_issues_event_min_datetime
stringlengths
24
24
max_issues_repo_issues_event_max_datetime
stringlengths
24
24
max_forks_repo_path
stringlengths
3
976
max_forks_repo_name
stringlengths
5
116
max_forks_repo_head_hexsha
stringlengths
40
78
max_forks_repo_licenses
listlengths
1
10
max_forks_count
float64
1
105k
max_forks_repo_forks_event_min_datetime
stringdate
2015-01-01 00:01:19
2022-03-31 23:59:49
max_forks_repo_forks_event_max_datetime
stringdate
2015-01-03 12:00:57
2022-03-31 23:59:49
content
stringlengths
5
2.72M
avg_line_length
float64
1.38
573k
max_line_length
int64
2
1.01M
alphanum_fraction
float64
0
1
935c041d3565b41f5255a576c5c1f1c17a4951cb
385
c
C
Cprimerplus/A-3-0.c
JaydenYL/Projects
b51c0476f7be80f0b0d6aa84592966ecb4343d76
[ "MIT" ]
5
2021-09-06T04:27:56.000Z
2021-12-14T14:50:27.000Z
Cprimerplus/A-3-0.c
JaydenYL/Projects
b51c0476f7be80f0b0d6aa84592966ecb4343d76
[ "MIT" ]
null
null
null
Cprimerplus/A-3-0.c
JaydenYL/Projects
b51c0476f7be80f0b0d6aa84592966ecb4343d76
[ "MIT" ]
null
null
null
#include <stdio.h> #define SIZE 5 int main(int argc, char *argv[]) { short date[SIZE]; short * pt_short; short index; double bills[SIZE]; double * pt_double; pt_short = date; pt_double = bills; printf("%23s%14s\n", "short", "double"); for(index = 0; index < SIZE ;index ++) { printf("pointers + %d: %16p %14p\n", index, pt_short+index, pt_double + index); } return 0; }
20.263158
81
0.638961
935c79a80c5f000b549628399e0a51dc1180f1ce
6,017
h
C
base/task_scheduler/scheduler_worker_pool_impl.h
Wzzzx/chromium-crosswalk
768dde8efa71169f1c1113ca6ef322f1e8c9e7de
[ "BSD-3-Clause-No-Nuclear-License-2014", "BSD-3-Clause" ]
2
2019-01-28T08:09:58.000Z
2021-11-15T15:32:10.000Z
base/task_scheduler/scheduler_worker_pool_impl.h
Wzzzx/chromium-crosswalk
768dde8efa71169f1c1113ca6ef322f1e8c9e7de
[ "BSD-3-Clause-No-Nuclear-License-2014", "BSD-3-Clause" ]
null
null
null
base/task_scheduler/scheduler_worker_pool_impl.h
Wzzzx/chromium-crosswalk
768dde8efa71169f1c1113ca6ef322f1e8c9e7de
[ "BSD-3-Clause-No-Nuclear-License-2014", "BSD-3-Clause" ]
6
2020-09-23T08:56:12.000Z
2021-11-18T03:40:49.000Z
// Copyright 2016 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 BASE_TASK_SCHEDULER_SCHEDULER_WORKER_POOL_IMPL_H_ #define BASE_TASK_SCHEDULER_SCHEDULER_WORKER_POOL_IMPL_H_ #include <stddef.h> #include <memory> #include <string> #include <vector> #include "base/base_export.h" #include "base/callback.h" #include "base/logging.h" #include "base/macros.h" #include "base/memory/ref_counted.h" #include "base/strings/string_piece.h" #include "base/synchronization/condition_variable.h" #include "base/task_runner.h" #include "base/task_scheduler/priority_queue.h" #include "base/task_scheduler/scheduler_lock.h" #include "base/task_scheduler/scheduler_worker.h" #include "base/task_scheduler/scheduler_worker_pool.h" #include "base/task_scheduler/scheduler_worker_stack.h" #include "base/task_scheduler/sequence.h" #include "base/task_scheduler/task.h" #include "base/task_scheduler/task_traits.h" #include "base/threading/platform_thread.h" namespace base { namespace internal { class DelayedTaskManager; class TaskTracker; // A pool of workers that run Tasks. This class is thread-safe. class BASE_EXPORT SchedulerWorkerPoolImpl : public SchedulerWorkerPool { public: enum class IORestriction { ALLOWED, DISALLOWED, }; // Callback invoked when a Sequence isn't empty after a worker pops a Task // from it. using ReEnqueueSequenceCallback = Callback<void(scoped_refptr<Sequence>)>; // Destroying a SchedulerWorkerPoolImpl returned by Create() is not allowed in // production; it is always leaked. In tests, it can only be destroyed after // JoinForTesting() has returned. ~SchedulerWorkerPoolImpl() override; // Creates a SchedulerWorkerPoolImpl labeled |name| with up to |max_threads| // threads of priority |thread_priority|. |io_restriction| indicates whether // Tasks on the constructed worker pool are allowed to make I/O calls. // |re_enqueue_sequence_callback| will be invoked after a worker of this // worker pool tries to run a Task. |task_tracker| is used to handle shutdown // behavior of Tasks. |delayed_task_manager| handles Tasks posted with a // delay. Returns nullptr on failure to create a worker pool with at least one // thread. static std::unique_ptr<SchedulerWorkerPoolImpl> Create( StringPiece name, ThreadPriority thread_priority, size_t max_threads, IORestriction io_restriction, const ReEnqueueSequenceCallback& re_enqueue_sequence_callback, TaskTracker* task_tracker, DelayedTaskManager* delayed_task_manager); // Waits until all workers are idle. void WaitForAllWorkersIdleForTesting(); // Joins all workers of this worker pool. Tasks that are already running are // allowed to complete their execution. This can only be called once. void JoinForTesting(); // SchedulerWorkerPool: scoped_refptr<TaskRunner> CreateTaskRunnerWithTraits( const TaskTraits& traits, ExecutionMode execution_mode) override; void ReEnqueueSequence(scoped_refptr<Sequence> sequence, const SequenceSortKey& sequence_sort_key) override; bool PostTaskWithSequence(std::unique_ptr<Task> task, scoped_refptr<Sequence> sequence, SchedulerWorker* worker) override; void PostTaskWithSequenceNow(std::unique_ptr<Task> task, scoped_refptr<Sequence> sequence, SchedulerWorker* worker) override; private: class SchedulerWorkerDelegateImpl; SchedulerWorkerPoolImpl(StringPiece name, IORestriction io_restriction, TaskTracker* task_tracker, DelayedTaskManager* delayed_task_manager); bool Initialize( ThreadPriority thread_priority, size_t max_threads, const ReEnqueueSequenceCallback& re_enqueue_sequence_callback); // Wakes up the last worker from this worker pool to go idle, if any. void WakeUpOneWorker(); // Adds |worker| to |idle_workers_stack_|. void AddToIdleWorkersStack(SchedulerWorker* worker); // Removes |worker| from |idle_workers_stack_|. void RemoveFromIdleWorkersStack(SchedulerWorker* worker); // The name of this worker pool, used to label its worker threads. const std::string name_; // All worker owned by this worker pool. Only modified during initialization // of the worker pool. std::vector<std::unique_ptr<SchedulerWorker>> workers_; // Synchronizes access to |next_worker_index_|. SchedulerLock next_worker_index_lock_; // Index of the worker that will be assigned to the next single-threaded // TaskRunner returned by this pool. size_t next_worker_index_ = 0; // PriorityQueue from which all threads of this worker pool get work. PriorityQueue shared_priority_queue_; // Indicates whether Tasks on this worker pool are allowed to make I/O calls. const IORestriction io_restriction_; // Synchronizes access to |idle_workers_stack_| and // |idle_workers_stack_cv_for_testing_|. Has |shared_priority_queue_|'s // lock as its predecessor so that a worker can be pushed to // |idle_workers_stack_| within the scope of a Transaction (more // details in GetWork()). SchedulerLock idle_workers_stack_lock_; // Stack of idle workers. SchedulerWorkerStack idle_workers_stack_; // Signaled when all workers become idle. std::unique_ptr<ConditionVariable> idle_workers_stack_cv_for_testing_; // Signaled once JoinForTesting() has returned. WaitableEvent join_for_testing_returned_; #if DCHECK_IS_ON() // Signaled when all workers have been created. WaitableEvent workers_created_; #endif TaskTracker* const task_tracker_; DelayedTaskManager* const delayed_task_manager_; DISALLOW_COPY_AND_ASSIGN(SchedulerWorkerPoolImpl); }; } // namespace internal } // namespace base #endif // BASE_TASK_SCHEDULER_SCHEDULER_WORKER_POOL_IMPL_H_
36.466667
80
0.751537
935d3f1f336a61eefddc74a8e696057c55527327
345,000
h
C
boards/Pynq-Z2/cv_dfx_4_composable_pr_test_add_rm_pass/cv_dfx_4_pr.gen/sources_1/bd/video_cp/ip/video_cp_tier2_xbar_2_0/sim/video_cp_tier2_xbar_2_0.h
Kgfu/PYNQ_Composable_Pipeline
9e86888b1c2582edfe3f63eb1c401ad40c0501dd
[ "BSD-3-Clause" ]
null
null
null
boards/Pynq-Z2/cv_dfx_4_composable_pr_test_add_rm_pass/cv_dfx_4_pr.gen/sources_1/bd/video_cp/ip/video_cp_tier2_xbar_2_0/sim/video_cp_tier2_xbar_2_0.h
Kgfu/PYNQ_Composable_Pipeline
9e86888b1c2582edfe3f63eb1c401ad40c0501dd
[ "BSD-3-Clause" ]
null
null
null
boards/Pynq-Z2/cv_dfx_4_composable_pr_test_add_rm_pass/cv_dfx_4_pr.gen/sources_1/bd/video_cp/ip/video_cp_tier2_xbar_2_0/sim/video_cp_tier2_xbar_2_0.h
Kgfu/PYNQ_Composable_Pipeline
9e86888b1c2582edfe3f63eb1c401ad40c0501dd
[ "BSD-3-Clause" ]
null
null
null
#ifndef IP_VIDEO_CP_TIER2_XBAR_2_0_H_ #define IP_VIDEO_CP_TIER2_XBAR_2_0_H_ // (c) Copyright 1995-2022 Xilinx, Inc. All rights reserved. // // This file contains confidential and proprietary information // of Xilinx, Inc. and is protected under U.S. and // international copyright and other intellectual property // laws. // // DISCLAIMER // This disclaimer is not a license and does not grant any // rights to the materials distributed herewith. Except as // otherwise provided in a valid license issued to you by // Xilinx, and to the maximum extent permitted by applicable // law: (1) THESE MATERIALS ARE MADE AVAILABLE "AS IS" AND // WITH ALL FAULTS, AND XILINX HEREBY DISCLAIMS ALL WARRANTIES // AND CONDITIONS, EXPRESS, IMPLIED, OR STATUTORY, INCLUDING // BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, NON- // INFRINGEMENT, OR FITNESS FOR ANY PARTICULAR PURPOSE; and // (2) Xilinx shall not be liable (whether in contract or tort, // including negligence, or under any other theory of // liability) for any loss or damage of any kind or nature // related to, arising under or in connection with these // materials, including for any direct, or any indirect, // special, incidental, or consequential loss or damage // (including loss of data, profits, goodwill, or any type of // loss or damage suffered as a result of any action brought // by a third party) even if such damage or loss was // reasonably foreseeable or Xilinx had been advised of the // possibility of the same. // // CRITICAL APPLICATIONS // Xilinx products are not designed or intended to be fail- // safe, or for use in any application requiring fail-safe // performance, such as life-support or safety devices or // systems, Class III medical devices, nuclear facilities, // applications related to the deployment of airbags, or any // other applications that could lead to death, personal // injury, or severe property or environmental damage // (individually and collectively, "Critical // Applications"). Customer assumes the sole risk and // liability of any use of Xilinx products in Critical // Applications, subject only to applicable laws and // regulations governing limitations on product liability. // // THIS COPYRIGHT NOTICE AND DISCLAIMER MUST BE RETAINED AS // PART OF THIS FILE AT ALL TIMES. // // DO NOT MODIFY THIS FILE. #ifndef XTLM #include "xtlm.h" #endif #ifndef SYSTEMC_INCLUDED #include <systemc> #endif #if defined(_MSC_VER) #define DllExport __declspec(dllexport) #elif defined(__GNUC__) #define DllExport __attribute__ ((visibility("default"))) #else #define DllExport #endif #include "video_cp_tier2_xbar_2_0_sc.h" #ifdef XILINX_SIMULATOR class DllExport video_cp_tier2_xbar_2_0 : public video_cp_tier2_xbar_2_0_sc { public: video_cp_tier2_xbar_2_0(const sc_core::sc_module_name& nm); virtual ~video_cp_tier2_xbar_2_0(); // module pin-to-pin RTL interface sc_core::sc_in< bool > aclk; sc_core::sc_in< bool > aresetn; sc_core::sc_in< sc_dt::sc_bv<12> > s_axi_awid; sc_core::sc_in< sc_dt::sc_bv<32> > s_axi_awaddr; sc_core::sc_in< sc_dt::sc_bv<8> > s_axi_awlen; sc_core::sc_in< sc_dt::sc_bv<3> > s_axi_awsize; sc_core::sc_in< sc_dt::sc_bv<2> > s_axi_awburst; sc_core::sc_in< sc_dt::sc_bv<1> > s_axi_awlock; sc_core::sc_in< sc_dt::sc_bv<4> > s_axi_awcache; sc_core::sc_in< sc_dt::sc_bv<3> > s_axi_awprot; sc_core::sc_in< sc_dt::sc_bv<4> > s_axi_awqos; sc_core::sc_in< sc_dt::sc_bv<1> > s_axi_awvalid; sc_core::sc_out< sc_dt::sc_bv<1> > s_axi_awready; sc_core::sc_in< sc_dt::sc_bv<32> > s_axi_wdata; sc_core::sc_in< sc_dt::sc_bv<4> > s_axi_wstrb; sc_core::sc_in< sc_dt::sc_bv<1> > s_axi_wlast; sc_core::sc_in< sc_dt::sc_bv<1> > s_axi_wvalid; sc_core::sc_out< sc_dt::sc_bv<1> > s_axi_wready; sc_core::sc_out< sc_dt::sc_bv<12> > s_axi_bid; sc_core::sc_out< sc_dt::sc_bv<2> > s_axi_bresp; sc_core::sc_out< sc_dt::sc_bv<1> > s_axi_bvalid; sc_core::sc_in< sc_dt::sc_bv<1> > s_axi_bready; sc_core::sc_in< sc_dt::sc_bv<12> > s_axi_arid; sc_core::sc_in< sc_dt::sc_bv<32> > s_axi_araddr; sc_core::sc_in< sc_dt::sc_bv<8> > s_axi_arlen; sc_core::sc_in< sc_dt::sc_bv<3> > s_axi_arsize; sc_core::sc_in< sc_dt::sc_bv<2> > s_axi_arburst; sc_core::sc_in< sc_dt::sc_bv<1> > s_axi_arlock; sc_core::sc_in< sc_dt::sc_bv<4> > s_axi_arcache; sc_core::sc_in< sc_dt::sc_bv<3> > s_axi_arprot; sc_core::sc_in< sc_dt::sc_bv<4> > s_axi_arqos; sc_core::sc_in< sc_dt::sc_bv<1> > s_axi_arvalid; sc_core::sc_out< sc_dt::sc_bv<1> > s_axi_arready; sc_core::sc_out< sc_dt::sc_bv<12> > s_axi_rid; sc_core::sc_out< sc_dt::sc_bv<32> > s_axi_rdata; sc_core::sc_out< sc_dt::sc_bv<2> > s_axi_rresp; sc_core::sc_out< sc_dt::sc_bv<1> > s_axi_rlast; sc_core::sc_out< sc_dt::sc_bv<1> > s_axi_rvalid; sc_core::sc_in< sc_dt::sc_bv<1> > s_axi_rready; sc_core::sc_out< sc_dt::sc_bv<96> > m_axi_awid; sc_core::sc_out< sc_dt::sc_bv<256> > m_axi_awaddr; sc_core::sc_out< sc_dt::sc_bv<64> > m_axi_awlen; sc_core::sc_out< sc_dt::sc_bv<24> > m_axi_awsize; sc_core::sc_out< sc_dt::sc_bv<16> > m_axi_awburst; sc_core::sc_out< sc_dt::sc_bv<8> > m_axi_awlock; sc_core::sc_out< sc_dt::sc_bv<32> > m_axi_awcache; sc_core::sc_out< sc_dt::sc_bv<24> > m_axi_awprot; sc_core::sc_out< sc_dt::sc_bv<32> > m_axi_awregion; sc_core::sc_out< sc_dt::sc_bv<32> > m_axi_awqos; sc_core::sc_out< sc_dt::sc_bv<8> > m_axi_awvalid; sc_core::sc_in< sc_dt::sc_bv<8> > m_axi_awready; sc_core::sc_out< sc_dt::sc_bv<256> > m_axi_wdata; sc_core::sc_out< sc_dt::sc_bv<32> > m_axi_wstrb; sc_core::sc_out< sc_dt::sc_bv<8> > m_axi_wlast; sc_core::sc_out< sc_dt::sc_bv<8> > m_axi_wvalid; sc_core::sc_in< sc_dt::sc_bv<8> > m_axi_wready; sc_core::sc_in< sc_dt::sc_bv<96> > m_axi_bid; sc_core::sc_in< sc_dt::sc_bv<16> > m_axi_bresp; sc_core::sc_in< sc_dt::sc_bv<8> > m_axi_bvalid; sc_core::sc_out< sc_dt::sc_bv<8> > m_axi_bready; sc_core::sc_out< sc_dt::sc_bv<96> > m_axi_arid; sc_core::sc_out< sc_dt::sc_bv<256> > m_axi_araddr; sc_core::sc_out< sc_dt::sc_bv<64> > m_axi_arlen; sc_core::sc_out< sc_dt::sc_bv<24> > m_axi_arsize; sc_core::sc_out< sc_dt::sc_bv<16> > m_axi_arburst; sc_core::sc_out< sc_dt::sc_bv<8> > m_axi_arlock; sc_core::sc_out< sc_dt::sc_bv<32> > m_axi_arcache; sc_core::sc_out< sc_dt::sc_bv<24> > m_axi_arprot; sc_core::sc_out< sc_dt::sc_bv<32> > m_axi_arregion; sc_core::sc_out< sc_dt::sc_bv<32> > m_axi_arqos; sc_core::sc_out< sc_dt::sc_bv<8> > m_axi_arvalid; sc_core::sc_in< sc_dt::sc_bv<8> > m_axi_arready; sc_core::sc_in< sc_dt::sc_bv<96> > m_axi_rid; sc_core::sc_in< sc_dt::sc_bv<256> > m_axi_rdata; sc_core::sc_in< sc_dt::sc_bv<16> > m_axi_rresp; sc_core::sc_in< sc_dt::sc_bv<8> > m_axi_rlast; sc_core::sc_in< sc_dt::sc_bv<8> > m_axi_rvalid; sc_core::sc_out< sc_dt::sc_bv<8> > m_axi_rready; // Dummy Signals for IP Ports protected: virtual void before_end_of_elaboration(); private: xtlm::xaximm_pin2xtlm_t<32,32,12,1,1,1,1,1>* mp_S00_AXI_transactor; xsc::common::vectorN2scalar_converter<1>* mp_s_axi_awlock_converter; sc_signal< bool > m_s_axi_awlock_converter_signal; xsc::common::vectorN2scalar_converter<1>* mp_s_axi_awvalid_converter; sc_signal< bool > m_s_axi_awvalid_converter_signal; xsc::common::scalar2vectorN_converter<1>* mp_s_axi_awready_converter; sc_signal< bool > m_s_axi_awready_converter_signal; xsc::common::vectorN2scalar_converter<1>* mp_s_axi_wlast_converter; sc_signal< bool > m_s_axi_wlast_converter_signal; xsc::common::vectorN2scalar_converter<1>* mp_s_axi_wvalid_converter; sc_signal< bool > m_s_axi_wvalid_converter_signal; xsc::common::scalar2vectorN_converter<1>* mp_s_axi_wready_converter; sc_signal< bool > m_s_axi_wready_converter_signal; xsc::common::scalar2vectorN_converter<1>* mp_s_axi_bvalid_converter; sc_signal< bool > m_s_axi_bvalid_converter_signal; xsc::common::vectorN2scalar_converter<1>* mp_s_axi_bready_converter; sc_signal< bool > m_s_axi_bready_converter_signal; xsc::common::vectorN2scalar_converter<1>* mp_s_axi_arlock_converter; sc_signal< bool > m_s_axi_arlock_converter_signal; xsc::common::vectorN2scalar_converter<1>* mp_s_axi_arvalid_converter; sc_signal< bool > m_s_axi_arvalid_converter_signal; xsc::common::scalar2vectorN_converter<1>* mp_s_axi_arready_converter; sc_signal< bool > m_s_axi_arready_converter_signal; xsc::common::scalar2vectorN_converter<1>* mp_s_axi_rlast_converter; sc_signal< bool > m_s_axi_rlast_converter_signal; xsc::common::scalar2vectorN_converter<1>* mp_s_axi_rvalid_converter; sc_signal< bool > m_s_axi_rvalid_converter_signal; xsc::common::vectorN2scalar_converter<1>* mp_s_axi_rready_converter; sc_signal< bool > m_s_axi_rready_converter_signal; xtlm::xaximm_xtlm2pin_t<32,32,12,1,1,1,1,1>* mp_M00_AXI_transactor; xsc::common::vector2vector_converter<12,96>* mp_m_axi_awid_converter_0; sc_signal< sc_bv<12> > m_m_axi_awid_converter_0_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_awaddr_converter_0; sc_signal< sc_bv<32> > m_m_axi_awaddr_converter_0_signal; xsc::common::vector2vector_converter<8,64>* mp_m_axi_awlen_converter_0; sc_signal< sc_bv<8> > m_m_axi_awlen_converter_0_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_awsize_converter_0; sc_signal< sc_bv<3> > m_m_axi_awsize_converter_0_signal; xsc::common::vector2vector_converter<2,16>* mp_m_axi_awburst_converter_0; sc_signal< sc_bv<2> > m_m_axi_awburst_converter_0_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_awlock_converter_0; sc_signal< bool > m_m_axi_awlock_converter_0_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awcache_converter_0; sc_signal< sc_bv<4> > m_m_axi_awcache_converter_0_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_awprot_converter_0; sc_signal< sc_bv<3> > m_m_axi_awprot_converter_0_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awregion_converter_0; sc_signal< sc_bv<4> > m_m_axi_awregion_converter_0_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awqos_converter_0; sc_signal< sc_bv<4> > m_m_axi_awqos_converter_0_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_awvalid_converter_0; sc_signal< bool > m_m_axi_awvalid_converter_0_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_awready_converter_0; sc_signal< bool > m_m_axi_awready_converter_0_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_wdata_converter_0; sc_signal< sc_bv<32> > m_m_axi_wdata_converter_0_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_wstrb_converter_0; sc_signal< sc_bv<4> > m_m_axi_wstrb_converter_0_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_wlast_converter_0; sc_signal< bool > m_m_axi_wlast_converter_0_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_wvalid_converter_0; sc_signal< bool > m_m_axi_wvalid_converter_0_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_wready_converter_0; sc_signal< bool > m_m_axi_wready_converter_0_signal; xsc::common::vector2vector_converter<96,12>* mp_m_axi_bid_converter_0; sc_signal< sc_bv<12> > m_m_axi_bid_converter_0_signal; xsc::common::vector2vector_converter<16,2>* mp_m_axi_bresp_converter_0; sc_signal< sc_bv<2> > m_m_axi_bresp_converter_0_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_bvalid_converter_0; sc_signal< bool > m_m_axi_bvalid_converter_0_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_bready_converter_0; sc_signal< bool > m_m_axi_bready_converter_0_signal; xsc::common::vector2vector_converter<12,96>* mp_m_axi_arid_converter_0; sc_signal< sc_bv<12> > m_m_axi_arid_converter_0_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_araddr_converter_0; sc_signal< sc_bv<32> > m_m_axi_araddr_converter_0_signal; xsc::common::vector2vector_converter<8,64>* mp_m_axi_arlen_converter_0; sc_signal< sc_bv<8> > m_m_axi_arlen_converter_0_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_arsize_converter_0; sc_signal< sc_bv<3> > m_m_axi_arsize_converter_0_signal; xsc::common::vector2vector_converter<2,16>* mp_m_axi_arburst_converter_0; sc_signal< sc_bv<2> > m_m_axi_arburst_converter_0_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_arlock_converter_0; sc_signal< bool > m_m_axi_arlock_converter_0_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arcache_converter_0; sc_signal< sc_bv<4> > m_m_axi_arcache_converter_0_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_arprot_converter_0; sc_signal< sc_bv<3> > m_m_axi_arprot_converter_0_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arregion_converter_0; sc_signal< sc_bv<4> > m_m_axi_arregion_converter_0_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arqos_converter_0; sc_signal< sc_bv<4> > m_m_axi_arqos_converter_0_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_arvalid_converter_0; sc_signal< bool > m_m_axi_arvalid_converter_0_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_arready_converter_0; sc_signal< bool > m_m_axi_arready_converter_0_signal; xsc::common::vector2vector_converter<96,12>* mp_m_axi_rid_converter_0; sc_signal< sc_bv<12> > m_m_axi_rid_converter_0_signal; xsc::common::vector2vector_converter<256,32>* mp_m_axi_rdata_converter_0; sc_signal< sc_bv<32> > m_m_axi_rdata_converter_0_signal; xsc::common::vector2vector_converter<16,2>* mp_m_axi_rresp_converter_0; sc_signal< sc_bv<2> > m_m_axi_rresp_converter_0_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_rlast_converter_0; sc_signal< bool > m_m_axi_rlast_converter_0_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_rvalid_converter_0; sc_signal< bool > m_m_axi_rvalid_converter_0_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_rready_converter_0; sc_signal< bool > m_m_axi_rready_converter_0_signal; xtlm::xaximm_xtlm2pin_t<32,32,12,1,1,1,1,1>* mp_M01_AXI_transactor; xsc::common::vector2vector_converter<12,96>* mp_m_axi_awid_converter_1; sc_signal< sc_bv<12> > m_m_axi_awid_converter_1_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_awaddr_converter_1; sc_signal< sc_bv<32> > m_m_axi_awaddr_converter_1_signal; xsc::common::vector2vector_converter<8,64>* mp_m_axi_awlen_converter_1; sc_signal< sc_bv<8> > m_m_axi_awlen_converter_1_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_awsize_converter_1; sc_signal< sc_bv<3> > m_m_axi_awsize_converter_1_signal; xsc::common::vector2vector_converter<2,16>* mp_m_axi_awburst_converter_1; sc_signal< sc_bv<2> > m_m_axi_awburst_converter_1_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_awlock_converter_1; sc_signal< bool > m_m_axi_awlock_converter_1_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awcache_converter_1; sc_signal< sc_bv<4> > m_m_axi_awcache_converter_1_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_awprot_converter_1; sc_signal< sc_bv<3> > m_m_axi_awprot_converter_1_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awregion_converter_1; sc_signal< sc_bv<4> > m_m_axi_awregion_converter_1_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awqos_converter_1; sc_signal< sc_bv<4> > m_m_axi_awqos_converter_1_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_awvalid_converter_1; sc_signal< bool > m_m_axi_awvalid_converter_1_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_awready_converter_1; sc_signal< bool > m_m_axi_awready_converter_1_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_wdata_converter_1; sc_signal< sc_bv<32> > m_m_axi_wdata_converter_1_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_wstrb_converter_1; sc_signal< sc_bv<4> > m_m_axi_wstrb_converter_1_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_wlast_converter_1; sc_signal< bool > m_m_axi_wlast_converter_1_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_wvalid_converter_1; sc_signal< bool > m_m_axi_wvalid_converter_1_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_wready_converter_1; sc_signal< bool > m_m_axi_wready_converter_1_signal; xsc::common::vector2vector_converter<96,12>* mp_m_axi_bid_converter_1; sc_signal< sc_bv<12> > m_m_axi_bid_converter_1_signal; xsc::common::vector2vector_converter<16,2>* mp_m_axi_bresp_converter_1; sc_signal< sc_bv<2> > m_m_axi_bresp_converter_1_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_bvalid_converter_1; sc_signal< bool > m_m_axi_bvalid_converter_1_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_bready_converter_1; sc_signal< bool > m_m_axi_bready_converter_1_signal; xsc::common::vector2vector_converter<12,96>* mp_m_axi_arid_converter_1; sc_signal< sc_bv<12> > m_m_axi_arid_converter_1_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_araddr_converter_1; sc_signal< sc_bv<32> > m_m_axi_araddr_converter_1_signal; xsc::common::vector2vector_converter<8,64>* mp_m_axi_arlen_converter_1; sc_signal< sc_bv<8> > m_m_axi_arlen_converter_1_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_arsize_converter_1; sc_signal< sc_bv<3> > m_m_axi_arsize_converter_1_signal; xsc::common::vector2vector_converter<2,16>* mp_m_axi_arburst_converter_1; sc_signal< sc_bv<2> > m_m_axi_arburst_converter_1_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_arlock_converter_1; sc_signal< bool > m_m_axi_arlock_converter_1_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arcache_converter_1; sc_signal< sc_bv<4> > m_m_axi_arcache_converter_1_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_arprot_converter_1; sc_signal< sc_bv<3> > m_m_axi_arprot_converter_1_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arregion_converter_1; sc_signal< sc_bv<4> > m_m_axi_arregion_converter_1_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arqos_converter_1; sc_signal< sc_bv<4> > m_m_axi_arqos_converter_1_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_arvalid_converter_1; sc_signal< bool > m_m_axi_arvalid_converter_1_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_arready_converter_1; sc_signal< bool > m_m_axi_arready_converter_1_signal; xsc::common::vector2vector_converter<96,12>* mp_m_axi_rid_converter_1; sc_signal< sc_bv<12> > m_m_axi_rid_converter_1_signal; xsc::common::vector2vector_converter<256,32>* mp_m_axi_rdata_converter_1; sc_signal< sc_bv<32> > m_m_axi_rdata_converter_1_signal; xsc::common::vector2vector_converter<16,2>* mp_m_axi_rresp_converter_1; sc_signal< sc_bv<2> > m_m_axi_rresp_converter_1_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_rlast_converter_1; sc_signal< bool > m_m_axi_rlast_converter_1_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_rvalid_converter_1; sc_signal< bool > m_m_axi_rvalid_converter_1_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_rready_converter_1; sc_signal< bool > m_m_axi_rready_converter_1_signal; xtlm::xaximm_xtlm2pin_t<32,32,12,1,1,1,1,1>* mp_M02_AXI_transactor; xsc::common::vector2vector_converter<12,96>* mp_m_axi_awid_converter_2; sc_signal< sc_bv<12> > m_m_axi_awid_converter_2_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_awaddr_converter_2; sc_signal< sc_bv<32> > m_m_axi_awaddr_converter_2_signal; xsc::common::vector2vector_converter<8,64>* mp_m_axi_awlen_converter_2; sc_signal< sc_bv<8> > m_m_axi_awlen_converter_2_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_awsize_converter_2; sc_signal< sc_bv<3> > m_m_axi_awsize_converter_2_signal; xsc::common::vector2vector_converter<2,16>* mp_m_axi_awburst_converter_2; sc_signal< sc_bv<2> > m_m_axi_awburst_converter_2_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_awlock_converter_2; sc_signal< bool > m_m_axi_awlock_converter_2_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awcache_converter_2; sc_signal< sc_bv<4> > m_m_axi_awcache_converter_2_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_awprot_converter_2; sc_signal< sc_bv<3> > m_m_axi_awprot_converter_2_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awregion_converter_2; sc_signal< sc_bv<4> > m_m_axi_awregion_converter_2_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awqos_converter_2; sc_signal< sc_bv<4> > m_m_axi_awqos_converter_2_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_awvalid_converter_2; sc_signal< bool > m_m_axi_awvalid_converter_2_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_awready_converter_2; sc_signal< bool > m_m_axi_awready_converter_2_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_wdata_converter_2; sc_signal< sc_bv<32> > m_m_axi_wdata_converter_2_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_wstrb_converter_2; sc_signal< sc_bv<4> > m_m_axi_wstrb_converter_2_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_wlast_converter_2; sc_signal< bool > m_m_axi_wlast_converter_2_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_wvalid_converter_2; sc_signal< bool > m_m_axi_wvalid_converter_2_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_wready_converter_2; sc_signal< bool > m_m_axi_wready_converter_2_signal; xsc::common::vector2vector_converter<96,12>* mp_m_axi_bid_converter_2; sc_signal< sc_bv<12> > m_m_axi_bid_converter_2_signal; xsc::common::vector2vector_converter<16,2>* mp_m_axi_bresp_converter_2; sc_signal< sc_bv<2> > m_m_axi_bresp_converter_2_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_bvalid_converter_2; sc_signal< bool > m_m_axi_bvalid_converter_2_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_bready_converter_2; sc_signal< bool > m_m_axi_bready_converter_2_signal; xsc::common::vector2vector_converter<12,96>* mp_m_axi_arid_converter_2; sc_signal< sc_bv<12> > m_m_axi_arid_converter_2_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_araddr_converter_2; sc_signal< sc_bv<32> > m_m_axi_araddr_converter_2_signal; xsc::common::vector2vector_converter<8,64>* mp_m_axi_arlen_converter_2; sc_signal< sc_bv<8> > m_m_axi_arlen_converter_2_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_arsize_converter_2; sc_signal< sc_bv<3> > m_m_axi_arsize_converter_2_signal; xsc::common::vector2vector_converter<2,16>* mp_m_axi_arburst_converter_2; sc_signal< sc_bv<2> > m_m_axi_arburst_converter_2_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_arlock_converter_2; sc_signal< bool > m_m_axi_arlock_converter_2_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arcache_converter_2; sc_signal< sc_bv<4> > m_m_axi_arcache_converter_2_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_arprot_converter_2; sc_signal< sc_bv<3> > m_m_axi_arprot_converter_2_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arregion_converter_2; sc_signal< sc_bv<4> > m_m_axi_arregion_converter_2_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arqos_converter_2; sc_signal< sc_bv<4> > m_m_axi_arqos_converter_2_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_arvalid_converter_2; sc_signal< bool > m_m_axi_arvalid_converter_2_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_arready_converter_2; sc_signal< bool > m_m_axi_arready_converter_2_signal; xsc::common::vector2vector_converter<96,12>* mp_m_axi_rid_converter_2; sc_signal< sc_bv<12> > m_m_axi_rid_converter_2_signal; xsc::common::vector2vector_converter<256,32>* mp_m_axi_rdata_converter_2; sc_signal< sc_bv<32> > m_m_axi_rdata_converter_2_signal; xsc::common::vector2vector_converter<16,2>* mp_m_axi_rresp_converter_2; sc_signal< sc_bv<2> > m_m_axi_rresp_converter_2_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_rlast_converter_2; sc_signal< bool > m_m_axi_rlast_converter_2_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_rvalid_converter_2; sc_signal< bool > m_m_axi_rvalid_converter_2_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_rready_converter_2; sc_signal< bool > m_m_axi_rready_converter_2_signal; xtlm::xaximm_xtlm2pin_t<32,32,12,1,1,1,1,1>* mp_M03_AXI_transactor; xsc::common::vector2vector_converter<12,96>* mp_m_axi_awid_converter_3; sc_signal< sc_bv<12> > m_m_axi_awid_converter_3_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_awaddr_converter_3; sc_signal< sc_bv<32> > m_m_axi_awaddr_converter_3_signal; xsc::common::vector2vector_converter<8,64>* mp_m_axi_awlen_converter_3; sc_signal< sc_bv<8> > m_m_axi_awlen_converter_3_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_awsize_converter_3; sc_signal< sc_bv<3> > m_m_axi_awsize_converter_3_signal; xsc::common::vector2vector_converter<2,16>* mp_m_axi_awburst_converter_3; sc_signal< sc_bv<2> > m_m_axi_awburst_converter_3_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_awlock_converter_3; sc_signal< bool > m_m_axi_awlock_converter_3_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awcache_converter_3; sc_signal< sc_bv<4> > m_m_axi_awcache_converter_3_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_awprot_converter_3; sc_signal< sc_bv<3> > m_m_axi_awprot_converter_3_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awregion_converter_3; sc_signal< sc_bv<4> > m_m_axi_awregion_converter_3_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awqos_converter_3; sc_signal< sc_bv<4> > m_m_axi_awqos_converter_3_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_awvalid_converter_3; sc_signal< bool > m_m_axi_awvalid_converter_3_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_awready_converter_3; sc_signal< bool > m_m_axi_awready_converter_3_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_wdata_converter_3; sc_signal< sc_bv<32> > m_m_axi_wdata_converter_3_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_wstrb_converter_3; sc_signal< sc_bv<4> > m_m_axi_wstrb_converter_3_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_wlast_converter_3; sc_signal< bool > m_m_axi_wlast_converter_3_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_wvalid_converter_3; sc_signal< bool > m_m_axi_wvalid_converter_3_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_wready_converter_3; sc_signal< bool > m_m_axi_wready_converter_3_signal; xsc::common::vector2vector_converter<96,12>* mp_m_axi_bid_converter_3; sc_signal< sc_bv<12> > m_m_axi_bid_converter_3_signal; xsc::common::vector2vector_converter<16,2>* mp_m_axi_bresp_converter_3; sc_signal< sc_bv<2> > m_m_axi_bresp_converter_3_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_bvalid_converter_3; sc_signal< bool > m_m_axi_bvalid_converter_3_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_bready_converter_3; sc_signal< bool > m_m_axi_bready_converter_3_signal; xsc::common::vector2vector_converter<12,96>* mp_m_axi_arid_converter_3; sc_signal< sc_bv<12> > m_m_axi_arid_converter_3_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_araddr_converter_3; sc_signal< sc_bv<32> > m_m_axi_araddr_converter_3_signal; xsc::common::vector2vector_converter<8,64>* mp_m_axi_arlen_converter_3; sc_signal< sc_bv<8> > m_m_axi_arlen_converter_3_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_arsize_converter_3; sc_signal< sc_bv<3> > m_m_axi_arsize_converter_3_signal; xsc::common::vector2vector_converter<2,16>* mp_m_axi_arburst_converter_3; sc_signal< sc_bv<2> > m_m_axi_arburst_converter_3_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_arlock_converter_3; sc_signal< bool > m_m_axi_arlock_converter_3_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arcache_converter_3; sc_signal< sc_bv<4> > m_m_axi_arcache_converter_3_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_arprot_converter_3; sc_signal< sc_bv<3> > m_m_axi_arprot_converter_3_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arregion_converter_3; sc_signal< sc_bv<4> > m_m_axi_arregion_converter_3_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arqos_converter_3; sc_signal< sc_bv<4> > m_m_axi_arqos_converter_3_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_arvalid_converter_3; sc_signal< bool > m_m_axi_arvalid_converter_3_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_arready_converter_3; sc_signal< bool > m_m_axi_arready_converter_3_signal; xsc::common::vector2vector_converter<96,12>* mp_m_axi_rid_converter_3; sc_signal< sc_bv<12> > m_m_axi_rid_converter_3_signal; xsc::common::vector2vector_converter<256,32>* mp_m_axi_rdata_converter_3; sc_signal< sc_bv<32> > m_m_axi_rdata_converter_3_signal; xsc::common::vector2vector_converter<16,2>* mp_m_axi_rresp_converter_3; sc_signal< sc_bv<2> > m_m_axi_rresp_converter_3_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_rlast_converter_3; sc_signal< bool > m_m_axi_rlast_converter_3_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_rvalid_converter_3; sc_signal< bool > m_m_axi_rvalid_converter_3_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_rready_converter_3; sc_signal< bool > m_m_axi_rready_converter_3_signal; xtlm::xaximm_xtlm2pin_t<32,32,12,1,1,1,1,1>* mp_M04_AXI_transactor; xsc::common::vector2vector_converter<12,96>* mp_m_axi_awid_converter_4; sc_signal< sc_bv<12> > m_m_axi_awid_converter_4_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_awaddr_converter_4; sc_signal< sc_bv<32> > m_m_axi_awaddr_converter_4_signal; xsc::common::vector2vector_converter<8,64>* mp_m_axi_awlen_converter_4; sc_signal< sc_bv<8> > m_m_axi_awlen_converter_4_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_awsize_converter_4; sc_signal< sc_bv<3> > m_m_axi_awsize_converter_4_signal; xsc::common::vector2vector_converter<2,16>* mp_m_axi_awburst_converter_4; sc_signal< sc_bv<2> > m_m_axi_awburst_converter_4_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_awlock_converter_4; sc_signal< bool > m_m_axi_awlock_converter_4_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awcache_converter_4; sc_signal< sc_bv<4> > m_m_axi_awcache_converter_4_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_awprot_converter_4; sc_signal< sc_bv<3> > m_m_axi_awprot_converter_4_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awregion_converter_4; sc_signal< sc_bv<4> > m_m_axi_awregion_converter_4_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awqos_converter_4; sc_signal< sc_bv<4> > m_m_axi_awqos_converter_4_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_awvalid_converter_4; sc_signal< bool > m_m_axi_awvalid_converter_4_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_awready_converter_4; sc_signal< bool > m_m_axi_awready_converter_4_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_wdata_converter_4; sc_signal< sc_bv<32> > m_m_axi_wdata_converter_4_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_wstrb_converter_4; sc_signal< sc_bv<4> > m_m_axi_wstrb_converter_4_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_wlast_converter_4; sc_signal< bool > m_m_axi_wlast_converter_4_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_wvalid_converter_4; sc_signal< bool > m_m_axi_wvalid_converter_4_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_wready_converter_4; sc_signal< bool > m_m_axi_wready_converter_4_signal; xsc::common::vector2vector_converter<96,12>* mp_m_axi_bid_converter_4; sc_signal< sc_bv<12> > m_m_axi_bid_converter_4_signal; xsc::common::vector2vector_converter<16,2>* mp_m_axi_bresp_converter_4; sc_signal< sc_bv<2> > m_m_axi_bresp_converter_4_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_bvalid_converter_4; sc_signal< bool > m_m_axi_bvalid_converter_4_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_bready_converter_4; sc_signal< bool > m_m_axi_bready_converter_4_signal; xsc::common::vector2vector_converter<12,96>* mp_m_axi_arid_converter_4; sc_signal< sc_bv<12> > m_m_axi_arid_converter_4_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_araddr_converter_4; sc_signal< sc_bv<32> > m_m_axi_araddr_converter_4_signal; xsc::common::vector2vector_converter<8,64>* mp_m_axi_arlen_converter_4; sc_signal< sc_bv<8> > m_m_axi_arlen_converter_4_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_arsize_converter_4; sc_signal< sc_bv<3> > m_m_axi_arsize_converter_4_signal; xsc::common::vector2vector_converter<2,16>* mp_m_axi_arburst_converter_4; sc_signal< sc_bv<2> > m_m_axi_arburst_converter_4_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_arlock_converter_4; sc_signal< bool > m_m_axi_arlock_converter_4_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arcache_converter_4; sc_signal< sc_bv<4> > m_m_axi_arcache_converter_4_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_arprot_converter_4; sc_signal< sc_bv<3> > m_m_axi_arprot_converter_4_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arregion_converter_4; sc_signal< sc_bv<4> > m_m_axi_arregion_converter_4_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arqos_converter_4; sc_signal< sc_bv<4> > m_m_axi_arqos_converter_4_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_arvalid_converter_4; sc_signal< bool > m_m_axi_arvalid_converter_4_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_arready_converter_4; sc_signal< bool > m_m_axi_arready_converter_4_signal; xsc::common::vector2vector_converter<96,12>* mp_m_axi_rid_converter_4; sc_signal< sc_bv<12> > m_m_axi_rid_converter_4_signal; xsc::common::vector2vector_converter<256,32>* mp_m_axi_rdata_converter_4; sc_signal< sc_bv<32> > m_m_axi_rdata_converter_4_signal; xsc::common::vector2vector_converter<16,2>* mp_m_axi_rresp_converter_4; sc_signal< sc_bv<2> > m_m_axi_rresp_converter_4_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_rlast_converter_4; sc_signal< bool > m_m_axi_rlast_converter_4_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_rvalid_converter_4; sc_signal< bool > m_m_axi_rvalid_converter_4_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_rready_converter_4; sc_signal< bool > m_m_axi_rready_converter_4_signal; xtlm::xaximm_xtlm2pin_t<32,32,12,1,1,1,1,1>* mp_M05_AXI_transactor; xsc::common::vector2vector_converter<12,96>* mp_m_axi_awid_converter_5; sc_signal< sc_bv<12> > m_m_axi_awid_converter_5_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_awaddr_converter_5; sc_signal< sc_bv<32> > m_m_axi_awaddr_converter_5_signal; xsc::common::vector2vector_converter<8,64>* mp_m_axi_awlen_converter_5; sc_signal< sc_bv<8> > m_m_axi_awlen_converter_5_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_awsize_converter_5; sc_signal< sc_bv<3> > m_m_axi_awsize_converter_5_signal; xsc::common::vector2vector_converter<2,16>* mp_m_axi_awburst_converter_5; sc_signal< sc_bv<2> > m_m_axi_awburst_converter_5_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_awlock_converter_5; sc_signal< bool > m_m_axi_awlock_converter_5_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awcache_converter_5; sc_signal< sc_bv<4> > m_m_axi_awcache_converter_5_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_awprot_converter_5; sc_signal< sc_bv<3> > m_m_axi_awprot_converter_5_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awregion_converter_5; sc_signal< sc_bv<4> > m_m_axi_awregion_converter_5_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awqos_converter_5; sc_signal< sc_bv<4> > m_m_axi_awqos_converter_5_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_awvalid_converter_5; sc_signal< bool > m_m_axi_awvalid_converter_5_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_awready_converter_5; sc_signal< bool > m_m_axi_awready_converter_5_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_wdata_converter_5; sc_signal< sc_bv<32> > m_m_axi_wdata_converter_5_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_wstrb_converter_5; sc_signal< sc_bv<4> > m_m_axi_wstrb_converter_5_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_wlast_converter_5; sc_signal< bool > m_m_axi_wlast_converter_5_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_wvalid_converter_5; sc_signal< bool > m_m_axi_wvalid_converter_5_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_wready_converter_5; sc_signal< bool > m_m_axi_wready_converter_5_signal; xsc::common::vector2vector_converter<96,12>* mp_m_axi_bid_converter_5; sc_signal< sc_bv<12> > m_m_axi_bid_converter_5_signal; xsc::common::vector2vector_converter<16,2>* mp_m_axi_bresp_converter_5; sc_signal< sc_bv<2> > m_m_axi_bresp_converter_5_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_bvalid_converter_5; sc_signal< bool > m_m_axi_bvalid_converter_5_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_bready_converter_5; sc_signal< bool > m_m_axi_bready_converter_5_signal; xsc::common::vector2vector_converter<12,96>* mp_m_axi_arid_converter_5; sc_signal< sc_bv<12> > m_m_axi_arid_converter_5_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_araddr_converter_5; sc_signal< sc_bv<32> > m_m_axi_araddr_converter_5_signal; xsc::common::vector2vector_converter<8,64>* mp_m_axi_arlen_converter_5; sc_signal< sc_bv<8> > m_m_axi_arlen_converter_5_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_arsize_converter_5; sc_signal< sc_bv<3> > m_m_axi_arsize_converter_5_signal; xsc::common::vector2vector_converter<2,16>* mp_m_axi_arburst_converter_5; sc_signal< sc_bv<2> > m_m_axi_arburst_converter_5_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_arlock_converter_5; sc_signal< bool > m_m_axi_arlock_converter_5_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arcache_converter_5; sc_signal< sc_bv<4> > m_m_axi_arcache_converter_5_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_arprot_converter_5; sc_signal< sc_bv<3> > m_m_axi_arprot_converter_5_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arregion_converter_5; sc_signal< sc_bv<4> > m_m_axi_arregion_converter_5_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arqos_converter_5; sc_signal< sc_bv<4> > m_m_axi_arqos_converter_5_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_arvalid_converter_5; sc_signal< bool > m_m_axi_arvalid_converter_5_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_arready_converter_5; sc_signal< bool > m_m_axi_arready_converter_5_signal; xsc::common::vector2vector_converter<96,12>* mp_m_axi_rid_converter_5; sc_signal< sc_bv<12> > m_m_axi_rid_converter_5_signal; xsc::common::vector2vector_converter<256,32>* mp_m_axi_rdata_converter_5; sc_signal< sc_bv<32> > m_m_axi_rdata_converter_5_signal; xsc::common::vector2vector_converter<16,2>* mp_m_axi_rresp_converter_5; sc_signal< sc_bv<2> > m_m_axi_rresp_converter_5_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_rlast_converter_5; sc_signal< bool > m_m_axi_rlast_converter_5_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_rvalid_converter_5; sc_signal< bool > m_m_axi_rvalid_converter_5_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_rready_converter_5; sc_signal< bool > m_m_axi_rready_converter_5_signal; xtlm::xaximm_xtlm2pin_t<32,32,12,1,1,1,1,1>* mp_M06_AXI_transactor; xsc::common::vector2vector_converter<12,96>* mp_m_axi_awid_converter_6; sc_signal< sc_bv<12> > m_m_axi_awid_converter_6_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_awaddr_converter_6; sc_signal< sc_bv<32> > m_m_axi_awaddr_converter_6_signal; xsc::common::vector2vector_converter<8,64>* mp_m_axi_awlen_converter_6; sc_signal< sc_bv<8> > m_m_axi_awlen_converter_6_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_awsize_converter_6; sc_signal< sc_bv<3> > m_m_axi_awsize_converter_6_signal; xsc::common::vector2vector_converter<2,16>* mp_m_axi_awburst_converter_6; sc_signal< sc_bv<2> > m_m_axi_awburst_converter_6_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_awlock_converter_6; sc_signal< bool > m_m_axi_awlock_converter_6_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awcache_converter_6; sc_signal< sc_bv<4> > m_m_axi_awcache_converter_6_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_awprot_converter_6; sc_signal< sc_bv<3> > m_m_axi_awprot_converter_6_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awregion_converter_6; sc_signal< sc_bv<4> > m_m_axi_awregion_converter_6_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awqos_converter_6; sc_signal< sc_bv<4> > m_m_axi_awqos_converter_6_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_awvalid_converter_6; sc_signal< bool > m_m_axi_awvalid_converter_6_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_awready_converter_6; sc_signal< bool > m_m_axi_awready_converter_6_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_wdata_converter_6; sc_signal< sc_bv<32> > m_m_axi_wdata_converter_6_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_wstrb_converter_6; sc_signal< sc_bv<4> > m_m_axi_wstrb_converter_6_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_wlast_converter_6; sc_signal< bool > m_m_axi_wlast_converter_6_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_wvalid_converter_6; sc_signal< bool > m_m_axi_wvalid_converter_6_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_wready_converter_6; sc_signal< bool > m_m_axi_wready_converter_6_signal; xsc::common::vector2vector_converter<96,12>* mp_m_axi_bid_converter_6; sc_signal< sc_bv<12> > m_m_axi_bid_converter_6_signal; xsc::common::vector2vector_converter<16,2>* mp_m_axi_bresp_converter_6; sc_signal< sc_bv<2> > m_m_axi_bresp_converter_6_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_bvalid_converter_6; sc_signal< bool > m_m_axi_bvalid_converter_6_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_bready_converter_6; sc_signal< bool > m_m_axi_bready_converter_6_signal; xsc::common::vector2vector_converter<12,96>* mp_m_axi_arid_converter_6; sc_signal< sc_bv<12> > m_m_axi_arid_converter_6_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_araddr_converter_6; sc_signal< sc_bv<32> > m_m_axi_araddr_converter_6_signal; xsc::common::vector2vector_converter<8,64>* mp_m_axi_arlen_converter_6; sc_signal< sc_bv<8> > m_m_axi_arlen_converter_6_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_arsize_converter_6; sc_signal< sc_bv<3> > m_m_axi_arsize_converter_6_signal; xsc::common::vector2vector_converter<2,16>* mp_m_axi_arburst_converter_6; sc_signal< sc_bv<2> > m_m_axi_arburst_converter_6_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_arlock_converter_6; sc_signal< bool > m_m_axi_arlock_converter_6_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arcache_converter_6; sc_signal< sc_bv<4> > m_m_axi_arcache_converter_6_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_arprot_converter_6; sc_signal< sc_bv<3> > m_m_axi_arprot_converter_6_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arregion_converter_6; sc_signal< sc_bv<4> > m_m_axi_arregion_converter_6_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arqos_converter_6; sc_signal< sc_bv<4> > m_m_axi_arqos_converter_6_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_arvalid_converter_6; sc_signal< bool > m_m_axi_arvalid_converter_6_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_arready_converter_6; sc_signal< bool > m_m_axi_arready_converter_6_signal; xsc::common::vector2vector_converter<96,12>* mp_m_axi_rid_converter_6; sc_signal< sc_bv<12> > m_m_axi_rid_converter_6_signal; xsc::common::vector2vector_converter<256,32>* mp_m_axi_rdata_converter_6; sc_signal< sc_bv<32> > m_m_axi_rdata_converter_6_signal; xsc::common::vector2vector_converter<16,2>* mp_m_axi_rresp_converter_6; sc_signal< sc_bv<2> > m_m_axi_rresp_converter_6_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_rlast_converter_6; sc_signal< bool > m_m_axi_rlast_converter_6_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_rvalid_converter_6; sc_signal< bool > m_m_axi_rvalid_converter_6_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_rready_converter_6; sc_signal< bool > m_m_axi_rready_converter_6_signal; xtlm::xaximm_xtlm2pin_t<32,32,12,1,1,1,1,1>* mp_M07_AXI_transactor; xsc::common::vector2vector_converter<12,96>* mp_m_axi_awid_converter_7; sc_signal< sc_bv<12> > m_m_axi_awid_converter_7_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_awaddr_converter_7; sc_signal< sc_bv<32> > m_m_axi_awaddr_converter_7_signal; xsc::common::vector2vector_converter<8,64>* mp_m_axi_awlen_converter_7; sc_signal< sc_bv<8> > m_m_axi_awlen_converter_7_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_awsize_converter_7; sc_signal< sc_bv<3> > m_m_axi_awsize_converter_7_signal; xsc::common::vector2vector_converter<2,16>* mp_m_axi_awburst_converter_7; sc_signal< sc_bv<2> > m_m_axi_awburst_converter_7_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_awlock_converter_7; sc_signal< bool > m_m_axi_awlock_converter_7_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awcache_converter_7; sc_signal< sc_bv<4> > m_m_axi_awcache_converter_7_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_awprot_converter_7; sc_signal< sc_bv<3> > m_m_axi_awprot_converter_7_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awregion_converter_7; sc_signal< sc_bv<4> > m_m_axi_awregion_converter_7_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awqos_converter_7; sc_signal< sc_bv<4> > m_m_axi_awqos_converter_7_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_awvalid_converter_7; sc_signal< bool > m_m_axi_awvalid_converter_7_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_awready_converter_7; sc_signal< bool > m_m_axi_awready_converter_7_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_wdata_converter_7; sc_signal< sc_bv<32> > m_m_axi_wdata_converter_7_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_wstrb_converter_7; sc_signal< sc_bv<4> > m_m_axi_wstrb_converter_7_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_wlast_converter_7; sc_signal< bool > m_m_axi_wlast_converter_7_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_wvalid_converter_7; sc_signal< bool > m_m_axi_wvalid_converter_7_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_wready_converter_7; sc_signal< bool > m_m_axi_wready_converter_7_signal; xsc::common::vector2vector_converter<96,12>* mp_m_axi_bid_converter_7; sc_signal< sc_bv<12> > m_m_axi_bid_converter_7_signal; xsc::common::vector2vector_converter<16,2>* mp_m_axi_bresp_converter_7; sc_signal< sc_bv<2> > m_m_axi_bresp_converter_7_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_bvalid_converter_7; sc_signal< bool > m_m_axi_bvalid_converter_7_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_bready_converter_7; sc_signal< bool > m_m_axi_bready_converter_7_signal; xsc::common::vector2vector_converter<12,96>* mp_m_axi_arid_converter_7; sc_signal< sc_bv<12> > m_m_axi_arid_converter_7_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_araddr_converter_7; sc_signal< sc_bv<32> > m_m_axi_araddr_converter_7_signal; xsc::common::vector2vector_converter<8,64>* mp_m_axi_arlen_converter_7; sc_signal< sc_bv<8> > m_m_axi_arlen_converter_7_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_arsize_converter_7; sc_signal< sc_bv<3> > m_m_axi_arsize_converter_7_signal; xsc::common::vector2vector_converter<2,16>* mp_m_axi_arburst_converter_7; sc_signal< sc_bv<2> > m_m_axi_arburst_converter_7_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_arlock_converter_7; sc_signal< bool > m_m_axi_arlock_converter_7_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arcache_converter_7; sc_signal< sc_bv<4> > m_m_axi_arcache_converter_7_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_arprot_converter_7; sc_signal< sc_bv<3> > m_m_axi_arprot_converter_7_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arregion_converter_7; sc_signal< sc_bv<4> > m_m_axi_arregion_converter_7_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arqos_converter_7; sc_signal< sc_bv<4> > m_m_axi_arqos_converter_7_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_arvalid_converter_7; sc_signal< bool > m_m_axi_arvalid_converter_7_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_arready_converter_7; sc_signal< bool > m_m_axi_arready_converter_7_signal; xsc::common::vector2vector_converter<96,12>* mp_m_axi_rid_converter_7; sc_signal< sc_bv<12> > m_m_axi_rid_converter_7_signal; xsc::common::vector2vector_converter<256,32>* mp_m_axi_rdata_converter_7; sc_signal< sc_bv<32> > m_m_axi_rdata_converter_7_signal; xsc::common::vector2vector_converter<16,2>* mp_m_axi_rresp_converter_7; sc_signal< sc_bv<2> > m_m_axi_rresp_converter_7_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_rlast_converter_7; sc_signal< bool > m_m_axi_rlast_converter_7_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_rvalid_converter_7; sc_signal< bool > m_m_axi_rvalid_converter_7_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_rready_converter_7; sc_signal< bool > m_m_axi_rready_converter_7_signal; xsc::xsc_concatenator<256, 8> * mp_m_axi_concat_araddr; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_araddr_out_0; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_araddr_out_1; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_araddr_out_2; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_araddr_out_3; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_araddr_out_4; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_araddr_out_5; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_araddr_out_6; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_araddr_out_7; xsc::xsc_concatenator<16, 8> * mp_m_axi_concat_arburst; sc_signal<sc_dt::sc_bv<16> > m_axi_concat_arburst_out_0; sc_signal<sc_dt::sc_bv<16> > m_axi_concat_arburst_out_1; sc_signal<sc_dt::sc_bv<16> > m_axi_concat_arburst_out_2; sc_signal<sc_dt::sc_bv<16> > m_axi_concat_arburst_out_3; sc_signal<sc_dt::sc_bv<16> > m_axi_concat_arburst_out_4; sc_signal<sc_dt::sc_bv<16> > m_axi_concat_arburst_out_5; sc_signal<sc_dt::sc_bv<16> > m_axi_concat_arburst_out_6; sc_signal<sc_dt::sc_bv<16> > m_axi_concat_arburst_out_7; xsc::xsc_concatenator<32, 8> * mp_m_axi_concat_arcache; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arcache_out_0; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arcache_out_1; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arcache_out_2; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arcache_out_3; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arcache_out_4; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arcache_out_5; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arcache_out_6; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arcache_out_7; xsc::xsc_concatenator<96, 8> * mp_m_axi_concat_arid; sc_signal<sc_dt::sc_bv<96> > m_axi_concat_arid_out_0; sc_signal<sc_dt::sc_bv<96> > m_axi_concat_arid_out_1; sc_signal<sc_dt::sc_bv<96> > m_axi_concat_arid_out_2; sc_signal<sc_dt::sc_bv<96> > m_axi_concat_arid_out_3; sc_signal<sc_dt::sc_bv<96> > m_axi_concat_arid_out_4; sc_signal<sc_dt::sc_bv<96> > m_axi_concat_arid_out_5; sc_signal<sc_dt::sc_bv<96> > m_axi_concat_arid_out_6; sc_signal<sc_dt::sc_bv<96> > m_axi_concat_arid_out_7; xsc::xsc_concatenator<64, 8> * mp_m_axi_concat_arlen; sc_signal<sc_dt::sc_bv<64> > m_axi_concat_arlen_out_0; sc_signal<sc_dt::sc_bv<64> > m_axi_concat_arlen_out_1; sc_signal<sc_dt::sc_bv<64> > m_axi_concat_arlen_out_2; sc_signal<sc_dt::sc_bv<64> > m_axi_concat_arlen_out_3; sc_signal<sc_dt::sc_bv<64> > m_axi_concat_arlen_out_4; sc_signal<sc_dt::sc_bv<64> > m_axi_concat_arlen_out_5; sc_signal<sc_dt::sc_bv<64> > m_axi_concat_arlen_out_6; sc_signal<sc_dt::sc_bv<64> > m_axi_concat_arlen_out_7; xsc::xsc_concatenator<8, 8> * mp_m_axi_concat_arlock; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_arlock_out_0; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_arlock_out_1; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_arlock_out_2; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_arlock_out_3; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_arlock_out_4; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_arlock_out_5; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_arlock_out_6; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_arlock_out_7; xsc::xsc_concatenator<24, 8> * mp_m_axi_concat_arprot; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_arprot_out_0; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_arprot_out_1; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_arprot_out_2; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_arprot_out_3; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_arprot_out_4; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_arprot_out_5; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_arprot_out_6; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_arprot_out_7; xsc::xsc_concatenator<32, 8> * mp_m_axi_concat_arqos; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arqos_out_0; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arqos_out_1; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arqos_out_2; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arqos_out_3; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arqos_out_4; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arqos_out_5; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arqos_out_6; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arqos_out_7; xsc::xsc_split<8, 8> * mp_m_axi_split_arready; sc_signal<sc_dt::sc_bv<8> > m_axi_split_arready_out_0; sc_signal<sc_dt::sc_bv<8> > m_axi_split_arready_out_1; sc_signal<sc_dt::sc_bv<8> > m_axi_split_arready_out_2; sc_signal<sc_dt::sc_bv<8> > m_axi_split_arready_out_3; sc_signal<sc_dt::sc_bv<8> > m_axi_split_arready_out_4; sc_signal<sc_dt::sc_bv<8> > m_axi_split_arready_out_5; sc_signal<sc_dt::sc_bv<8> > m_axi_split_arready_out_6; sc_signal<sc_dt::sc_bv<8> > m_axi_split_arready_out_7; xsc::xsc_concatenator<32, 8> * mp_m_axi_concat_arregion; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arregion_out_0; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arregion_out_1; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arregion_out_2; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arregion_out_3; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arregion_out_4; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arregion_out_5; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arregion_out_6; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arregion_out_7; xsc::xsc_concatenator<24, 8> * mp_m_axi_concat_arsize; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_arsize_out_0; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_arsize_out_1; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_arsize_out_2; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_arsize_out_3; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_arsize_out_4; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_arsize_out_5; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_arsize_out_6; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_arsize_out_7; xsc::xsc_concatenator<8, 8> * mp_m_axi_concat_arvalid; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_arvalid_out_0; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_arvalid_out_1; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_arvalid_out_2; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_arvalid_out_3; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_arvalid_out_4; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_arvalid_out_5; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_arvalid_out_6; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_arvalid_out_7; xsc::xsc_concatenator<256, 8> * mp_m_axi_concat_awaddr; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_awaddr_out_0; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_awaddr_out_1; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_awaddr_out_2; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_awaddr_out_3; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_awaddr_out_4; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_awaddr_out_5; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_awaddr_out_6; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_awaddr_out_7; xsc::xsc_concatenator<16, 8> * mp_m_axi_concat_awburst; sc_signal<sc_dt::sc_bv<16> > m_axi_concat_awburst_out_0; sc_signal<sc_dt::sc_bv<16> > m_axi_concat_awburst_out_1; sc_signal<sc_dt::sc_bv<16> > m_axi_concat_awburst_out_2; sc_signal<sc_dt::sc_bv<16> > m_axi_concat_awburst_out_3; sc_signal<sc_dt::sc_bv<16> > m_axi_concat_awburst_out_4; sc_signal<sc_dt::sc_bv<16> > m_axi_concat_awburst_out_5; sc_signal<sc_dt::sc_bv<16> > m_axi_concat_awburst_out_6; sc_signal<sc_dt::sc_bv<16> > m_axi_concat_awburst_out_7; xsc::xsc_concatenator<32, 8> * mp_m_axi_concat_awcache; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awcache_out_0; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awcache_out_1; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awcache_out_2; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awcache_out_3; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awcache_out_4; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awcache_out_5; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awcache_out_6; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awcache_out_7; xsc::xsc_concatenator<96, 8> * mp_m_axi_concat_awid; sc_signal<sc_dt::sc_bv<96> > m_axi_concat_awid_out_0; sc_signal<sc_dt::sc_bv<96> > m_axi_concat_awid_out_1; sc_signal<sc_dt::sc_bv<96> > m_axi_concat_awid_out_2; sc_signal<sc_dt::sc_bv<96> > m_axi_concat_awid_out_3; sc_signal<sc_dt::sc_bv<96> > m_axi_concat_awid_out_4; sc_signal<sc_dt::sc_bv<96> > m_axi_concat_awid_out_5; sc_signal<sc_dt::sc_bv<96> > m_axi_concat_awid_out_6; sc_signal<sc_dt::sc_bv<96> > m_axi_concat_awid_out_7; xsc::xsc_concatenator<64, 8> * mp_m_axi_concat_awlen; sc_signal<sc_dt::sc_bv<64> > m_axi_concat_awlen_out_0; sc_signal<sc_dt::sc_bv<64> > m_axi_concat_awlen_out_1; sc_signal<sc_dt::sc_bv<64> > m_axi_concat_awlen_out_2; sc_signal<sc_dt::sc_bv<64> > m_axi_concat_awlen_out_3; sc_signal<sc_dt::sc_bv<64> > m_axi_concat_awlen_out_4; sc_signal<sc_dt::sc_bv<64> > m_axi_concat_awlen_out_5; sc_signal<sc_dt::sc_bv<64> > m_axi_concat_awlen_out_6; sc_signal<sc_dt::sc_bv<64> > m_axi_concat_awlen_out_7; xsc::xsc_concatenator<8, 8> * mp_m_axi_concat_awlock; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_awlock_out_0; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_awlock_out_1; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_awlock_out_2; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_awlock_out_3; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_awlock_out_4; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_awlock_out_5; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_awlock_out_6; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_awlock_out_7; xsc::xsc_concatenator<24, 8> * mp_m_axi_concat_awprot; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_awprot_out_0; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_awprot_out_1; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_awprot_out_2; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_awprot_out_3; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_awprot_out_4; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_awprot_out_5; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_awprot_out_6; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_awprot_out_7; xsc::xsc_concatenator<32, 8> * mp_m_axi_concat_awqos; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awqos_out_0; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awqos_out_1; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awqos_out_2; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awqos_out_3; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awqos_out_4; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awqos_out_5; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awqos_out_6; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awqos_out_7; xsc::xsc_split<8, 8> * mp_m_axi_split_awready; sc_signal<sc_dt::sc_bv<8> > m_axi_split_awready_out_0; sc_signal<sc_dt::sc_bv<8> > m_axi_split_awready_out_1; sc_signal<sc_dt::sc_bv<8> > m_axi_split_awready_out_2; sc_signal<sc_dt::sc_bv<8> > m_axi_split_awready_out_3; sc_signal<sc_dt::sc_bv<8> > m_axi_split_awready_out_4; sc_signal<sc_dt::sc_bv<8> > m_axi_split_awready_out_5; sc_signal<sc_dt::sc_bv<8> > m_axi_split_awready_out_6; sc_signal<sc_dt::sc_bv<8> > m_axi_split_awready_out_7; xsc::xsc_concatenator<32, 8> * mp_m_axi_concat_awregion; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awregion_out_0; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awregion_out_1; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awregion_out_2; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awregion_out_3; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awregion_out_4; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awregion_out_5; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awregion_out_6; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awregion_out_7; xsc::xsc_concatenator<24, 8> * mp_m_axi_concat_awsize; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_awsize_out_0; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_awsize_out_1; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_awsize_out_2; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_awsize_out_3; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_awsize_out_4; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_awsize_out_5; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_awsize_out_6; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_awsize_out_7; xsc::xsc_concatenator<8, 8> * mp_m_axi_concat_awvalid; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_awvalid_out_0; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_awvalid_out_1; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_awvalid_out_2; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_awvalid_out_3; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_awvalid_out_4; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_awvalid_out_5; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_awvalid_out_6; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_awvalid_out_7; xsc::xsc_split<96, 8> * mp_m_axi_split_bid; sc_signal<sc_dt::sc_bv<96> > m_axi_split_bid_out_0; sc_signal<sc_dt::sc_bv<96> > m_axi_split_bid_out_1; sc_signal<sc_dt::sc_bv<96> > m_axi_split_bid_out_2; sc_signal<sc_dt::sc_bv<96> > m_axi_split_bid_out_3; sc_signal<sc_dt::sc_bv<96> > m_axi_split_bid_out_4; sc_signal<sc_dt::sc_bv<96> > m_axi_split_bid_out_5; sc_signal<sc_dt::sc_bv<96> > m_axi_split_bid_out_6; sc_signal<sc_dt::sc_bv<96> > m_axi_split_bid_out_7; xsc::xsc_concatenator<8, 8> * mp_m_axi_concat_bready; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_bready_out_0; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_bready_out_1; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_bready_out_2; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_bready_out_3; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_bready_out_4; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_bready_out_5; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_bready_out_6; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_bready_out_7; xsc::xsc_split<16, 8> * mp_m_axi_split_bresp; sc_signal<sc_dt::sc_bv<16> > m_axi_split_bresp_out_0; sc_signal<sc_dt::sc_bv<16> > m_axi_split_bresp_out_1; sc_signal<sc_dt::sc_bv<16> > m_axi_split_bresp_out_2; sc_signal<sc_dt::sc_bv<16> > m_axi_split_bresp_out_3; sc_signal<sc_dt::sc_bv<16> > m_axi_split_bresp_out_4; sc_signal<sc_dt::sc_bv<16> > m_axi_split_bresp_out_5; sc_signal<sc_dt::sc_bv<16> > m_axi_split_bresp_out_6; sc_signal<sc_dt::sc_bv<16> > m_axi_split_bresp_out_7; xsc::xsc_split<8, 8> * mp_m_axi_split_bvalid; sc_signal<sc_dt::sc_bv<8> > m_axi_split_bvalid_out_0; sc_signal<sc_dt::sc_bv<8> > m_axi_split_bvalid_out_1; sc_signal<sc_dt::sc_bv<8> > m_axi_split_bvalid_out_2; sc_signal<sc_dt::sc_bv<8> > m_axi_split_bvalid_out_3; sc_signal<sc_dt::sc_bv<8> > m_axi_split_bvalid_out_4; sc_signal<sc_dt::sc_bv<8> > m_axi_split_bvalid_out_5; sc_signal<sc_dt::sc_bv<8> > m_axi_split_bvalid_out_6; sc_signal<sc_dt::sc_bv<8> > m_axi_split_bvalid_out_7; xsc::xsc_split<256, 8> * mp_m_axi_split_rdata; sc_signal<sc_dt::sc_bv<256> > m_axi_split_rdata_out_0; sc_signal<sc_dt::sc_bv<256> > m_axi_split_rdata_out_1; sc_signal<sc_dt::sc_bv<256> > m_axi_split_rdata_out_2; sc_signal<sc_dt::sc_bv<256> > m_axi_split_rdata_out_3; sc_signal<sc_dt::sc_bv<256> > m_axi_split_rdata_out_4; sc_signal<sc_dt::sc_bv<256> > m_axi_split_rdata_out_5; sc_signal<sc_dt::sc_bv<256> > m_axi_split_rdata_out_6; sc_signal<sc_dt::sc_bv<256> > m_axi_split_rdata_out_7; xsc::xsc_split<96, 8> * mp_m_axi_split_rid; sc_signal<sc_dt::sc_bv<96> > m_axi_split_rid_out_0; sc_signal<sc_dt::sc_bv<96> > m_axi_split_rid_out_1; sc_signal<sc_dt::sc_bv<96> > m_axi_split_rid_out_2; sc_signal<sc_dt::sc_bv<96> > m_axi_split_rid_out_3; sc_signal<sc_dt::sc_bv<96> > m_axi_split_rid_out_4; sc_signal<sc_dt::sc_bv<96> > m_axi_split_rid_out_5; sc_signal<sc_dt::sc_bv<96> > m_axi_split_rid_out_6; sc_signal<sc_dt::sc_bv<96> > m_axi_split_rid_out_7; xsc::xsc_split<8, 8> * mp_m_axi_split_rlast; sc_signal<sc_dt::sc_bv<8> > m_axi_split_rlast_out_0; sc_signal<sc_dt::sc_bv<8> > m_axi_split_rlast_out_1; sc_signal<sc_dt::sc_bv<8> > m_axi_split_rlast_out_2; sc_signal<sc_dt::sc_bv<8> > m_axi_split_rlast_out_3; sc_signal<sc_dt::sc_bv<8> > m_axi_split_rlast_out_4; sc_signal<sc_dt::sc_bv<8> > m_axi_split_rlast_out_5; sc_signal<sc_dt::sc_bv<8> > m_axi_split_rlast_out_6; sc_signal<sc_dt::sc_bv<8> > m_axi_split_rlast_out_7; xsc::xsc_concatenator<8, 8> * mp_m_axi_concat_rready; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_rready_out_0; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_rready_out_1; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_rready_out_2; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_rready_out_3; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_rready_out_4; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_rready_out_5; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_rready_out_6; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_rready_out_7; xsc::xsc_split<16, 8> * mp_m_axi_split_rresp; sc_signal<sc_dt::sc_bv<16> > m_axi_split_rresp_out_0; sc_signal<sc_dt::sc_bv<16> > m_axi_split_rresp_out_1; sc_signal<sc_dt::sc_bv<16> > m_axi_split_rresp_out_2; sc_signal<sc_dt::sc_bv<16> > m_axi_split_rresp_out_3; sc_signal<sc_dt::sc_bv<16> > m_axi_split_rresp_out_4; sc_signal<sc_dt::sc_bv<16> > m_axi_split_rresp_out_5; sc_signal<sc_dt::sc_bv<16> > m_axi_split_rresp_out_6; sc_signal<sc_dt::sc_bv<16> > m_axi_split_rresp_out_7; xsc::xsc_split<8, 8> * mp_m_axi_split_rvalid; sc_signal<sc_dt::sc_bv<8> > m_axi_split_rvalid_out_0; sc_signal<sc_dt::sc_bv<8> > m_axi_split_rvalid_out_1; sc_signal<sc_dt::sc_bv<8> > m_axi_split_rvalid_out_2; sc_signal<sc_dt::sc_bv<8> > m_axi_split_rvalid_out_3; sc_signal<sc_dt::sc_bv<8> > m_axi_split_rvalid_out_4; sc_signal<sc_dt::sc_bv<8> > m_axi_split_rvalid_out_5; sc_signal<sc_dt::sc_bv<8> > m_axi_split_rvalid_out_6; sc_signal<sc_dt::sc_bv<8> > m_axi_split_rvalid_out_7; xsc::xsc_concatenator<256, 8> * mp_m_axi_concat_wdata; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_wdata_out_0; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_wdata_out_1; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_wdata_out_2; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_wdata_out_3; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_wdata_out_4; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_wdata_out_5; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_wdata_out_6; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_wdata_out_7; xsc::xsc_concatenator<8, 8> * mp_m_axi_concat_wlast; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_wlast_out_0; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_wlast_out_1; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_wlast_out_2; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_wlast_out_3; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_wlast_out_4; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_wlast_out_5; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_wlast_out_6; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_wlast_out_7; xsc::xsc_split<8, 8> * mp_m_axi_split_wready; sc_signal<sc_dt::sc_bv<8> > m_axi_split_wready_out_0; sc_signal<sc_dt::sc_bv<8> > m_axi_split_wready_out_1; sc_signal<sc_dt::sc_bv<8> > m_axi_split_wready_out_2; sc_signal<sc_dt::sc_bv<8> > m_axi_split_wready_out_3; sc_signal<sc_dt::sc_bv<8> > m_axi_split_wready_out_4; sc_signal<sc_dt::sc_bv<8> > m_axi_split_wready_out_5; sc_signal<sc_dt::sc_bv<8> > m_axi_split_wready_out_6; sc_signal<sc_dt::sc_bv<8> > m_axi_split_wready_out_7; xsc::xsc_concatenator<32, 8> * mp_m_axi_concat_wstrb; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_wstrb_out_0; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_wstrb_out_1; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_wstrb_out_2; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_wstrb_out_3; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_wstrb_out_4; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_wstrb_out_5; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_wstrb_out_6; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_wstrb_out_7; xsc::xsc_concatenator<8, 8> * mp_m_axi_concat_wvalid; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_wvalid_out_0; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_wvalid_out_1; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_wvalid_out_2; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_wvalid_out_3; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_wvalid_out_4; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_wvalid_out_5; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_wvalid_out_6; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_wvalid_out_7; }; #endif // XILINX_SIMULATOR #ifdef XM_SYSTEMC class DllExport video_cp_tier2_xbar_2_0 : public video_cp_tier2_xbar_2_0_sc { public: video_cp_tier2_xbar_2_0(const sc_core::sc_module_name& nm); virtual ~video_cp_tier2_xbar_2_0(); // module pin-to-pin RTL interface sc_core::sc_in< bool > aclk; sc_core::sc_in< bool > aresetn; sc_core::sc_in< sc_dt::sc_bv<12> > s_axi_awid; sc_core::sc_in< sc_dt::sc_bv<32> > s_axi_awaddr; sc_core::sc_in< sc_dt::sc_bv<8> > s_axi_awlen; sc_core::sc_in< sc_dt::sc_bv<3> > s_axi_awsize; sc_core::sc_in< sc_dt::sc_bv<2> > s_axi_awburst; sc_core::sc_in< sc_dt::sc_bv<1> > s_axi_awlock; sc_core::sc_in< sc_dt::sc_bv<4> > s_axi_awcache; sc_core::sc_in< sc_dt::sc_bv<3> > s_axi_awprot; sc_core::sc_in< sc_dt::sc_bv<4> > s_axi_awqos; sc_core::sc_in< sc_dt::sc_bv<1> > s_axi_awvalid; sc_core::sc_out< sc_dt::sc_bv<1> > s_axi_awready; sc_core::sc_in< sc_dt::sc_bv<32> > s_axi_wdata; sc_core::sc_in< sc_dt::sc_bv<4> > s_axi_wstrb; sc_core::sc_in< sc_dt::sc_bv<1> > s_axi_wlast; sc_core::sc_in< sc_dt::sc_bv<1> > s_axi_wvalid; sc_core::sc_out< sc_dt::sc_bv<1> > s_axi_wready; sc_core::sc_out< sc_dt::sc_bv<12> > s_axi_bid; sc_core::sc_out< sc_dt::sc_bv<2> > s_axi_bresp; sc_core::sc_out< sc_dt::sc_bv<1> > s_axi_bvalid; sc_core::sc_in< sc_dt::sc_bv<1> > s_axi_bready; sc_core::sc_in< sc_dt::sc_bv<12> > s_axi_arid; sc_core::sc_in< sc_dt::sc_bv<32> > s_axi_araddr; sc_core::sc_in< sc_dt::sc_bv<8> > s_axi_arlen; sc_core::sc_in< sc_dt::sc_bv<3> > s_axi_arsize; sc_core::sc_in< sc_dt::sc_bv<2> > s_axi_arburst; sc_core::sc_in< sc_dt::sc_bv<1> > s_axi_arlock; sc_core::sc_in< sc_dt::sc_bv<4> > s_axi_arcache; sc_core::sc_in< sc_dt::sc_bv<3> > s_axi_arprot; sc_core::sc_in< sc_dt::sc_bv<4> > s_axi_arqos; sc_core::sc_in< sc_dt::sc_bv<1> > s_axi_arvalid; sc_core::sc_out< sc_dt::sc_bv<1> > s_axi_arready; sc_core::sc_out< sc_dt::sc_bv<12> > s_axi_rid; sc_core::sc_out< sc_dt::sc_bv<32> > s_axi_rdata; sc_core::sc_out< sc_dt::sc_bv<2> > s_axi_rresp; sc_core::sc_out< sc_dt::sc_bv<1> > s_axi_rlast; sc_core::sc_out< sc_dt::sc_bv<1> > s_axi_rvalid; sc_core::sc_in< sc_dt::sc_bv<1> > s_axi_rready; sc_core::sc_out< sc_dt::sc_bv<96> > m_axi_awid; sc_core::sc_out< sc_dt::sc_bv<256> > m_axi_awaddr; sc_core::sc_out< sc_dt::sc_bv<64> > m_axi_awlen; sc_core::sc_out< sc_dt::sc_bv<24> > m_axi_awsize; sc_core::sc_out< sc_dt::sc_bv<16> > m_axi_awburst; sc_core::sc_out< sc_dt::sc_bv<8> > m_axi_awlock; sc_core::sc_out< sc_dt::sc_bv<32> > m_axi_awcache; sc_core::sc_out< sc_dt::sc_bv<24> > m_axi_awprot; sc_core::sc_out< sc_dt::sc_bv<32> > m_axi_awregion; sc_core::sc_out< sc_dt::sc_bv<32> > m_axi_awqos; sc_core::sc_out< sc_dt::sc_bv<8> > m_axi_awvalid; sc_core::sc_in< sc_dt::sc_bv<8> > m_axi_awready; sc_core::sc_out< sc_dt::sc_bv<256> > m_axi_wdata; sc_core::sc_out< sc_dt::sc_bv<32> > m_axi_wstrb; sc_core::sc_out< sc_dt::sc_bv<8> > m_axi_wlast; sc_core::sc_out< sc_dt::sc_bv<8> > m_axi_wvalid; sc_core::sc_in< sc_dt::sc_bv<8> > m_axi_wready; sc_core::sc_in< sc_dt::sc_bv<96> > m_axi_bid; sc_core::sc_in< sc_dt::sc_bv<16> > m_axi_bresp; sc_core::sc_in< sc_dt::sc_bv<8> > m_axi_bvalid; sc_core::sc_out< sc_dt::sc_bv<8> > m_axi_bready; sc_core::sc_out< sc_dt::sc_bv<96> > m_axi_arid; sc_core::sc_out< sc_dt::sc_bv<256> > m_axi_araddr; sc_core::sc_out< sc_dt::sc_bv<64> > m_axi_arlen; sc_core::sc_out< sc_dt::sc_bv<24> > m_axi_arsize; sc_core::sc_out< sc_dt::sc_bv<16> > m_axi_arburst; sc_core::sc_out< sc_dt::sc_bv<8> > m_axi_arlock; sc_core::sc_out< sc_dt::sc_bv<32> > m_axi_arcache; sc_core::sc_out< sc_dt::sc_bv<24> > m_axi_arprot; sc_core::sc_out< sc_dt::sc_bv<32> > m_axi_arregion; sc_core::sc_out< sc_dt::sc_bv<32> > m_axi_arqos; sc_core::sc_out< sc_dt::sc_bv<8> > m_axi_arvalid; sc_core::sc_in< sc_dt::sc_bv<8> > m_axi_arready; sc_core::sc_in< sc_dt::sc_bv<96> > m_axi_rid; sc_core::sc_in< sc_dt::sc_bv<256> > m_axi_rdata; sc_core::sc_in< sc_dt::sc_bv<16> > m_axi_rresp; sc_core::sc_in< sc_dt::sc_bv<8> > m_axi_rlast; sc_core::sc_in< sc_dt::sc_bv<8> > m_axi_rvalid; sc_core::sc_out< sc_dt::sc_bv<8> > m_axi_rready; // Dummy Signals for IP Ports protected: virtual void before_end_of_elaboration(); private: xtlm::xaximm_pin2xtlm_t<32,32,12,1,1,1,1,1>* mp_S00_AXI_transactor; xsc::common::vectorN2scalar_converter<1>* mp_s_axi_awlock_converter; sc_signal< bool > m_s_axi_awlock_converter_signal; xsc::common::vectorN2scalar_converter<1>* mp_s_axi_awvalid_converter; sc_signal< bool > m_s_axi_awvalid_converter_signal; xsc::common::scalar2vectorN_converter<1>* mp_s_axi_awready_converter; sc_signal< bool > m_s_axi_awready_converter_signal; xsc::common::vectorN2scalar_converter<1>* mp_s_axi_wlast_converter; sc_signal< bool > m_s_axi_wlast_converter_signal; xsc::common::vectorN2scalar_converter<1>* mp_s_axi_wvalid_converter; sc_signal< bool > m_s_axi_wvalid_converter_signal; xsc::common::scalar2vectorN_converter<1>* mp_s_axi_wready_converter; sc_signal< bool > m_s_axi_wready_converter_signal; xsc::common::scalar2vectorN_converter<1>* mp_s_axi_bvalid_converter; sc_signal< bool > m_s_axi_bvalid_converter_signal; xsc::common::vectorN2scalar_converter<1>* mp_s_axi_bready_converter; sc_signal< bool > m_s_axi_bready_converter_signal; xsc::common::vectorN2scalar_converter<1>* mp_s_axi_arlock_converter; sc_signal< bool > m_s_axi_arlock_converter_signal; xsc::common::vectorN2scalar_converter<1>* mp_s_axi_arvalid_converter; sc_signal< bool > m_s_axi_arvalid_converter_signal; xsc::common::scalar2vectorN_converter<1>* mp_s_axi_arready_converter; sc_signal< bool > m_s_axi_arready_converter_signal; xsc::common::scalar2vectorN_converter<1>* mp_s_axi_rlast_converter; sc_signal< bool > m_s_axi_rlast_converter_signal; xsc::common::scalar2vectorN_converter<1>* mp_s_axi_rvalid_converter; sc_signal< bool > m_s_axi_rvalid_converter_signal; xsc::common::vectorN2scalar_converter<1>* mp_s_axi_rready_converter; sc_signal< bool > m_s_axi_rready_converter_signal; xtlm::xaximm_xtlm2pin_t<32,32,12,1,1,1,1,1>* mp_M00_AXI_transactor; xsc::common::vector2vector_converter<12,96>* mp_m_axi_awid_converter_0; sc_signal< sc_bv<12> > m_m_axi_awid_converter_0_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_awaddr_converter_0; sc_signal< sc_bv<32> > m_m_axi_awaddr_converter_0_signal; xsc::common::vector2vector_converter<8,64>* mp_m_axi_awlen_converter_0; sc_signal< sc_bv<8> > m_m_axi_awlen_converter_0_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_awsize_converter_0; sc_signal< sc_bv<3> > m_m_axi_awsize_converter_0_signal; xsc::common::vector2vector_converter<2,16>* mp_m_axi_awburst_converter_0; sc_signal< sc_bv<2> > m_m_axi_awburst_converter_0_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_awlock_converter_0; sc_signal< bool > m_m_axi_awlock_converter_0_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awcache_converter_0; sc_signal< sc_bv<4> > m_m_axi_awcache_converter_0_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_awprot_converter_0; sc_signal< sc_bv<3> > m_m_axi_awprot_converter_0_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awregion_converter_0; sc_signal< sc_bv<4> > m_m_axi_awregion_converter_0_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awqos_converter_0; sc_signal< sc_bv<4> > m_m_axi_awqos_converter_0_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_awvalid_converter_0; sc_signal< bool > m_m_axi_awvalid_converter_0_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_awready_converter_0; sc_signal< bool > m_m_axi_awready_converter_0_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_wdata_converter_0; sc_signal< sc_bv<32> > m_m_axi_wdata_converter_0_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_wstrb_converter_0; sc_signal< sc_bv<4> > m_m_axi_wstrb_converter_0_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_wlast_converter_0; sc_signal< bool > m_m_axi_wlast_converter_0_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_wvalid_converter_0; sc_signal< bool > m_m_axi_wvalid_converter_0_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_wready_converter_0; sc_signal< bool > m_m_axi_wready_converter_0_signal; xsc::common::vector2vector_converter<96,12>* mp_m_axi_bid_converter_0; sc_signal< sc_bv<12> > m_m_axi_bid_converter_0_signal; xsc::common::vector2vector_converter<16,2>* mp_m_axi_bresp_converter_0; sc_signal< sc_bv<2> > m_m_axi_bresp_converter_0_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_bvalid_converter_0; sc_signal< bool > m_m_axi_bvalid_converter_0_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_bready_converter_0; sc_signal< bool > m_m_axi_bready_converter_0_signal; xsc::common::vector2vector_converter<12,96>* mp_m_axi_arid_converter_0; sc_signal< sc_bv<12> > m_m_axi_arid_converter_0_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_araddr_converter_0; sc_signal< sc_bv<32> > m_m_axi_araddr_converter_0_signal; xsc::common::vector2vector_converter<8,64>* mp_m_axi_arlen_converter_0; sc_signal< sc_bv<8> > m_m_axi_arlen_converter_0_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_arsize_converter_0; sc_signal< sc_bv<3> > m_m_axi_arsize_converter_0_signal; xsc::common::vector2vector_converter<2,16>* mp_m_axi_arburst_converter_0; sc_signal< sc_bv<2> > m_m_axi_arburst_converter_0_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_arlock_converter_0; sc_signal< bool > m_m_axi_arlock_converter_0_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arcache_converter_0; sc_signal< sc_bv<4> > m_m_axi_arcache_converter_0_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_arprot_converter_0; sc_signal< sc_bv<3> > m_m_axi_arprot_converter_0_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arregion_converter_0; sc_signal< sc_bv<4> > m_m_axi_arregion_converter_0_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arqos_converter_0; sc_signal< sc_bv<4> > m_m_axi_arqos_converter_0_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_arvalid_converter_0; sc_signal< bool > m_m_axi_arvalid_converter_0_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_arready_converter_0; sc_signal< bool > m_m_axi_arready_converter_0_signal; xsc::common::vector2vector_converter<96,12>* mp_m_axi_rid_converter_0; sc_signal< sc_bv<12> > m_m_axi_rid_converter_0_signal; xsc::common::vector2vector_converter<256,32>* mp_m_axi_rdata_converter_0; sc_signal< sc_bv<32> > m_m_axi_rdata_converter_0_signal; xsc::common::vector2vector_converter<16,2>* mp_m_axi_rresp_converter_0; sc_signal< sc_bv<2> > m_m_axi_rresp_converter_0_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_rlast_converter_0; sc_signal< bool > m_m_axi_rlast_converter_0_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_rvalid_converter_0; sc_signal< bool > m_m_axi_rvalid_converter_0_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_rready_converter_0; sc_signal< bool > m_m_axi_rready_converter_0_signal; xtlm::xaximm_xtlm2pin_t<32,32,12,1,1,1,1,1>* mp_M01_AXI_transactor; xsc::common::vector2vector_converter<12,96>* mp_m_axi_awid_converter_1; sc_signal< sc_bv<12> > m_m_axi_awid_converter_1_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_awaddr_converter_1; sc_signal< sc_bv<32> > m_m_axi_awaddr_converter_1_signal; xsc::common::vector2vector_converter<8,64>* mp_m_axi_awlen_converter_1; sc_signal< sc_bv<8> > m_m_axi_awlen_converter_1_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_awsize_converter_1; sc_signal< sc_bv<3> > m_m_axi_awsize_converter_1_signal; xsc::common::vector2vector_converter<2,16>* mp_m_axi_awburst_converter_1; sc_signal< sc_bv<2> > m_m_axi_awburst_converter_1_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_awlock_converter_1; sc_signal< bool > m_m_axi_awlock_converter_1_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awcache_converter_1; sc_signal< sc_bv<4> > m_m_axi_awcache_converter_1_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_awprot_converter_1; sc_signal< sc_bv<3> > m_m_axi_awprot_converter_1_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awregion_converter_1; sc_signal< sc_bv<4> > m_m_axi_awregion_converter_1_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awqos_converter_1; sc_signal< sc_bv<4> > m_m_axi_awqos_converter_1_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_awvalid_converter_1; sc_signal< bool > m_m_axi_awvalid_converter_1_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_awready_converter_1; sc_signal< bool > m_m_axi_awready_converter_1_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_wdata_converter_1; sc_signal< sc_bv<32> > m_m_axi_wdata_converter_1_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_wstrb_converter_1; sc_signal< sc_bv<4> > m_m_axi_wstrb_converter_1_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_wlast_converter_1; sc_signal< bool > m_m_axi_wlast_converter_1_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_wvalid_converter_1; sc_signal< bool > m_m_axi_wvalid_converter_1_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_wready_converter_1; sc_signal< bool > m_m_axi_wready_converter_1_signal; xsc::common::vector2vector_converter<96,12>* mp_m_axi_bid_converter_1; sc_signal< sc_bv<12> > m_m_axi_bid_converter_1_signal; xsc::common::vector2vector_converter<16,2>* mp_m_axi_bresp_converter_1; sc_signal< sc_bv<2> > m_m_axi_bresp_converter_1_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_bvalid_converter_1; sc_signal< bool > m_m_axi_bvalid_converter_1_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_bready_converter_1; sc_signal< bool > m_m_axi_bready_converter_1_signal; xsc::common::vector2vector_converter<12,96>* mp_m_axi_arid_converter_1; sc_signal< sc_bv<12> > m_m_axi_arid_converter_1_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_araddr_converter_1; sc_signal< sc_bv<32> > m_m_axi_araddr_converter_1_signal; xsc::common::vector2vector_converter<8,64>* mp_m_axi_arlen_converter_1; sc_signal< sc_bv<8> > m_m_axi_arlen_converter_1_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_arsize_converter_1; sc_signal< sc_bv<3> > m_m_axi_arsize_converter_1_signal; xsc::common::vector2vector_converter<2,16>* mp_m_axi_arburst_converter_1; sc_signal< sc_bv<2> > m_m_axi_arburst_converter_1_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_arlock_converter_1; sc_signal< bool > m_m_axi_arlock_converter_1_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arcache_converter_1; sc_signal< sc_bv<4> > m_m_axi_arcache_converter_1_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_arprot_converter_1; sc_signal< sc_bv<3> > m_m_axi_arprot_converter_1_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arregion_converter_1; sc_signal< sc_bv<4> > m_m_axi_arregion_converter_1_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arqos_converter_1; sc_signal< sc_bv<4> > m_m_axi_arqos_converter_1_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_arvalid_converter_1; sc_signal< bool > m_m_axi_arvalid_converter_1_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_arready_converter_1; sc_signal< bool > m_m_axi_arready_converter_1_signal; xsc::common::vector2vector_converter<96,12>* mp_m_axi_rid_converter_1; sc_signal< sc_bv<12> > m_m_axi_rid_converter_1_signal; xsc::common::vector2vector_converter<256,32>* mp_m_axi_rdata_converter_1; sc_signal< sc_bv<32> > m_m_axi_rdata_converter_1_signal; xsc::common::vector2vector_converter<16,2>* mp_m_axi_rresp_converter_1; sc_signal< sc_bv<2> > m_m_axi_rresp_converter_1_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_rlast_converter_1; sc_signal< bool > m_m_axi_rlast_converter_1_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_rvalid_converter_1; sc_signal< bool > m_m_axi_rvalid_converter_1_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_rready_converter_1; sc_signal< bool > m_m_axi_rready_converter_1_signal; xtlm::xaximm_xtlm2pin_t<32,32,12,1,1,1,1,1>* mp_M02_AXI_transactor; xsc::common::vector2vector_converter<12,96>* mp_m_axi_awid_converter_2; sc_signal< sc_bv<12> > m_m_axi_awid_converter_2_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_awaddr_converter_2; sc_signal< sc_bv<32> > m_m_axi_awaddr_converter_2_signal; xsc::common::vector2vector_converter<8,64>* mp_m_axi_awlen_converter_2; sc_signal< sc_bv<8> > m_m_axi_awlen_converter_2_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_awsize_converter_2; sc_signal< sc_bv<3> > m_m_axi_awsize_converter_2_signal; xsc::common::vector2vector_converter<2,16>* mp_m_axi_awburst_converter_2; sc_signal< sc_bv<2> > m_m_axi_awburst_converter_2_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_awlock_converter_2; sc_signal< bool > m_m_axi_awlock_converter_2_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awcache_converter_2; sc_signal< sc_bv<4> > m_m_axi_awcache_converter_2_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_awprot_converter_2; sc_signal< sc_bv<3> > m_m_axi_awprot_converter_2_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awregion_converter_2; sc_signal< sc_bv<4> > m_m_axi_awregion_converter_2_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awqos_converter_2; sc_signal< sc_bv<4> > m_m_axi_awqos_converter_2_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_awvalid_converter_2; sc_signal< bool > m_m_axi_awvalid_converter_2_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_awready_converter_2; sc_signal< bool > m_m_axi_awready_converter_2_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_wdata_converter_2; sc_signal< sc_bv<32> > m_m_axi_wdata_converter_2_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_wstrb_converter_2; sc_signal< sc_bv<4> > m_m_axi_wstrb_converter_2_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_wlast_converter_2; sc_signal< bool > m_m_axi_wlast_converter_2_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_wvalid_converter_2; sc_signal< bool > m_m_axi_wvalid_converter_2_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_wready_converter_2; sc_signal< bool > m_m_axi_wready_converter_2_signal; xsc::common::vector2vector_converter<96,12>* mp_m_axi_bid_converter_2; sc_signal< sc_bv<12> > m_m_axi_bid_converter_2_signal; xsc::common::vector2vector_converter<16,2>* mp_m_axi_bresp_converter_2; sc_signal< sc_bv<2> > m_m_axi_bresp_converter_2_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_bvalid_converter_2; sc_signal< bool > m_m_axi_bvalid_converter_2_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_bready_converter_2; sc_signal< bool > m_m_axi_bready_converter_2_signal; xsc::common::vector2vector_converter<12,96>* mp_m_axi_arid_converter_2; sc_signal< sc_bv<12> > m_m_axi_arid_converter_2_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_araddr_converter_2; sc_signal< sc_bv<32> > m_m_axi_araddr_converter_2_signal; xsc::common::vector2vector_converter<8,64>* mp_m_axi_arlen_converter_2; sc_signal< sc_bv<8> > m_m_axi_arlen_converter_2_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_arsize_converter_2; sc_signal< sc_bv<3> > m_m_axi_arsize_converter_2_signal; xsc::common::vector2vector_converter<2,16>* mp_m_axi_arburst_converter_2; sc_signal< sc_bv<2> > m_m_axi_arburst_converter_2_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_arlock_converter_2; sc_signal< bool > m_m_axi_arlock_converter_2_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arcache_converter_2; sc_signal< sc_bv<4> > m_m_axi_arcache_converter_2_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_arprot_converter_2; sc_signal< sc_bv<3> > m_m_axi_arprot_converter_2_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arregion_converter_2; sc_signal< sc_bv<4> > m_m_axi_arregion_converter_2_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arqos_converter_2; sc_signal< sc_bv<4> > m_m_axi_arqos_converter_2_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_arvalid_converter_2; sc_signal< bool > m_m_axi_arvalid_converter_2_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_arready_converter_2; sc_signal< bool > m_m_axi_arready_converter_2_signal; xsc::common::vector2vector_converter<96,12>* mp_m_axi_rid_converter_2; sc_signal< sc_bv<12> > m_m_axi_rid_converter_2_signal; xsc::common::vector2vector_converter<256,32>* mp_m_axi_rdata_converter_2; sc_signal< sc_bv<32> > m_m_axi_rdata_converter_2_signal; xsc::common::vector2vector_converter<16,2>* mp_m_axi_rresp_converter_2; sc_signal< sc_bv<2> > m_m_axi_rresp_converter_2_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_rlast_converter_2; sc_signal< bool > m_m_axi_rlast_converter_2_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_rvalid_converter_2; sc_signal< bool > m_m_axi_rvalid_converter_2_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_rready_converter_2; sc_signal< bool > m_m_axi_rready_converter_2_signal; xtlm::xaximm_xtlm2pin_t<32,32,12,1,1,1,1,1>* mp_M03_AXI_transactor; xsc::common::vector2vector_converter<12,96>* mp_m_axi_awid_converter_3; sc_signal< sc_bv<12> > m_m_axi_awid_converter_3_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_awaddr_converter_3; sc_signal< sc_bv<32> > m_m_axi_awaddr_converter_3_signal; xsc::common::vector2vector_converter<8,64>* mp_m_axi_awlen_converter_3; sc_signal< sc_bv<8> > m_m_axi_awlen_converter_3_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_awsize_converter_3; sc_signal< sc_bv<3> > m_m_axi_awsize_converter_3_signal; xsc::common::vector2vector_converter<2,16>* mp_m_axi_awburst_converter_3; sc_signal< sc_bv<2> > m_m_axi_awburst_converter_3_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_awlock_converter_3; sc_signal< bool > m_m_axi_awlock_converter_3_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awcache_converter_3; sc_signal< sc_bv<4> > m_m_axi_awcache_converter_3_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_awprot_converter_3; sc_signal< sc_bv<3> > m_m_axi_awprot_converter_3_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awregion_converter_3; sc_signal< sc_bv<4> > m_m_axi_awregion_converter_3_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awqos_converter_3; sc_signal< sc_bv<4> > m_m_axi_awqos_converter_3_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_awvalid_converter_3; sc_signal< bool > m_m_axi_awvalid_converter_3_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_awready_converter_3; sc_signal< bool > m_m_axi_awready_converter_3_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_wdata_converter_3; sc_signal< sc_bv<32> > m_m_axi_wdata_converter_3_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_wstrb_converter_3; sc_signal< sc_bv<4> > m_m_axi_wstrb_converter_3_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_wlast_converter_3; sc_signal< bool > m_m_axi_wlast_converter_3_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_wvalid_converter_3; sc_signal< bool > m_m_axi_wvalid_converter_3_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_wready_converter_3; sc_signal< bool > m_m_axi_wready_converter_3_signal; xsc::common::vector2vector_converter<96,12>* mp_m_axi_bid_converter_3; sc_signal< sc_bv<12> > m_m_axi_bid_converter_3_signal; xsc::common::vector2vector_converter<16,2>* mp_m_axi_bresp_converter_3; sc_signal< sc_bv<2> > m_m_axi_bresp_converter_3_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_bvalid_converter_3; sc_signal< bool > m_m_axi_bvalid_converter_3_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_bready_converter_3; sc_signal< bool > m_m_axi_bready_converter_3_signal; xsc::common::vector2vector_converter<12,96>* mp_m_axi_arid_converter_3; sc_signal< sc_bv<12> > m_m_axi_arid_converter_3_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_araddr_converter_3; sc_signal< sc_bv<32> > m_m_axi_araddr_converter_3_signal; xsc::common::vector2vector_converter<8,64>* mp_m_axi_arlen_converter_3; sc_signal< sc_bv<8> > m_m_axi_arlen_converter_3_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_arsize_converter_3; sc_signal< sc_bv<3> > m_m_axi_arsize_converter_3_signal; xsc::common::vector2vector_converter<2,16>* mp_m_axi_arburst_converter_3; sc_signal< sc_bv<2> > m_m_axi_arburst_converter_3_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_arlock_converter_3; sc_signal< bool > m_m_axi_arlock_converter_3_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arcache_converter_3; sc_signal< sc_bv<4> > m_m_axi_arcache_converter_3_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_arprot_converter_3; sc_signal< sc_bv<3> > m_m_axi_arprot_converter_3_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arregion_converter_3; sc_signal< sc_bv<4> > m_m_axi_arregion_converter_3_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arqos_converter_3; sc_signal< sc_bv<4> > m_m_axi_arqos_converter_3_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_arvalid_converter_3; sc_signal< bool > m_m_axi_arvalid_converter_3_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_arready_converter_3; sc_signal< bool > m_m_axi_arready_converter_3_signal; xsc::common::vector2vector_converter<96,12>* mp_m_axi_rid_converter_3; sc_signal< sc_bv<12> > m_m_axi_rid_converter_3_signal; xsc::common::vector2vector_converter<256,32>* mp_m_axi_rdata_converter_3; sc_signal< sc_bv<32> > m_m_axi_rdata_converter_3_signal; xsc::common::vector2vector_converter<16,2>* mp_m_axi_rresp_converter_3; sc_signal< sc_bv<2> > m_m_axi_rresp_converter_3_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_rlast_converter_3; sc_signal< bool > m_m_axi_rlast_converter_3_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_rvalid_converter_3; sc_signal< bool > m_m_axi_rvalid_converter_3_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_rready_converter_3; sc_signal< bool > m_m_axi_rready_converter_3_signal; xtlm::xaximm_xtlm2pin_t<32,32,12,1,1,1,1,1>* mp_M04_AXI_transactor; xsc::common::vector2vector_converter<12,96>* mp_m_axi_awid_converter_4; sc_signal< sc_bv<12> > m_m_axi_awid_converter_4_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_awaddr_converter_4; sc_signal< sc_bv<32> > m_m_axi_awaddr_converter_4_signal; xsc::common::vector2vector_converter<8,64>* mp_m_axi_awlen_converter_4; sc_signal< sc_bv<8> > m_m_axi_awlen_converter_4_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_awsize_converter_4; sc_signal< sc_bv<3> > m_m_axi_awsize_converter_4_signal; xsc::common::vector2vector_converter<2,16>* mp_m_axi_awburst_converter_4; sc_signal< sc_bv<2> > m_m_axi_awburst_converter_4_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_awlock_converter_4; sc_signal< bool > m_m_axi_awlock_converter_4_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awcache_converter_4; sc_signal< sc_bv<4> > m_m_axi_awcache_converter_4_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_awprot_converter_4; sc_signal< sc_bv<3> > m_m_axi_awprot_converter_4_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awregion_converter_4; sc_signal< sc_bv<4> > m_m_axi_awregion_converter_4_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awqos_converter_4; sc_signal< sc_bv<4> > m_m_axi_awqos_converter_4_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_awvalid_converter_4; sc_signal< bool > m_m_axi_awvalid_converter_4_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_awready_converter_4; sc_signal< bool > m_m_axi_awready_converter_4_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_wdata_converter_4; sc_signal< sc_bv<32> > m_m_axi_wdata_converter_4_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_wstrb_converter_4; sc_signal< sc_bv<4> > m_m_axi_wstrb_converter_4_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_wlast_converter_4; sc_signal< bool > m_m_axi_wlast_converter_4_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_wvalid_converter_4; sc_signal< bool > m_m_axi_wvalid_converter_4_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_wready_converter_4; sc_signal< bool > m_m_axi_wready_converter_4_signal; xsc::common::vector2vector_converter<96,12>* mp_m_axi_bid_converter_4; sc_signal< sc_bv<12> > m_m_axi_bid_converter_4_signal; xsc::common::vector2vector_converter<16,2>* mp_m_axi_bresp_converter_4; sc_signal< sc_bv<2> > m_m_axi_bresp_converter_4_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_bvalid_converter_4; sc_signal< bool > m_m_axi_bvalid_converter_4_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_bready_converter_4; sc_signal< bool > m_m_axi_bready_converter_4_signal; xsc::common::vector2vector_converter<12,96>* mp_m_axi_arid_converter_4; sc_signal< sc_bv<12> > m_m_axi_arid_converter_4_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_araddr_converter_4; sc_signal< sc_bv<32> > m_m_axi_araddr_converter_4_signal; xsc::common::vector2vector_converter<8,64>* mp_m_axi_arlen_converter_4; sc_signal< sc_bv<8> > m_m_axi_arlen_converter_4_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_arsize_converter_4; sc_signal< sc_bv<3> > m_m_axi_arsize_converter_4_signal; xsc::common::vector2vector_converter<2,16>* mp_m_axi_arburst_converter_4; sc_signal< sc_bv<2> > m_m_axi_arburst_converter_4_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_arlock_converter_4; sc_signal< bool > m_m_axi_arlock_converter_4_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arcache_converter_4; sc_signal< sc_bv<4> > m_m_axi_arcache_converter_4_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_arprot_converter_4; sc_signal< sc_bv<3> > m_m_axi_arprot_converter_4_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arregion_converter_4; sc_signal< sc_bv<4> > m_m_axi_arregion_converter_4_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arqos_converter_4; sc_signal< sc_bv<4> > m_m_axi_arqos_converter_4_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_arvalid_converter_4; sc_signal< bool > m_m_axi_arvalid_converter_4_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_arready_converter_4; sc_signal< bool > m_m_axi_arready_converter_4_signal; xsc::common::vector2vector_converter<96,12>* mp_m_axi_rid_converter_4; sc_signal< sc_bv<12> > m_m_axi_rid_converter_4_signal; xsc::common::vector2vector_converter<256,32>* mp_m_axi_rdata_converter_4; sc_signal< sc_bv<32> > m_m_axi_rdata_converter_4_signal; xsc::common::vector2vector_converter<16,2>* mp_m_axi_rresp_converter_4; sc_signal< sc_bv<2> > m_m_axi_rresp_converter_4_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_rlast_converter_4; sc_signal< bool > m_m_axi_rlast_converter_4_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_rvalid_converter_4; sc_signal< bool > m_m_axi_rvalid_converter_4_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_rready_converter_4; sc_signal< bool > m_m_axi_rready_converter_4_signal; xtlm::xaximm_xtlm2pin_t<32,32,12,1,1,1,1,1>* mp_M05_AXI_transactor; xsc::common::vector2vector_converter<12,96>* mp_m_axi_awid_converter_5; sc_signal< sc_bv<12> > m_m_axi_awid_converter_5_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_awaddr_converter_5; sc_signal< sc_bv<32> > m_m_axi_awaddr_converter_5_signal; xsc::common::vector2vector_converter<8,64>* mp_m_axi_awlen_converter_5; sc_signal< sc_bv<8> > m_m_axi_awlen_converter_5_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_awsize_converter_5; sc_signal< sc_bv<3> > m_m_axi_awsize_converter_5_signal; xsc::common::vector2vector_converter<2,16>* mp_m_axi_awburst_converter_5; sc_signal< sc_bv<2> > m_m_axi_awburst_converter_5_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_awlock_converter_5; sc_signal< bool > m_m_axi_awlock_converter_5_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awcache_converter_5; sc_signal< sc_bv<4> > m_m_axi_awcache_converter_5_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_awprot_converter_5; sc_signal< sc_bv<3> > m_m_axi_awprot_converter_5_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awregion_converter_5; sc_signal< sc_bv<4> > m_m_axi_awregion_converter_5_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awqos_converter_5; sc_signal< sc_bv<4> > m_m_axi_awqos_converter_5_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_awvalid_converter_5; sc_signal< bool > m_m_axi_awvalid_converter_5_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_awready_converter_5; sc_signal< bool > m_m_axi_awready_converter_5_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_wdata_converter_5; sc_signal< sc_bv<32> > m_m_axi_wdata_converter_5_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_wstrb_converter_5; sc_signal< sc_bv<4> > m_m_axi_wstrb_converter_5_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_wlast_converter_5; sc_signal< bool > m_m_axi_wlast_converter_5_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_wvalid_converter_5; sc_signal< bool > m_m_axi_wvalid_converter_5_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_wready_converter_5; sc_signal< bool > m_m_axi_wready_converter_5_signal; xsc::common::vector2vector_converter<96,12>* mp_m_axi_bid_converter_5; sc_signal< sc_bv<12> > m_m_axi_bid_converter_5_signal; xsc::common::vector2vector_converter<16,2>* mp_m_axi_bresp_converter_5; sc_signal< sc_bv<2> > m_m_axi_bresp_converter_5_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_bvalid_converter_5; sc_signal< bool > m_m_axi_bvalid_converter_5_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_bready_converter_5; sc_signal< bool > m_m_axi_bready_converter_5_signal; xsc::common::vector2vector_converter<12,96>* mp_m_axi_arid_converter_5; sc_signal< sc_bv<12> > m_m_axi_arid_converter_5_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_araddr_converter_5; sc_signal< sc_bv<32> > m_m_axi_araddr_converter_5_signal; xsc::common::vector2vector_converter<8,64>* mp_m_axi_arlen_converter_5; sc_signal< sc_bv<8> > m_m_axi_arlen_converter_5_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_arsize_converter_5; sc_signal< sc_bv<3> > m_m_axi_arsize_converter_5_signal; xsc::common::vector2vector_converter<2,16>* mp_m_axi_arburst_converter_5; sc_signal< sc_bv<2> > m_m_axi_arburst_converter_5_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_arlock_converter_5; sc_signal< bool > m_m_axi_arlock_converter_5_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arcache_converter_5; sc_signal< sc_bv<4> > m_m_axi_arcache_converter_5_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_arprot_converter_5; sc_signal< sc_bv<3> > m_m_axi_arprot_converter_5_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arregion_converter_5; sc_signal< sc_bv<4> > m_m_axi_arregion_converter_5_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arqos_converter_5; sc_signal< sc_bv<4> > m_m_axi_arqos_converter_5_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_arvalid_converter_5; sc_signal< bool > m_m_axi_arvalid_converter_5_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_arready_converter_5; sc_signal< bool > m_m_axi_arready_converter_5_signal; xsc::common::vector2vector_converter<96,12>* mp_m_axi_rid_converter_5; sc_signal< sc_bv<12> > m_m_axi_rid_converter_5_signal; xsc::common::vector2vector_converter<256,32>* mp_m_axi_rdata_converter_5; sc_signal< sc_bv<32> > m_m_axi_rdata_converter_5_signal; xsc::common::vector2vector_converter<16,2>* mp_m_axi_rresp_converter_5; sc_signal< sc_bv<2> > m_m_axi_rresp_converter_5_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_rlast_converter_5; sc_signal< bool > m_m_axi_rlast_converter_5_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_rvalid_converter_5; sc_signal< bool > m_m_axi_rvalid_converter_5_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_rready_converter_5; sc_signal< bool > m_m_axi_rready_converter_5_signal; xtlm::xaximm_xtlm2pin_t<32,32,12,1,1,1,1,1>* mp_M06_AXI_transactor; xsc::common::vector2vector_converter<12,96>* mp_m_axi_awid_converter_6; sc_signal< sc_bv<12> > m_m_axi_awid_converter_6_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_awaddr_converter_6; sc_signal< sc_bv<32> > m_m_axi_awaddr_converter_6_signal; xsc::common::vector2vector_converter<8,64>* mp_m_axi_awlen_converter_6; sc_signal< sc_bv<8> > m_m_axi_awlen_converter_6_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_awsize_converter_6; sc_signal< sc_bv<3> > m_m_axi_awsize_converter_6_signal; xsc::common::vector2vector_converter<2,16>* mp_m_axi_awburst_converter_6; sc_signal< sc_bv<2> > m_m_axi_awburst_converter_6_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_awlock_converter_6; sc_signal< bool > m_m_axi_awlock_converter_6_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awcache_converter_6; sc_signal< sc_bv<4> > m_m_axi_awcache_converter_6_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_awprot_converter_6; sc_signal< sc_bv<3> > m_m_axi_awprot_converter_6_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awregion_converter_6; sc_signal< sc_bv<4> > m_m_axi_awregion_converter_6_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awqos_converter_6; sc_signal< sc_bv<4> > m_m_axi_awqos_converter_6_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_awvalid_converter_6; sc_signal< bool > m_m_axi_awvalid_converter_6_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_awready_converter_6; sc_signal< bool > m_m_axi_awready_converter_6_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_wdata_converter_6; sc_signal< sc_bv<32> > m_m_axi_wdata_converter_6_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_wstrb_converter_6; sc_signal< sc_bv<4> > m_m_axi_wstrb_converter_6_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_wlast_converter_6; sc_signal< bool > m_m_axi_wlast_converter_6_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_wvalid_converter_6; sc_signal< bool > m_m_axi_wvalid_converter_6_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_wready_converter_6; sc_signal< bool > m_m_axi_wready_converter_6_signal; xsc::common::vector2vector_converter<96,12>* mp_m_axi_bid_converter_6; sc_signal< sc_bv<12> > m_m_axi_bid_converter_6_signal; xsc::common::vector2vector_converter<16,2>* mp_m_axi_bresp_converter_6; sc_signal< sc_bv<2> > m_m_axi_bresp_converter_6_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_bvalid_converter_6; sc_signal< bool > m_m_axi_bvalid_converter_6_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_bready_converter_6; sc_signal< bool > m_m_axi_bready_converter_6_signal; xsc::common::vector2vector_converter<12,96>* mp_m_axi_arid_converter_6; sc_signal< sc_bv<12> > m_m_axi_arid_converter_6_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_araddr_converter_6; sc_signal< sc_bv<32> > m_m_axi_araddr_converter_6_signal; xsc::common::vector2vector_converter<8,64>* mp_m_axi_arlen_converter_6; sc_signal< sc_bv<8> > m_m_axi_arlen_converter_6_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_arsize_converter_6; sc_signal< sc_bv<3> > m_m_axi_arsize_converter_6_signal; xsc::common::vector2vector_converter<2,16>* mp_m_axi_arburst_converter_6; sc_signal< sc_bv<2> > m_m_axi_arburst_converter_6_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_arlock_converter_6; sc_signal< bool > m_m_axi_arlock_converter_6_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arcache_converter_6; sc_signal< sc_bv<4> > m_m_axi_arcache_converter_6_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_arprot_converter_6; sc_signal< sc_bv<3> > m_m_axi_arprot_converter_6_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arregion_converter_6; sc_signal< sc_bv<4> > m_m_axi_arregion_converter_6_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arqos_converter_6; sc_signal< sc_bv<4> > m_m_axi_arqos_converter_6_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_arvalid_converter_6; sc_signal< bool > m_m_axi_arvalid_converter_6_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_arready_converter_6; sc_signal< bool > m_m_axi_arready_converter_6_signal; xsc::common::vector2vector_converter<96,12>* mp_m_axi_rid_converter_6; sc_signal< sc_bv<12> > m_m_axi_rid_converter_6_signal; xsc::common::vector2vector_converter<256,32>* mp_m_axi_rdata_converter_6; sc_signal< sc_bv<32> > m_m_axi_rdata_converter_6_signal; xsc::common::vector2vector_converter<16,2>* mp_m_axi_rresp_converter_6; sc_signal< sc_bv<2> > m_m_axi_rresp_converter_6_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_rlast_converter_6; sc_signal< bool > m_m_axi_rlast_converter_6_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_rvalid_converter_6; sc_signal< bool > m_m_axi_rvalid_converter_6_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_rready_converter_6; sc_signal< bool > m_m_axi_rready_converter_6_signal; xtlm::xaximm_xtlm2pin_t<32,32,12,1,1,1,1,1>* mp_M07_AXI_transactor; xsc::common::vector2vector_converter<12,96>* mp_m_axi_awid_converter_7; sc_signal< sc_bv<12> > m_m_axi_awid_converter_7_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_awaddr_converter_7; sc_signal< sc_bv<32> > m_m_axi_awaddr_converter_7_signal; xsc::common::vector2vector_converter<8,64>* mp_m_axi_awlen_converter_7; sc_signal< sc_bv<8> > m_m_axi_awlen_converter_7_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_awsize_converter_7; sc_signal< sc_bv<3> > m_m_axi_awsize_converter_7_signal; xsc::common::vector2vector_converter<2,16>* mp_m_axi_awburst_converter_7; sc_signal< sc_bv<2> > m_m_axi_awburst_converter_7_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_awlock_converter_7; sc_signal< bool > m_m_axi_awlock_converter_7_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awcache_converter_7; sc_signal< sc_bv<4> > m_m_axi_awcache_converter_7_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_awprot_converter_7; sc_signal< sc_bv<3> > m_m_axi_awprot_converter_7_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awregion_converter_7; sc_signal< sc_bv<4> > m_m_axi_awregion_converter_7_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awqos_converter_7; sc_signal< sc_bv<4> > m_m_axi_awqos_converter_7_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_awvalid_converter_7; sc_signal< bool > m_m_axi_awvalid_converter_7_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_awready_converter_7; sc_signal< bool > m_m_axi_awready_converter_7_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_wdata_converter_7; sc_signal< sc_bv<32> > m_m_axi_wdata_converter_7_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_wstrb_converter_7; sc_signal< sc_bv<4> > m_m_axi_wstrb_converter_7_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_wlast_converter_7; sc_signal< bool > m_m_axi_wlast_converter_7_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_wvalid_converter_7; sc_signal< bool > m_m_axi_wvalid_converter_7_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_wready_converter_7; sc_signal< bool > m_m_axi_wready_converter_7_signal; xsc::common::vector2vector_converter<96,12>* mp_m_axi_bid_converter_7; sc_signal< sc_bv<12> > m_m_axi_bid_converter_7_signal; xsc::common::vector2vector_converter<16,2>* mp_m_axi_bresp_converter_7; sc_signal< sc_bv<2> > m_m_axi_bresp_converter_7_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_bvalid_converter_7; sc_signal< bool > m_m_axi_bvalid_converter_7_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_bready_converter_7; sc_signal< bool > m_m_axi_bready_converter_7_signal; xsc::common::vector2vector_converter<12,96>* mp_m_axi_arid_converter_7; sc_signal< sc_bv<12> > m_m_axi_arid_converter_7_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_araddr_converter_7; sc_signal< sc_bv<32> > m_m_axi_araddr_converter_7_signal; xsc::common::vector2vector_converter<8,64>* mp_m_axi_arlen_converter_7; sc_signal< sc_bv<8> > m_m_axi_arlen_converter_7_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_arsize_converter_7; sc_signal< sc_bv<3> > m_m_axi_arsize_converter_7_signal; xsc::common::vector2vector_converter<2,16>* mp_m_axi_arburst_converter_7; sc_signal< sc_bv<2> > m_m_axi_arburst_converter_7_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_arlock_converter_7; sc_signal< bool > m_m_axi_arlock_converter_7_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arcache_converter_7; sc_signal< sc_bv<4> > m_m_axi_arcache_converter_7_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_arprot_converter_7; sc_signal< sc_bv<3> > m_m_axi_arprot_converter_7_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arregion_converter_7; sc_signal< sc_bv<4> > m_m_axi_arregion_converter_7_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arqos_converter_7; sc_signal< sc_bv<4> > m_m_axi_arqos_converter_7_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_arvalid_converter_7; sc_signal< bool > m_m_axi_arvalid_converter_7_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_arready_converter_7; sc_signal< bool > m_m_axi_arready_converter_7_signal; xsc::common::vector2vector_converter<96,12>* mp_m_axi_rid_converter_7; sc_signal< sc_bv<12> > m_m_axi_rid_converter_7_signal; xsc::common::vector2vector_converter<256,32>* mp_m_axi_rdata_converter_7; sc_signal< sc_bv<32> > m_m_axi_rdata_converter_7_signal; xsc::common::vector2vector_converter<16,2>* mp_m_axi_rresp_converter_7; sc_signal< sc_bv<2> > m_m_axi_rresp_converter_7_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_rlast_converter_7; sc_signal< bool > m_m_axi_rlast_converter_7_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_rvalid_converter_7; sc_signal< bool > m_m_axi_rvalid_converter_7_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_rready_converter_7; sc_signal< bool > m_m_axi_rready_converter_7_signal; xsc::xsc_concatenator<256, 8> * mp_m_axi_concat_araddr; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_araddr_out_0; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_araddr_out_1; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_araddr_out_2; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_araddr_out_3; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_araddr_out_4; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_araddr_out_5; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_araddr_out_6; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_araddr_out_7; xsc::xsc_concatenator<16, 8> * mp_m_axi_concat_arburst; sc_signal<sc_dt::sc_bv<16> > m_axi_concat_arburst_out_0; sc_signal<sc_dt::sc_bv<16> > m_axi_concat_arburst_out_1; sc_signal<sc_dt::sc_bv<16> > m_axi_concat_arburst_out_2; sc_signal<sc_dt::sc_bv<16> > m_axi_concat_arburst_out_3; sc_signal<sc_dt::sc_bv<16> > m_axi_concat_arburst_out_4; sc_signal<sc_dt::sc_bv<16> > m_axi_concat_arburst_out_5; sc_signal<sc_dt::sc_bv<16> > m_axi_concat_arburst_out_6; sc_signal<sc_dt::sc_bv<16> > m_axi_concat_arburst_out_7; xsc::xsc_concatenator<32, 8> * mp_m_axi_concat_arcache; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arcache_out_0; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arcache_out_1; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arcache_out_2; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arcache_out_3; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arcache_out_4; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arcache_out_5; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arcache_out_6; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arcache_out_7; xsc::xsc_concatenator<96, 8> * mp_m_axi_concat_arid; sc_signal<sc_dt::sc_bv<96> > m_axi_concat_arid_out_0; sc_signal<sc_dt::sc_bv<96> > m_axi_concat_arid_out_1; sc_signal<sc_dt::sc_bv<96> > m_axi_concat_arid_out_2; sc_signal<sc_dt::sc_bv<96> > m_axi_concat_arid_out_3; sc_signal<sc_dt::sc_bv<96> > m_axi_concat_arid_out_4; sc_signal<sc_dt::sc_bv<96> > m_axi_concat_arid_out_5; sc_signal<sc_dt::sc_bv<96> > m_axi_concat_arid_out_6; sc_signal<sc_dt::sc_bv<96> > m_axi_concat_arid_out_7; xsc::xsc_concatenator<64, 8> * mp_m_axi_concat_arlen; sc_signal<sc_dt::sc_bv<64> > m_axi_concat_arlen_out_0; sc_signal<sc_dt::sc_bv<64> > m_axi_concat_arlen_out_1; sc_signal<sc_dt::sc_bv<64> > m_axi_concat_arlen_out_2; sc_signal<sc_dt::sc_bv<64> > m_axi_concat_arlen_out_3; sc_signal<sc_dt::sc_bv<64> > m_axi_concat_arlen_out_4; sc_signal<sc_dt::sc_bv<64> > m_axi_concat_arlen_out_5; sc_signal<sc_dt::sc_bv<64> > m_axi_concat_arlen_out_6; sc_signal<sc_dt::sc_bv<64> > m_axi_concat_arlen_out_7; xsc::xsc_concatenator<8, 8> * mp_m_axi_concat_arlock; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_arlock_out_0; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_arlock_out_1; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_arlock_out_2; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_arlock_out_3; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_arlock_out_4; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_arlock_out_5; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_arlock_out_6; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_arlock_out_7; xsc::xsc_concatenator<24, 8> * mp_m_axi_concat_arprot; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_arprot_out_0; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_arprot_out_1; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_arprot_out_2; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_arprot_out_3; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_arprot_out_4; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_arprot_out_5; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_arprot_out_6; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_arprot_out_7; xsc::xsc_concatenator<32, 8> * mp_m_axi_concat_arqos; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arqos_out_0; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arqos_out_1; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arqos_out_2; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arqos_out_3; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arqos_out_4; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arqos_out_5; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arqos_out_6; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arqos_out_7; xsc::xsc_split<8, 8> * mp_m_axi_split_arready; sc_signal<sc_dt::sc_bv<8> > m_axi_split_arready_out_0; sc_signal<sc_dt::sc_bv<8> > m_axi_split_arready_out_1; sc_signal<sc_dt::sc_bv<8> > m_axi_split_arready_out_2; sc_signal<sc_dt::sc_bv<8> > m_axi_split_arready_out_3; sc_signal<sc_dt::sc_bv<8> > m_axi_split_arready_out_4; sc_signal<sc_dt::sc_bv<8> > m_axi_split_arready_out_5; sc_signal<sc_dt::sc_bv<8> > m_axi_split_arready_out_6; sc_signal<sc_dt::sc_bv<8> > m_axi_split_arready_out_7; xsc::xsc_concatenator<32, 8> * mp_m_axi_concat_arregion; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arregion_out_0; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arregion_out_1; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arregion_out_2; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arregion_out_3; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arregion_out_4; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arregion_out_5; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arregion_out_6; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arregion_out_7; xsc::xsc_concatenator<24, 8> * mp_m_axi_concat_arsize; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_arsize_out_0; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_arsize_out_1; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_arsize_out_2; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_arsize_out_3; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_arsize_out_4; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_arsize_out_5; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_arsize_out_6; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_arsize_out_7; xsc::xsc_concatenator<8, 8> * mp_m_axi_concat_arvalid; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_arvalid_out_0; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_arvalid_out_1; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_arvalid_out_2; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_arvalid_out_3; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_arvalid_out_4; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_arvalid_out_5; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_arvalid_out_6; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_arvalid_out_7; xsc::xsc_concatenator<256, 8> * mp_m_axi_concat_awaddr; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_awaddr_out_0; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_awaddr_out_1; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_awaddr_out_2; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_awaddr_out_3; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_awaddr_out_4; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_awaddr_out_5; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_awaddr_out_6; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_awaddr_out_7; xsc::xsc_concatenator<16, 8> * mp_m_axi_concat_awburst; sc_signal<sc_dt::sc_bv<16> > m_axi_concat_awburst_out_0; sc_signal<sc_dt::sc_bv<16> > m_axi_concat_awburst_out_1; sc_signal<sc_dt::sc_bv<16> > m_axi_concat_awburst_out_2; sc_signal<sc_dt::sc_bv<16> > m_axi_concat_awburst_out_3; sc_signal<sc_dt::sc_bv<16> > m_axi_concat_awburst_out_4; sc_signal<sc_dt::sc_bv<16> > m_axi_concat_awburst_out_5; sc_signal<sc_dt::sc_bv<16> > m_axi_concat_awburst_out_6; sc_signal<sc_dt::sc_bv<16> > m_axi_concat_awburst_out_7; xsc::xsc_concatenator<32, 8> * mp_m_axi_concat_awcache; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awcache_out_0; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awcache_out_1; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awcache_out_2; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awcache_out_3; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awcache_out_4; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awcache_out_5; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awcache_out_6; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awcache_out_7; xsc::xsc_concatenator<96, 8> * mp_m_axi_concat_awid; sc_signal<sc_dt::sc_bv<96> > m_axi_concat_awid_out_0; sc_signal<sc_dt::sc_bv<96> > m_axi_concat_awid_out_1; sc_signal<sc_dt::sc_bv<96> > m_axi_concat_awid_out_2; sc_signal<sc_dt::sc_bv<96> > m_axi_concat_awid_out_3; sc_signal<sc_dt::sc_bv<96> > m_axi_concat_awid_out_4; sc_signal<sc_dt::sc_bv<96> > m_axi_concat_awid_out_5; sc_signal<sc_dt::sc_bv<96> > m_axi_concat_awid_out_6; sc_signal<sc_dt::sc_bv<96> > m_axi_concat_awid_out_7; xsc::xsc_concatenator<64, 8> * mp_m_axi_concat_awlen; sc_signal<sc_dt::sc_bv<64> > m_axi_concat_awlen_out_0; sc_signal<sc_dt::sc_bv<64> > m_axi_concat_awlen_out_1; sc_signal<sc_dt::sc_bv<64> > m_axi_concat_awlen_out_2; sc_signal<sc_dt::sc_bv<64> > m_axi_concat_awlen_out_3; sc_signal<sc_dt::sc_bv<64> > m_axi_concat_awlen_out_4; sc_signal<sc_dt::sc_bv<64> > m_axi_concat_awlen_out_5; sc_signal<sc_dt::sc_bv<64> > m_axi_concat_awlen_out_6; sc_signal<sc_dt::sc_bv<64> > m_axi_concat_awlen_out_7; xsc::xsc_concatenator<8, 8> * mp_m_axi_concat_awlock; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_awlock_out_0; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_awlock_out_1; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_awlock_out_2; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_awlock_out_3; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_awlock_out_4; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_awlock_out_5; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_awlock_out_6; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_awlock_out_7; xsc::xsc_concatenator<24, 8> * mp_m_axi_concat_awprot; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_awprot_out_0; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_awprot_out_1; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_awprot_out_2; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_awprot_out_3; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_awprot_out_4; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_awprot_out_5; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_awprot_out_6; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_awprot_out_7; xsc::xsc_concatenator<32, 8> * mp_m_axi_concat_awqos; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awqos_out_0; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awqos_out_1; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awqos_out_2; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awqos_out_3; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awqos_out_4; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awqos_out_5; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awqos_out_6; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awqos_out_7; xsc::xsc_split<8, 8> * mp_m_axi_split_awready; sc_signal<sc_dt::sc_bv<8> > m_axi_split_awready_out_0; sc_signal<sc_dt::sc_bv<8> > m_axi_split_awready_out_1; sc_signal<sc_dt::sc_bv<8> > m_axi_split_awready_out_2; sc_signal<sc_dt::sc_bv<8> > m_axi_split_awready_out_3; sc_signal<sc_dt::sc_bv<8> > m_axi_split_awready_out_4; sc_signal<sc_dt::sc_bv<8> > m_axi_split_awready_out_5; sc_signal<sc_dt::sc_bv<8> > m_axi_split_awready_out_6; sc_signal<sc_dt::sc_bv<8> > m_axi_split_awready_out_7; xsc::xsc_concatenator<32, 8> * mp_m_axi_concat_awregion; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awregion_out_0; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awregion_out_1; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awregion_out_2; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awregion_out_3; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awregion_out_4; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awregion_out_5; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awregion_out_6; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awregion_out_7; xsc::xsc_concatenator<24, 8> * mp_m_axi_concat_awsize; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_awsize_out_0; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_awsize_out_1; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_awsize_out_2; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_awsize_out_3; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_awsize_out_4; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_awsize_out_5; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_awsize_out_6; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_awsize_out_7; xsc::xsc_concatenator<8, 8> * mp_m_axi_concat_awvalid; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_awvalid_out_0; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_awvalid_out_1; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_awvalid_out_2; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_awvalid_out_3; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_awvalid_out_4; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_awvalid_out_5; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_awvalid_out_6; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_awvalid_out_7; xsc::xsc_split<96, 8> * mp_m_axi_split_bid; sc_signal<sc_dt::sc_bv<96> > m_axi_split_bid_out_0; sc_signal<sc_dt::sc_bv<96> > m_axi_split_bid_out_1; sc_signal<sc_dt::sc_bv<96> > m_axi_split_bid_out_2; sc_signal<sc_dt::sc_bv<96> > m_axi_split_bid_out_3; sc_signal<sc_dt::sc_bv<96> > m_axi_split_bid_out_4; sc_signal<sc_dt::sc_bv<96> > m_axi_split_bid_out_5; sc_signal<sc_dt::sc_bv<96> > m_axi_split_bid_out_6; sc_signal<sc_dt::sc_bv<96> > m_axi_split_bid_out_7; xsc::xsc_concatenator<8, 8> * mp_m_axi_concat_bready; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_bready_out_0; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_bready_out_1; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_bready_out_2; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_bready_out_3; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_bready_out_4; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_bready_out_5; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_bready_out_6; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_bready_out_7; xsc::xsc_split<16, 8> * mp_m_axi_split_bresp; sc_signal<sc_dt::sc_bv<16> > m_axi_split_bresp_out_0; sc_signal<sc_dt::sc_bv<16> > m_axi_split_bresp_out_1; sc_signal<sc_dt::sc_bv<16> > m_axi_split_bresp_out_2; sc_signal<sc_dt::sc_bv<16> > m_axi_split_bresp_out_3; sc_signal<sc_dt::sc_bv<16> > m_axi_split_bresp_out_4; sc_signal<sc_dt::sc_bv<16> > m_axi_split_bresp_out_5; sc_signal<sc_dt::sc_bv<16> > m_axi_split_bresp_out_6; sc_signal<sc_dt::sc_bv<16> > m_axi_split_bresp_out_7; xsc::xsc_split<8, 8> * mp_m_axi_split_bvalid; sc_signal<sc_dt::sc_bv<8> > m_axi_split_bvalid_out_0; sc_signal<sc_dt::sc_bv<8> > m_axi_split_bvalid_out_1; sc_signal<sc_dt::sc_bv<8> > m_axi_split_bvalid_out_2; sc_signal<sc_dt::sc_bv<8> > m_axi_split_bvalid_out_3; sc_signal<sc_dt::sc_bv<8> > m_axi_split_bvalid_out_4; sc_signal<sc_dt::sc_bv<8> > m_axi_split_bvalid_out_5; sc_signal<sc_dt::sc_bv<8> > m_axi_split_bvalid_out_6; sc_signal<sc_dt::sc_bv<8> > m_axi_split_bvalid_out_7; xsc::xsc_split<256, 8> * mp_m_axi_split_rdata; sc_signal<sc_dt::sc_bv<256> > m_axi_split_rdata_out_0; sc_signal<sc_dt::sc_bv<256> > m_axi_split_rdata_out_1; sc_signal<sc_dt::sc_bv<256> > m_axi_split_rdata_out_2; sc_signal<sc_dt::sc_bv<256> > m_axi_split_rdata_out_3; sc_signal<sc_dt::sc_bv<256> > m_axi_split_rdata_out_4; sc_signal<sc_dt::sc_bv<256> > m_axi_split_rdata_out_5; sc_signal<sc_dt::sc_bv<256> > m_axi_split_rdata_out_6; sc_signal<sc_dt::sc_bv<256> > m_axi_split_rdata_out_7; xsc::xsc_split<96, 8> * mp_m_axi_split_rid; sc_signal<sc_dt::sc_bv<96> > m_axi_split_rid_out_0; sc_signal<sc_dt::sc_bv<96> > m_axi_split_rid_out_1; sc_signal<sc_dt::sc_bv<96> > m_axi_split_rid_out_2; sc_signal<sc_dt::sc_bv<96> > m_axi_split_rid_out_3; sc_signal<sc_dt::sc_bv<96> > m_axi_split_rid_out_4; sc_signal<sc_dt::sc_bv<96> > m_axi_split_rid_out_5; sc_signal<sc_dt::sc_bv<96> > m_axi_split_rid_out_6; sc_signal<sc_dt::sc_bv<96> > m_axi_split_rid_out_7; xsc::xsc_split<8, 8> * mp_m_axi_split_rlast; sc_signal<sc_dt::sc_bv<8> > m_axi_split_rlast_out_0; sc_signal<sc_dt::sc_bv<8> > m_axi_split_rlast_out_1; sc_signal<sc_dt::sc_bv<8> > m_axi_split_rlast_out_2; sc_signal<sc_dt::sc_bv<8> > m_axi_split_rlast_out_3; sc_signal<sc_dt::sc_bv<8> > m_axi_split_rlast_out_4; sc_signal<sc_dt::sc_bv<8> > m_axi_split_rlast_out_5; sc_signal<sc_dt::sc_bv<8> > m_axi_split_rlast_out_6; sc_signal<sc_dt::sc_bv<8> > m_axi_split_rlast_out_7; xsc::xsc_concatenator<8, 8> * mp_m_axi_concat_rready; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_rready_out_0; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_rready_out_1; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_rready_out_2; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_rready_out_3; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_rready_out_4; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_rready_out_5; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_rready_out_6; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_rready_out_7; xsc::xsc_split<16, 8> * mp_m_axi_split_rresp; sc_signal<sc_dt::sc_bv<16> > m_axi_split_rresp_out_0; sc_signal<sc_dt::sc_bv<16> > m_axi_split_rresp_out_1; sc_signal<sc_dt::sc_bv<16> > m_axi_split_rresp_out_2; sc_signal<sc_dt::sc_bv<16> > m_axi_split_rresp_out_3; sc_signal<sc_dt::sc_bv<16> > m_axi_split_rresp_out_4; sc_signal<sc_dt::sc_bv<16> > m_axi_split_rresp_out_5; sc_signal<sc_dt::sc_bv<16> > m_axi_split_rresp_out_6; sc_signal<sc_dt::sc_bv<16> > m_axi_split_rresp_out_7; xsc::xsc_split<8, 8> * mp_m_axi_split_rvalid; sc_signal<sc_dt::sc_bv<8> > m_axi_split_rvalid_out_0; sc_signal<sc_dt::sc_bv<8> > m_axi_split_rvalid_out_1; sc_signal<sc_dt::sc_bv<8> > m_axi_split_rvalid_out_2; sc_signal<sc_dt::sc_bv<8> > m_axi_split_rvalid_out_3; sc_signal<sc_dt::sc_bv<8> > m_axi_split_rvalid_out_4; sc_signal<sc_dt::sc_bv<8> > m_axi_split_rvalid_out_5; sc_signal<sc_dt::sc_bv<8> > m_axi_split_rvalid_out_6; sc_signal<sc_dt::sc_bv<8> > m_axi_split_rvalid_out_7; xsc::xsc_concatenator<256, 8> * mp_m_axi_concat_wdata; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_wdata_out_0; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_wdata_out_1; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_wdata_out_2; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_wdata_out_3; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_wdata_out_4; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_wdata_out_5; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_wdata_out_6; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_wdata_out_7; xsc::xsc_concatenator<8, 8> * mp_m_axi_concat_wlast; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_wlast_out_0; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_wlast_out_1; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_wlast_out_2; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_wlast_out_3; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_wlast_out_4; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_wlast_out_5; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_wlast_out_6; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_wlast_out_7; xsc::xsc_split<8, 8> * mp_m_axi_split_wready; sc_signal<sc_dt::sc_bv<8> > m_axi_split_wready_out_0; sc_signal<sc_dt::sc_bv<8> > m_axi_split_wready_out_1; sc_signal<sc_dt::sc_bv<8> > m_axi_split_wready_out_2; sc_signal<sc_dt::sc_bv<8> > m_axi_split_wready_out_3; sc_signal<sc_dt::sc_bv<8> > m_axi_split_wready_out_4; sc_signal<sc_dt::sc_bv<8> > m_axi_split_wready_out_5; sc_signal<sc_dt::sc_bv<8> > m_axi_split_wready_out_6; sc_signal<sc_dt::sc_bv<8> > m_axi_split_wready_out_7; xsc::xsc_concatenator<32, 8> * mp_m_axi_concat_wstrb; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_wstrb_out_0; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_wstrb_out_1; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_wstrb_out_2; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_wstrb_out_3; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_wstrb_out_4; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_wstrb_out_5; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_wstrb_out_6; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_wstrb_out_7; xsc::xsc_concatenator<8, 8> * mp_m_axi_concat_wvalid; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_wvalid_out_0; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_wvalid_out_1; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_wvalid_out_2; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_wvalid_out_3; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_wvalid_out_4; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_wvalid_out_5; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_wvalid_out_6; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_wvalid_out_7; }; #endif // XM_SYSTEMC #ifdef RIVIERA class DllExport video_cp_tier2_xbar_2_0 : public video_cp_tier2_xbar_2_0_sc { public: video_cp_tier2_xbar_2_0(const sc_core::sc_module_name& nm); virtual ~video_cp_tier2_xbar_2_0(); // module pin-to-pin RTL interface sc_core::sc_in< bool > aclk; sc_core::sc_in< bool > aresetn; sc_core::sc_in< sc_dt::sc_bv<12> > s_axi_awid; sc_core::sc_in< sc_dt::sc_bv<32> > s_axi_awaddr; sc_core::sc_in< sc_dt::sc_bv<8> > s_axi_awlen; sc_core::sc_in< sc_dt::sc_bv<3> > s_axi_awsize; sc_core::sc_in< sc_dt::sc_bv<2> > s_axi_awburst; sc_core::sc_in< sc_dt::sc_bv<1> > s_axi_awlock; sc_core::sc_in< sc_dt::sc_bv<4> > s_axi_awcache; sc_core::sc_in< sc_dt::sc_bv<3> > s_axi_awprot; sc_core::sc_in< sc_dt::sc_bv<4> > s_axi_awqos; sc_core::sc_in< sc_dt::sc_bv<1> > s_axi_awvalid; sc_core::sc_out< sc_dt::sc_bv<1> > s_axi_awready; sc_core::sc_in< sc_dt::sc_bv<32> > s_axi_wdata; sc_core::sc_in< sc_dt::sc_bv<4> > s_axi_wstrb; sc_core::sc_in< sc_dt::sc_bv<1> > s_axi_wlast; sc_core::sc_in< sc_dt::sc_bv<1> > s_axi_wvalid; sc_core::sc_out< sc_dt::sc_bv<1> > s_axi_wready; sc_core::sc_out< sc_dt::sc_bv<12> > s_axi_bid; sc_core::sc_out< sc_dt::sc_bv<2> > s_axi_bresp; sc_core::sc_out< sc_dt::sc_bv<1> > s_axi_bvalid; sc_core::sc_in< sc_dt::sc_bv<1> > s_axi_bready; sc_core::sc_in< sc_dt::sc_bv<12> > s_axi_arid; sc_core::sc_in< sc_dt::sc_bv<32> > s_axi_araddr; sc_core::sc_in< sc_dt::sc_bv<8> > s_axi_arlen; sc_core::sc_in< sc_dt::sc_bv<3> > s_axi_arsize; sc_core::sc_in< sc_dt::sc_bv<2> > s_axi_arburst; sc_core::sc_in< sc_dt::sc_bv<1> > s_axi_arlock; sc_core::sc_in< sc_dt::sc_bv<4> > s_axi_arcache; sc_core::sc_in< sc_dt::sc_bv<3> > s_axi_arprot; sc_core::sc_in< sc_dt::sc_bv<4> > s_axi_arqos; sc_core::sc_in< sc_dt::sc_bv<1> > s_axi_arvalid; sc_core::sc_out< sc_dt::sc_bv<1> > s_axi_arready; sc_core::sc_out< sc_dt::sc_bv<12> > s_axi_rid; sc_core::sc_out< sc_dt::sc_bv<32> > s_axi_rdata; sc_core::sc_out< sc_dt::sc_bv<2> > s_axi_rresp; sc_core::sc_out< sc_dt::sc_bv<1> > s_axi_rlast; sc_core::sc_out< sc_dt::sc_bv<1> > s_axi_rvalid; sc_core::sc_in< sc_dt::sc_bv<1> > s_axi_rready; sc_core::sc_out< sc_dt::sc_bv<96> > m_axi_awid; sc_core::sc_out< sc_dt::sc_bv<256> > m_axi_awaddr; sc_core::sc_out< sc_dt::sc_bv<64> > m_axi_awlen; sc_core::sc_out< sc_dt::sc_bv<24> > m_axi_awsize; sc_core::sc_out< sc_dt::sc_bv<16> > m_axi_awburst; sc_core::sc_out< sc_dt::sc_bv<8> > m_axi_awlock; sc_core::sc_out< sc_dt::sc_bv<32> > m_axi_awcache; sc_core::sc_out< sc_dt::sc_bv<24> > m_axi_awprot; sc_core::sc_out< sc_dt::sc_bv<32> > m_axi_awregion; sc_core::sc_out< sc_dt::sc_bv<32> > m_axi_awqos; sc_core::sc_out< sc_dt::sc_bv<8> > m_axi_awvalid; sc_core::sc_in< sc_dt::sc_bv<8> > m_axi_awready; sc_core::sc_out< sc_dt::sc_bv<256> > m_axi_wdata; sc_core::sc_out< sc_dt::sc_bv<32> > m_axi_wstrb; sc_core::sc_out< sc_dt::sc_bv<8> > m_axi_wlast; sc_core::sc_out< sc_dt::sc_bv<8> > m_axi_wvalid; sc_core::sc_in< sc_dt::sc_bv<8> > m_axi_wready; sc_core::sc_in< sc_dt::sc_bv<96> > m_axi_bid; sc_core::sc_in< sc_dt::sc_bv<16> > m_axi_bresp; sc_core::sc_in< sc_dt::sc_bv<8> > m_axi_bvalid; sc_core::sc_out< sc_dt::sc_bv<8> > m_axi_bready; sc_core::sc_out< sc_dt::sc_bv<96> > m_axi_arid; sc_core::sc_out< sc_dt::sc_bv<256> > m_axi_araddr; sc_core::sc_out< sc_dt::sc_bv<64> > m_axi_arlen; sc_core::sc_out< sc_dt::sc_bv<24> > m_axi_arsize; sc_core::sc_out< sc_dt::sc_bv<16> > m_axi_arburst; sc_core::sc_out< sc_dt::sc_bv<8> > m_axi_arlock; sc_core::sc_out< sc_dt::sc_bv<32> > m_axi_arcache; sc_core::sc_out< sc_dt::sc_bv<24> > m_axi_arprot; sc_core::sc_out< sc_dt::sc_bv<32> > m_axi_arregion; sc_core::sc_out< sc_dt::sc_bv<32> > m_axi_arqos; sc_core::sc_out< sc_dt::sc_bv<8> > m_axi_arvalid; sc_core::sc_in< sc_dt::sc_bv<8> > m_axi_arready; sc_core::sc_in< sc_dt::sc_bv<96> > m_axi_rid; sc_core::sc_in< sc_dt::sc_bv<256> > m_axi_rdata; sc_core::sc_in< sc_dt::sc_bv<16> > m_axi_rresp; sc_core::sc_in< sc_dt::sc_bv<8> > m_axi_rlast; sc_core::sc_in< sc_dt::sc_bv<8> > m_axi_rvalid; sc_core::sc_out< sc_dt::sc_bv<8> > m_axi_rready; // Dummy Signals for IP Ports protected: virtual void before_end_of_elaboration(); private: xtlm::xaximm_pin2xtlm_t<32,32,12,1,1,1,1,1>* mp_S00_AXI_transactor; xsc::common::vectorN2scalar_converter<1>* mp_s_axi_awlock_converter; sc_signal< bool > m_s_axi_awlock_converter_signal; xsc::common::vectorN2scalar_converter<1>* mp_s_axi_awvalid_converter; sc_signal< bool > m_s_axi_awvalid_converter_signal; xsc::common::scalar2vectorN_converter<1>* mp_s_axi_awready_converter; sc_signal< bool > m_s_axi_awready_converter_signal; xsc::common::vectorN2scalar_converter<1>* mp_s_axi_wlast_converter; sc_signal< bool > m_s_axi_wlast_converter_signal; xsc::common::vectorN2scalar_converter<1>* mp_s_axi_wvalid_converter; sc_signal< bool > m_s_axi_wvalid_converter_signal; xsc::common::scalar2vectorN_converter<1>* mp_s_axi_wready_converter; sc_signal< bool > m_s_axi_wready_converter_signal; xsc::common::scalar2vectorN_converter<1>* mp_s_axi_bvalid_converter; sc_signal< bool > m_s_axi_bvalid_converter_signal; xsc::common::vectorN2scalar_converter<1>* mp_s_axi_bready_converter; sc_signal< bool > m_s_axi_bready_converter_signal; xsc::common::vectorN2scalar_converter<1>* mp_s_axi_arlock_converter; sc_signal< bool > m_s_axi_arlock_converter_signal; xsc::common::vectorN2scalar_converter<1>* mp_s_axi_arvalid_converter; sc_signal< bool > m_s_axi_arvalid_converter_signal; xsc::common::scalar2vectorN_converter<1>* mp_s_axi_arready_converter; sc_signal< bool > m_s_axi_arready_converter_signal; xsc::common::scalar2vectorN_converter<1>* mp_s_axi_rlast_converter; sc_signal< bool > m_s_axi_rlast_converter_signal; xsc::common::scalar2vectorN_converter<1>* mp_s_axi_rvalid_converter; sc_signal< bool > m_s_axi_rvalid_converter_signal; xsc::common::vectorN2scalar_converter<1>* mp_s_axi_rready_converter; sc_signal< bool > m_s_axi_rready_converter_signal; xtlm::xaximm_xtlm2pin_t<32,32,12,1,1,1,1,1>* mp_M00_AXI_transactor; xsc::common::vector2vector_converter<12,96>* mp_m_axi_awid_converter_0; sc_signal< sc_bv<12> > m_m_axi_awid_converter_0_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_awaddr_converter_0; sc_signal< sc_bv<32> > m_m_axi_awaddr_converter_0_signal; xsc::common::vector2vector_converter<8,64>* mp_m_axi_awlen_converter_0; sc_signal< sc_bv<8> > m_m_axi_awlen_converter_0_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_awsize_converter_0; sc_signal< sc_bv<3> > m_m_axi_awsize_converter_0_signal; xsc::common::vector2vector_converter<2,16>* mp_m_axi_awburst_converter_0; sc_signal< sc_bv<2> > m_m_axi_awburst_converter_0_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_awlock_converter_0; sc_signal< bool > m_m_axi_awlock_converter_0_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awcache_converter_0; sc_signal< sc_bv<4> > m_m_axi_awcache_converter_0_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_awprot_converter_0; sc_signal< sc_bv<3> > m_m_axi_awprot_converter_0_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awregion_converter_0; sc_signal< sc_bv<4> > m_m_axi_awregion_converter_0_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awqos_converter_0; sc_signal< sc_bv<4> > m_m_axi_awqos_converter_0_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_awvalid_converter_0; sc_signal< bool > m_m_axi_awvalid_converter_0_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_awready_converter_0; sc_signal< bool > m_m_axi_awready_converter_0_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_wdata_converter_0; sc_signal< sc_bv<32> > m_m_axi_wdata_converter_0_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_wstrb_converter_0; sc_signal< sc_bv<4> > m_m_axi_wstrb_converter_0_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_wlast_converter_0; sc_signal< bool > m_m_axi_wlast_converter_0_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_wvalid_converter_0; sc_signal< bool > m_m_axi_wvalid_converter_0_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_wready_converter_0; sc_signal< bool > m_m_axi_wready_converter_0_signal; xsc::common::vector2vector_converter<96,12>* mp_m_axi_bid_converter_0; sc_signal< sc_bv<12> > m_m_axi_bid_converter_0_signal; xsc::common::vector2vector_converter<16,2>* mp_m_axi_bresp_converter_0; sc_signal< sc_bv<2> > m_m_axi_bresp_converter_0_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_bvalid_converter_0; sc_signal< bool > m_m_axi_bvalid_converter_0_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_bready_converter_0; sc_signal< bool > m_m_axi_bready_converter_0_signal; xsc::common::vector2vector_converter<12,96>* mp_m_axi_arid_converter_0; sc_signal< sc_bv<12> > m_m_axi_arid_converter_0_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_araddr_converter_0; sc_signal< sc_bv<32> > m_m_axi_araddr_converter_0_signal; xsc::common::vector2vector_converter<8,64>* mp_m_axi_arlen_converter_0; sc_signal< sc_bv<8> > m_m_axi_arlen_converter_0_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_arsize_converter_0; sc_signal< sc_bv<3> > m_m_axi_arsize_converter_0_signal; xsc::common::vector2vector_converter<2,16>* mp_m_axi_arburst_converter_0; sc_signal< sc_bv<2> > m_m_axi_arburst_converter_0_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_arlock_converter_0; sc_signal< bool > m_m_axi_arlock_converter_0_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arcache_converter_0; sc_signal< sc_bv<4> > m_m_axi_arcache_converter_0_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_arprot_converter_0; sc_signal< sc_bv<3> > m_m_axi_arprot_converter_0_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arregion_converter_0; sc_signal< sc_bv<4> > m_m_axi_arregion_converter_0_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arqos_converter_0; sc_signal< sc_bv<4> > m_m_axi_arqos_converter_0_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_arvalid_converter_0; sc_signal< bool > m_m_axi_arvalid_converter_0_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_arready_converter_0; sc_signal< bool > m_m_axi_arready_converter_0_signal; xsc::common::vector2vector_converter<96,12>* mp_m_axi_rid_converter_0; sc_signal< sc_bv<12> > m_m_axi_rid_converter_0_signal; xsc::common::vector2vector_converter<256,32>* mp_m_axi_rdata_converter_0; sc_signal< sc_bv<32> > m_m_axi_rdata_converter_0_signal; xsc::common::vector2vector_converter<16,2>* mp_m_axi_rresp_converter_0; sc_signal< sc_bv<2> > m_m_axi_rresp_converter_0_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_rlast_converter_0; sc_signal< bool > m_m_axi_rlast_converter_0_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_rvalid_converter_0; sc_signal< bool > m_m_axi_rvalid_converter_0_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_rready_converter_0; sc_signal< bool > m_m_axi_rready_converter_0_signal; xtlm::xaximm_xtlm2pin_t<32,32,12,1,1,1,1,1>* mp_M01_AXI_transactor; xsc::common::vector2vector_converter<12,96>* mp_m_axi_awid_converter_1; sc_signal< sc_bv<12> > m_m_axi_awid_converter_1_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_awaddr_converter_1; sc_signal< sc_bv<32> > m_m_axi_awaddr_converter_1_signal; xsc::common::vector2vector_converter<8,64>* mp_m_axi_awlen_converter_1; sc_signal< sc_bv<8> > m_m_axi_awlen_converter_1_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_awsize_converter_1; sc_signal< sc_bv<3> > m_m_axi_awsize_converter_1_signal; xsc::common::vector2vector_converter<2,16>* mp_m_axi_awburst_converter_1; sc_signal< sc_bv<2> > m_m_axi_awburst_converter_1_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_awlock_converter_1; sc_signal< bool > m_m_axi_awlock_converter_1_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awcache_converter_1; sc_signal< sc_bv<4> > m_m_axi_awcache_converter_1_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_awprot_converter_1; sc_signal< sc_bv<3> > m_m_axi_awprot_converter_1_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awregion_converter_1; sc_signal< sc_bv<4> > m_m_axi_awregion_converter_1_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awqos_converter_1; sc_signal< sc_bv<4> > m_m_axi_awqos_converter_1_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_awvalid_converter_1; sc_signal< bool > m_m_axi_awvalid_converter_1_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_awready_converter_1; sc_signal< bool > m_m_axi_awready_converter_1_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_wdata_converter_1; sc_signal< sc_bv<32> > m_m_axi_wdata_converter_1_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_wstrb_converter_1; sc_signal< sc_bv<4> > m_m_axi_wstrb_converter_1_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_wlast_converter_1; sc_signal< bool > m_m_axi_wlast_converter_1_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_wvalid_converter_1; sc_signal< bool > m_m_axi_wvalid_converter_1_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_wready_converter_1; sc_signal< bool > m_m_axi_wready_converter_1_signal; xsc::common::vector2vector_converter<96,12>* mp_m_axi_bid_converter_1; sc_signal< sc_bv<12> > m_m_axi_bid_converter_1_signal; xsc::common::vector2vector_converter<16,2>* mp_m_axi_bresp_converter_1; sc_signal< sc_bv<2> > m_m_axi_bresp_converter_1_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_bvalid_converter_1; sc_signal< bool > m_m_axi_bvalid_converter_1_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_bready_converter_1; sc_signal< bool > m_m_axi_bready_converter_1_signal; xsc::common::vector2vector_converter<12,96>* mp_m_axi_arid_converter_1; sc_signal< sc_bv<12> > m_m_axi_arid_converter_1_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_araddr_converter_1; sc_signal< sc_bv<32> > m_m_axi_araddr_converter_1_signal; xsc::common::vector2vector_converter<8,64>* mp_m_axi_arlen_converter_1; sc_signal< sc_bv<8> > m_m_axi_arlen_converter_1_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_arsize_converter_1; sc_signal< sc_bv<3> > m_m_axi_arsize_converter_1_signal; xsc::common::vector2vector_converter<2,16>* mp_m_axi_arburst_converter_1; sc_signal< sc_bv<2> > m_m_axi_arburst_converter_1_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_arlock_converter_1; sc_signal< bool > m_m_axi_arlock_converter_1_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arcache_converter_1; sc_signal< sc_bv<4> > m_m_axi_arcache_converter_1_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_arprot_converter_1; sc_signal< sc_bv<3> > m_m_axi_arprot_converter_1_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arregion_converter_1; sc_signal< sc_bv<4> > m_m_axi_arregion_converter_1_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arqos_converter_1; sc_signal< sc_bv<4> > m_m_axi_arqos_converter_1_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_arvalid_converter_1; sc_signal< bool > m_m_axi_arvalid_converter_1_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_arready_converter_1; sc_signal< bool > m_m_axi_arready_converter_1_signal; xsc::common::vector2vector_converter<96,12>* mp_m_axi_rid_converter_1; sc_signal< sc_bv<12> > m_m_axi_rid_converter_1_signal; xsc::common::vector2vector_converter<256,32>* mp_m_axi_rdata_converter_1; sc_signal< sc_bv<32> > m_m_axi_rdata_converter_1_signal; xsc::common::vector2vector_converter<16,2>* mp_m_axi_rresp_converter_1; sc_signal< sc_bv<2> > m_m_axi_rresp_converter_1_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_rlast_converter_1; sc_signal< bool > m_m_axi_rlast_converter_1_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_rvalid_converter_1; sc_signal< bool > m_m_axi_rvalid_converter_1_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_rready_converter_1; sc_signal< bool > m_m_axi_rready_converter_1_signal; xtlm::xaximm_xtlm2pin_t<32,32,12,1,1,1,1,1>* mp_M02_AXI_transactor; xsc::common::vector2vector_converter<12,96>* mp_m_axi_awid_converter_2; sc_signal< sc_bv<12> > m_m_axi_awid_converter_2_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_awaddr_converter_2; sc_signal< sc_bv<32> > m_m_axi_awaddr_converter_2_signal; xsc::common::vector2vector_converter<8,64>* mp_m_axi_awlen_converter_2; sc_signal< sc_bv<8> > m_m_axi_awlen_converter_2_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_awsize_converter_2; sc_signal< sc_bv<3> > m_m_axi_awsize_converter_2_signal; xsc::common::vector2vector_converter<2,16>* mp_m_axi_awburst_converter_2; sc_signal< sc_bv<2> > m_m_axi_awburst_converter_2_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_awlock_converter_2; sc_signal< bool > m_m_axi_awlock_converter_2_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awcache_converter_2; sc_signal< sc_bv<4> > m_m_axi_awcache_converter_2_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_awprot_converter_2; sc_signal< sc_bv<3> > m_m_axi_awprot_converter_2_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awregion_converter_2; sc_signal< sc_bv<4> > m_m_axi_awregion_converter_2_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awqos_converter_2; sc_signal< sc_bv<4> > m_m_axi_awqos_converter_2_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_awvalid_converter_2; sc_signal< bool > m_m_axi_awvalid_converter_2_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_awready_converter_2; sc_signal< bool > m_m_axi_awready_converter_2_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_wdata_converter_2; sc_signal< sc_bv<32> > m_m_axi_wdata_converter_2_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_wstrb_converter_2; sc_signal< sc_bv<4> > m_m_axi_wstrb_converter_2_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_wlast_converter_2; sc_signal< bool > m_m_axi_wlast_converter_2_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_wvalid_converter_2; sc_signal< bool > m_m_axi_wvalid_converter_2_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_wready_converter_2; sc_signal< bool > m_m_axi_wready_converter_2_signal; xsc::common::vector2vector_converter<96,12>* mp_m_axi_bid_converter_2; sc_signal< sc_bv<12> > m_m_axi_bid_converter_2_signal; xsc::common::vector2vector_converter<16,2>* mp_m_axi_bresp_converter_2; sc_signal< sc_bv<2> > m_m_axi_bresp_converter_2_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_bvalid_converter_2; sc_signal< bool > m_m_axi_bvalid_converter_2_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_bready_converter_2; sc_signal< bool > m_m_axi_bready_converter_2_signal; xsc::common::vector2vector_converter<12,96>* mp_m_axi_arid_converter_2; sc_signal< sc_bv<12> > m_m_axi_arid_converter_2_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_araddr_converter_2; sc_signal< sc_bv<32> > m_m_axi_araddr_converter_2_signal; xsc::common::vector2vector_converter<8,64>* mp_m_axi_arlen_converter_2; sc_signal< sc_bv<8> > m_m_axi_arlen_converter_2_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_arsize_converter_2; sc_signal< sc_bv<3> > m_m_axi_arsize_converter_2_signal; xsc::common::vector2vector_converter<2,16>* mp_m_axi_arburst_converter_2; sc_signal< sc_bv<2> > m_m_axi_arburst_converter_2_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_arlock_converter_2; sc_signal< bool > m_m_axi_arlock_converter_2_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arcache_converter_2; sc_signal< sc_bv<4> > m_m_axi_arcache_converter_2_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_arprot_converter_2; sc_signal< sc_bv<3> > m_m_axi_arprot_converter_2_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arregion_converter_2; sc_signal< sc_bv<4> > m_m_axi_arregion_converter_2_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arqos_converter_2; sc_signal< sc_bv<4> > m_m_axi_arqos_converter_2_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_arvalid_converter_2; sc_signal< bool > m_m_axi_arvalid_converter_2_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_arready_converter_2; sc_signal< bool > m_m_axi_arready_converter_2_signal; xsc::common::vector2vector_converter<96,12>* mp_m_axi_rid_converter_2; sc_signal< sc_bv<12> > m_m_axi_rid_converter_2_signal; xsc::common::vector2vector_converter<256,32>* mp_m_axi_rdata_converter_2; sc_signal< sc_bv<32> > m_m_axi_rdata_converter_2_signal; xsc::common::vector2vector_converter<16,2>* mp_m_axi_rresp_converter_2; sc_signal< sc_bv<2> > m_m_axi_rresp_converter_2_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_rlast_converter_2; sc_signal< bool > m_m_axi_rlast_converter_2_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_rvalid_converter_2; sc_signal< bool > m_m_axi_rvalid_converter_2_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_rready_converter_2; sc_signal< bool > m_m_axi_rready_converter_2_signal; xtlm::xaximm_xtlm2pin_t<32,32,12,1,1,1,1,1>* mp_M03_AXI_transactor; xsc::common::vector2vector_converter<12,96>* mp_m_axi_awid_converter_3; sc_signal< sc_bv<12> > m_m_axi_awid_converter_3_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_awaddr_converter_3; sc_signal< sc_bv<32> > m_m_axi_awaddr_converter_3_signal; xsc::common::vector2vector_converter<8,64>* mp_m_axi_awlen_converter_3; sc_signal< sc_bv<8> > m_m_axi_awlen_converter_3_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_awsize_converter_3; sc_signal< sc_bv<3> > m_m_axi_awsize_converter_3_signal; xsc::common::vector2vector_converter<2,16>* mp_m_axi_awburst_converter_3; sc_signal< sc_bv<2> > m_m_axi_awburst_converter_3_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_awlock_converter_3; sc_signal< bool > m_m_axi_awlock_converter_3_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awcache_converter_3; sc_signal< sc_bv<4> > m_m_axi_awcache_converter_3_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_awprot_converter_3; sc_signal< sc_bv<3> > m_m_axi_awprot_converter_3_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awregion_converter_3; sc_signal< sc_bv<4> > m_m_axi_awregion_converter_3_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awqos_converter_3; sc_signal< sc_bv<4> > m_m_axi_awqos_converter_3_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_awvalid_converter_3; sc_signal< bool > m_m_axi_awvalid_converter_3_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_awready_converter_3; sc_signal< bool > m_m_axi_awready_converter_3_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_wdata_converter_3; sc_signal< sc_bv<32> > m_m_axi_wdata_converter_3_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_wstrb_converter_3; sc_signal< sc_bv<4> > m_m_axi_wstrb_converter_3_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_wlast_converter_3; sc_signal< bool > m_m_axi_wlast_converter_3_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_wvalid_converter_3; sc_signal< bool > m_m_axi_wvalid_converter_3_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_wready_converter_3; sc_signal< bool > m_m_axi_wready_converter_3_signal; xsc::common::vector2vector_converter<96,12>* mp_m_axi_bid_converter_3; sc_signal< sc_bv<12> > m_m_axi_bid_converter_3_signal; xsc::common::vector2vector_converter<16,2>* mp_m_axi_bresp_converter_3; sc_signal< sc_bv<2> > m_m_axi_bresp_converter_3_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_bvalid_converter_3; sc_signal< bool > m_m_axi_bvalid_converter_3_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_bready_converter_3; sc_signal< bool > m_m_axi_bready_converter_3_signal; xsc::common::vector2vector_converter<12,96>* mp_m_axi_arid_converter_3; sc_signal< sc_bv<12> > m_m_axi_arid_converter_3_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_araddr_converter_3; sc_signal< sc_bv<32> > m_m_axi_araddr_converter_3_signal; xsc::common::vector2vector_converter<8,64>* mp_m_axi_arlen_converter_3; sc_signal< sc_bv<8> > m_m_axi_arlen_converter_3_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_arsize_converter_3; sc_signal< sc_bv<3> > m_m_axi_arsize_converter_3_signal; xsc::common::vector2vector_converter<2,16>* mp_m_axi_arburst_converter_3; sc_signal< sc_bv<2> > m_m_axi_arburst_converter_3_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_arlock_converter_3; sc_signal< bool > m_m_axi_arlock_converter_3_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arcache_converter_3; sc_signal< sc_bv<4> > m_m_axi_arcache_converter_3_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_arprot_converter_3; sc_signal< sc_bv<3> > m_m_axi_arprot_converter_3_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arregion_converter_3; sc_signal< sc_bv<4> > m_m_axi_arregion_converter_3_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arqos_converter_3; sc_signal< sc_bv<4> > m_m_axi_arqos_converter_3_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_arvalid_converter_3; sc_signal< bool > m_m_axi_arvalid_converter_3_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_arready_converter_3; sc_signal< bool > m_m_axi_arready_converter_3_signal; xsc::common::vector2vector_converter<96,12>* mp_m_axi_rid_converter_3; sc_signal< sc_bv<12> > m_m_axi_rid_converter_3_signal; xsc::common::vector2vector_converter<256,32>* mp_m_axi_rdata_converter_3; sc_signal< sc_bv<32> > m_m_axi_rdata_converter_3_signal; xsc::common::vector2vector_converter<16,2>* mp_m_axi_rresp_converter_3; sc_signal< sc_bv<2> > m_m_axi_rresp_converter_3_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_rlast_converter_3; sc_signal< bool > m_m_axi_rlast_converter_3_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_rvalid_converter_3; sc_signal< bool > m_m_axi_rvalid_converter_3_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_rready_converter_3; sc_signal< bool > m_m_axi_rready_converter_3_signal; xtlm::xaximm_xtlm2pin_t<32,32,12,1,1,1,1,1>* mp_M04_AXI_transactor; xsc::common::vector2vector_converter<12,96>* mp_m_axi_awid_converter_4; sc_signal< sc_bv<12> > m_m_axi_awid_converter_4_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_awaddr_converter_4; sc_signal< sc_bv<32> > m_m_axi_awaddr_converter_4_signal; xsc::common::vector2vector_converter<8,64>* mp_m_axi_awlen_converter_4; sc_signal< sc_bv<8> > m_m_axi_awlen_converter_4_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_awsize_converter_4; sc_signal< sc_bv<3> > m_m_axi_awsize_converter_4_signal; xsc::common::vector2vector_converter<2,16>* mp_m_axi_awburst_converter_4; sc_signal< sc_bv<2> > m_m_axi_awburst_converter_4_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_awlock_converter_4; sc_signal< bool > m_m_axi_awlock_converter_4_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awcache_converter_4; sc_signal< sc_bv<4> > m_m_axi_awcache_converter_4_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_awprot_converter_4; sc_signal< sc_bv<3> > m_m_axi_awprot_converter_4_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awregion_converter_4; sc_signal< sc_bv<4> > m_m_axi_awregion_converter_4_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awqos_converter_4; sc_signal< sc_bv<4> > m_m_axi_awqos_converter_4_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_awvalid_converter_4; sc_signal< bool > m_m_axi_awvalid_converter_4_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_awready_converter_4; sc_signal< bool > m_m_axi_awready_converter_4_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_wdata_converter_4; sc_signal< sc_bv<32> > m_m_axi_wdata_converter_4_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_wstrb_converter_4; sc_signal< sc_bv<4> > m_m_axi_wstrb_converter_4_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_wlast_converter_4; sc_signal< bool > m_m_axi_wlast_converter_4_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_wvalid_converter_4; sc_signal< bool > m_m_axi_wvalid_converter_4_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_wready_converter_4; sc_signal< bool > m_m_axi_wready_converter_4_signal; xsc::common::vector2vector_converter<96,12>* mp_m_axi_bid_converter_4; sc_signal< sc_bv<12> > m_m_axi_bid_converter_4_signal; xsc::common::vector2vector_converter<16,2>* mp_m_axi_bresp_converter_4; sc_signal< sc_bv<2> > m_m_axi_bresp_converter_4_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_bvalid_converter_4; sc_signal< bool > m_m_axi_bvalid_converter_4_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_bready_converter_4; sc_signal< bool > m_m_axi_bready_converter_4_signal; xsc::common::vector2vector_converter<12,96>* mp_m_axi_arid_converter_4; sc_signal< sc_bv<12> > m_m_axi_arid_converter_4_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_araddr_converter_4; sc_signal< sc_bv<32> > m_m_axi_araddr_converter_4_signal; xsc::common::vector2vector_converter<8,64>* mp_m_axi_arlen_converter_4; sc_signal< sc_bv<8> > m_m_axi_arlen_converter_4_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_arsize_converter_4; sc_signal< sc_bv<3> > m_m_axi_arsize_converter_4_signal; xsc::common::vector2vector_converter<2,16>* mp_m_axi_arburst_converter_4; sc_signal< sc_bv<2> > m_m_axi_arburst_converter_4_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_arlock_converter_4; sc_signal< bool > m_m_axi_arlock_converter_4_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arcache_converter_4; sc_signal< sc_bv<4> > m_m_axi_arcache_converter_4_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_arprot_converter_4; sc_signal< sc_bv<3> > m_m_axi_arprot_converter_4_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arregion_converter_4; sc_signal< sc_bv<4> > m_m_axi_arregion_converter_4_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arqos_converter_4; sc_signal< sc_bv<4> > m_m_axi_arqos_converter_4_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_arvalid_converter_4; sc_signal< bool > m_m_axi_arvalid_converter_4_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_arready_converter_4; sc_signal< bool > m_m_axi_arready_converter_4_signal; xsc::common::vector2vector_converter<96,12>* mp_m_axi_rid_converter_4; sc_signal< sc_bv<12> > m_m_axi_rid_converter_4_signal; xsc::common::vector2vector_converter<256,32>* mp_m_axi_rdata_converter_4; sc_signal< sc_bv<32> > m_m_axi_rdata_converter_4_signal; xsc::common::vector2vector_converter<16,2>* mp_m_axi_rresp_converter_4; sc_signal< sc_bv<2> > m_m_axi_rresp_converter_4_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_rlast_converter_4; sc_signal< bool > m_m_axi_rlast_converter_4_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_rvalid_converter_4; sc_signal< bool > m_m_axi_rvalid_converter_4_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_rready_converter_4; sc_signal< bool > m_m_axi_rready_converter_4_signal; xtlm::xaximm_xtlm2pin_t<32,32,12,1,1,1,1,1>* mp_M05_AXI_transactor; xsc::common::vector2vector_converter<12,96>* mp_m_axi_awid_converter_5; sc_signal< sc_bv<12> > m_m_axi_awid_converter_5_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_awaddr_converter_5; sc_signal< sc_bv<32> > m_m_axi_awaddr_converter_5_signal; xsc::common::vector2vector_converter<8,64>* mp_m_axi_awlen_converter_5; sc_signal< sc_bv<8> > m_m_axi_awlen_converter_5_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_awsize_converter_5; sc_signal< sc_bv<3> > m_m_axi_awsize_converter_5_signal; xsc::common::vector2vector_converter<2,16>* mp_m_axi_awburst_converter_5; sc_signal< sc_bv<2> > m_m_axi_awburst_converter_5_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_awlock_converter_5; sc_signal< bool > m_m_axi_awlock_converter_5_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awcache_converter_5; sc_signal< sc_bv<4> > m_m_axi_awcache_converter_5_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_awprot_converter_5; sc_signal< sc_bv<3> > m_m_axi_awprot_converter_5_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awregion_converter_5; sc_signal< sc_bv<4> > m_m_axi_awregion_converter_5_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awqos_converter_5; sc_signal< sc_bv<4> > m_m_axi_awqos_converter_5_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_awvalid_converter_5; sc_signal< bool > m_m_axi_awvalid_converter_5_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_awready_converter_5; sc_signal< bool > m_m_axi_awready_converter_5_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_wdata_converter_5; sc_signal< sc_bv<32> > m_m_axi_wdata_converter_5_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_wstrb_converter_5; sc_signal< sc_bv<4> > m_m_axi_wstrb_converter_5_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_wlast_converter_5; sc_signal< bool > m_m_axi_wlast_converter_5_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_wvalid_converter_5; sc_signal< bool > m_m_axi_wvalid_converter_5_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_wready_converter_5; sc_signal< bool > m_m_axi_wready_converter_5_signal; xsc::common::vector2vector_converter<96,12>* mp_m_axi_bid_converter_5; sc_signal< sc_bv<12> > m_m_axi_bid_converter_5_signal; xsc::common::vector2vector_converter<16,2>* mp_m_axi_bresp_converter_5; sc_signal< sc_bv<2> > m_m_axi_bresp_converter_5_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_bvalid_converter_5; sc_signal< bool > m_m_axi_bvalid_converter_5_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_bready_converter_5; sc_signal< bool > m_m_axi_bready_converter_5_signal; xsc::common::vector2vector_converter<12,96>* mp_m_axi_arid_converter_5; sc_signal< sc_bv<12> > m_m_axi_arid_converter_5_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_araddr_converter_5; sc_signal< sc_bv<32> > m_m_axi_araddr_converter_5_signal; xsc::common::vector2vector_converter<8,64>* mp_m_axi_arlen_converter_5; sc_signal< sc_bv<8> > m_m_axi_arlen_converter_5_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_arsize_converter_5; sc_signal< sc_bv<3> > m_m_axi_arsize_converter_5_signal; xsc::common::vector2vector_converter<2,16>* mp_m_axi_arburst_converter_5; sc_signal< sc_bv<2> > m_m_axi_arburst_converter_5_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_arlock_converter_5; sc_signal< bool > m_m_axi_arlock_converter_5_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arcache_converter_5; sc_signal< sc_bv<4> > m_m_axi_arcache_converter_5_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_arprot_converter_5; sc_signal< sc_bv<3> > m_m_axi_arprot_converter_5_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arregion_converter_5; sc_signal< sc_bv<4> > m_m_axi_arregion_converter_5_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arqos_converter_5; sc_signal< sc_bv<4> > m_m_axi_arqos_converter_5_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_arvalid_converter_5; sc_signal< bool > m_m_axi_arvalid_converter_5_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_arready_converter_5; sc_signal< bool > m_m_axi_arready_converter_5_signal; xsc::common::vector2vector_converter<96,12>* mp_m_axi_rid_converter_5; sc_signal< sc_bv<12> > m_m_axi_rid_converter_5_signal; xsc::common::vector2vector_converter<256,32>* mp_m_axi_rdata_converter_5; sc_signal< sc_bv<32> > m_m_axi_rdata_converter_5_signal; xsc::common::vector2vector_converter<16,2>* mp_m_axi_rresp_converter_5; sc_signal< sc_bv<2> > m_m_axi_rresp_converter_5_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_rlast_converter_5; sc_signal< bool > m_m_axi_rlast_converter_5_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_rvalid_converter_5; sc_signal< bool > m_m_axi_rvalid_converter_5_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_rready_converter_5; sc_signal< bool > m_m_axi_rready_converter_5_signal; xtlm::xaximm_xtlm2pin_t<32,32,12,1,1,1,1,1>* mp_M06_AXI_transactor; xsc::common::vector2vector_converter<12,96>* mp_m_axi_awid_converter_6; sc_signal< sc_bv<12> > m_m_axi_awid_converter_6_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_awaddr_converter_6; sc_signal< sc_bv<32> > m_m_axi_awaddr_converter_6_signal; xsc::common::vector2vector_converter<8,64>* mp_m_axi_awlen_converter_6; sc_signal< sc_bv<8> > m_m_axi_awlen_converter_6_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_awsize_converter_6; sc_signal< sc_bv<3> > m_m_axi_awsize_converter_6_signal; xsc::common::vector2vector_converter<2,16>* mp_m_axi_awburst_converter_6; sc_signal< sc_bv<2> > m_m_axi_awburst_converter_6_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_awlock_converter_6; sc_signal< bool > m_m_axi_awlock_converter_6_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awcache_converter_6; sc_signal< sc_bv<4> > m_m_axi_awcache_converter_6_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_awprot_converter_6; sc_signal< sc_bv<3> > m_m_axi_awprot_converter_6_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awregion_converter_6; sc_signal< sc_bv<4> > m_m_axi_awregion_converter_6_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awqos_converter_6; sc_signal< sc_bv<4> > m_m_axi_awqos_converter_6_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_awvalid_converter_6; sc_signal< bool > m_m_axi_awvalid_converter_6_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_awready_converter_6; sc_signal< bool > m_m_axi_awready_converter_6_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_wdata_converter_6; sc_signal< sc_bv<32> > m_m_axi_wdata_converter_6_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_wstrb_converter_6; sc_signal< sc_bv<4> > m_m_axi_wstrb_converter_6_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_wlast_converter_6; sc_signal< bool > m_m_axi_wlast_converter_6_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_wvalid_converter_6; sc_signal< bool > m_m_axi_wvalid_converter_6_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_wready_converter_6; sc_signal< bool > m_m_axi_wready_converter_6_signal; xsc::common::vector2vector_converter<96,12>* mp_m_axi_bid_converter_6; sc_signal< sc_bv<12> > m_m_axi_bid_converter_6_signal; xsc::common::vector2vector_converter<16,2>* mp_m_axi_bresp_converter_6; sc_signal< sc_bv<2> > m_m_axi_bresp_converter_6_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_bvalid_converter_6; sc_signal< bool > m_m_axi_bvalid_converter_6_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_bready_converter_6; sc_signal< bool > m_m_axi_bready_converter_6_signal; xsc::common::vector2vector_converter<12,96>* mp_m_axi_arid_converter_6; sc_signal< sc_bv<12> > m_m_axi_arid_converter_6_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_araddr_converter_6; sc_signal< sc_bv<32> > m_m_axi_araddr_converter_6_signal; xsc::common::vector2vector_converter<8,64>* mp_m_axi_arlen_converter_6; sc_signal< sc_bv<8> > m_m_axi_arlen_converter_6_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_arsize_converter_6; sc_signal< sc_bv<3> > m_m_axi_arsize_converter_6_signal; xsc::common::vector2vector_converter<2,16>* mp_m_axi_arburst_converter_6; sc_signal< sc_bv<2> > m_m_axi_arburst_converter_6_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_arlock_converter_6; sc_signal< bool > m_m_axi_arlock_converter_6_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arcache_converter_6; sc_signal< sc_bv<4> > m_m_axi_arcache_converter_6_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_arprot_converter_6; sc_signal< sc_bv<3> > m_m_axi_arprot_converter_6_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arregion_converter_6; sc_signal< sc_bv<4> > m_m_axi_arregion_converter_6_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arqos_converter_6; sc_signal< sc_bv<4> > m_m_axi_arqos_converter_6_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_arvalid_converter_6; sc_signal< bool > m_m_axi_arvalid_converter_6_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_arready_converter_6; sc_signal< bool > m_m_axi_arready_converter_6_signal; xsc::common::vector2vector_converter<96,12>* mp_m_axi_rid_converter_6; sc_signal< sc_bv<12> > m_m_axi_rid_converter_6_signal; xsc::common::vector2vector_converter<256,32>* mp_m_axi_rdata_converter_6; sc_signal< sc_bv<32> > m_m_axi_rdata_converter_6_signal; xsc::common::vector2vector_converter<16,2>* mp_m_axi_rresp_converter_6; sc_signal< sc_bv<2> > m_m_axi_rresp_converter_6_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_rlast_converter_6; sc_signal< bool > m_m_axi_rlast_converter_6_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_rvalid_converter_6; sc_signal< bool > m_m_axi_rvalid_converter_6_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_rready_converter_6; sc_signal< bool > m_m_axi_rready_converter_6_signal; xtlm::xaximm_xtlm2pin_t<32,32,12,1,1,1,1,1>* mp_M07_AXI_transactor; xsc::common::vector2vector_converter<12,96>* mp_m_axi_awid_converter_7; sc_signal< sc_bv<12> > m_m_axi_awid_converter_7_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_awaddr_converter_7; sc_signal< sc_bv<32> > m_m_axi_awaddr_converter_7_signal; xsc::common::vector2vector_converter<8,64>* mp_m_axi_awlen_converter_7; sc_signal< sc_bv<8> > m_m_axi_awlen_converter_7_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_awsize_converter_7; sc_signal< sc_bv<3> > m_m_axi_awsize_converter_7_signal; xsc::common::vector2vector_converter<2,16>* mp_m_axi_awburst_converter_7; sc_signal< sc_bv<2> > m_m_axi_awburst_converter_7_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_awlock_converter_7; sc_signal< bool > m_m_axi_awlock_converter_7_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awcache_converter_7; sc_signal< sc_bv<4> > m_m_axi_awcache_converter_7_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_awprot_converter_7; sc_signal< sc_bv<3> > m_m_axi_awprot_converter_7_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awregion_converter_7; sc_signal< sc_bv<4> > m_m_axi_awregion_converter_7_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awqos_converter_7; sc_signal< sc_bv<4> > m_m_axi_awqos_converter_7_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_awvalid_converter_7; sc_signal< bool > m_m_axi_awvalid_converter_7_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_awready_converter_7; sc_signal< bool > m_m_axi_awready_converter_7_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_wdata_converter_7; sc_signal< sc_bv<32> > m_m_axi_wdata_converter_7_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_wstrb_converter_7; sc_signal< sc_bv<4> > m_m_axi_wstrb_converter_7_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_wlast_converter_7; sc_signal< bool > m_m_axi_wlast_converter_7_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_wvalid_converter_7; sc_signal< bool > m_m_axi_wvalid_converter_7_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_wready_converter_7; sc_signal< bool > m_m_axi_wready_converter_7_signal; xsc::common::vector2vector_converter<96,12>* mp_m_axi_bid_converter_7; sc_signal< sc_bv<12> > m_m_axi_bid_converter_7_signal; xsc::common::vector2vector_converter<16,2>* mp_m_axi_bresp_converter_7; sc_signal< sc_bv<2> > m_m_axi_bresp_converter_7_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_bvalid_converter_7; sc_signal< bool > m_m_axi_bvalid_converter_7_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_bready_converter_7; sc_signal< bool > m_m_axi_bready_converter_7_signal; xsc::common::vector2vector_converter<12,96>* mp_m_axi_arid_converter_7; sc_signal< sc_bv<12> > m_m_axi_arid_converter_7_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_araddr_converter_7; sc_signal< sc_bv<32> > m_m_axi_araddr_converter_7_signal; xsc::common::vector2vector_converter<8,64>* mp_m_axi_arlen_converter_7; sc_signal< sc_bv<8> > m_m_axi_arlen_converter_7_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_arsize_converter_7; sc_signal< sc_bv<3> > m_m_axi_arsize_converter_7_signal; xsc::common::vector2vector_converter<2,16>* mp_m_axi_arburst_converter_7; sc_signal< sc_bv<2> > m_m_axi_arburst_converter_7_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_arlock_converter_7; sc_signal< bool > m_m_axi_arlock_converter_7_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arcache_converter_7; sc_signal< sc_bv<4> > m_m_axi_arcache_converter_7_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_arprot_converter_7; sc_signal< sc_bv<3> > m_m_axi_arprot_converter_7_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arregion_converter_7; sc_signal< sc_bv<4> > m_m_axi_arregion_converter_7_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arqos_converter_7; sc_signal< sc_bv<4> > m_m_axi_arqos_converter_7_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_arvalid_converter_7; sc_signal< bool > m_m_axi_arvalid_converter_7_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_arready_converter_7; sc_signal< bool > m_m_axi_arready_converter_7_signal; xsc::common::vector2vector_converter<96,12>* mp_m_axi_rid_converter_7; sc_signal< sc_bv<12> > m_m_axi_rid_converter_7_signal; xsc::common::vector2vector_converter<256,32>* mp_m_axi_rdata_converter_7; sc_signal< sc_bv<32> > m_m_axi_rdata_converter_7_signal; xsc::common::vector2vector_converter<16,2>* mp_m_axi_rresp_converter_7; sc_signal< sc_bv<2> > m_m_axi_rresp_converter_7_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_rlast_converter_7; sc_signal< bool > m_m_axi_rlast_converter_7_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_rvalid_converter_7; sc_signal< bool > m_m_axi_rvalid_converter_7_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_rready_converter_7; sc_signal< bool > m_m_axi_rready_converter_7_signal; xsc::xsc_concatenator<256, 8> * mp_m_axi_concat_araddr; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_araddr_out_0; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_araddr_out_1; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_araddr_out_2; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_araddr_out_3; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_araddr_out_4; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_araddr_out_5; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_araddr_out_6; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_araddr_out_7; xsc::xsc_concatenator<16, 8> * mp_m_axi_concat_arburst; sc_signal<sc_dt::sc_bv<16> > m_axi_concat_arburst_out_0; sc_signal<sc_dt::sc_bv<16> > m_axi_concat_arburst_out_1; sc_signal<sc_dt::sc_bv<16> > m_axi_concat_arburst_out_2; sc_signal<sc_dt::sc_bv<16> > m_axi_concat_arburst_out_3; sc_signal<sc_dt::sc_bv<16> > m_axi_concat_arburst_out_4; sc_signal<sc_dt::sc_bv<16> > m_axi_concat_arburst_out_5; sc_signal<sc_dt::sc_bv<16> > m_axi_concat_arburst_out_6; sc_signal<sc_dt::sc_bv<16> > m_axi_concat_arburst_out_7; xsc::xsc_concatenator<32, 8> * mp_m_axi_concat_arcache; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arcache_out_0; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arcache_out_1; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arcache_out_2; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arcache_out_3; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arcache_out_4; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arcache_out_5; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arcache_out_6; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arcache_out_7; xsc::xsc_concatenator<96, 8> * mp_m_axi_concat_arid; sc_signal<sc_dt::sc_bv<96> > m_axi_concat_arid_out_0; sc_signal<sc_dt::sc_bv<96> > m_axi_concat_arid_out_1; sc_signal<sc_dt::sc_bv<96> > m_axi_concat_arid_out_2; sc_signal<sc_dt::sc_bv<96> > m_axi_concat_arid_out_3; sc_signal<sc_dt::sc_bv<96> > m_axi_concat_arid_out_4; sc_signal<sc_dt::sc_bv<96> > m_axi_concat_arid_out_5; sc_signal<sc_dt::sc_bv<96> > m_axi_concat_arid_out_6; sc_signal<sc_dt::sc_bv<96> > m_axi_concat_arid_out_7; xsc::xsc_concatenator<64, 8> * mp_m_axi_concat_arlen; sc_signal<sc_dt::sc_bv<64> > m_axi_concat_arlen_out_0; sc_signal<sc_dt::sc_bv<64> > m_axi_concat_arlen_out_1; sc_signal<sc_dt::sc_bv<64> > m_axi_concat_arlen_out_2; sc_signal<sc_dt::sc_bv<64> > m_axi_concat_arlen_out_3; sc_signal<sc_dt::sc_bv<64> > m_axi_concat_arlen_out_4; sc_signal<sc_dt::sc_bv<64> > m_axi_concat_arlen_out_5; sc_signal<sc_dt::sc_bv<64> > m_axi_concat_arlen_out_6; sc_signal<sc_dt::sc_bv<64> > m_axi_concat_arlen_out_7; xsc::xsc_concatenator<8, 8> * mp_m_axi_concat_arlock; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_arlock_out_0; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_arlock_out_1; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_arlock_out_2; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_arlock_out_3; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_arlock_out_4; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_arlock_out_5; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_arlock_out_6; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_arlock_out_7; xsc::xsc_concatenator<24, 8> * mp_m_axi_concat_arprot; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_arprot_out_0; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_arprot_out_1; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_arprot_out_2; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_arprot_out_3; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_arprot_out_4; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_arprot_out_5; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_arprot_out_6; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_arprot_out_7; xsc::xsc_concatenator<32, 8> * mp_m_axi_concat_arqos; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arqos_out_0; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arqos_out_1; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arqos_out_2; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arqos_out_3; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arqos_out_4; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arqos_out_5; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arqos_out_6; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arqos_out_7; xsc::xsc_split<8, 8> * mp_m_axi_split_arready; sc_signal<sc_dt::sc_bv<8> > m_axi_split_arready_out_0; sc_signal<sc_dt::sc_bv<8> > m_axi_split_arready_out_1; sc_signal<sc_dt::sc_bv<8> > m_axi_split_arready_out_2; sc_signal<sc_dt::sc_bv<8> > m_axi_split_arready_out_3; sc_signal<sc_dt::sc_bv<8> > m_axi_split_arready_out_4; sc_signal<sc_dt::sc_bv<8> > m_axi_split_arready_out_5; sc_signal<sc_dt::sc_bv<8> > m_axi_split_arready_out_6; sc_signal<sc_dt::sc_bv<8> > m_axi_split_arready_out_7; xsc::xsc_concatenator<32, 8> * mp_m_axi_concat_arregion; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arregion_out_0; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arregion_out_1; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arregion_out_2; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arregion_out_3; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arregion_out_4; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arregion_out_5; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arregion_out_6; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arregion_out_7; xsc::xsc_concatenator<24, 8> * mp_m_axi_concat_arsize; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_arsize_out_0; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_arsize_out_1; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_arsize_out_2; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_arsize_out_3; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_arsize_out_4; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_arsize_out_5; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_arsize_out_6; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_arsize_out_7; xsc::xsc_concatenator<8, 8> * mp_m_axi_concat_arvalid; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_arvalid_out_0; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_arvalid_out_1; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_arvalid_out_2; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_arvalid_out_3; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_arvalid_out_4; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_arvalid_out_5; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_arvalid_out_6; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_arvalid_out_7; xsc::xsc_concatenator<256, 8> * mp_m_axi_concat_awaddr; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_awaddr_out_0; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_awaddr_out_1; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_awaddr_out_2; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_awaddr_out_3; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_awaddr_out_4; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_awaddr_out_5; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_awaddr_out_6; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_awaddr_out_7; xsc::xsc_concatenator<16, 8> * mp_m_axi_concat_awburst; sc_signal<sc_dt::sc_bv<16> > m_axi_concat_awburst_out_0; sc_signal<sc_dt::sc_bv<16> > m_axi_concat_awburst_out_1; sc_signal<sc_dt::sc_bv<16> > m_axi_concat_awburst_out_2; sc_signal<sc_dt::sc_bv<16> > m_axi_concat_awburst_out_3; sc_signal<sc_dt::sc_bv<16> > m_axi_concat_awburst_out_4; sc_signal<sc_dt::sc_bv<16> > m_axi_concat_awburst_out_5; sc_signal<sc_dt::sc_bv<16> > m_axi_concat_awburst_out_6; sc_signal<sc_dt::sc_bv<16> > m_axi_concat_awburst_out_7; xsc::xsc_concatenator<32, 8> * mp_m_axi_concat_awcache; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awcache_out_0; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awcache_out_1; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awcache_out_2; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awcache_out_3; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awcache_out_4; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awcache_out_5; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awcache_out_6; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awcache_out_7; xsc::xsc_concatenator<96, 8> * mp_m_axi_concat_awid; sc_signal<sc_dt::sc_bv<96> > m_axi_concat_awid_out_0; sc_signal<sc_dt::sc_bv<96> > m_axi_concat_awid_out_1; sc_signal<sc_dt::sc_bv<96> > m_axi_concat_awid_out_2; sc_signal<sc_dt::sc_bv<96> > m_axi_concat_awid_out_3; sc_signal<sc_dt::sc_bv<96> > m_axi_concat_awid_out_4; sc_signal<sc_dt::sc_bv<96> > m_axi_concat_awid_out_5; sc_signal<sc_dt::sc_bv<96> > m_axi_concat_awid_out_6; sc_signal<sc_dt::sc_bv<96> > m_axi_concat_awid_out_7; xsc::xsc_concatenator<64, 8> * mp_m_axi_concat_awlen; sc_signal<sc_dt::sc_bv<64> > m_axi_concat_awlen_out_0; sc_signal<sc_dt::sc_bv<64> > m_axi_concat_awlen_out_1; sc_signal<sc_dt::sc_bv<64> > m_axi_concat_awlen_out_2; sc_signal<sc_dt::sc_bv<64> > m_axi_concat_awlen_out_3; sc_signal<sc_dt::sc_bv<64> > m_axi_concat_awlen_out_4; sc_signal<sc_dt::sc_bv<64> > m_axi_concat_awlen_out_5; sc_signal<sc_dt::sc_bv<64> > m_axi_concat_awlen_out_6; sc_signal<sc_dt::sc_bv<64> > m_axi_concat_awlen_out_7; xsc::xsc_concatenator<8, 8> * mp_m_axi_concat_awlock; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_awlock_out_0; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_awlock_out_1; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_awlock_out_2; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_awlock_out_3; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_awlock_out_4; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_awlock_out_5; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_awlock_out_6; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_awlock_out_7; xsc::xsc_concatenator<24, 8> * mp_m_axi_concat_awprot; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_awprot_out_0; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_awprot_out_1; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_awprot_out_2; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_awprot_out_3; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_awprot_out_4; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_awprot_out_5; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_awprot_out_6; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_awprot_out_7; xsc::xsc_concatenator<32, 8> * mp_m_axi_concat_awqos; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awqos_out_0; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awqos_out_1; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awqos_out_2; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awqos_out_3; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awqos_out_4; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awqos_out_5; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awqos_out_6; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awqos_out_7; xsc::xsc_split<8, 8> * mp_m_axi_split_awready; sc_signal<sc_dt::sc_bv<8> > m_axi_split_awready_out_0; sc_signal<sc_dt::sc_bv<8> > m_axi_split_awready_out_1; sc_signal<sc_dt::sc_bv<8> > m_axi_split_awready_out_2; sc_signal<sc_dt::sc_bv<8> > m_axi_split_awready_out_3; sc_signal<sc_dt::sc_bv<8> > m_axi_split_awready_out_4; sc_signal<sc_dt::sc_bv<8> > m_axi_split_awready_out_5; sc_signal<sc_dt::sc_bv<8> > m_axi_split_awready_out_6; sc_signal<sc_dt::sc_bv<8> > m_axi_split_awready_out_7; xsc::xsc_concatenator<32, 8> * mp_m_axi_concat_awregion; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awregion_out_0; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awregion_out_1; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awregion_out_2; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awregion_out_3; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awregion_out_4; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awregion_out_5; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awregion_out_6; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awregion_out_7; xsc::xsc_concatenator<24, 8> * mp_m_axi_concat_awsize; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_awsize_out_0; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_awsize_out_1; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_awsize_out_2; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_awsize_out_3; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_awsize_out_4; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_awsize_out_5; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_awsize_out_6; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_awsize_out_7; xsc::xsc_concatenator<8, 8> * mp_m_axi_concat_awvalid; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_awvalid_out_0; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_awvalid_out_1; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_awvalid_out_2; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_awvalid_out_3; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_awvalid_out_4; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_awvalid_out_5; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_awvalid_out_6; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_awvalid_out_7; xsc::xsc_split<96, 8> * mp_m_axi_split_bid; sc_signal<sc_dt::sc_bv<96> > m_axi_split_bid_out_0; sc_signal<sc_dt::sc_bv<96> > m_axi_split_bid_out_1; sc_signal<sc_dt::sc_bv<96> > m_axi_split_bid_out_2; sc_signal<sc_dt::sc_bv<96> > m_axi_split_bid_out_3; sc_signal<sc_dt::sc_bv<96> > m_axi_split_bid_out_4; sc_signal<sc_dt::sc_bv<96> > m_axi_split_bid_out_5; sc_signal<sc_dt::sc_bv<96> > m_axi_split_bid_out_6; sc_signal<sc_dt::sc_bv<96> > m_axi_split_bid_out_7; xsc::xsc_concatenator<8, 8> * mp_m_axi_concat_bready; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_bready_out_0; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_bready_out_1; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_bready_out_2; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_bready_out_3; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_bready_out_4; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_bready_out_5; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_bready_out_6; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_bready_out_7; xsc::xsc_split<16, 8> * mp_m_axi_split_bresp; sc_signal<sc_dt::sc_bv<16> > m_axi_split_bresp_out_0; sc_signal<sc_dt::sc_bv<16> > m_axi_split_bresp_out_1; sc_signal<sc_dt::sc_bv<16> > m_axi_split_bresp_out_2; sc_signal<sc_dt::sc_bv<16> > m_axi_split_bresp_out_3; sc_signal<sc_dt::sc_bv<16> > m_axi_split_bresp_out_4; sc_signal<sc_dt::sc_bv<16> > m_axi_split_bresp_out_5; sc_signal<sc_dt::sc_bv<16> > m_axi_split_bresp_out_6; sc_signal<sc_dt::sc_bv<16> > m_axi_split_bresp_out_7; xsc::xsc_split<8, 8> * mp_m_axi_split_bvalid; sc_signal<sc_dt::sc_bv<8> > m_axi_split_bvalid_out_0; sc_signal<sc_dt::sc_bv<8> > m_axi_split_bvalid_out_1; sc_signal<sc_dt::sc_bv<8> > m_axi_split_bvalid_out_2; sc_signal<sc_dt::sc_bv<8> > m_axi_split_bvalid_out_3; sc_signal<sc_dt::sc_bv<8> > m_axi_split_bvalid_out_4; sc_signal<sc_dt::sc_bv<8> > m_axi_split_bvalid_out_5; sc_signal<sc_dt::sc_bv<8> > m_axi_split_bvalid_out_6; sc_signal<sc_dt::sc_bv<8> > m_axi_split_bvalid_out_7; xsc::xsc_split<256, 8> * mp_m_axi_split_rdata; sc_signal<sc_dt::sc_bv<256> > m_axi_split_rdata_out_0; sc_signal<sc_dt::sc_bv<256> > m_axi_split_rdata_out_1; sc_signal<sc_dt::sc_bv<256> > m_axi_split_rdata_out_2; sc_signal<sc_dt::sc_bv<256> > m_axi_split_rdata_out_3; sc_signal<sc_dt::sc_bv<256> > m_axi_split_rdata_out_4; sc_signal<sc_dt::sc_bv<256> > m_axi_split_rdata_out_5; sc_signal<sc_dt::sc_bv<256> > m_axi_split_rdata_out_6; sc_signal<sc_dt::sc_bv<256> > m_axi_split_rdata_out_7; xsc::xsc_split<96, 8> * mp_m_axi_split_rid; sc_signal<sc_dt::sc_bv<96> > m_axi_split_rid_out_0; sc_signal<sc_dt::sc_bv<96> > m_axi_split_rid_out_1; sc_signal<sc_dt::sc_bv<96> > m_axi_split_rid_out_2; sc_signal<sc_dt::sc_bv<96> > m_axi_split_rid_out_3; sc_signal<sc_dt::sc_bv<96> > m_axi_split_rid_out_4; sc_signal<sc_dt::sc_bv<96> > m_axi_split_rid_out_5; sc_signal<sc_dt::sc_bv<96> > m_axi_split_rid_out_6; sc_signal<sc_dt::sc_bv<96> > m_axi_split_rid_out_7; xsc::xsc_split<8, 8> * mp_m_axi_split_rlast; sc_signal<sc_dt::sc_bv<8> > m_axi_split_rlast_out_0; sc_signal<sc_dt::sc_bv<8> > m_axi_split_rlast_out_1; sc_signal<sc_dt::sc_bv<8> > m_axi_split_rlast_out_2; sc_signal<sc_dt::sc_bv<8> > m_axi_split_rlast_out_3; sc_signal<sc_dt::sc_bv<8> > m_axi_split_rlast_out_4; sc_signal<sc_dt::sc_bv<8> > m_axi_split_rlast_out_5; sc_signal<sc_dt::sc_bv<8> > m_axi_split_rlast_out_6; sc_signal<sc_dt::sc_bv<8> > m_axi_split_rlast_out_7; xsc::xsc_concatenator<8, 8> * mp_m_axi_concat_rready; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_rready_out_0; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_rready_out_1; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_rready_out_2; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_rready_out_3; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_rready_out_4; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_rready_out_5; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_rready_out_6; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_rready_out_7; xsc::xsc_split<16, 8> * mp_m_axi_split_rresp; sc_signal<sc_dt::sc_bv<16> > m_axi_split_rresp_out_0; sc_signal<sc_dt::sc_bv<16> > m_axi_split_rresp_out_1; sc_signal<sc_dt::sc_bv<16> > m_axi_split_rresp_out_2; sc_signal<sc_dt::sc_bv<16> > m_axi_split_rresp_out_3; sc_signal<sc_dt::sc_bv<16> > m_axi_split_rresp_out_4; sc_signal<sc_dt::sc_bv<16> > m_axi_split_rresp_out_5; sc_signal<sc_dt::sc_bv<16> > m_axi_split_rresp_out_6; sc_signal<sc_dt::sc_bv<16> > m_axi_split_rresp_out_7; xsc::xsc_split<8, 8> * mp_m_axi_split_rvalid; sc_signal<sc_dt::sc_bv<8> > m_axi_split_rvalid_out_0; sc_signal<sc_dt::sc_bv<8> > m_axi_split_rvalid_out_1; sc_signal<sc_dt::sc_bv<8> > m_axi_split_rvalid_out_2; sc_signal<sc_dt::sc_bv<8> > m_axi_split_rvalid_out_3; sc_signal<sc_dt::sc_bv<8> > m_axi_split_rvalid_out_4; sc_signal<sc_dt::sc_bv<8> > m_axi_split_rvalid_out_5; sc_signal<sc_dt::sc_bv<8> > m_axi_split_rvalid_out_6; sc_signal<sc_dt::sc_bv<8> > m_axi_split_rvalid_out_7; xsc::xsc_concatenator<256, 8> * mp_m_axi_concat_wdata; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_wdata_out_0; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_wdata_out_1; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_wdata_out_2; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_wdata_out_3; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_wdata_out_4; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_wdata_out_5; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_wdata_out_6; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_wdata_out_7; xsc::xsc_concatenator<8, 8> * mp_m_axi_concat_wlast; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_wlast_out_0; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_wlast_out_1; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_wlast_out_2; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_wlast_out_3; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_wlast_out_4; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_wlast_out_5; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_wlast_out_6; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_wlast_out_7; xsc::xsc_split<8, 8> * mp_m_axi_split_wready; sc_signal<sc_dt::sc_bv<8> > m_axi_split_wready_out_0; sc_signal<sc_dt::sc_bv<8> > m_axi_split_wready_out_1; sc_signal<sc_dt::sc_bv<8> > m_axi_split_wready_out_2; sc_signal<sc_dt::sc_bv<8> > m_axi_split_wready_out_3; sc_signal<sc_dt::sc_bv<8> > m_axi_split_wready_out_4; sc_signal<sc_dt::sc_bv<8> > m_axi_split_wready_out_5; sc_signal<sc_dt::sc_bv<8> > m_axi_split_wready_out_6; sc_signal<sc_dt::sc_bv<8> > m_axi_split_wready_out_7; xsc::xsc_concatenator<32, 8> * mp_m_axi_concat_wstrb; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_wstrb_out_0; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_wstrb_out_1; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_wstrb_out_2; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_wstrb_out_3; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_wstrb_out_4; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_wstrb_out_5; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_wstrb_out_6; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_wstrb_out_7; xsc::xsc_concatenator<8, 8> * mp_m_axi_concat_wvalid; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_wvalid_out_0; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_wvalid_out_1; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_wvalid_out_2; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_wvalid_out_3; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_wvalid_out_4; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_wvalid_out_5; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_wvalid_out_6; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_wvalid_out_7; }; #endif // RIVIERA #ifdef VCSSYSTEMC #include "utils/xtlm_aximm_initiator_stub.h" #include "utils/xtlm_aximm_target_stub.h" class DllExport video_cp_tier2_xbar_2_0 : public video_cp_tier2_xbar_2_0_sc { public: video_cp_tier2_xbar_2_0(const sc_core::sc_module_name& nm); virtual ~video_cp_tier2_xbar_2_0(); // module pin-to-pin RTL interface sc_core::sc_in< bool > aclk; sc_core::sc_in< bool > aresetn; sc_core::sc_in< sc_dt::sc_bv<12> > s_axi_awid; sc_core::sc_in< sc_dt::sc_bv<32> > s_axi_awaddr; sc_core::sc_in< sc_dt::sc_bv<8> > s_axi_awlen; sc_core::sc_in< sc_dt::sc_bv<3> > s_axi_awsize; sc_core::sc_in< sc_dt::sc_bv<2> > s_axi_awburst; sc_core::sc_in< sc_dt::sc_bv<1> > s_axi_awlock; sc_core::sc_in< sc_dt::sc_bv<4> > s_axi_awcache; sc_core::sc_in< sc_dt::sc_bv<3> > s_axi_awprot; sc_core::sc_in< sc_dt::sc_bv<4> > s_axi_awqos; sc_core::sc_in< sc_dt::sc_bv<1> > s_axi_awvalid; sc_core::sc_out< sc_dt::sc_bv<1> > s_axi_awready; sc_core::sc_in< sc_dt::sc_bv<32> > s_axi_wdata; sc_core::sc_in< sc_dt::sc_bv<4> > s_axi_wstrb; sc_core::sc_in< sc_dt::sc_bv<1> > s_axi_wlast; sc_core::sc_in< sc_dt::sc_bv<1> > s_axi_wvalid; sc_core::sc_out< sc_dt::sc_bv<1> > s_axi_wready; sc_core::sc_out< sc_dt::sc_bv<12> > s_axi_bid; sc_core::sc_out< sc_dt::sc_bv<2> > s_axi_bresp; sc_core::sc_out< sc_dt::sc_bv<1> > s_axi_bvalid; sc_core::sc_in< sc_dt::sc_bv<1> > s_axi_bready; sc_core::sc_in< sc_dt::sc_bv<12> > s_axi_arid; sc_core::sc_in< sc_dt::sc_bv<32> > s_axi_araddr; sc_core::sc_in< sc_dt::sc_bv<8> > s_axi_arlen; sc_core::sc_in< sc_dt::sc_bv<3> > s_axi_arsize; sc_core::sc_in< sc_dt::sc_bv<2> > s_axi_arburst; sc_core::sc_in< sc_dt::sc_bv<1> > s_axi_arlock; sc_core::sc_in< sc_dt::sc_bv<4> > s_axi_arcache; sc_core::sc_in< sc_dt::sc_bv<3> > s_axi_arprot; sc_core::sc_in< sc_dt::sc_bv<4> > s_axi_arqos; sc_core::sc_in< sc_dt::sc_bv<1> > s_axi_arvalid; sc_core::sc_out< sc_dt::sc_bv<1> > s_axi_arready; sc_core::sc_out< sc_dt::sc_bv<12> > s_axi_rid; sc_core::sc_out< sc_dt::sc_bv<32> > s_axi_rdata; sc_core::sc_out< sc_dt::sc_bv<2> > s_axi_rresp; sc_core::sc_out< sc_dt::sc_bv<1> > s_axi_rlast; sc_core::sc_out< sc_dt::sc_bv<1> > s_axi_rvalid; sc_core::sc_in< sc_dt::sc_bv<1> > s_axi_rready; sc_core::sc_out< sc_dt::sc_bv<96> > m_axi_awid; sc_core::sc_out< sc_dt::sc_bv<256> > m_axi_awaddr; sc_core::sc_out< sc_dt::sc_bv<64> > m_axi_awlen; sc_core::sc_out< sc_dt::sc_bv<24> > m_axi_awsize; sc_core::sc_out< sc_dt::sc_bv<16> > m_axi_awburst; sc_core::sc_out< sc_dt::sc_bv<8> > m_axi_awlock; sc_core::sc_out< sc_dt::sc_bv<32> > m_axi_awcache; sc_core::sc_out< sc_dt::sc_bv<24> > m_axi_awprot; sc_core::sc_out< sc_dt::sc_bv<32> > m_axi_awregion; sc_core::sc_out< sc_dt::sc_bv<32> > m_axi_awqos; sc_core::sc_out< sc_dt::sc_bv<8> > m_axi_awvalid; sc_core::sc_in< sc_dt::sc_bv<8> > m_axi_awready; sc_core::sc_out< sc_dt::sc_bv<256> > m_axi_wdata; sc_core::sc_out< sc_dt::sc_bv<32> > m_axi_wstrb; sc_core::sc_out< sc_dt::sc_bv<8> > m_axi_wlast; sc_core::sc_out< sc_dt::sc_bv<8> > m_axi_wvalid; sc_core::sc_in< sc_dt::sc_bv<8> > m_axi_wready; sc_core::sc_in< sc_dt::sc_bv<96> > m_axi_bid; sc_core::sc_in< sc_dt::sc_bv<16> > m_axi_bresp; sc_core::sc_in< sc_dt::sc_bv<8> > m_axi_bvalid; sc_core::sc_out< sc_dt::sc_bv<8> > m_axi_bready; sc_core::sc_out< sc_dt::sc_bv<96> > m_axi_arid; sc_core::sc_out< sc_dt::sc_bv<256> > m_axi_araddr; sc_core::sc_out< sc_dt::sc_bv<64> > m_axi_arlen; sc_core::sc_out< sc_dt::sc_bv<24> > m_axi_arsize; sc_core::sc_out< sc_dt::sc_bv<16> > m_axi_arburst; sc_core::sc_out< sc_dt::sc_bv<8> > m_axi_arlock; sc_core::sc_out< sc_dt::sc_bv<32> > m_axi_arcache; sc_core::sc_out< sc_dt::sc_bv<24> > m_axi_arprot; sc_core::sc_out< sc_dt::sc_bv<32> > m_axi_arregion; sc_core::sc_out< sc_dt::sc_bv<32> > m_axi_arqos; sc_core::sc_out< sc_dt::sc_bv<8> > m_axi_arvalid; sc_core::sc_in< sc_dt::sc_bv<8> > m_axi_arready; sc_core::sc_in< sc_dt::sc_bv<96> > m_axi_rid; sc_core::sc_in< sc_dt::sc_bv<256> > m_axi_rdata; sc_core::sc_in< sc_dt::sc_bv<16> > m_axi_rresp; sc_core::sc_in< sc_dt::sc_bv<8> > m_axi_rlast; sc_core::sc_in< sc_dt::sc_bv<8> > m_axi_rvalid; sc_core::sc_out< sc_dt::sc_bv<8> > m_axi_rready; // Dummy Signals for IP Ports protected: virtual void before_end_of_elaboration(); private: xtlm::xaximm_pin2xtlm_t<32,32,12,1,1,1,1,1>* mp_S00_AXI_transactor; xsc::common::vectorN2scalar_converter<1>* mp_s_axi_awlock_converter; sc_signal< bool > m_s_axi_awlock_converter_signal; xsc::common::vectorN2scalar_converter<1>* mp_s_axi_awvalid_converter; sc_signal< bool > m_s_axi_awvalid_converter_signal; xsc::common::scalar2vectorN_converter<1>* mp_s_axi_awready_converter; sc_signal< bool > m_s_axi_awready_converter_signal; xsc::common::vectorN2scalar_converter<1>* mp_s_axi_wlast_converter; sc_signal< bool > m_s_axi_wlast_converter_signal; xsc::common::vectorN2scalar_converter<1>* mp_s_axi_wvalid_converter; sc_signal< bool > m_s_axi_wvalid_converter_signal; xsc::common::scalar2vectorN_converter<1>* mp_s_axi_wready_converter; sc_signal< bool > m_s_axi_wready_converter_signal; xsc::common::scalar2vectorN_converter<1>* mp_s_axi_bvalid_converter; sc_signal< bool > m_s_axi_bvalid_converter_signal; xsc::common::vectorN2scalar_converter<1>* mp_s_axi_bready_converter; sc_signal< bool > m_s_axi_bready_converter_signal; xsc::common::vectorN2scalar_converter<1>* mp_s_axi_arlock_converter; sc_signal< bool > m_s_axi_arlock_converter_signal; xsc::common::vectorN2scalar_converter<1>* mp_s_axi_arvalid_converter; sc_signal< bool > m_s_axi_arvalid_converter_signal; xsc::common::scalar2vectorN_converter<1>* mp_s_axi_arready_converter; sc_signal< bool > m_s_axi_arready_converter_signal; xsc::common::scalar2vectorN_converter<1>* mp_s_axi_rlast_converter; sc_signal< bool > m_s_axi_rlast_converter_signal; xsc::common::scalar2vectorN_converter<1>* mp_s_axi_rvalid_converter; sc_signal< bool > m_s_axi_rvalid_converter_signal; xsc::common::vectorN2scalar_converter<1>* mp_s_axi_rready_converter; sc_signal< bool > m_s_axi_rready_converter_signal; xtlm::xaximm_xtlm2pin_t<32,32,12,1,1,1,1,1>* mp_M00_AXI_transactor; xsc::common::vector2vector_converter<12,96>* mp_m_axi_awid_converter_0; sc_signal< sc_bv<12> > m_m_axi_awid_converter_0_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_awaddr_converter_0; sc_signal< sc_bv<32> > m_m_axi_awaddr_converter_0_signal; xsc::common::vector2vector_converter<8,64>* mp_m_axi_awlen_converter_0; sc_signal< sc_bv<8> > m_m_axi_awlen_converter_0_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_awsize_converter_0; sc_signal< sc_bv<3> > m_m_axi_awsize_converter_0_signal; xsc::common::vector2vector_converter<2,16>* mp_m_axi_awburst_converter_0; sc_signal< sc_bv<2> > m_m_axi_awburst_converter_0_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_awlock_converter_0; sc_signal< bool > m_m_axi_awlock_converter_0_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awcache_converter_0; sc_signal< sc_bv<4> > m_m_axi_awcache_converter_0_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_awprot_converter_0; sc_signal< sc_bv<3> > m_m_axi_awprot_converter_0_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awregion_converter_0; sc_signal< sc_bv<4> > m_m_axi_awregion_converter_0_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awqos_converter_0; sc_signal< sc_bv<4> > m_m_axi_awqos_converter_0_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_awvalid_converter_0; sc_signal< bool > m_m_axi_awvalid_converter_0_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_awready_converter_0; sc_signal< bool > m_m_axi_awready_converter_0_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_wdata_converter_0; sc_signal< sc_bv<32> > m_m_axi_wdata_converter_0_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_wstrb_converter_0; sc_signal< sc_bv<4> > m_m_axi_wstrb_converter_0_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_wlast_converter_0; sc_signal< bool > m_m_axi_wlast_converter_0_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_wvalid_converter_0; sc_signal< bool > m_m_axi_wvalid_converter_0_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_wready_converter_0; sc_signal< bool > m_m_axi_wready_converter_0_signal; xsc::common::vector2vector_converter<96,12>* mp_m_axi_bid_converter_0; sc_signal< sc_bv<12> > m_m_axi_bid_converter_0_signal; xsc::common::vector2vector_converter<16,2>* mp_m_axi_bresp_converter_0; sc_signal< sc_bv<2> > m_m_axi_bresp_converter_0_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_bvalid_converter_0; sc_signal< bool > m_m_axi_bvalid_converter_0_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_bready_converter_0; sc_signal< bool > m_m_axi_bready_converter_0_signal; xsc::common::vector2vector_converter<12,96>* mp_m_axi_arid_converter_0; sc_signal< sc_bv<12> > m_m_axi_arid_converter_0_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_araddr_converter_0; sc_signal< sc_bv<32> > m_m_axi_araddr_converter_0_signal; xsc::common::vector2vector_converter<8,64>* mp_m_axi_arlen_converter_0; sc_signal< sc_bv<8> > m_m_axi_arlen_converter_0_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_arsize_converter_0; sc_signal< sc_bv<3> > m_m_axi_arsize_converter_0_signal; xsc::common::vector2vector_converter<2,16>* mp_m_axi_arburst_converter_0; sc_signal< sc_bv<2> > m_m_axi_arburst_converter_0_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_arlock_converter_0; sc_signal< bool > m_m_axi_arlock_converter_0_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arcache_converter_0; sc_signal< sc_bv<4> > m_m_axi_arcache_converter_0_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_arprot_converter_0; sc_signal< sc_bv<3> > m_m_axi_arprot_converter_0_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arregion_converter_0; sc_signal< sc_bv<4> > m_m_axi_arregion_converter_0_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arqos_converter_0; sc_signal< sc_bv<4> > m_m_axi_arqos_converter_0_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_arvalid_converter_0; sc_signal< bool > m_m_axi_arvalid_converter_0_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_arready_converter_0; sc_signal< bool > m_m_axi_arready_converter_0_signal; xsc::common::vector2vector_converter<96,12>* mp_m_axi_rid_converter_0; sc_signal< sc_bv<12> > m_m_axi_rid_converter_0_signal; xsc::common::vector2vector_converter<256,32>* mp_m_axi_rdata_converter_0; sc_signal< sc_bv<32> > m_m_axi_rdata_converter_0_signal; xsc::common::vector2vector_converter<16,2>* mp_m_axi_rresp_converter_0; sc_signal< sc_bv<2> > m_m_axi_rresp_converter_0_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_rlast_converter_0; sc_signal< bool > m_m_axi_rlast_converter_0_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_rvalid_converter_0; sc_signal< bool > m_m_axi_rvalid_converter_0_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_rready_converter_0; sc_signal< bool > m_m_axi_rready_converter_0_signal; xtlm::xaximm_xtlm2pin_t<32,32,12,1,1,1,1,1>* mp_M01_AXI_transactor; xsc::common::vector2vector_converter<12,96>* mp_m_axi_awid_converter_1; sc_signal< sc_bv<12> > m_m_axi_awid_converter_1_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_awaddr_converter_1; sc_signal< sc_bv<32> > m_m_axi_awaddr_converter_1_signal; xsc::common::vector2vector_converter<8,64>* mp_m_axi_awlen_converter_1; sc_signal< sc_bv<8> > m_m_axi_awlen_converter_1_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_awsize_converter_1; sc_signal< sc_bv<3> > m_m_axi_awsize_converter_1_signal; xsc::common::vector2vector_converter<2,16>* mp_m_axi_awburst_converter_1; sc_signal< sc_bv<2> > m_m_axi_awburst_converter_1_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_awlock_converter_1; sc_signal< bool > m_m_axi_awlock_converter_1_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awcache_converter_1; sc_signal< sc_bv<4> > m_m_axi_awcache_converter_1_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_awprot_converter_1; sc_signal< sc_bv<3> > m_m_axi_awprot_converter_1_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awregion_converter_1; sc_signal< sc_bv<4> > m_m_axi_awregion_converter_1_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awqos_converter_1; sc_signal< sc_bv<4> > m_m_axi_awqos_converter_1_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_awvalid_converter_1; sc_signal< bool > m_m_axi_awvalid_converter_1_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_awready_converter_1; sc_signal< bool > m_m_axi_awready_converter_1_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_wdata_converter_1; sc_signal< sc_bv<32> > m_m_axi_wdata_converter_1_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_wstrb_converter_1; sc_signal< sc_bv<4> > m_m_axi_wstrb_converter_1_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_wlast_converter_1; sc_signal< bool > m_m_axi_wlast_converter_1_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_wvalid_converter_1; sc_signal< bool > m_m_axi_wvalid_converter_1_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_wready_converter_1; sc_signal< bool > m_m_axi_wready_converter_1_signal; xsc::common::vector2vector_converter<96,12>* mp_m_axi_bid_converter_1; sc_signal< sc_bv<12> > m_m_axi_bid_converter_1_signal; xsc::common::vector2vector_converter<16,2>* mp_m_axi_bresp_converter_1; sc_signal< sc_bv<2> > m_m_axi_bresp_converter_1_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_bvalid_converter_1; sc_signal< bool > m_m_axi_bvalid_converter_1_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_bready_converter_1; sc_signal< bool > m_m_axi_bready_converter_1_signal; xsc::common::vector2vector_converter<12,96>* mp_m_axi_arid_converter_1; sc_signal< sc_bv<12> > m_m_axi_arid_converter_1_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_araddr_converter_1; sc_signal< sc_bv<32> > m_m_axi_araddr_converter_1_signal; xsc::common::vector2vector_converter<8,64>* mp_m_axi_arlen_converter_1; sc_signal< sc_bv<8> > m_m_axi_arlen_converter_1_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_arsize_converter_1; sc_signal< sc_bv<3> > m_m_axi_arsize_converter_1_signal; xsc::common::vector2vector_converter<2,16>* mp_m_axi_arburst_converter_1; sc_signal< sc_bv<2> > m_m_axi_arburst_converter_1_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_arlock_converter_1; sc_signal< bool > m_m_axi_arlock_converter_1_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arcache_converter_1; sc_signal< sc_bv<4> > m_m_axi_arcache_converter_1_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_arprot_converter_1; sc_signal< sc_bv<3> > m_m_axi_arprot_converter_1_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arregion_converter_1; sc_signal< sc_bv<4> > m_m_axi_arregion_converter_1_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arqos_converter_1; sc_signal< sc_bv<4> > m_m_axi_arqos_converter_1_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_arvalid_converter_1; sc_signal< bool > m_m_axi_arvalid_converter_1_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_arready_converter_1; sc_signal< bool > m_m_axi_arready_converter_1_signal; xsc::common::vector2vector_converter<96,12>* mp_m_axi_rid_converter_1; sc_signal< sc_bv<12> > m_m_axi_rid_converter_1_signal; xsc::common::vector2vector_converter<256,32>* mp_m_axi_rdata_converter_1; sc_signal< sc_bv<32> > m_m_axi_rdata_converter_1_signal; xsc::common::vector2vector_converter<16,2>* mp_m_axi_rresp_converter_1; sc_signal< sc_bv<2> > m_m_axi_rresp_converter_1_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_rlast_converter_1; sc_signal< bool > m_m_axi_rlast_converter_1_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_rvalid_converter_1; sc_signal< bool > m_m_axi_rvalid_converter_1_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_rready_converter_1; sc_signal< bool > m_m_axi_rready_converter_1_signal; xtlm::xaximm_xtlm2pin_t<32,32,12,1,1,1,1,1>* mp_M02_AXI_transactor; xsc::common::vector2vector_converter<12,96>* mp_m_axi_awid_converter_2; sc_signal< sc_bv<12> > m_m_axi_awid_converter_2_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_awaddr_converter_2; sc_signal< sc_bv<32> > m_m_axi_awaddr_converter_2_signal; xsc::common::vector2vector_converter<8,64>* mp_m_axi_awlen_converter_2; sc_signal< sc_bv<8> > m_m_axi_awlen_converter_2_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_awsize_converter_2; sc_signal< sc_bv<3> > m_m_axi_awsize_converter_2_signal; xsc::common::vector2vector_converter<2,16>* mp_m_axi_awburst_converter_2; sc_signal< sc_bv<2> > m_m_axi_awburst_converter_2_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_awlock_converter_2; sc_signal< bool > m_m_axi_awlock_converter_2_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awcache_converter_2; sc_signal< sc_bv<4> > m_m_axi_awcache_converter_2_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_awprot_converter_2; sc_signal< sc_bv<3> > m_m_axi_awprot_converter_2_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awregion_converter_2; sc_signal< sc_bv<4> > m_m_axi_awregion_converter_2_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awqos_converter_2; sc_signal< sc_bv<4> > m_m_axi_awqos_converter_2_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_awvalid_converter_2; sc_signal< bool > m_m_axi_awvalid_converter_2_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_awready_converter_2; sc_signal< bool > m_m_axi_awready_converter_2_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_wdata_converter_2; sc_signal< sc_bv<32> > m_m_axi_wdata_converter_2_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_wstrb_converter_2; sc_signal< sc_bv<4> > m_m_axi_wstrb_converter_2_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_wlast_converter_2; sc_signal< bool > m_m_axi_wlast_converter_2_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_wvalid_converter_2; sc_signal< bool > m_m_axi_wvalid_converter_2_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_wready_converter_2; sc_signal< bool > m_m_axi_wready_converter_2_signal; xsc::common::vector2vector_converter<96,12>* mp_m_axi_bid_converter_2; sc_signal< sc_bv<12> > m_m_axi_bid_converter_2_signal; xsc::common::vector2vector_converter<16,2>* mp_m_axi_bresp_converter_2; sc_signal< sc_bv<2> > m_m_axi_bresp_converter_2_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_bvalid_converter_2; sc_signal< bool > m_m_axi_bvalid_converter_2_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_bready_converter_2; sc_signal< bool > m_m_axi_bready_converter_2_signal; xsc::common::vector2vector_converter<12,96>* mp_m_axi_arid_converter_2; sc_signal< sc_bv<12> > m_m_axi_arid_converter_2_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_araddr_converter_2; sc_signal< sc_bv<32> > m_m_axi_araddr_converter_2_signal; xsc::common::vector2vector_converter<8,64>* mp_m_axi_arlen_converter_2; sc_signal< sc_bv<8> > m_m_axi_arlen_converter_2_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_arsize_converter_2; sc_signal< sc_bv<3> > m_m_axi_arsize_converter_2_signal; xsc::common::vector2vector_converter<2,16>* mp_m_axi_arburst_converter_2; sc_signal< sc_bv<2> > m_m_axi_arburst_converter_2_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_arlock_converter_2; sc_signal< bool > m_m_axi_arlock_converter_2_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arcache_converter_2; sc_signal< sc_bv<4> > m_m_axi_arcache_converter_2_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_arprot_converter_2; sc_signal< sc_bv<3> > m_m_axi_arprot_converter_2_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arregion_converter_2; sc_signal< sc_bv<4> > m_m_axi_arregion_converter_2_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arqos_converter_2; sc_signal< sc_bv<4> > m_m_axi_arqos_converter_2_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_arvalid_converter_2; sc_signal< bool > m_m_axi_arvalid_converter_2_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_arready_converter_2; sc_signal< bool > m_m_axi_arready_converter_2_signal; xsc::common::vector2vector_converter<96,12>* mp_m_axi_rid_converter_2; sc_signal< sc_bv<12> > m_m_axi_rid_converter_2_signal; xsc::common::vector2vector_converter<256,32>* mp_m_axi_rdata_converter_2; sc_signal< sc_bv<32> > m_m_axi_rdata_converter_2_signal; xsc::common::vector2vector_converter<16,2>* mp_m_axi_rresp_converter_2; sc_signal< sc_bv<2> > m_m_axi_rresp_converter_2_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_rlast_converter_2; sc_signal< bool > m_m_axi_rlast_converter_2_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_rvalid_converter_2; sc_signal< bool > m_m_axi_rvalid_converter_2_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_rready_converter_2; sc_signal< bool > m_m_axi_rready_converter_2_signal; xtlm::xaximm_xtlm2pin_t<32,32,12,1,1,1,1,1>* mp_M03_AXI_transactor; xsc::common::vector2vector_converter<12,96>* mp_m_axi_awid_converter_3; sc_signal< sc_bv<12> > m_m_axi_awid_converter_3_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_awaddr_converter_3; sc_signal< sc_bv<32> > m_m_axi_awaddr_converter_3_signal; xsc::common::vector2vector_converter<8,64>* mp_m_axi_awlen_converter_3; sc_signal< sc_bv<8> > m_m_axi_awlen_converter_3_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_awsize_converter_3; sc_signal< sc_bv<3> > m_m_axi_awsize_converter_3_signal; xsc::common::vector2vector_converter<2,16>* mp_m_axi_awburst_converter_3; sc_signal< sc_bv<2> > m_m_axi_awburst_converter_3_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_awlock_converter_3; sc_signal< bool > m_m_axi_awlock_converter_3_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awcache_converter_3; sc_signal< sc_bv<4> > m_m_axi_awcache_converter_3_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_awprot_converter_3; sc_signal< sc_bv<3> > m_m_axi_awprot_converter_3_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awregion_converter_3; sc_signal< sc_bv<4> > m_m_axi_awregion_converter_3_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awqos_converter_3; sc_signal< sc_bv<4> > m_m_axi_awqos_converter_3_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_awvalid_converter_3; sc_signal< bool > m_m_axi_awvalid_converter_3_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_awready_converter_3; sc_signal< bool > m_m_axi_awready_converter_3_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_wdata_converter_3; sc_signal< sc_bv<32> > m_m_axi_wdata_converter_3_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_wstrb_converter_3; sc_signal< sc_bv<4> > m_m_axi_wstrb_converter_3_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_wlast_converter_3; sc_signal< bool > m_m_axi_wlast_converter_3_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_wvalid_converter_3; sc_signal< bool > m_m_axi_wvalid_converter_3_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_wready_converter_3; sc_signal< bool > m_m_axi_wready_converter_3_signal; xsc::common::vector2vector_converter<96,12>* mp_m_axi_bid_converter_3; sc_signal< sc_bv<12> > m_m_axi_bid_converter_3_signal; xsc::common::vector2vector_converter<16,2>* mp_m_axi_bresp_converter_3; sc_signal< sc_bv<2> > m_m_axi_bresp_converter_3_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_bvalid_converter_3; sc_signal< bool > m_m_axi_bvalid_converter_3_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_bready_converter_3; sc_signal< bool > m_m_axi_bready_converter_3_signal; xsc::common::vector2vector_converter<12,96>* mp_m_axi_arid_converter_3; sc_signal< sc_bv<12> > m_m_axi_arid_converter_3_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_araddr_converter_3; sc_signal< sc_bv<32> > m_m_axi_araddr_converter_3_signal; xsc::common::vector2vector_converter<8,64>* mp_m_axi_arlen_converter_3; sc_signal< sc_bv<8> > m_m_axi_arlen_converter_3_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_arsize_converter_3; sc_signal< sc_bv<3> > m_m_axi_arsize_converter_3_signal; xsc::common::vector2vector_converter<2,16>* mp_m_axi_arburst_converter_3; sc_signal< sc_bv<2> > m_m_axi_arburst_converter_3_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_arlock_converter_3; sc_signal< bool > m_m_axi_arlock_converter_3_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arcache_converter_3; sc_signal< sc_bv<4> > m_m_axi_arcache_converter_3_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_arprot_converter_3; sc_signal< sc_bv<3> > m_m_axi_arprot_converter_3_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arregion_converter_3; sc_signal< sc_bv<4> > m_m_axi_arregion_converter_3_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arqos_converter_3; sc_signal< sc_bv<4> > m_m_axi_arqos_converter_3_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_arvalid_converter_3; sc_signal< bool > m_m_axi_arvalid_converter_3_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_arready_converter_3; sc_signal< bool > m_m_axi_arready_converter_3_signal; xsc::common::vector2vector_converter<96,12>* mp_m_axi_rid_converter_3; sc_signal< sc_bv<12> > m_m_axi_rid_converter_3_signal; xsc::common::vector2vector_converter<256,32>* mp_m_axi_rdata_converter_3; sc_signal< sc_bv<32> > m_m_axi_rdata_converter_3_signal; xsc::common::vector2vector_converter<16,2>* mp_m_axi_rresp_converter_3; sc_signal< sc_bv<2> > m_m_axi_rresp_converter_3_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_rlast_converter_3; sc_signal< bool > m_m_axi_rlast_converter_3_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_rvalid_converter_3; sc_signal< bool > m_m_axi_rvalid_converter_3_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_rready_converter_3; sc_signal< bool > m_m_axi_rready_converter_3_signal; xtlm::xaximm_xtlm2pin_t<32,32,12,1,1,1,1,1>* mp_M04_AXI_transactor; xsc::common::vector2vector_converter<12,96>* mp_m_axi_awid_converter_4; sc_signal< sc_bv<12> > m_m_axi_awid_converter_4_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_awaddr_converter_4; sc_signal< sc_bv<32> > m_m_axi_awaddr_converter_4_signal; xsc::common::vector2vector_converter<8,64>* mp_m_axi_awlen_converter_4; sc_signal< sc_bv<8> > m_m_axi_awlen_converter_4_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_awsize_converter_4; sc_signal< sc_bv<3> > m_m_axi_awsize_converter_4_signal; xsc::common::vector2vector_converter<2,16>* mp_m_axi_awburst_converter_4; sc_signal< sc_bv<2> > m_m_axi_awburst_converter_4_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_awlock_converter_4; sc_signal< bool > m_m_axi_awlock_converter_4_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awcache_converter_4; sc_signal< sc_bv<4> > m_m_axi_awcache_converter_4_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_awprot_converter_4; sc_signal< sc_bv<3> > m_m_axi_awprot_converter_4_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awregion_converter_4; sc_signal< sc_bv<4> > m_m_axi_awregion_converter_4_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awqos_converter_4; sc_signal< sc_bv<4> > m_m_axi_awqos_converter_4_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_awvalid_converter_4; sc_signal< bool > m_m_axi_awvalid_converter_4_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_awready_converter_4; sc_signal< bool > m_m_axi_awready_converter_4_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_wdata_converter_4; sc_signal< sc_bv<32> > m_m_axi_wdata_converter_4_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_wstrb_converter_4; sc_signal< sc_bv<4> > m_m_axi_wstrb_converter_4_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_wlast_converter_4; sc_signal< bool > m_m_axi_wlast_converter_4_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_wvalid_converter_4; sc_signal< bool > m_m_axi_wvalid_converter_4_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_wready_converter_4; sc_signal< bool > m_m_axi_wready_converter_4_signal; xsc::common::vector2vector_converter<96,12>* mp_m_axi_bid_converter_4; sc_signal< sc_bv<12> > m_m_axi_bid_converter_4_signal; xsc::common::vector2vector_converter<16,2>* mp_m_axi_bresp_converter_4; sc_signal< sc_bv<2> > m_m_axi_bresp_converter_4_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_bvalid_converter_4; sc_signal< bool > m_m_axi_bvalid_converter_4_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_bready_converter_4; sc_signal< bool > m_m_axi_bready_converter_4_signal; xsc::common::vector2vector_converter<12,96>* mp_m_axi_arid_converter_4; sc_signal< sc_bv<12> > m_m_axi_arid_converter_4_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_araddr_converter_4; sc_signal< sc_bv<32> > m_m_axi_araddr_converter_4_signal; xsc::common::vector2vector_converter<8,64>* mp_m_axi_arlen_converter_4; sc_signal< sc_bv<8> > m_m_axi_arlen_converter_4_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_arsize_converter_4; sc_signal< sc_bv<3> > m_m_axi_arsize_converter_4_signal; xsc::common::vector2vector_converter<2,16>* mp_m_axi_arburst_converter_4; sc_signal< sc_bv<2> > m_m_axi_arburst_converter_4_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_arlock_converter_4; sc_signal< bool > m_m_axi_arlock_converter_4_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arcache_converter_4; sc_signal< sc_bv<4> > m_m_axi_arcache_converter_4_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_arprot_converter_4; sc_signal< sc_bv<3> > m_m_axi_arprot_converter_4_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arregion_converter_4; sc_signal< sc_bv<4> > m_m_axi_arregion_converter_4_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arqos_converter_4; sc_signal< sc_bv<4> > m_m_axi_arqos_converter_4_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_arvalid_converter_4; sc_signal< bool > m_m_axi_arvalid_converter_4_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_arready_converter_4; sc_signal< bool > m_m_axi_arready_converter_4_signal; xsc::common::vector2vector_converter<96,12>* mp_m_axi_rid_converter_4; sc_signal< sc_bv<12> > m_m_axi_rid_converter_4_signal; xsc::common::vector2vector_converter<256,32>* mp_m_axi_rdata_converter_4; sc_signal< sc_bv<32> > m_m_axi_rdata_converter_4_signal; xsc::common::vector2vector_converter<16,2>* mp_m_axi_rresp_converter_4; sc_signal< sc_bv<2> > m_m_axi_rresp_converter_4_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_rlast_converter_4; sc_signal< bool > m_m_axi_rlast_converter_4_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_rvalid_converter_4; sc_signal< bool > m_m_axi_rvalid_converter_4_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_rready_converter_4; sc_signal< bool > m_m_axi_rready_converter_4_signal; xtlm::xaximm_xtlm2pin_t<32,32,12,1,1,1,1,1>* mp_M05_AXI_transactor; xsc::common::vector2vector_converter<12,96>* mp_m_axi_awid_converter_5; sc_signal< sc_bv<12> > m_m_axi_awid_converter_5_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_awaddr_converter_5; sc_signal< sc_bv<32> > m_m_axi_awaddr_converter_5_signal; xsc::common::vector2vector_converter<8,64>* mp_m_axi_awlen_converter_5; sc_signal< sc_bv<8> > m_m_axi_awlen_converter_5_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_awsize_converter_5; sc_signal< sc_bv<3> > m_m_axi_awsize_converter_5_signal; xsc::common::vector2vector_converter<2,16>* mp_m_axi_awburst_converter_5; sc_signal< sc_bv<2> > m_m_axi_awburst_converter_5_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_awlock_converter_5; sc_signal< bool > m_m_axi_awlock_converter_5_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awcache_converter_5; sc_signal< sc_bv<4> > m_m_axi_awcache_converter_5_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_awprot_converter_5; sc_signal< sc_bv<3> > m_m_axi_awprot_converter_5_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awregion_converter_5; sc_signal< sc_bv<4> > m_m_axi_awregion_converter_5_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awqos_converter_5; sc_signal< sc_bv<4> > m_m_axi_awqos_converter_5_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_awvalid_converter_5; sc_signal< bool > m_m_axi_awvalid_converter_5_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_awready_converter_5; sc_signal< bool > m_m_axi_awready_converter_5_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_wdata_converter_5; sc_signal< sc_bv<32> > m_m_axi_wdata_converter_5_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_wstrb_converter_5; sc_signal< sc_bv<4> > m_m_axi_wstrb_converter_5_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_wlast_converter_5; sc_signal< bool > m_m_axi_wlast_converter_5_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_wvalid_converter_5; sc_signal< bool > m_m_axi_wvalid_converter_5_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_wready_converter_5; sc_signal< bool > m_m_axi_wready_converter_5_signal; xsc::common::vector2vector_converter<96,12>* mp_m_axi_bid_converter_5; sc_signal< sc_bv<12> > m_m_axi_bid_converter_5_signal; xsc::common::vector2vector_converter<16,2>* mp_m_axi_bresp_converter_5; sc_signal< sc_bv<2> > m_m_axi_bresp_converter_5_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_bvalid_converter_5; sc_signal< bool > m_m_axi_bvalid_converter_5_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_bready_converter_5; sc_signal< bool > m_m_axi_bready_converter_5_signal; xsc::common::vector2vector_converter<12,96>* mp_m_axi_arid_converter_5; sc_signal< sc_bv<12> > m_m_axi_arid_converter_5_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_araddr_converter_5; sc_signal< sc_bv<32> > m_m_axi_araddr_converter_5_signal; xsc::common::vector2vector_converter<8,64>* mp_m_axi_arlen_converter_5; sc_signal< sc_bv<8> > m_m_axi_arlen_converter_5_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_arsize_converter_5; sc_signal< sc_bv<3> > m_m_axi_arsize_converter_5_signal; xsc::common::vector2vector_converter<2,16>* mp_m_axi_arburst_converter_5; sc_signal< sc_bv<2> > m_m_axi_arburst_converter_5_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_arlock_converter_5; sc_signal< bool > m_m_axi_arlock_converter_5_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arcache_converter_5; sc_signal< sc_bv<4> > m_m_axi_arcache_converter_5_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_arprot_converter_5; sc_signal< sc_bv<3> > m_m_axi_arprot_converter_5_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arregion_converter_5; sc_signal< sc_bv<4> > m_m_axi_arregion_converter_5_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arqos_converter_5; sc_signal< sc_bv<4> > m_m_axi_arqos_converter_5_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_arvalid_converter_5; sc_signal< bool > m_m_axi_arvalid_converter_5_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_arready_converter_5; sc_signal< bool > m_m_axi_arready_converter_5_signal; xsc::common::vector2vector_converter<96,12>* mp_m_axi_rid_converter_5; sc_signal< sc_bv<12> > m_m_axi_rid_converter_5_signal; xsc::common::vector2vector_converter<256,32>* mp_m_axi_rdata_converter_5; sc_signal< sc_bv<32> > m_m_axi_rdata_converter_5_signal; xsc::common::vector2vector_converter<16,2>* mp_m_axi_rresp_converter_5; sc_signal< sc_bv<2> > m_m_axi_rresp_converter_5_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_rlast_converter_5; sc_signal< bool > m_m_axi_rlast_converter_5_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_rvalid_converter_5; sc_signal< bool > m_m_axi_rvalid_converter_5_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_rready_converter_5; sc_signal< bool > m_m_axi_rready_converter_5_signal; xtlm::xaximm_xtlm2pin_t<32,32,12,1,1,1,1,1>* mp_M06_AXI_transactor; xsc::common::vector2vector_converter<12,96>* mp_m_axi_awid_converter_6; sc_signal< sc_bv<12> > m_m_axi_awid_converter_6_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_awaddr_converter_6; sc_signal< sc_bv<32> > m_m_axi_awaddr_converter_6_signal; xsc::common::vector2vector_converter<8,64>* mp_m_axi_awlen_converter_6; sc_signal< sc_bv<8> > m_m_axi_awlen_converter_6_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_awsize_converter_6; sc_signal< sc_bv<3> > m_m_axi_awsize_converter_6_signal; xsc::common::vector2vector_converter<2,16>* mp_m_axi_awburst_converter_6; sc_signal< sc_bv<2> > m_m_axi_awburst_converter_6_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_awlock_converter_6; sc_signal< bool > m_m_axi_awlock_converter_6_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awcache_converter_6; sc_signal< sc_bv<4> > m_m_axi_awcache_converter_6_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_awprot_converter_6; sc_signal< sc_bv<3> > m_m_axi_awprot_converter_6_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awregion_converter_6; sc_signal< sc_bv<4> > m_m_axi_awregion_converter_6_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awqos_converter_6; sc_signal< sc_bv<4> > m_m_axi_awqos_converter_6_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_awvalid_converter_6; sc_signal< bool > m_m_axi_awvalid_converter_6_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_awready_converter_6; sc_signal< bool > m_m_axi_awready_converter_6_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_wdata_converter_6; sc_signal< sc_bv<32> > m_m_axi_wdata_converter_6_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_wstrb_converter_6; sc_signal< sc_bv<4> > m_m_axi_wstrb_converter_6_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_wlast_converter_6; sc_signal< bool > m_m_axi_wlast_converter_6_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_wvalid_converter_6; sc_signal< bool > m_m_axi_wvalid_converter_6_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_wready_converter_6; sc_signal< bool > m_m_axi_wready_converter_6_signal; xsc::common::vector2vector_converter<96,12>* mp_m_axi_bid_converter_6; sc_signal< sc_bv<12> > m_m_axi_bid_converter_6_signal; xsc::common::vector2vector_converter<16,2>* mp_m_axi_bresp_converter_6; sc_signal< sc_bv<2> > m_m_axi_bresp_converter_6_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_bvalid_converter_6; sc_signal< bool > m_m_axi_bvalid_converter_6_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_bready_converter_6; sc_signal< bool > m_m_axi_bready_converter_6_signal; xsc::common::vector2vector_converter<12,96>* mp_m_axi_arid_converter_6; sc_signal< sc_bv<12> > m_m_axi_arid_converter_6_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_araddr_converter_6; sc_signal< sc_bv<32> > m_m_axi_araddr_converter_6_signal; xsc::common::vector2vector_converter<8,64>* mp_m_axi_arlen_converter_6; sc_signal< sc_bv<8> > m_m_axi_arlen_converter_6_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_arsize_converter_6; sc_signal< sc_bv<3> > m_m_axi_arsize_converter_6_signal; xsc::common::vector2vector_converter<2,16>* mp_m_axi_arburst_converter_6; sc_signal< sc_bv<2> > m_m_axi_arburst_converter_6_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_arlock_converter_6; sc_signal< bool > m_m_axi_arlock_converter_6_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arcache_converter_6; sc_signal< sc_bv<4> > m_m_axi_arcache_converter_6_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_arprot_converter_6; sc_signal< sc_bv<3> > m_m_axi_arprot_converter_6_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arregion_converter_6; sc_signal< sc_bv<4> > m_m_axi_arregion_converter_6_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arqos_converter_6; sc_signal< sc_bv<4> > m_m_axi_arqos_converter_6_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_arvalid_converter_6; sc_signal< bool > m_m_axi_arvalid_converter_6_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_arready_converter_6; sc_signal< bool > m_m_axi_arready_converter_6_signal; xsc::common::vector2vector_converter<96,12>* mp_m_axi_rid_converter_6; sc_signal< sc_bv<12> > m_m_axi_rid_converter_6_signal; xsc::common::vector2vector_converter<256,32>* mp_m_axi_rdata_converter_6; sc_signal< sc_bv<32> > m_m_axi_rdata_converter_6_signal; xsc::common::vector2vector_converter<16,2>* mp_m_axi_rresp_converter_6; sc_signal< sc_bv<2> > m_m_axi_rresp_converter_6_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_rlast_converter_6; sc_signal< bool > m_m_axi_rlast_converter_6_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_rvalid_converter_6; sc_signal< bool > m_m_axi_rvalid_converter_6_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_rready_converter_6; sc_signal< bool > m_m_axi_rready_converter_6_signal; xtlm::xaximm_xtlm2pin_t<32,32,12,1,1,1,1,1>* mp_M07_AXI_transactor; xsc::common::vector2vector_converter<12,96>* mp_m_axi_awid_converter_7; sc_signal< sc_bv<12> > m_m_axi_awid_converter_7_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_awaddr_converter_7; sc_signal< sc_bv<32> > m_m_axi_awaddr_converter_7_signal; xsc::common::vector2vector_converter<8,64>* mp_m_axi_awlen_converter_7; sc_signal< sc_bv<8> > m_m_axi_awlen_converter_7_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_awsize_converter_7; sc_signal< sc_bv<3> > m_m_axi_awsize_converter_7_signal; xsc::common::vector2vector_converter<2,16>* mp_m_axi_awburst_converter_7; sc_signal< sc_bv<2> > m_m_axi_awburst_converter_7_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_awlock_converter_7; sc_signal< bool > m_m_axi_awlock_converter_7_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awcache_converter_7; sc_signal< sc_bv<4> > m_m_axi_awcache_converter_7_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_awprot_converter_7; sc_signal< sc_bv<3> > m_m_axi_awprot_converter_7_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awregion_converter_7; sc_signal< sc_bv<4> > m_m_axi_awregion_converter_7_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awqos_converter_7; sc_signal< sc_bv<4> > m_m_axi_awqos_converter_7_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_awvalid_converter_7; sc_signal< bool > m_m_axi_awvalid_converter_7_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_awready_converter_7; sc_signal< bool > m_m_axi_awready_converter_7_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_wdata_converter_7; sc_signal< sc_bv<32> > m_m_axi_wdata_converter_7_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_wstrb_converter_7; sc_signal< sc_bv<4> > m_m_axi_wstrb_converter_7_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_wlast_converter_7; sc_signal< bool > m_m_axi_wlast_converter_7_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_wvalid_converter_7; sc_signal< bool > m_m_axi_wvalid_converter_7_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_wready_converter_7; sc_signal< bool > m_m_axi_wready_converter_7_signal; xsc::common::vector2vector_converter<96,12>* mp_m_axi_bid_converter_7; sc_signal< sc_bv<12> > m_m_axi_bid_converter_7_signal; xsc::common::vector2vector_converter<16,2>* mp_m_axi_bresp_converter_7; sc_signal< sc_bv<2> > m_m_axi_bresp_converter_7_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_bvalid_converter_7; sc_signal< bool > m_m_axi_bvalid_converter_7_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_bready_converter_7; sc_signal< bool > m_m_axi_bready_converter_7_signal; xsc::common::vector2vector_converter<12,96>* mp_m_axi_arid_converter_7; sc_signal< sc_bv<12> > m_m_axi_arid_converter_7_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_araddr_converter_7; sc_signal< sc_bv<32> > m_m_axi_araddr_converter_7_signal; xsc::common::vector2vector_converter<8,64>* mp_m_axi_arlen_converter_7; sc_signal< sc_bv<8> > m_m_axi_arlen_converter_7_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_arsize_converter_7; sc_signal< sc_bv<3> > m_m_axi_arsize_converter_7_signal; xsc::common::vector2vector_converter<2,16>* mp_m_axi_arburst_converter_7; sc_signal< sc_bv<2> > m_m_axi_arburst_converter_7_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_arlock_converter_7; sc_signal< bool > m_m_axi_arlock_converter_7_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arcache_converter_7; sc_signal< sc_bv<4> > m_m_axi_arcache_converter_7_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_arprot_converter_7; sc_signal< sc_bv<3> > m_m_axi_arprot_converter_7_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arregion_converter_7; sc_signal< sc_bv<4> > m_m_axi_arregion_converter_7_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arqos_converter_7; sc_signal< sc_bv<4> > m_m_axi_arqos_converter_7_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_arvalid_converter_7; sc_signal< bool > m_m_axi_arvalid_converter_7_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_arready_converter_7; sc_signal< bool > m_m_axi_arready_converter_7_signal; xsc::common::vector2vector_converter<96,12>* mp_m_axi_rid_converter_7; sc_signal< sc_bv<12> > m_m_axi_rid_converter_7_signal; xsc::common::vector2vector_converter<256,32>* mp_m_axi_rdata_converter_7; sc_signal< sc_bv<32> > m_m_axi_rdata_converter_7_signal; xsc::common::vector2vector_converter<16,2>* mp_m_axi_rresp_converter_7; sc_signal< sc_bv<2> > m_m_axi_rresp_converter_7_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_rlast_converter_7; sc_signal< bool > m_m_axi_rlast_converter_7_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_rvalid_converter_7; sc_signal< bool > m_m_axi_rvalid_converter_7_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_rready_converter_7; sc_signal< bool > m_m_axi_rready_converter_7_signal; xsc::xsc_concatenator<256, 8> * mp_m_axi_concat_araddr; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_araddr_out_0; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_araddr_out_1; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_araddr_out_2; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_araddr_out_3; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_araddr_out_4; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_araddr_out_5; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_araddr_out_6; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_araddr_out_7; xsc::xsc_concatenator<16, 8> * mp_m_axi_concat_arburst; sc_signal<sc_dt::sc_bv<16> > m_axi_concat_arburst_out_0; sc_signal<sc_dt::sc_bv<16> > m_axi_concat_arburst_out_1; sc_signal<sc_dt::sc_bv<16> > m_axi_concat_arburst_out_2; sc_signal<sc_dt::sc_bv<16> > m_axi_concat_arburst_out_3; sc_signal<sc_dt::sc_bv<16> > m_axi_concat_arburst_out_4; sc_signal<sc_dt::sc_bv<16> > m_axi_concat_arburst_out_5; sc_signal<sc_dt::sc_bv<16> > m_axi_concat_arburst_out_6; sc_signal<sc_dt::sc_bv<16> > m_axi_concat_arburst_out_7; xsc::xsc_concatenator<32, 8> * mp_m_axi_concat_arcache; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arcache_out_0; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arcache_out_1; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arcache_out_2; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arcache_out_3; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arcache_out_4; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arcache_out_5; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arcache_out_6; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arcache_out_7; xsc::xsc_concatenator<96, 8> * mp_m_axi_concat_arid; sc_signal<sc_dt::sc_bv<96> > m_axi_concat_arid_out_0; sc_signal<sc_dt::sc_bv<96> > m_axi_concat_arid_out_1; sc_signal<sc_dt::sc_bv<96> > m_axi_concat_arid_out_2; sc_signal<sc_dt::sc_bv<96> > m_axi_concat_arid_out_3; sc_signal<sc_dt::sc_bv<96> > m_axi_concat_arid_out_4; sc_signal<sc_dt::sc_bv<96> > m_axi_concat_arid_out_5; sc_signal<sc_dt::sc_bv<96> > m_axi_concat_arid_out_6; sc_signal<sc_dt::sc_bv<96> > m_axi_concat_arid_out_7; xsc::xsc_concatenator<64, 8> * mp_m_axi_concat_arlen; sc_signal<sc_dt::sc_bv<64> > m_axi_concat_arlen_out_0; sc_signal<sc_dt::sc_bv<64> > m_axi_concat_arlen_out_1; sc_signal<sc_dt::sc_bv<64> > m_axi_concat_arlen_out_2; sc_signal<sc_dt::sc_bv<64> > m_axi_concat_arlen_out_3; sc_signal<sc_dt::sc_bv<64> > m_axi_concat_arlen_out_4; sc_signal<sc_dt::sc_bv<64> > m_axi_concat_arlen_out_5; sc_signal<sc_dt::sc_bv<64> > m_axi_concat_arlen_out_6; sc_signal<sc_dt::sc_bv<64> > m_axi_concat_arlen_out_7; xsc::xsc_concatenator<8, 8> * mp_m_axi_concat_arlock; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_arlock_out_0; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_arlock_out_1; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_arlock_out_2; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_arlock_out_3; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_arlock_out_4; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_arlock_out_5; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_arlock_out_6; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_arlock_out_7; xsc::xsc_concatenator<24, 8> * mp_m_axi_concat_arprot; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_arprot_out_0; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_arprot_out_1; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_arprot_out_2; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_arprot_out_3; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_arprot_out_4; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_arprot_out_5; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_arprot_out_6; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_arprot_out_7; xsc::xsc_concatenator<32, 8> * mp_m_axi_concat_arqos; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arqos_out_0; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arqos_out_1; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arqos_out_2; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arqos_out_3; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arqos_out_4; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arqos_out_5; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arqos_out_6; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arqos_out_7; xsc::xsc_split<8, 8> * mp_m_axi_split_arready; sc_signal<sc_dt::sc_bv<8> > m_axi_split_arready_out_0; sc_signal<sc_dt::sc_bv<8> > m_axi_split_arready_out_1; sc_signal<sc_dt::sc_bv<8> > m_axi_split_arready_out_2; sc_signal<sc_dt::sc_bv<8> > m_axi_split_arready_out_3; sc_signal<sc_dt::sc_bv<8> > m_axi_split_arready_out_4; sc_signal<sc_dt::sc_bv<8> > m_axi_split_arready_out_5; sc_signal<sc_dt::sc_bv<8> > m_axi_split_arready_out_6; sc_signal<sc_dt::sc_bv<8> > m_axi_split_arready_out_7; xsc::xsc_concatenator<32, 8> * mp_m_axi_concat_arregion; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arregion_out_0; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arregion_out_1; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arregion_out_2; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arregion_out_3; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arregion_out_4; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arregion_out_5; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arregion_out_6; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arregion_out_7; xsc::xsc_concatenator<24, 8> * mp_m_axi_concat_arsize; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_arsize_out_0; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_arsize_out_1; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_arsize_out_2; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_arsize_out_3; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_arsize_out_4; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_arsize_out_5; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_arsize_out_6; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_arsize_out_7; xsc::xsc_concatenator<8, 8> * mp_m_axi_concat_arvalid; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_arvalid_out_0; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_arvalid_out_1; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_arvalid_out_2; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_arvalid_out_3; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_arvalid_out_4; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_arvalid_out_5; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_arvalid_out_6; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_arvalid_out_7; xsc::xsc_concatenator<256, 8> * mp_m_axi_concat_awaddr; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_awaddr_out_0; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_awaddr_out_1; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_awaddr_out_2; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_awaddr_out_3; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_awaddr_out_4; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_awaddr_out_5; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_awaddr_out_6; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_awaddr_out_7; xsc::xsc_concatenator<16, 8> * mp_m_axi_concat_awburst; sc_signal<sc_dt::sc_bv<16> > m_axi_concat_awburst_out_0; sc_signal<sc_dt::sc_bv<16> > m_axi_concat_awburst_out_1; sc_signal<sc_dt::sc_bv<16> > m_axi_concat_awburst_out_2; sc_signal<sc_dt::sc_bv<16> > m_axi_concat_awburst_out_3; sc_signal<sc_dt::sc_bv<16> > m_axi_concat_awburst_out_4; sc_signal<sc_dt::sc_bv<16> > m_axi_concat_awburst_out_5; sc_signal<sc_dt::sc_bv<16> > m_axi_concat_awburst_out_6; sc_signal<sc_dt::sc_bv<16> > m_axi_concat_awburst_out_7; xsc::xsc_concatenator<32, 8> * mp_m_axi_concat_awcache; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awcache_out_0; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awcache_out_1; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awcache_out_2; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awcache_out_3; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awcache_out_4; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awcache_out_5; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awcache_out_6; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awcache_out_7; xsc::xsc_concatenator<96, 8> * mp_m_axi_concat_awid; sc_signal<sc_dt::sc_bv<96> > m_axi_concat_awid_out_0; sc_signal<sc_dt::sc_bv<96> > m_axi_concat_awid_out_1; sc_signal<sc_dt::sc_bv<96> > m_axi_concat_awid_out_2; sc_signal<sc_dt::sc_bv<96> > m_axi_concat_awid_out_3; sc_signal<sc_dt::sc_bv<96> > m_axi_concat_awid_out_4; sc_signal<sc_dt::sc_bv<96> > m_axi_concat_awid_out_5; sc_signal<sc_dt::sc_bv<96> > m_axi_concat_awid_out_6; sc_signal<sc_dt::sc_bv<96> > m_axi_concat_awid_out_7; xsc::xsc_concatenator<64, 8> * mp_m_axi_concat_awlen; sc_signal<sc_dt::sc_bv<64> > m_axi_concat_awlen_out_0; sc_signal<sc_dt::sc_bv<64> > m_axi_concat_awlen_out_1; sc_signal<sc_dt::sc_bv<64> > m_axi_concat_awlen_out_2; sc_signal<sc_dt::sc_bv<64> > m_axi_concat_awlen_out_3; sc_signal<sc_dt::sc_bv<64> > m_axi_concat_awlen_out_4; sc_signal<sc_dt::sc_bv<64> > m_axi_concat_awlen_out_5; sc_signal<sc_dt::sc_bv<64> > m_axi_concat_awlen_out_6; sc_signal<sc_dt::sc_bv<64> > m_axi_concat_awlen_out_7; xsc::xsc_concatenator<8, 8> * mp_m_axi_concat_awlock; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_awlock_out_0; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_awlock_out_1; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_awlock_out_2; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_awlock_out_3; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_awlock_out_4; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_awlock_out_5; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_awlock_out_6; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_awlock_out_7; xsc::xsc_concatenator<24, 8> * mp_m_axi_concat_awprot; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_awprot_out_0; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_awprot_out_1; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_awprot_out_2; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_awprot_out_3; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_awprot_out_4; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_awprot_out_5; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_awprot_out_6; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_awprot_out_7; xsc::xsc_concatenator<32, 8> * mp_m_axi_concat_awqos; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awqos_out_0; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awqos_out_1; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awqos_out_2; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awqos_out_3; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awqos_out_4; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awqos_out_5; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awqos_out_6; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awqos_out_7; xsc::xsc_split<8, 8> * mp_m_axi_split_awready; sc_signal<sc_dt::sc_bv<8> > m_axi_split_awready_out_0; sc_signal<sc_dt::sc_bv<8> > m_axi_split_awready_out_1; sc_signal<sc_dt::sc_bv<8> > m_axi_split_awready_out_2; sc_signal<sc_dt::sc_bv<8> > m_axi_split_awready_out_3; sc_signal<sc_dt::sc_bv<8> > m_axi_split_awready_out_4; sc_signal<sc_dt::sc_bv<8> > m_axi_split_awready_out_5; sc_signal<sc_dt::sc_bv<8> > m_axi_split_awready_out_6; sc_signal<sc_dt::sc_bv<8> > m_axi_split_awready_out_7; xsc::xsc_concatenator<32, 8> * mp_m_axi_concat_awregion; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awregion_out_0; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awregion_out_1; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awregion_out_2; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awregion_out_3; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awregion_out_4; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awregion_out_5; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awregion_out_6; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awregion_out_7; xsc::xsc_concatenator<24, 8> * mp_m_axi_concat_awsize; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_awsize_out_0; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_awsize_out_1; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_awsize_out_2; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_awsize_out_3; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_awsize_out_4; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_awsize_out_5; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_awsize_out_6; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_awsize_out_7; xsc::xsc_concatenator<8, 8> * mp_m_axi_concat_awvalid; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_awvalid_out_0; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_awvalid_out_1; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_awvalid_out_2; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_awvalid_out_3; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_awvalid_out_4; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_awvalid_out_5; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_awvalid_out_6; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_awvalid_out_7; xsc::xsc_split<96, 8> * mp_m_axi_split_bid; sc_signal<sc_dt::sc_bv<96> > m_axi_split_bid_out_0; sc_signal<sc_dt::sc_bv<96> > m_axi_split_bid_out_1; sc_signal<sc_dt::sc_bv<96> > m_axi_split_bid_out_2; sc_signal<sc_dt::sc_bv<96> > m_axi_split_bid_out_3; sc_signal<sc_dt::sc_bv<96> > m_axi_split_bid_out_4; sc_signal<sc_dt::sc_bv<96> > m_axi_split_bid_out_5; sc_signal<sc_dt::sc_bv<96> > m_axi_split_bid_out_6; sc_signal<sc_dt::sc_bv<96> > m_axi_split_bid_out_7; xsc::xsc_concatenator<8, 8> * mp_m_axi_concat_bready; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_bready_out_0; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_bready_out_1; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_bready_out_2; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_bready_out_3; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_bready_out_4; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_bready_out_5; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_bready_out_6; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_bready_out_7; xsc::xsc_split<16, 8> * mp_m_axi_split_bresp; sc_signal<sc_dt::sc_bv<16> > m_axi_split_bresp_out_0; sc_signal<sc_dt::sc_bv<16> > m_axi_split_bresp_out_1; sc_signal<sc_dt::sc_bv<16> > m_axi_split_bresp_out_2; sc_signal<sc_dt::sc_bv<16> > m_axi_split_bresp_out_3; sc_signal<sc_dt::sc_bv<16> > m_axi_split_bresp_out_4; sc_signal<sc_dt::sc_bv<16> > m_axi_split_bresp_out_5; sc_signal<sc_dt::sc_bv<16> > m_axi_split_bresp_out_6; sc_signal<sc_dt::sc_bv<16> > m_axi_split_bresp_out_7; xsc::xsc_split<8, 8> * mp_m_axi_split_bvalid; sc_signal<sc_dt::sc_bv<8> > m_axi_split_bvalid_out_0; sc_signal<sc_dt::sc_bv<8> > m_axi_split_bvalid_out_1; sc_signal<sc_dt::sc_bv<8> > m_axi_split_bvalid_out_2; sc_signal<sc_dt::sc_bv<8> > m_axi_split_bvalid_out_3; sc_signal<sc_dt::sc_bv<8> > m_axi_split_bvalid_out_4; sc_signal<sc_dt::sc_bv<8> > m_axi_split_bvalid_out_5; sc_signal<sc_dt::sc_bv<8> > m_axi_split_bvalid_out_6; sc_signal<sc_dt::sc_bv<8> > m_axi_split_bvalid_out_7; xsc::xsc_split<256, 8> * mp_m_axi_split_rdata; sc_signal<sc_dt::sc_bv<256> > m_axi_split_rdata_out_0; sc_signal<sc_dt::sc_bv<256> > m_axi_split_rdata_out_1; sc_signal<sc_dt::sc_bv<256> > m_axi_split_rdata_out_2; sc_signal<sc_dt::sc_bv<256> > m_axi_split_rdata_out_3; sc_signal<sc_dt::sc_bv<256> > m_axi_split_rdata_out_4; sc_signal<sc_dt::sc_bv<256> > m_axi_split_rdata_out_5; sc_signal<sc_dt::sc_bv<256> > m_axi_split_rdata_out_6; sc_signal<sc_dt::sc_bv<256> > m_axi_split_rdata_out_7; xsc::xsc_split<96, 8> * mp_m_axi_split_rid; sc_signal<sc_dt::sc_bv<96> > m_axi_split_rid_out_0; sc_signal<sc_dt::sc_bv<96> > m_axi_split_rid_out_1; sc_signal<sc_dt::sc_bv<96> > m_axi_split_rid_out_2; sc_signal<sc_dt::sc_bv<96> > m_axi_split_rid_out_3; sc_signal<sc_dt::sc_bv<96> > m_axi_split_rid_out_4; sc_signal<sc_dt::sc_bv<96> > m_axi_split_rid_out_5; sc_signal<sc_dt::sc_bv<96> > m_axi_split_rid_out_6; sc_signal<sc_dt::sc_bv<96> > m_axi_split_rid_out_7; xsc::xsc_split<8, 8> * mp_m_axi_split_rlast; sc_signal<sc_dt::sc_bv<8> > m_axi_split_rlast_out_0; sc_signal<sc_dt::sc_bv<8> > m_axi_split_rlast_out_1; sc_signal<sc_dt::sc_bv<8> > m_axi_split_rlast_out_2; sc_signal<sc_dt::sc_bv<8> > m_axi_split_rlast_out_3; sc_signal<sc_dt::sc_bv<8> > m_axi_split_rlast_out_4; sc_signal<sc_dt::sc_bv<8> > m_axi_split_rlast_out_5; sc_signal<sc_dt::sc_bv<8> > m_axi_split_rlast_out_6; sc_signal<sc_dt::sc_bv<8> > m_axi_split_rlast_out_7; xsc::xsc_concatenator<8, 8> * mp_m_axi_concat_rready; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_rready_out_0; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_rready_out_1; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_rready_out_2; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_rready_out_3; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_rready_out_4; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_rready_out_5; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_rready_out_6; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_rready_out_7; xsc::xsc_split<16, 8> * mp_m_axi_split_rresp; sc_signal<sc_dt::sc_bv<16> > m_axi_split_rresp_out_0; sc_signal<sc_dt::sc_bv<16> > m_axi_split_rresp_out_1; sc_signal<sc_dt::sc_bv<16> > m_axi_split_rresp_out_2; sc_signal<sc_dt::sc_bv<16> > m_axi_split_rresp_out_3; sc_signal<sc_dt::sc_bv<16> > m_axi_split_rresp_out_4; sc_signal<sc_dt::sc_bv<16> > m_axi_split_rresp_out_5; sc_signal<sc_dt::sc_bv<16> > m_axi_split_rresp_out_6; sc_signal<sc_dt::sc_bv<16> > m_axi_split_rresp_out_7; xsc::xsc_split<8, 8> * mp_m_axi_split_rvalid; sc_signal<sc_dt::sc_bv<8> > m_axi_split_rvalid_out_0; sc_signal<sc_dt::sc_bv<8> > m_axi_split_rvalid_out_1; sc_signal<sc_dt::sc_bv<8> > m_axi_split_rvalid_out_2; sc_signal<sc_dt::sc_bv<8> > m_axi_split_rvalid_out_3; sc_signal<sc_dt::sc_bv<8> > m_axi_split_rvalid_out_4; sc_signal<sc_dt::sc_bv<8> > m_axi_split_rvalid_out_5; sc_signal<sc_dt::sc_bv<8> > m_axi_split_rvalid_out_6; sc_signal<sc_dt::sc_bv<8> > m_axi_split_rvalid_out_7; xsc::xsc_concatenator<256, 8> * mp_m_axi_concat_wdata; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_wdata_out_0; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_wdata_out_1; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_wdata_out_2; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_wdata_out_3; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_wdata_out_4; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_wdata_out_5; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_wdata_out_6; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_wdata_out_7; xsc::xsc_concatenator<8, 8> * mp_m_axi_concat_wlast; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_wlast_out_0; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_wlast_out_1; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_wlast_out_2; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_wlast_out_3; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_wlast_out_4; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_wlast_out_5; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_wlast_out_6; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_wlast_out_7; xsc::xsc_split<8, 8> * mp_m_axi_split_wready; sc_signal<sc_dt::sc_bv<8> > m_axi_split_wready_out_0; sc_signal<sc_dt::sc_bv<8> > m_axi_split_wready_out_1; sc_signal<sc_dt::sc_bv<8> > m_axi_split_wready_out_2; sc_signal<sc_dt::sc_bv<8> > m_axi_split_wready_out_3; sc_signal<sc_dt::sc_bv<8> > m_axi_split_wready_out_4; sc_signal<sc_dt::sc_bv<8> > m_axi_split_wready_out_5; sc_signal<sc_dt::sc_bv<8> > m_axi_split_wready_out_6; sc_signal<sc_dt::sc_bv<8> > m_axi_split_wready_out_7; xsc::xsc_concatenator<32, 8> * mp_m_axi_concat_wstrb; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_wstrb_out_0; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_wstrb_out_1; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_wstrb_out_2; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_wstrb_out_3; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_wstrb_out_4; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_wstrb_out_5; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_wstrb_out_6; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_wstrb_out_7; xsc::xsc_concatenator<8, 8> * mp_m_axi_concat_wvalid; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_wvalid_out_0; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_wvalid_out_1; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_wvalid_out_2; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_wvalid_out_3; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_wvalid_out_4; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_wvalid_out_5; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_wvalid_out_6; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_wvalid_out_7; // Transactor stubs xtlm::xtlm_aximm_initiator_stub * M00_AXI_transactor_initiator_rd_socket_stub; xtlm::xtlm_aximm_initiator_stub * M00_AXI_transactor_initiator_wr_socket_stub; xtlm::xtlm_aximm_initiator_stub * M01_AXI_transactor_initiator_rd_socket_stub; xtlm::xtlm_aximm_initiator_stub * M01_AXI_transactor_initiator_wr_socket_stub; xtlm::xtlm_aximm_initiator_stub * M02_AXI_transactor_initiator_rd_socket_stub; xtlm::xtlm_aximm_initiator_stub * M02_AXI_transactor_initiator_wr_socket_stub; xtlm::xtlm_aximm_initiator_stub * M03_AXI_transactor_initiator_rd_socket_stub; xtlm::xtlm_aximm_initiator_stub * M03_AXI_transactor_initiator_wr_socket_stub; xtlm::xtlm_aximm_initiator_stub * M04_AXI_transactor_initiator_rd_socket_stub; xtlm::xtlm_aximm_initiator_stub * M04_AXI_transactor_initiator_wr_socket_stub; xtlm::xtlm_aximm_initiator_stub * M05_AXI_transactor_initiator_rd_socket_stub; xtlm::xtlm_aximm_initiator_stub * M05_AXI_transactor_initiator_wr_socket_stub; xtlm::xtlm_aximm_initiator_stub * M06_AXI_transactor_initiator_rd_socket_stub; xtlm::xtlm_aximm_initiator_stub * M06_AXI_transactor_initiator_wr_socket_stub; xtlm::xtlm_aximm_initiator_stub * M07_AXI_transactor_initiator_rd_socket_stub; xtlm::xtlm_aximm_initiator_stub * M07_AXI_transactor_initiator_wr_socket_stub; xtlm::xtlm_aximm_target_stub * S00_AXI_transactor_target_rd_socket_stub; xtlm::xtlm_aximm_target_stub * S00_AXI_transactor_target_wr_socket_stub; // Socket stubs }; #endif // VCSSYSTEMC #ifdef MTI_SYSTEMC #include "utils/xtlm_aximm_initiator_stub.h" #include "utils/xtlm_aximm_target_stub.h" class DllExport video_cp_tier2_xbar_2_0 : public video_cp_tier2_xbar_2_0_sc { public: video_cp_tier2_xbar_2_0(const sc_core::sc_module_name& nm); virtual ~video_cp_tier2_xbar_2_0(); // module pin-to-pin RTL interface sc_core::sc_in< bool > aclk; sc_core::sc_in< bool > aresetn; sc_core::sc_in< sc_dt::sc_bv<12> > s_axi_awid; sc_core::sc_in< sc_dt::sc_bv<32> > s_axi_awaddr; sc_core::sc_in< sc_dt::sc_bv<8> > s_axi_awlen; sc_core::sc_in< sc_dt::sc_bv<3> > s_axi_awsize; sc_core::sc_in< sc_dt::sc_bv<2> > s_axi_awburst; sc_core::sc_in< sc_dt::sc_bv<1> > s_axi_awlock; sc_core::sc_in< sc_dt::sc_bv<4> > s_axi_awcache; sc_core::sc_in< sc_dt::sc_bv<3> > s_axi_awprot; sc_core::sc_in< sc_dt::sc_bv<4> > s_axi_awqos; sc_core::sc_in< sc_dt::sc_bv<1> > s_axi_awvalid; sc_core::sc_out< sc_dt::sc_bv<1> > s_axi_awready; sc_core::sc_in< sc_dt::sc_bv<32> > s_axi_wdata; sc_core::sc_in< sc_dt::sc_bv<4> > s_axi_wstrb; sc_core::sc_in< sc_dt::sc_bv<1> > s_axi_wlast; sc_core::sc_in< sc_dt::sc_bv<1> > s_axi_wvalid; sc_core::sc_out< sc_dt::sc_bv<1> > s_axi_wready; sc_core::sc_out< sc_dt::sc_bv<12> > s_axi_bid; sc_core::sc_out< sc_dt::sc_bv<2> > s_axi_bresp; sc_core::sc_out< sc_dt::sc_bv<1> > s_axi_bvalid; sc_core::sc_in< sc_dt::sc_bv<1> > s_axi_bready; sc_core::sc_in< sc_dt::sc_bv<12> > s_axi_arid; sc_core::sc_in< sc_dt::sc_bv<32> > s_axi_araddr; sc_core::sc_in< sc_dt::sc_bv<8> > s_axi_arlen; sc_core::sc_in< sc_dt::sc_bv<3> > s_axi_arsize; sc_core::sc_in< sc_dt::sc_bv<2> > s_axi_arburst; sc_core::sc_in< sc_dt::sc_bv<1> > s_axi_arlock; sc_core::sc_in< sc_dt::sc_bv<4> > s_axi_arcache; sc_core::sc_in< sc_dt::sc_bv<3> > s_axi_arprot; sc_core::sc_in< sc_dt::sc_bv<4> > s_axi_arqos; sc_core::sc_in< sc_dt::sc_bv<1> > s_axi_arvalid; sc_core::sc_out< sc_dt::sc_bv<1> > s_axi_arready; sc_core::sc_out< sc_dt::sc_bv<12> > s_axi_rid; sc_core::sc_out< sc_dt::sc_bv<32> > s_axi_rdata; sc_core::sc_out< sc_dt::sc_bv<2> > s_axi_rresp; sc_core::sc_out< sc_dt::sc_bv<1> > s_axi_rlast; sc_core::sc_out< sc_dt::sc_bv<1> > s_axi_rvalid; sc_core::sc_in< sc_dt::sc_bv<1> > s_axi_rready; sc_core::sc_out< sc_dt::sc_bv<96> > m_axi_awid; sc_core::sc_out< sc_dt::sc_bv<256> > m_axi_awaddr; sc_core::sc_out< sc_dt::sc_bv<64> > m_axi_awlen; sc_core::sc_out< sc_dt::sc_bv<24> > m_axi_awsize; sc_core::sc_out< sc_dt::sc_bv<16> > m_axi_awburst; sc_core::sc_out< sc_dt::sc_bv<8> > m_axi_awlock; sc_core::sc_out< sc_dt::sc_bv<32> > m_axi_awcache; sc_core::sc_out< sc_dt::sc_bv<24> > m_axi_awprot; sc_core::sc_out< sc_dt::sc_bv<32> > m_axi_awregion; sc_core::sc_out< sc_dt::sc_bv<32> > m_axi_awqos; sc_core::sc_out< sc_dt::sc_bv<8> > m_axi_awvalid; sc_core::sc_in< sc_dt::sc_bv<8> > m_axi_awready; sc_core::sc_out< sc_dt::sc_bv<256> > m_axi_wdata; sc_core::sc_out< sc_dt::sc_bv<32> > m_axi_wstrb; sc_core::sc_out< sc_dt::sc_bv<8> > m_axi_wlast; sc_core::sc_out< sc_dt::sc_bv<8> > m_axi_wvalid; sc_core::sc_in< sc_dt::sc_bv<8> > m_axi_wready; sc_core::sc_in< sc_dt::sc_bv<96> > m_axi_bid; sc_core::sc_in< sc_dt::sc_bv<16> > m_axi_bresp; sc_core::sc_in< sc_dt::sc_bv<8> > m_axi_bvalid; sc_core::sc_out< sc_dt::sc_bv<8> > m_axi_bready; sc_core::sc_out< sc_dt::sc_bv<96> > m_axi_arid; sc_core::sc_out< sc_dt::sc_bv<256> > m_axi_araddr; sc_core::sc_out< sc_dt::sc_bv<64> > m_axi_arlen; sc_core::sc_out< sc_dt::sc_bv<24> > m_axi_arsize; sc_core::sc_out< sc_dt::sc_bv<16> > m_axi_arburst; sc_core::sc_out< sc_dt::sc_bv<8> > m_axi_arlock; sc_core::sc_out< sc_dt::sc_bv<32> > m_axi_arcache; sc_core::sc_out< sc_dt::sc_bv<24> > m_axi_arprot; sc_core::sc_out< sc_dt::sc_bv<32> > m_axi_arregion; sc_core::sc_out< sc_dt::sc_bv<32> > m_axi_arqos; sc_core::sc_out< sc_dt::sc_bv<8> > m_axi_arvalid; sc_core::sc_in< sc_dt::sc_bv<8> > m_axi_arready; sc_core::sc_in< sc_dt::sc_bv<96> > m_axi_rid; sc_core::sc_in< sc_dt::sc_bv<256> > m_axi_rdata; sc_core::sc_in< sc_dt::sc_bv<16> > m_axi_rresp; sc_core::sc_in< sc_dt::sc_bv<8> > m_axi_rlast; sc_core::sc_in< sc_dt::sc_bv<8> > m_axi_rvalid; sc_core::sc_out< sc_dt::sc_bv<8> > m_axi_rready; // Dummy Signals for IP Ports protected: virtual void before_end_of_elaboration(); private: xtlm::xaximm_pin2xtlm_t<32,32,12,1,1,1,1,1>* mp_S00_AXI_transactor; xsc::common::vectorN2scalar_converter<1>* mp_s_axi_awlock_converter; sc_signal< bool > m_s_axi_awlock_converter_signal; xsc::common::vectorN2scalar_converter<1>* mp_s_axi_awvalid_converter; sc_signal< bool > m_s_axi_awvalid_converter_signal; xsc::common::scalar2vectorN_converter<1>* mp_s_axi_awready_converter; sc_signal< bool > m_s_axi_awready_converter_signal; xsc::common::vectorN2scalar_converter<1>* mp_s_axi_wlast_converter; sc_signal< bool > m_s_axi_wlast_converter_signal; xsc::common::vectorN2scalar_converter<1>* mp_s_axi_wvalid_converter; sc_signal< bool > m_s_axi_wvalid_converter_signal; xsc::common::scalar2vectorN_converter<1>* mp_s_axi_wready_converter; sc_signal< bool > m_s_axi_wready_converter_signal; xsc::common::scalar2vectorN_converter<1>* mp_s_axi_bvalid_converter; sc_signal< bool > m_s_axi_bvalid_converter_signal; xsc::common::vectorN2scalar_converter<1>* mp_s_axi_bready_converter; sc_signal< bool > m_s_axi_bready_converter_signal; xsc::common::vectorN2scalar_converter<1>* mp_s_axi_arlock_converter; sc_signal< bool > m_s_axi_arlock_converter_signal; xsc::common::vectorN2scalar_converter<1>* mp_s_axi_arvalid_converter; sc_signal< bool > m_s_axi_arvalid_converter_signal; xsc::common::scalar2vectorN_converter<1>* mp_s_axi_arready_converter; sc_signal< bool > m_s_axi_arready_converter_signal; xsc::common::scalar2vectorN_converter<1>* mp_s_axi_rlast_converter; sc_signal< bool > m_s_axi_rlast_converter_signal; xsc::common::scalar2vectorN_converter<1>* mp_s_axi_rvalid_converter; sc_signal< bool > m_s_axi_rvalid_converter_signal; xsc::common::vectorN2scalar_converter<1>* mp_s_axi_rready_converter; sc_signal< bool > m_s_axi_rready_converter_signal; xtlm::xaximm_xtlm2pin_t<32,32,12,1,1,1,1,1>* mp_M00_AXI_transactor; xsc::common::vector2vector_converter<12,96>* mp_m_axi_awid_converter_0; sc_signal< sc_bv<12> > m_m_axi_awid_converter_0_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_awaddr_converter_0; sc_signal< sc_bv<32> > m_m_axi_awaddr_converter_0_signal; xsc::common::vector2vector_converter<8,64>* mp_m_axi_awlen_converter_0; sc_signal< sc_bv<8> > m_m_axi_awlen_converter_0_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_awsize_converter_0; sc_signal< sc_bv<3> > m_m_axi_awsize_converter_0_signal; xsc::common::vector2vector_converter<2,16>* mp_m_axi_awburst_converter_0; sc_signal< sc_bv<2> > m_m_axi_awburst_converter_0_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_awlock_converter_0; sc_signal< bool > m_m_axi_awlock_converter_0_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awcache_converter_0; sc_signal< sc_bv<4> > m_m_axi_awcache_converter_0_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_awprot_converter_0; sc_signal< sc_bv<3> > m_m_axi_awprot_converter_0_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awregion_converter_0; sc_signal< sc_bv<4> > m_m_axi_awregion_converter_0_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awqos_converter_0; sc_signal< sc_bv<4> > m_m_axi_awqos_converter_0_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_awvalid_converter_0; sc_signal< bool > m_m_axi_awvalid_converter_0_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_awready_converter_0; sc_signal< bool > m_m_axi_awready_converter_0_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_wdata_converter_0; sc_signal< sc_bv<32> > m_m_axi_wdata_converter_0_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_wstrb_converter_0; sc_signal< sc_bv<4> > m_m_axi_wstrb_converter_0_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_wlast_converter_0; sc_signal< bool > m_m_axi_wlast_converter_0_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_wvalid_converter_0; sc_signal< bool > m_m_axi_wvalid_converter_0_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_wready_converter_0; sc_signal< bool > m_m_axi_wready_converter_0_signal; xsc::common::vector2vector_converter<96,12>* mp_m_axi_bid_converter_0; sc_signal< sc_bv<12> > m_m_axi_bid_converter_0_signal; xsc::common::vector2vector_converter<16,2>* mp_m_axi_bresp_converter_0; sc_signal< sc_bv<2> > m_m_axi_bresp_converter_0_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_bvalid_converter_0; sc_signal< bool > m_m_axi_bvalid_converter_0_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_bready_converter_0; sc_signal< bool > m_m_axi_bready_converter_0_signal; xsc::common::vector2vector_converter<12,96>* mp_m_axi_arid_converter_0; sc_signal< sc_bv<12> > m_m_axi_arid_converter_0_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_araddr_converter_0; sc_signal< sc_bv<32> > m_m_axi_araddr_converter_0_signal; xsc::common::vector2vector_converter<8,64>* mp_m_axi_arlen_converter_0; sc_signal< sc_bv<8> > m_m_axi_arlen_converter_0_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_arsize_converter_0; sc_signal< sc_bv<3> > m_m_axi_arsize_converter_0_signal; xsc::common::vector2vector_converter<2,16>* mp_m_axi_arburst_converter_0; sc_signal< sc_bv<2> > m_m_axi_arburst_converter_0_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_arlock_converter_0; sc_signal< bool > m_m_axi_arlock_converter_0_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arcache_converter_0; sc_signal< sc_bv<4> > m_m_axi_arcache_converter_0_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_arprot_converter_0; sc_signal< sc_bv<3> > m_m_axi_arprot_converter_0_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arregion_converter_0; sc_signal< sc_bv<4> > m_m_axi_arregion_converter_0_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arqos_converter_0; sc_signal< sc_bv<4> > m_m_axi_arqos_converter_0_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_arvalid_converter_0; sc_signal< bool > m_m_axi_arvalid_converter_0_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_arready_converter_0; sc_signal< bool > m_m_axi_arready_converter_0_signal; xsc::common::vector2vector_converter<96,12>* mp_m_axi_rid_converter_0; sc_signal< sc_bv<12> > m_m_axi_rid_converter_0_signal; xsc::common::vector2vector_converter<256,32>* mp_m_axi_rdata_converter_0; sc_signal< sc_bv<32> > m_m_axi_rdata_converter_0_signal; xsc::common::vector2vector_converter<16,2>* mp_m_axi_rresp_converter_0; sc_signal< sc_bv<2> > m_m_axi_rresp_converter_0_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_rlast_converter_0; sc_signal< bool > m_m_axi_rlast_converter_0_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_rvalid_converter_0; sc_signal< bool > m_m_axi_rvalid_converter_0_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_rready_converter_0; sc_signal< bool > m_m_axi_rready_converter_0_signal; xtlm::xaximm_xtlm2pin_t<32,32,12,1,1,1,1,1>* mp_M01_AXI_transactor; xsc::common::vector2vector_converter<12,96>* mp_m_axi_awid_converter_1; sc_signal< sc_bv<12> > m_m_axi_awid_converter_1_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_awaddr_converter_1; sc_signal< sc_bv<32> > m_m_axi_awaddr_converter_1_signal; xsc::common::vector2vector_converter<8,64>* mp_m_axi_awlen_converter_1; sc_signal< sc_bv<8> > m_m_axi_awlen_converter_1_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_awsize_converter_1; sc_signal< sc_bv<3> > m_m_axi_awsize_converter_1_signal; xsc::common::vector2vector_converter<2,16>* mp_m_axi_awburst_converter_1; sc_signal< sc_bv<2> > m_m_axi_awburst_converter_1_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_awlock_converter_1; sc_signal< bool > m_m_axi_awlock_converter_1_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awcache_converter_1; sc_signal< sc_bv<4> > m_m_axi_awcache_converter_1_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_awprot_converter_1; sc_signal< sc_bv<3> > m_m_axi_awprot_converter_1_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awregion_converter_1; sc_signal< sc_bv<4> > m_m_axi_awregion_converter_1_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awqos_converter_1; sc_signal< sc_bv<4> > m_m_axi_awqos_converter_1_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_awvalid_converter_1; sc_signal< bool > m_m_axi_awvalid_converter_1_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_awready_converter_1; sc_signal< bool > m_m_axi_awready_converter_1_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_wdata_converter_1; sc_signal< sc_bv<32> > m_m_axi_wdata_converter_1_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_wstrb_converter_1; sc_signal< sc_bv<4> > m_m_axi_wstrb_converter_1_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_wlast_converter_1; sc_signal< bool > m_m_axi_wlast_converter_1_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_wvalid_converter_1; sc_signal< bool > m_m_axi_wvalid_converter_1_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_wready_converter_1; sc_signal< bool > m_m_axi_wready_converter_1_signal; xsc::common::vector2vector_converter<96,12>* mp_m_axi_bid_converter_1; sc_signal< sc_bv<12> > m_m_axi_bid_converter_1_signal; xsc::common::vector2vector_converter<16,2>* mp_m_axi_bresp_converter_1; sc_signal< sc_bv<2> > m_m_axi_bresp_converter_1_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_bvalid_converter_1; sc_signal< bool > m_m_axi_bvalid_converter_1_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_bready_converter_1; sc_signal< bool > m_m_axi_bready_converter_1_signal; xsc::common::vector2vector_converter<12,96>* mp_m_axi_arid_converter_1; sc_signal< sc_bv<12> > m_m_axi_arid_converter_1_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_araddr_converter_1; sc_signal< sc_bv<32> > m_m_axi_araddr_converter_1_signal; xsc::common::vector2vector_converter<8,64>* mp_m_axi_arlen_converter_1; sc_signal< sc_bv<8> > m_m_axi_arlen_converter_1_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_arsize_converter_1; sc_signal< sc_bv<3> > m_m_axi_arsize_converter_1_signal; xsc::common::vector2vector_converter<2,16>* mp_m_axi_arburst_converter_1; sc_signal< sc_bv<2> > m_m_axi_arburst_converter_1_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_arlock_converter_1; sc_signal< bool > m_m_axi_arlock_converter_1_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arcache_converter_1; sc_signal< sc_bv<4> > m_m_axi_arcache_converter_1_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_arprot_converter_1; sc_signal< sc_bv<3> > m_m_axi_arprot_converter_1_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arregion_converter_1; sc_signal< sc_bv<4> > m_m_axi_arregion_converter_1_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arqos_converter_1; sc_signal< sc_bv<4> > m_m_axi_arqos_converter_1_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_arvalid_converter_1; sc_signal< bool > m_m_axi_arvalid_converter_1_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_arready_converter_1; sc_signal< bool > m_m_axi_arready_converter_1_signal; xsc::common::vector2vector_converter<96,12>* mp_m_axi_rid_converter_1; sc_signal< sc_bv<12> > m_m_axi_rid_converter_1_signal; xsc::common::vector2vector_converter<256,32>* mp_m_axi_rdata_converter_1; sc_signal< sc_bv<32> > m_m_axi_rdata_converter_1_signal; xsc::common::vector2vector_converter<16,2>* mp_m_axi_rresp_converter_1; sc_signal< sc_bv<2> > m_m_axi_rresp_converter_1_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_rlast_converter_1; sc_signal< bool > m_m_axi_rlast_converter_1_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_rvalid_converter_1; sc_signal< bool > m_m_axi_rvalid_converter_1_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_rready_converter_1; sc_signal< bool > m_m_axi_rready_converter_1_signal; xtlm::xaximm_xtlm2pin_t<32,32,12,1,1,1,1,1>* mp_M02_AXI_transactor; xsc::common::vector2vector_converter<12,96>* mp_m_axi_awid_converter_2; sc_signal< sc_bv<12> > m_m_axi_awid_converter_2_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_awaddr_converter_2; sc_signal< sc_bv<32> > m_m_axi_awaddr_converter_2_signal; xsc::common::vector2vector_converter<8,64>* mp_m_axi_awlen_converter_2; sc_signal< sc_bv<8> > m_m_axi_awlen_converter_2_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_awsize_converter_2; sc_signal< sc_bv<3> > m_m_axi_awsize_converter_2_signal; xsc::common::vector2vector_converter<2,16>* mp_m_axi_awburst_converter_2; sc_signal< sc_bv<2> > m_m_axi_awburst_converter_2_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_awlock_converter_2; sc_signal< bool > m_m_axi_awlock_converter_2_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awcache_converter_2; sc_signal< sc_bv<4> > m_m_axi_awcache_converter_2_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_awprot_converter_2; sc_signal< sc_bv<3> > m_m_axi_awprot_converter_2_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awregion_converter_2; sc_signal< sc_bv<4> > m_m_axi_awregion_converter_2_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awqos_converter_2; sc_signal< sc_bv<4> > m_m_axi_awqos_converter_2_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_awvalid_converter_2; sc_signal< bool > m_m_axi_awvalid_converter_2_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_awready_converter_2; sc_signal< bool > m_m_axi_awready_converter_2_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_wdata_converter_2; sc_signal< sc_bv<32> > m_m_axi_wdata_converter_2_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_wstrb_converter_2; sc_signal< sc_bv<4> > m_m_axi_wstrb_converter_2_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_wlast_converter_2; sc_signal< bool > m_m_axi_wlast_converter_2_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_wvalid_converter_2; sc_signal< bool > m_m_axi_wvalid_converter_2_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_wready_converter_2; sc_signal< bool > m_m_axi_wready_converter_2_signal; xsc::common::vector2vector_converter<96,12>* mp_m_axi_bid_converter_2; sc_signal< sc_bv<12> > m_m_axi_bid_converter_2_signal; xsc::common::vector2vector_converter<16,2>* mp_m_axi_bresp_converter_2; sc_signal< sc_bv<2> > m_m_axi_bresp_converter_2_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_bvalid_converter_2; sc_signal< bool > m_m_axi_bvalid_converter_2_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_bready_converter_2; sc_signal< bool > m_m_axi_bready_converter_2_signal; xsc::common::vector2vector_converter<12,96>* mp_m_axi_arid_converter_2; sc_signal< sc_bv<12> > m_m_axi_arid_converter_2_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_araddr_converter_2; sc_signal< sc_bv<32> > m_m_axi_araddr_converter_2_signal; xsc::common::vector2vector_converter<8,64>* mp_m_axi_arlen_converter_2; sc_signal< sc_bv<8> > m_m_axi_arlen_converter_2_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_arsize_converter_2; sc_signal< sc_bv<3> > m_m_axi_arsize_converter_2_signal; xsc::common::vector2vector_converter<2,16>* mp_m_axi_arburst_converter_2; sc_signal< sc_bv<2> > m_m_axi_arburst_converter_2_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_arlock_converter_2; sc_signal< bool > m_m_axi_arlock_converter_2_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arcache_converter_2; sc_signal< sc_bv<4> > m_m_axi_arcache_converter_2_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_arprot_converter_2; sc_signal< sc_bv<3> > m_m_axi_arprot_converter_2_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arregion_converter_2; sc_signal< sc_bv<4> > m_m_axi_arregion_converter_2_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arqos_converter_2; sc_signal< sc_bv<4> > m_m_axi_arqos_converter_2_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_arvalid_converter_2; sc_signal< bool > m_m_axi_arvalid_converter_2_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_arready_converter_2; sc_signal< bool > m_m_axi_arready_converter_2_signal; xsc::common::vector2vector_converter<96,12>* mp_m_axi_rid_converter_2; sc_signal< sc_bv<12> > m_m_axi_rid_converter_2_signal; xsc::common::vector2vector_converter<256,32>* mp_m_axi_rdata_converter_2; sc_signal< sc_bv<32> > m_m_axi_rdata_converter_2_signal; xsc::common::vector2vector_converter<16,2>* mp_m_axi_rresp_converter_2; sc_signal< sc_bv<2> > m_m_axi_rresp_converter_2_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_rlast_converter_2; sc_signal< bool > m_m_axi_rlast_converter_2_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_rvalid_converter_2; sc_signal< bool > m_m_axi_rvalid_converter_2_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_rready_converter_2; sc_signal< bool > m_m_axi_rready_converter_2_signal; xtlm::xaximm_xtlm2pin_t<32,32,12,1,1,1,1,1>* mp_M03_AXI_transactor; xsc::common::vector2vector_converter<12,96>* mp_m_axi_awid_converter_3; sc_signal< sc_bv<12> > m_m_axi_awid_converter_3_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_awaddr_converter_3; sc_signal< sc_bv<32> > m_m_axi_awaddr_converter_3_signal; xsc::common::vector2vector_converter<8,64>* mp_m_axi_awlen_converter_3; sc_signal< sc_bv<8> > m_m_axi_awlen_converter_3_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_awsize_converter_3; sc_signal< sc_bv<3> > m_m_axi_awsize_converter_3_signal; xsc::common::vector2vector_converter<2,16>* mp_m_axi_awburst_converter_3; sc_signal< sc_bv<2> > m_m_axi_awburst_converter_3_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_awlock_converter_3; sc_signal< bool > m_m_axi_awlock_converter_3_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awcache_converter_3; sc_signal< sc_bv<4> > m_m_axi_awcache_converter_3_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_awprot_converter_3; sc_signal< sc_bv<3> > m_m_axi_awprot_converter_3_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awregion_converter_3; sc_signal< sc_bv<4> > m_m_axi_awregion_converter_3_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awqos_converter_3; sc_signal< sc_bv<4> > m_m_axi_awqos_converter_3_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_awvalid_converter_3; sc_signal< bool > m_m_axi_awvalid_converter_3_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_awready_converter_3; sc_signal< bool > m_m_axi_awready_converter_3_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_wdata_converter_3; sc_signal< sc_bv<32> > m_m_axi_wdata_converter_3_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_wstrb_converter_3; sc_signal< sc_bv<4> > m_m_axi_wstrb_converter_3_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_wlast_converter_3; sc_signal< bool > m_m_axi_wlast_converter_3_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_wvalid_converter_3; sc_signal< bool > m_m_axi_wvalid_converter_3_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_wready_converter_3; sc_signal< bool > m_m_axi_wready_converter_3_signal; xsc::common::vector2vector_converter<96,12>* mp_m_axi_bid_converter_3; sc_signal< sc_bv<12> > m_m_axi_bid_converter_3_signal; xsc::common::vector2vector_converter<16,2>* mp_m_axi_bresp_converter_3; sc_signal< sc_bv<2> > m_m_axi_bresp_converter_3_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_bvalid_converter_3; sc_signal< bool > m_m_axi_bvalid_converter_3_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_bready_converter_3; sc_signal< bool > m_m_axi_bready_converter_3_signal; xsc::common::vector2vector_converter<12,96>* mp_m_axi_arid_converter_3; sc_signal< sc_bv<12> > m_m_axi_arid_converter_3_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_araddr_converter_3; sc_signal< sc_bv<32> > m_m_axi_araddr_converter_3_signal; xsc::common::vector2vector_converter<8,64>* mp_m_axi_arlen_converter_3; sc_signal< sc_bv<8> > m_m_axi_arlen_converter_3_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_arsize_converter_3; sc_signal< sc_bv<3> > m_m_axi_arsize_converter_3_signal; xsc::common::vector2vector_converter<2,16>* mp_m_axi_arburst_converter_3; sc_signal< sc_bv<2> > m_m_axi_arburst_converter_3_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_arlock_converter_3; sc_signal< bool > m_m_axi_arlock_converter_3_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arcache_converter_3; sc_signal< sc_bv<4> > m_m_axi_arcache_converter_3_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_arprot_converter_3; sc_signal< sc_bv<3> > m_m_axi_arprot_converter_3_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arregion_converter_3; sc_signal< sc_bv<4> > m_m_axi_arregion_converter_3_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arqos_converter_3; sc_signal< sc_bv<4> > m_m_axi_arqos_converter_3_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_arvalid_converter_3; sc_signal< bool > m_m_axi_arvalid_converter_3_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_arready_converter_3; sc_signal< bool > m_m_axi_arready_converter_3_signal; xsc::common::vector2vector_converter<96,12>* mp_m_axi_rid_converter_3; sc_signal< sc_bv<12> > m_m_axi_rid_converter_3_signal; xsc::common::vector2vector_converter<256,32>* mp_m_axi_rdata_converter_3; sc_signal< sc_bv<32> > m_m_axi_rdata_converter_3_signal; xsc::common::vector2vector_converter<16,2>* mp_m_axi_rresp_converter_3; sc_signal< sc_bv<2> > m_m_axi_rresp_converter_3_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_rlast_converter_3; sc_signal< bool > m_m_axi_rlast_converter_3_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_rvalid_converter_3; sc_signal< bool > m_m_axi_rvalid_converter_3_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_rready_converter_3; sc_signal< bool > m_m_axi_rready_converter_3_signal; xtlm::xaximm_xtlm2pin_t<32,32,12,1,1,1,1,1>* mp_M04_AXI_transactor; xsc::common::vector2vector_converter<12,96>* mp_m_axi_awid_converter_4; sc_signal< sc_bv<12> > m_m_axi_awid_converter_4_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_awaddr_converter_4; sc_signal< sc_bv<32> > m_m_axi_awaddr_converter_4_signal; xsc::common::vector2vector_converter<8,64>* mp_m_axi_awlen_converter_4; sc_signal< sc_bv<8> > m_m_axi_awlen_converter_4_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_awsize_converter_4; sc_signal< sc_bv<3> > m_m_axi_awsize_converter_4_signal; xsc::common::vector2vector_converter<2,16>* mp_m_axi_awburst_converter_4; sc_signal< sc_bv<2> > m_m_axi_awburst_converter_4_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_awlock_converter_4; sc_signal< bool > m_m_axi_awlock_converter_4_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awcache_converter_4; sc_signal< sc_bv<4> > m_m_axi_awcache_converter_4_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_awprot_converter_4; sc_signal< sc_bv<3> > m_m_axi_awprot_converter_4_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awregion_converter_4; sc_signal< sc_bv<4> > m_m_axi_awregion_converter_4_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awqos_converter_4; sc_signal< sc_bv<4> > m_m_axi_awqos_converter_4_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_awvalid_converter_4; sc_signal< bool > m_m_axi_awvalid_converter_4_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_awready_converter_4; sc_signal< bool > m_m_axi_awready_converter_4_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_wdata_converter_4; sc_signal< sc_bv<32> > m_m_axi_wdata_converter_4_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_wstrb_converter_4; sc_signal< sc_bv<4> > m_m_axi_wstrb_converter_4_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_wlast_converter_4; sc_signal< bool > m_m_axi_wlast_converter_4_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_wvalid_converter_4; sc_signal< bool > m_m_axi_wvalid_converter_4_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_wready_converter_4; sc_signal< bool > m_m_axi_wready_converter_4_signal; xsc::common::vector2vector_converter<96,12>* mp_m_axi_bid_converter_4; sc_signal< sc_bv<12> > m_m_axi_bid_converter_4_signal; xsc::common::vector2vector_converter<16,2>* mp_m_axi_bresp_converter_4; sc_signal< sc_bv<2> > m_m_axi_bresp_converter_4_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_bvalid_converter_4; sc_signal< bool > m_m_axi_bvalid_converter_4_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_bready_converter_4; sc_signal< bool > m_m_axi_bready_converter_4_signal; xsc::common::vector2vector_converter<12,96>* mp_m_axi_arid_converter_4; sc_signal< sc_bv<12> > m_m_axi_arid_converter_4_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_araddr_converter_4; sc_signal< sc_bv<32> > m_m_axi_araddr_converter_4_signal; xsc::common::vector2vector_converter<8,64>* mp_m_axi_arlen_converter_4; sc_signal< sc_bv<8> > m_m_axi_arlen_converter_4_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_arsize_converter_4; sc_signal< sc_bv<3> > m_m_axi_arsize_converter_4_signal; xsc::common::vector2vector_converter<2,16>* mp_m_axi_arburst_converter_4; sc_signal< sc_bv<2> > m_m_axi_arburst_converter_4_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_arlock_converter_4; sc_signal< bool > m_m_axi_arlock_converter_4_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arcache_converter_4; sc_signal< sc_bv<4> > m_m_axi_arcache_converter_4_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_arprot_converter_4; sc_signal< sc_bv<3> > m_m_axi_arprot_converter_4_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arregion_converter_4; sc_signal< sc_bv<4> > m_m_axi_arregion_converter_4_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arqos_converter_4; sc_signal< sc_bv<4> > m_m_axi_arqos_converter_4_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_arvalid_converter_4; sc_signal< bool > m_m_axi_arvalid_converter_4_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_arready_converter_4; sc_signal< bool > m_m_axi_arready_converter_4_signal; xsc::common::vector2vector_converter<96,12>* mp_m_axi_rid_converter_4; sc_signal< sc_bv<12> > m_m_axi_rid_converter_4_signal; xsc::common::vector2vector_converter<256,32>* mp_m_axi_rdata_converter_4; sc_signal< sc_bv<32> > m_m_axi_rdata_converter_4_signal; xsc::common::vector2vector_converter<16,2>* mp_m_axi_rresp_converter_4; sc_signal< sc_bv<2> > m_m_axi_rresp_converter_4_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_rlast_converter_4; sc_signal< bool > m_m_axi_rlast_converter_4_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_rvalid_converter_4; sc_signal< bool > m_m_axi_rvalid_converter_4_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_rready_converter_4; sc_signal< bool > m_m_axi_rready_converter_4_signal; xtlm::xaximm_xtlm2pin_t<32,32,12,1,1,1,1,1>* mp_M05_AXI_transactor; xsc::common::vector2vector_converter<12,96>* mp_m_axi_awid_converter_5; sc_signal< sc_bv<12> > m_m_axi_awid_converter_5_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_awaddr_converter_5; sc_signal< sc_bv<32> > m_m_axi_awaddr_converter_5_signal; xsc::common::vector2vector_converter<8,64>* mp_m_axi_awlen_converter_5; sc_signal< sc_bv<8> > m_m_axi_awlen_converter_5_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_awsize_converter_5; sc_signal< sc_bv<3> > m_m_axi_awsize_converter_5_signal; xsc::common::vector2vector_converter<2,16>* mp_m_axi_awburst_converter_5; sc_signal< sc_bv<2> > m_m_axi_awburst_converter_5_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_awlock_converter_5; sc_signal< bool > m_m_axi_awlock_converter_5_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awcache_converter_5; sc_signal< sc_bv<4> > m_m_axi_awcache_converter_5_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_awprot_converter_5; sc_signal< sc_bv<3> > m_m_axi_awprot_converter_5_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awregion_converter_5; sc_signal< sc_bv<4> > m_m_axi_awregion_converter_5_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awqos_converter_5; sc_signal< sc_bv<4> > m_m_axi_awqos_converter_5_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_awvalid_converter_5; sc_signal< bool > m_m_axi_awvalid_converter_5_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_awready_converter_5; sc_signal< bool > m_m_axi_awready_converter_5_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_wdata_converter_5; sc_signal< sc_bv<32> > m_m_axi_wdata_converter_5_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_wstrb_converter_5; sc_signal< sc_bv<4> > m_m_axi_wstrb_converter_5_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_wlast_converter_5; sc_signal< bool > m_m_axi_wlast_converter_5_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_wvalid_converter_5; sc_signal< bool > m_m_axi_wvalid_converter_5_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_wready_converter_5; sc_signal< bool > m_m_axi_wready_converter_5_signal; xsc::common::vector2vector_converter<96,12>* mp_m_axi_bid_converter_5; sc_signal< sc_bv<12> > m_m_axi_bid_converter_5_signal; xsc::common::vector2vector_converter<16,2>* mp_m_axi_bresp_converter_5; sc_signal< sc_bv<2> > m_m_axi_bresp_converter_5_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_bvalid_converter_5; sc_signal< bool > m_m_axi_bvalid_converter_5_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_bready_converter_5; sc_signal< bool > m_m_axi_bready_converter_5_signal; xsc::common::vector2vector_converter<12,96>* mp_m_axi_arid_converter_5; sc_signal< sc_bv<12> > m_m_axi_arid_converter_5_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_araddr_converter_5; sc_signal< sc_bv<32> > m_m_axi_araddr_converter_5_signal; xsc::common::vector2vector_converter<8,64>* mp_m_axi_arlen_converter_5; sc_signal< sc_bv<8> > m_m_axi_arlen_converter_5_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_arsize_converter_5; sc_signal< sc_bv<3> > m_m_axi_arsize_converter_5_signal; xsc::common::vector2vector_converter<2,16>* mp_m_axi_arburst_converter_5; sc_signal< sc_bv<2> > m_m_axi_arburst_converter_5_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_arlock_converter_5; sc_signal< bool > m_m_axi_arlock_converter_5_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arcache_converter_5; sc_signal< sc_bv<4> > m_m_axi_arcache_converter_5_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_arprot_converter_5; sc_signal< sc_bv<3> > m_m_axi_arprot_converter_5_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arregion_converter_5; sc_signal< sc_bv<4> > m_m_axi_arregion_converter_5_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arqos_converter_5; sc_signal< sc_bv<4> > m_m_axi_arqos_converter_5_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_arvalid_converter_5; sc_signal< bool > m_m_axi_arvalid_converter_5_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_arready_converter_5; sc_signal< bool > m_m_axi_arready_converter_5_signal; xsc::common::vector2vector_converter<96,12>* mp_m_axi_rid_converter_5; sc_signal< sc_bv<12> > m_m_axi_rid_converter_5_signal; xsc::common::vector2vector_converter<256,32>* mp_m_axi_rdata_converter_5; sc_signal< sc_bv<32> > m_m_axi_rdata_converter_5_signal; xsc::common::vector2vector_converter<16,2>* mp_m_axi_rresp_converter_5; sc_signal< sc_bv<2> > m_m_axi_rresp_converter_5_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_rlast_converter_5; sc_signal< bool > m_m_axi_rlast_converter_5_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_rvalid_converter_5; sc_signal< bool > m_m_axi_rvalid_converter_5_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_rready_converter_5; sc_signal< bool > m_m_axi_rready_converter_5_signal; xtlm::xaximm_xtlm2pin_t<32,32,12,1,1,1,1,1>* mp_M06_AXI_transactor; xsc::common::vector2vector_converter<12,96>* mp_m_axi_awid_converter_6; sc_signal< sc_bv<12> > m_m_axi_awid_converter_6_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_awaddr_converter_6; sc_signal< sc_bv<32> > m_m_axi_awaddr_converter_6_signal; xsc::common::vector2vector_converter<8,64>* mp_m_axi_awlen_converter_6; sc_signal< sc_bv<8> > m_m_axi_awlen_converter_6_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_awsize_converter_6; sc_signal< sc_bv<3> > m_m_axi_awsize_converter_6_signal; xsc::common::vector2vector_converter<2,16>* mp_m_axi_awburst_converter_6; sc_signal< sc_bv<2> > m_m_axi_awburst_converter_6_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_awlock_converter_6; sc_signal< bool > m_m_axi_awlock_converter_6_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awcache_converter_6; sc_signal< sc_bv<4> > m_m_axi_awcache_converter_6_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_awprot_converter_6; sc_signal< sc_bv<3> > m_m_axi_awprot_converter_6_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awregion_converter_6; sc_signal< sc_bv<4> > m_m_axi_awregion_converter_6_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awqos_converter_6; sc_signal< sc_bv<4> > m_m_axi_awqos_converter_6_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_awvalid_converter_6; sc_signal< bool > m_m_axi_awvalid_converter_6_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_awready_converter_6; sc_signal< bool > m_m_axi_awready_converter_6_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_wdata_converter_6; sc_signal< sc_bv<32> > m_m_axi_wdata_converter_6_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_wstrb_converter_6; sc_signal< sc_bv<4> > m_m_axi_wstrb_converter_6_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_wlast_converter_6; sc_signal< bool > m_m_axi_wlast_converter_6_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_wvalid_converter_6; sc_signal< bool > m_m_axi_wvalid_converter_6_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_wready_converter_6; sc_signal< bool > m_m_axi_wready_converter_6_signal; xsc::common::vector2vector_converter<96,12>* mp_m_axi_bid_converter_6; sc_signal< sc_bv<12> > m_m_axi_bid_converter_6_signal; xsc::common::vector2vector_converter<16,2>* mp_m_axi_bresp_converter_6; sc_signal< sc_bv<2> > m_m_axi_bresp_converter_6_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_bvalid_converter_6; sc_signal< bool > m_m_axi_bvalid_converter_6_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_bready_converter_6; sc_signal< bool > m_m_axi_bready_converter_6_signal; xsc::common::vector2vector_converter<12,96>* mp_m_axi_arid_converter_6; sc_signal< sc_bv<12> > m_m_axi_arid_converter_6_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_araddr_converter_6; sc_signal< sc_bv<32> > m_m_axi_araddr_converter_6_signal; xsc::common::vector2vector_converter<8,64>* mp_m_axi_arlen_converter_6; sc_signal< sc_bv<8> > m_m_axi_arlen_converter_6_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_arsize_converter_6; sc_signal< sc_bv<3> > m_m_axi_arsize_converter_6_signal; xsc::common::vector2vector_converter<2,16>* mp_m_axi_arburst_converter_6; sc_signal< sc_bv<2> > m_m_axi_arburst_converter_6_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_arlock_converter_6; sc_signal< bool > m_m_axi_arlock_converter_6_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arcache_converter_6; sc_signal< sc_bv<4> > m_m_axi_arcache_converter_6_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_arprot_converter_6; sc_signal< sc_bv<3> > m_m_axi_arprot_converter_6_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arregion_converter_6; sc_signal< sc_bv<4> > m_m_axi_arregion_converter_6_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arqos_converter_6; sc_signal< sc_bv<4> > m_m_axi_arqos_converter_6_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_arvalid_converter_6; sc_signal< bool > m_m_axi_arvalid_converter_6_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_arready_converter_6; sc_signal< bool > m_m_axi_arready_converter_6_signal; xsc::common::vector2vector_converter<96,12>* mp_m_axi_rid_converter_6; sc_signal< sc_bv<12> > m_m_axi_rid_converter_6_signal; xsc::common::vector2vector_converter<256,32>* mp_m_axi_rdata_converter_6; sc_signal< sc_bv<32> > m_m_axi_rdata_converter_6_signal; xsc::common::vector2vector_converter<16,2>* mp_m_axi_rresp_converter_6; sc_signal< sc_bv<2> > m_m_axi_rresp_converter_6_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_rlast_converter_6; sc_signal< bool > m_m_axi_rlast_converter_6_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_rvalid_converter_6; sc_signal< bool > m_m_axi_rvalid_converter_6_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_rready_converter_6; sc_signal< bool > m_m_axi_rready_converter_6_signal; xtlm::xaximm_xtlm2pin_t<32,32,12,1,1,1,1,1>* mp_M07_AXI_transactor; xsc::common::vector2vector_converter<12,96>* mp_m_axi_awid_converter_7; sc_signal< sc_bv<12> > m_m_axi_awid_converter_7_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_awaddr_converter_7; sc_signal< sc_bv<32> > m_m_axi_awaddr_converter_7_signal; xsc::common::vector2vector_converter<8,64>* mp_m_axi_awlen_converter_7; sc_signal< sc_bv<8> > m_m_axi_awlen_converter_7_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_awsize_converter_7; sc_signal< sc_bv<3> > m_m_axi_awsize_converter_7_signal; xsc::common::vector2vector_converter<2,16>* mp_m_axi_awburst_converter_7; sc_signal< sc_bv<2> > m_m_axi_awburst_converter_7_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_awlock_converter_7; sc_signal< bool > m_m_axi_awlock_converter_7_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awcache_converter_7; sc_signal< sc_bv<4> > m_m_axi_awcache_converter_7_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_awprot_converter_7; sc_signal< sc_bv<3> > m_m_axi_awprot_converter_7_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awregion_converter_7; sc_signal< sc_bv<4> > m_m_axi_awregion_converter_7_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_awqos_converter_7; sc_signal< sc_bv<4> > m_m_axi_awqos_converter_7_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_awvalid_converter_7; sc_signal< bool > m_m_axi_awvalid_converter_7_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_awready_converter_7; sc_signal< bool > m_m_axi_awready_converter_7_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_wdata_converter_7; sc_signal< sc_bv<32> > m_m_axi_wdata_converter_7_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_wstrb_converter_7; sc_signal< sc_bv<4> > m_m_axi_wstrb_converter_7_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_wlast_converter_7; sc_signal< bool > m_m_axi_wlast_converter_7_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_wvalid_converter_7; sc_signal< bool > m_m_axi_wvalid_converter_7_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_wready_converter_7; sc_signal< bool > m_m_axi_wready_converter_7_signal; xsc::common::vector2vector_converter<96,12>* mp_m_axi_bid_converter_7; sc_signal< sc_bv<12> > m_m_axi_bid_converter_7_signal; xsc::common::vector2vector_converter<16,2>* mp_m_axi_bresp_converter_7; sc_signal< sc_bv<2> > m_m_axi_bresp_converter_7_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_bvalid_converter_7; sc_signal< bool > m_m_axi_bvalid_converter_7_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_bready_converter_7; sc_signal< bool > m_m_axi_bready_converter_7_signal; xsc::common::vector2vector_converter<12,96>* mp_m_axi_arid_converter_7; sc_signal< sc_bv<12> > m_m_axi_arid_converter_7_signal; xsc::common::vector2vector_converter<32,256>* mp_m_axi_araddr_converter_7; sc_signal< sc_bv<32> > m_m_axi_araddr_converter_7_signal; xsc::common::vector2vector_converter<8,64>* mp_m_axi_arlen_converter_7; sc_signal< sc_bv<8> > m_m_axi_arlen_converter_7_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_arsize_converter_7; sc_signal< sc_bv<3> > m_m_axi_arsize_converter_7_signal; xsc::common::vector2vector_converter<2,16>* mp_m_axi_arburst_converter_7; sc_signal< sc_bv<2> > m_m_axi_arburst_converter_7_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_arlock_converter_7; sc_signal< bool > m_m_axi_arlock_converter_7_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arcache_converter_7; sc_signal< sc_bv<4> > m_m_axi_arcache_converter_7_signal; xsc::common::vector2vector_converter<3,24>* mp_m_axi_arprot_converter_7; sc_signal< sc_bv<3> > m_m_axi_arprot_converter_7_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arregion_converter_7; sc_signal< sc_bv<4> > m_m_axi_arregion_converter_7_signal; xsc::common::vector2vector_converter<4,32>* mp_m_axi_arqos_converter_7; sc_signal< sc_bv<4> > m_m_axi_arqos_converter_7_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_arvalid_converter_7; sc_signal< bool > m_m_axi_arvalid_converter_7_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_arready_converter_7; sc_signal< bool > m_m_axi_arready_converter_7_signal; xsc::common::vector2vector_converter<96,12>* mp_m_axi_rid_converter_7; sc_signal< sc_bv<12> > m_m_axi_rid_converter_7_signal; xsc::common::vector2vector_converter<256,32>* mp_m_axi_rdata_converter_7; sc_signal< sc_bv<32> > m_m_axi_rdata_converter_7_signal; xsc::common::vector2vector_converter<16,2>* mp_m_axi_rresp_converter_7; sc_signal< sc_bv<2> > m_m_axi_rresp_converter_7_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_rlast_converter_7; sc_signal< bool > m_m_axi_rlast_converter_7_signal; xsc::common::vectorN2scalar_converter<8>* mp_m_axi_rvalid_converter_7; sc_signal< bool > m_m_axi_rvalid_converter_7_signal; xsc::common::scalar2vectorN_converter<8>* mp_m_axi_rready_converter_7; sc_signal< bool > m_m_axi_rready_converter_7_signal; xsc::xsc_concatenator<256, 8> * mp_m_axi_concat_araddr; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_araddr_out_0; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_araddr_out_1; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_araddr_out_2; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_araddr_out_3; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_araddr_out_4; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_araddr_out_5; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_araddr_out_6; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_araddr_out_7; xsc::xsc_concatenator<16, 8> * mp_m_axi_concat_arburst; sc_signal<sc_dt::sc_bv<16> > m_axi_concat_arburst_out_0; sc_signal<sc_dt::sc_bv<16> > m_axi_concat_arburst_out_1; sc_signal<sc_dt::sc_bv<16> > m_axi_concat_arburst_out_2; sc_signal<sc_dt::sc_bv<16> > m_axi_concat_arburst_out_3; sc_signal<sc_dt::sc_bv<16> > m_axi_concat_arburst_out_4; sc_signal<sc_dt::sc_bv<16> > m_axi_concat_arburst_out_5; sc_signal<sc_dt::sc_bv<16> > m_axi_concat_arburst_out_6; sc_signal<sc_dt::sc_bv<16> > m_axi_concat_arburst_out_7; xsc::xsc_concatenator<32, 8> * mp_m_axi_concat_arcache; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arcache_out_0; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arcache_out_1; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arcache_out_2; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arcache_out_3; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arcache_out_4; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arcache_out_5; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arcache_out_6; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arcache_out_7; xsc::xsc_concatenator<96, 8> * mp_m_axi_concat_arid; sc_signal<sc_dt::sc_bv<96> > m_axi_concat_arid_out_0; sc_signal<sc_dt::sc_bv<96> > m_axi_concat_arid_out_1; sc_signal<sc_dt::sc_bv<96> > m_axi_concat_arid_out_2; sc_signal<sc_dt::sc_bv<96> > m_axi_concat_arid_out_3; sc_signal<sc_dt::sc_bv<96> > m_axi_concat_arid_out_4; sc_signal<sc_dt::sc_bv<96> > m_axi_concat_arid_out_5; sc_signal<sc_dt::sc_bv<96> > m_axi_concat_arid_out_6; sc_signal<sc_dt::sc_bv<96> > m_axi_concat_arid_out_7; xsc::xsc_concatenator<64, 8> * mp_m_axi_concat_arlen; sc_signal<sc_dt::sc_bv<64> > m_axi_concat_arlen_out_0; sc_signal<sc_dt::sc_bv<64> > m_axi_concat_arlen_out_1; sc_signal<sc_dt::sc_bv<64> > m_axi_concat_arlen_out_2; sc_signal<sc_dt::sc_bv<64> > m_axi_concat_arlen_out_3; sc_signal<sc_dt::sc_bv<64> > m_axi_concat_arlen_out_4; sc_signal<sc_dt::sc_bv<64> > m_axi_concat_arlen_out_5; sc_signal<sc_dt::sc_bv<64> > m_axi_concat_arlen_out_6; sc_signal<sc_dt::sc_bv<64> > m_axi_concat_arlen_out_7; xsc::xsc_concatenator<8, 8> * mp_m_axi_concat_arlock; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_arlock_out_0; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_arlock_out_1; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_arlock_out_2; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_arlock_out_3; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_arlock_out_4; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_arlock_out_5; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_arlock_out_6; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_arlock_out_7; xsc::xsc_concatenator<24, 8> * mp_m_axi_concat_arprot; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_arprot_out_0; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_arprot_out_1; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_arprot_out_2; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_arprot_out_3; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_arprot_out_4; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_arprot_out_5; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_arprot_out_6; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_arprot_out_7; xsc::xsc_concatenator<32, 8> * mp_m_axi_concat_arqos; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arqos_out_0; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arqos_out_1; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arqos_out_2; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arqos_out_3; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arqos_out_4; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arqos_out_5; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arqos_out_6; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arqos_out_7; xsc::xsc_split<8, 8> * mp_m_axi_split_arready; sc_signal<sc_dt::sc_bv<8> > m_axi_split_arready_out_0; sc_signal<sc_dt::sc_bv<8> > m_axi_split_arready_out_1; sc_signal<sc_dt::sc_bv<8> > m_axi_split_arready_out_2; sc_signal<sc_dt::sc_bv<8> > m_axi_split_arready_out_3; sc_signal<sc_dt::sc_bv<8> > m_axi_split_arready_out_4; sc_signal<sc_dt::sc_bv<8> > m_axi_split_arready_out_5; sc_signal<sc_dt::sc_bv<8> > m_axi_split_arready_out_6; sc_signal<sc_dt::sc_bv<8> > m_axi_split_arready_out_7; xsc::xsc_concatenator<32, 8> * mp_m_axi_concat_arregion; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arregion_out_0; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arregion_out_1; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arregion_out_2; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arregion_out_3; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arregion_out_4; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arregion_out_5; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arregion_out_6; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_arregion_out_7; xsc::xsc_concatenator<24, 8> * mp_m_axi_concat_arsize; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_arsize_out_0; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_arsize_out_1; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_arsize_out_2; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_arsize_out_3; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_arsize_out_4; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_arsize_out_5; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_arsize_out_6; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_arsize_out_7; xsc::xsc_concatenator<8, 8> * mp_m_axi_concat_arvalid; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_arvalid_out_0; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_arvalid_out_1; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_arvalid_out_2; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_arvalid_out_3; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_arvalid_out_4; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_arvalid_out_5; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_arvalid_out_6; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_arvalid_out_7; xsc::xsc_concatenator<256, 8> * mp_m_axi_concat_awaddr; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_awaddr_out_0; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_awaddr_out_1; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_awaddr_out_2; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_awaddr_out_3; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_awaddr_out_4; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_awaddr_out_5; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_awaddr_out_6; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_awaddr_out_7; xsc::xsc_concatenator<16, 8> * mp_m_axi_concat_awburst; sc_signal<sc_dt::sc_bv<16> > m_axi_concat_awburst_out_0; sc_signal<sc_dt::sc_bv<16> > m_axi_concat_awburst_out_1; sc_signal<sc_dt::sc_bv<16> > m_axi_concat_awburst_out_2; sc_signal<sc_dt::sc_bv<16> > m_axi_concat_awburst_out_3; sc_signal<sc_dt::sc_bv<16> > m_axi_concat_awburst_out_4; sc_signal<sc_dt::sc_bv<16> > m_axi_concat_awburst_out_5; sc_signal<sc_dt::sc_bv<16> > m_axi_concat_awburst_out_6; sc_signal<sc_dt::sc_bv<16> > m_axi_concat_awburst_out_7; xsc::xsc_concatenator<32, 8> * mp_m_axi_concat_awcache; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awcache_out_0; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awcache_out_1; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awcache_out_2; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awcache_out_3; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awcache_out_4; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awcache_out_5; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awcache_out_6; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awcache_out_7; xsc::xsc_concatenator<96, 8> * mp_m_axi_concat_awid; sc_signal<sc_dt::sc_bv<96> > m_axi_concat_awid_out_0; sc_signal<sc_dt::sc_bv<96> > m_axi_concat_awid_out_1; sc_signal<sc_dt::sc_bv<96> > m_axi_concat_awid_out_2; sc_signal<sc_dt::sc_bv<96> > m_axi_concat_awid_out_3; sc_signal<sc_dt::sc_bv<96> > m_axi_concat_awid_out_4; sc_signal<sc_dt::sc_bv<96> > m_axi_concat_awid_out_5; sc_signal<sc_dt::sc_bv<96> > m_axi_concat_awid_out_6; sc_signal<sc_dt::sc_bv<96> > m_axi_concat_awid_out_7; xsc::xsc_concatenator<64, 8> * mp_m_axi_concat_awlen; sc_signal<sc_dt::sc_bv<64> > m_axi_concat_awlen_out_0; sc_signal<sc_dt::sc_bv<64> > m_axi_concat_awlen_out_1; sc_signal<sc_dt::sc_bv<64> > m_axi_concat_awlen_out_2; sc_signal<sc_dt::sc_bv<64> > m_axi_concat_awlen_out_3; sc_signal<sc_dt::sc_bv<64> > m_axi_concat_awlen_out_4; sc_signal<sc_dt::sc_bv<64> > m_axi_concat_awlen_out_5; sc_signal<sc_dt::sc_bv<64> > m_axi_concat_awlen_out_6; sc_signal<sc_dt::sc_bv<64> > m_axi_concat_awlen_out_7; xsc::xsc_concatenator<8, 8> * mp_m_axi_concat_awlock; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_awlock_out_0; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_awlock_out_1; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_awlock_out_2; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_awlock_out_3; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_awlock_out_4; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_awlock_out_5; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_awlock_out_6; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_awlock_out_7; xsc::xsc_concatenator<24, 8> * mp_m_axi_concat_awprot; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_awprot_out_0; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_awprot_out_1; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_awprot_out_2; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_awprot_out_3; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_awprot_out_4; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_awprot_out_5; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_awprot_out_6; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_awprot_out_7; xsc::xsc_concatenator<32, 8> * mp_m_axi_concat_awqos; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awqos_out_0; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awqos_out_1; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awqos_out_2; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awqos_out_3; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awqos_out_4; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awqos_out_5; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awqos_out_6; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awqos_out_7; xsc::xsc_split<8, 8> * mp_m_axi_split_awready; sc_signal<sc_dt::sc_bv<8> > m_axi_split_awready_out_0; sc_signal<sc_dt::sc_bv<8> > m_axi_split_awready_out_1; sc_signal<sc_dt::sc_bv<8> > m_axi_split_awready_out_2; sc_signal<sc_dt::sc_bv<8> > m_axi_split_awready_out_3; sc_signal<sc_dt::sc_bv<8> > m_axi_split_awready_out_4; sc_signal<sc_dt::sc_bv<8> > m_axi_split_awready_out_5; sc_signal<sc_dt::sc_bv<8> > m_axi_split_awready_out_6; sc_signal<sc_dt::sc_bv<8> > m_axi_split_awready_out_7; xsc::xsc_concatenator<32, 8> * mp_m_axi_concat_awregion; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awregion_out_0; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awregion_out_1; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awregion_out_2; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awregion_out_3; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awregion_out_4; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awregion_out_5; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awregion_out_6; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_awregion_out_7; xsc::xsc_concatenator<24, 8> * mp_m_axi_concat_awsize; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_awsize_out_0; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_awsize_out_1; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_awsize_out_2; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_awsize_out_3; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_awsize_out_4; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_awsize_out_5; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_awsize_out_6; sc_signal<sc_dt::sc_bv<24> > m_axi_concat_awsize_out_7; xsc::xsc_concatenator<8, 8> * mp_m_axi_concat_awvalid; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_awvalid_out_0; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_awvalid_out_1; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_awvalid_out_2; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_awvalid_out_3; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_awvalid_out_4; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_awvalid_out_5; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_awvalid_out_6; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_awvalid_out_7; xsc::xsc_split<96, 8> * mp_m_axi_split_bid; sc_signal<sc_dt::sc_bv<96> > m_axi_split_bid_out_0; sc_signal<sc_dt::sc_bv<96> > m_axi_split_bid_out_1; sc_signal<sc_dt::sc_bv<96> > m_axi_split_bid_out_2; sc_signal<sc_dt::sc_bv<96> > m_axi_split_bid_out_3; sc_signal<sc_dt::sc_bv<96> > m_axi_split_bid_out_4; sc_signal<sc_dt::sc_bv<96> > m_axi_split_bid_out_5; sc_signal<sc_dt::sc_bv<96> > m_axi_split_bid_out_6; sc_signal<sc_dt::sc_bv<96> > m_axi_split_bid_out_7; xsc::xsc_concatenator<8, 8> * mp_m_axi_concat_bready; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_bready_out_0; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_bready_out_1; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_bready_out_2; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_bready_out_3; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_bready_out_4; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_bready_out_5; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_bready_out_6; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_bready_out_7; xsc::xsc_split<16, 8> * mp_m_axi_split_bresp; sc_signal<sc_dt::sc_bv<16> > m_axi_split_bresp_out_0; sc_signal<sc_dt::sc_bv<16> > m_axi_split_bresp_out_1; sc_signal<sc_dt::sc_bv<16> > m_axi_split_bresp_out_2; sc_signal<sc_dt::sc_bv<16> > m_axi_split_bresp_out_3; sc_signal<sc_dt::sc_bv<16> > m_axi_split_bresp_out_4; sc_signal<sc_dt::sc_bv<16> > m_axi_split_bresp_out_5; sc_signal<sc_dt::sc_bv<16> > m_axi_split_bresp_out_6; sc_signal<sc_dt::sc_bv<16> > m_axi_split_bresp_out_7; xsc::xsc_split<8, 8> * mp_m_axi_split_bvalid; sc_signal<sc_dt::sc_bv<8> > m_axi_split_bvalid_out_0; sc_signal<sc_dt::sc_bv<8> > m_axi_split_bvalid_out_1; sc_signal<sc_dt::sc_bv<8> > m_axi_split_bvalid_out_2; sc_signal<sc_dt::sc_bv<8> > m_axi_split_bvalid_out_3; sc_signal<sc_dt::sc_bv<8> > m_axi_split_bvalid_out_4; sc_signal<sc_dt::sc_bv<8> > m_axi_split_bvalid_out_5; sc_signal<sc_dt::sc_bv<8> > m_axi_split_bvalid_out_6; sc_signal<sc_dt::sc_bv<8> > m_axi_split_bvalid_out_7; xsc::xsc_split<256, 8> * mp_m_axi_split_rdata; sc_signal<sc_dt::sc_bv<256> > m_axi_split_rdata_out_0; sc_signal<sc_dt::sc_bv<256> > m_axi_split_rdata_out_1; sc_signal<sc_dt::sc_bv<256> > m_axi_split_rdata_out_2; sc_signal<sc_dt::sc_bv<256> > m_axi_split_rdata_out_3; sc_signal<sc_dt::sc_bv<256> > m_axi_split_rdata_out_4; sc_signal<sc_dt::sc_bv<256> > m_axi_split_rdata_out_5; sc_signal<sc_dt::sc_bv<256> > m_axi_split_rdata_out_6; sc_signal<sc_dt::sc_bv<256> > m_axi_split_rdata_out_7; xsc::xsc_split<96, 8> * mp_m_axi_split_rid; sc_signal<sc_dt::sc_bv<96> > m_axi_split_rid_out_0; sc_signal<sc_dt::sc_bv<96> > m_axi_split_rid_out_1; sc_signal<sc_dt::sc_bv<96> > m_axi_split_rid_out_2; sc_signal<sc_dt::sc_bv<96> > m_axi_split_rid_out_3; sc_signal<sc_dt::sc_bv<96> > m_axi_split_rid_out_4; sc_signal<sc_dt::sc_bv<96> > m_axi_split_rid_out_5; sc_signal<sc_dt::sc_bv<96> > m_axi_split_rid_out_6; sc_signal<sc_dt::sc_bv<96> > m_axi_split_rid_out_7; xsc::xsc_split<8, 8> * mp_m_axi_split_rlast; sc_signal<sc_dt::sc_bv<8> > m_axi_split_rlast_out_0; sc_signal<sc_dt::sc_bv<8> > m_axi_split_rlast_out_1; sc_signal<sc_dt::sc_bv<8> > m_axi_split_rlast_out_2; sc_signal<sc_dt::sc_bv<8> > m_axi_split_rlast_out_3; sc_signal<sc_dt::sc_bv<8> > m_axi_split_rlast_out_4; sc_signal<sc_dt::sc_bv<8> > m_axi_split_rlast_out_5; sc_signal<sc_dt::sc_bv<8> > m_axi_split_rlast_out_6; sc_signal<sc_dt::sc_bv<8> > m_axi_split_rlast_out_7; xsc::xsc_concatenator<8, 8> * mp_m_axi_concat_rready; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_rready_out_0; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_rready_out_1; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_rready_out_2; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_rready_out_3; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_rready_out_4; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_rready_out_5; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_rready_out_6; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_rready_out_7; xsc::xsc_split<16, 8> * mp_m_axi_split_rresp; sc_signal<sc_dt::sc_bv<16> > m_axi_split_rresp_out_0; sc_signal<sc_dt::sc_bv<16> > m_axi_split_rresp_out_1; sc_signal<sc_dt::sc_bv<16> > m_axi_split_rresp_out_2; sc_signal<sc_dt::sc_bv<16> > m_axi_split_rresp_out_3; sc_signal<sc_dt::sc_bv<16> > m_axi_split_rresp_out_4; sc_signal<sc_dt::sc_bv<16> > m_axi_split_rresp_out_5; sc_signal<sc_dt::sc_bv<16> > m_axi_split_rresp_out_6; sc_signal<sc_dt::sc_bv<16> > m_axi_split_rresp_out_7; xsc::xsc_split<8, 8> * mp_m_axi_split_rvalid; sc_signal<sc_dt::sc_bv<8> > m_axi_split_rvalid_out_0; sc_signal<sc_dt::sc_bv<8> > m_axi_split_rvalid_out_1; sc_signal<sc_dt::sc_bv<8> > m_axi_split_rvalid_out_2; sc_signal<sc_dt::sc_bv<8> > m_axi_split_rvalid_out_3; sc_signal<sc_dt::sc_bv<8> > m_axi_split_rvalid_out_4; sc_signal<sc_dt::sc_bv<8> > m_axi_split_rvalid_out_5; sc_signal<sc_dt::sc_bv<8> > m_axi_split_rvalid_out_6; sc_signal<sc_dt::sc_bv<8> > m_axi_split_rvalid_out_7; xsc::xsc_concatenator<256, 8> * mp_m_axi_concat_wdata; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_wdata_out_0; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_wdata_out_1; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_wdata_out_2; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_wdata_out_3; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_wdata_out_4; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_wdata_out_5; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_wdata_out_6; sc_signal<sc_dt::sc_bv<256> > m_axi_concat_wdata_out_7; xsc::xsc_concatenator<8, 8> * mp_m_axi_concat_wlast; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_wlast_out_0; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_wlast_out_1; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_wlast_out_2; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_wlast_out_3; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_wlast_out_4; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_wlast_out_5; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_wlast_out_6; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_wlast_out_7; xsc::xsc_split<8, 8> * mp_m_axi_split_wready; sc_signal<sc_dt::sc_bv<8> > m_axi_split_wready_out_0; sc_signal<sc_dt::sc_bv<8> > m_axi_split_wready_out_1; sc_signal<sc_dt::sc_bv<8> > m_axi_split_wready_out_2; sc_signal<sc_dt::sc_bv<8> > m_axi_split_wready_out_3; sc_signal<sc_dt::sc_bv<8> > m_axi_split_wready_out_4; sc_signal<sc_dt::sc_bv<8> > m_axi_split_wready_out_5; sc_signal<sc_dt::sc_bv<8> > m_axi_split_wready_out_6; sc_signal<sc_dt::sc_bv<8> > m_axi_split_wready_out_7; xsc::xsc_concatenator<32, 8> * mp_m_axi_concat_wstrb; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_wstrb_out_0; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_wstrb_out_1; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_wstrb_out_2; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_wstrb_out_3; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_wstrb_out_4; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_wstrb_out_5; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_wstrb_out_6; sc_signal<sc_dt::sc_bv<32> > m_axi_concat_wstrb_out_7; xsc::xsc_concatenator<8, 8> * mp_m_axi_concat_wvalid; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_wvalid_out_0; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_wvalid_out_1; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_wvalid_out_2; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_wvalid_out_3; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_wvalid_out_4; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_wvalid_out_5; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_wvalid_out_6; sc_signal<sc_dt::sc_bv<8> > m_axi_concat_wvalid_out_7; // Transactor stubs xtlm::xtlm_aximm_initiator_stub * M00_AXI_transactor_initiator_rd_socket_stub; xtlm::xtlm_aximm_initiator_stub * M00_AXI_transactor_initiator_wr_socket_stub; xtlm::xtlm_aximm_initiator_stub * M01_AXI_transactor_initiator_rd_socket_stub; xtlm::xtlm_aximm_initiator_stub * M01_AXI_transactor_initiator_wr_socket_stub; xtlm::xtlm_aximm_initiator_stub * M02_AXI_transactor_initiator_rd_socket_stub; xtlm::xtlm_aximm_initiator_stub * M02_AXI_transactor_initiator_wr_socket_stub; xtlm::xtlm_aximm_initiator_stub * M03_AXI_transactor_initiator_rd_socket_stub; xtlm::xtlm_aximm_initiator_stub * M03_AXI_transactor_initiator_wr_socket_stub; xtlm::xtlm_aximm_initiator_stub * M04_AXI_transactor_initiator_rd_socket_stub; xtlm::xtlm_aximm_initiator_stub * M04_AXI_transactor_initiator_wr_socket_stub; xtlm::xtlm_aximm_initiator_stub * M05_AXI_transactor_initiator_rd_socket_stub; xtlm::xtlm_aximm_initiator_stub * M05_AXI_transactor_initiator_wr_socket_stub; xtlm::xtlm_aximm_initiator_stub * M06_AXI_transactor_initiator_rd_socket_stub; xtlm::xtlm_aximm_initiator_stub * M06_AXI_transactor_initiator_wr_socket_stub; xtlm::xtlm_aximm_initiator_stub * M07_AXI_transactor_initiator_rd_socket_stub; xtlm::xtlm_aximm_initiator_stub * M07_AXI_transactor_initiator_wr_socket_stub; xtlm::xtlm_aximm_target_stub * S00_AXI_transactor_target_rd_socket_stub; xtlm::xtlm_aximm_target_stub * S00_AXI_transactor_target_wr_socket_stub; // Socket stubs }; #endif // MTI_SYSTEMC #endif // IP_VIDEO_CP_TIER2_XBAR_2_0_H_
58.159137
80
0.806565
9360a57d375e6472bd18fd19e02ee3436966be94
1,395
h
C
src/watcher.h
cedricpinson/shaderViewer
7ff1ce024d9c4cb79b6a9aa7d6aba0520f28de94
[ "MIT" ]
9
2020-12-03T12:53:13.000Z
2021-09-06T02:12:01.000Z
src/watcher.h
cedricpinson/shaderViewer
7ff1ce024d9c4cb79b6a9aa7d6aba0520f28de94
[ "MIT" ]
null
null
null
src/watcher.h
cedricpinson/shaderViewer
7ff1ce024d9c4cb79b6a9aa7d6aba0520f28de94
[ "MIT" ]
1
2021-09-09T00:32:31.000Z
2021-09-09T00:32:31.000Z
#pragma once #include "Texture.h" #include <assert.h> #include <mutex> #include <string> #include <sys/stat.h> #include <vector> struct WatchFile { enum Type { TEXTURE0 = 0, // NOLINT TEXTURE1 = 1, TEXTURE2 = 2, TEXTURE3 = 3, SHADER = 4 }; WatchFile() {} WatchFile(Type fileType, const std::string& filename) : type(fileType) , path(filename) {} Type type = SHADER; std::string path; // later we will probably have a union of different datatype Texture texture; time_t lastChange = 0; std::vector<uint8_t> data; }; typedef std::vector<WatchFile> WatchFileList; struct Watcher { WatchFileList _files; std::mutex _filesMutex; int _fileChanged = -1; void lock() { _filesMutex.lock(); } void unlock() { _filesMutex.unlock(); } bool fileChanged() const { return _fileChanged != -1; } void resetFileChanged() { _fileChanged = -1; } const std::string& getFilename() const { return _files[size_t(_fileChanged)].path; } const WatchFile& getChangedFile() const { return _files[size_t(_fileChanged)]; } const std::vector<uint8_t>& getData() const { assert(_fileChanged != -1 && "should not call getData if file is not changed"); return _files[size_t(_fileChanged)].data; } }; struct Application; void fileWatcherThread(Application*);
25.363636
88
0.640143
9360e0264c5c75d1469cd101bac81d6324ecf288
4,007
c
C
thirdparty/EVPath/EVPath/evp_threads.c
yunai2384/ADIOS2
c88fd748720dfdfb0d7f8a529d7838ea86ecfa65
[ "ECL-2.0", "Apache-2.0" ]
190
2017-04-05T20:16:22.000Z
2022-03-30T20:26:01.000Z
thirdparty/EVPath/EVPath/evp_threads.c
yunai2384/ADIOS2
c88fd748720dfdfb0d7f8a529d7838ea86ecfa65
[ "ECL-2.0", "Apache-2.0" ]
1,514
2017-02-03T16:19:17.000Z
2022-03-29T16:36:48.000Z
thirdparty/EVPath/EVPath/evp_threads.c
yunai2384/ADIOS2
c88fd748720dfdfb0d7f8a529d7838ea86ecfa65
[ "ECL-2.0", "Apache-2.0" ]
114
2016-12-06T16:47:45.000Z
2022-02-01T19:56:01.000Z
#include "config.h" #undef NDEBUG #include <assert.h> #include <stdio.h> #include <stdlib.h> #include <memory.h> #include <strings.h> #include <unistd.h> #include "evpath.h" #include "cm_internal.h" #include "response.h" /* * This file is meant to capture all the points at which CM/EVPath * instances in a shared address space might interact. Generally, there is * a single lock that protects the data of each instance. The * cm_interface.c file, generated from evpath.h by gen_interface.pl makes * sure that all entry points appropriately acquire and release the lock for * the CM on which they operate. Any thread associated with the CM (like * the communications thread) should also acquire the lock when it is * operating on protected data and drop it when it is waiting on * communication, or when control passes to user/handler. * * Passing events between instances requires modifying data structures in * each as queues are modified. Some data in events may be eventually be * shared or referenced in multiple CMs. Code that modifies potentially * shared data should live in this file. */ static event_item * clone_event(CManager cm, event_item *event, CManager target_cm); extern void thread_bridge_transfer(CManager source_cm, event_item *event, CManager target_cm, EVstone target_stone) { event_item *new_event; if (target_cm == source_cm) { internal_path_submit(source_cm, target_stone, event); return; } else if (target_cm > source_cm) { /* source_cm should already be locked, lock the destination */ assert(CManager_locked(source_cm)); CManager_lock(target_cm); } else { /* * we want to lock the CM's in smallest-first order. * source_cm is larger, so unlock that and then re-aquire the locks. * strict ordering avoids deadlock in case they are transferring * something to us. */ CManager_unlock(source_cm); CManager_lock(target_cm); CManager_lock(source_cm); } /* Both CMs are locked now */ new_event = clone_event(source_cm, event, target_cm); internal_path_submit(target_cm, target_stone, new_event); return_event(source_cm->evp, new_event); CMtrace_out(source_cm, EVerbose, "Transferring event %p from cm %p to cm %p, new_event %p\n\n", source_cm, target_cm, event, new_event); CManager_unlock(target_cm); CMwake_server_thread(target_cm); } static void free_master_event(void *event_data, void *event_struct) { (void) event_data; return_event(/*EVP*/NULL, (event_item*) event_struct); } static event_item * clone_event(CManager cm, event_item *event, CManager target_cm) { event_item *new_event = get_free_event(target_cm->evp); int id_len; char *old_ID; *new_event = *event; CMadd_ref_attr_list(cm, new_event->attrs); new_event->format = NULL; new_event->ref_count = 1; new_event->free_arg = event; new_event->free_func = free_master_event; new_event->contents = Event_Freeable; new_event->cm = target_cm; old_ID = get_server_ID_FMformat(event->reference_format, &id_len); new_event->reference_format = FMformat_from_ID(target_cm->evp->fmc, old_ID); switch(event->contents) { case Event_CM_Owned: /* * Just return the event. We'll ensure the CMbuffer gets * assigned back to the original CM when we do the release. (If * we don't get it back, we risk a permanent transfer of buffers * between CMs. Possibly very bad if one is always the network * manager and the other the consumer.) */ return new_event; case Event_Freeable: /* * Ditto. Except that it doesn't matter much who calls the * free function. */ return new_event; case Event_App_Owned: /* * Ugly. This is a local EVsubmit of user-owned data. They * expect us not to return until they can overwrite their data. * Cheat and force the event to be CM-owned instead. */ ensure_ev_owned(cm, new_event); return new_event; default: assert(FALSE); } return NULL; }
32.577236
99
0.721487
9364deef6cf5e58d850c09dbdaa6993059f9da32
5,187
c
C
src/mruby_git_time.c
jbreeden/mruby-git
3a729c34769aa97aee34a08f68deac77ff205d6a
[ "MIT" ]
null
null
null
src/mruby_git_time.c
jbreeden/mruby-git
3a729c34769aa97aee34a08f68deac77ff205d6a
[ "MIT" ]
null
null
null
src/mruby_git_time.c
jbreeden/mruby-git
3a729c34769aa97aee34a08f68deac77ff205d6a
[ "MIT" ]
null
null
null
/* * git_time * Defined in file types.h @ line 156 */ #include "mruby_Git.h" #if BIND_Time_TYPE /* MRUBY_BINDING: header */ /* sha: user_defined */ /* MRUBY_BINDING_END */ /* MRUBY_BINDING: Time::initialize */ /* sha: dfae0af4f24b81fe9008f635871711e06bac1c153c244aaf28971a0f5681f534 */ #if BIND_Time_INITIALIZE mrb_value mrb_Git_Time_initialize(mrb_state* mrb, mrb_value self) { /* TODO: Remove this comment & run `mrbind enable-functions` if an initializer is desired. */ git_time* native_object = (git_time*)calloc(1, sizeof(git_time)); mruby_gift_git_time_data_ptr(self, native_object); return self; } #endif /* MRUBY_BINDING_END */ /* * Fields */ /* MRUBY_BINDING: Time::time_reader */ /* sha: 98caed6bd88fff0649d4b0fa52dfca144c3a34888450a7802218f033aec69461 */ #if BIND_Time_time_FIELD_READER /* get_time * * Return Type: git_time_t */ mrb_value mrb_Git_Time_get_time(mrb_state* mrb, mrb_value self) { git_time * native_self = mruby_unbox_git_time(self); git_time_t native_time = native_self->time; mrb_value time = mrb_fixnum_value(native_time); return time; } #endif /* MRUBY_BINDING_END */ /* MRUBY_BINDING: Time::time_writer */ /* sha: c76020404b26dbe1463f19287297a39ef8794540d2d434ac60f172b4a317350a */ #if BIND_Time_time_FIELD_WRITER /* set_time * * Parameters: * - value: git_time_t */ mrb_value mrb_Git_Time_set_time(mrb_state* mrb, mrb_value self) { git_time * native_self = mruby_unbox_git_time(self); mrb_int native_time; mrb_get_args(mrb, "i", &native_time); native_self->time = native_time; /* Hacky way to return whatever was passed in. Mirrors typical assignment semantics. */ mrb_value value_as_mrb_value; mrb_get_args(mrb, "o", &value_as_mrb_value); return value_as_mrb_value; } #endif /* MRUBY_BINDING_END */ /* MRUBY_BINDING: Time::offset_reader */ /* sha: ab683bc5d2f92a81bf1c3c2576baa99ac707c43bc9d7c088982df7e772474f60 */ #if BIND_Time_offset_FIELD_READER /* get_offset * * Return Type: int */ mrb_value mrb_Git_Time_get_offset(mrb_state* mrb, mrb_value self) { git_time * native_self = mruby_unbox_git_time(self); int native_offset = native_self->offset; mrb_value offset = mrb_fixnum_value(native_offset); return offset; } #endif /* MRUBY_BINDING_END */ /* MRUBY_BINDING: Time::offset_writer */ /* sha: 9aac7a4557307be32ad12b1b5944e29e47ca77d532705ef630ebeebd5e904d93 */ #if BIND_Time_offset_FIELD_WRITER /* set_offset * * Parameters: * - value: int */ mrb_value mrb_Git_Time_set_offset(mrb_state* mrb, mrb_value self) { git_time * native_self = mruby_unbox_git_time(self); mrb_int native_offset; mrb_get_args(mrb, "i", &native_offset); native_self->offset = native_offset; /* Hacky way to return whatever was passed in. Mirrors typical assignment semantics. */ mrb_value value_as_mrb_value; mrb_get_args(mrb, "o", &value_as_mrb_value); return value_as_mrb_value; } #endif /* MRUBY_BINDING_END */ void mrb_Git_Time_init(mrb_state* mrb) { /* MRUBY_BINDING: Time::class_init_header */ /* sha: ad8337ceaefe095e6123163db0ca9028098ef3cf11dd77e31138363633f0fdd6 */ /* Don't double-init. */ static int initialized = 0; if (initialized) return; else initialized = 1; /* MRUBY_BINDING_END */ /* MRUBY_BINDING: Time::class_definition */ /* sha: 37c0de27860178d09802173eebf45cb937ecd5ce860731dfd4b777f510fe6c68 */ struct RClass* Time_class = mrb_define_class_under(mrb, Git_module(mrb), "Time", mrb->object_class); MRB_SET_INSTANCE_TT(Time_class, MRB_TT_DATA); /* MRUBY_BINDING_END */ /* MRUBY_BINDING: Time::pre_class_method_definitions */ /* sha: user_defined */ /* MRUBY_BINDING_END */ /* MRUBY_BINDING: Time::class_method_definitions */ /* sha: a6a1618eaf3624f5a4a3fed1c2f23785c6dcaaed7b1ca8118a405de42565f14e */ #if BIND_Time_INITIALIZE mrb_define_method(mrb, Time_class, "initialize", mrb_Git_Time_initialize, MRB_ARGS_NONE()); #endif /* MRUBY_BINDING_END */ /* MRUBY_BINDING: Time::pre_attr_definitions */ /* sha: user_defined */ /* MRUBY_BINDING_END */ /* MRUBY_BINDING: Time::attr_definitions */ /* sha: edab9cf6f6f9cf4c437c32b31734522225576547ac4d0979354e326d541d12df */ /* * Fields */ #if BIND_Time_time_FIELD_READER mrb_define_method(mrb, Time_class, "time", mrb_Git_Time_get_time, MRB_ARGS_ARG(0, 0)); #endif #if BIND_Time_time_FIELD_WRITER mrb_define_method(mrb, Time_class, "time=", mrb_Git_Time_set_time, MRB_ARGS_ARG(1, 0)); #endif #if BIND_Time_offset_FIELD_READER mrb_define_method(mrb, Time_class, "offset", mrb_Git_Time_get_offset, MRB_ARGS_ARG(0, 0)); #endif #if BIND_Time_offset_FIELD_WRITER mrb_define_method(mrb, Time_class, "offset=", mrb_Git_Time_set_offset, MRB_ARGS_ARG(1, 0)); #endif /* MRUBY_BINDING_END */ /* MRUBY_BINDING: Time::pre_instance_method_definitions */ /* sha: user_defined */ /* MRUBY_BINDING_END */ /* MRUBY_BINDING: Time::instance_method_definitions */ /* sha: bc1a7bf41f8f5b2f90434b58331667565e72c2b8794e7f56884099f7767fa42c */ /* * Member Functions */ /* None */ /* MRUBY_BINDING_END */ /* MRUBY_BINDING: Time::class_init_footer */ /* sha: user_defined */ /* MRUBY_BINDING_END */ } /* MRUBY_BINDING: footer */ /* sha: user_defined */ /* MRUBY_BINDING_END */ #endif
26.19697
102
0.761712
9366a064e7b651ab92aeb407d848e95e257b314d
282
h
C
Boards/T3Test/Matrix.h
CurrentResident/IncrediBoard
0082b617afc5ddc7b2e858d62a016bf1a63204d2
[ "Unlicense" ]
1
2016-02-05T15:22:45.000Z
2016-02-05T15:22:45.000Z
Boards/T3Test/Matrix.h
CurrentResident/IncrediBoard
0082b617afc5ddc7b2e858d62a016bf1a63204d2
[ "Unlicense" ]
null
null
null
Boards/T3Test/Matrix.h
CurrentResident/IncrediBoard
0082b617afc5ddc7b2e858d62a016bf1a63204d2
[ "Unlicense" ]
null
null
null
#ifndef IB1_MATRIX_H_ #define IB1_MATRIX_H_ #include <boost/fusion/include/vector.hpp> #include "KeyClasses.h" typedef boost::fusion::vector<KeyA, KeyB> Row0; typedef boost::fusion::vector<KeyC, KeyD> Row1; typedef boost::fusion::vector<Row0, Row1> Matrix; #endif
20.142857
50
0.72695
936781c141b24e1c1938ddc5fc58e3266c622787
1,295
h
C
include/Models/headers/Enemies/MAMUTMAN/Mamutman.h
openlastchaos/lastchaos-source-client
3d88594dba7347b1bb45378136605e31f73a8555
[ "Apache-2.0" ]
1
2022-02-14T15:46:44.000Z
2022-02-14T15:46:44.000Z
include/Models/Enemies/MAMUTMAN/Mamutman.h
openlastchaos/lastchaos-source-client
3d88594dba7347b1bb45378136605e31f73a8555
[ "Apache-2.0" ]
null
null
null
include/Models/Enemies/MAMUTMAN/Mamutman.h
openlastchaos/lastchaos-source-client
3d88594dba7347b1bb45378136605e31f73a8555
[ "Apache-2.0" ]
2
2022-01-10T22:17:06.000Z
2022-01-17T09:34:08.000Z
// Animation names #define MAMUTMAN_ANIM_ATTACK01 0 #define MAMUTMAN_ANIM_ATTACK02 1 #define MAMUTMAN_ANIM_DEATH01 2 #define MAMUTMAN_ANIM_DEATH02 3 #define MAMUTMAN_ANIM_FALL01 4 #define MAMUTMAN_ANIM_GETUP01 5 #define MAMUTMAN_ANIM_FALL02 6 #define MAMUTMAN_ANIM_GETUP02 7 #define MAMUTMAN_ANIM_RUN 8 #define MAMUTMAN_ANIM_STAND 9 #define MAMUTMAN_ANIM_WALK 10 #define MAMUTMAN_ANIM_WOUND01 11 #define MAMUTMAN_ANIM_WOUND02 12 #define MAMUTMAN_ANIM_WOUND03 13 #define MAMUTMAN_ANIM_STANDMOUNTEDFIRST 14 #define MAMUTMAN_ANIM_STANDMOUNTEDSECOND 15 #define MAMUTMAN_ANIM_STANDMOUNTEDTHIRD 16 #define MAMUTMAN_ANIM_MOUNTEDATTACKFIRST 17 #define MAMUTMAN_ANIM_MOUNTEDATTACKSECOND 18 #define MAMUTMAN_ANIM_MOUNTEDATTACKTHIRD 19 #define MAMUTMAN_ANIM_FALLFROMMAMUTFIRST 20 #define MAMUTMAN_ANIM_FALLFROMMAMUTSECOND 21 #define MAMUTMAN_ANIM_FALLFROMMAMUTTHIRD 22 #define MAMUTMAN_ANIM_MOUNTEDRUNFIRST 23 #define MAMUTMAN_ANIM_MOUNTEDRUNSECOND 24 #define MAMUTMAN_ANIM_MOUNTEDRUNTHIRD 25 #define MAMUTMAN_ANIM_MOUNTEDWALKFIRST 26 #define MAMUTMAN_ANIM_MOUNTEDWALKSECOND 27 #define MAMUTMAN_ANIM_MOUNTEDWALKTHIRD 28 // Color names // Patch names // Names of collision boxes #define MAMUTMAN_COLLISION_BOX_DEFAULT 0 #define MAMUTMAN_COLLISION_BOX_DEATH 1 // Attaching position names // Sound names
30.116279
44
0.874903
937095ec1fe0036e13daf53b64d8bca8084f39d5
5,088
c
C
ConfProfile/jni/strongswan/src/libcharon/plugins/eap_simaka_reauth/eap_simaka_reauth_provider.c
Infoss/conf-profile-4-android
619bd63095bb0f5a67616436d5510d24a233a339
[ "MIT" ]
2
2017-10-16T07:51:18.000Z
2019-06-16T12:07:52.000Z
strongswan/strongswan-5.3.2/src/libcharon/plugins/eap_simaka_reauth/eap_simaka_reauth_provider.c
SECURED-FP7/secured-mobility-ned
36fdbfee58a31d42f7047f7a7eaa1b2b70246151
[ "Apache-2.0" ]
5
2016-01-25T18:04:42.000Z
2016-02-25T08:54:56.000Z
strongswan/strongswan-5.3.2/src/libcharon/plugins/eap_simaka_reauth/eap_simaka_reauth_provider.c
SECURED-FP7/secured-mobility-ned
36fdbfee58a31d42f7047f7a7eaa1b2b70246151
[ "Apache-2.0" ]
2
2016-01-25T17:14:17.000Z
2016-02-13T20:14:09.000Z
/* * Copyright (C) 2009 Martin Willi * Hochschule fuer Technik Rapperswil * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation; either version 2 of the License, or (at your * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * for more details. */ #include "eap_simaka_reauth_provider.h" #include <daemon.h> #include <collections/hashtable.h> typedef struct private_eap_simaka_reauth_provider_t private_eap_simaka_reauth_provider_t; /** * Private data of an eap_simaka_reauth_provider_t object. */ struct private_eap_simaka_reauth_provider_t { /** * Public eap_simaka_reauth_provider_t interface. */ eap_simaka_reauth_provider_t public; /** * Permanent -> reauth_data_t mappings */ hashtable_t *reauth; /** * Reverse reauth -> permanent mappings */ hashtable_t *permanent; /** * RNG for pseudonyms/reauth identities */ rng_t *rng; }; /** * Data associated to a reauthentication identity */ typedef struct { /** currently used reauthentication identity */ identification_t *id; /** counter value */ u_int16_t counter; /** master key */ char mk[HASH_SIZE_SHA1]; } reauth_data_t; /** * hashtable hash function */ static u_int hash(identification_t *key) { return chunk_hash(key->get_encoding(key)); } /** * hashtable equals function */ static bool equals(identification_t *key1, identification_t *key2) { return key1->equals(key1, key2); } /** * Generate a random identity */ static identification_t *gen_identity(private_eap_simaka_reauth_provider_t *this) { char buf[8], hex[sizeof(buf) * 2 + 1]; if (!this->rng->get_bytes(this->rng, sizeof(buf), buf)) { return NULL; } chunk_to_hex(chunk_create(buf, sizeof(buf)), hex, FALSE); return identification_create_from_string(hex); } METHOD(simaka_provider_t, is_reauth, identification_t*, private_eap_simaka_reauth_provider_t *this, identification_t *id, char mk[HASH_SIZE_SHA1], u_int16_t *counter) { identification_t *permanent; reauth_data_t *data; /* look up permanent identity */ permanent = this->permanent->get(this->permanent, id); if (!permanent) { return NULL; } /* look up reauthentication data */ data = this->reauth->get(this->reauth, permanent); if (!data) { return NULL; } *counter = ++data->counter; memcpy(mk, data->mk, HASH_SIZE_SHA1); return permanent->clone(permanent); } METHOD(simaka_provider_t, gen_reauth, identification_t*, private_eap_simaka_reauth_provider_t *this, identification_t *id, char mk[HASH_SIZE_SHA1]) { reauth_data_t *data; identification_t *permanent, *new_id; new_id = gen_identity(this); if (!new_id) { DBG1(DBG_CFG, "failed to generate identity"); return NULL; } data = this->reauth->get(this->reauth, id); if (data) { /* update existing entry */ permanent = this->permanent->remove(this->permanent, data->id); if (permanent) { data->id->destroy(data->id); data->id = new_id; this->permanent->put(this->permanent, data->id, permanent); } else { new_id->destroy(new_id); } } else { /* generate new entry */ INIT(data, .id = new_id, ); id = id->clone(id); this->reauth->put(this->reauth, id, data); this->permanent->put(this->permanent, data->id, id); } memcpy(data->mk, mk, HASH_SIZE_SHA1); return data->id->clone(data->id); } METHOD(eap_simaka_reauth_provider_t, destroy, void, private_eap_simaka_reauth_provider_t *this) { enumerator_t *enumerator; identification_t *id; reauth_data_t *data; void *key; enumerator = this->permanent->create_enumerator(this->permanent); while (enumerator->enumerate(enumerator, &key, &id)) { id->destroy(id); } enumerator->destroy(enumerator); enumerator = this->reauth->create_enumerator(this->reauth); while (enumerator->enumerate(enumerator, &key, &data)) { data->id->destroy(data->id); free(data); } enumerator->destroy(enumerator); this->permanent->destroy(this->permanent); this->reauth->destroy(this->reauth); this->rng->destroy(this->rng); free(this); } /** * See header */ eap_simaka_reauth_provider_t *eap_simaka_reauth_provider_create() { private_eap_simaka_reauth_provider_t *this; INIT(this, .public = { .provider = { .get_triplet = (void*)return_false, .get_quintuplet = (void*)return_false, .resync = (void*)return_false, .is_pseudonym = (void*)return_null, .gen_pseudonym = (void*)return_null, .is_reauth = _is_reauth, .gen_reauth = _gen_reauth, }, .destroy = _destroy, }, .rng = lib->crypto->create_rng(lib->crypto, RNG_WEAK), ); if (!this->rng) { free(this); return NULL; } this->permanent = hashtable_create((void*)hash, (void*)equals, 0); this->reauth = hashtable_create((void*)hash, (void*)equals, 0); return &this->public; }
22.918919
89
0.709316
937360e224086a8a3a13601db4ba86a15a463edf
1,239
h
C
usr/libexec/backboardd/BKDigitizerArbiterInfoPerDisplay.h
zhangkn/iOS14Header
4323e9459ed6f6f5504ecbea2710bfd6c3d7c946
[ "MIT" ]
1
2020-11-04T15:43:01.000Z
2020-11-04T15:43:01.000Z
usr/libexec/backboardd/BKDigitizerArbiterInfoPerDisplay.h
zhangkn/iOS14Header
4323e9459ed6f6f5504ecbea2710bfd6c3d7c946
[ "MIT" ]
null
null
null
usr/libexec/backboardd/BKDigitizerArbiterInfoPerDisplay.h
zhangkn/iOS14Header
4323e9459ed6f6f5504ecbea2710bfd6c3d7c946
[ "MIT" ]
null
null
null
// // Generated by classdumpios 1.0.1 (64 bit) (iOS port by DreamDevLost)(Debug version compiled Sep 26 2020 13:48:20). // // Copyright (C) 1997-2019 Steve Nygard. // #import <objc/NSObject.h> @class BKDigitizerTouchStreamAggregate, BKTouchDeliveryStatisticsLoggingObserver, NSMapTable; @interface BKDigitizerArbiterInfoPerDisplay : NSObject { NSMapTable *_digitizerServiceToInfoMapping; // 8 = 0x8 BKDigitizerTouchStreamAggregate *_touchStreams; // 16 = 0x10 BKTouchDeliveryStatisticsLoggingObserver *_touchStatisticsLoggingObserver; // 24 = 0x18 } @property(retain, nonatomic) BKTouchDeliveryStatisticsLoggingObserver *touchStatisticsLoggingObserver; // @synthesize touchStatisticsLoggingObserver=_touchStatisticsLoggingObserver; @property(retain, nonatomic) BKDigitizerTouchStreamAggregate *touchStreams; // @synthesize touchStreams=_touchStreams; @property(retain, nonatomic) NSMapTable *digitizerServiceToInfoMapping; // @synthesize digitizerServiceToInfoMapping=_digitizerServiceToInfoMapping; - (void)dealloc; // IMP=0x000000010007fe40 - (void)removeDigitizerInfoForService:(id)arg1; // IMP=0x000000010007fc2c - (struct OpaqueBKDigitizerInfo *)digitizerInfoForService:(id)arg1; // IMP=0x000000010007fc1c @end
45.888889
181
0.814366
9373ffd67a9782023b03db0e4e20a4ed67c069ac
1,344
h
C
crypto_kem/saber/aarch64/pack_unpack.h
vincentvbh/pqax
f207aae5506ad767fd8d0baebee663db021d8061
[ "CC0-1.0" ]
5
2020-08-28T04:44:22.000Z
2021-09-16T18:33:56.000Z
crypto_kem/saber/aarch64/pack_unpack.h
vincentvbh/pqax
f207aae5506ad767fd8d0baebee663db021d8061
[ "CC0-1.0" ]
4
2021-06-16T03:13:26.000Z
2021-06-29T12:26:25.000Z
crypto_kem/saber/aarch64/pack_unpack.h
vincentvbh/pqax
f207aae5506ad767fd8d0baebee663db021d8061
[ "CC0-1.0" ]
4
2021-05-01T02:47:29.000Z
2021-07-02T09:35:57.000Z
/*============================================================================= This file has been adapted from the implementation (available at, Public Domain https://github.com/KULeuven-COSIC/SABER) of "Saber: Module-LWR based key exchange, CPA-secure encryption and CCA-secure KEM" by : Jan-Pieter D'Anvers, Angshuman Karmakar, Sujoy Sinha Roy, and Frederik Vercauteren Jose Maria Bermudo Mera, Michiel Van Beirendonck, Andrea Basso. =============================================================================*/ #ifndef PACK_UNPACK_H #define PACK_UNPACK_H #include <stdio.h> #include <stdint.h> #include "SABER_params.h" void POLT2BS(uint8_t bytes[SABER_SCALEBYTES_KEM], const uint16_t data[SABER_N]); void BS2POLT(const uint8_t bytes[SABER_SCALEBYTES_KEM], uint16_t data[SABER_N]); void POLVECq2BS(uint8_t bytes[SABER_POLYVECBYTES], const uint16_t data[SABER_L][SABER_N]); void POLVECp2BS(uint8_t bytes[SABER_POLYVECCOMPRESSEDBYTES], const uint16_t data[SABER_L][SABER_N]); void BS2POLVECq(const uint8_t bytes[SABER_POLYVECBYTES], uint16_t data[SABER_L][SABER_N]); void BS2POLVECp(const uint8_t bytes[SABER_POLYVECCOMPRESSEDBYTES], uint16_t data[SABER_L][SABER_N]); void BS2POLmsg(const uint8_t bytes[SABER_KEYBYTES], uint16_t data[SABER_N]); void POLmsg2BS(uint8_t bytes[SABER_KEYBYTES], const uint16_t data[SABER_N]); #endif
44.8
100
0.71131
93759e6789bb5b9b963526cb612fd5d182f2d845
2,386
h
C
FangameReader/CompositeColumnContent.h
TheBiob/DeadSplit
2e29bae2b86fa689ed9c28d345f2e8743b10c115
[ "MIT" ]
3
2019-04-02T19:23:35.000Z
2021-04-30T03:57:15.000Z
FangameReader/CompositeColumnContent.h
TheBiob/DeadSplit
2e29bae2b86fa689ed9c28d345f2e8743b10c115
[ "MIT" ]
1
2018-07-10T22:34:41.000Z
2018-07-10T22:52:43.000Z
FangameReader/CompositeColumnContent.h
TheBiob/DeadSplit
2e29bae2b86fa689ed9c28d345f2e8743b10c115
[ "MIT" ]
3
2020-12-28T19:06:07.000Z
2021-01-30T10:09:56.000Z
#pragma once #include <ColumnContent.h> #include <ColumnContentUtils.h> namespace Fangame { class CGlTexturedQuad; struct CBossAttackInfo; ////////////////////////////////////////////////////////////////////////// class CCompositeColumnData : public IColumnContentData { public: explicit CCompositeColumnData( CPtrOwner<IColumnContentData> left, CPtrOwner<IColumnContentData> right ) : leftData( move( left ) ), rightData( move( right ) ) {} const IColumnContentData& GetLeftData() const { return *leftData; } const IColumnContentData& GetRightData() const { return *rightData; } virtual int GetRowCount() const override final; virtual float GetRowPixelWidth( int rowPos ) const override final; virtual float GetMaxRowPixelWidth() const override final; virtual bool UpdateAttackData( const CBossInfo&, int ) override final; virtual bool UpdateFooterData( const CBossInfo& ) override final; virtual void DrawCellImage( const IRenderParameters&, int rowPos, const TMatrix3& parentTransform, CClipVector cellSize ) const override final; virtual void DrawCellText( const IRenderParameters& renderParams, int rowPos, CColor rowColor, const TMatrix3& parentTransform, CPixelVector cellSize ) const override final; private: CPtrOwner<IColumnContentData> leftData; CPtrOwner<IColumnContentData> rightData; }; ////////////////////////////////////////////////////////////////////////// // Content with an image. class CCompositeColumnContent : public IColumnContent { public: CCompositeColumnContent( CPtrOwner<IColumnContent> left, CPtrOwner<IColumnContent> right ) : leftContent( move( left ) ), rightContent( move( right ) ) {} ~CCompositeColumnContent(); virtual CPtrOwner<IColumnContentData> CreateFooterData( const CBossInfo& bossInfo, float linePixelHeight, TTableColumnZone zone ) const override final; virtual CPtrOwner<IColumnContentData> CreateAttackData( CArrayView<CBossAttackInfo> attacks, int attackCount, const IFontRenderData& bossFont, float linePixelHeight, TTableColumnZone zone ) const override final; private: CPtrOwner<IColumnContent> leftContent; CPtrOwner<IColumnContent> rightContent; const CCompositeColumnData& getCompositeData( const IColumnContentData& data ) const; }; ////////////////////////////////////////////////////////////////////////// } // namespace Fangame.
41.859649
175
0.708298
9375c6e4f457c65439a0b0f6eecb954ed764907c
1,391
h
C
Classes/TimelineVolumeTrackView.h
qmat/VCode-QMAT
2ef94b458c51188b7bd43fcadbf446b25bf3f263
[ "BSD-3-Clause" ]
3
2015-09-30T13:09:17.000Z
2020-09-03T16:17:51.000Z
Classes/TimelineVolumeTrackView.h
qmat/VCode-QMAT
2ef94b458c51188b7bd43fcadbf446b25bf3f263
[ "BSD-3-Clause" ]
null
null
null
Classes/TimelineVolumeTrackView.h
qmat/VCode-QMAT
2ef94b458c51188b7bd43fcadbf446b25bf3f263
[ "BSD-3-Clause" ]
null
null
null
// // TimelineVolumeTrackView.h // VCode // // Created by Joey Hagedorn on 10/21/07. // Updated and modified by Joshua Hailpern & Zhongnan Du on 12/7/2011 // Copyright 2008 University of Illinois & Joey Hagedorn. All rights reserved. // This software is licensed under a BSD license. Please refer to the included // license file for more details. #import <Cocoa/Cocoa.h> #import "DataFileLog.h" @interface TimelineVolumeTrackView : NSView { id doc; //CodingDocument NSString * key; NSColor * cachedColor; DataFileLog * referenceDataFileLog; NSString * cachedStyle; unsigned long long referenceOffset; NSImage * cachedImage; BOOL drawsBackground; } - (void) setDoc:(id)document; //CodingDocument - (void) setKey:(NSString *)newKey; //CodingDocument - (void) setDrawsBackground:(BOOL)state; - (float)millisecondsToX:(unsigned long long)milliseconds; - (void)drawPlayHead; - (void)drawTickAtMS:(unsigned long long)milliseconds withHeight:(float)height; - (void)drawPointAtMS:(unsigned long long)milliseconds withHeight:(float)height; - (void)redrawCachedImage; @end /* DataFileLog * file = [[DataFileLog alloc] initWithPath:[[sender alias] fullPath]]; NSLog(@"path%@",[file path]); NSLog(@"start%qu",[file start]); NSLog(@"end%qu",[file end]); NSLog(@"length%qu",[file length]); NSLog(@"pointcount%d",[file pointCount]); NSLog(@"volpoints%@",[file volPoints]); */
28.979167
83
0.731848
9377185e7022d817d158d5b57529e9172a870d64
87
h
C
crypto_aead/proest256otrv1/ref/otr.h
iadgov/simon-speck-supercop
5bba85c3094029eb73b7077441e5c6ea2f2cb1c6
[ "CC0-1.0" ]
21
2016-12-03T14:19:01.000Z
2018-03-09T14:52:25.000Z
crypto_aead/proest256otrv1/ref/otr.h
iadgov/simon-speck-supercop
5bba85c3094029eb73b7077441e5c6ea2f2cb1c6
[ "CC0-1.0" ]
null
null
null
crypto_aead/proest256otrv1/ref/otr.h
iadgov/simon-speck-supercop
5bba85c3094029eb73b7077441e5c6ea2f2cb1c6
[ "CC0-1.0" ]
11
2017-03-06T17:21:42.000Z
2018-03-18T03:52:58.000Z
#ifndef OTR_H #define OTR_H #define OTR_BLOCKBYTES 64 #define OTR_TAGBYTES 32 #endif
10.875
25
0.793103
9378581cee67166627c6dd051ad9000f6dc9e925
243
h
C
LeetCode/utils/sort.h
apoptoxin/LeetCode
2b042572891e075d7ff21c9f3822197a26a8325e
[ "MIT" ]
null
null
null
LeetCode/utils/sort.h
apoptoxin/LeetCode
2b042572891e075d7ff21c9f3822197a26a8325e
[ "MIT" ]
null
null
null
LeetCode/utils/sort.h
apoptoxin/LeetCode
2b042572891e075d7ff21c9f3822197a26a8325e
[ "MIT" ]
null
null
null
// // sort.h // LeetCode // // Created by apoptoxin on 2018/6/24. // Copyright © 2018年 micronil.com. All rights reserved. // #ifndef sort_h #define sort_h #include <stdio.h> #endif /* sort_h */ void quickSort(int * oriAry, int length);
15.1875
56
0.662551
937cb29b63e2ff17849933871a40a99e5aee6a80
2,886
c
C
lib/sw_apps/versal_plm/src/xplm_sem_init.c
erique/embeddedsw
4b5fd15c71405844e03f2c276daa38cfcbb6459b
[ "BSD-2-Clause", "MIT" ]
595
2015-02-03T15:07:36.000Z
2022-03-31T18:21:23.000Z
lib/sw_apps/versal_plm/src/xplm_sem_init.c
Xilinx/embeddedsw-experimental-dt-support
329bf8fa54110034c8436d0b3b4aa40e8a56b02d
[ "BSD-2-Clause", "MIT" ]
144
2016-01-08T17:56:37.000Z
2022-03-31T13:23:52.000Z
lib/sw_apps/versal_plm/src/xplm_sem_init.c
Xilinx/embeddedsw-experimental-dt-support
329bf8fa54110034c8436d0b3b4aa40e8a56b02d
[ "BSD-2-Clause", "MIT" ]
955
2015-03-30T00:54:27.000Z
2022-03-31T11:32:23.000Z
/****************************************************************************** * Copyright (c) 2018 - 2021 Xilinx, Inc. All rights reserved. * SPDX-License-Identifier: MIT ******************************************************************************/ /*****************************************************************************/ /** * * @file xplm_sem_init.c * * This file contains the SEM Init APIs. * * <pre> * MODIFICATION HISTORY: * * Ver Who Date Changes * ----- ---- -------- ------------------------------------------------------- * 1.00 rm 09/22/2019 Initial release * 1.01 kc 02/10/2020 Updated scheduler to add/remove tasks * kc 02/17/2020 Added configurable priority for scheduler tasks * kc 02/26/2020 Added XPLM_SEM macro to include/disable SEM * functionality * kc 03/23/2020 Minor code cleanup * hb 10/29/2020 Updated OwnerId for NPI scan scheduler * 1.02 rb 10/30/2020 Updated XilSEM Init API * 1.03 rb 01/28/2021 Added Sem PreInit API to have CDO command handler * initialization, removed unused header file * rb 03/09/2021 Updated Sem Init API call * * </pre> * * @note * ******************************************************************************/ /***************************** Include Files *********************************/ #include "xplm_sem_init.h" #ifdef XPLM_SEM #include "xilsem.h" /************************** Constant Definitions *****************************/ /**************************** Type Definitions *******************************/ /***************** Macros (Inline Functions) Definitions *********************/ /************************** Function Prototypes ******************************/ /************************** Variable Definitions *****************************/ /*****************************************************************************/ /*****************************************************************************/ /** * @brief It calls the XilSEM Init API to register CDO loader commands * * @return Status as defined in XilSEM library * *****************************************************************************/ int XPlm_SemInit(void) { int Status = XST_FAILURE; Status = XSem_Init(); return Status; } /*****************************************************************************/ /** * @brief This function calls the scan init functions of XilSEM. * As a part of this, XilSEM library can initiate * scan on both CRAM and NPI. * Scan will be decided based on the CIPS params in xparameters.h. * * @param Arg is not used * * @return Status as defined in XilSEM library * *****************************************************************************/ int XPlm_SemScanInit(void *Arg) { int Status = XST_FAILURE; (void)Arg; Status = XSem_InitScan(); return Status; } #endif
31.032258
79
0.412335
937d1a7c7c15b6620ad029b5b5c186a005ac830a
1,146
h
C
arduino/opencr_arduino/opencr/libraries/OpenManipulator/include/open_manipulator/OPM/OPMComm.h
yemiaobing/opencr
8700d276f60cb72db4f1ed85deff26a5f96ce7b6
[ "Apache-2.0" ]
1
2019-03-09T05:56:55.000Z
2019-03-09T05:56:55.000Z
arduino/opencr_arduino/opencr/libraries/OpenManipulator/include/open_manipulator/OPM/OPMComm.h
yemiaobing/opencr
8700d276f60cb72db4f1ed85deff26a5f96ce7b6
[ "Apache-2.0" ]
null
null
null
arduino/opencr_arduino/opencr/libraries/OpenManipulator/include/open_manipulator/OPM/OPMComm.h
yemiaobing/opencr
8700d276f60cb72db4f1ed85deff26a5f96ce7b6
[ "Apache-2.0" ]
null
null
null
/******************************************************************************* * Copyright 2016 ROBOTIS 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 or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. *******************************************************************************/ /* Authors: Darby Lim */ #ifndef OPMCOMM_H_ #define OPMCOMM_H_ #include <unistd.h> #include <Eigen.h> #define DEG2RAD (M_PI / 180.0) #define RAD2DEG (180.0 / M_PI) typedef struct { Eigen::Vector3f position; Eigen::Matrix3f orientation; } Pose; typedef struct { float pos; float vel; float acc; } State; typedef struct { float present; float target; } Position; #endif // OPMCOMM_H_
24.382979
80
0.628272
93810bc8911881998a0d5043c44fcf96b7475b5b
637
h
C
emu.h
terryyz/MIPS-Emulator
74df476f5f1b3841c4fe58c6ff3b3c5376783fad
[ "MIT" ]
1
2020-07-28T14:51:37.000Z
2020-07-28T14:51:37.000Z
emu.h
terryyz/MIPS-Emulator
74df476f5f1b3841c4fe58c6ff3b3c5376783fad
[ "MIT" ]
null
null
null
emu.h
terryyz/MIPS-Emulator
74df476f5f1b3841c4fe58c6ff3b3c5376783fad
[ "MIT" ]
null
null
null
//////////////////////////////////////////////////////////////////////// // COMP1521 19t3 ... assignment 1: emu -- a MIPS emulator // // 2019-10-15 v1.0 emu squad <cs1521@cse.unsw.edu.au> // Initial release onto unsuspecting students. // // // // // // // // DO NOT MODIFY THIS FILE! // // // // // // // // // #include <stdint.h> #ifndef CS1521_ASS1__EMU_H #define CS1521_ASS1__EMU_H // // You need to write these functions. See the specification for details. // int execute_instruction(uint32_t instruction, uint32_t *program_counter); void print_instruction(uint32_t instruction); #endif // !defined(CS1521_ASS1__EMU_H)
30.333333
73
0.605965
93880a1eba3d3ff04d95df7dcac46ad085da51a7
516
h
C
src/Seeed_Arduino_ooFreeRTOS.h
Seeed-Studio/Seeed_Arduino_ooFreeRTOS
d0695a89c28c467532eed25c2b39102cd062ed28
[ "MIT" ]
2
2020-08-09T14:23:23.000Z
2020-10-23T00:42:41.000Z
src/Seeed_Arduino_ooFreeRTOS.h
Seeed-Studio/Seeed_Arduino_ooFreeRTOS
d0695a89c28c467532eed25c2b39102cd062ed28
[ "MIT" ]
null
null
null
src/Seeed_Arduino_ooFreeRTOS.h
Seeed-Studio/Seeed_Arduino_ooFreeRTOS
d0695a89c28c467532eed25c2b39102cd062ed28
[ "MIT" ]
3
2020-08-09T14:23:24.000Z
2021-06-05T09:29:37.000Z
#ifndef OO_FREE_RTOS_H #define OO_FREE_RTOS_H #include <Seeed_Arduino_FreeRTOS.h> #define CPP_FREERTOS_NO_EXCEPTIONS #include <version.hpp> #include <condition_variable.hpp> #include <critical.hpp> #include <event_groups.hpp> #include <mem_pool.hpp> #include <message.hpp> #include <mutex.hpp> #include <queue.hpp> #include <read_write_lock.hpp> #include <semaphore.hpp> #include <tasklet.hpp> #include <thread.hpp> #include <tickhook.hpp> #include <ticks.hpp> #include <timer.hpp> #include <workqueue.hpp> #endif
23.454545
35
0.777132
938f32ccf1b9002513159fa141285b01d3406354
6,563
h
C
SmallText.h
paulopilot/MicroEFIS_Mavlink_T4
5d80277f99db276bac96dc723f070aca776a424e
[ "MIT" ]
null
null
null
SmallText.h
paulopilot/MicroEFIS_Mavlink_T4
5d80277f99db276bac96dc723f070aca776a424e
[ "MIT" ]
null
null
null
SmallText.h
paulopilot/MicroEFIS_Mavlink_T4
5d80277f99db276bac96dc723f070aca776a424e
[ "MIT" ]
null
null
null
#ifndef SMALL_TEXT_H__ #define SMALL_TEXT_H__ //#include <ILI9341_t3n.h> #define FONT_W 4 #define FONT_H 5 const uint8_t PROGMEM FONT_SMALL[] = { // SPACE 0b00000000, 0b00000000, 0b00000000, 0b00000000, 0b00000000, // ! 0b00000100, 0b00000100, 0b00000100, 0b00000000, 0b00000100, // " 0b00001010, 0b00001010, 0b00000000, 0b00000000, 0b00000000, // # 0b00000000, 0b00000000, 0b00000000, 0b00000000, 0b00000000, // $ 0b00000000, 0b00000000, 0b00000000, 0b00000000, 0b00000000, // % 0b00001010, 0b00000010, 0b00000100, 0b00001000, 0b00001010, // & 0b00000000, 0b00000000, 0b00000000, 0b00000000, 0b00000000, // ' 0b00000000, 0b00000000, 0b00000000, 0b00000000, 0b00000000, // ( 0b00000010, 0b00000100, 0b00001000, 0b00000100, 0b00000010, // ) 0b00001000, 0b00000100, 0b00000010, 0b00000100, 0b00001000, // * 0b00000000, 0b00000100, 0b00001110, 0b00000100, 0b00000000, // + 0b00000000, 0b00000100, 0b00001110, 0b00000100, 0b00000000, // ´ 0b00000000, 0b00000000, 0b00000000, 0b00000000, 0b00000000, // - 0b00000000, 0b00000000, 0b00001110, 0b00000000, 0b00000000, // . 0b00000000, 0b00000000, 0b00000000, 0b00000000, 0b00000100, // / 0b00000010, 0b00000010, 0b00000100, 0b00001000, 0b00001000, // 0 0b00000100, 0b00001010, 0b00001010, 0b00001010, 0b00000100, // 1 0b000000100, 0b000001100, 0b000000100, 0b000000100, 0b000001110, // 2 0b00001100, 0b00000010, 0b00000100, 0b00001000, 0b00001110, // 3 0b00001100, 0b00000010, 0b00000100, 0b00000010, 0b00001100, // 4 0b00001010, 0b00001010, 0b00001110, 0b00000010, 0b00000010, // 5 0b00001110, 0b00001000, 0b00001110, 0b00000010, 0b00001100, // 6 0b00001110, 0b00001000, 0b00001110, 0b00001010, 0b00001110, // 7 0b00001110, 0b00000010, 0b00000100, 0b00000100, 0b00000100, // 8 0b00001110, 0b00001010, 0b00001110, 0b00001010, 0b00001110, // 9 0b00001110, 0b00001010, 0b00001110, 0b00000010, 0b00001100, // : 0b00000000, 0b00000100, 0b00000000, 0b00000100, 0b00000000, // ; 0b00000000, 0b00000100, 0b00000000, 0b00000100, 0b00000100, // < 0b00000000, 0b00000100, 0b00001000, 0b00000100, 0b00000000, // = 0b00000000, 0b00001110, 0b00000000, 0b00001110, 0b00000000, // > 0b00000000, 0b00000100, 0b00000010, 0b00000100, 0b00000000, // ? 0b00001110, 0b00001010, 0b00000100, 0b00000000, 0b00000100, // @ 0b00000000, 0b00000000, 0b00000000, 0b00000000, 0b00000000, // A 0b00000100, 0b00001010, 0b00001110, 0b00001010, 0b00001010, // B 0b00001100, 0b00001010, 0b00001100, 0b00001010, 0b00001100, // C 0b00000110, 0b00001000, 0b00001000, 0b00001000, 0b00000110, // D 0b00001100, 0b00001010, 0b00001010, 0b00001010, 0b00001100, // E 0b00001110, 0b00001000, 0b00001100, 0b00001000, 0b00001110, // F 0b00001110, 0b00001000, 0b00001100, 0b00001000, 0b00001000, // G 0b00001110, 0b00001000, 0b00001000, 0b00001010, 0b00001110, // H 0b00001010, 0b00001010, 0b00001110, 0b00001010, 0b00001010, // I 0b00001110, 0b00000100, 0b00000100, 0b00000100, 0b00001110, // J 0b00000110, 0b00000010, 0b00000010, 0b00001010, 0b00000100, // K 0b00001010, 0b00001010, 0b00001100, 0b00001010, 0b00001010, // L 0b00001000, 0b00001000, 0b00001000, 0b00001000, 0b00001110, // M 0b00001010, 0b00001110, 0b00001010, 0b00001010, 0b00001010, // N 0b00001010, 0b00001110, 0b00001010, 0b00001110, 0b00001010, // O 0b00001110, 0b00001010, 0b00001010, 0b00001010, 0b00001110, // P 0b00001110, 0b00001010, 0b00001110, 0b00001000, 0b00001000, // Q 0b00001110, 0b00001010, 0b00001010, 0b00001010, 0b00001100, // R 0b00001100, 0b00001010, 0b00001100, 0b00001010, 0b00001010, // S 0b00000110, 0b00001000, 0b00000100, 0b00000010, 0b00001100, // T 0b00001110, 0b00000100, 0b00000100, 0b00000100, 0b00000100, // U 0b00001010, 0b00001010, 0b00001010, 0b00001010, 0b00001110, // V 0b00001010, 0b00001010, 0b00001010, 0b00001010, 0b00000100, // W 0b00001010, 0b00001010, 0b00001010, 0b00001110, 0b00001010, // X 0b00001010, 0b00001010, 0b00000100, 0b00001010, 0b00001010, // Y 0b00001010, 0b00001010, 0b00000100, 0b00000100, 0b00000100, // Z 0b00001110, 0b00000010, 0b00000100, 0b00001000, 0b00001110 }; class SmallText { public: SmallText(); void init(ILI9341_t3n *tft, uint16_t x, uint16_t y, uint16_t ftColor = ILI9341_LIGHTGREY, uint16_t bgColor = ILI9341_BLACK); void printText(const char *text); void setFontColor(uint16_t ftColor); private: ILI9341_t3n *_tft; uint16_t _x; uint16_t _y; uint16_t _ox; uint16_t _ix; uint16_t _iy; uint16_t _bgColor; uint16_t _ftColor; void write(uint8_t c); void drawChar(uint8_t c); }; SmallText::SmallText() {}; void SmallText::init(ILI9341_t3n *tft, uint16_t x, uint16_t y, uint16_t ftColor, uint16_t bgColor) { _tft = tft; _x = x; _y = y; _bgColor = bgColor; _ftColor = ftColor; } void SmallText::printText(const char *text) { if (text != NULL) { _ox = _x; _iy = _y; while (*text) { write(*text++); _ox += FONT_W; _iy = _y; } } } void SmallText::write(uint8_t c) { if (c >= 97 && c <= 122) c -= 32; if (c >= 32 && c <= 90) { drawChar(c); } } void SmallText::drawChar(uint8_t c) { uint16_t idx = (c - 32) * 5; uint8_t pixel; //Serial.print("Caracter "); //Serial.print(c); //Serial.print(" Indice="); //Serial.print(idx); //Serial.print(" 0b"); for (uint16_t idr = 0; idr < FONT_H; idr++) { // Get row pixel = FONT_SMALL[idx + idr]; pixel <<= 4; _ix = _ox; for (uint8_t i = 0; i < FONT_W; i++) { pixel & 0x80 ? _tft->drawPixel(_ix, _iy, _ftColor) : _tft->drawPixel(_ix, _iy, _bgColor); pixel <<= 1; _ix++; } _iy++; //Serial.println(""); } //drawPixel(ix, iy, _ftColor) } void SmallText::setFontColor(uint16_t ftColor) { _ftColor = ftColor; } #endif
12.669884
128
0.625933
93904d723c995c0d0b52184cd78c7f0951311fbc
335
h
C
YGStudy/ViewController.h
YOGURTtS/YGStudy
b8c8459e8363d56948e97e4afa07963dbde98dc2
[ "MIT" ]
null
null
null
YGStudy/ViewController.h
YOGURTtS/YGStudy
b8c8459e8363d56948e97e4afa07963dbde98dc2
[ "MIT" ]
null
null
null
YGStudy/ViewController.h
YOGURTtS/YGStudy
b8c8459e8363d56948e97e4afa07963dbde98dc2
[ "MIT" ]
null
null
null
// // ViewController.h // YGStudy // // Created by 孙星 on 2019/9/2. // Copyright © 2019 YOGURTS. All rights reserved. // #import <UIKit/UIKit.h> @interface YGClassModel : NSObject @property (nonatomic, copy) NSString *title; @property (nonatomic, strong) Class clazz; @end @interface ViewController : UIViewController @end
13.958333
50
0.704478
9394b349d7b43ea95f4088624cd25d8cafcbdfdb
1,053
h
C
System/Library/PrivateFrameworks/iWorkImport.framework/Frameworks/TSCharts.framework/TSCH3DMaterialShaderEffect.h
zhangkn/iOS14Header
4323e9459ed6f6f5504ecbea2710bfd6c3d7c946
[ "MIT" ]
1
2020-11-04T15:43:01.000Z
2020-11-04T15:43:01.000Z
System/Library/PrivateFrameworks/iWorkImport.framework/Frameworks/TSCharts.framework/TSCH3DMaterialShaderEffect.h
zhangkn/iOS14Header
4323e9459ed6f6f5504ecbea2710bfd6c3d7c946
[ "MIT" ]
null
null
null
System/Library/PrivateFrameworks/iWorkImport.framework/Frameworks/TSCharts.framework/TSCH3DMaterialShaderEffect.h
zhangkn/iOS14Header
4323e9459ed6f6f5504ecbea2710bfd6c3d7c946
[ "MIT" ]
null
null
null
/* * This header is generated by classdump-dyld 1.0 * on Sunday, September 27, 2020 at 12:31:22 PM Mountain Standard Time * Operating System: Version 14.0 (Build 18A373) * Image Source: /System/Library/PrivateFrameworks/iWorkImport.framework/Frameworks/TSCharts.framework/TSCharts * classdump-dyld is licensed under GPLv3, Copyright © 2013-2016 by Elias Limneos. */ #import <TSCharts/TSCH3DShaderEffect.h> @class TSCH3DTexturePool, TSCH3DTexturesMaterial, TSCH3DMaterialShaderVariables; @interface TSCH3DMaterialShaderEffect : TSCH3DShaderEffect { TSCH3DTexturePool* mPool; TSCH3DTexturesMaterial* mMaterial; TSCH3DMaterialShaderVariables* mVariables; } +(id)stateSharingID; +(id)effectWithPool:(id)arg1 material:(id)arg2 variables:(id)arg3 ; -(void)dealloc; -(BOOL)isEqual:(id)arg1 ; -(void)addVariables:(id)arg1 ; -(id)stateSharingID; -(void)uploadData:(id)arg1 effectsStates:(id)arg2 ; -(void)affectStates:(id)arg1 ; -(void)updateState:(id)arg1 effectsStates:(id)arg2 ; -(id)initWithPool:(id)arg1 material:(id)arg2 variables:(id)arg3 ; @end
32.90625
110
0.782526
93958b5c71d9c20c1f0eb73645f6f44bc1837ac2
4,205
h
C
hal/include/hthread/mutex/hardware.h
eugenecartwright/hthreads
826c495dd855f8fcc1e12e1ac01845c2983ecf04
[ "BSD-3-Clause" ]
3
2018-02-14T23:24:45.000Z
2022-03-30T18:48:06.000Z
include/hthread/mutex/hardware.h
eugenecartwright/hthreads
826c495dd855f8fcc1e12e1ac01845c2983ecf04
[ "BSD-3-Clause" ]
null
null
null
include/hthread/mutex/hardware.h
eugenecartwright/hthreads
826c495dd855f8fcc1e12e1ac01845c2983ecf04
[ "BSD-3-Clause" ]
null
null
null
/************************************************************************************ * Copyright (c) 2015, University of Arkansas - Hybridthreads Group * 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 conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * Neither the name of the University of Arkansas nor the name of the * Hybridthreads Group nor the names of its contributors may be used to * endorse or promote products derived from this software without specific * prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ************************************************************************************/ /** \file hardware.h */ #ifndef _HYBRID_THREADS_MUTEX_HARDWARE_H_ #define _HYBRID_THREADS_MUTEX_HARDWARE_H_ #include <debug.h> #include <util/rops.h> #include <mutex/commands.h> #include <htconst.h> #define HT_SEM_RESERVE 5 #define HT_SEM_MAXNUM (((1 << MUTEX_BITS) - 1) - HT_SEM_RESERVE) static inline Hint _mutex_acquire( Huint tid, Huint mid ) { Huint cmd; Huint sta; cmd = mutex_cmd( HT_MUTEX_LOCK, tid, mid ); sta = read_reg( cmd ); TRACE_PRINTF(TRACE_FINE,TRACE_MUTEX,"LOCK: (CMD=0x%8.8x) (TID=%u) (MID=%u) (STA=0x%8.8x)\n",cmd,tid,mid,sta); return sta; } static inline Hint _mutex_tryacquire( Huint tid, Huint mid ) { Huint cmd; Huint sta; cmd = mutex_cmd( HT_MUTEX_TRY, tid, mid ); sta = read_reg( cmd ); TRACE_PRINTF(TRACE_FINE,TRACE_MUTEX,"TRYLOCK: (CMD=0x%8.8x) (TID=%u) (MID=%u) (STA=0x%8.8x)\n",cmd,tid,mid,sta); if( mutex_error(sta) ) return FAILURE; else return SUCCESS; } static inline void _mutex_release( Huint tid, Huint mid ) { Huint cmd; Huint sta; cmd = mutex_cmd( HT_MUTEX_UNLOCK, tid, mid ); sta = read_reg( cmd ); TRACE_PRINTF(TRACE_FINE,TRACE_MUTEX,"UNLOCK: (CMD=0x%8.8x) (TID=%u) (MID=%u) (STA=0x%8.8x)\n",cmd,tid,mid,sta); } static inline Huint _mutex_owner( Huint mid ) { Huint cmd; Huint sta; cmd = mutex_cmd( HT_MUTEX_OWNER, 0, mid ); sta = read_reg( cmd ); TRACE_PRINTF(TRACE_FINE,TRACE_MUTEX,"OWNER: (CMD=0x%8.8x) (MID=%u) (STA=0x%8.8x)\n",cmd,mid,sta); return mutex_owner(sta); } static inline Huint _mutex_count( Huint mid ) { Huint cmd; Huint sta; cmd = mutex_cmd( HT_MUTEX_COUNT, 0, mid ); sta = read_reg( cmd ); TRACE_PRINTF(TRACE_FINE,TRACE_MUTEX,"COUNT: (CMD=0x%8.8x) (MID=%u) (STA=0x%8.8x)\n",cmd,mid,sta); return mutex_count(sta); } static inline Huint _mutex_kind( Huint mid ) { Huint cmd; Huint sta; cmd = mutex_cmd( HT_MUTEX_KIND, 0, mid ); sta = read_reg( cmd ); TRACE_PRINTF(TRACE_FINE,TRACE_MUTEX,"KIND: (CMD=0x%8.8x) (MID=%u) (STA=0x%8.8x)\n",cmd,mid,sta); return mutex_kind(sta); } static inline void _mutex_setkind( Huint mid, Huint kind ) { Huint cmd; cmd = mutex_cmd( HT_MUTEX_KIND, 0, mid ); write_reg( cmd, kind ); TRACE_PRINTF(TRACE_FINE,TRACE_MUTEX,"SETKIND: (CMD=0x%8.8x) (MID=%u)\n",cmd,mid); } #endif
33.110236
116
0.669917
93961e2d7f881fd1487530d5e2c9158634f872c0
3,124
c
C
src/native/partner/gpxcore.c
tstih/libgpx
97d3e038f2b541c1ea6915980bb1d3567302d69c
[ "MIT" ]
1
2022-01-28T17:14:14.000Z
2022-01-28T17:14:14.000Z
src/native/partner/gpxcore.c
tstih/libgpx
97d3e038f2b541c1ea6915980bb1d3567302d69c
[ "MIT" ]
null
null
null
src/native/partner/gpxcore.c
tstih/libgpx
97d3e038f2b541c1ea6915980bb1d3567302d69c
[ "MIT" ]
null
null
null
/* * gpxcore.c * * Graphics init and exit functions for Iskra Delta Partner. * * MIT License (see: LICENSE) * copyright (c) 2021 tomaz stih * * 03.08.2021 tstih * */ #include <std.h> #include <gpxcore.h> #include <cap.h> #include <rect.h> #include "partner/ef9367.h" /* there can be only one gpx! */ static gpx_t _g; static bool _ginitialized = false; /* partner page resolutions */ static uint8_t _current_resolutions[2]; gpx_t* gpx_init() { /* not the first time? */ if (_ginitialized) return &_g; /* initialize it */ _ginitialized=true; /* default colors are black on white*/ _g.back_color = 1; /* pen */ _g.fore_color = 0; /* eraser */ /* blit mode */ _g.blit = BLT_COPY; _g.line_style = LS_SOLID; _g.fill_brush_size = 1; /* 1 byte */ _g.fill_brush[0]=0xff; /* solid brush */ /* display and write page is 0 */ _g.display_page = 0; _g.write_page = 0; /* resolutions for both pages to 1024x512 */ _current_resolutions[0]=0; _current_resolutions[1]=0; _g.resolutions=_current_resolutions; /* finally, clipping rect. */ _g.clip_area.x0=_g.clip_area.y0=0; _g.clip_area.x1=EF9367_HIRES_WIDTH-1; _g.clip_area.y1=EF9367_HIRES_HEIGHT-1; /* now that we prepared everything ... configure the hardware to match our settings */ _ef9367_init(); /* Initial cls. */ _ef9367_cls(); /* and return it */ return &_g; } void gpx_exit(gpx_t* g) { g; /* nothing, for now */ } void gpx_cls(gpx_t *g) { g; _ef9367_cls(); } void gpx_set_blit(gpx_t *g, uint8_t blit) { g; blit; __asm push ix ; store index ld ix, #4 ; index to 0 add ix, sp ; ix = sp ld l, (ix) ; g to hl ld h, 1(ix) ld b, 2(ix) ; blit mode into b ld (hl), b ; update gpx_t call __ef9367_set_blit_mode ; set blit mode! pop ix ; restore ix __endasm; } void gpx_set_clip_area(gpx_t *g, rect_t *clip_area) { /* If null, use current resolution. */ if (clip_area==NULL) { gpx_resolution_t res; gpx_get_disp_page_resolution(g,&res); g->clip_area.x0=0; g->clip_area.y0=0; g->clip_area.x1=res.width - 1; g->clip_area.y1=res.height - 1; } else /* Copy rectangle.*/ _memcpy(&(g->clip_area),clip_area,sizeof(rect_t)); /* Normalize rect. coordinates (left,top,right,bottom) */ gpx_rect_norm(&(g->clip_area)); } void gpx_set_page(gpx_t *g, uint8_t page, uint8_t pgop) { g; page; pgop; /* uint8_t grcc=0; if ( ((g->display_page)!=page) && ((pgop & PG_DISPLAY)!=0)) {} if ((pgop & PG_WRITE) && (g->write_page!=page)) {} */ /* write grcc back */ } uint8_t gpx_get_page(gpx_t *g, uint8_t pgop) { g; pgop; /* always the same page on speccy */ return 0; }
23.488722
66
0.548335
1a8f8e18d8f86ad66e786cfc9924b0a8b36af144
608
h
C
JMExpandableTableView/JMExpandableTableView/Core/DefaultTableViewSectionView.h
Chanryma/JMExpandableTableView
246c1aa92b166f4769b667e7111adbdb8aedf783
[ "MIT" ]
null
null
null
JMExpandableTableView/JMExpandableTableView/Core/DefaultTableViewSectionView.h
Chanryma/JMExpandableTableView
246c1aa92b166f4769b667e7111adbdb8aedf783
[ "MIT" ]
null
null
null
JMExpandableTableView/JMExpandableTableView/Core/DefaultTableViewSectionView.h
Chanryma/JMExpandableTableView
246c1aa92b166f4769b667e7111adbdb8aedf783
[ "MIT" ]
null
null
null
// // ExpandableTableViewSectionView.h // JMExpandableTableView // // Created by jonathan ma on 3/11/2016. // Copyright © 2016 jonathan ma. All rights reserved. // #import "SectionViewDelegate.h" /** Default section view implementation. You can */ @interface DefaultTableViewSectionView : UIView <SectionViewDelegate> @property (nonatomic, strong) UITableView *tableView; @property (nonatomic, strong) NSString *title; @property (nonatomic, assign) BOOL expandByDefault; @property (nonatomic, strong) UIImage *expandImage; @property (nonatomic, strong) UIImage *collapseImage; -(void)setup; @end
24.32
69
0.759868
1a929e5bd51512b19c481dbea49b1ad443258412
984
c
C
challenge/challenge_control_flow/triangle_goto.c
liangcorp/learning_c
5d77d0beec5557d7f077fc0760e6c8513d820403
[ "MIT" ]
null
null
null
challenge/challenge_control_flow/triangle_goto.c
liangcorp/learning_c
5d77d0beec5557d7f077fc0760e6c8513d820403
[ "MIT" ]
null
null
null
challenge/challenge_control_flow/triangle_goto.c
liangcorp/learning_c
5d77d0beec5557d7f077fc0760e6c8513d820403
[ "MIT" ]
null
null
null
/* Description: use goto to print the following * * * * * * * ********* */ #include <stdio.h> int main(void) { int i = 0; tracking: if (i == 0) { i++; goto print_star1; } else if (i == 1) { i++; goto print_star2; } else if (i == 2) { i++; goto print_star3; } else if (i == 3) { i++; goto print_star4; } else { goto print_star5; } print_star1: printf(" * \n"); goto tracking; print_star2: printf(" * * \n"); goto tracking; print_star3: printf(" * * \n"); goto tracking; print_star4: printf(" * * \n"); goto tracking; print_star5: printf("*********\n"); return 0; }
15.619048
48
0.335366
1a957eacf4a93b4139b077ec71bb7a9ba68f7b17
5,869
h
C
tic/include/tencentcloud/tic/v20201117/model/DescribeStackEventResponse.h
sinjoywong/tencentcloud-sdk-cpp
1b931d20956a90b15a6720f924e5c69f8786f9f4
[ "Apache-2.0" ]
null
null
null
tic/include/tencentcloud/tic/v20201117/model/DescribeStackEventResponse.h
sinjoywong/tencentcloud-sdk-cpp
1b931d20956a90b15a6720f924e5c69f8786f9f4
[ "Apache-2.0" ]
null
null
null
tic/include/tencentcloud/tic/v20201117/model/DescribeStackEventResponse.h
sinjoywong/tencentcloud-sdk-cpp
1b931d20956a90b15a6720f924e5c69f8786f9f4
[ "Apache-2.0" ]
null
null
null
/* * 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 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifndef TENCENTCLOUD_TIC_V20201117_MODEL_DESCRIBESTACKEVENTRESPONSE_H_ #define TENCENTCLOUD_TIC_V20201117_MODEL_DESCRIBESTACKEVENTRESPONSE_H_ #include <string> #include <vector> #include <map> #include <tencentcloud/core/AbstractModel.h> namespace TencentCloud { namespace Tic { namespace V20201117 { namespace Model { /** * DescribeStackEvent返回参数结构体 */ class DescribeStackEventResponse : public AbstractModel { public: DescribeStackEventResponse(); ~DescribeStackEventResponse() = default; CoreInternalOutcome Deserialize(const std::string &payload); /** * 获取事件ID * @return EventId 事件ID */ std::string GetEventId() const; /** * 判断参数 EventId 是否已赋值 * @return EventId 是否已赋值 */ bool EventIdHasBeenSet() const; /** * 获取版本ID * @return VersionId 版本ID */ std::string GetVersionId() const; /** * 判断参数 VersionId 是否已赋值 * @return VersionId 是否已赋值 */ bool VersionIdHasBeenSet() const; /** * 获取资源栈ID * @return StackId 资源栈ID */ std::string GetStackId() const; /** * 判断参数 StackId 是否已赋值 * @return StackId 是否已赋值 */ bool StackIdHasBeenSet() const; /** * 获取事件类型 * @return Type 事件类型 */ std::string GetType() const; /** * 判断参数 Type 是否已赋值 * @return Type 是否已赋值 */ bool TypeHasBeenSet() const; /** * 获取事件状态 * @return Status 事件状态 */ std::string GetStatus() const; /** * 判断参数 Status 是否已赋值 * @return Status 是否已赋值 */ bool StatusHasBeenSet() const; /** * 获取状态信息 * @return EventMessage 状态信息 */ std::string GetEventMessage() const; /** * 判断参数 EventMessage 是否已赋值 * @return EventMessage 是否已赋值 */ bool EventMessageHasBeenSet() const; /** * 获取创建时间 * @return CreateTime 创建时间 */ std::string GetCreateTime() const; /** * 判断参数 CreateTime 是否已赋值 * @return CreateTime 是否已赋值 */ bool CreateTimeHasBeenSet() const; /** * 获取控制台输出文本 * @return ConsoleLog 控制台输出文本 */ std::string GetConsoleLog() const; /** * 判断参数 ConsoleLog 是否已赋值 * @return ConsoleLog 是否已赋值 */ bool ConsoleLogHasBeenSet() const; private: /** * 事件ID */ std::string m_eventId; bool m_eventIdHasBeenSet; /** * 版本ID */ std::string m_versionId; bool m_versionIdHasBeenSet; /** * 资源栈ID */ std::string m_stackId; bool m_stackIdHasBeenSet; /** * 事件类型 */ std::string m_type; bool m_typeHasBeenSet; /** * 事件状态 */ std::string m_status; bool m_statusHasBeenSet; /** * 状态信息 */ std::string m_eventMessage; bool m_eventMessageHasBeenSet; /** * 创建时间 */ std::string m_createTime; bool m_createTimeHasBeenSet; /** * 控制台输出文本 */ std::string m_consoleLog; bool m_consoleLogHasBeenSet; }; } } } } #endif // !TENCENTCLOUD_TIC_V20201117_MODEL_DESCRIBESTACKEVENTRESPONSE_H_
29.641414
83
0.393423
1a96e2b8996be708200174636149d178b725e07a
1,299
h
C
services/video_capture/mojo_shared_memory_buffer_tracker.h
xzhan96/chromium.src
1bd0cf3997f947746c0fc5406a2466e7b5f6159e
[ "BSD-3-Clause-No-Nuclear-License-2014", "BSD-3-Clause" ]
3
2018-02-22T18:06:56.000Z
2021-08-28T12:49:27.000Z
services/video_capture/mojo_shared_memory_buffer_tracker.h
emilio/chromium.src
1bd0cf3997f947746c0fc5406a2466e7b5f6159e
[ "BSD-3-Clause-No-Nuclear-License-2014", "BSD-3-Clause" ]
null
null
null
services/video_capture/mojo_shared_memory_buffer_tracker.h
emilio/chromium.src
1bd0cf3997f947746c0fc5406a2466e7b5f6159e
[ "BSD-3-Clause-No-Nuclear-License-2014", "BSD-3-Clause" ]
2
2017-08-16T08:15:01.000Z
2018-03-27T00:07:30.000Z
// Copyright 2016 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 SERVICES_VIDEO_CAPTURE_MOJO_SHARED_MEMORY_BUFFER_TRACKER_H_ #define SERVICES_VIDEO_CAPTURE_MOJO_SHARED_MEMORY_BUFFER_TRACKER_H_ #include "media/capture/video/video_capture_buffer_tracker.h" #include "media/mojo/common/mojo_shared_buffer_video_frame.h" namespace video_capture { // Tracker specifics for MojoSharedMemory. class MojoSharedMemoryBufferTracker final : public media::VideoCaptureBufferTracker { public: MojoSharedMemoryBufferTracker(); ~MojoSharedMemoryBufferTracker() override; // Implementation of media::VideoCaptureBufferTracker bool Init(const gfx::Size& dimensions, media::VideoPixelFormat format, media::VideoPixelStorage storage_type, base::Lock* lock) override; std::unique_ptr<media::VideoCaptureBufferHandle> GetBufferHandle() override; mojo::ScopedSharedBufferHandle GetHandleForTransit() override; private: friend class MojoSharedMemoryBufferHandle; scoped_refptr<media::MojoSharedBufferVideoFrame> frame_; size_t mapped_size_; }; } // namespace video_capture #endif // SERVICES_VIDEO_CAPTURE_MOJO_SHARED_MEMORY_BUFFER_TRACKER_H_
34.184211
78
0.802156
1a97d4c27191888b8d327ce6d68e53a5c5d44305
1,328
c
C
fourth_semester/Sysopy/Zadanie5/zad2/src/slave.c
MajronMan/agh_stuff
d045e3bd47ac17880526203d9993d9b2389a9ffe
[ "Unlicense" ]
2
2019-03-02T19:31:57.000Z
2019-04-03T19:54:39.000Z
fourth_semester/Sysopy/Zadanie5/zad2/src/slave.c
MajronMan/agh_stuff
d045e3bd47ac17880526203d9993d9b2389a9ffe
[ "Unlicense" ]
null
null
null
fourth_semester/Sysopy/Zadanie5/zad2/src/slave.c
MajronMan/agh_stuff
d045e3bd47ac17880526203d9993d9b2389a9ffe
[ "Unlicense" ]
1
2019-04-03T18:26:50.000Z
2019-04-03T18:26:50.000Z
#include "../include/slave.h" int main(int argc, char **argv){ if(argc != 4){ printf("Wrong number of arguments, required 3\n"); exit(-1); } srand((unsigned int) (time(NULL) ^ (getpid() << 16))); char *path = argv[1]; int N = atoi(argv[2]), K = atoi(argv[3]); CHECK_ZERO("main", access(path, F_OK) != -1 || mkfifo(path, 0666) == 0, "Cannot acces nor create fifo") FILE *file = fopen(path, "w"); CHECK_NULL("main", file, "Cannot open file") printf("Hi, this is slave %d and I'm gonna generate %d points at %d iterations\n", getpid(), N, K); generate_points(N, K, file); printf("%d finished generating\n", getpid()); fclose(file); } int get_iters(complex c, int K) { complex prev = zero(); for(int i=1; i<K; i++){ if(mod(prev) > 2){ return i; } prev = add(square(prev), c); } return K; } void generate_points(int N, int K, FILE *file) { for(int i=0; i<N; i++){ double re = rand() / (double) RAND_MAX * (RE_MAX - RE_MIN) + RE_MIN; double im = rand() / (double) RAND_MAX * (IM_MAX - IM_MIN) + IM_MIN; complex point = {re, im}; int iters = get_iters(point, K); fprintf(file, "% 10.8lf % 10.8lf %7.d\n", re, im, iters); //32 bytes } }
30.181818
103
0.536898
1a986ab0d7b051f381f7ee0020f2c68d99ebb647
2,341
h
C
NotUsed/AutoResetCondition.h
dwhobrey/MindCausalModellingLibrary
797d716e785d2dcd5c373ab385c20d3a74bbfcb0
[ "BSD-3-Clause" ]
null
null
null
NotUsed/AutoResetCondition.h
dwhobrey/MindCausalModellingLibrary
797d716e785d2dcd5c373ab385c20d3a74bbfcb0
[ "BSD-3-Clause" ]
null
null
null
NotUsed/AutoResetCondition.h
dwhobrey/MindCausalModellingLibrary
797d716e785d2dcd5c373ab385c20d3a74bbfcb0
[ "BSD-3-Clause" ]
null
null
null
#pragma once namespace Plato::Standard { /// <summary> /// Portable Condition Variable implementation. /// </summary> public class AutoResetCondition { public: /// <summary> /// Creates a new condition variable. /// </summary> AutoResetCondition(); /// <summary> /// Checks variable is released before deallocating. /// </summary> ~AutoResetCondition(); /// <summary> /// Waits for the variable to be signaled. /// </summary> /// <param name="millisecondsTimeout">The time to wait in milliseconds before returning. /// A value of -1 means wait indefinitely.</param> /// <returns>Returns true if a signal was received.</returns> bool WaitOne(int millisecondsTimeout=(-1)); /// <summary> /// Sets the state of the event to nonsignaled, causing threads to block. /// </summary> /// <returns>Returns true if the operation succeeded.</returns> bool Reset(); /// <summary> /// Sets the state of the event to signaled, allowing one or more waiting threads to proceed. /// </summary> /// <returns>Returns true if the operation succeeded.</returns> bool Set(); /// <summary> /// Atomically signals and waits. /// </summary> /// <remarks> /// Calls Set() on the signal condition, then calls WaitOne() on the wait condition. /// </remarks> /// <returns>Returns true if both the signal and the wait complete successfully; /// if the wait does not complete, the method does not return.</returns> static bool SignalAndWait(AutoResetCondition& signalCondition,AutoResetCondition& waitCondition); private: /// <summary> /// Set to true when the event handle is valid. /// </summary> bool mIsOk; #ifdef WIN32 /// <summary> /// A win32 handle for the event object. /// </summary> HANDLE mEventHandle; #else // POSIX /// <summary> /// A POSIX condition object. /// </summary> pthread_cond_t mCondition; /// <summary> /// The mutex object associated with the condition variable. /// </summary> pthread_mutex_t mMutex; #endif }; }
36.015385
105
0.580948
1a9b73c2e940aebae87b43326cd7f387eda91c15
75
h
C
src/help.h
reoky/chainsaw
39d6e9e89ff46250f0325f9cf5e0289273c62435
[ "MIT" ]
null
null
null
src/help.h
reoky/chainsaw
39d6e9e89ff46250f0325f9cf5e0289273c62435
[ "MIT" ]
null
null
null
src/help.h
reoky/chainsaw
39d6e9e89ff46250f0325f9cf5e0289273c62435
[ "MIT" ]
null
null
null
#pragma once #include <iostream> void print_banner(); void print_usage();
12.5
20
0.746667
1a9b9f4d4aeb219bff4bae637f39d185c8501bd9
552
c
C
executor/operator/ref/kernel/broadmul/ref_broadmul_fp32.c
wangshankun/Tengine_Atlas
b5485039e72b4a624c795ff95d73eb6d719c7706
[ "Apache-2.0" ]
25
2018-12-09T09:31:56.000Z
2021-08-12T10:32:19.000Z
executor/operator/ref/kernel/broadmul/ref_broadmul_fp32.c
wangshankun/Tengine_Atlas
b5485039e72b4a624c795ff95d73eb6d719c7706
[ "Apache-2.0" ]
1
2022-03-31T03:33:42.000Z
2022-03-31T03:33:42.000Z
executor/operator/ref/kernel/broadmul/ref_broadmul_fp32.c
wangshankun/Tengine_Atlas
b5485039e72b4a624c795ff95d73eb6d719c7706
[ "Apache-2.0" ]
6
2018-12-16T01:18:42.000Z
2019-09-18T07:29:56.000Z
static int ref_broadmul_fp32(float* in0,float *in1,float* out, const ref_broadmul_param* param) { int out_size = param->out_size; int in_size = param->in_size; int on_size = param->on_size; for(int o = 0; o < out_size; o++) { for(int j = 0; j < on_size;j++) { float data1 = in1[j]; for(int i = 0; i < in_size; i++) { int index = (o * on_size + j) * in_size + i; out[index] = in0[index]*data1; } } } return 0; }
25.090909
95
0.480072
1a9be2fdebf1d1502df56de38cb2d7888206ef47
6,145
c
C
EXP6/code1.c
PrakharJ22/Data-Structures-UPES
0d68c4339a689350befdaa59cf72da7e0f881562
[ "MIT" ]
null
null
null
EXP6/code1.c
PrakharJ22/Data-Structures-UPES
0d68c4339a689350befdaa59cf72da7e0f881562
[ "MIT" ]
null
null
null
EXP6/code1.c
PrakharJ22/Data-Structures-UPES
0d68c4339a689350befdaa59cf72da7e0f881562
[ "MIT" ]
null
null
null
/*1. Implement Doubly Linked List and its operations. */ #include<stdio.h> #include<stdlib.h> //for malloc() and free() struct node { int number; struct node *prev; struct node *next; }; struct node *head=0,*tail=0; //to create a doubly linked list void create() { struct node *ptr; char ch; l1: ptr=(struct node *)malloc(sizeof(struct node)); printf("\nEnter the data : "); scanf("%d",&ptr->number); ptr->next=NULL; ptr->prev=NULL; if(head==NULL) { head=ptr; tail=ptr; } else { tail->next=ptr; ptr->prev=tail; tail=ptr; } printf("\nDo you want to add more elements in the list? (y/n) : "); while(getchar()!='\n'); scanf("%c",&ch); if(ch=='y' || ch=='Y') goto l1; } //to insert at beginning void insert_beg() { struct node *new; new=(struct node *)malloc(sizeof(struct node)); printf("\nEnter the data to be inserted at the beginning : "); scanf("%d",&new->number); new->next=0; new->prev=0; if(head==0) { head=new; tail=new; } else { head->prev=new; new->next=head; head=new; } } //to insert at the end void insert_end() { struct node *new; new=(struct node *)malloc(sizeof(struct node)); printf("\nEnter the element to be inserted at the end : "); scanf("%d",&new->number); new->prev=0; new->next=0; if(head==0) { head=new; tail=new; } else { new->prev=tail; tail->next=new; tail=new; } } //to insert at the random position void insert_pos() { struct node *new,*ptr,*temp; int pos,i=1; printf("\nEnter the position where you have to insert : "); scanf("%d",&pos); if(pos==1) { insert_beg(); } else { ptr=head; while(i<pos-1) { ptr=ptr->next; i++; } if(ptr->next==0) { insert_end(); } else { new=(struct node *)malloc(sizeof(struct node)); printf("\nEnter the data : "); scanf("%d",&new->number); temp=ptr->next; ptr->next->prev=new; new->prev=ptr; ptr->next=new; new->next=temp; } } } //to delete the first element of the doubly linked list void delete_beg() { if(head==0) { printf("\nDoubly Linked List is empty...!"); } else { struct node *temp; temp=head; head->next->prev=0; head=head->next; free(temp); } } //to delete the last node of doubly linked list void delete_end() { if(head==0) { printf("\nDoubly Linked List is empty....!"); } else { struct node *temp; temp=tail; tail->prev->next=NULL; tail=tail->prev; free(temp); } } //to delete the node at any position void delete_pos() { struct node *ptr,*temp,*temp2; int pos,i=1; printf("\nEnter the position where you have to delete : "); scanf("%d",&pos); if(pos==1) { delete_beg(); } else { ptr=head; while(i<pos-1) { ptr=ptr->next; i++; } if(ptr->next==0) { delete_end(); } else { temp=ptr->next; temp2=ptr->next->prev; ptr->next=ptr->next->next; ptr->next->prev=temp2; free(temp); } } } //to display the doubly linked list void display() { if(head==0) { printf("\nThe Doubly Linked List is EMPTY....!"); } else { struct node *ptr; printf("\nElements of the Doubly Linked List : \n"); for(ptr=head;ptr!=0;ptr= ptr->next) printf("\t%d\n",ptr->number); } } //to free the doubly linked list void free_linked_list() { while (head) { struct node* temp = head; head = head->next; free(temp); } } //main() function int main() { int n; char var; l2: printf("\nFollowing functions can be performed : "); printf("\n1. Create a doubly linked lists"); printf("\n2. Insertion at the beginning"); printf("\n3. Insertion at the end"); printf("\n4. Insertion at a given position"); printf("\n5. Deletion at the beginning"); printf("\n6. Deletion at the end"); printf("\n7. Deletion at the given position"); printf("\n8. Display the doubly linked lists from head"); printf("\nEnter your choice (1-8): "); scanf("%d",&n); switch(n) { case 1 : create(); printf("\nDoubly Linked list is created...!"); break; case 2 : insert_beg(); printf("\nElement inserted at the beginning successfully....!"); break; case 3 : insert_end(); printf("\nElement inserted at the end....!"); break; case 4 : insert_pos(); printf("\nElement is inserted at desired position...!"); break; case 5 : delete_beg(); printf("\nBeginning element is at deleted.....!"); break; case 6 : delete_end(); printf("\nLast element is deleted....!"); break; case 7 : delete_pos(); printf("\nElement is deleted.....!"); break; case 8 : display(); break; default : printf("\nINVALID INPUT.....!"); } printf("\nDo you want to perform more operations? (y/n) : "); while(getchar()!='\n'); scanf("%c",&var); if(var=='y' || var=='Y') goto l2; free_linked_list(); return 0; }
22.104317
82
0.468999
1a9c3a904581c92644dfb63f8e8c8313c077bb5c
292
c
C
tests/print.c
Koxiaet/tiny-regex-c
4383013bb92aa972e803530228e624e5d41bd414
[ "Unlicense" ]
1
2020-09-23T17:17:40.000Z
2020-09-23T17:17:40.000Z
tests/print.c
Koxiaet/tiny-regex-c
4383013bb92aa972e803530228e624e5d41bd414
[ "Unlicense" ]
null
null
null
tests/print.c
Koxiaet/tiny-regex-c
4383013bb92aa972e803530228e624e5d41bd414
[ "Unlicense" ]
null
null
null
/* * This program prints out a regular expression. */ #include <stdio.h> #include "re.h" int main(int argc, char* argv[]) { if (argc != 2) { printf("\nUsage: %s <PATTERN> \n", argv[0]); return -1; } Regex pattern; re_compile(&pattern, argv[1]); re_print(pattern); return 0; }
13.904762
48
0.613014
1a9c602b49f33df569c8d78b7def22cb0f2624a3
417
h
C
tools/loader/run.h
av-7/TrainOS
051dcd27fd0a5f77a7e86cfc556a82ae396e49a5
[ "MIT" ]
null
null
null
tools/loader/run.h
av-7/TrainOS
051dcd27fd0a5f77a7e86cfc556a82ae396e49a5
[ "MIT" ]
null
null
null
tools/loader/run.h
av-7/TrainOS
051dcd27fd0a5f77a7e86cfc556a82ae396e49a5
[ "MIT" ]
null
null
null
/* * run.h *--------------------------------------------------------- * Header file for run.c AP 2/91 */ #ifndef __RUN_H__ #define __RUN_H__ #define BYTE 0xff #define GNU_MAGIC_NUMBER 0x00640107 #define TEXT_SEGMENT_BASE 0x00000000 #define GDT_BASE 50000 #define SIZE_OF_GDT_ENTRY 8 #define ATTR_DATA 0x02 #define ATTR_CODE 0x0a void run_executable( void ); #endif
16.038462
59
0.582734
1a9e5aa2f628510a8eceb9ece4dce290b926ffd3
2,448
h
C
src/knMotorSvcs/WheelGroupJointProvider.h
hhutz/kn_wheel_group
18ed3220bd46282ec9cbe38e8a573e6f2de49f05
[ "NASA-1.3" ]
null
null
null
src/knMotorSvcs/WheelGroupJointProvider.h
hhutz/kn_wheel_group
18ed3220bd46282ec9cbe38e8a573e6f2de49f05
[ "NASA-1.3" ]
null
null
null
src/knMotorSvcs/WheelGroupJointProvider.h
hhutz/kn_wheel_group
18ed3220bd46282ec9cbe38e8a573e6f2de49f05
[ "NASA-1.3" ]
null
null
null
/* -*- C++ -*- ***************************************************************** * Copyright (c) 2013 United States Government as represented by the * Administrator of the National Aeronautics and Space Administration. * All rights reserved. * * Licensed under the NASA Open Source Agreement, Version 1.3 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * https://opensource.org/licenses/NASA-1.3 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ***************************************************************************** * * Project: RoverSw * Module: knMotorSvcs * Author: Hans Utz * *****************************************************************************/ #ifndef kn_WheelGroupJointProvider_h #define kn_WheelGroupJointProvider_h #include "knMotorSvcs_Export.h" #include "rapidIo/JointProvider.h" #include "knDds/DdsTypedSupplier.h" #include <boost/signals2.hpp> #include <boost/shared_ptr.hpp> namespace rapid { namespace ext { namespace arc { class WheelGroupSample; } } } namespace kn { class WheelGroupJointProviderParameters; class WheelGroupSample; class WheelGroupImpl; class knMotorSvcs_Export WheelGroupJointProvider : public rapid::JointProvider { typedef kn::DdsTypedSupplier<rapid::ext::arc::WheelGroupSample> WheelGroupSampleSupplier; typedef boost::scoped_ptr<WheelGroupSampleSupplier> WheelGroupSupplierPtr; public: WheelGroupJointProvider(WheelGroupJointProviderParameters const& params, std::string const& entityName, WheelGroupImpl * wheelGroup); virtual ~WheelGroupJointProvider() throw(); // direct callback from Wheelgroup void publishData(WheelGroupSample const& sample); void publishWheelGroupSample(WheelGroupSample const& sample); protected: WheelGroupImpl * m_wheelGroup; WheelGroupSupplierPtr m_wheelGroupSupplier; boost::signals2::scoped_connection m_sampleUpdateConnection; boost::signals2::scoped_connection m_wheelGroupSampleConnection; }; } #endif // kn_WheelGroupJointProvider_h
31.384615
93
0.678513
1a9f1257c189082dbd042e2a057c6fb1552d3a76
3,329
h
C
include/FileSystem.h
felixjones/SDL-GL
f12f0620c920a5b65db268f5ada8ccc64520101e
[ "MIT" ]
3
2020-01-06T16:54:23.000Z
2020-08-14T07:38:09.000Z
include/FileSystem.h
felixjones/SDL-GL
f12f0620c920a5b65db268f5ada8ccc64520101e
[ "MIT" ]
null
null
null
include/FileSystem.h
felixjones/SDL-GL
f12f0620c920a5b65db268f5ada8ccc64520101e
[ "MIT" ]
null
null
null
#ifndef __FILE_SYSTEM_H__ #define __FILE_SYSTEM_H__ #include <stdint.h> #include "ReadFile.h" #include "WriteFile.h" #include "FileList.h" #define DIRECTORY_LEN ( 240 ) class xiFileArchive; class xiArchiveLoader; class xiFileSystem { public: enum deleteType_e { DELETE_WHEN_DROPPED, DELETE_NEVER }; enum extensionHandler_e { EXTENSION_REMOVE, EXTENSION_KEEP }; static xiFileSystem * Get(); void Retain(); void Release(); xiReadFile * CreateAndOpenFile( const char * const fileName ); xiReadFile * CreateMemoryReadFile( void * const memory, const size_t len, const char * const fileName, const deleteType_e deleteType = DELETE_NEVER ); xiReadFile * CreateLimitReadFile( const char * const fileName, xiReadFile * const alreadyOpenedFile, const size_t pos, const size_t areaSize ); xiWriteFile * CreateMemoryWriteFile( void * const memory, const size_t len, const char * const fileName, const deleteType_e deleteType = DELETE_NEVER ); xiWriteFile * CreateAndWriteFile( const char * const fileName, const xiWriteFile::writeMode_e writeMode = xiWriteFile::WRITE_OVER ); bool AddArchiveFile( const char * const fileName, const xiFileList::ignoreParam_e ignoreMask = xiFileList::IGNORE_NONE, xiFileArchive ** const outArchive = nullptr ); bool AddArchiveReadFile( xiReadFile * const readFile, const xiFileList::ignoreParam_e ignoreMask = xiFileList::IGNORE_NONE, xiFileArchive ** const outArchive = nullptr ); bool AddArchive( xiFileArchive * const archive ); bool MoveArchive( const size_t sourceIndex, const int32_t relative ); void AddArchiveLoader( xiArchiveLoader * const loader ); size_t GetArchiveLoaderCount() const; xiArchiveLoader * GetArchiveLoader( const size_t index ) const; size_t GetArchiveCount() const; xiFileArchive * GetArchive( const size_t index ) const; bool RemoveArchiveAtIndex( const size_t index ); bool RemoveArchiveFile( const char * const fileName ); bool RemoveArchive( const xiFileArchive * const archive ); const char * GetWorkingDirectory(); bool ChangeWorkingDirectoryTo( const char * const newDirectory ); void GetAbsolutePath( char * const dest, const char * const source ) const; void GetFileDirectory( char * const dest, const char * const fileName ) const; void GetFileBasename( char * const dest, const char * const fileName, const extensionHandler_e extHandler = EXTENSION_KEEP ) const; void GetFlatFilename( char * const dest, const char * const directory, const char * const root = "/" ) const; xiFileList * CreateFileList(); xiFileList * CreateEmptyFileList( const char * const path, const xiFileList::ignoreParam_e ignoreMask ); bool DoesFileExist( const char * const fileName ) const; protected: xiFileSystem(); virtual ~xiFileSystem(); private: void ArchiveLoader_PushBack( xiArchiveLoader * const loader ); void FileArchives_PushBack( xiFileArchive * const archive ); void FileArchives_EraseAtIndex( const size_t index ); char workingDirectory[DIRECTORY_LEN]; struct archiveLoader_s { xiArchiveLoader ** archiveLoaders; size_t archiveLoadersLen; } archiveLoader; struct archive_s { xiFileArchive ** archives; size_t archivesLen; } fileArchives; static xiFileSystem * singleton; static int32_t references; }; #endif
42.139241
175
0.755783
1a9ffef0d181f34386089b69da3e170b74f46ad6
4,186
h
C
tools/rndf_visualizer/include/rndf_visualizer/euclidean_distance.h
ekumenlabs/terminus
ce6dcdc797011155e8fd52d40d910bdaf9bfe397
[ "Apache-2.0" ]
52
2016-10-12T17:54:10.000Z
2021-09-29T04:06:24.000Z
tools/rndf_visualizer/include/rndf_visualizer/euclidean_distance.h
ekumenlabs/terminus
ce6dcdc797011155e8fd52d40d910bdaf9bfe397
[ "Apache-2.0" ]
216
2016-09-14T18:51:36.000Z
2019-01-31T05:57:57.000Z
tools/rndf_visualizer/include/rndf_visualizer/euclidean_distance.h
ekumenlabs/terminus
ce6dcdc797011155e8fd52d40d910bdaf9bfe397
[ "Apache-2.0" ]
28
2016-09-21T17:55:23.000Z
2021-09-29T04:06:25.000Z
/* -*- mode: C++ -*- */ /* * Description: Euclidean distance functions * * Copyright (C) 2009 Austin Robot Technology * * License: Modified BSD Software License Agreement * * $Id: b012b1857a1a9df1341949683413d626a9b90b28 $ */ #ifndef _EUCLIDEAN_DISTANCE_H_ #define _EUCLIDEAN_DISTANCE_H_ /** @file @brief ART Euclidean distance functions. */ #include <epsilon.h> #include <infinity.h> #include <rndf_visualizer/types.h> namespace Euclidean { /** find the distance from the point (cx,cy) to the line determined * by the points (ax,ay) and (bx,by) */ void inline DistanceFromLine(float cx, float cy, float ax, float ay , float bx, float by, float &distanceSegment, float &distanceLine) { // find the distance from the point (cx,cy) to the line // determined by the points (ax,ay) and (bx,by) // // distanceSegment = distance from the point to the line segment // distanceLine = distance from the point to the line // (assuming infinite extent in both directions) // // copied from http://www.codeguru.com/forum/printthread.php?t=194400 float r_numerator = (cx-ax)*(bx-ax) + (cy-ay)*(by-ay); float r_denomenator = (bx-ax)*(bx-ax) + (by-ay)*(by-ay); float r = r_numerator / r_denomenator; float s = ((ay-cy)*(bx-ax)-(ax-cx)*(by-ay) ) / r_denomenator; distanceLine = fabs(s)*sqrtf(r_denomenator); if ( (r >= 0) && (r <= 1) ) { distanceSegment = distanceLine; } else { float dist1 = (cx-ax)*(cx-ax) + (cy-ay)*(cy-ay); float dist2 = (cx-bx)*(cx-bx) + (cy-by)*(cy-by); if (dist1 < dist2) { distanceSegment = sqrtf(dist1); } else { distanceSegment = sqrtf(dist2); } } } void inline DistanceFromLine(const MapXY& c, const MapXY& a, const MapXY& b, float &distanceSegment, float &distanceLine) { return DistanceFromLine(c.x,c.y,a.x,a.y,b.x,b.y,distanceSegment, distanceLine); } /** find the Euclidean distance between poses p1 and p2 */ float inline DistanceTo(MapPose p1, MapPose p2) { float x_dist = p1.map.x - p2.map.x; float y_dist = p1.map.y - p2.map.y; return sqrtf(x_dist*x_dist + y_dist*y_dist); } /** find the Euclidean distance between poses p1 and p2 */ float inline DistanceTo(float p1x, float p1y, float p2x, float p2y) { float x_dist = p1x - p2x; float y_dist = p1y - p2y; return sqrtf(x_dist*x_dist + y_dist*y_dist); } /** find the Euclidean distance between MapXY coordinates p1 and p2 */ float inline DistanceTo(MapXY p1, MapXY p2) { MapXY dist = p1 - p2; return sqrtf(dist.x*dist.x + dist.y*dist.y); } /** return how many seconds it takes to move a distance at a given * speed. */ float inline DistanceToTime(float distance, float speed) { float abs_speed = fabs(speed); if (abs_speed < Epsilon::speed) return (Infinite::time); else return (distance / abs_speed); } /** find the Euclidean distance between pose and way-point */ float inline DistanceToWaypt(const MapPose &pose, const WayPointNode &waypt) { return DistanceTo(pose.map, waypt.map); } /** find the Euclidean distance between MapXY point and way-point */ float inline DistanceToWaypt(MapXY point, const WayPointNode &waypt) { return DistanceTo(point, waypt.map); } /** find the Euclidean distance between Polar coordinate (relative * to origin) and way-point */ float inline DistanceToWaypt(Polar polar, const MapPose &origin, const WayPointNode &waypt) { return DistanceTo(Coordinates::Polar_to_MapXY(polar, origin), waypt.map); } /** return true if point is in the line segment between lp1 and lp2 */ bool inline point_in_line_segment(MapXY point, MapXY lp1, MapXY lp2) { return (fabs(DistanceTo(lp1, point) + DistanceTo(point, lp2) - DistanceTo(lp1, lp2)) < Epsilon::distance); } } #endif // _EUCLIDEAN_DISTANCE_H_ //
27.359477
75
0.620879
1aa08f6a819b6b1531284f338a2fb2c4cc23c367
7,896
c
C
src/kcontinuation.c
AndresNavarro82/klisp
2b3a1cf774e0ab527a561e5d93dacbfdf0b545d1
[ "MIT" ]
1
2022-02-26T22:18:26.000Z
2022-02-26T22:18:26.000Z
src/kcontinuation.c
AndresNavarro82/klisp
2b3a1cf774e0ab527a561e5d93dacbfdf0b545d1
[ "MIT" ]
null
null
null
src/kcontinuation.c
AndresNavarro82/klisp
2b3a1cf774e0ab527a561e5d93dacbfdf0b545d1
[ "MIT" ]
null
null
null
/* ** kcontinuation.c ** Kernel Continuations ** See Copyright Notice in klisp.h */ #include <stdarg.h> #include "kcontinuation.h" #include "kpair.h" #include "kapplicative.h" #include "kobject.h" #include "kstate.h" #include "kmem.h" #include "kgc.h" TValue kmake_continuation(klisp_State *K, TValue parent, klisp_CFunction fn, int32_t xcount, ...) { va_list argp; Continuation *new_cont = (Continuation *) klispM_malloc(K, sizeof(Continuation) + sizeof(TValue) * xcount); /* header + gc_fields */ klispC_link(K, (GCObject *) new_cont, K_TCONTINUATION, K_FLAG_CAN_HAVE_NAME); /* continuation specific fields */ new_cont->mark = KFALSE; new_cont->parent = parent; TValue comb = K->next_obj; if (ttiscontinuation(comb)) comb = tv2cont(comb)->comb; new_cont->comb = comb; new_cont->fn = fn; new_cont->extra_size = xcount; va_start(argp, xcount); for (int i = 0; i < xcount; i++) { new_cont->extra[i] = va_arg(argp, TValue); } va_end(argp); TValue res = gc2cont(new_cont); /* Add the current source info as source info (may be changed later) */ /* TODO: find all the places where this should be changed (like $and?, $sequence), and change it */ kset_source_info(K, res, kget_csi(K)); return res; } /* ** ** Interception Handling ** */ /* Helper for continuation->applicative */ /* this passes the operand tree to the continuation */ void cont_app(klisp_State *K) { TValue *xparams = K->next_xparams; TValue ptree = K->next_value; TValue denv = K->next_env; klisp_assert(ttisenvironment(K->next_env)); UNUSED(denv); TValue cont = xparams[0]; /* guards and dynamic variables are handled in kcall_cont() */ kcall_cont(K, cont, ptree); } /* ** This is used to determine if cont is in the dynamic extent of ** some other continuation. That's the case iff that continuation ** was marked by the call to mark_iancestors(cont) */ /* TODO: maybe add some inlines here, profile first and check size difference */ /* LOCK: GIL should be acquired */ static void mark_iancestors(TValue cont) { while(!ttisnil(cont)) { kmark(cont); cont = tv2cont(cont)->parent; } } /* LOCK: GIL should be acquired */ static void unmark_iancestors(TValue cont) { while(!ttisnil(cont)) { kunmark(cont); cont = tv2cont(cont)->parent; } } /* ** Returns the first interceptor whose dynamic extent includes cont ** or nil if there isn't any. The cont is implicitly passed because ** all of its improper ancestors are marked. */ /* LOCK: GIL should be acquired */ static TValue select_interceptor(TValue guard_ls) { /* the guard list can't be cyclic, that case is replaced by a simple list while copyng guards */ while(!ttisnil(guard_ls)) { /* entry is (selector . interceptor-op) */ TValue entry = kcar(guard_ls); TValue selector = kcar(entry); if (kis_marked(selector)) return kcdr(entry); /* only interceptor is important */ guard_ls = kcdr(guard_ls); } return KNIL; } /* ** Returns a list of entries like the following: ** (interceptor-op outer_cont . denv) */ /* GC: assume src_cont & dst_cont are rooted */ TValue create_interception_list(klisp_State *K, TValue src_cont, TValue dst_cont) { mark_iancestors(dst_cont); TValue ilist = kcons(K, KNIL, KNIL); krooted_vars_push(K, &ilist); TValue tail = ilist; TValue cont = src_cont; /* exit guards are from the inside to the outside, and selected by destination */ /* the loop is until we find the common ancestor, that has to be marked */ while(!kis_marked(cont)) { /* only inner conts have exit guards */ if (kis_inner_cont(cont)) { klisp_assert(tv2cont(cont)->extra_size > 1); TValue entries = tv2cont(cont)->extra[0]; /* TODO make a macro */ TValue interceptor = select_interceptor(entries); if (!ttisnil(interceptor)) { /* TODO make macros */ TValue denv = tv2cont(cont)->extra[1]; TValue outer = tv2cont(cont)->parent; TValue outer_denv = kcons(K, outer, denv); krooted_tvs_push(K, outer_denv); TValue new_entry = kcons(K, interceptor, outer_denv); krooted_tvs_pop(K); /* already in entry */ krooted_tvs_push(K, new_entry); TValue new_pair = kcons(K, new_entry, KNIL); krooted_tvs_pop(K); kset_cdr(tail, new_pair); tail = new_pair; } } cont = tv2cont(cont)->parent; } unmark_iancestors(dst_cont); /* entry guards are from the outside to the inside, and selected by source, we create the list from the outside by cons and then append it to the exit list to avoid reversing */ mark_iancestors(src_cont); cont = dst_cont; TValue entry_int = KNIL; krooted_vars_push(K, &entry_int); while(!kis_marked(cont)) { /* only outer conts have entry guards */ if (kis_outer_cont(cont)) { klisp_assert(tv2cont(cont)->extra_size > 1); TValue entries = tv2cont(cont)->extra[0]; /* TODO make a macro */ /* this is rooted because it's a substructure of entries */ TValue interceptor = select_interceptor(entries); if (!ttisnil(interceptor)) { /* TODO make macros */ TValue denv = tv2cont(cont)->extra[1]; TValue outer = cont; TValue outer_denv = kcons(K, outer, denv); krooted_tvs_push(K, outer_denv); TValue new_entry = kcons(K, interceptor, outer_denv); krooted_tvs_pop(K); /* already in entry */ krooted_tvs_push(K, new_entry); entry_int = kcons(K, new_entry, entry_int); krooted_tvs_pop(K); } } cont = tv2cont(cont)->parent; } unmark_iancestors(src_cont); /* all interceptions collected, append the two lists and return */ kset_cdr(tail, entry_int); krooted_vars_pop(K); krooted_vars_pop(K); return kcdr(ilist); } void do_interception(klisp_State *K) { TValue *xparams = K->next_xparams; TValue obj = K->next_value; klisp_assert(ttisnil(K->next_env)); /* ** xparams[0]: ** xparams[1]: dst cont */ TValue ls = xparams[0]; TValue dst_cont = xparams[1]; if (ttisnil(ls)) { /* all interceptors returned normally */ /* this is a normal pass/not subject to interception */ kset_cc(K, dst_cont); kapply_cc(K, obj); } else { /* call the operative with the passed obj and applicative for outer cont as ptree in the dynamic environment of the corresponding call to guard-continuation in the dynamic extent of the associated outer continuation. If the operative normally returns a value, others interceptions should be scheduled */ TValue first = kcar(ls); TValue op = kcar(first); TValue outer = kcadr(first); TValue denv = kcddr(first); TValue app = kmake_applicative(K, cont_app, 1, outer); krooted_tvs_push(K, app); TValue ptree = klist(K, 2, obj, app); krooted_tvs_pop(K); /* already in ptree */ krooted_tvs_push(K, ptree); TValue new_cont = kmake_continuation(K, outer, do_interception, 2, kcdr(ls), dst_cont); kset_cc(K, new_cont); krooted_tvs_pop(K); /* XXX: what to pass as si? */ ktail_call(K, op, ptree, denv); } }
31.584
80
0.605623
1aa1499f676e47248caaef07043f439b93e0e20f
580
c
C
lang/cem/libcc/stdio/fdopen.c
wyan/ack
cf1b02d26cdfaff4417011c49d112b8dfc877df2
[ "BSD-3-Clause" ]
282
2015-07-01T10:17:17.000Z
2022-03-31T02:14:30.000Z
lang/cem/libcc/stdio/fdopen.c
wyan/ack
cf1b02d26cdfaff4417011c49d112b8dfc877df2
[ "BSD-3-Clause" ]
176
2016-06-07T06:46:55.000Z
2022-03-19T21:40:17.000Z
lang/cem/libcc/stdio/fdopen.c
wyan/ack
cf1b02d26cdfaff4417011c49d112b8dfc877df2
[ "BSD-3-Clause" ]
58
2015-12-02T16:29:18.000Z
2022-01-26T17:54:35.000Z
/* $Id$ */ #include <stdio.h> FILE *fdopen(fd,mode) char *mode; { register int i; FILE *fp; char *malloc(); int flags = 0; if (fd < 0) return NULL; for (i = 0; _io_table[i] != 0 ; i++) if ( i >= _NFILES ) return(NULL); switch(*mode) { case 'r': flags |= IO_READMODE; break; case 'a': lseek(fd, 0L, 2); case 'w': flags |= IO_WRITEMODE; break; default: return NULL; } if (( fp = (FILE *) malloc (sizeof( FILE))) == NULL ) { return(NULL); } fp->_count = 0; fp->_fd = fd; fp->_flags = flags; fp->_buf = 0; _io_table[i] = fp; return(fp); }
14.146341
56
0.546552
1aa1cad4547c391f8aa40022a8b69dcab99d34c8
1,480
h
C
DTLiving/core/effect/video_effect_processor.h
danjiang/DTLiving
c0008b7b7f94a392a514b112c0b97564d7d8f12a
[ "MIT" ]
21
2020-04-04T13:41:45.000Z
2022-02-19T23:38:36.000Z
DTLiving/core/effect/video_effect_processor.h
danjiang/DTLiving
c0008b7b7f94a392a514b112c0b97564d7d8f12a
[ "MIT" ]
9
2020-02-02T10:42:05.000Z
2022-02-28T18:50:48.000Z
DTLiving/core/effect/video_effect_processor.h
danjiang/DTLiving
c0008b7b7f94a392a514b112c0b97564d7d8f12a
[ "MIT" ]
3
2020-10-19T08:28:38.000Z
2021-11-29T09:24:42.000Z
// // video_effect_processor.h // DTLiving // // Created by Dan Jiang on 2020/3/15. // Copyright © 2020 Dan Thought Studio. All rights reserved. // #ifndef DTLIVING_EFFECT_VIDEO_EFFECT_PROCESSOR_H_ #define DTLIVING_EFFECT_VIDEO_EFFECT_PROCESSOR_H_ #include <vector> #include "video_frame.h" #include "video_effect.h" namespace dtliving { namespace effect { class VideoEffectProcessor { public: VideoEffectProcessor(); ~VideoEffectProcessor(); void Init(const char *vertex_shader_file, const char *fragment_shader_file); void AddEffect(const char *name, const char *vertex_shader_file, const char *fragment_shader_file); void ClearAllEffects(); void SetDuration(const char *name, double duration); void SetClearColor(const char *name, vec4 clear_color); void LoadResources(const char *name, std::vector<std::string> resources); void SetTextures(const char *name, std::vector<VideoFrame> textures); void SetPositions(const char *name, GLfloat *positions); void SetTextureCoordinates(const char *name, GLfloat *texture_coordinates); void SetEffectParamInt(const char *name, const char *param, GLint *value, int size); void SetEffectParamFloat(const char *name, const char *param, GLfloat *value, int size); void Process(VideoFrame input_frame, VideoFrame output_frame, double delta); private: VideoEffect *no_effect_; std::vector<VideoEffect *> effects_ {}; }; } } #endif /* video_effect_processor_h */
32.173913
103
0.749324
1aa34408e192bb86e4e2f99de25b13faa9b824a0
179
h
C
Project1/Scene/func/FuncSlash.h
justin111175/2020project
ec698e0a471a4ea2f109e9dd55061e08a54a51cc
[ "Unlicense" ]
null
null
null
Project1/Scene/func/FuncSlash.h
justin111175/2020project
ec698e0a471a4ea2f109e9dd55061e08a54a51cc
[ "Unlicense" ]
null
null
null
Project1/Scene/func/FuncSlash.h
justin111175/2020project
ec698e0a471a4ea2f109e9dd55061e08a54a51cc
[ "Unlicense" ]
null
null
null
#pragma once #include <BaseScene.h> #include <map> struct FuncSlash { bool operator()(ActQueT &actQue, void* scene); private: static std::map<UNIT_ID, int> _MaxCount; };
10.529412
47
0.692737
1aa4a4ea9609e4c8971a14b8e52532eac2d72115
8,034
c
C
src/Include/images/toolbarPrint_png.c
dconnet/AgilityBook
4804c79079d6109294a6d377fb6ebda70bcb30a1
[ "MIT" ]
1
2020-11-23T20:33:41.000Z
2020-11-23T20:33:41.000Z
src/Include/images/toolbarPrint_png.c
dconnet/AgilityBook
4804c79079d6109294a6d377fb6ebda70bcb30a1
[ "MIT" ]
null
null
null
src/Include/images/toolbarPrint_png.c
dconnet/AgilityBook
4804c79079d6109294a6d377fb6ebda70bcb30a1
[ "MIT" ]
3
2020-05-04T19:42:26.000Z
2022-03-08T09:36:54.000Z
/* Generated by bin2c, do not edit manually */ /* Contents of 'toolbarPrint.png' */ const size_t toolbarPrint_png_size = 1283; const unsigned char toolbarPrint_png[1283] = { 0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x18, 0x08, 0x06, 0x00, 0x00, 0x00, 0xe0, 0x77, 0x3d, 0xf8, 0x00, 0x00, 0x00, 0x01, 0x73, 0x52, 0x47, 0x42, 0x00, 0xae, 0xce, 0x1c, 0xe9, 0x00, 0x00, 0x00, 0x04, 0x67, 0x41, 0x4d, 0x41, 0x00, 0x00, 0xb1, 0x8f, 0x0b, 0xfc, 0x61, 0x05, 0x00, 0x00, 0x00, 0x09, 0x70, 0x48, 0x59, 0x73, 0x00, 0x00, 0x0e, 0xc3, 0x00, 0x00, 0x0e, 0xc3, 0x01, 0xc7, 0x6f, 0xa8, 0x64, 0x00, 0x00, 0x00, 0x19, 0x74, 0x45, 0x58, 0x74, 0x53, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x00, 0x70, 0x61, 0x69, 0x6e, 0x74, 0x2e, 0x6e, 0x65, 0x74, 0x20, 0x34, 0x2e, 0x30, 0x2e, 0x31, 0x33, 0x34, 0x03, 0x5b, 0x7a, 0x00, 0x00, 0x04, 0x73, 0x49, 0x44, 0x41, 0x54, 0x48, 0x4b, 0xed, 0x54, 0x59, 0x4c, 0x5c, 0x65, 0x18, 0x1d, 0xc1, 0x16, 0x79, 0x10, 0x5f, 0x78, 0x69, 0xa2, 0x04, 0x05, 0x12, 0x1f, 0x0c, 0x20, 0x5b, 0x4c, 0xac, 0x0f, 0xa6, 0x50, 0x31, 0x25, 0x02, 0x91, 0x30, 0x90, 0x38, 0x04, 0x15, 0xd2, 0x88, 0x54, 0xf6, 0xd0, 0x0e, 0x93, 0x4e, 0x61, 0xa0, 0xec, 0x5b, 0x43, 0xd3, 0x41, 0x96, 0x81, 0x61, 0x86, 0x32, 0x53, 0x31, 0x65, 0x58, 0x07, 0x86, 0xd9, 0x87, 0x41, 0x96, 0xcc, 0x54, 0xca, 0x22, 0x12, 0x96, 0x00, 0x65, 0xdf, 0xd7, 0x22, 0x70, 0xfc, 0xef, 0x65, 0xf4, 0xc5, 0x25, 0xc5, 0xc4, 0x27, 0x3d, 0xc9, 0xc9, 0x7f, 0xef, 0x7f, 0xef, 0x77, 0xfe, 0xef, 0x7c, 0xdf, 0x77, 0x2f, 0xe3, 0x7f, 0xfc, 0x6b, 0x18, 0x1b, 0x1b, 0x8b, 0x9f, 0x9c, 0x9c, 0xc4, 0xc4, 0xc4, 0xc4, 0x02, 0xb9, 0xee, 0x31, 0x99, 0x4c, 0x55, 0x3a, 0x9d, 0xee, 0x0b, 0x99, 0x4c, 0x76, 0x59, 0x20, 0x10, 0xbc, 0x9d, 0x99, 0x99, 0x79, 0x89, 0xcb, 0xe5, 0xbe, 0x6c, 0x79, 0xfd, 0x7c, 0x00, 0x70, 0x61, 0x6e, 0x6e, 0x6e, 0x7c, 0x75, 0x75, 0x15, 0x6b, 0x6b, 0x6b, 0x34, 0x57, 0x56, 0x56, 0xb0, 0xb0, 0xb0, 0x80, 0xd9, 0xd9, 0x59, 0x4c, 0x4f, 0x4f, 0x63, 0x64, 0x64, 0x64, 0xf7, 0xce, 0x9d, 0x0c, 0x85, 0x25, 0xe4, 0x7c, 0x98, 0x9a, 0x9a, 0xf2, 0x5f, 0x5f, 0x5f, 0xc7, 0xf6, 0xf6, 0x36, 0xb6, 0xb6, 0xb6, 0xb0, 0xb1, 0xb1, 0x01, 0xea, 0xb0, 0xc5, 0xc5, 0x45, 0xcc, 0xcf, 0xcf, 0x63, 0x6e, 0x6e, 0x16, 0x66, 0xf3, 0x53, 0xc4, 0xc5, 0xc5, 0x45, 0x58, 0x42, 0xce, 0x07, 0x92, 0xa5, 0x6c, 0x6f, 0x6f, 0x0f, 0x07, 0x07, 0x07, 0x34, 0x77, 0x76, 0x76, 0xb0, 0xb9, 0xb9, 0xf9, 0xbb, 0x8b, 0xa5, 0xa5, 0x25, 0xd4, 0xd4, 0xd4, 0x6e, 0x85, 0x84, 0xbc, 0x67, 0x6b, 0x09, 0x79, 0x71, 0xf0, 0xf9, 0x7c, 0x27, 0xbd, 0x5e, 0x7f, 0x70, 0x74, 0x74, 0x84, 0x93, 0x93, 0x13, 0x1c, 0x1f, 0x1f, 0x63, 0x7f, 0x7f, 0x9f, 0x76, 0x42, 0x95, 0x6a, 0x79, 0x79, 0x99, 0x38, 0x78, 0x06, 0xd2, 0x83, 0x7c, 0x4b, 0xc8, 0xf9, 0xd0, 0xda, 0xda, 0x7a, 0x5f, 0xab, 0xd5, 0xd2, 0xe2, 0xa7, 0xa7, 0xa7, 0x34, 0x0f, 0x0f, 0x0f, 0xe9, 0x72, 0x51, 0x65, 0x5b, 0x59, 0x59, 0x85, 0x5c, 0xae, 0x40, 0x50, 0x90, 0xef, 0x65, 0x4b, 0xc8, 0xdf, 0xa3, 0xa7, 0x7f, 0xc4, 0xa3, 0xc7, 0x34, 0x56, 0x62, 0x34, 0xff, 0xcc, 0x34, 0x18, 0x0c, 0xef, 0x18, 0x8d, 0x86, 0x39, 0xaa, 0x89, 0xbf, 0x65, 0x4f, 0x39, 0xa1, 0x1c, 0x50, 0x07, 0x50, 0x65, 0x1a, 0x18, 0x18, 0xc4, 0xf5, 0xeb, 0x5f, 0x9a, 0x2c, 0xe1, 0x7f, 0x0d, 0x75, 0x6f, 0xff, 0x87, 0xda, 0x5e, 0x73, 0xa7, 0xf6, 0x87, 0x1f, 0x8f, 0xb4, 0xc6, 0x41, 0xe8, 0x0d, 0x3d, 0x50, 0x74, 0x75, 0x1d, 0xc9, 0xe5, 0x72, 0xa8, 0x54, 0x2a, 0xd2, 0x44, 0x33, 0x66, 0x66, 0x66, 0xe8, 0x92, 0x50, 0x4d, 0xde, 0xdd, 0xdd, 0xa5, 0xeb, 0x2f, 0x6b, 0x6a, 0x46, 0x64, 0x44, 0x58, 0xa6, 0x45, 0xe6, 0x8f, 0x90, 0x6b, 0x34, 0x57, 0x15, 0x6a, 0x83, 0x5a, 0x6d, 0xe8, 0x3b, 0xed, 0xe8, 0x52, 0xa3, 0xb1, 0xf1, 0x7b, 0x48, 0xa5, 0x12, 0x48, 0x25, 0x12, 0x88, 0xc5, 0x62, 0x88, 0x44, 0x22, 0xd4, 0xd7, 0xd7, 0x43, 0x28, 0x14, 0x92, 0x46, 0xd6, 0x80, 0xcc, 0x3c, 0xbd, 0x36, 0x34, 0x34, 0xa0, 0xb5, 0xa5, 0x05, 0x75, 0x22, 0x31, 0xc4, 0x8f, 0x1e, 0xb1, 0x9f, 0x8c, 0xcf, 0xbe, 0x6e, 0x91, 0x3c, 0x43, 0x93, 0x5c, 0xfe, 0x66, 0x9b, 0xbc, 0x53, 0xdc, 0xa5, 0xd4, 0x9c, 0xb4, 0x74, 0x74, 0xa2, 0xbc, 0xa2, 0x12, 0x85, 0x85, 0x05, 0x28, 0x29, 0x29, 0x46, 0x69, 0x69, 0x29, 0xcd, 0xc2, 0xc2, 0x42, 0xe4, 0xe4, 0xe4, 0xa0, 0xb8, 0xb8, 0x18, 0x05, 0x05, 0x05, 0xc8, 0xcf, 0xcf, 0x47, 0x5e, 0x5e, 0x1e, 0xb2, 0x32, 0x79, 0x78, 0xc0, 0x2f, 0x87, 0x5c, 0xa5, 0x83, 0xae, 0xcf, 0x84, 0x8e, 0x6e, 0x1d, 0xee, 0x95, 0xdd, 0x2f, 0xa3, 0x85, 0xc9, 0x47, 0xf3, 0x52, 0x56, 0x3e, 0x97, 0xf3, 0xa0, 0x9c, 0xbf, 0xd5, 0xda, 0xd6, 0x8e, 0xa2, 0xa2, 0x62, 0x7c, 0x73, 0xe3, 0x06, 0x35, 0xc3, 0x48, 0x4a, 0x4a, 0x42, 0x72, 0x72, 0x32, 0x52, 0x52, 0x52, 0xe8, 0x35, 0x31, 0x31, 0x11, 0xb1, 0xb1, 0xb1, 0xf4, 0x33, 0xea, 0x3e, 0x21, 0x21, 0x01, 0xf1, 0xf1, 0x71, 0x10, 0x8a, 0xea, 0xa1, 0xd4, 0xf5, 0x42, 0xdf, 0xff, 0x84, 0xb8, 0xa9, 0x03, 0x87, 0xc3, 0xa1, 0x78, 0x76, 0xc0, 0xe8, 0xe8, 0x68, 0xbd, 0x52, 0xdd, 0x0d, 0x31, 0xb1, 0x9d, 0x9d, 0x9d, 0x8d, 0x80, 0x80, 0x00, 0xf8, 0xfb, 0xfb, 0x23, 0x38, 0x38, 0x18, 0xcc, 0xb0, 0x30, 0x84, 0x87, 0x87, 0x23, 0x8c, 0xac, 0x4c, 0x26, 0x13, 0xa1, 0xa1, 0xa1, 0xf4, 0x7e, 0x60, 0x60, 0x20, 0x42, 0x42, 0x42, 0x10, 0x13, 0x13, 0x83, 0xc7, 0xb2, 0x36, 0xa8, 0x88, 0x78, 0xb7, 0xc6, 0x40, 0xdc, 0xe4, 0xe3, 0xe6, 0xcd, 0x54, 0xb0, 0xd9, 0x6c, 0xdc, 0xe6, 0x70, 0xca, 0x89, 0xbc, 0x15, 0x83, 0x6a, 0xd6, 0xd0, 0xd0, 0x10, 0x22, 0x22, 0x22, 0xc8, 0xc3, 0x5b, 0x10, 0xd4, 0xd4, 0xa2, 0x56, 0x28, 0x42, 0x55, 0x95, 0x00, 0x51, 0xd1, 0xd1, 0xf0, 0xf6, 0xf1, 0x81, 0xab, 0xab, 0x1b, 0xbc, 0xbc, 0xbc, 0xe0, 0xed, 0xed, 0x0d, 0x4f, 0x4f, 0x4f, 0xb8, 0xb8, 0xb8, 0x10, 0x77, 0xc9, 0xe8, 0x56, 0x6a, 0xa0, 0x50, 0xeb, 0xd0, 0xde, 0xa9, 0x40, 0x26, 0x8f, 0x87, 0xd4, 0xd4, 0x54, 0x70, 0xb9, 0xb7, 0x51, 0xce, 0xe7, 0x93, 0x31, 0x0d, 0xaa, 0x20, 0x07, 0x5c, 0x64, 0xb8, 0xba, 0xba, 0x32, 0x89, 0xf0, 0x40, 0x55, 0x65, 0x2d, 0xee, 0x56, 0xc9, 0xf1, 0x01, 0x2b, 0x0b, 0xbe, 0xd7, 0x82, 0x71, 0xc5, 0xef, 0x2a, 0xe2, 0x12, 0x12, 0xc1, 0xe7, 0x7f, 0x8b, 0x26, 0x59, 0x33, 0x5d, 0x6b, 0x0f, 0x0f, 0x0f, 0xd8, 0xda, 0xda, 0x22, 0x3d, 0x9d, 0x07, 0x89, 0xf4, 0x3b, 0xd2, 0x9f, 0x7b, 0x68, 0x21, 0x65, 0xe5, 0x65, 0x64, 0x20, 0x2d, 0x2d, 0x0d, 0x65, 0x65, 0x65, 0xc8, 0xcb, 0xc9, 0xd9, 0x76, 0x76, 0x76, 0xa6, 0xa6, 0xc8, 0x89, 0xd0, 0x9a, 0x61, 0x34, 0x1a, 0xbf, 0x32, 0x0d, 0x8f, 0xef, 0xb0, 0x9b, 0x76, 0x10, 0xf6, 0xf0, 0x39, 0xe4, 0xcb, 0xa7, 0x18, 0x3a, 0x78, 0x8e, 0xe6, 0xa7, 0x66, 0xc4, 0xf2, 0xd8, 0xf0, 0x65, 0xb2, 0xf0, 0xfe, 0x95, 0x8f, 0xe1, 0xeb, 0xeb, 0x87, 0xa8, 0xa8, 0x68, 0x28, 0x95, 0x4a, 0x34, 0xb6, 0x48, 0x51, 0x21, 0x29, 0x23, 0x1f, 0x54, 0x17, 0x5d, 0xd6, 0xdc, 0xdc, 0x5c, 0x54, 0x57, 0x57, 0x83, 0xc5, 0x62, 0xf5, 0x92, 0x04, 0x82, 0x89, 0xf0, 0x6b, 0x84, 0x67, 0xd0, 0x68, 0x94, 0xd7, 0xba, 0x15, 0x0a, 0xd3, 0xe0, 0xd0, 0xc4, 0xe1, 0x4f, 0xcf, 0x16, 0x21, 0x31, 0xf6, 0x22, 0xaa, 0x34, 0x03, 0x3e, 0x5f, 0x7f, 0x02, 0xc7, 0xcf, 0xd9, 0x70, 0xe2, 0x1a, 0x70, 0xeb, 0xf1, 0x18, 0x54, 0x6a, 0x35, 0xdc, 0xdd, 0xbd, 0xa0, 0xd7, 0x1b, 0x30, 0x3c, 0x3c, 0x8c, 0x81, 0xfe, 0x01, 0x3a, 0xe3, 0x9a, 0x1a, 0x01, 0x71, 0x52, 0xb4, 0xfe, 0xae, 0x9b, 0xdb, 0x5d, 0x22, 0xf7, 0x16, 0xe1, 0x9f, 0xfe, 0xa2, 0x5f, 0x21, 0x74, 0xe7, 0xa5, 0xa7, 0x27, 0x92, 0x39, 0x57, 0x68, 0x74, 0x9a, 0x4d, 0x69, 0x67, 0x1f, 0x92, 0x44, 0x23, 0x10, 0xeb, 0xa7, 0x20, 0xac, 0xae, 0xf8, 0xc5, 0xd1, 0xd1, 0xd1, 0x60, 0x63, 0x63, 0x57, 0x47, 0x1a, 0xa8, 0x6a, 0x6d, 0x6f, 0xdf, 0x22, 0xff, 0x23, 0x48, 0x1a, 0x1e, 0x22, 0x32, 0x92, 0xa5, 0xb4, 0xb6, 0xb6, 0xfe, 0x88, 0xc4, 0xbf, 0x4a, 0x2b, 0xbd, 0x00, 0xac, 0xec, 0xed, 0xed, 0x2f, 0xf9, 0xfb, 0xfb, 0x7d, 0x96, 0x97, 0x57, 0x50, 0x49, 0xc6, 0xd0, 0x40, 0x6c, 0x17, 0x90, 0x7d, 0x07, 0x42, 0x2a, 0xbb, 0x0b, 0x84, 0x6f, 0x38, 0x38, 0x38, 0x7c, 0x6a, 0x67, 0x67, 0x17, 0x66, 0xd9, 0xb7, 0x26, 0xfc, 0x47, 0xb0, 0x22, 0xb4, 0x21, 0xbc, 0x48, 0xdf, 0xfd, 0x07, 0xc1, 0x60, 0xfc, 0x0a, 0x2b, 0xc5, 0x1f, 0x45, 0x8f, 0xf4, 0x0e, 0x8a, 0x00, 0x00, 0x00, 0x00, 0x49, 0x45, 0x4e, 0x44, 0xae, 0x42, 0x60, 0x82};
48.39759
48
0.655091
1aa70391352f89452d1e219af9aacdf6f8a54ff9
969
c
C
V/01/20/task3.c
elsys/po-2015
28d352ab8d7d4eb55620b01f9176f8e3f6838744
[ "MIT" ]
27
2015-09-28T19:47:23.000Z
2016-07-25T15:17:32.000Z
V/01/20/task3.c
elsys/po-2015
28d352ab8d7d4eb55620b01f9176f8e3f6838744
[ "MIT" ]
391
2015-09-28T05:57:05.000Z
2016-06-09T16:43:53.000Z
V/01/20/task3.c
elsys/po-2015
28d352ab8d7d4eb55620b01f9176f8e3f6838744
[ "MIT" ]
351
2015-06-29T17:17:31.000Z
2016-05-04T17:57:14.000Z
#include <stdio.h> #include <string.h> typedef struct { long hash, count; char similar[4][200]; } occurance_t; long hash(char *word) { long i, sum = 42; for (i = 0; i < strlen(word); ++i) sum += word[i]*(i+1); return sum; } int main() { occurance_t words[3000]; char word[200]; long i, max_count = 0, k = 0; while(max_count < 4) { scanf("%s", word); for (i = 0; i <= 3000; ++i) { if (words[i].hash == hash(word)) { strcpy(words[i].similar[++words[i].count], word); if (words[i].count > max_count) max_count = words[i].count; break; } else if (words[i].hash == 0) { words[i].hash = hash(word); words[i].count = 1; strcpy(words[i].similar[words[i].count], word); break; } } ++k; } for (i = 0; i < k ; ++i) { if (words[i].count >= 2) { printf("[%ld]", words[i].hash); int j; for (j = 0; j <= 4; ++j) printf("%s ", words[i].similar[j]); printf("\n"); } } return 0; }
16.15
53
0.52322
1aa943562673dd59c8e65c72b2c37e32cc34e034
9,999
c
C
external/ebtables/userspace/ebtables2/extensions/ebt_inat.c
cesarmo759/android_kernel_samsung_msm8916
f19717ef6c984b64a75ea600a735dc937b127c25
[ "Apache-2.0" ]
1
2020-06-28T00:49:21.000Z
2020-06-28T00:49:21.000Z
external/ebtables/userspace/ebtables2/extensions/ebt_inat.c
cesarmo759/android_kernel_samsung_msm8916
f19717ef6c984b64a75ea600a735dc937b127c25
[ "Apache-2.0" ]
null
null
null
external/ebtables/userspace/ebtables2/extensions/ebt_inat.c
cesarmo759/android_kernel_samsung_msm8916
f19717ef6c984b64a75ea600a735dc937b127c25
[ "Apache-2.0" ]
1
2021-03-05T16:54:52.000Z
2021-03-05T16:54:52.000Z
/* ebt_inat * * Authors: * Grzegorz Borowiak <grzes@gnu.univ.gda.pl> * * August, 2003 */ #include <stdio.h> #include <stdlib.h> #include <string.h> #include <netinet/ether.h> #include <getopt.h> #include <ctype.h> #include "../include/ebtables_u.h" #include <linux/netfilter_bridge/ebt_inat.h> static int s_sub_supplied, d_sub_supplied; #define NAT_S '1' #define NAT_D '1' #define NAT_S_SUB '2' #define NAT_D_SUB '2' #define NAT_S_TARGET '3' #define NAT_D_TARGET '3' static struct option opts_s[] = { { "isnat-list" , required_argument, 0, NAT_S }, { "isnat-sub" , required_argument, 0, NAT_S_SUB }, { "isnat-default-target" , required_argument, 0, NAT_S_TARGET }, { 0 } }; static struct option opts_d[] = { { "idnat-list" , required_argument, 0, NAT_D }, { "idnat-sub" , required_argument, 0, NAT_D_SUB }, { "idnat-default-target" , required_argument, 0, NAT_D_TARGET }, { 0 } }; static void print_help_common(const char *cas) { printf( "isnat options:\n" " --i%1.1snat-list : indexed list of MAC addresses\n" " --i%1.1snat-sub : /24 subnet to which the rule apply\n" " --i%1.1snat-default-target target : ACCEPT, DROP, RETURN or CONTINUE\n" "Indexed list of addresses is as follows:\n" "\tlist := chunk\n" "\tlist := list chunk\n" "\tchunk := pair ','\n" "\tpair := index '=' action\n" "\taction := mac_addr\n" "\taction := mac_addr '+'\n" "\taction := '_'\n" "where\n" "\tindex -- an integer [0..255]\n" "\tmac_addr -- a MAC address in format xx:xx:xx:xx:xx:xx\n" "If '_' at some index is specified, packets with last %s IP address byte\n" "equal to index are DROPped. If there is a MAC address, they are %1.1snatted\n" "to this and the target is CONTINUE. If this MAC is followed by '+', the\n" "target is ACCEPT.\n" "For example,\n" "--idnat-list 2=20:21:22:23:24:25,4=_,7=30:31:32:33:34:35,\n" "is valid.\n" "The subnet MUST be specified. Only packets with 3 first bytes of their\n" "%s address are considered. --i%1.1snat-sub parameter must begin with\n" "3 integers separated by dots. Only they are considered, the rest is ignored.\n" "No matter if you write '192.168.42.', '192.168.42.0', '192.168.42.12',\n" "'192.168.42.0/24', '192.168.42.0/23' or '192.168.42.i%1.1snat_sucks!!!',\n" "The numbers 192, 168 and 42 are taken and it behaves like a /24 IP subnet.\n" "--i%1.1snat-default-target affects only the packet not matching the subnet.\n", cas, cas, cas, cas, cas, cas, cas, cas, cas, cas, cas, cas, cas, cas, cas, cas ); } static void print_help_s() { print_help_common("src"); } static void print_help_d() { print_help_common("dest"); } static void init_s(struct ebt_entry_target *target) { struct ebt_inat_info *natinfo = (struct ebt_inat_info *)target->data; s_sub_supplied = 0; memset(natinfo, 0, sizeof(struct ebt_inat_info)); natinfo->target = EBT_CONTINUE; return; } static void init_d(struct ebt_entry_target *target) { struct ebt_inat_info *natinfo = (struct ebt_inat_info *)target->data; d_sub_supplied = 0; memset(natinfo, 0, sizeof(struct ebt_inat_info)); natinfo->target = EBT_CONTINUE; return; } static void parse_list(const char *arg, struct ebt_inat_info *info) { int i; char c; int count = 0; int now_index = 1; int index; char buf[4]; unsigned char mac[6]; int ibuf = 0; int imac = 0; int target; memset(buf, 0, 4); i = 0; while (1) { c = arg[i]; if (now_index) { if (isdigit(c)) { buf[ibuf++] = c; if (ibuf > 3) { print_error("Index too long at position %d", i); } goto next; } if (c == '=') { if (ibuf == 0) { print_error("Integer index expected before '=' at position %d", i); } buf[ibuf] = 0; ibuf = 0; index = atoi(buf); if (index < 0 || 255 < index) { print_error("Index out of range [0..255], namely %d", index); } now_index = 0; memset(mac, 0, 6); imac = 0; target = EBT_CONTINUE; goto next; } if (c == '\0') { goto next; } print_error("Unexpected '%c' where integer or '=' expected", c); } else { if (isxdigit(c)) { buf[ibuf++] = c; if (ibuf > 2) { print_error("MAC address chunk too long at position %d", i); } goto next; } if (c == ':' || c == ',' || c == '\0') { buf[ibuf] = 0; ibuf = 0; mac[imac++] = strtol(buf, 0, 16); if (c == ',' || c == '\0') { info->a[index].enabled = 1; info->a[index].target = target; memcpy(info->a[index].mac, mac, 6); now_index = 1; count++; goto next; } if (c == ':' && imac >= 6) { print_error("Too many MAC address chunks at position %d", i); } goto next; } if (c == '_') { target = EBT_DROP; goto next; } if (c == '+') { target = EBT_ACCEPT; goto next; } print_error("Unexpected '%c' where hex digit, '_', '+', ',' or end of string expected", c); } next: if (!c) break; i++; } if (count == 0) { print_error("List empty"); } } static uint32_t parse_ip(const char *s) { int a0, a1, a2; char ip[4]; sscanf(s, "%d.%d.%d", &a0, &a1, &a2); ip[0] = a0; ip[1] = a1; ip[2] = a2; ip[3] = 0; return *(uint32_t*)ip; } #define OPT_ISNAT 0x01 #define OPT_ISNAT_SUB 0x02 #define OPT_ISNAT_TARGET 0x04 static int parse_s(int c, char **argv, int argc, const struct ebt_u_entry *entry, unsigned int *flags, struct ebt_entry_target **target) { struct ebt_inat_info *natinfo = (struct ebt_inat_info *)(*target)->data; switch (c) { case NAT_S: check_option(flags, OPT_ISNAT); parse_list(optarg, natinfo); break; case NAT_S_TARGET: check_option(flags, OPT_ISNAT_TARGET); if (FILL_TARGET(optarg, natinfo->target)) print_error("Illegal --isnat-default-target target"); break; case NAT_S_SUB: natinfo->ip_subnet = parse_ip(optarg); s_sub_supplied = 1; break; default: return 0; } return 1; } #define OPT_IDNAT 0x01 #define OPT_IDNAT_SUB 0x02 #define OPT_IDNAT_TARGET 0x04 static int parse_d(int c, char **argv, int argc, const struct ebt_u_entry *entry, unsigned int *flags, struct ebt_entry_target **target) { struct ebt_inat_info *natinfo = (struct ebt_inat_info *)(*target)->data; switch (c) { case NAT_D: check_option(flags, OPT_IDNAT); parse_list(optarg, natinfo); break; case NAT_D_TARGET: check_option(flags, OPT_IDNAT_TARGET); if (FILL_TARGET(optarg, natinfo->target)) print_error("Illegal --idnat-default-target target"); break; case NAT_D_SUB: natinfo->ip_subnet = parse_ip(optarg); d_sub_supplied = 1; break; default: return 0; } return 1; } static void final_check_s(const struct ebt_u_entry *entry, const struct ebt_entry_target *target, const char *name, unsigned int hookmask, unsigned int time) { struct ebt_inat_info *natinfo = (struct ebt_inat_info *)target->data; if (BASE_CHAIN && natinfo->target == EBT_RETURN) print_error("--isnat-default-target RETURN not allowed on base chain"); CLEAR_BASE_CHAIN_BIT; if ((hookmask & ~(1 << NF_BR_POST_ROUTING)) || strcmp(name, "nat")) print_error("Wrong chain for isnat"); if (time == 0 && s_sub_supplied == 0) print_error("No isnat subnet supplied"); } static void final_check_d(const struct ebt_u_entry *entry, const struct ebt_entry_target *target, const char *name, unsigned int hookmask, unsigned int time) { struct ebt_inat_info *natinfo = (struct ebt_inat_info *)target->data; if (BASE_CHAIN && natinfo->target == EBT_RETURN) print_error("--idnat-default-target RETURN not allowed on base chain"); CLEAR_BASE_CHAIN_BIT; if (((hookmask & ~((1 << NF_BR_PRE_ROUTING) | (1 << NF_BR_LOCAL_OUT))) || strcmp(name, "nat")) && ((hookmask & ~(1 << NF_BR_BROUTING)) || strcmp(name, "broute"))) print_error("Wrong chain for idnat"); if (time == 0 && d_sub_supplied == 0) print_error("No idnat subnet supplied"); } static void print_list(const struct ebt_inat_info *info) { int i; for (i = 0; i < 256; i++) { if (info->a[i].enabled) { printf("%d=", i); if (info->a[i].target == EBT_DROP) { printf("_"); } else { if (info->a[i].target == EBT_ACCEPT) { printf("+"); } print_mac(info->a[i].mac); } printf(","); } } } static void print_s(const struct ebt_u_entry *entry, const struct ebt_entry_target *target) { struct ebt_inat_info *info = (struct ebt_inat_info *)target->data; unsigned char sub[4]; *(uint32_t*)sub = info->ip_subnet; printf("--isnat-sub %u.%u.%u.0/24", sub[0], sub[1], sub[2]); printf(" --isnat-list "); print_list(info); printf(" --isnat-default-target %s", TARGET_NAME(info->target)); } static void print_d(const struct ebt_u_entry *entry, const struct ebt_entry_target *target) { struct ebt_inat_info *info = (struct ebt_inat_info *)target->data; unsigned char sub[4]; *(uint32_t*)sub = info->ip_subnet; printf("--idnat-sub %u.%u.%u.0/24", sub[0], sub[1], sub[2]); printf(" --idnat-list "); print_list(info); printf(" --idnat-default-target %s", TARGET_NAME(info->target)); } static int compare(const struct ebt_entry_target *t1, const struct ebt_entry_target *t2) { struct ebt_inat_info *natinfo1 = (struct ebt_inat_info *)t1->data; struct ebt_inat_info *natinfo2 = (struct ebt_inat_info *)t2->data; return !memcmp(natinfo1, natinfo2, sizeof(struct ebt_inat_info)); } static struct ebt_u_target isnat_target = { .name = EBT_ISNAT_TARGET, .size = sizeof(struct ebt_inat_info), .help = print_help_s, .init = init_s, .parse = parse_s, .final_check = final_check_s, .print = print_s, .compare = compare, .extra_ops = opts_s, }; static struct ebt_u_target idnat_target = { .name = EBT_IDNAT_TARGET, .size = sizeof(struct ebt_inat_info), .help = print_help_d, .init = init_d, .parse = parse_d, .final_check = final_check_d, .print = print_d, .compare = compare, .extra_ops = opts_d, }; static void _init(void) __attribute__ ((constructor)); static void _init(void) { register_target(&isnat_target); register_target(&idnat_target); }
25.770619
94
0.651265
1aac04aad2a68636117cd4432a7d03eb44284362
3,433
h
C
include/nebula/mclient/MetaClient.h
vesoft-inc/nebula-cpp
e34071fe7bfb68e2012c94fcd03be4707216c45a
[ "Apache-2.0" ]
8
2020-12-01T02:04:35.000Z
2022-03-30T12:33:30.000Z
include/nebula/mclient/MetaClient.h
vesoft-inc/nebula-cpp
e34071fe7bfb68e2012c94fcd03be4707216c45a
[ "Apache-2.0" ]
35
2020-08-19T15:51:45.000Z
2022-03-08T09:07:16.000Z
include/nebula/mclient/MetaClient.h
vesoft-inc/nebula-cpp
e34071fe7bfb68e2012c94fcd03be4707216c45a
[ "Apache-2.0" ]
10
2020-11-30T09:33:48.000Z
2022-01-31T06:47:23.000Z
/* Copyright (c) 2020 vesoft inc. All rights reserved. * * This source code is licensed under Apache 2.0 License. */ #pragma once #include <functional> #include <memory> #include <string> #include <thread> #include <unordered_map> #include <vector> #include "common/datatypes/HostAddr.h" #include "common/thrift/ThriftTypes.h" #include "nebula/mclient/MConfig.h" struct pair_hash { template <class T1, class T2> std::size_t operator()(const std::pair<T1, T2> &pair) const { return std::hash<T1>()(pair.first) ^ std::hash<T2>()(pair.second); } }; namespace folly { class IOThreadPoolExecutor; template <class T> class Promise; } // namespace folly namespace nebula { namespace thrift { template <class ClientType> class ThriftClientManager; } // namespace thrift namespace meta { namespace cpp2 { enum class ListHostType; class HostItem; class MetaServiceAsyncClient; class ListSpacesReq; class ListSpacesResp; class IdName; class EdgeItem; class ListEdgesReq; class ListEdgesResp; } // namespace cpp2 } // namespace meta using SpaceIdName = std::pair<GraphSpaceID, std::string>; using SpaceNameIdMap = std::unordered_map<std::string, GraphSpaceID>; using SpaceEdgeNameTypeMap = std::unordered_map<std::pair<GraphSpaceID, std::string>, EdgeType, pair_hash>; class MetaClient { public: explicit MetaClient(const std::vector<std::string> &metaAddrs, const MConfig &mConfig = MConfig{}); ~MetaClient(); std::pair<bool, GraphSpaceID> getSpaceIdByNameFromCache(const std::string &name); std::pair<bool, EdgeType> getEdgeTypeByNameFromCache(GraphSpaceID spaceId, const std::string &name); std::pair<bool, std::vector<PartitionID>> getPartsFromCache(GraphSpaceID spaceId); std::pair<bool, HostAddr> getPartLeaderFromCache(GraphSpaceID spaceId, PartitionID partId); private: bool loadData(); std::pair<bool, std::vector<SpaceIdName>> listSpaces(); std::pair<bool, std::vector<meta::cpp2::HostItem>> listHosts(meta::cpp2::ListHostType tp); std::pair<bool, std::vector<meta::cpp2::EdgeItem>> listEdgeSchemas(GraphSpaceID spaceId); void loadLeader(const std::vector<nebula::meta::cpp2::HostItem> &hostItems, const SpaceNameIdMap &spaceIndexByName); std::vector<SpaceIdName> toSpaceIdName(const std::vector<meta::cpp2::IdName> &tIdNames); template <class Request, class RemoteFunc, class RespGenerator, class RpcResponse = typename std::result_of<RemoteFunc( std::shared_ptr<meta::cpp2::MetaServiceAsyncClient>, Request)>::type::value_type, class Response = typename std::result_of<RespGenerator(RpcResponse)>::type> void getResponse(Request req, RemoteFunc remoteFunc, RespGenerator respGen, folly::Promise<std::pair<bool, Response>> pro); private: std::vector<HostAddr> metaAddrs_; MConfig mConfig_; SpaceNameIdMap spaceIndexByName_; SpaceEdgeNameTypeMap spaceEdgeIndexByName_; std::unordered_map<std::pair<GraphSpaceID, PartitionID>, HostAddr, pair_hash> spacePartLeaderMap_; std::unordered_map<GraphSpaceID, std::vector<PartitionID>> spacePartsMap_; std::shared_ptr<folly::IOThreadPoolExecutor> ioExecutor_; std::shared_ptr<thrift::ThriftClientManager<meta::cpp2::MetaServiceAsyncClient>> clientsMan_; }; } // namespace nebula
29.34188
100
0.713953
1aacf8b4dd9328253f5ca94844c24effc046914b
722
h
C
CGXSlideMenuView/CGXSlideEditView/CGXSlideChannelControll.h
974794055/CGXConfigSlideMenuExampleDemo
16c014b144c17da48e0402fe5c462667883e92a7
[ "MIT" ]
2
2018-03-20T12:46:18.000Z
2019-05-24T02:09:21.000Z
CGXSlideMenuView/CGXSlideEditView/CGXSlideChannelControll.h
974794055/CGXConfigSlideMenuExampleDemo
16c014b144c17da48e0402fe5c462667883e92a7
[ "MIT" ]
null
null
null
CGXSlideMenuView/CGXSlideEditView/CGXSlideChannelControll.h
974794055/CGXConfigSlideMenuExampleDemo
16c014b144c17da48e0402fe5c462667883e92a7
[ "MIT" ]
null
null
null
// // CGXScrollMenuChannelControll.h // CGXMenu // // Created by 曹贵鑫 on 2017/6/23. // Copyright © 2017年 曹贵鑫. All rights reserved. // #import <Foundation/Foundation.h> #import <UIKit/UIKit.h> typedef void(^ChannelBlock)(NSArray *channels); typedef void(^VoidBlock)(void); @interface CGXSlideChannelControll : NSObject +(CGXSlideChannelControll *)shareControl; /** 正在使用的栏目 */ @property (strong,nonatomic) NSMutableArray *inUseItems; /** 可选择的栏目 */ @property (strong,nonatomic) NSMutableArray *unUsesItems; /** 正在使用的控制器 */ @property (strong,nonatomic) NSMutableArray *inUseVcItems; /** 显示方法 结束时返回的是正在使用中的频道集合 */ -(void)showInViewController:(UIViewController*)vc completion:(ChannelBlock)channels; @end
16.790698
84
0.738227
1aae2cf9d0753264cc256ec9accc0bb825390178
94,639
h
C
ExampleProject/Plugins/PlayFab/Source/PlayFabProxy/Public/Proxy/PlayFabClientBPDataModels.h
fordream/UnrealCppSdk
84a38f3f32712334c29704892c5c8358804b40ae
[ "Apache-2.0" ]
null
null
null
ExampleProject/Plugins/PlayFab/Source/PlayFabProxy/Public/Proxy/PlayFabClientBPDataModels.h
fordream/UnrealCppSdk
84a38f3f32712334c29704892c5c8358804b40ae
[ "Apache-2.0" ]
null
null
null
ExampleProject/Plugins/PlayFab/Source/PlayFabProxy/Public/Proxy/PlayFabClientBPDataModels.h
fordream/UnrealCppSdk
84a38f3f32712334c29704892c5c8358804b40ae
[ "Apache-2.0" ]
1
2020-04-09T10:55:33.000Z
2020-04-09T10:55:33.000Z
// This is automatically generated by PlayFab SDKGenerator. DO NOT modify this manually! #pragma once #include "Core/PlayFabClientAPI.h" #include "Core/PlayFabClientDataModels.h" #include "PlayFabClientBPDataModels.generated.h" USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientAcceptTradeRequest")) struct FBPClientAcceptTradeRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FAcceptTradeRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientAcceptTradeRequestDelegate, const FBPClientAcceptTradeRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientAcceptTradeResponse")) struct FBPClientAcceptTradeResponse { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FAcceptTradeResponse Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientAcceptTradeResponseDelegate, const FBPClientAcceptTradeResponse&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientAddFriendRequest")) struct FBPClientAddFriendRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FAddFriendRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientAddFriendRequestDelegate, const FBPClientAddFriendRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientAddFriendResult")) struct FBPClientAddFriendResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FAddFriendResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientAddFriendResultDelegate, const FBPClientAddFriendResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientAddSharedGroupMembersRequest")) struct FBPClientAddSharedGroupMembersRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FAddSharedGroupMembersRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientAddSharedGroupMembersRequestDelegate, const FBPClientAddSharedGroupMembersRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientAddSharedGroupMembersResult")) struct FBPClientAddSharedGroupMembersResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FAddSharedGroupMembersResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientAddSharedGroupMembersResultDelegate, const FBPClientAddSharedGroupMembersResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientAddUsernamePasswordRequest")) struct FBPClientAddUsernamePasswordRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FAddUsernamePasswordRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientAddUsernamePasswordRequestDelegate, const FBPClientAddUsernamePasswordRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientAddUsernamePasswordResult")) struct FBPClientAddUsernamePasswordResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FAddUsernamePasswordResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientAddUsernamePasswordResultDelegate, const FBPClientAddUsernamePasswordResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientAddUserVirtualCurrencyRequest")) struct FBPClientAddUserVirtualCurrencyRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FAddUserVirtualCurrencyRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientAddUserVirtualCurrencyRequestDelegate, const FBPClientAddUserVirtualCurrencyRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientAndroidDevicePushNotificationRegistrationRequest")) struct FBPClientAndroidDevicePushNotificationRegistrationRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FAndroidDevicePushNotificationRegistrationRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientAndroidDevicePushNotificationRegistrationRequestDelegate, const FBPClientAndroidDevicePushNotificationRegistrationRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientAndroidDevicePushNotificationRegistrationResult")) struct FBPClientAndroidDevicePushNotificationRegistrationResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FAndroidDevicePushNotificationRegistrationResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientAndroidDevicePushNotificationRegistrationResultDelegate, const FBPClientAndroidDevicePushNotificationRegistrationResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientCancelTradeRequest")) struct FBPClientCancelTradeRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FCancelTradeRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientCancelTradeRequestDelegate, const FBPClientCancelTradeRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientCancelTradeResponse")) struct FBPClientCancelTradeResponse { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FCancelTradeResponse Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientCancelTradeResponseDelegate, const FBPClientCancelTradeResponse&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientCartItem")) struct FBPClientCartItem { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FCartItem Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientCartItemDelegate, const FBPClientCartItem&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientCatalogItem")) struct FBPClientCatalogItem { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FCatalogItem Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientCatalogItemDelegate, const FBPClientCatalogItem&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientCatalogItemBundleInfo")) struct FBPClientCatalogItemBundleInfo { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FCatalogItemBundleInfo Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientCatalogItemBundleInfoDelegate, const FBPClientCatalogItemBundleInfo&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientCatalogItemConsumableInfo")) struct FBPClientCatalogItemConsumableInfo { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FCatalogItemConsumableInfo Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientCatalogItemConsumableInfoDelegate, const FBPClientCatalogItemConsumableInfo&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientCatalogItemContainerInfo")) struct FBPClientCatalogItemContainerInfo { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FCatalogItemContainerInfo Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientCatalogItemContainerInfoDelegate, const FBPClientCatalogItemContainerInfo&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientCharacterLeaderboardEntry")) struct FBPClientCharacterLeaderboardEntry { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FCharacterLeaderboardEntry Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientCharacterLeaderboardEntryDelegate, const FBPClientCharacterLeaderboardEntry&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientCharacterResult")) struct FBPClientCharacterResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FCharacterResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientCharacterResultDelegate, const FBPClientCharacterResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientConfirmPurchaseRequest")) struct FBPClientConfirmPurchaseRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FConfirmPurchaseRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientConfirmPurchaseRequestDelegate, const FBPClientConfirmPurchaseRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientConfirmPurchaseResult")) struct FBPClientConfirmPurchaseResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FConfirmPurchaseResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientConfirmPurchaseResultDelegate, const FBPClientConfirmPurchaseResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientConsumeItemRequest")) struct FBPClientConsumeItemRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FConsumeItemRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientConsumeItemRequestDelegate, const FBPClientConsumeItemRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientConsumeItemResult")) struct FBPClientConsumeItemResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FConsumeItemResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientConsumeItemResultDelegate, const FBPClientConsumeItemResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientConsumePSNEntitlementsRequest")) struct FBPClientConsumePSNEntitlementsRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FConsumePSNEntitlementsRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientConsumePSNEntitlementsRequestDelegate, const FBPClientConsumePSNEntitlementsRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientConsumePSNEntitlementsResult")) struct FBPClientConsumePSNEntitlementsResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FConsumePSNEntitlementsResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientConsumePSNEntitlementsResultDelegate, const FBPClientConsumePSNEntitlementsResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientCreateSharedGroupRequest")) struct FBPClientCreateSharedGroupRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FCreateSharedGroupRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientCreateSharedGroupRequestDelegate, const FBPClientCreateSharedGroupRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientCreateSharedGroupResult")) struct FBPClientCreateSharedGroupResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FCreateSharedGroupResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientCreateSharedGroupResultDelegate, const FBPClientCreateSharedGroupResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientCurrency")) struct FBPClientCurrency { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::Currency Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientCurrencyDelegate, const FBPClientCurrency&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientCurrentGamesRequest")) struct FBPClientCurrentGamesRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FCurrentGamesRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientCurrentGamesRequestDelegate, const FBPClientCurrentGamesRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientCurrentGamesResult")) struct FBPClientCurrentGamesResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FCurrentGamesResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientCurrentGamesResultDelegate, const FBPClientCurrentGamesResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientEmptyResult")) struct FBPClientEmptyResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FEmptyResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientEmptyResultDelegate, const FBPClientEmptyResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientFacebookPlayFabIdPair")) struct FBPClientFacebookPlayFabIdPair { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FFacebookPlayFabIdPair Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientFacebookPlayFabIdPairDelegate, const FBPClientFacebookPlayFabIdPair&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientFriendInfo")) struct FBPClientFriendInfo { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FFriendInfo Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientFriendInfoDelegate, const FBPClientFriendInfo&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientGameCenterPlayFabIdPair")) struct FBPClientGameCenterPlayFabIdPair { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FGameCenterPlayFabIdPair Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientGameCenterPlayFabIdPairDelegate, const FBPClientGameCenterPlayFabIdPair&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientGameInfo")) struct FBPClientGameInfo { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FGameInfo Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientGameInfoDelegate, const FBPClientGameInfo&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientGameServerRegionsRequest")) struct FBPClientGameServerRegionsRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FGameServerRegionsRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientGameServerRegionsRequestDelegate, const FBPClientGameServerRegionsRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientGameServerRegionsResult")) struct FBPClientGameServerRegionsResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FGameServerRegionsResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientGameServerRegionsResultDelegate, const FBPClientGameServerRegionsResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientGetAccountInfoRequest")) struct FBPClientGetAccountInfoRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FGetAccountInfoRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientGetAccountInfoRequestDelegate, const FBPClientGetAccountInfoRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientGetAccountInfoResult")) struct FBPClientGetAccountInfoResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FGetAccountInfoResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientGetAccountInfoResultDelegate, const FBPClientGetAccountInfoResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientGetCatalogItemsRequest")) struct FBPClientGetCatalogItemsRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FGetCatalogItemsRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientGetCatalogItemsRequestDelegate, const FBPClientGetCatalogItemsRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientGetCatalogItemsResult")) struct FBPClientGetCatalogItemsResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FGetCatalogItemsResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientGetCatalogItemsResultDelegate, const FBPClientGetCatalogItemsResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientGetCharacterDataRequest")) struct FBPClientGetCharacterDataRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FGetCharacterDataRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientGetCharacterDataRequestDelegate, const FBPClientGetCharacterDataRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientGetCharacterDataResult")) struct FBPClientGetCharacterDataResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FGetCharacterDataResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientGetCharacterDataResultDelegate, const FBPClientGetCharacterDataResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientGetCharacterInventoryRequest")) struct FBPClientGetCharacterInventoryRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FGetCharacterInventoryRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientGetCharacterInventoryRequestDelegate, const FBPClientGetCharacterInventoryRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientGetCharacterInventoryResult")) struct FBPClientGetCharacterInventoryResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FGetCharacterInventoryResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientGetCharacterInventoryResultDelegate, const FBPClientGetCharacterInventoryResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientGetCharacterLeaderboardRequest")) struct FBPClientGetCharacterLeaderboardRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FGetCharacterLeaderboardRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientGetCharacterLeaderboardRequestDelegate, const FBPClientGetCharacterLeaderboardRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientGetCharacterLeaderboardResult")) struct FBPClientGetCharacterLeaderboardResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FGetCharacterLeaderboardResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientGetCharacterLeaderboardResultDelegate, const FBPClientGetCharacterLeaderboardResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientGetCloudScriptUrlRequest")) struct FBPClientGetCloudScriptUrlRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FGetCloudScriptUrlRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientGetCloudScriptUrlRequestDelegate, const FBPClientGetCloudScriptUrlRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientGetCloudScriptUrlResult")) struct FBPClientGetCloudScriptUrlResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FGetCloudScriptUrlResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientGetCloudScriptUrlResultDelegate, const FBPClientGetCloudScriptUrlResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientGetContentDownloadUrlRequest")) struct FBPClientGetContentDownloadUrlRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FGetContentDownloadUrlRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientGetContentDownloadUrlRequestDelegate, const FBPClientGetContentDownloadUrlRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientGetContentDownloadUrlResult")) struct FBPClientGetContentDownloadUrlResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FGetContentDownloadUrlResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientGetContentDownloadUrlResultDelegate, const FBPClientGetContentDownloadUrlResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientGetFriendLeaderboardRequest")) struct FBPClientGetFriendLeaderboardRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FGetFriendLeaderboardRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientGetFriendLeaderboardRequestDelegate, const FBPClientGetFriendLeaderboardRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientGetFriendsListRequest")) struct FBPClientGetFriendsListRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FGetFriendsListRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientGetFriendsListRequestDelegate, const FBPClientGetFriendsListRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientGetFriendsListResult")) struct FBPClientGetFriendsListResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FGetFriendsListResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientGetFriendsListResultDelegate, const FBPClientGetFriendsListResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientGetLeaderboardAroundCharacterRequest")) struct FBPClientGetLeaderboardAroundCharacterRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FGetLeaderboardAroundCharacterRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientGetLeaderboardAroundCharacterRequestDelegate, const FBPClientGetLeaderboardAroundCharacterRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientGetLeaderboardAroundCharacterResult")) struct FBPClientGetLeaderboardAroundCharacterResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FGetLeaderboardAroundCharacterResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientGetLeaderboardAroundCharacterResultDelegate, const FBPClientGetLeaderboardAroundCharacterResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientGetLeaderboardAroundCurrentUserRequest")) struct FBPClientGetLeaderboardAroundCurrentUserRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FGetLeaderboardAroundCurrentUserRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientGetLeaderboardAroundCurrentUserRequestDelegate, const FBPClientGetLeaderboardAroundCurrentUserRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientGetLeaderboardAroundCurrentUserResult")) struct FBPClientGetLeaderboardAroundCurrentUserResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FGetLeaderboardAroundCurrentUserResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientGetLeaderboardAroundCurrentUserResultDelegate, const FBPClientGetLeaderboardAroundCurrentUserResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientGetLeaderboardForUsersCharactersRequest")) struct FBPClientGetLeaderboardForUsersCharactersRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FGetLeaderboardForUsersCharactersRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientGetLeaderboardForUsersCharactersRequestDelegate, const FBPClientGetLeaderboardForUsersCharactersRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientGetLeaderboardForUsersCharactersResult")) struct FBPClientGetLeaderboardForUsersCharactersResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FGetLeaderboardForUsersCharactersResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientGetLeaderboardForUsersCharactersResultDelegate, const FBPClientGetLeaderboardForUsersCharactersResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientGetLeaderboardRequest")) struct FBPClientGetLeaderboardRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FGetLeaderboardRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientGetLeaderboardRequestDelegate, const FBPClientGetLeaderboardRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientGetLeaderboardResult")) struct FBPClientGetLeaderboardResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FGetLeaderboardResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientGetLeaderboardResultDelegate, const FBPClientGetLeaderboardResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientGetPhotonAuthenticationTokenRequest")) struct FBPClientGetPhotonAuthenticationTokenRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FGetPhotonAuthenticationTokenRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientGetPhotonAuthenticationTokenRequestDelegate, const FBPClientGetPhotonAuthenticationTokenRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientGetPhotonAuthenticationTokenResult")) struct FBPClientGetPhotonAuthenticationTokenResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FGetPhotonAuthenticationTokenResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientGetPhotonAuthenticationTokenResultDelegate, const FBPClientGetPhotonAuthenticationTokenResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientGetPlayerTradesRequest")) struct FBPClientGetPlayerTradesRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FGetPlayerTradesRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientGetPlayerTradesRequestDelegate, const FBPClientGetPlayerTradesRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientGetPlayerTradesResponse")) struct FBPClientGetPlayerTradesResponse { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FGetPlayerTradesResponse Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientGetPlayerTradesResponseDelegate, const FBPClientGetPlayerTradesResponse&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientGetPlayFabIDsFromFacebookIDsRequest")) struct FBPClientGetPlayFabIDsFromFacebookIDsRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FGetPlayFabIDsFromFacebookIDsRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientGetPlayFabIDsFromFacebookIDsRequestDelegate, const FBPClientGetPlayFabIDsFromFacebookIDsRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientGetPlayFabIDsFromFacebookIDsResult")) struct FBPClientGetPlayFabIDsFromFacebookIDsResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FGetPlayFabIDsFromFacebookIDsResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientGetPlayFabIDsFromFacebookIDsResultDelegate, const FBPClientGetPlayFabIDsFromFacebookIDsResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientGetPlayFabIDsFromGameCenterIDsRequest")) struct FBPClientGetPlayFabIDsFromGameCenterIDsRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FGetPlayFabIDsFromGameCenterIDsRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientGetPlayFabIDsFromGameCenterIDsRequestDelegate, const FBPClientGetPlayFabIDsFromGameCenterIDsRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientGetPlayFabIDsFromGameCenterIDsResult")) struct FBPClientGetPlayFabIDsFromGameCenterIDsResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FGetPlayFabIDsFromGameCenterIDsResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientGetPlayFabIDsFromGameCenterIDsResultDelegate, const FBPClientGetPlayFabIDsFromGameCenterIDsResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientGetPlayFabIDsFromGoogleIDsRequest")) struct FBPClientGetPlayFabIDsFromGoogleIDsRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FGetPlayFabIDsFromGoogleIDsRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientGetPlayFabIDsFromGoogleIDsRequestDelegate, const FBPClientGetPlayFabIDsFromGoogleIDsRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientGetPlayFabIDsFromGoogleIDsResult")) struct FBPClientGetPlayFabIDsFromGoogleIDsResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FGetPlayFabIDsFromGoogleIDsResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientGetPlayFabIDsFromGoogleIDsResultDelegate, const FBPClientGetPlayFabIDsFromGoogleIDsResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientGetPlayFabIDsFromPSNAccountIDsRequest")) struct FBPClientGetPlayFabIDsFromPSNAccountIDsRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FGetPlayFabIDsFromPSNAccountIDsRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientGetPlayFabIDsFromPSNAccountIDsRequestDelegate, const FBPClientGetPlayFabIDsFromPSNAccountIDsRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientGetPlayFabIDsFromPSNAccountIDsResult")) struct FBPClientGetPlayFabIDsFromPSNAccountIDsResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FGetPlayFabIDsFromPSNAccountIDsResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientGetPlayFabIDsFromPSNAccountIDsResultDelegate, const FBPClientGetPlayFabIDsFromPSNAccountIDsResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientGetPlayFabIDsFromSteamIDsRequest")) struct FBPClientGetPlayFabIDsFromSteamIDsRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FGetPlayFabIDsFromSteamIDsRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientGetPlayFabIDsFromSteamIDsRequestDelegate, const FBPClientGetPlayFabIDsFromSteamIDsRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientGetPlayFabIDsFromSteamIDsResult")) struct FBPClientGetPlayFabIDsFromSteamIDsResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FGetPlayFabIDsFromSteamIDsResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientGetPlayFabIDsFromSteamIDsResultDelegate, const FBPClientGetPlayFabIDsFromSteamIDsResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientGetPublisherDataRequest")) struct FBPClientGetPublisherDataRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FGetPublisherDataRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientGetPublisherDataRequestDelegate, const FBPClientGetPublisherDataRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientGetPublisherDataResult")) struct FBPClientGetPublisherDataResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FGetPublisherDataResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientGetPublisherDataResultDelegate, const FBPClientGetPublisherDataResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientGetPurchaseRequest")) struct FBPClientGetPurchaseRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FGetPurchaseRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientGetPurchaseRequestDelegate, const FBPClientGetPurchaseRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientGetPurchaseResult")) struct FBPClientGetPurchaseResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FGetPurchaseResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientGetPurchaseResultDelegate, const FBPClientGetPurchaseResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientGetSharedGroupDataRequest")) struct FBPClientGetSharedGroupDataRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FGetSharedGroupDataRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientGetSharedGroupDataRequestDelegate, const FBPClientGetSharedGroupDataRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientGetSharedGroupDataResult")) struct FBPClientGetSharedGroupDataResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FGetSharedGroupDataResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientGetSharedGroupDataResultDelegate, const FBPClientGetSharedGroupDataResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientGetStoreItemsRequest")) struct FBPClientGetStoreItemsRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FGetStoreItemsRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientGetStoreItemsRequestDelegate, const FBPClientGetStoreItemsRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientGetStoreItemsResult")) struct FBPClientGetStoreItemsResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FGetStoreItemsResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientGetStoreItemsResultDelegate, const FBPClientGetStoreItemsResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientGetTitleDataRequest")) struct FBPClientGetTitleDataRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FGetTitleDataRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientGetTitleDataRequestDelegate, const FBPClientGetTitleDataRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientGetTitleDataResult")) struct FBPClientGetTitleDataResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FGetTitleDataResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientGetTitleDataResultDelegate, const FBPClientGetTitleDataResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientGetTitleNewsRequest")) struct FBPClientGetTitleNewsRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FGetTitleNewsRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientGetTitleNewsRequestDelegate, const FBPClientGetTitleNewsRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientGetTitleNewsResult")) struct FBPClientGetTitleNewsResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FGetTitleNewsResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientGetTitleNewsResultDelegate, const FBPClientGetTitleNewsResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientGetTradeStatusRequest")) struct FBPClientGetTradeStatusRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FGetTradeStatusRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientGetTradeStatusRequestDelegate, const FBPClientGetTradeStatusRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientGetTradeStatusResponse")) struct FBPClientGetTradeStatusResponse { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FGetTradeStatusResponse Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientGetTradeStatusResponseDelegate, const FBPClientGetTradeStatusResponse&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientGetUserCombinedInfoRequest")) struct FBPClientGetUserCombinedInfoRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FGetUserCombinedInfoRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientGetUserCombinedInfoRequestDelegate, const FBPClientGetUserCombinedInfoRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientGetUserCombinedInfoResult")) struct FBPClientGetUserCombinedInfoResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FGetUserCombinedInfoResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientGetUserCombinedInfoResultDelegate, const FBPClientGetUserCombinedInfoResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientGetUserDataRequest")) struct FBPClientGetUserDataRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FGetUserDataRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientGetUserDataRequestDelegate, const FBPClientGetUserDataRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientGetUserDataResult")) struct FBPClientGetUserDataResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FGetUserDataResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientGetUserDataResultDelegate, const FBPClientGetUserDataResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientGetUserInventoryRequest")) struct FBPClientGetUserInventoryRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FGetUserInventoryRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientGetUserInventoryRequestDelegate, const FBPClientGetUserInventoryRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientGetUserInventoryResult")) struct FBPClientGetUserInventoryResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FGetUserInventoryResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientGetUserInventoryResultDelegate, const FBPClientGetUserInventoryResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientGetUserStatisticsRequest")) struct FBPClientGetUserStatisticsRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FGetUserStatisticsRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientGetUserStatisticsRequestDelegate, const FBPClientGetUserStatisticsRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientGetUserStatisticsResult")) struct FBPClientGetUserStatisticsResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FGetUserStatisticsResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientGetUserStatisticsResultDelegate, const FBPClientGetUserStatisticsResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientGooglePlayFabIdPair")) struct FBPClientGooglePlayFabIdPair { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FGooglePlayFabIdPair Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientGooglePlayFabIdPairDelegate, const FBPClientGooglePlayFabIdPair&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientGrantCharacterToUserRequest")) struct FBPClientGrantCharacterToUserRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FGrantCharacterToUserRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientGrantCharacterToUserRequestDelegate, const FBPClientGrantCharacterToUserRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientGrantCharacterToUserResult")) struct FBPClientGrantCharacterToUserResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FGrantCharacterToUserResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientGrantCharacterToUserResultDelegate, const FBPClientGrantCharacterToUserResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientItemInstance")) struct FBPClientItemInstance { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FItemInstance Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientItemInstanceDelegate, const FBPClientItemInstance&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientItemPuchaseRequest")) struct FBPClientItemPuchaseRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FItemPuchaseRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientItemPuchaseRequestDelegate, const FBPClientItemPuchaseRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientLinkAndroidDeviceIDRequest")) struct FBPClientLinkAndroidDeviceIDRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FLinkAndroidDeviceIDRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientLinkAndroidDeviceIDRequestDelegate, const FBPClientLinkAndroidDeviceIDRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientLinkAndroidDeviceIDResult")) struct FBPClientLinkAndroidDeviceIDResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FLinkAndroidDeviceIDResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientLinkAndroidDeviceIDResultDelegate, const FBPClientLinkAndroidDeviceIDResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientLinkCustomIDRequest")) struct FBPClientLinkCustomIDRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FLinkCustomIDRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientLinkCustomIDRequestDelegate, const FBPClientLinkCustomIDRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientLinkCustomIDResult")) struct FBPClientLinkCustomIDResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FLinkCustomIDResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientLinkCustomIDResultDelegate, const FBPClientLinkCustomIDResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientLinkFacebookAccountRequest")) struct FBPClientLinkFacebookAccountRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FLinkFacebookAccountRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientLinkFacebookAccountRequestDelegate, const FBPClientLinkFacebookAccountRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientLinkFacebookAccountResult")) struct FBPClientLinkFacebookAccountResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FLinkFacebookAccountResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientLinkFacebookAccountResultDelegate, const FBPClientLinkFacebookAccountResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientLinkGameCenterAccountRequest")) struct FBPClientLinkGameCenterAccountRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FLinkGameCenterAccountRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientLinkGameCenterAccountRequestDelegate, const FBPClientLinkGameCenterAccountRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientLinkGameCenterAccountResult")) struct FBPClientLinkGameCenterAccountResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FLinkGameCenterAccountResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientLinkGameCenterAccountResultDelegate, const FBPClientLinkGameCenterAccountResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientLinkGoogleAccountRequest")) struct FBPClientLinkGoogleAccountRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FLinkGoogleAccountRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientLinkGoogleAccountRequestDelegate, const FBPClientLinkGoogleAccountRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientLinkGoogleAccountResult")) struct FBPClientLinkGoogleAccountResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FLinkGoogleAccountResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientLinkGoogleAccountResultDelegate, const FBPClientLinkGoogleAccountResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientLinkIOSDeviceIDRequest")) struct FBPClientLinkIOSDeviceIDRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FLinkIOSDeviceIDRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientLinkIOSDeviceIDRequestDelegate, const FBPClientLinkIOSDeviceIDRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientLinkIOSDeviceIDResult")) struct FBPClientLinkIOSDeviceIDResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FLinkIOSDeviceIDResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientLinkIOSDeviceIDResultDelegate, const FBPClientLinkIOSDeviceIDResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientLinkKongregateAccountRequest")) struct FBPClientLinkKongregateAccountRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FLinkKongregateAccountRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientLinkKongregateAccountRequestDelegate, const FBPClientLinkKongregateAccountRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientLinkKongregateAccountResult")) struct FBPClientLinkKongregateAccountResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FLinkKongregateAccountResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientLinkKongregateAccountResultDelegate, const FBPClientLinkKongregateAccountResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientLinkPSNAccountRequest")) struct FBPClientLinkPSNAccountRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FLinkPSNAccountRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientLinkPSNAccountRequestDelegate, const FBPClientLinkPSNAccountRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientLinkPSNAccountResult")) struct FBPClientLinkPSNAccountResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FLinkPSNAccountResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientLinkPSNAccountResultDelegate, const FBPClientLinkPSNAccountResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientLinkSteamAccountRequest")) struct FBPClientLinkSteamAccountRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FLinkSteamAccountRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientLinkSteamAccountRequestDelegate, const FBPClientLinkSteamAccountRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientLinkSteamAccountResult")) struct FBPClientLinkSteamAccountResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FLinkSteamAccountResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientLinkSteamAccountResultDelegate, const FBPClientLinkSteamAccountResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientLinkXboxAccountRequest")) struct FBPClientLinkXboxAccountRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FLinkXboxAccountRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientLinkXboxAccountRequestDelegate, const FBPClientLinkXboxAccountRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientLinkXboxAccountResult")) struct FBPClientLinkXboxAccountResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FLinkXboxAccountResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientLinkXboxAccountResultDelegate, const FBPClientLinkXboxAccountResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientListUsersCharactersRequest")) struct FBPClientListUsersCharactersRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FListUsersCharactersRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientListUsersCharactersRequestDelegate, const FBPClientListUsersCharactersRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientListUsersCharactersResult")) struct FBPClientListUsersCharactersResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FListUsersCharactersResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientListUsersCharactersResultDelegate, const FBPClientListUsersCharactersResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientLogEventRequest")) struct FBPClientLogEventRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FLogEventRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientLogEventRequestDelegate, const FBPClientLogEventRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientLogEventResult")) struct FBPClientLogEventResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FLogEventResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientLogEventResultDelegate, const FBPClientLogEventResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientLoginResult")) struct FBPClientLoginResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FLoginResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientLoginResultDelegate, const FBPClientLoginResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientLoginWithAndroidDeviceIDRequest")) struct FBPClientLoginWithAndroidDeviceIDRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FLoginWithAndroidDeviceIDRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientLoginWithAndroidDeviceIDRequestDelegate, const FBPClientLoginWithAndroidDeviceIDRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientLoginWithCustomIDRequest")) struct FBPClientLoginWithCustomIDRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FLoginWithCustomIDRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientLoginWithCustomIDRequestDelegate, const FBPClientLoginWithCustomIDRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientLoginWithEmailAddressRequest")) struct FBPClientLoginWithEmailAddressRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FLoginWithEmailAddressRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientLoginWithEmailAddressRequestDelegate, const FBPClientLoginWithEmailAddressRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientLoginWithFacebookRequest")) struct FBPClientLoginWithFacebookRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FLoginWithFacebookRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientLoginWithFacebookRequestDelegate, const FBPClientLoginWithFacebookRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientLoginWithGoogleAccountRequest")) struct FBPClientLoginWithGoogleAccountRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FLoginWithGoogleAccountRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientLoginWithGoogleAccountRequestDelegate, const FBPClientLoginWithGoogleAccountRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientLoginWithIOSDeviceIDRequest")) struct FBPClientLoginWithIOSDeviceIDRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FLoginWithIOSDeviceIDRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientLoginWithIOSDeviceIDRequestDelegate, const FBPClientLoginWithIOSDeviceIDRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientLoginWithKongregateRequest")) struct FBPClientLoginWithKongregateRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FLoginWithKongregateRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientLoginWithKongregateRequestDelegate, const FBPClientLoginWithKongregateRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientLoginWithPlayFabRequest")) struct FBPClientLoginWithPlayFabRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FLoginWithPlayFabRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientLoginWithPlayFabRequestDelegate, const FBPClientLoginWithPlayFabRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientLoginWithPSNRequest")) struct FBPClientLoginWithPSNRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FLoginWithPSNRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientLoginWithPSNRequestDelegate, const FBPClientLoginWithPSNRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientLoginWithSteamRequest")) struct FBPClientLoginWithSteamRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FLoginWithSteamRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientLoginWithSteamRequestDelegate, const FBPClientLoginWithSteamRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientLoginWithXboxRequest")) struct FBPClientLoginWithXboxRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FLoginWithXboxRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientLoginWithXboxRequestDelegate, const FBPClientLoginWithXboxRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientMatchmakeRequest")) struct FBPClientMatchmakeRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FMatchmakeRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientMatchmakeRequestDelegate, const FBPClientMatchmakeRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientMatchmakeResult")) struct FBPClientMatchmakeResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FMatchmakeResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientMatchmakeResultDelegate, const FBPClientMatchmakeResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientMatchmakeStatus")) struct FBPClientMatchmakeStatus { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::MatchmakeStatus Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientMatchmakeStatusDelegate, const FBPClientMatchmakeStatus&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientModifyUserVirtualCurrencyResult")) struct FBPClientModifyUserVirtualCurrencyResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FModifyUserVirtualCurrencyResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientModifyUserVirtualCurrencyResultDelegate, const FBPClientModifyUserVirtualCurrencyResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientOpenTradeRequest")) struct FBPClientOpenTradeRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FOpenTradeRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientOpenTradeRequestDelegate, const FBPClientOpenTradeRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientOpenTradeResponse")) struct FBPClientOpenTradeResponse { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FOpenTradeResponse Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientOpenTradeResponseDelegate, const FBPClientOpenTradeResponse&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientPayForPurchaseRequest")) struct FBPClientPayForPurchaseRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FPayForPurchaseRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientPayForPurchaseRequestDelegate, const FBPClientPayForPurchaseRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientPayForPurchaseResult")) struct FBPClientPayForPurchaseResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FPayForPurchaseResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientPayForPurchaseResultDelegate, const FBPClientPayForPurchaseResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientPaymentOption")) struct FBPClientPaymentOption { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FPaymentOption Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientPaymentOptionDelegate, const FBPClientPaymentOption&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientPlayerLeaderboardEntry")) struct FBPClientPlayerLeaderboardEntry { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FPlayerLeaderboardEntry Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientPlayerLeaderboardEntryDelegate, const FBPClientPlayerLeaderboardEntry&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientPSNAccountPlayFabIdPair")) struct FBPClientPSNAccountPlayFabIdPair { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FPSNAccountPlayFabIdPair Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientPSNAccountPlayFabIdPairDelegate, const FBPClientPSNAccountPlayFabIdPair&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientPurchaseItemRequest")) struct FBPClientPurchaseItemRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FPurchaseItemRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientPurchaseItemRequestDelegate, const FBPClientPurchaseItemRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientPurchaseItemResult")) struct FBPClientPurchaseItemResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FPurchaseItemResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientPurchaseItemResultDelegate, const FBPClientPurchaseItemResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientRedeemCouponRequest")) struct FBPClientRedeemCouponRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FRedeemCouponRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientRedeemCouponRequestDelegate, const FBPClientRedeemCouponRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientRedeemCouponResult")) struct FBPClientRedeemCouponResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FRedeemCouponResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientRedeemCouponResultDelegate, const FBPClientRedeemCouponResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientRefreshPSNAuthTokenRequest")) struct FBPClientRefreshPSNAuthTokenRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FRefreshPSNAuthTokenRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientRefreshPSNAuthTokenRequestDelegate, const FBPClientRefreshPSNAuthTokenRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientRegion")) struct FBPClientRegion { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::Region Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientRegionDelegate, const FBPClientRegion&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientRegionInfo")) struct FBPClientRegionInfo { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FRegionInfo Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientRegionInfoDelegate, const FBPClientRegionInfo&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientRegisterForIOSPushNotificationRequest")) struct FBPClientRegisterForIOSPushNotificationRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FRegisterForIOSPushNotificationRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientRegisterForIOSPushNotificationRequestDelegate, const FBPClientRegisterForIOSPushNotificationRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientRegisterForIOSPushNotificationResult")) struct FBPClientRegisterForIOSPushNotificationResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FRegisterForIOSPushNotificationResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientRegisterForIOSPushNotificationResultDelegate, const FBPClientRegisterForIOSPushNotificationResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientRegisterPlayFabUserRequest")) struct FBPClientRegisterPlayFabUserRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FRegisterPlayFabUserRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientRegisterPlayFabUserRequestDelegate, const FBPClientRegisterPlayFabUserRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientRegisterPlayFabUserResult")) struct FBPClientRegisterPlayFabUserResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FRegisterPlayFabUserResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientRegisterPlayFabUserResultDelegate, const FBPClientRegisterPlayFabUserResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientRemoveFriendRequest")) struct FBPClientRemoveFriendRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FRemoveFriendRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientRemoveFriendRequestDelegate, const FBPClientRemoveFriendRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientRemoveFriendResult")) struct FBPClientRemoveFriendResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FRemoveFriendResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientRemoveFriendResultDelegate, const FBPClientRemoveFriendResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientRemoveSharedGroupMembersRequest")) struct FBPClientRemoveSharedGroupMembersRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FRemoveSharedGroupMembersRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientRemoveSharedGroupMembersRequestDelegate, const FBPClientRemoveSharedGroupMembersRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientRemoveSharedGroupMembersResult")) struct FBPClientRemoveSharedGroupMembersResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FRemoveSharedGroupMembersResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientRemoveSharedGroupMembersResultDelegate, const FBPClientRemoveSharedGroupMembersResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientReportPlayerClientRequest")) struct FBPClientReportPlayerClientRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FReportPlayerClientRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientReportPlayerClientRequestDelegate, const FBPClientReportPlayerClientRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientReportPlayerClientResult")) struct FBPClientReportPlayerClientResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FReportPlayerClientResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientReportPlayerClientResultDelegate, const FBPClientReportPlayerClientResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientRestoreIOSPurchasesRequest")) struct FBPClientRestoreIOSPurchasesRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FRestoreIOSPurchasesRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientRestoreIOSPurchasesRequestDelegate, const FBPClientRestoreIOSPurchasesRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientRestoreIOSPurchasesResult")) struct FBPClientRestoreIOSPurchasesResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FRestoreIOSPurchasesResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientRestoreIOSPurchasesResultDelegate, const FBPClientRestoreIOSPurchasesResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientRunCloudScriptRequest")) struct FBPClientRunCloudScriptRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FRunCloudScriptRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientRunCloudScriptRequestDelegate, const FBPClientRunCloudScriptRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientRunCloudScriptResult")) struct FBPClientRunCloudScriptResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FRunCloudScriptResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientRunCloudScriptResultDelegate, const FBPClientRunCloudScriptResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientSendAccountRecoveryEmailRequest")) struct FBPClientSendAccountRecoveryEmailRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FSendAccountRecoveryEmailRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientSendAccountRecoveryEmailRequestDelegate, const FBPClientSendAccountRecoveryEmailRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientSendAccountRecoveryEmailResult")) struct FBPClientSendAccountRecoveryEmailResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FSendAccountRecoveryEmailResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientSendAccountRecoveryEmailResultDelegate, const FBPClientSendAccountRecoveryEmailResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientSetFriendTagsRequest")) struct FBPClientSetFriendTagsRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FSetFriendTagsRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientSetFriendTagsRequestDelegate, const FBPClientSetFriendTagsRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientSetFriendTagsResult")) struct FBPClientSetFriendTagsResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FSetFriendTagsResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientSetFriendTagsResultDelegate, const FBPClientSetFriendTagsResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientSharedGroupDataRecord")) struct FBPClientSharedGroupDataRecord { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FSharedGroupDataRecord Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientSharedGroupDataRecordDelegate, const FBPClientSharedGroupDataRecord&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientStartGameRequest")) struct FBPClientStartGameRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FStartGameRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientStartGameRequestDelegate, const FBPClientStartGameRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientStartGameResult")) struct FBPClientStartGameResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FStartGameResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientStartGameResultDelegate, const FBPClientStartGameResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientStartPurchaseRequest")) struct FBPClientStartPurchaseRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FStartPurchaseRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientStartPurchaseRequestDelegate, const FBPClientStartPurchaseRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientStartPurchaseResult")) struct FBPClientStartPurchaseResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FStartPurchaseResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientStartPurchaseResultDelegate, const FBPClientStartPurchaseResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientSteamPlayFabIdPair")) struct FBPClientSteamPlayFabIdPair { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FSteamPlayFabIdPair Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientSteamPlayFabIdPairDelegate, const FBPClientSteamPlayFabIdPair&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientStoreItem")) struct FBPClientStoreItem { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FStoreItem Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientStoreItemDelegate, const FBPClientStoreItem&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientSubtractUserVirtualCurrencyRequest")) struct FBPClientSubtractUserVirtualCurrencyRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FSubtractUserVirtualCurrencyRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientSubtractUserVirtualCurrencyRequestDelegate, const FBPClientSubtractUserVirtualCurrencyRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientTitleActivationStatus")) struct FBPClientTitleActivationStatus { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::TitleActivationStatus Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientTitleActivationStatusDelegate, const FBPClientTitleActivationStatus&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientTitleNewsItem")) struct FBPClientTitleNewsItem { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FTitleNewsItem Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientTitleNewsItemDelegate, const FBPClientTitleNewsItem&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientTradeInfo")) struct FBPClientTradeInfo { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FTradeInfo Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientTradeInfoDelegate, const FBPClientTradeInfo&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientTradeStatus")) struct FBPClientTradeStatus { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::TradeStatus Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientTradeStatusDelegate, const FBPClientTradeStatus&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientTransactionStatus")) struct FBPClientTransactionStatus { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::TransactionStatus Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientTransactionStatusDelegate, const FBPClientTransactionStatus&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientUnlinkAndroidDeviceIDRequest")) struct FBPClientUnlinkAndroidDeviceIDRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FUnlinkAndroidDeviceIDRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientUnlinkAndroidDeviceIDRequestDelegate, const FBPClientUnlinkAndroidDeviceIDRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientUnlinkAndroidDeviceIDResult")) struct FBPClientUnlinkAndroidDeviceIDResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FUnlinkAndroidDeviceIDResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientUnlinkAndroidDeviceIDResultDelegate, const FBPClientUnlinkAndroidDeviceIDResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientUnlinkCustomIDRequest")) struct FBPClientUnlinkCustomIDRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FUnlinkCustomIDRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientUnlinkCustomIDRequestDelegate, const FBPClientUnlinkCustomIDRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientUnlinkCustomIDResult")) struct FBPClientUnlinkCustomIDResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FUnlinkCustomIDResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientUnlinkCustomIDResultDelegate, const FBPClientUnlinkCustomIDResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientUnlinkFacebookAccountRequest")) struct FBPClientUnlinkFacebookAccountRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FUnlinkFacebookAccountRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientUnlinkFacebookAccountRequestDelegate, const FBPClientUnlinkFacebookAccountRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientUnlinkFacebookAccountResult")) struct FBPClientUnlinkFacebookAccountResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FUnlinkFacebookAccountResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientUnlinkFacebookAccountResultDelegate, const FBPClientUnlinkFacebookAccountResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientUnlinkGameCenterAccountRequest")) struct FBPClientUnlinkGameCenterAccountRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FUnlinkGameCenterAccountRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientUnlinkGameCenterAccountRequestDelegate, const FBPClientUnlinkGameCenterAccountRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientUnlinkGameCenterAccountResult")) struct FBPClientUnlinkGameCenterAccountResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FUnlinkGameCenterAccountResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientUnlinkGameCenterAccountResultDelegate, const FBPClientUnlinkGameCenterAccountResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientUnlinkGoogleAccountRequest")) struct FBPClientUnlinkGoogleAccountRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FUnlinkGoogleAccountRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientUnlinkGoogleAccountRequestDelegate, const FBPClientUnlinkGoogleAccountRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientUnlinkGoogleAccountResult")) struct FBPClientUnlinkGoogleAccountResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FUnlinkGoogleAccountResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientUnlinkGoogleAccountResultDelegate, const FBPClientUnlinkGoogleAccountResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientUnlinkIOSDeviceIDRequest")) struct FBPClientUnlinkIOSDeviceIDRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FUnlinkIOSDeviceIDRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientUnlinkIOSDeviceIDRequestDelegate, const FBPClientUnlinkIOSDeviceIDRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientUnlinkIOSDeviceIDResult")) struct FBPClientUnlinkIOSDeviceIDResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FUnlinkIOSDeviceIDResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientUnlinkIOSDeviceIDResultDelegate, const FBPClientUnlinkIOSDeviceIDResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientUnlinkKongregateAccountRequest")) struct FBPClientUnlinkKongregateAccountRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FUnlinkKongregateAccountRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientUnlinkKongregateAccountRequestDelegate, const FBPClientUnlinkKongregateAccountRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientUnlinkKongregateAccountResult")) struct FBPClientUnlinkKongregateAccountResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FUnlinkKongregateAccountResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientUnlinkKongregateAccountResultDelegate, const FBPClientUnlinkKongregateAccountResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientUnlinkPSNAccountRequest")) struct FBPClientUnlinkPSNAccountRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FUnlinkPSNAccountRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientUnlinkPSNAccountRequestDelegate, const FBPClientUnlinkPSNAccountRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientUnlinkPSNAccountResult")) struct FBPClientUnlinkPSNAccountResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FUnlinkPSNAccountResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientUnlinkPSNAccountResultDelegate, const FBPClientUnlinkPSNAccountResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientUnlinkSteamAccountRequest")) struct FBPClientUnlinkSteamAccountRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FUnlinkSteamAccountRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientUnlinkSteamAccountRequestDelegate, const FBPClientUnlinkSteamAccountRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientUnlinkSteamAccountResult")) struct FBPClientUnlinkSteamAccountResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FUnlinkSteamAccountResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientUnlinkSteamAccountResultDelegate, const FBPClientUnlinkSteamAccountResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientUnlinkXboxAccountRequest")) struct FBPClientUnlinkXboxAccountRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FUnlinkXboxAccountRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientUnlinkXboxAccountRequestDelegate, const FBPClientUnlinkXboxAccountRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientUnlinkXboxAccountResult")) struct FBPClientUnlinkXboxAccountResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FUnlinkXboxAccountResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientUnlinkXboxAccountResultDelegate, const FBPClientUnlinkXboxAccountResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientUnlockContainerItemRequest")) struct FBPClientUnlockContainerItemRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FUnlockContainerItemRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientUnlockContainerItemRequestDelegate, const FBPClientUnlockContainerItemRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientUnlockContainerItemResult")) struct FBPClientUnlockContainerItemResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FUnlockContainerItemResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientUnlockContainerItemResultDelegate, const FBPClientUnlockContainerItemResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientUpdateCharacterDataRequest")) struct FBPClientUpdateCharacterDataRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FUpdateCharacterDataRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientUpdateCharacterDataRequestDelegate, const FBPClientUpdateCharacterDataRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientUpdateCharacterDataResult")) struct FBPClientUpdateCharacterDataResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FUpdateCharacterDataResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientUpdateCharacterDataResultDelegate, const FBPClientUpdateCharacterDataResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientUpdateSharedGroupDataRequest")) struct FBPClientUpdateSharedGroupDataRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FUpdateSharedGroupDataRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientUpdateSharedGroupDataRequestDelegate, const FBPClientUpdateSharedGroupDataRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientUpdateSharedGroupDataResult")) struct FBPClientUpdateSharedGroupDataResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FUpdateSharedGroupDataResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientUpdateSharedGroupDataResultDelegate, const FBPClientUpdateSharedGroupDataResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientUpdateUserDataRequest")) struct FBPClientUpdateUserDataRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FUpdateUserDataRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientUpdateUserDataRequestDelegate, const FBPClientUpdateUserDataRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientUpdateUserDataResult")) struct FBPClientUpdateUserDataResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FUpdateUserDataResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientUpdateUserDataResultDelegate, const FBPClientUpdateUserDataResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientUpdateUserStatisticsRequest")) struct FBPClientUpdateUserStatisticsRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FUpdateUserStatisticsRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientUpdateUserStatisticsRequestDelegate, const FBPClientUpdateUserStatisticsRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientUpdateUserStatisticsResult")) struct FBPClientUpdateUserStatisticsResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FUpdateUserStatisticsResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientUpdateUserStatisticsResultDelegate, const FBPClientUpdateUserStatisticsResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientUpdateUserTitleDisplayNameRequest")) struct FBPClientUpdateUserTitleDisplayNameRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FUpdateUserTitleDisplayNameRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientUpdateUserTitleDisplayNameRequestDelegate, const FBPClientUpdateUserTitleDisplayNameRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientUpdateUserTitleDisplayNameResult")) struct FBPClientUpdateUserTitleDisplayNameResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FUpdateUserTitleDisplayNameResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientUpdateUserTitleDisplayNameResultDelegate, const FBPClientUpdateUserTitleDisplayNameResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientUserAccountInfo")) struct FBPClientUserAccountInfo { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FUserAccountInfo Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientUserAccountInfoDelegate, const FBPClientUserAccountInfo&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientUserDataPermission")) struct FBPClientUserDataPermission { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::UserDataPermission Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientUserDataPermissionDelegate, const FBPClientUserDataPermission&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientUserDataRecord")) struct FBPClientUserDataRecord { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FUserDataRecord Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientUserDataRecordDelegate, const FBPClientUserDataRecord&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientUserFacebookInfo")) struct FBPClientUserFacebookInfo { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FUserFacebookInfo Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientUserFacebookInfoDelegate, const FBPClientUserFacebookInfo&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientUserGameCenterInfo")) struct FBPClientUserGameCenterInfo { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FUserGameCenterInfo Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientUserGameCenterInfoDelegate, const FBPClientUserGameCenterInfo&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientUserOrigination")) struct FBPClientUserOrigination { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::UserOrigination Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientUserOriginationDelegate, const FBPClientUserOrigination&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientUserPrivateAccountInfo")) struct FBPClientUserPrivateAccountInfo { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FUserPrivateAccountInfo Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientUserPrivateAccountInfoDelegate, const FBPClientUserPrivateAccountInfo&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientUserSteamInfo")) struct FBPClientUserSteamInfo { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FUserSteamInfo Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientUserSteamInfoDelegate, const FBPClientUserSteamInfo&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientUserTitleInfo")) struct FBPClientUserTitleInfo { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FUserTitleInfo Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientUserTitleInfoDelegate, const FBPClientUserTitleInfo&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientValidateAmazonReceiptRequest")) struct FBPClientValidateAmazonReceiptRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FValidateAmazonReceiptRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientValidateAmazonReceiptRequestDelegate, const FBPClientValidateAmazonReceiptRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientValidateAmazonReceiptResult")) struct FBPClientValidateAmazonReceiptResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FValidateAmazonReceiptResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientValidateAmazonReceiptResultDelegate, const FBPClientValidateAmazonReceiptResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientValidateGooglePlayPurchaseRequest")) struct FBPClientValidateGooglePlayPurchaseRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FValidateGooglePlayPurchaseRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientValidateGooglePlayPurchaseRequestDelegate, const FBPClientValidateGooglePlayPurchaseRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientValidateGooglePlayPurchaseResult")) struct FBPClientValidateGooglePlayPurchaseResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FValidateGooglePlayPurchaseResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientValidateGooglePlayPurchaseResultDelegate, const FBPClientValidateGooglePlayPurchaseResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientValidateIOSReceiptRequest")) struct FBPClientValidateIOSReceiptRequest { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FValidateIOSReceiptRequest Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientValidateIOSReceiptRequestDelegate, const FBPClientValidateIOSReceiptRequest&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientValidateIOSReceiptResult")) struct FBPClientValidateIOSReceiptResult { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FValidateIOSReceiptResult Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientValidateIOSReceiptResultDelegate, const FBPClientValidateIOSReceiptResult&, Result); USTRUCT(BlueprintType, meta = (HasNativeBreak = "PlayFabProxy.PFClientProxyLibrary.BreakBPClientVirtualCurrencyRechargeTime")) struct FBPClientVirtualCurrencyRechargeTime { GENERATED_USTRUCT_BODY() public: PlayFab::ClientModels::FVirtualCurrencyRechargeTime Data; }; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBPClientVirtualCurrencyRechargeTimeDelegate, const FBPClientVirtualCurrencyRechargeTime&, Result);
39.747585
185
0.869293
1aafe42133ad89cfd0678f27a6d21e8343cb8584
1,576
h
C
System/Library/PrivateFrameworks/WorkflowUI.framework/WFDrawerVelocityFilter.h
zhangkn/iOS14Header
4323e9459ed6f6f5504ecbea2710bfd6c3d7c946
[ "MIT" ]
1
2020-11-04T15:43:01.000Z
2020-11-04T15:43:01.000Z
System/Library/PrivateFrameworks/WorkflowUI.framework/WFDrawerVelocityFilter.h
zhangkn/iOS14Header
4323e9459ed6f6f5504ecbea2710bfd6c3d7c946
[ "MIT" ]
null
null
null
System/Library/PrivateFrameworks/WorkflowUI.framework/WFDrawerVelocityFilter.h
zhangkn/iOS14Header
4323e9459ed6f6f5504ecbea2710bfd6c3d7c946
[ "MIT" ]
null
null
null
/* * This header is generated by classdump-dyld 1.0 * on Sunday, September 27, 2020 at 12:27:04 PM Mountain Standard Time * Operating System: Version 14.0 (Build 18A373) * Image Source: /System/Library/PrivateFrameworks/WorkflowUI.framework/WorkflowUI * classdump-dyld is licensed under GPLv3, Copyright © 2013-2016 by Elias Limneos. */ #import <WorkflowUI/WorkflowUI-Structs.h> @interface WFDrawerVelocityFilter : NSObject { double _previousTime; double _previousValue; SCD_Struct_WF1 _currentSample; SCD_Struct_WF1 _previousSample; } @property (assign,nonatomic) SCD_Struct_WF1 currentSample; //@synthesize currentSample=_currentSample - In the implementation block @property (assign,nonatomic) SCD_Struct_WF1 previousSample; //@synthesize previousSample=_previousSample - In the implementation block @property (assign,nonatomic) double previousTime; //@synthesize previousTime=_previousTime - In the implementation block @property (assign,nonatomic) double previousValue; //@synthesize previousValue=_previousValue - In the implementation block @property (nonatomic,readonly) double calculatedVelocity; -(void)setPreviousValue:(double)arg1 ; -(void)addSample:(double)arg1 ; -(SCD_Struct_WF1)currentSample; -(void)setPreviousSample:(SCD_Struct_WF1)arg1 ; -(void)setCurrentSample:(SCD_Struct_WF1)arg1 ; -(SCD_Struct_WF1)previousSample; -(double)previousValue; -(void)setPreviousTime:(double)arg1 ; -(double)previousTime; -(double)calculatedVelocity; -(void)resetWithValue:(double)arg1 ; @end
41.473684
147
0.76967
1ab01989c760e3339ba84c73cd3816dcc3ebdfed
2,936
h
C
cpp/util/libevent_wrapper.h
laiqu/certificate-transparency
9e1bd563bf19188373edee5ae7195f9cdced7a74
[ "Apache-2.0" ]
1
2015-04-09T15:34:59.000Z
2015-04-09T15:34:59.000Z
cpp/util/libevent_wrapper.h
laiqu/certificate-transparency
9e1bd563bf19188373edee5ae7195f9cdced7a74
[ "Apache-2.0" ]
null
null
null
cpp/util/libevent_wrapper.h
laiqu/certificate-transparency
9e1bd563bf19188373edee5ae7195f9cdced7a74
[ "Apache-2.0" ]
null
null
null
#ifndef CERT_TRANS_UTIL_LIBEVENT_WRAPPER_H_ #define CERT_TRANS_UTIL_LIBEVENT_WRAPPER_H_ #include <boost/function.hpp> #include <boost/shared_ptr.hpp> #include <boost/thread.hpp> #include <boost/thread.hpp> #include <event2/dns.h> #include <event2/event.h> #include <event2/http.h> #include <vector> #include "base/macros.h" namespace cert_trans { namespace libevent { class Event; class Base { public: typedef boost::function<void(evutil_socket_t, short)> Callback; Base(); ~Base(); void Dispatch(); void DispatchOnce(); void Break(); event* EventNew(evutil_socket_t& sock, short events, Event* event) const; evhttp* HttpNew() const; evdns_base* GetDns(); evhttp_connection* HttpConnectionNew(const std::string& host, unsigned short port); private: event_base* const base_; boost::mutex dns_lock_; evdns_base* dns_; DISALLOW_COPY_AND_ASSIGN(Base); }; class Event { public: typedef boost::function<void(evutil_socket_t, short)> Callback; Event(const Base& base, evutil_socket_t sock, short events, const Callback& cb); ~Event(); void Add(double timeout) const; // Note that this is only public so |Base| can use it. static void Dispatch(evutil_socket_t sock, short events, void* userdata); private: const Callback cb_; event* const ev_; DISALLOW_COPY_AND_ASSIGN(Event); }; class HttpServer { public: typedef boost::function<void(evhttp_request*)> HandlerCallback; explicit HttpServer(const Base& base); ~HttpServer(); void Bind(const char* address, ev_uint16_t port); // Returns false if there was an error adding the handler. bool AddHandler(const std::string& path, const HandlerCallback& cb); private: struct Handler; static void HandleRequest(evhttp_request* req, void* userdata); evhttp* const http_; // Could have been a vector<Handler>, but it is important that // pointers to entries remain valid. std::vector<Handler*> handlers_; DISALLOW_COPY_AND_ASSIGN(HttpServer); }; class HttpRequest { public: typedef boost::function<void(HttpRequest*)> Callback; explicit HttpRequest(const Callback& callback); ~HttpRequest(); evhttp_request* get() { return req_; } private: static void Done(evhttp_request* req, void* userdata); const Callback callback_; evhttp_request* req_; DISALLOW_COPY_AND_ASSIGN(HttpRequest); }; class HttpConnection { public: HttpConnection(const boost::shared_ptr<Base>& base, const evhttp_uri* uri); ~HttpConnection(); // Takes ownership of "req", which will be automatically deleted // after its callback is called. void MakeRequest(HttpRequest* req, evhttp_cmd_type type, const std::string& uri); private: evhttp_connection* const conn_; DISALLOW_COPY_AND_ASSIGN(HttpConnection); }; } // namespace libevent } // namespace cert_trans #endif // CERT_TRANS_UTIL_LIBEVENT_WRAPPER_H_
21.430657
77
0.721049
1ab0436d2bc0dd1d221f620da1647fb4bbbbdbf6
1,182
h
C
applications/physbam/physbam-lib/Public_Library/PhysBAM_Geometry/Basic_Geometry_Intersections/RAY_TRIANGLE_3D_INTERSECTION.h
schinmayee/nimbus
170cd15e24a7a88243a6ea80aabadc0fc0e6e177
[ "BSD-3-Clause" ]
20
2017-07-03T19:09:09.000Z
2021-09-10T02:53:56.000Z
PhysBAM/Public_Library/PhysBAM_Geometry/Basic_Geometry_Intersections/RAY_TRIANGLE_3D_INTERSECTION.h
uwgraphics/PhysicsBasedModeling-Core
dbc65b8e93b1a3d69fcc82aba06d28dc6c0adb8b
[ "BSD-3-Clause" ]
null
null
null
PhysBAM/Public_Library/PhysBAM_Geometry/Basic_Geometry_Intersections/RAY_TRIANGLE_3D_INTERSECTION.h
uwgraphics/PhysicsBasedModeling-Core
dbc65b8e93b1a3d69fcc82aba06d28dc6c0adb8b
[ "BSD-3-Clause" ]
9
2017-09-17T02:05:06.000Z
2020-01-31T00:12:01.000Z
//##################################################################### // Copyright 2009, Jon Gretarsson. // This file is part of PhysBAM whose distribution is governed by the license contained in the accompanying file PHYSBAM_COPYRIGHT.txt. //##################################################################### // Namespace INTERSECTION //##################################################################### #ifndef __RAY_TRIANGLE_3D_INTERSECTION__ #define __RAY_TRIANGLE_3D_INTERSECTION__ #include <PhysBAM_Tools/Vectors/VECTOR_3D.h> #include <PhysBAM_Geometry/Basic_Geometry/BASIC_GEOMETRY_FORWARD.h> namespace PhysBAM{ namespace INTERSECTION{ //##################################################################### template<class T> bool Intersects(RAY<VECTOR<T,3> >& ray,const TRIANGLE_3D<T>& plane,const T thickness_over_two=0); template<class T> bool Lazy_Intersects(RAY<VECTOR<T,3> >& ray,const TRIANGLE_3D<T>& plane,const T thickness_over_two=0); template<class T> bool Closest_Non_Intersecting_Point(RAY<VECTOR<T,3> >& ray,const TRIANGLE_3D<T>& plane,const T thickness_over_two=0); //##################################################################### }; }; #endif
56.285714
135
0.563452
1ab2027fe41f4c64c6b15e891c1aab4f40c2d738
2,654
c
C
mini_b9s_installer/source/draw.c
zoogie/unSAFE_MODE
c563a785041dafe709a1ecb04814084df8fa1b79
[ "MIT" ]
80
2020-04-26T12:04:50.000Z
2021-04-14T08:01:25.000Z
mini_b9s_installer/source/draw.c
TuxSH/unSAFE_MODE
d52ad6d6f817eb30fec0be7e45ad10cf50bf42c0
[ "MIT" ]
1
2020-09-10T09:03:42.000Z
2020-09-22T11:09:42.000Z
mini_b9s_installer/source/draw.c
TuxSH/unSAFE_MODE
d52ad6d6f817eb30fec0be7e45ad10cf50bf42c0
[ "MIT" ]
4
2020-04-29T12:58:16.000Z
2021-05-07T18:16:40.000Z
/* * This file is part of Luma3DS * Copyright (C) 2016 Aurora Wright, TuxSH * * 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. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. * * Additional Terms 7.b of GPLv3 applies to this file: Requiring preservation of specified * reasonable legal notices or author attributions in that material or in the Appropriate Legal * Notices displayed by works containing it. */ /* * Code to print to the screen by mid-kid @CakesFW * https://github.com/mid-kid/CakesForeveryWan */ #include "draw.h" #include "screen.h" #include "strings.h" #include "font.h" static void drawCharacter(char character, u32 posX, u32 posY, u32 color) { u8 *select = fb->top_left; for(u32 y = 0; y < 8; y++) { char charPos = font[character * 8 + y]; for(u32 x = 0; x < 8; x++) if(((charPos >> (7 - x)) & 1) == 1) { u32 screenPos = (posX * SCREEN_HEIGHT * 3 + (SCREEN_HEIGHT - y - posY - 1) * 3) + x * 3 * SCREEN_HEIGHT; select[screenPos] = color >> 16; select[screenPos + 1] = color >> 8; select[screenPos + 2] = color; } } } u32 drawString(const char *string, u32 posX, u32 posY, u32 color) { for(u32 i = 0, line_i = 0; i < strlen(string); i++) switch(string[i]) { case '\n': posY += SPACING_Y; line_i = 0; break; case '\t': line_i += 2; break; default: //Make sure we never get out of the screen if(line_i >= (SCREEN_TOP_WIDTH - posX) / SPACING_X) { posY += SPACING_Y; line_i = 1; //Little offset so we know the same string continues if(string[i] == ' ') break; //Spaces at the start look weird } drawCharacter(string[i], posX + line_i * SPACING_X, posY, color); line_i++; break; } return posY + SPACING_Y; }
31.975904
120
0.57046
1ab9015f398ab499a422a4d5c7021ec1306c05cc
4,492
h
C
src/submodules/operators/int3x3.operators.h
maihd/hlslmath
63dfc2b2de8d2e47e87282d7006b44a6b37401be
[ "Unlicense" ]
3
2019-09-26T16:52:00.000Z
2020-09-06T09:14:36.000Z
src/submodules/operators/int3x3.operators.h
maihd/hlslmath
63dfc2b2de8d2e47e87282d7006b44a6b37401be
[ "Unlicense" ]
null
null
null
src/submodules/operators/int3x3.operators.h
maihd/hlslmath
63dfc2b2de8d2e47e87282d7006b44a6b37401be
[ "Unlicense" ]
null
null
null
inline int3x3 operator-(const int3x3& m) { int3x3 result; result[0] = -m[0]; result[1] = -m[1]; result[2] = -m[2]; return result; } inline const int3x3& operator+(const int3x3& m) { return m; } inline int3x3& operator--(int3x3& m) { --m[0]; --m[1]; --m[2]; return m; } inline int3x3& operator++(int3x3& m) { ++m[0]; ++m[1]; ++m[2]; return m; } inline const int3x3& operator--(int3x3& m, int) { m[0]--; m[1]--; m[2]--; return m; } inline const int3x3& operator++(int3x3& m, int) { m[0]++; m[1]++; m[2]++; return m; } inline int3x3 operator+(const int3x3& a, const int3x3& b) { int3x3 result; result[0] = a[0] + b[0]; result[1] = a[1] + b[1]; result[2] = a[2] + b[2]; return result; } inline int3x3 operator-(const int3x3& a, const int3x3& b) { int3x3 result; result[0] = a[0] - b[0]; result[1] = a[1] - b[1]; result[2] = a[2] - b[2]; return result; } inline int3x3 operator*(const int3x3& a, const int3x3& b) { int3x3 result; result[0] = a[0] * b[0]; result[1] = a[1] * b[1]; result[2] = a[2] * b[2]; return result; } inline int3x3 operator/(const int3x3& a, const int3x3& b) { int3x3 result; result[0] = a[0] / b[0]; result[1] = a[1] / b[1]; result[2] = a[2] / b[2]; return result; } inline int3x3 operator+(const int3x3& a, int b) { int3x3 result; result[0] = a[0] + b; result[1] = a[1] + b; result[2] = a[2] + b; return result; } inline int3x3 operator-(const int3x3& a, int b) { int3x3 result; result[0] = a[0] - b; result[1] = a[1] - b; result[2] = a[2] - b; return result; } inline int3x3 operator*(const int3x3& a, int b) { int3x3 result; result[0] = a[0] * b; result[1] = a[1] * b; result[2] = a[2] * b; return result; } inline int3x3 operator/(const int3x3& a, int b) { int3x3 result; result[0] = a[0] / b; result[1] = a[1] / b; result[2] = a[2] / b; return result; } inline int3x3 operator+(int a, const int3x3& b) { int3x3 result; result[0] = a + b[0]; result[1] = a + b[1]; result[2] = a + b[2]; return result; } inline int3x3 operator-(int a, const int3x3& b) { int3x3 result; result[0] = a - b[0]; result[1] = a - b[1]; result[2] = a - b[2]; return result; } inline int3x3 operator*(int a, const int3x3& b) { int3x3 result; result[0] = a * b[0]; result[1] = a * b[1]; result[2] = a * b[2]; return result; } inline int3x3 operator/(int a, const int3x3& b) { int3x3 result; result[0] = a / b[0]; result[1] = a / b[1]; result[2] = a / b[2]; return result; } inline int3x3& operator+=(int3x3& a, const int3x3& b) { return (a = a + b); } inline int3x3& operator+=(int3x3& a, int b) { return (a = a + b); } inline int3x3& operator-=(int3x3& a, const int3x3& b) { return (a = a - b); } inline int3x3& operator-=(int3x3& a, int b) { return (a = a - b); } inline int3x3& operator*=(int3x3& a, const int3x3& b) { return (a = a * b); } inline int3x3& operator*=(int3x3& a, int b) { return (a = a * b); } inline int3x3& operator/=(int3x3& a, const int3x3& b) { return (a = a / b); } inline int3x3& operator/=(int3x3& a, int b) { return (a = a + b); } inline bool3x3 operator==(const int3x3& a, const int3x3& b) { bool3x3 result; result[0] = a[0] == b[0]; result[1] = a[1] == b[1]; result[2] = a[2] == b[2]; return result; } inline bool3x3 operator!=(const int3x3& a, const int3x3& b) { bool3x3 result; result[0] = a[0] != b[0]; result[1] = a[1] != b[1]; result[2] = a[2] != b[2]; return result; } inline bool3x3 operator<(const int3x3& a, const int3x3& b) { bool3x3 result; result[0] = a[0] < b[0]; result[1] = a[1] < b[1]; result[2] = a[2] < b[2]; return result; } inline bool3x3 operator>(const int3x3& a, const int3x3& b) { bool3x3 result; result[0] = a[0] > b[0]; result[1] = a[1] > b[1]; result[2] = a[2] > b[2]; return result; } inline bool3x3 operator<=(const int3x3& a, const int3x3& b) { bool3x3 result; result[0] = a[0] <= b[0]; result[1] = a[1] <= b[1]; result[2] = a[2] <= b[2]; return result; } inline bool3x3 operator>=(const int3x3& a, const int3x3& b) { bool3x3 result; result[0] = a[0] >= b[0]; result[1] = a[1] >= b[1]; result[2] = a[2] >= b[2]; return result; }
18.186235
59
0.533615
1ab90c66d3607f288bf34049f8541c59cb3ccc9f
151
h
C
project700/src/component128/headers/component128/lib24.h
gradle/perf-native-large
af00fd258fbe9c7d274f386e46847fe12062cc71
[ "Apache-2.0" ]
2
2016-11-23T17:25:24.000Z
2016-11-23T17:25:27.000Z
project700/src/component128/headers/component128/lib24.h
gradle/perf-native-large
af00fd258fbe9c7d274f386e46847fe12062cc71
[ "Apache-2.0" ]
15
2016-09-15T03:19:32.000Z
2016-09-17T09:15:32.000Z
project700/src/component128/headers/component128/lib24.h
gradle/perf-native-large
af00fd258fbe9c7d274f386e46847fe12062cc71
[ "Apache-2.0" ]
2
2019-11-09T16:26:55.000Z
2021-01-13T10:51:09.000Z
#ifndef PROJECT_HEADER_component128_24_H #define PROJECT_HEADER_component128_24_H int component128_24(); #endif // PROJECT_HEADER_component128_24_H
18.875
42
0.86755
1abc7c1fcd18895cd1e8b261eb4e9e7a3f182283
38
h
C
toonz/sources/include/tcg/tcg_unique_ptr.h
jhonsu01/opentoonz
b8b0f90055ae6a54fc5926c46a063d460c9884d7
[ "BSD-3-Clause" ]
1
2018-09-01T15:06:39.000Z
2018-09-01T15:06:39.000Z
toonz/sources/include/tcg/tcg_unique_ptr.h
LibrePhone/opentoonz
cb95a29db4c47ab1f36a6e85a039c4c9c901f88a
[ "BSD-3-Clause" ]
null
null
null
toonz/sources/include/tcg/tcg_unique_ptr.h
LibrePhone/opentoonz
cb95a29db4c47ab1f36a6e85a039c4c9c901f88a
[ "BSD-3-Clause" ]
null
null
null
#pragma once #include "unique_ptr.h"
9.5
23
0.736842
1ac12df19bd9e84d2eb0ee53021a77159cb1ee0e
3,698
h
C
src/Engine/MiniAppKronecker.h
npatel37/dmrgornl
56a24aac92f2bb982dabfdb9f2ff5999bffe44b5
[ "Unlicense" ]
1
2019-11-13T22:13:53.000Z
2019-11-13T22:13:53.000Z
src/Engine/MiniAppKronecker.h
npatel37/dmrgornl
56a24aac92f2bb982dabfdb9f2ff5999bffe44b5
[ "Unlicense" ]
null
null
null
src/Engine/MiniAppKronecker.h
npatel37/dmrgornl
56a24aac92f2bb982dabfdb9f2ff5999bffe44b5
[ "Unlicense" ]
null
null
null
#ifndef MINIAPPKRONECKER_H #define MINIAPPKRONECKER_H #include "Vector.h" #include "IoSimple.h" #include "VerySparseMatrix.h" #include "Matrix.h" namespace Dmrg { template <typename ComplexOrRealType> class MiniAppKronecker { typedef PsimagLite::Vector<SizeType>::Type VectorSizeType; typedef VerySparseMatrix<ComplexOrRealType> SparseMatrixType; typedef PsimagLite::Matrix<ComplexOrRealType> MatrixType; public: MiniAppKronecker(PsimagLite::String filename) { SparseMatrixType hamLeft(static_cast<SizeType>(0)); SparseMatrixType hamRight(static_cast<SizeType>(0)); PsimagLite::IoSimple::In io(filename); VectorSizeType pse; io.read(pse,"#SuperBasisPermutation"); std::cerr<<"Read pse_.size="<<pse.size()<<"\n"; pse_ = pse; for (SizeType i = 0; i < pse_.size(); ++i) pse_[pse[i]] = i; io.readMatrix(hamLeft,"#LeftHamiltonian"); io.move(-20); std::cerr<<"Read H_L square, rank="<<hamLeft.rows()<<"\n"; assert(isHermitian(hamLeft)); io.readMatrix(hamRight,"#RightHamiltonian"); io.move(-2); std::cerr<<"Read H_R square, rank="<<hamRight.rows()<<"\n"; assert(isHermitian(hamRight)); SizeType nLeft = hamLeft.rows(); SizeType nRight = hamRight.cols(); SizeType nSuper = nLeft*nRight; hamSuper_.resize(nSuper,nSuper); hamSuper_.setTo(0.0); buildHLeftAndRight(hamLeft,hamRight); assert(isHermitian(hamSuper_,true)); SizeType counter = 0; while (!io.eof()) { SparseMatrixType Ahat(static_cast<SizeType>(0)); SparseMatrixType B(static_cast<SizeType>(0)); try { io.readMatrix(Ahat,"#Ahat"+ttos(counter)); } catch (std::exception&) { break; } io.move(-20); io.readMatrix(B,"#B"+ttos(counter)); io.move(-20); buildHconnection(Ahat,B); counter++; } assert(isHermitian(hamSuper_,true)); } void printH(std::ostream& os) const { SizeType n = hamSuper_.n_row(); os<<"P1\n"; os<<n<<" "<<n<<"\n"; for (SizeType i = 0; i < n; ++i) { for (SizeType j = 0; j < n; ++j) { if (fabs(hamSuper_(i,j)) < 1e-6) os<<"0 "; else os<<"1 "; } os<<"\n"; } } private: void buildHconnection(const SparseMatrixType Ahat, const SparseMatrixType B) { SizeType nLeft = Ahat.rows(); for (SizeType k = 0; k < Ahat.nonZero(); ++k) { SizeType i = Ahat.getRow(k); SizeType ip = Ahat.getColumn(k); for (SizeType k2 = 0; k2 < B.nonZero(); ++k2) { SizeType j = B.getRow(k2); SizeType jp = B.getColumn(k2); SizeType is = pack(i,j,nLeft); SizeType js = pack(ip,jp,nLeft); hamSuper_(is,js) += Ahat(i,ip)*B(j,jp); } } } void buildHLeftAndRight(const SparseMatrixType hamLeft, const SparseMatrixType hamRight) { SizeType nLeft = hamLeft.rows(); SizeType nRight = hamRight.cols(); // hamLeft for (SizeType k = 0; k < hamLeft.nonZero(); ++k) { SizeType i = hamLeft.getRow(k); SizeType ip = hamLeft.getColumn(k); for (SizeType j = 0; j < nRight; ++j) { SizeType is = pack(i,j,nLeft); SizeType js = pack(ip,j,nLeft); hamSuper_(is,js) += hamLeft(i,ip); } } std::cerr<<"Done hamLeft\n"; // hamRight for (SizeType k = 0; k < hamRight.nonZero(); ++k) { SizeType i = hamRight.getRow(k); SizeType ip = hamRight.getColumn(k); for (SizeType j = 0; j < nLeft; ++j) { SizeType is = pack(j,i,nLeft); SizeType js = pack(j,ip,nLeft); hamSuper_(is,js) += hamRight(i,ip); } } std::cerr<<"Done hamRight\n"; } SizeType pack(SizeType l, SizeType r, SizeType nLeft) const { assert(l + r*nLeft < pse_.size()); return pse_[l + r*nLeft]; } VectorSizeType pse_; MatrixType hamSuper_; }; // class MiniAppKronecker } #endif // MINIAPPKRONECKER_H
24.328947
62
0.640617
1ac41a601ac9ea7236201869fb9a8e469dff0cf1
7,461
h
C
BattleshipAdvancedOld/src/BACharAssets.h
yinkou/BattleshipAdvanced-Arduboy
b8cd3be1c54f2c0ebb1a5acfc1bb2668ff0a6aa9
[ "MIT" ]
null
null
null
BattleshipAdvancedOld/src/BACharAssets.h
yinkou/BattleshipAdvanced-Arduboy
b8cd3be1c54f2c0ebb1a5acfc1bb2668ff0a6aa9
[ "MIT" ]
null
null
null
BattleshipAdvancedOld/src/BACharAssets.h
yinkou/BattleshipAdvanced-Arduboy
b8cd3be1c54f2c0ebb1a5acfc1bb2668ff0a6aa9
[ "MIT" ]
null
null
null
#ifndef CHAR_ASSETS #define CHAR_ASSETS PROGMEM const unsigned char BACharAsset_characterID1[] = { 0x00, 0x00, 0x00, 0x00, 0x80, 0x40, 0x20, 0x38, 0x06, 0x84, 0x84, 0xcc, 0xc8, 0xc8, 0xc4, 0xc2, 0xda, 0x97, 0x20, 0x20, 0x20, 0x40, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1f, 0x20, 0x10, 0x10, 0xff, 0xff, 0x9f, 0x71, 0x7f, 0x7f, 0xff, 0xf1, 0xff, 0x7f, 0x01, 0x01, 0x01, 0x01, 0x80, 0xc0, 0xc0, 0xc0, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x70, 0x18, 0x04, 0xc4, 0x42, 0x02, 0x03, 0x01, 0x01, 0x01, 0x01, 0x01, 0x63, 0x84, 0x0c, 0x30, 0x18, 0x0c, 0x07, 0x8f, 0x6f, 0x1f, 0x0f, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x7e, 0xf9, 0xf8, 0xf8, 0x7f, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x02, 0x02, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; PROGMEM const unsigned char BACharAsset_characterID1_Fill[] = { 0x00, 0x00, 0x00, 0xc0, 0xf0, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xf8, 0xf0, 0xe0, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3f, 0x7f, 0xff, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x07, 0x03, 0xc3, 0xe3, 0xe1, 0xe0, 0xe0, 0xe0, 0xc0, 0x80, 0x00, 0x00, 0x00, 0x00, 0x80, 0xe0, 0xf0, 0xf8, 0xfc, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f, 0x1f, 0x07, 0x00, 0x00, 0x00, 0x7e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0x0f, 0x07, 0x07, 0x03, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; PROGMEM const unsigned char BACharAsset_characterID2[] = { 0x00, 0x00, 0x00, 0x00, 0x80, 0x40, 0x20, 0x38, 0x06, 0x84, 0x84, 0xcc, 0xc8, 0xc8, 0xc4, 0xc2, 0xda, 0x97, 0x20, 0x20, 0x20, 0x40, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1f, 0x20, 0x10, 0x10, 0xff, 0xff, 0x9f, 0x71, 0x7f, 0x7f, 0xff, 0xf1, 0xff, 0x7f, 0x01, 0x01, 0x01, 0x01, 0x80, 0xc0, 0xc0, 0xc0, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x70, 0x18, 0x04, 0xc4, 0x42, 0x02, 0x03, 0x01, 0x01, 0x01, 0x01, 0x01, 0x63, 0x84, 0x0c, 0x30, 0x18, 0x0c, 0x07, 0x8f, 0x6f, 0x1f, 0x0f, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x7e, 0xf9, 0xf8, 0xf8, 0x7f, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x02, 0x02, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; PROGMEM const unsigned char BACharAsset_characterID2_Fill[] = { 0x00, 0x00, 0x00, 0xc0, 0xf0, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xf8, 0xf0, 0xe0, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3f, 0x7f, 0xff, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x07, 0x03, 0xc3, 0xe3, 0xe1, 0xe0, 0xe0, 0xe0, 0xc0, 0x80, 0x00, 0x00, 0x00, 0x00, 0x80, 0xe0, 0xf0, 0xf8, 0xfc, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f, 0x1f, 0x07, 0x00, 0x00, 0x00, 0x7e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0x0f, 0x07, 0x07, 0x03, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; PROGMEM const unsigned char BACharAsset_characterID3[] = { 0x00, 0x00, 0x00, 0x00, 0x80, 0x40, 0x20, 0x38, 0x06, 0x84, 0x84, 0xcc, 0xc8, 0xc8, 0xc4, 0xc2, 0xda, 0x97, 0x20, 0x20, 0x20, 0x40, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1f, 0x20, 0x10, 0x10, 0xff, 0xff, 0x9f, 0x71, 0x7f, 0x7f, 0xff, 0xf1, 0xff, 0x7f, 0x01, 0x01, 0x01, 0x01, 0x80, 0xc0, 0xc0, 0xc0, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x70, 0x18, 0x04, 0xc4, 0x42, 0x02, 0x03, 0x01, 0x01, 0x01, 0x01, 0x01, 0x63, 0x84, 0x0c, 0x30, 0x18, 0x0c, 0x07, 0x8f, 0x6f, 0x1f, 0x0f, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x7e, 0xf9, 0xf8, 0xf8, 0x7f, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x02, 0x02, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; PROGMEM const unsigned char BACharAsset_characterID3_Fill[] = { 0x00, 0x00, 0x00, 0xc0, 0xf0, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xf8, 0xf0, 0xe0, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3f, 0x7f, 0xff, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x07, 0x03, 0xc3, 0xe3, 0xe1, 0xe0, 0xe0, 0xe0, 0xc0, 0x80, 0x00, 0x00, 0x00, 0x00, 0x80, 0xe0, 0xf0, 0xf8, 0xfc, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f, 0x1f, 0x07, 0x00, 0x00, 0x00, 0x7e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0x0f, 0x07, 0x07, 0x03, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; PROGMEM const unsigned char BACharAsset_characterID4[] = { 0x00, 0x00, 0x00, 0x00, 0x80, 0x40, 0x20, 0x38, 0x06, 0x84, 0x84, 0xcc, 0xc8, 0xc8, 0xc4, 0xc2, 0xda, 0x97, 0x20, 0x20, 0x20, 0x40, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1f, 0x20, 0x10, 0x10, 0xff, 0xff, 0x9f, 0x71, 0x7f, 0x7f, 0xff, 0xf1, 0xff, 0x7f, 0x01, 0x01, 0x01, 0x01, 0x80, 0xc0, 0xc0, 0xc0, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x70, 0x18, 0x04, 0xc4, 0x42, 0x02, 0x03, 0x01, 0x01, 0x01, 0x01, 0x01, 0x63, 0x84, 0x0c, 0x30, 0x18, 0x0c, 0x07, 0x8f, 0x6f, 0x1f, 0x0f, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x7e, 0xf9, 0xf8, 0xf8, 0x7f, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x02, 0x02, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; PROGMEM const unsigned char BACharAsset_characterID4_Fill[] = { 0x00, 0x00, 0x00, 0xc0, 0xf0, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xf8, 0xf0, 0xe0, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3f, 0x7f, 0xff, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x07, 0x03, 0xc3, 0xe3, 0xe1, 0xe0, 0xe0, 0xe0, 0xc0, 0x80, 0x00, 0x00, 0x00, 0x00, 0x80, 0xe0, 0xf0, 0xf8, 0xfc, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f, 0x1f, 0x07, 0x00, 0x00, 0x00, 0x7e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0x0f, 0x07, 0x07, 0x03, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; inline const unsigned char* outlineAssetForCharacter(CharacterID characterID){ switch(characterID){ default: case CharacterIDMatt: return BACharAsset_characterID1; case CharacterIDMimi: return BACharAsset_characterID2; case CharacterIDKenji: return BACharAsset_characterID3; case CharacterIDNaru: return BACharAsset_characterID4; } } inline const unsigned char* fillAssetForCharacter(CharacterID characterID){ switch(characterID){ default: case CharacterIDMatt: return BACharAsset_characterID1_Fill; case CharacterIDMimi: return BACharAsset_characterID2_Fill; case CharacterIDKenji: return BACharAsset_characterID3_Fill; case CharacterIDNaru: return BACharAsset_characterID4_Fill; } } #endif
41.220994
78
0.68838
1ac46a5d1be33596b00f1f5ffdd0b0cf4311ba2b
1,758
c
C
Practica 6/Main.c
oscar-gf/Practicas_Microcontroladores
df0f067fc141629dc41a7b0105198318784b2806
[ "Linux-OpenIB" ]
null
null
null
Practica 6/Main.c
oscar-gf/Practicas_Microcontroladores
df0f067fc141629dc41a7b0105198318784b2806
[ "Linux-OpenIB" ]
null
null
null
Practica 6/Main.c
oscar-gf/Practicas_Microcontroladores
df0f067fc141629dc41a7b0105198318784b2806
[ "Linux-OpenIB" ]
null
null
null
#include "device_config.h" #include "practice6.h" #include <math.h> enum port_dir{ output, input }; enum port_DCAC{ digital, analog }; enum led_state{ led_OFF, led_ON }; enum button_state{ pushed, no_pushed }; enum exponent { bbase=2, limit=8}; //Definition of priorities __interrupt( high_priority ) void high_isr ( void ){ Nop( ); // Function to consume one Instruction Cycle } //ISR for low-priority __interrupt( low_priority ) void low_isr ( void ){ Nop( );//Funciton to consume one Instruction Cycle } void portsInit(void); void Larson_Display(void); //Definition of the LED time activation void Larson_Display(void){ int i=0; while (i<7){ LATA = pow(2,i); __delay_ms (DELAY_SWEEP); i++; } i=7; while (i>=0){ LATA = pow(2,i); __delay_ms(DELAY_SWEEP); i--; } return; } void main( void ) { int random; int led; portsInit( ); LATA = 0 ; char inverse; //Definition of infinite cycle for LED's activation while(1){ random = rand()%8; led = pow(2,random); LATA = led; //Activate randomly a LED __delay_ms(DELAY_500); inverse = LATA^0xFF; if (inverse == PORTB){ Larson_Display(); } else{ if (inverse == PORTB){ //Activate Knight Rider or Larson Display __delay_ms(DELAY_250); Larson_Display(); } } } } //Initialization of ports A and B void portsInit( void ){ ANSELB = digital; TRISB = 0b11111111; ANSELA = digital; TRISA = 0b00000000; }
24.416667
58
0.542662
1ac5ec654146088001cedf73267eea53647fdc32
909
h
C
Engine/Console/DXL_Console.h
BielBdeLuna/DarkXL
647f88835b78f0afc595c17ccb7410c0661c93a9
[ "MIT" ]
3
2020-02-21T13:25:46.000Z
2021-02-27T06:49:18.000Z
Engine/Console/DXL_Console.h
BielBdeLuna/DarkXL
647f88835b78f0afc595c17ccb7410c0661c93a9
[ "MIT" ]
null
null
null
Engine/Console/DXL_Console.h
BielBdeLuna/DarkXL
647f88835b78f0afc595c17ccb7410c0661c93a9
[ "MIT" ]
null
null
null
#pragma once #include "Console.h" class Font; class DXL_Console { public: static bool Init(); static void Destroy(); static void SetBackspace(); static void SetEnter(); static void SetKeyDown(int key); static void SetKeyDown_VirtualKey(int key); static void Render(); static void RegisterCmd(const string& itemName, void *ptr, Console::ConsoleItemType type, const string& itemHelp); static void SetFont(Font *pFont); static void Print(const string& szMsg); static void PrintF(const char *pszString, ...); static bool IsActive(); static bool IsPaused(); private: static Console *s_pConsole; static void _DefaultConsoleFunc(const vector<string>& args); static void _Echo(const vector<string>& args); static void _CmdList(const vector<string>& args); static void _Help(const vector<string>& args); static void _ConsoleTex(const vector<string>& args); };
26.735294
116
0.723872
1ac9ff97d708d08fab0104ce397161e1ed31141e
4,001
h
C
simpliciti/simpliciti.h
exosite-garage/cc1111_chronos_uartgw
fdd2dd0478bc1680f7b391814c42d5cc6095454c
[ "BSD-3-Clause-Attribution" ]
7
2015-04-07T20:35:42.000Z
2021-07-19T14:28:10.000Z
simpliciti/simpliciti.h
exosite-garage/cc1111_chronos_uartgw
fdd2dd0478bc1680f7b391814c42d5cc6095454c
[ "BSD-3-Clause-Attribution" ]
null
null
null
simpliciti/simpliciti.h
exosite-garage/cc1111_chronos_uartgw
fdd2dd0478bc1680f7b391814c42d5cc6095454c
[ "BSD-3-Clause-Attribution" ]
2
2018-06-01T08:01:22.000Z
2021-07-19T14:28:58.000Z
// ************************************************************************************************* // // Copyright (C) 2009 Texas Instruments Incorporated - http://www.ti.com/ // // // 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 conditions and the following disclaimer. // // Redistributions in binary form must reproduce the above copyright // notice, this list of conditions and the following disclaimer in the // documentation and/or other materials provided with the // distribution. // // Neither the name of Texas Instruments Incorporated nor the names of // its contributors may be used to endorse or promote products derived // from this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // // ************************************************************************************************* // Generic defines and variables // Macros #define getFlag(val, flag) ((val&flag)==flag) #define setFlag(val, flag) (val|=flag) #define clearFlag(val, flag) (val&=(~flag)) #define toggleFlag(val, flag) (val^=flag) // Entry point into SimpliciTI library extern void simpliciti_main(void); // Maximum data length #define SIMPLICITI_MAX_PAYLOAD_LENGTH (32u) // Data to send / receive extern unsigned char simpliciti_data[SIMPLICITI_MAX_PAYLOAD_LENGTH]; // 1 = send one or more reply packets, 0 = no need to reply extern unsigned char simpliciti_reply; // Radio frequency offset taken from calibration memory // Compensates crystal deviation from 26MHz nominal value extern unsigned char rf_frequoffset; // Flag for status information and external control through USB driver extern volatile unsigned char simpliciti_flag; #define SIMPLICITI_STATUS_LINKING (BIT0) #define SIMPLICITI_STATUS_LINKED (BIT1) #define SIMPLICITI_STATUS_ERROR (BIT2) #define SIMPLICITI_TRIGGER_SEND_DATA (BIT3) #define SIMPLICITI_TRIGGER_RECEIVED_DATA (BIT4) #define SIMPLICITI_TRIGGER_STOP (BIT5) #define SIMPLICITI_TRIGGER_SEND_CMD (BIT6) // --------------------------------------------------------------- // SimpliciTI Sync // 1 = data in buffer, 0 = buffer empty extern unsigned char simpliciti_sync_buffer_status; #define BM_SYNC_DATA_LENGTH (19u) // Device data (0)TYPE (1) - (31) DATA #define SYNC_ED_TYPE_R2R (1u) #define SYNC_ED_TYPE_MEMORY (2u) #define SYNC_ED_TYPE_STATUS (3u) // Host data (0)CMD (1) - (31) DATA #define SYNC_AP_CMD_NOP (1u) #define SYNC_AP_CMD_GET_STATUS (2u) #define SYNC_AP_CMD_SET_WATCH (3u) #define SYNC_AP_CMD_GET_MEMORY_BLOCKS_MODE_1 (4u) #define SYNC_AP_CMD_GET_MEMORY_BLOCKS_MODE_2 (5u) #define SYNC_AP_CMD_ERASE_MEMORY (6u) #define SYNC_AP_CMD_EXIT (7u)
43.021505
100
0.645589
1acb03142a8bc552520df53b662c9dacb6bb2d76
951
c
C
G/03/07/04_geri.c
elsys/c-programming-hw
9c390d97299e4ea41b5516f3ca2904756e722ad0
[ "MIT" ]
18
2016-10-04T14:58:45.000Z
2021-04-12T17:35:30.000Z
G/03/07/04_geri.c
elsys/c-programming-hw
9c390d97299e4ea41b5516f3ca2904756e722ad0
[ "MIT" ]
634
2016-09-27T21:18:53.000Z
2016-12-10T10:31:47.000Z
G/03/07/04_geri.c
elsys/c-programming-hw
9c390d97299e4ea41b5516f3ca2904756e722ad0
[ "MIT" ]
216
2016-09-27T17:15:58.000Z
2019-09-15T03:22:15.000Z
#include <stdio.h> int main(){ int j; int count; int height; int number = 0; scanf("%d", &height); number = (height * height) - (height + (height - 1) + (height - 2) * 2 + 1); printf("\n%d\n", number); for(count = 0; count < height; count++){ int all_symbols = height + (height - 1); for(j = 0; j < height + (height - 1) ; j++){ int symbols = (count * 2) + 1; if(count == 0 && j == (height + (height - 2)) / 2){ printf("*"); }else if(count == height - 1){ printf("*"); }else if(j == all_symbols / 2 - symbols / 2 || j == all_symbols / 2 + symbols / 2) { printf("*"); }else if(j > all_symbols / 2 - symbols / 2 && j < all_symbols / 2 + symbols / 2){ printf("#"); }else{ printf(" "); } } printf("\n"); } return 0; }
30.677419
96
0.412198
1acb3874c6b6f49e6461d1bd4836e5cdd2e72009
698
h
C
HostsManager/HostsManager.h
Mr-zhaohy/HostsManager
b6760587c4625144c7f6654a3148858f662a6447
[ "MIT" ]
null
null
null
HostsManager/HostsManager.h
Mr-zhaohy/HostsManager
b6760587c4625144c7f6654a3148858f662a6447
[ "MIT" ]
null
null
null
HostsManager/HostsManager.h
Mr-zhaohy/HostsManager
b6760587c4625144c7f6654a3148858f662a6447
[ "MIT" ]
null
null
null
// // HostsManager.h // HostsChangeDemo // // Created by Mr_zhaohy on 2017/11/9. // Copyright © 2017年 Mr_zhaohy. All rights reserved. // #import <Foundation/Foundation.h> #define HostsUrl @"url" #define DefaultHosts @"default" @interface HostsManager : NSObject /** 当前设置的url */ @property (nonatomic,copy,readonly) NSString *currentHostsUrl; /** 列出所有的url */ @property (nonatomic,copy,readonly) NSArray *hostsArray; /** 创建单例类 @return HostsManager单例 */ + (instancetype)shared; /** 添加url @param url 新增的url @param isDefault 是否设置为默认 */ - (void)addHostsUrl:(NSString *)url default:(BOOL)isDefault; /** 删除指定url @param url 要删除的url */ - (void)removeHostsUrl:(NSString *)url; @end
14.851064
62
0.702006
1acd6bc5e7f60548cbdd894761e49e78abfe2559
913
h
C
src/serial_command.h
alex-w/NexStarAdapter
5d48ef57ff50366112f011cb3f41139c1ee9ac7d
[ "MIT" ]
18
2017-11-21T18:56:39.000Z
2021-06-20T18:52:14.000Z
src/serial_command.h
juanmb/nextdriver
5d48ef57ff50366112f011cb3f41139c1ee9ac7d
[ "MIT" ]
3
2020-06-28T16:05:17.000Z
2020-08-20T16:38:07.000Z
src/serial_command.h
juanmb/nextdriver
5d48ef57ff50366112f011cb3f41139c1ee9ac7d
[ "MIT" ]
10
2017-11-23T13:58:07.000Z
2020-11-21T19:54:49.000Z
/****************************************************************** Author: Juan Menendez Blanco <juanmb@gmail.com> This code is part of the NextDriver project: https://github.com/juanmb/NextDriver *******************************************************************/ #ifndef _SerialCommand_h_ #define _SerialCommand_h_ #include <inttypes.h> #define MAX_CMD_SIZE 32 #define MAX_COMMANDS 32 typedef void (* cbFunction)(char*); typedef struct commandCallback { char firstChar; uint8_t size; cbFunction function; } commandCallback; class SerialCommand { public: SerialCommand(Stream *device); void readSerial(); int addCommand(const char, uint8_t, cbFunction); private: Stream *stream; commandCallback commandList[MAX_COMMANDS]; char buffer[MAX_CMD_SIZE]; cbFunction cmdFunction; int nCommands; int cmdSize; int bufPos; }; #endif
20.75
68
0.606791
1ace643435f860c88089c8e4dd398a89922ee30b
744
h
C
ArqComputadoras/ASM_AC/proyecto/ASM/source/disassemble.h
AntiDesert5/Ingenieria-en-Computacion-UAEM
02b5713ccd3752566d50d0d16fc7719a00d382f4
[ "MIT" ]
1
2021-08-16T19:44:08.000Z
2021-08-16T19:44:08.000Z
ArqComputadoras/ASM_AC/proyecto/ASM/source/disassemble.h
AntiDesert5/Ingenieria-en-Computacion-UAEM
02b5713ccd3752566d50d0d16fc7719a00d382f4
[ "MIT" ]
null
null
null
ArqComputadoras/ASM_AC/proyecto/ASM/source/disassemble.h
AntiDesert5/Ingenieria-en-Computacion-UAEM
02b5713ccd3752566d50d0d16fc7719a00d382f4
[ "MIT" ]
null
null
null
#ifndef DISASSEMBLE_H #define DISASSEMBLE_H #include <QString> #include "label.h" class MainWindow; class Disassemble{ public: Disassemble(); ~Disassemble(); void getTextEdit1(MainWindow & w); void changeTextEdit2(MainWindow & w); void coeMain(MainWindow & w); private: label labelLib; QString getBinString(QString hexString); QString inString; QStringList instructions; QStringList::const_iterator insIter; QString displayAsm; QString main(QString inst, unsigned int pc); void displayResult(MainWindow & w); void preprocess(); QString getRegName(int n); QString signExtent(QString num, int target); QString zeroExtent(QString num, int target); }; #endif // DISASSEMBLE_H
23.25
48
0.716398
1ace8b94fbd37ca9e10c5528a357e5e110875e95
856
h
C
LEngine/src/LEngine.h
leafvmaple/LOpenGL
58a696c2115078668ffe463c7d219de5f92c4203
[ "MIT" ]
null
null
null
LEngine/src/LEngine.h
leafvmaple/LOpenGL
58a696c2115078668ffe463c7d219de5f92c4203
[ "MIT" ]
null
null
null
LEngine/src/LEngine.h
leafvmaple/LOpenGL
58a696c2115078668ffe463c7d219de5f92c4203
[ "MIT" ]
null
null
null
// // LEngine.h // LEngine // // Created by LeafMaple on 2018/06/20. // Copyright © 2018 LeafMaple. All rights reserved. // #ifndef LEngine_h #define LEngine_h #include "LInterface.h" class L3DModel; class L3DInput; class L3DCamera; class L3DEngine : public IL3DEngine { public: L3DEngine(); virtual ~L3DEngine(); virtual bool Init(L3DWINDOWPARAM& WindowParam); virtual void Uninit(); virtual bool Update(float fDeltaTime); virtual bool IsActive(); public: bool AttachObject(L3DModel* pAction); private: L3DWINDOWPARAM m_WindowParam; bool m_bActive; GLFWwindow* m_pWindow; L3DInput* m_p3DInput; L3DCamera* m_p3DCamera; std::list<L3DModel*> m_ModelList; private: bool UpdateInput(float fDeltaTime); bool UpdateCamera(float fDeltaTime); }; #endif /* LEngine_h */
16.784314
52
0.686916
1acee1769de5d2ce6bcf49d936a9d591eea149d5
320
h
C
app/example/comboapp/dev_info.h
jinlongliu/AliOS-Things
ce051172a775f987183e7aca88bb6f3b809ea7b0
[ "Apache-2.0" ]
4
2019-03-12T11:04:48.000Z
2019-10-22T06:06:53.000Z
app/example/comboapp/dev_info.h
IamBaoMouMou/AliOS-Things
195a9160b871b3d78de6f8cf6c2ab09a71977527
[ "Apache-2.0" ]
3
2018-12-17T13:06:46.000Z
2018-12-28T01:40:59.000Z
app/example/comboapp/dev_info.h
IamBaoMouMou/AliOS-Things
195a9160b871b3d78de6f8cf6c2ab09a71977527
[ "Apache-2.0" ]
2
2018-01-23T07:54:08.000Z
2018-01-23T11:38:59.000Z
#ifndef _DEV_INFO_H_ #define _DEV_INFO_H_ /* for demo only, subject to change to user's specific ones. */ #define PRODUCT_ID 213226 #define DEVICE_SECRET "cNwnA4W7amnkgG6s8zGXSJD3nI1c7kO1" #define DEVICE_NAME "112233445566" #define PRODUCT_KEY "b1XVhqfan1X" #define PRODUCT_SECRET "iX6XqAjaCTXBv4h3" #endif
26.666667
63
0.7875
1acf952377b6467eb113366f90c33ed9a0c77579
3,468
h
C
SRC/COMMON/ITTI_ANALYZER/libui/ui_tree_view.h
zhouxiang93123/openair-cn
18c5858887d73ee811161a28fde3cb7da8af458c
[ "Apache-2.0" ]
4
2020-09-25T05:54:47.000Z
2022-02-22T08:06:21.000Z
SRC/COMMON/ITTI_ANALYZER/libui/ui_tree_view.h
zhouxiang93123/openair-cn
18c5858887d73ee811161a28fde3cb7da8af458c
[ "Apache-2.0" ]
null
null
null
SRC/COMMON/ITTI_ANALYZER/libui/ui_tree_view.h
zhouxiang93123/openair-cn
18c5858887d73ee811161a28fde3cb7da8af458c
[ "Apache-2.0" ]
5
2020-11-11T01:20:50.000Z
2021-04-15T08:25:36.000Z
/* * Copyright (c) 2015, EURECOM (www.eurecom.fr) * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, this * list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * * The views and conclusions contained in the software and documentation are those * of the authors and should not be interpreted as representing official policies, * either expressed or implied, of the FreeBSD Project. */ #ifndef UI_TREE_VIEW_H_ #define UI_TREE_VIEW_H_ #include "ui_filters.h" #include "ui_notifications.h" typedef enum col_type_e { COL_MSG_NUM = 0, COL_LTE_TIME, COL_MESSAGE, COL_FROM_TASK, COL_TO_TASK, COL_INSTANCE, COL_MESSAGE_ID, COL_FROM_TASK_ID, COL_TO_TASK_ID, COL_INSTANCE_ID, COL_FOREGROUND, COL_BACKGROUND, COL_STRIKETHROUGH, COL_STYLE, COL_WEIGHT, COL_UNDERLINE, COL_BUFFER, NUM_COLS } col_type_t; typedef enum ui_tree_view_menu_type_e { MENU_MESSAGE = 0, MENU_FROM_TASK, MENU_TO_TASK, MENU_INSTANCE, NUM_MENU_TYPE, } ui_tree_view_menu_type_t; typedef struct ui_tree_view_menu_enable_s { GtkWidget *menu_enable; ui_filter_item_t *filter_item; } ui_tree_view_menu_enable_t; typedef struct ui_tree_view_menu_color_s { gboolean foreground; ui_tree_view_menu_enable_t *menu_enable; } ui_tree_view_menu_color_t; extern GtkWidget *ui_tree_view_menu; extern ui_tree_view_menu_enable_t ui_tree_view_menu_enable[NUM_MENU_TYPE]; extern GdkEventButton *ui_tree_view_last_event; int ui_tree_view_create(GtkWidget *window, GtkWidget *vbox); int ui_tree_view_new_signal_ind(const uint32_t message_number, const gchar *lte_time, const uint32_t message_id, const char *message_name, const uint32_t origin_task_id, const char *origin_task, const uint32_t destination_task_id, const char *to_task, uint32_t instance, gpointer buffer); void ui_tree_view_destroy_list(GtkWidget *list); void ui_tree_view_select_row(gint row); void ui_tree_view_refilter(void); void ui_tree_view_foreach_message(message_write_callback_t callback, gboolean filter); guint ui_tree_view_get_filtered_number(void); #endif /* UI_TREE_VIEW_H_ */
33.028571
88
0.754037
1acfa00345f83740139975466d6acde744e2a55a
152
c
C
libft/ft_lstadd.c
Foksu/Hive
6729959ec1c32a68135f234286ca06c9ac2109f5
[ "MIT" ]
null
null
null
libft/ft_lstadd.c
Foksu/Hive
6729959ec1c32a68135f234286ca06c9ac2109f5
[ "MIT" ]
null
null
null
libft/ft_lstadd.c
Foksu/Hive
6729959ec1c32a68135f234286ca06c9ac2109f5
[ "MIT" ]
null
null
null
#include "libft.h" void ft_lstadd(t_list **alst, t_list *new) { t_list *elem; elem = new; elem->next = *alst; *alst = elem; }
15.2
43
0.539474
1acffbffc2cc269240315033154a3dcffb154549
2,102
c
C
sway/commands/exec_always.c
pg83/sway
d8011541a6a04642a752eb2de719bd10022d90de
[ "MIT" ]
1
2022-02-08T19:07:24.000Z
2022-02-08T19:07:24.000Z
sway/commands/exec_always.c
pg83/sway
d8011541a6a04642a752eb2de719bd10022d90de
[ "MIT" ]
null
null
null
sway/commands/exec_always.c
pg83/sway
d8011541a6a04642a752eb2de719bd10022d90de
[ "MIT" ]
null
null
null
#define _POSIX_C_SOURCE 200809L #include <stdlib.h> #include <stdint.h> #include <string.h> #include <sys/wait.h> #include <unistd.h> #include <signal.h> #include "sway/commands.h" #include "sway/config.h" #include "sway/server.h" #include "sway/tree/container.h" #include "sway/tree/root.h" #include "sway/tree/workspace.h" #include "log.h" #include "stringop.h" struct cmd_results *cmd_exec_validate(int argc, char **argv) { struct cmd_results *error = NULL; if ((error = checkarg(argc, argv[-1], EXPECTED_AT_LEAST, 1))) { return error; } if (!config->active || config->validating) { return cmd_results_new(CMD_DEFER, NULL); } return error; } struct cmd_results *cmd_exec_process(int argc, char **argv) { struct cmd_results *error = NULL; char *cmd = NULL; if (strcmp(argv[0], "--no-startup-id") == 0) { sway_log(SWAY_INFO, "exec switch '--no-startup-id' not supported, ignored."); --argc; ++argv; if ((error = checkarg(argc, argv[-1], EXPECTED_AT_LEAST, 1))) { return error; } } if (argc == 1 && (argv[0][0] == '\'' || argv[0][0] == '"')) { cmd = strdup(argv[0]); strip_quotes(cmd); } else { cmd = join_args(argv, argc); } sway_log(SWAY_DEBUG, "Executing %s", cmd); pid_t child; // https://stackoverflow.com/questions/7171722/how-can-i-handle-sigchld signal(SIGCHLD, SIG_IGN); if ((child = fork()) == 0) { execlp("sh", "sh", "-c", cmd, (void *)NULL); sway_log_errno(SWAY_ERROR, "execlp failed"); _exit(1); } free(cmd); if (child > 0) { sway_log(SWAY_DEBUG, "Child process created with pid %d", child); root_record_workspace_pid(child); } else { return cmd_results_new(CMD_FAILURE, "fork() failed"); } return cmd_results_new(CMD_SUCCESS, NULL); } struct cmd_results *cmd_exec_always(int argc, char **argv) { struct cmd_results *error; if ((error = cmd_exec_validate(argc, argv))) { return error; } return cmd_exec_process(argc, argv); }
26.948718
85
0.609895
1ad0a243a3fd9c810f986f030156067912f05338
7,384
c
C
main.c
xiangyann/openpose_raise_hand
1e866067b001061a508a413dfbd637ffb4683abe
[ "BSD-2-Clause" ]
null
null
null
main.c
xiangyann/openpose_raise_hand
1e866067b001061a508a413dfbd637ffb4683abe
[ "BSD-2-Clause" ]
null
null
null
main.c
xiangyann/openpose_raise_hand
1e866067b001061a508a413dfbd637ffb4683abe
[ "BSD-2-Clause" ]
1
2019-11-20T08:29:35.000Z
2019-11-20T08:29:35.000Z
#include <stdio.h> #include <stdlib.h> #include <sys/stat.h> #include <string.h> #include <time.h> #include "json.h" #ifdef _WIN32 #include <Windows.h> #else #include <unistd.h> #endif //dirty hacks for higher than implementation double coor_x[100][4]={[0 ... 99][0 ... 3] = 16384}, coor_y[100][4]={[0 ... 99][0 ... 3] = 16384}, coor_int[100][4]={[0 ... 99][0 ... 3] = 16384}; int lefthand[100]={[0 ... 99] = 0},righthand[100]={[0 ... 99] = 0}, hand_int[100]={[0 ... 99] = 0}; //implement if needed //double coor_x_old[100][4]={0}, coor_y_old[100][4]={0}; int num = -1; int num_old = 0; char defaultfilename[16] = "_keypoints.json"; char prependfilename[37] = "/home/e516/openpose_raise_hand/json/"; char filenamestring[13] = "000000000000"; char filename[64] = "/home/e516/openpose_raise_hand/json/000000000000_keypoints.json"; long long int file_i =0; time_t old_result = 0; time_t result; /* gcc main.c json.c -lm */ static void print_depth_shift(int depth) { int j; for (j=0; j < depth; j++) { //printf(" "); } } static void output(); char* body_parts(int x); static void coorx(json_value* value, int x, int y); static void coory(json_value* value, int x, int y); static void spit(json_value* value, int x, int y); static void process_value(json_value* value, int depth, int x); static void process_object(json_value* value, int depth) { int length, x; if (value == NULL) { return; } length = value->u.object.length; for (x = 0; x < length; x++) { print_depth_shift(depth); //printf("object[%d].name = %s\n", x, value->u.object.values[x].name); process_value(value->u.object.values[x].value, depth+1, x); } } static void process_array(json_value* value, int depth) { int length, x; if (value == NULL) { return; } length = value->u.array.length; //printf("array: %d\n", depth); for (x = 0; x < length; x++) { process_value(value->u.array.values[x], depth, x); } } static void process_value(json_value* value, int depth, int x) { int j; char a[100]; if (value == NULL) { return; } if (value->type != json_object) { print_depth_shift(depth); } switch (value->type) { case json_none: // printf("none\n"); break; case json_object: process_object(value, depth+1); break; case json_array: process_array(value, depth+1); break; case json_integer: // printf("int: %10" PRId64 "\n", value->u.integer); break; case json_double: //printf("double: %f\n", value->u.dbl); if(x==0)num++; //printf("%d",x); if(x/3==2 || x/3==3 || x/3==5 || x/3==6){ switch(x/3){ case 2:spit(value, x, 0);break; case 3:spit(value, x, 1);break; case 5:spit(value, x, 2);break; case 6:spit(value, x, 3);break; default:break; } } //if(num > num_old){ //printf("hooman[%d], y2=%f, y3=%f, y5=%f, y6=%f\n",num,coor_y[num][0],coor_y[num][1],coor_y[num][2],coor_y[num][3]); //num_old++; //} break; case json_string: // printf("string: %s\n", value->u.string.ptr); break; case json_boolean: // printf("bool: %d\n", value->u.boolean); break; } } char* body_parts(int x){ switch(x/3){ case 2:return "RShoulder"; case 3:return "RElbow"; case 5:return "LShoulder"; case 6:return "LElbow"; default:return "Unimplemented"; } } static void coorx(json_value* value, int x, int y){ char* part_name=body_parts(x); //doing YOLO //if(coor_x[num][y]!=0)coor_x_old[num][y]=coor_x[num][y]; coor_x[num][y]=value->u.dbl; //printf("x: %d, coor_x[%d][%d] = %f\n",x/3,num,y,coor_x[num][y]); ///printf("Person[%d] %s xcoor=%f, x=%d",num,part_name,coor_x[num][y],x); } static void coory(json_value* value, int x, int y){ //char* part_name=body_parts(x); //YOLO //if(coor_y[num][y]!=0)coor_y_old[num][y]=coor_y[num][y]; coor_y[num][y]=value->u.dbl; //printf("==DEBUG== Human[%d], y2=%f, y3=%f, y5=%f, y6=%f ==DEBUG==\n",num,coor_y[num][0],coor_y[num][1],coor_y[num][2],coor_y[num][3]); //printf("x2=%f, x3=%f, x5=%f, x6=%f\n",coor_x[num][0],coor_x[num][1],coor_x[num][2],coor_x[num][3]); if(coor_y[num][0]-coor_y[num][1]>0.5)righthand[num]=1; if(coor_y[num][2]-coor_y[num][3]>0.5)lefthand[num]=1; output(); //printf("x: %d, coor_x[%d][%d] = %f\n",x/3,num,y,coor_y[num][y]); //printf(", ycoor=%f, y=%d\n",coor_y[num][y],y); } static void output(){ if(num==0)return; //DO SOMETHING HERE!!!!!! result = time(NULL); if(righthand[num])printf("人類 %d 舉起了他的右手 @ %s!\n", num, ctime(&result)); if(lefthand[num])printf("人類 %d 舉起了他的左手@ %s!\n", num, ctime(&result)); } static void spit(json_value* value, int x, int y){ switch(x%3){ case 0:coorx(value, x, y);break; case 1:coory(value, x, y);break; case 2: //confidence, used as counter //printf("x: %d, This is c: %f!\n",x/3,value->u.dbl); //if(y==3)num++; //printf("Y: %d\n",y); break; default:break; } } int main(int argc, char** argv){ FILE *fp; struct stat filestatus; int file_size; long long int file_i = 0; char* file_contents; int pollingDelay = 100; json_char* json; json_value* value; for(file_i = 0;file_i < 999999999999; file_i++){ sprintf(filenamestring, "%012lld", file_i); strcpy(filename, prependfilename); strcat(filename, filenamestring); strcat(filename, defaultfilename); //if file not found if ( stat(filename, &filestatus) != 0) { //printf("Filename: %s\n", filename); file_i--; #ifdef _WIN32 Sleep(pollingDelay); #else usleep(pollingDelay*1000); #endif } else{ //if OOM file_size = filestatus.st_size; file_contents = (char*)malloc(filestatus.st_size); if ( file_contents == NULL) { fprintf(stderr, "Memory error: unable to allocate %d bytes\n", file_size); return 1; } //if no read permission fp = fopen(filename, "rt"); if (fp == NULL) { fprintf(stderr, "Unable to open %s\n", filename); fclose(fp); free(file_contents); return 1; } //if unable to read for some reason if ( fread(file_contents, file_size, 1, fp) != 1 ) { fprintf(stderr, "Unable to read content of %s\n", filename); } fclose(fp); //printf("%s\n", file_contents); json = (json_char*)file_contents; value = json_parse(json,file_size); if (value == NULL) { fprintf(stderr, "Unable to parse data\n"); } process_value(value, 0, 0); json_value_free(value); free(file_contents); /*#ifdef _WIN32 Sleep(pollingDelay); #else usleep(pollingDelay*1000); #endif */ remove(filename); for(int l=0; l<=num; l++){ for(int n=0; n<4; n++){ coor_y[l][n] = 16384.0; coor_x[l][n] = 16384.0; } lefthand[l] = 0; righthand[l] = 0; } num = -1; num_old = 0; } } return 0; }
28.291188
146
0.556203
1ad3fca0f23edfd9198762bfd39069a93d7c0ef9
848
c
C
tests/si_log_tests.c
jvennix-r7/stack_int
763aaa13017ca93f4d5369089206cb5aedaf2526
[ "BSD-4-Clause" ]
1
2017-03-22T03:21:06.000Z
2017-03-22T03:21:06.000Z
tests/si_log_tests.c
jvennix-r7/stack_int
763aaa13017ca93f4d5369089206cb5aedaf2526
[ "BSD-4-Clause" ]
null
null
null
tests/si_log_tests.c
jvennix-r7/stack_int
763aaa13017ca93f4d5369089206cb5aedaf2526
[ "BSD-4-Clause" ]
1
2021-12-08T08:33:41.000Z
2021-12-08T08:33:41.000Z
#include "minunit.h" #include <stack_int.h> #include <string.h> #define CHECK_LOG(X,Y,Z) \ stack_int a; \ si_from_ascii("" #X "", strlen("" #X ""), 10, 10, &a); \ mu_assert(si_log(&a, Y) == Z, "" #X " log base " #Y " = " #Z ""); \ char out[4096]; \ si_to_ascii(&a, out, 4096); \ mu_assert(si_log(&a, Y) == Z, "si_log(" #X ", " #Y ") = \"" #Z "\""); \ return NULL; char *test_si_log_5_b10() { CHECK_LOG(5, 10, 0); } char *test_si_log_1_b10() { CHECK_LOG(1, 10, 0); } char *test_si_log_25_b10() { CHECK_LOG(25, 10, 1); } char *test_si_log_25124124124_b10() { CHECK_LOG(25124124124, 10, 10); } char *all_tests() { mu_suite_start(); mu_run_test(test_si_log_5_b10); mu_run_test(test_si_log_1_b10); mu_run_test(test_si_log_25_b10); mu_run_test(test_si_log_25124124124_b10); return NULL; } RUN_TESTS(all_tests);
20.190476
73
0.627358
1ad449b9cfcf440871de3a2684ad1b5764d405d9
736
c
C
Lista.c
salgado/EstruturaDados
ad8bf2e29c5ee0f404e389af5e75a8454f534e4b
[ "MIT" ]
null
null
null
Lista.c
salgado/EstruturaDados
ad8bf2e29c5ee0f404e389af5e75a8454f534e4b
[ "MIT" ]
null
null
null
Lista.c
salgado/EstruturaDados
ad8bf2e29c5ee0f404e389af5e75a8454f534e4b
[ "MIT" ]
null
null
null
#include <stdlib.h> /* Algoritmo simples para construcao do TAD Lista */ typedef struct no { int info; struct no *prox; } Lista; struct no { int info; struct no *prox; }; typedef struct no Lista; */ Lista *cria() { return NULL; } Lista* insere(int n, Lista* l) { Lista *novo = (Lista*)malloc(sizeof(Lista)); novo->n = n; novo->prox = l; return novo; } void imprime (Lista *l) { Lista *lista; for(lista=l;lista != NULL; lista = lista->prox ) { printf("%d\n", lista->n); } } int main() { Lista *lista; lista = cria(); lista = insere( 1, lista); lista = insere( 11, lista); lista = insere( 13, lista); imprime(lista); return 0; }
12.912281
53
0.552989
1ad44ae31a1dcdddbcb1226690a6e34337724c78
16,393
h
C
system/drivers/st/hts221/hts221.h
li77leprince/STM32_Platform
27fa717be8e876b168d9fa28d8c0adcda04ae4dd
[ "Apache-2.0" ]
119
2016-01-13T18:25:16.000Z
2022-03-18T19:26:55.000Z
system/drivers/st/hts221/hts221.h
li77leprince/STM32_Platform
27fa717be8e876b168d9fa28d8c0adcda04ae4dd
[ "Apache-2.0" ]
62
2016-01-13T06:16:53.000Z
2020-06-09T10:05:53.000Z
system/drivers/st/hts221/hts221.h
li77leprince/STM32_Platform
27fa717be8e876b168d9fa28d8c0adcda04ae4dd
[ "Apache-2.0" ]
100
2016-01-13T05:57:37.000Z
2021-05-11T20:03:27.000Z
/** ****************************************************************************** * @file hts221.h * @author MEMS Application Team * @version V1.2.0 * @date 11-February-2015 * @brief This file contains definitions for the hts221.c * firmware driver. ****************************************************************************** * @attention * * <h2><center>&copy; COPYRIGHT(c) 2015 STMicroelectronics</center></h2> * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * 3. Neither the name of STMicroelectronics nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * ****************************************************************************** */ /* Define to prevent recursive inclusion -------------------------------------*/ #ifndef __HTS221_H #define __HTS221_H #ifdef __cplusplus extern "C" { #endif /* Includes ------------------------------------------------------------------*/ #include "hum_temp.h" /** @addtogroup BSP * @{ */ /** @addtogroup Components * @{ */ /** @addtogroup HTS221 * @{ */ /** @defgroup HTS221_Exported_Defines HTS221_Exported_Defines * @{ */ #ifndef NULL #define NULL (void *) 0 #endif /** * @brief Device Address */ #define HTS221_ADDRESS 0xBE /******************************************************************************/ /*************************** START REGISTER MAPPING **************************/ /******************************************************************************/ /** * @brief Device identification register. * \code * Read * Default value: 0xBC * 7:0 This read-only register contains the device identifier that, for HTS221, is set to BCh. * \endcode */ #define HTS221_WHO_AM_I_ADDR 0x0F /** * @brief Humidity resolution Register * \code * Read/write * Default value: 0x1B * 7:6 RFU * 5:3 AVGT2-AVGT0: Temperature internal average. * AVGT2 | AVGT1 | AVGT0 | Nr. Internal Average * ------------------------------------------------------ * 0 | 0 | 0 | 2 * 0 | 0 | 1 | 4 * 0 | 1 | 0 | 8 * 0 | 1 | 1 | 16 * 1 | 0 | 0 | 32 * 1 | 0 | 1 | 64 * 1 | 1 | 0 | 128 * 1 | 1 | 1 | 256 * * 2:0 AVGH2-AVGH0: Humidity internal average. * AVGH2 | AVGH1 | AVGH0 | Nr. Internal Average * ------------------------------------------------------ * 0 | 0 | 0 | 4 * 0 | 0 | 1 | 8 * 0 | 1 | 0 | 16 * 0 | 1 | 1 | 32 * 1 | 0 | 0 | 64 * 1 | 0 | 1 | 128 * 1 | 1 | 0 | 256 * 1 | 1 | 1 | 512 * * \endcode */ #define HTS221_RES_CONF_ADDR 0x10 /** * @brief INFO Register (LSB data) * \code * Read/write * Default value: 0x00 * 7:0 INFO7-INFO0: Lower part of the INFO reference * used for traceability of the sample. * \endcode */ #define HTS221_INFO_L_ADDR 0x1E /** * @brief INFO & Calibration Version Register (LSB data) * \code * Read/write * Default value: 0x00 * 7:6 CALVER1:CALVER0 * 5:0 INFO13-INFO8: Higher part of the INFO reference * used for traceability of the sample. * \endcode */ #define HTS221_INFO_H_ADDR 0x1F /** * @brief Humidity sensor control register 1 * \code * Read/write * Default value: 0x00 * 7 PD: power down control. 0 - disable; 1 - enable * 6:3 RFU * 2 BDU: block data update. 0 - disable; 1 - enable * 1:0 RFU * \endcode */ #define HTS221_CTRL_REG1_ADDR 0x20 /** * @brief Humidity sensor control register 2 * \code * Read/write * Default value: 0x00 * 7 BOOT: Reboot memory content. 0: normal mode; 1: reboot memory content * 6:3 Reserved. * 2 Reserved. * 1 Reserved. * 0 ONE_SHOT: One shot enable. 0: waiting for start of conversion; 1: start for a new dataset * \endcode */ #define HTS221_CTRL_REG2_ADDR 0x21 /** * @brief Humidity sensor control register 3 * \code * Read/write * Default value: 0x00 * [7] DRDY_H_L: Data Ready output signal active high, low (0: active high -default;1: active low) * [6] PP_OD: Push-pull / Open Drain selection on pin 3 (DRDY) (0: push-pull - default; 1: open drain) * [5:3] Reserved * [2] DRDY_EN: Data Ready enable (0: Data Ready disabled - default;1: Data Ready signal available on pin 3) * [1:0] Reserved * \endcode */ #define HTS221_CTRL_REG3_ADDR 0x22 /** * @brief Status Register * \code * Read * Default value: 0x00 * 7:2 RFU * 1 H_DA: Humidity data available. 0: new data for Humidity is not yet available; 1: new data for Humidity is available. * 0 T_DA: Temperature data available. 0: new data for temperature is not yet available; 1: new data for temperature is available. * \endcode */ #define HTS221_STATUS_REG_ADDR 0x27 /** * @brief Humidity data (LSB). * \code * Read * Default value: 0x00. * POUT7 - POUT0: Humidity data LSB (2's complement) => signed 16 bits * RAW Humidity output data: Hout(%)=(HUMIDITY_OUT_H & HUMIDITY_OUT_L). * \endcode */ #define HTS221_HUMIDITY_OUT_L_ADDR 0x28 /** * @brief Humidity data (MSB). * \code * Read * Default value: 0x00. * POUT7 - POUT0: Humidity data LSB (2's complement) => signed 16 bits * RAW Humidity output data: Hout(%)=(HUMIDITY_OUT_H & HUMIDITY_OUT_L). * \endcode */ #define HTS221_HUMIDITY_OUT_H_ADDR 0x29 /** * @brief Temperature data (LSB). * \code * Read * Default value: 0x00. * TOUT7 - TOUT0: temperature data LSB (2's complement) => signed 16 bits * RAW Temperature output data: Tout (LSB)=(TEMP_OUT_H & TEMP_OUT_L). * \endcode */ #define HTS221_TEMP_OUT_L_ADDR 0x2A /** * @brief Temperature data (MSB). * \code * Read * Default value: 0x00. * TOUT15 - TOUT8: temperature data MSB (2's complement) => signed 16 bits * RAW Temperature output data: Tout (LSB)=(TEMP_OUT_H & TEMP_OUT_L). * \endcode */ #define HTS221_TEMP_OUT_H_ADDR 0x2B /** *@brief Humidity 0 Register in %RH with sensitivity=2 *\code * Read * Value: (Unsigned 8 Bit)/2 *\endcode */ #define HTS221_H0_RH_X2_ADDR 0x30 /** *@brief Humidity 1 Register in %RH with sensitivity=2 *\code * Read * Value: (Unsigned 8 Bit)/2 *\endcode */ #define HTS221_H1_RH_X2_ADDR 0x31 /** *@brief Temperature 0 Register in deg with sensitivity=8 *\code * Read * Value: (Unsigned 16 Bit)/2 *\endcode */ #define HTS221_T0_degC_X8_ADDR 0x32 /** *@brief Temperature 1 Register in deg with sensitivity=8 *\code * Read * Value: (Unsigned 16 Bit)/2 *\endcode */ #define HTS221_T1_degC_X8_ADDR 0x33 /** *@brief Temperature 1/0 MSB Register in deg with sensitivity=8 *\code * Read * Value: (Unsigned 16 Bit)/2 * 3:2 T1(9):T1(8) MSB T1_degC_X8 bits * 1:0 T0(9):T0(8) MSB T0_degC_X8 bits *\endcode */ #define HTS221_T1_T0_MSB_X8_ADDR 0x35 /** *@brief Humidity LOW CALIBRATION Register *\code * Read * Default value: 0x00. * H0_T0_TOUT7 - H0_T0_TOUT0: HUMIDITY data lSB (2's complement) => signed 16 bits *\endcode */ #define HTS221_H0_T0_OUT_L_ADDR 0x36 /** *@brief Humidity LOW CALIBRATION Register *\code * Read * Default value: 0x00. * H0_T0_TOUT15 - H0_T0_TOUT8: HUMIDITY data mSB (2's complement) => signed 16 bits *\endcode */ #define HTS221_H0_T0_OUT_H_ADDR 0x37 /** *@brief Humidity HIGH CALIBRATION Register *\code * Read * Default value: 0x00. * H1_T0_TOUT7 - H1_T0_TOUT0: HUMIDITY data lSB (2's complement) => signed 16 bits *\endcode */ #define HTS221_H1_T0_OUT_L_ADDR 0x3A /** *@brief Humidity HIGH CALIBRATION Register *\code * Read * Default value: 0x00. * H1_T0_TOUT15 - H1_T0_TOUT8: HUMIDITY data mSB (2's complement) => signed 16 bits *\endcode */ #define HTS221_H1_T0_OUT_H_ADDR 0x3B /** * @brief Low Calibration Temperature Register (LSB). * \code * Read * Default value: 0x00. * T0_OUT7 - T0_OUT0: temperature data LSB (2's complement) => signed 16 bits * RAW LOW Calibration data: T0_OUT (LSB)=(T0_OUT_H & T0_OUT_L). * \endcode */ #define HTS221_T0_OUT_L_ADDR 0x3C /** * @brief Low Calibration Temperature Register (MSB) * \code * Read * Default value: 0x00. * T0_OUT15 - T0_OUT8: temperature data MSB (2's complement) => signed 16 bits * RAW LOW Calibration data: T0_OUT (LSB)=(T0_OUT_H & T0_OUT_L). * \endcode */ #define HTS221_T0_OUT_H_ADDR 0x3D /** * @brief Low Calibration Temperature Register (LSB). * \code * Read * Default value: 0x00. * T1_OUT7 - T1_OUT0: temperature data LSB (2's complement) => signed 16 bits * RAW LOW Calibration data: T1_OUT (LSB)=(T1_OUT_H & T1_OUT_L). * \endcode */ #define HTS221_T1_OUT_L_ADDR 0x3E /** * @brief Low Calibration Temperature Register (MSB) * \code * Read * Default value: 0x00. * T1_OUT15 - T1_OUT8: temperature data MSB (2's complement) => signed 16 bits * RAW LOW Calibration data: T1_OUT (LSB)=(T1_OUT_H & T1_OUT_L). * \endcode */ #define HTS221_T1_OUT_H_ADDR 0x3F /******************************************************************************/ /**************************** END REGISTER MAPPING ***************************/ /******************************************************************************/ /** * @brief Multiple Byte. Mask for enabling multiple byte read/write command. */ #define HTS221_I2C_MULTIPLEBYTE_CMD ((uint8_t)0x80) /** * @brief Device Identifier. Default value of the WHO_AM_I register. */ #define I_AM_HTS221 ((uint8_t)0xBC) /** @defgroup HTS221_Power_Mode_Selection_CTRL_REG1 HTS221_Power_Mode_Selection_CTRL_REG1 * @{ */ #define HTS221_MODE_POWERDOWN ((uint8_t)0x00) #define HTS221_MODE_ACTIVE ((uint8_t)0x80) #define HTS221_MODE_MASK ((uint8_t)0x80) /** * @} */ /** @defgroup HTS221_Block_Data_Update_Mode_Selection_CTRL_REG1 HTS221_Block_Data_Update_Mode_Selection_CTRL_REG1 * @{ */ #define HTS221_BDU_CONTINUOUS ((uint8_t)0x00) #define HTS221_BDU_NOT_UNTIL_READING ((uint8_t)0x04) #define HTS221_BDU_MASK ((uint8_t)0x04) /** * @} */ /** @defgroup HTS221_Output_Data_Rate_Selection_CTRL_REG1 HTS221_Output_Data_Rate_Selection_CTRL_REG1 * @{ */ #define HTS221_ODR_ONE_SHOT ((uint8_t)0x00) /*!< Output Data Rate: H - one shot, T - one shot */ #define HTS221_ODR_1Hz ((uint8_t)0x01) /*!< Output Data Rate: H - 1Hz, T - 1Hz */ #define HTS221_ODR_7Hz ((uint8_t)0x02) /*!< Output Data Rate: H - 7Hz, T - 7Hz */ #define HTS221_ODR_12_5Hz ((uint8_t)0x03) /*!< Output Data Rate: H - 12.5Hz, T - 12.5Hz */ #define HTS221_ODR_MASK ((uint8_t)0x03) /** * @} */ /** @defgroup HTS221_Boot_Mode_Selection_CTRL_REG2 HTS221_Boot_Mode_Selection_CTRL_REG2 * @{ */ #define HTS221_BOOT_NORMALMODE ((uint8_t)0x00) #define HTS221_BOOT_REBOOTMEMORY ((uint8_t)0x80) #define HTS221_BOOT_MASK ((uint8_t)0x80) /** * @} */ /** @defgroup HTS221_One_Shot_Selection_CTRL_REG2 HTS221_One_Shot_Selection_CTRL_REG2 * @{ */ #define HTS221_ONE_SHOT_START ((uint8_t)0x01) #define HTS221_ONE_SHOT_MASK ((uint8_t)0x01) /** * @} */ /** @defgroup HTS221_PushPull_OpenDrain_Selection_CTRL_REG3 HTS221_PushPull_OpenDrain_Selection_CTRL_REG3 * @{ */ #define HTS221_PP_OD_PUSH_PULL ((uint8_t)0x00) #define HTS221_PP_OD_OPEN_DRAIN ((uint8_t)0x40) #define HTS221_PP_OD_MASK ((uint8_t)0x40) /** * @} */ /** @defgroup HTS221_Data_Ready_Selection_CTRL_REG3 HTS221_Data_Ready_Selection_CTRL_REG3 * @{ */ #define HTS221_DRDY_DISABLE ((uint8_t)0x00) #define HTS221_DRDY_AVAILABLE ((uint8_t)0x04) #define HTS221_DRDY_MASK ((uint8_t)0x04) /** * @} */ /** @defgroup HTS221_Humidity_Resolution_Selection_RES_CONF HTS221_Humidity_Resolution_Selection_RES_CONF * @{ */ #define HTS221_H_RES_AVG_4 ((uint8_t)0x00) #define HTS221_H_RES_AVG_8 ((uint8_t)0x01) #define HTS221_H_RES_AVG_16 ((uint8_t)0x02) #define HTS221_H_RES_AVG_32 ((uint8_t)0x03) #define HTS221_H_RES_AVG_64 ((uint8_t)0x04) #define HTS221_H_RES_AVG_128 ((uint8_t)0x05) #define HTS221_H_RES_MASK ((uint8_t)0x07) /** * @} */ /** @defgroup HTS221_Temperature_Resolution_Selection_RES_CONF HTS221_Temperature_Resolution_Selection_RES_CONF * @{ */ #define HTS221_T_RES_AVG_2 ((uint8_t)0x00) #define HTS221_T_RES_AVG_4 ((uint8_t)0x08) #define HTS221_T_RES_AVG_8 ((uint8_t)0x10) #define HTS221_T_RES_AVG_16 ((uint8_t)0x18) #define HTS221_T_RES_AVG_32 ((uint8_t)0x20) #define HTS221_T_RES_AVG_64 ((uint8_t)0x28) #define HTS221_T_RES_MASK ((uint8_t)0x38) /** * @} */ /** @defgroup HTS221_Temperature_Humidity_Data_Available_STATUS_REG HTS221_Temperature_Humidity_Data_Available_STATUS_REG * @{ */ #define HTS221_H_DATA_AVAILABLE_MASK ((uint8_t)0x02) #define HTS221_T_DATA_AVAILABLE_MASK ((uint8_t)0x01) /** * @} */ /* Data resolution */ #define HUM_DECIMAL_DIGITS (2) #define TEMP_DECIMAL_DIGITS (2) /** * @} */ /** @defgroup HTS221_Imported_Functions HTS221_Imported_Functions * @{ */ /* HUM_TEMP sensor IO functions */ extern HUM_TEMP_StatusTypeDef HTS221_IO_Init(void); extern HUM_TEMP_StatusTypeDef HTS221_IO_Write(uint8_t* pBuffer, uint8_t DeviceAddr, uint8_t RegisterAddr, uint16_t NumByteToWrite); extern HUM_TEMP_StatusTypeDef HTS221_IO_Read(uint8_t* pBuffer, uint8_t DeviceAddr, uint8_t RegisterAddr, uint16_t NumByteToRead); extern void HTS221_IO_ITConfig( void ); /** * @} */ /* ------------------------------------------------------- */ /* Here you should declare the internal struct of */ /* extended features of HTS221. See the example of */ /* LSM6DS3 in lsm6ds3.h */ /* ------------------------------------------------------- */ /** @addtogroup HTS221_Exported_Variables HTS221_Exported_Variables * @{ */ /* HUM_TEMP sensor driver structure */ extern HUM_TEMP_DrvTypeDef Hts221Drv; extern HUM_TEMP_DrvExtTypeDef Hts221Drv_ext; /** * @} */ /** * @} */ /** * @} */ /** * @} */ #ifdef __cplusplus } #endif #endif /* __HTS221_H */ /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
27.321667
132
0.596779
1ad5f31be5d62e880f8eadc7fdd955132e5fab4c
16,153
h
C
admin-manual/dot-style.h
ecs-org/ecs-docs
0d685db17731a35c90852d7f75fbdf3791bd696c
[ "Apache-2.0" ]
1
2020-01-04T05:51:39.000Z
2020-01-04T05:51:39.000Z
admin-manual/dot-style.h
ecs-org/ecs-docs
0d685db17731a35c90852d7f75fbdf3791bd696c
[ "Apache-2.0" ]
null
null
null
admin-manual/dot-style.h
ecs-org/ecs-docs
0d685db17731a35c90852d7f75fbdf3791bd696c
[ "Apache-2.0" ]
1
2021-11-23T15:41:01.000Z
2021-11-23T15:41:01.000Z
#### perform execution via cpp | dot #ifndef INITSTYLE #define WITH_ROLE #define WITH_REQ #### general macros ######################################### #define _QUOTEME(x) #x #define QUOTEME(x) _QUOTEME(x) #define startpoint(name) { rank=source name_begin [shape=point style=filled fillcolor=black label=""]} #define endpoint(name) { rank=sink name_end [shape=doublecircle style=filled fillcolor=black label=""]} #define END } #### general style ######################################### #define INITSTYLE style=rounded; compound=True; fontname=Helvetica; \ edge [style=bold fontname=Helvetica]; node [fontname=Helvetica]; // rounded style, helvetica as font, activate cluster connections ### Grouping ######################################### #define tosource(nodes...) {rank=source nodes} #define tosink(nodes...) {rank=sink nodes} #define tostart(nodes...) {rank=min nodes} #define toend(nodes...) {rank=max nodes} #define group(nodes...) {rank=same nodes} #define pair(x,y) subgraph x##y {rank=same; x y} ### Cluster handling ######################################### #define fromcluster(clustername,name) name [ltail=cluster_##clustername] #define tocluster(clustername,name) name [lhead=cluster_##clustername] #define cluster(name,longname,additional...) subgraph cluster##_##name { additional label=longname; #define rolecluster(name,longname,additional...) cluster (name,longname, additional begin_##name;) #define extcluster(name,longname,additional...) \ cluster(name,longname, graph [color="grey" style=filled] node [bgcolor="white"] additional) #define putcluster(first,anchor) { rank=same; anchor first } #define endcluster } ### actor handling ######################################### #ifdef WITH_ROLE #define showactor(name,longname...) { name [shape=plaintext color=ROLECOLOR label=<\ <TABLE BORDER="0" CELLBORDER="0" CELLSPACING="0" >\ <TR><TD><IMG SRC="actor3.png"/></TD></TR><TR ><TD rowspan="2"> longname </TD></TR></TABLE>>]} #define showrole(who,nodename) showactor(nodename,who##BRName) #define rolename(who) QUOTEME(who##Name) #define role(who,what,additional...) { what [style=filled color=who##Color additional]} #define appName Presenter #define appBRName Presenter #define appColor "/set312/5" #define secName EC-Office #define secBRName EC-Office #define secColor "/set312/7" #define meetsecName EC-Meeting-Secretary #define meetsecBRName EC-Meeting<br/>Secretary #define meetsecColor "/set312/1" #define revName EC-Internal-Review #define revBRName EC-Internal<br/>Review #define revColor "/set312/8" #define execName EC-Executive-Board #define execBRName EC-Executive<br/>Board #define execColor "/set312/4" #define signName EC-Signing #define signBRName EC-Signing #define signColor "/set312/12" #define statName EC-Statistic #define statBRName EC-Statistic #define statColor "darkolivegreen4" #define notrevName EC-Notification-Review #define notrevBRName EC-Notification<br/>Review #define notrevColor "/set312/10" #define insrevName EC-Insurance-Review #define insrevBRName EC-Insurance<br/>Review #define insrevColor "grey78" #define thesisrevName EC-Thesis-Review #define thesisrevBRName EC-Thesis<br/>Review #define thesisrevColor "khaki4" #define thesisexecName EC-Thesis-Executive #define thesisexecBRName EC-Thesis<br/>Executive #define thesisexecColor "khaki3" #define boardName Board-Member #define boardBRName Board<br/>Member #define boardColor "/set312/6" #define extrevName External-Reviewer #define extrevBRName External<br/>Reviewer #define extrevColor "peru" #define unknownName Unknown-Actor #define unknownBRName Unknown<br/>Actor #define unknownColor "/set312/9" #define autoName "Automatic--Transition" #define autoBRName System #define autoColor "/set312/9" #else #define role(who,what) { } #define rolename(who) { } #define showrole(name,description...} { style=invis ; name} #endif ### Requirement handling ######################################### #ifdef WITH_REQ #define req(name,text...) { name [LINESTYLE, color=DEFINITIONCOLOR]; \ name [shape=DEFINITIONSHAPE, color=DEFINITIONCOLOR] } #else #define req(name,text...) { style=invis; name} #endif ### activity workflow handling ######################################### ### workflow settings #define TASKCOLOR lightblue #define AUTOTASKCOLOR lightgrey #define EXTERNALTASKCOLOR maroon2 #define DOCUMENTCOLOR darkgoldenrod1 #define CASECOLOR yellow #define SWITCHCOLOR deepskyblue #define YESCOLOR green #define NOCOLOR firebrick1 ### workflow macros #define WORKFLOW(longname) digraph S { label=longname; INITSTYLE #define case(short,longname...) { short [shape=diamond style=filled color="black" fillcolor=CASECOLOR \ label=<<TABLE BORDER="0" CELLBORDER="0" CELLSPACING="0" >\ <TR><TD> longname </TD></TR></TABLE>>] } #define switch(from,to,labelname...) from -> to [label=QUOTEME(labelname) color=SWITCHCOLOR]; #define yesno(short,x,y,long...) case(short,long);\ short -> x [label="yes" color=YESCOLOR]; \ short -> y [label="no" color=NOCOLOR] #define stateyesno(short,x,y,statex,statey,long...) case(short,long);\ short -> x [label=QUOTEME(statex) color=YESCOLOR]; \ short -> y [label=QUOTEME(statey) color=NOCOLOR] #define yesnogroup(short,x,y,long...) pair(x,y) yesno(short,x,y,long) #define distributor(name,additional...) { name [shape=hexagon style=filled color=autoColor label=QUOTEME(additional) ] } #define collector(name,additional...) distributor(name,additional) #define barrier(name,additional...) distributor(name,additional) #define document(short,nr,longname...) { short [shape=invhouse style=filled fillcolor=DOCUMENTCOLOR \ label=<<TABLE BORDER="0" CELLBORDER="0" CELLSPACING="0" >\ <TR><TD> longname </TD></TR></TABLE>>] } #define external(short,nr,longname...) { short [shape=ellipse style=filled fillcolor=EXTERNALTASKCOLOR \ label=<<TABLE BORDER="0" CELLBORDER="0" CELLSPACING="0" >\ <TR><TD> longname </TD></TR></TABLE>>] } #define olddoit(tablestyle,short,nr,where,how,longname...) { short [shape=none label=<\ <TABLE BORDER="0" CELLBORDER="1" CELLSPACING="0" tablestyle>\ <TR><TD WIDTH="10"> nr </TD>\ <TD ROWSPAN="2"> longname </TD>\ <TD WIDTH="10"> where </TD></TR>\ <TR><TD WIDTH="10"> how </TD><TD> </TD></TR>\ </TABLE>>]} //#define task(short,nr,longname...) doit(BGCOLOR=QUOTEME(TASKCOLOR),short,nr,EC,,longname) //#define autotask(short,nr,longname...) doit(BGCOLOR=QUOTEME(AUTOTASKCOLOR),short,nr,EC,A,longname) #define _DOIT(who,short,nr,how,longname...) { short [shape=none label=<\ <TABLE BORDER="0" CELLBORDER="1" CELLSPACING="0" BGCOLOR=who##Color>\ <TR><TD WIDTH="10" ALIGN="LEFT"> nr </TD>\ <TD WIDTH="90" ROWSPAN="2" ALIGN="CENTER"> longname</TD>\ <TD WIDTH="10" ROWSPAN="2" ALIGN="RIGHT"> who##BRName </TD></TR>\ <TR><TD WIDTH="10" ALIGN="LEFT"> how </TD></TR>\ </TABLE>>]} #define task(who,short,nr,longname...) _DOIT(who,short,nr,,longname) #define roletask(who,short,nr,longname...) _DOIT(who,short,nr,,longname) #define autotask(short,nr,longname...) _DOIT(auto,short,nr,A,longname) ### activity workflow legend ######################################### #define WORKFLOWLEGEND cluster(workflow_legend,"Activity Workflow Legend")\ edge [style=invis]\ ratio=fill\ \ exampletask -> exampleautotask -> exampledocument -> examplebarrier -> examplequestion\ \ {rank=same\ task(sec,exampletask,1,Human Task) -> taskdescription;\ taskdescription [shape=record, label="Top-Left: Use-case ID, Top-Right: Actor\n Center: Operation performed\nFillColor: Taken from Actor"]\ }\ \ {rank=same\ autotask(exampleautotask,,Computer Task) -> autotaskdescription;\ autotaskdescription [shape=record, label="Top-Left: Use-case ID (if applicable)\n Top-Right: System as Actor\n Bottom-Left: 'A' for automatic operation\n Center: Operation automatically performed"]\ }\ \ {rank=same\ document(exampledocument,,Example Document) -> documentdescription;\ documentdescription [shape=record, label="Paper or Screen Report"]\ }\ \ {rank=same\ barrier(examplebarrier,Example Barrier) -> barrierdescription;\ barrierdescription [shape=record, label="Collector for all incoming edges\nwaits until all of them arrived\nDistributor of all outgoing edges\nstarts all of them in parallel"]\ }\ \ {edge [style=solid] yesno(examplequestion,questionyes,questionno,Example Decision)}\ {rank=same edge [style=invis] examplequestion -> questiondescription}\ questiondescription [shape=record, label="Decision to make,\n yes=green, no=red"]\ } ### processflow handling ######################################### ### state colors #define NORMALCOLOR black #define CONDITIONALCOLOR darkviolet #define INDIRECTCOLOR black #define AUTOMATICCOLOR grey #define PASSCOLOR "forestgreen:firebrick" #define PASSSTYLE style=dashed, penwidth=2 #define PREREQUISITECOLOR "/paired12/12" ### brown #define SETSTATECOLOR "/paired12/4" ### green #define SETSTATERETURNCOLOR "/paired12/2" ### blueviolet #define CREATEANDSETCOLOR "/paired12/8" ### yellow #define ADDVALUECOLOR "/paired12/5" ### maroon2 #define CREATEANDADDVALUECOLOR "/paired12/6" ### red ### state #define STATESHAPE ellipse #define STATESTYLE solid #define MACROSTATESHAPE shape=hexagon style=filled color=black fillcolor=orange #define DATASETSHAPE shape=house style=filled color=black fillcolor=olivedrab4 #define OBJECTSHAPE shape=invtrapezium style=filled color=olivedrab3 #### role #define ROLESHAPE trapezium #define ROLECOLOR lightblue #### definition #define DEFINITIONSHAPE box #define DEFINITIONCOLOR orange #### arrows for states #define CREATEARROW normalvee #define VALUEARROW diamond #define CREATEVALUEARROW diamondvee #define PREREQUISITEARROW normalonormal #define ARROWSIZE 2 #define LINEWIDTH 3 #define LINETYPE dashed #define LINESTYLE style=LINETYPE, penwidth=LINEWIDTH, arrowsize=ARROWSIZE ### minlen=2 ### processflow macros ######################################### #define PROCESSFLOW(longname) digraph S { label=longname; INITSTYLE INITPROCESSFLOW #define INITPROCESSFLOW node [ shape=STATESHAPE, style=STATESTYLE]; // Initial node styling ### State Handling #define state(from,to,morestyle...) from -> to \ [style=STATESTYLE morestyle] #define automatic(from,to,morestyle...) from -> to \ [style=STATESTYLE penwidth=LINEWIDTH color=AUTOMATICCOLOR morestyle] #define indirect(from,to,morestyle...) from -> to \ [style=LINETYPE, color=INDIRECTCOLOR morestyle] #define pass(from,to,morestyle...) from -> to \ [PASSSTYLE, color=PASSCOLOR, dir=both, minlen=1, morestyle] #define conditional(from,to,morestyle...) from -> to \ [LINESTYLE, color=CONDITIONALCOLOR morestyle] #define setstate(from,to,morestyle...) from -> to \ [LINESTYLE, color=SETSTATECOLOR morestyle] #define return(from,to,morestyle...) from -> to \ [LINESTYLE, color=SETSTATERETURNCOLOR, arrowtail=dot morestyle] #define prerequisite(from,to,morestyle...) from -> to \ [LINESTYLE, color=PREREQUISITECOLOR arrowhead=PREREQUISITEARROW morestyle] #define create(from,to,morestyle...) from -> to \ [LINESTYLE, color=CREATEANDSETCOLOR, arrowhead=CREATEARROW morestyle] #define addvalue(from,to, morestyle...) from -> to \ [LINESTYLE, color=ADDVALUECOLOR, arrowhead=VALUEARROW morestyle] #define createandvalue(from,to,morestyle...) from -> to \ [LINESTYLE, color=CREATEANDADDVALUECOLOR, arrowhead=CREATEVALUEARROW morestyle] #define macro(from,morestyle...) { from [MACROSTATESHAPE morestyle] } #define dataset(from,morestyle...) { from [DATASETSHAPE morestyle] } #define object(from,morestyle...) { from [OBJECTSHAPE morestyle] } #define branch(name,additional...) { name [shape=diamond style=filled color=autoColor label=QUOTEME(additional) width=0.5] } ### processflow legend ######################################### #define PROCESSFLOWLEGEND cluster(processflow_legend,"Processflow Legend")\ graph [ranksep="1.5"] \ { edge [style=invis]; a1 -> b1 -> c1 -> d1 -> e1 -> f1 -> g1 -> h1 -> i1\ i1 -> s1 -> t1 -> u1 -> v1} \ edge [minlen=7] \ {rank=same a1 state(a1,a2,label="User activated State Transition\n")}\ {rank=same b1 indirect(b1,b2, label="State Transition via Sub-Process\n")}\ {rank=same c1 conditional(c1,c2, label="Automatic Transition\n if Condition is met")}\ {rank=same d1 setstate(d1,d2, label="Intra Workflow Object\n Transition activation\n")}\ {rank=same e1 return(e1,e2, label="Intra Workflow Object\n Transition activation\n and end of Sub-Workflow\n")}\ {rank=same f1 create(f1,f2, label="Create Sub-Workflow Object\n and set Transition state\n")}\ {rank=same g1 createandvalue(g1,g2,label="Create Sub-Workflow Object\n and add value to State\n")}\ {rank=same h1 addvalue(h1,h2,label="Add Value to\n Sub-Workflow Object State\n")}\ {rank=same i1 prerequisite(i1,i2,label="h1 is prerequisite State of\n Workflow Object State h2\n")}\ edge [minlen=1]\ extcluster(exampleexternal,"External Workflow Object")\ role(app,exampleextstate, label="Object State")\ }\ {rank=same s1 state(s1,exampleextstate, label="External Workflow Reference") } \ {rank=same {t1 [shape=plaintext label="Call to External Macro Workflow"]} -> macro(examplemacro,label="Macro Workflow")}\ {rank=same u1 automatic(role(auto,u1),u2,label="Automatic-Transition") branch(u2) automatic(u2,u3,label="Decision")}\ {rank=same {v1 [shape=plaintext label="Data Storage Set"]} -> dataset(exampledata,label="Example Dataset")}\ } #define ACTORLEGEND cluster(actor_legend,"Actor Color Legend")\ graph [ranksep="1.5"] \ edge [minlen=1]\ { edge [style=invis]; \ a1 -> a2 -> b1 -> b2 a1 -> c1 -> c2 -> d1 -> d2 \ c1 -> e1 -> e2 -> f1 -> f2 e1 -> g1 -> g2 -> h1 -> h2 \ g1 -> i1 -> i2 -> j1 -> j2 i1 -> k1 -> k2 -> l1 -> l2 \ k1 -> m1 -> m2 -> n1 -> n2}\ {rank=same showrole(app,a1) -> role(app,a2, label="") showrole(sec,b1) -> role(sec,b2, label="") }\ {rank=same showrole(meetsec,c1) -> role(meetsec,c2, label="") showrole(rev,d1) -> role(rev,d2, label="") }\ {rank=same showrole(exec,e1) -> role(exec,e2, label="") showrole(sign,f1) -> role(sign,f2, label="") }\ {rank=same showrole(stat,g1) -> role(stat,g2, label="") showrole(notrev,h1) -> role(notrev,h2, label="") }\ {rank=same showrole(insrev,i1) -> role(insrev,i2, label="") showrole(board,j1) -> role(board,j2, label="") }\ {rank=same showrole(thesisrev,k1) -> role(thesisrev,k2, label="") showrole(thesisexec,l1) -> role(thesisexec,l2, label="") }\ {rank=same showrole(extrev,m1) -> role(extrev,m2, label="") n1 [style=invis shape=none]; n2 [style=invis shape=none]; }\ } #endif ### Products ##################################### #define image(name,file,longname) { name [shape=plaintext label=<<TABLE BORDER="0" CELLBORDER="0" CELLSPACING="0">\ <TR><TD><IMG SRC=QUOTEME(file)/></TD></TR><TR><TD rowspan="2"> longname </TD></TR></TABLE>>]} #define prod(which,longname,additional...) { which [label=longname shape=component style=filled color=lightblue additional]} #define usedir(protocol,direction) [dir=direction label=QUOTEME(protocol) color=QUOTEME(protocol##color) penwidth=2] #define bidir(protocol) usedir(protocol,both) #define unidir(protocol) usedir(protocol,forward) #define presentdir(protocol) {protocol [style=filled fillcolor=QUOTEME(protocol##color)]} #define httpcolor darkgreen #define httpscolor green #define sqlcolor brown #define rediscolor darkorange #define smtpcolor blue #define filecolor pink #define memcachecolor gold #define PROTOCOLLEGEND cluster(protocol_legend,"Protocol Color Legend") \ graph[ranksep="1.5"] \ edge [minlen=1 style=invis] \ presentdir(http) -> presentdir(https) -> presentdir(sql) -> presentdir(redis) -> presentdir(smtp) -> presentdir(file) -> presentdir(memcache) \ }
38.829327
202
0.689717
1ad8ec906aa7b01cf403d9831ef0097a626fe240
1,715
c
C
src/midi.c
mnyrenius/hades-alternative-firmware
fce2fec0f6a41240bfc3c1643617490519b8330d
[ "MIT" ]
5
2017-11-14T15:32:09.000Z
2020-11-01T09:05:49.000Z
src/midi.c
mnyrenius/hades-alternative-firmware
fce2fec0f6a41240bfc3c1643617490519b8330d
[ "MIT" ]
null
null
null
src/midi.c
mnyrenius/hades-alternative-firmware
fce2fec0f6a41240bfc3c1643617490519b8330d
[ "MIT" ]
null
null
null
#include "midi.h" #define MIDI_NOTE_ON 0x90 #define MIDI_NOTE_OFF 0x80 #define MIDI_CLOCK 0xf8 #define MIDI_START 0xfa #define MIDI_CONTINUE 0xfb #define MIDI_STOP 0xfc void handle_voice_msg(midi_t *m, uint8_t byte); void handle_rt_msg(midi_t *m, uint8_t byte); void midi_init(midi_t *m) { m->running_status = 0; m->expected = 0; m->data_idx = 0; } void midi_process(midi_t *m, uint8_t data) { if (data >= MIDI_CLOCK) handle_rt_msg(m, data); else { if (data >= 0x80) { m->running_status = data; switch (data & 0xf0) { case 0x80: case 0x90: case 0xe0: m->expected = 2; m->data_idx = 0; break; default: break; } } else m->data[m->data_idx++] = data; if (m->data_idx == m->expected) { handle_voice_msg(m, m->running_status); m->data_idx = 0; } } } void handle_rt_msg(midi_t *m, uint8_t byte) { switch (byte) { case MIDI_CLOCK: m->rt_clock(m->callback_data); break; case MIDI_START: m->rt_stop(m->callback_data); case MIDI_CONTINUE: m->rt_start(m->callback_data); break; case MIDI_STOP: m->rt_stop(m->callback_data); break; } } void handle_voice_msg(midi_t *m, uint8_t byte) { uint8_t *msg = m->data; uint8_t status = byte & 0xf0; uint8_t channel = byte & 0x0f; switch (status) { case MIDI_NOTE_ON: if (msg[1] == 0) m->note_off(m->callback_data, channel, msg[0]); else m->note_on(m->callback_data, channel, msg[0]); break; case MIDI_NOTE_OFF: m->note_off(m->callback_data, channel, msg[0]); break; default: break; } }
19.055556
55
0.589504
1ad9d99a40cb0f161567985988dd31b4d5965598
195
c
C
lab3/zad_dom/plik.c
R3zn0w/blue-rapier
84cdc33e1e327c0a402a4d2e29a8d6f5cda95e9b
[ "MIT" ]
null
null
null
lab3/zad_dom/plik.c
R3zn0w/blue-rapier
84cdc33e1e327c0a402a4d2e29a8d6f5cda95e9b
[ "MIT" ]
null
null
null
lab3/zad_dom/plik.c
R3zn0w/blue-rapier
84cdc33e1e327c0a402a4d2e29a8d6f5cda95e9b
[ "MIT" ]
null
null
null
#include <stdio.h> // cos tam cos tam /* bardzo wazny i dlugi komentarz wielolinijkowy */ int sum(int a, int b) { return a + b; } void main() { printf("Hello world"); return 0; }
9.285714
26
0.605128
1ade1829aee10f8e906435a278ff6a4af1ddfa53
1,088
h
C
libwx/src/DrawingMovable/DrawingObject.h
EnjoMitch/EnjoLib
321167146657cba1497a9d3b4ffd71430f9b24b3
[ "BSD-3-Clause" ]
3
2021-06-14T15:36:46.000Z
2022-02-28T15:16:08.000Z
libwx/src/DrawingMovable/DrawingObject.h
EnjoMitch/EnjoLib
321167146657cba1497a9d3b4ffd71430f9b24b3
[ "BSD-3-Clause" ]
1
2021-07-17T07:52:15.000Z
2021-07-17T07:52:15.000Z
libwx/src/DrawingMovable/DrawingObject.h
EnjoMitch/EnjoLib
321167146657cba1497a9d3b4ffd71430f9b24b3
[ "BSD-3-Clause" ]
3
2021-07-12T14:52:38.000Z
2021-11-28T17:10:33.000Z
#ifndef DRAWINGOBJECT_H #define DRAWINGOBJECT_H #include <STD/Vector.hpp> class wxClientDC; class wxMouseEvent; #include "MovableRect.h" namespace EnjoLib { class Point; class Canvas; class DrawingObject { public: DrawingObject(const Canvas & canvas, const Point & start); virtual ~DrawingObject(); void Draw( wxClientDC & dc, const DrawingObject * selected ) const; bool Contains( wxMouseEvent & e ); virtual void Move( wxMouseEvent & e ); protected: virtual void DrawClient( wxClientDC & dc, bool isSelected ) const = 0; virtual std::vector<MovableRect *> ContainsClient( const Point & naturalClick ) = 0; Point GetPointNatural( wxMouseEvent & e ) const; std::vector<MovableRect> m_rects; std::vector<MovableRect *> m_chosenRects; const Point & m_ref; const double & m_zoom; const Canvas & m_canvas; MovableRect m_start; private: void StoreMouseClick( wxMouseEvent & e ); int prevX, prevY; }; } #endif // DRAWINGOBJECT_H
23.148936
92
0.649816
1adeeacf9bcd878ebde0b5ced742c72eb3fd19bb
577
h
C
NotifyIconWin32/Error.h
samgrogan/notify-icon.net
b31fe0c57ec4aaa03d9a3821fb278dad33bddef6
[ "MIT" ]
null
null
null
NotifyIconWin32/Error.h
samgrogan/notify-icon.net
b31fe0c57ec4aaa03d9a3821fb278dad33bddef6
[ "MIT" ]
null
null
null
NotifyIconWin32/Error.h
samgrogan/notify-icon.net
b31fe0c57ec4aaa03d9a3821fb278dad33bddef6
[ "MIT" ]
1
2021-01-05T11:14:22.000Z
2021-01-05T11:14:22.000Z
#pragma once //#include <string> //#include <iostream> #include <Windows.h> using namespace System; namespace NotifyIcon { namespace Win32 { public ref class Error { private: DWORD _last_error; public: // Construct an error based on GetLastError Error(); // Gets the error code DWORD GetErrorCode(); // Gets the error message String^ GetErrorMessage(); // Throws this error as a managed exception void ThrowAsException(); // Converts the error to a managed exception Exception^ ToException(); virtual ~Error(); }; } }
14.794872
47
0.672444
1ae3c2104fa7fbe98234d019403027fa33d61481
323
h
C
Purchases/Caching/RCInMemoryCachedObject+Protected.h
OgrePet/purchases-ios
0ce5b4f47ad541a5139e8d0d819bd0171f661b30
[ "MIT" ]
4
2021-01-31T08:20:49.000Z
2021-03-08T13:15:03.000Z
Purchases/ProtectedExtensions/RCInMemoryCachedObject+Protected.h
Timac/purchases-ios
f2b25180ce5b65ec272a5144ed9f61dd135d5cee
[ "MIT" ]
null
null
null
Purchases/ProtectedExtensions/RCInMemoryCachedObject+Protected.h
Timac/purchases-ios
f2b25180ce5b65ec272a5144ed9f61dd135d5cee
[ "MIT" ]
1
2021-02-23T12:03:55.000Z
2021-02-23T12:03:55.000Z
// // Created by RevenueCat on 2/3/20. // Copyright (c) 2020 Purchases. All rights reserved. // #import <Foundation/Foundation.h> #import "RCInMemoryCachedObject.h" NS_ASSUME_NONNULL_BEGIN @interface RCInMemoryCachedObject (Protected) @property (nonatomic, nullable) NSDate *lastUpdatedAt; @end NS_ASSUME_NONNULL_END
17.944444
54
0.780186
1ae7f84c8b573016c2d1b0c80b315225db080ec6
2,130
h
C
cpp/test-harness/ta3/pub-sub-gen/num-predicate-generators.h
nathanawmk/SPARTA
6eeb28b2dd147088b6e851876b36eeba3e700f16
[ "BSD-2-Clause" ]
37
2017-06-09T13:55:23.000Z
2022-01-28T12:51:17.000Z
cpp/test-harness/ta3/pub-sub-gen/num-predicate-generators.h
nathanawmk/SPARTA
6eeb28b2dd147088b6e851876b36eeba3e700f16
[ "BSD-2-Clause" ]
null
null
null
cpp/test-harness/ta3/pub-sub-gen/num-predicate-generators.h
nathanawmk/SPARTA
6eeb28b2dd147088b6e851876b36eeba3e700f16
[ "BSD-2-Clause" ]
5
2017-06-09T13:55:26.000Z
2021-11-11T03:51:56.000Z
//***************************************************************** // Copyright 2013 MIT Lincoln Laboratory // Project: SPAR // Authors: OMD // Description: A collection of generators for use with // LowMatchRatePubSubGen. // // Modifications: // Date Name Modification // ---- ---- ------------ // 29 Jan 2013 omd Original Version //***************************************************************** #ifndef CPP_TEST_HARNESS_TA3_PUB_SUB_GEN_NUM_PREDICATE_GENERATORS_H_ #define CPP_TEST_HARNESS_TA3_PUB_SUB_GEN_NUM_PREDICATE_GENERATORS_H_ #include <random> class NumGenerator { public: NumGenerator() {}; virtual int operator()(int max) = 0; virtual int operator()() = 0; }; /// Generates a "truncated" Poisson distribution with the given mean. The /// truncation occurs on both the low end and the high end of the distribution. /// The low-end occurs because we don't want to return 0, and the high end occurs /// because we can't return a value > the number of avaialable fields. /// Trunacation happens by rounding up or down to the closest legal value (as /// opposed to discarding the value and generating a new one.). class TruncatedPoissonNumGenerator : public NumGenerator { public: /// Will generate numbers with the given mean. The random number generator is /// seeded with seed. TruncatedPoissonNumGenerator(int mean, int seed); int operator()(int max); int operator()(); private: std::mt19937 rng_; std::poisson_distribution<> dist_; }; /// Constant number generator class ConstantNumGenerator : public NumGenerator { public: ConstantNumGenerator(int value); int operator()(int max); int operator()(); private: int value_; }; /// Coin toss number generator class CoinTossNumGenerator : public NumGenerator { public: CoinTossNumGenerator(int heads, int tails, float prob, int seed); int operator()(int max); int operator()(); private: std::mt19937 rng_; std::uniform_real_distribution<float> dist_; int heads_; int tails_; float prob_; }; #endif
29.178082
81
0.647418
1aebd2c27d4d5b6132c0db1ee6bb596942c7a2ab
575
h
C
3PXNet_models/face_detection/3pxnet-model-autogen/onet_model_binary_bw1_input_bw2_0a2c3f60_autogen/99.h
SRavit1/esp-dl
a556f533f35a6d04e50bcbb4fa434a8815c28b78
[ "MIT-0" ]
null
null
null
3PXNet_models/face_detection/3pxnet-model-autogen/onet_model_binary_bw1_input_bw2_0a2c3f60_autogen/99.h
SRavit1/esp-dl
a556f533f35a6d04e50bcbb4fa434a8815c28b78
[ "MIT-0" ]
null
null
null
3PXNet_models/face_detection/3pxnet-model-autogen/onet_model_binary_bw1_input_bw2_0a2c3f60_autogen/99.h
SRavit1/esp-dl
a556f533f35a6d04e50bcbb4fa434a8815c28b78
[ "MIT-0" ]
null
null
null
#define _99 {\ 0x1407b5f6, \ 0x1113f7a, \ 0xc06ea26b, \ 0xb759ad16, \ 0x22691ef6, \ 0x97cded3b, \ 0xa4de2c13, \ 0xaf456804, \ 0xc0f73269, \ 0x41d74b86, \ 0xfdb8d96b, \ 0xe2c6f0eb, \ 0x90c2b3cb, \ 0x1221dd0f, \ 0xd5ef67b8, \ 0x9bda2a18, \ 0x960b2651, \ 0xfd08a1d2, \ 0x2621edbe, \ 0xc83190c1, \ 0x230be3ad, \ 0x6b00d2e5, \ 0x2f5f3537, \ 0xa17e2cd4, \ 0x51b8b729, \ 0xb6c74356, \ 0xb4e34f3f, \ 0xbf0c51fe, \ 0x3f9b5018, \ 0x339b284a, \ 0x6563bec, \ 0xa0bc439f, \ 0x580b6444, \ 0xbe4f5d20, \ 0xde3f115d, \ 0x990f608c, \ 0x2b9fc1c9, \ 0x7ab5907f, \ 0xdc38154e, \ 0xc5be6a0b, \ }
13.372093
14
0.707826
1aebed1f7a7845008e3fd3d3d9d5c37ea217fffd
455
h
C
gluecodium/src/test/resources/smoke/instances/output/dart/ffi/ffi_smoke_StructWithInterface.h
Dschoordsch/gluecodium
a7b3833ce840284cadf968b6f8441888f970c134
[ "Apache-2.0" ]
1
2020-02-10T06:35:33.000Z
2020-02-10T06:35:33.000Z
gluecodium/src/test/resources/smoke/instances/output/dart/ffi/ffi_smoke_StructWithInterface.h
Dschoordsch/gluecodium
a7b3833ce840284cadf968b6f8441888f970c134
[ "Apache-2.0" ]
null
null
null
gluecodium/src/test/resources/smoke/instances/output/dart/ffi/ffi_smoke_StructWithInterface.h
Dschoordsch/gluecodium
a7b3833ce840284cadf968b6f8441888f970c134
[ "Apache-2.0" ]
null
null
null
#pragma once #include "Export.h" #include "OpaqueHandle.h" #include <stdint.h> #ifdef __cplusplus extern "C" { #endif _GLUECODIUM_FFI_EXPORT FfiOpaqueHandle smoke_StructWithInterface_create_handle(FfiOpaqueHandle); _GLUECODIUM_FFI_EXPORT void smoke_StructWithInterface_release_handle(FfiOpaqueHandle handle); _GLUECODIUM_FFI_EXPORT FfiOpaqueHandle smoke_StructWithInterface_get_field_interfaceInstance(FfiOpaqueHandle handle); #ifdef __cplusplus } #endif
32.5
117
0.87033
1aed1f45cb131a357b90a6f6d194dc0af7b7e953
189
h
C
MyTestPod/Classes/MyAdapter.h
FrankZheng/MyTestPod
7673f62215d1be4d717fb30f3a6dcd74bfa17c14
[ "MIT" ]
null
null
null
MyTestPod/Classes/MyAdapter.h
FrankZheng/MyTestPod
7673f62215d1be4d717fb30f3a6dcd74bfa17c14
[ "MIT" ]
null
null
null
MyTestPod/Classes/MyAdapter.h
FrankZheng/MyTestPod
7673f62215d1be4d717fb30f3a6dcd74bfa17c14
[ "MIT" ]
null
null
null
// // MyAdapter.h // MyTestPod // // Created by frank.zheng on 08/12/2017. // #import <Foundation/Foundation.h> @interface MyAdapter : NSObject -(void)sayHello:(NSString*)name; @end
12.6
41
0.677249
1aefed289d351b064cfbfe6586516e3150318325
24,853
c
C
sys/lib/libsa/minixfs3.c
calmsacibis995/minix
dfba95598f553b6560131d35a76658f1f8c9cf38
[ "Unlicense" ]
null
null
null
sys/lib/libsa/minixfs3.c
calmsacibis995/minix
dfba95598f553b6560131d35a76658f1f8c9cf38
[ "Unlicense" ]
null
null
null
sys/lib/libsa/minixfs3.c
calmsacibis995/minix
dfba95598f553b6560131d35a76658f1f8c9cf38
[ "Unlicense" ]
null
null
null
/* $NetBSD: minixfs3.c,v 1.7 2014/03/20 03:13:18 christos Exp $ */ /*- * Copyright (c) 2012 * Vrije Universiteit, Amsterdam, The Netherlands. All rights reserved. * * Author: Evgeniy Ivanov (based on libsa/ext2fs.c). * * This code is derived from src/sys/lib/libsa/ext2fs.c contributed to * The NetBSD Foundation, see copyrights below. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS * IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS BE * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. */ /* * Copyright (c) 1997 Manuel Bouyer. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /*- * Copyright (c) 1993 * The Regents of the University of California. All rights reserved. * * This code is derived from software contributed to Berkeley by * The Mach Operating System project at Carnegie-Mellon University. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. Neither the name of the University nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * * Copyright (c) 1990, 1991 Carnegie Mellon University * All Rights Reserved. * * Author: David Golub * * Permission to use, copy, modify and distribute this software and its * documentation is hereby granted, provided that both the copyright * notice and this permission notice appear in all copies of the * software, derivative works or modified versions, and any portions * thereof, and that both notices appear in supporting documentation. * * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE. * * Carnegie Mellon requests users of this software to return to * * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU * School of Computer Science * Carnegie Mellon University * Pittsburgh PA 15213-3890 * * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. */ /* * Stand-alone file reading package for MFS file system. */ #include <sys/param.h> #include <sys/time.h> #ifdef _STANDALONE #include <lib/libkern/libkern.h> #else #include <string.h> #endif #include "stand.h" #include "minixfs3.h" #if defined(LIBSA_FS_SINGLECOMPONENT) && !defined(LIBSA_NO_FS_SYMLINK) #define LIBSA_NO_FS_SYMLINK #endif #if defined(LIBSA_NO_TWIDDLE) #define twiddle() #endif typedef uint32_t ino32_t; #ifndef FSBTODB #define FSBTODB(fs, indp) MFS_FSBTODB(fs, indp) #endif /* * To avoid having a lot of filesystem-block sized buffers lurking (which * could be 32k) we only keep a few entries of the indirect block map. * With 8k blocks, 2^8 blocks is ~500k so we reread the indirect block * ~13 times pulling in a 6M kernel. * The cache size must be smaller than the smallest filesystem block, * so LN2_IND_CACHE_SZ <= 9 (UFS2 and 4k blocks). */ #define LN2_IND_CACHE_SZ 6 #define IND_CACHE_SZ (1 << LN2_IND_CACHE_SZ) #define IND_CACHE_MASK (IND_CACHE_SZ - 1) /* * In-core open file. */ struct file { off_t f_seekp; /* seek pointer */ struct mfs_sblock *f_fs; /* pointer to super-block */ struct mfs_dinode f_di; /* copy of on-disk inode */ uint f_nishift; /* for blocks in indirect block */ block_t f_ind_cache_block; block_t f_ind_cache[IND_CACHE_SZ]; char *f_buf; /* buffer for data block */ size_t f_buf_size; /* size of data block */ daddr_t f_buf_blkno; /* block number of data block */ }; static int read_inode(ino32_t, struct open_file *); static int block_map(struct open_file *, block_t, block_t *); static int buf_read_file(struct open_file *, void *, size_t *); static int search_directory(const char *, int, struct open_file *, ino32_t *); static int read_sblock(struct open_file *, struct mfs_sblock *); /* * Read a new inode into a file structure. */ static int read_inode(ino32_t inumber, struct open_file *f) { struct file *fp = (struct file *)f->f_fsdata; struct mfs_sblock *fs = fp->f_fs; char *buf; size_t rsize; int rc; daddr_t inode_sector; struct mfs_dinode *dip; inode_sector = FSBTODB(fs, ino_to_fsba(fs, inumber)); /* * Read inode and save it. */ buf = fp->f_buf; twiddle(); rc = DEV_STRATEGY(f->f_dev)(f->f_devdata, F_READ, inode_sector, fs->mfs_block_size, buf, &rsize); if (rc) return rc; if (rsize != fs->mfs_block_size) return EIO; dip = (struct mfs_dinode *)(buf + INODE_SIZE * ino_to_fsbo(fs, inumber)); mfs_iload(dip, &fp->f_di); /* * Clear out the old buffers */ fp->f_ind_cache_block = ~0; fp->f_buf_blkno = -1; return rc; } /* * Given an offset in a file, find the disk block number (not zone!) * that contains that block. */ static int block_map(struct open_file *f, block_t file_block, block_t *disk_block_p) { struct file *fp = (struct file *)f->f_fsdata; struct mfs_sblock *fs = fp->f_fs; uint level; block_t ind_cache; block_t ind_block_num; zone_t zone; size_t rsize; int rc; int boff; int scale = fs->mfs_log_zone_size; /* for block-zone conversion */ block_t *buf = (void *)fp->f_buf; /* * Index structure of an inode: * * mdi_blocks[0..NR_DZONES-1] * hold zone numbers for zones * 0..NR_DZONES-1 * * mdi_blocks[NR_DZONES+0] * block NDADDR+0 is the single indirect block * holds zone numbers for zones * NR_DZONES .. NR_DZONES + MFS_NINDIR(fs)-1 * * mdi_blocks[NR_DZONES+1] * block NDADDR+1 is the double indirect block * holds zone numbers for INDEX blocks for zones * NR_DZONES + MFS_NINDIR(fs) .. * NR_TZONES + MFS_NINDIR(fs) + MFS_NINDIR(fs)**2 - 1 */ zone = file_block >> scale; boff = (int) (file_block - (zone << scale) ); /* relative blk in zone */ if (zone < NR_DZONES) { /* Direct zone */ zone_t z = fs2h32(fp->f_di.mdi_zone[zone]); if (z == NO_ZONE) { *disk_block_p = NO_BLOCK; return 0; } *disk_block_p = (block_t) ((z << scale) + boff); return 0; } zone -= NR_DZONES; ind_cache = zone >> LN2_IND_CACHE_SZ; if (ind_cache == fp->f_ind_cache_block) { *disk_block_p = fs2h32(fp->f_ind_cache[zone & IND_CACHE_MASK]); return 0; } for (level = 0;;) { level += fp->f_nishift; if (zone < (block_t)1 << level) break; if (level > NIADDR * fp->f_nishift) /* Zone number too high */ return EFBIG; zone -= (block_t)1 << level; } ind_block_num = fs2h32(fp->f_di.mdi_zone[NR_DZONES + (level / fp->f_nishift - 1)]); for (;;) { level -= fp->f_nishift; if (ind_block_num == 0) { *disk_block_p = NO_BLOCK; /* missing */ return 0; } twiddle(); /* * If we were feeling brave, we could work out the number * of the disk sector and read a single disk sector instead * of a filesystem block. * However we don't do this very often anyway... */ rc = DEV_STRATEGY(f->f_dev)(f->f_devdata, F_READ, FSBTODB(fs, ind_block_num), fs->mfs_block_size, buf, &rsize); if (rc) return rc; if (rsize != fs->mfs_block_size) return EIO; ind_block_num = fs2h32(buf[zone >> level]); if (level == 0) break; zone &= (1 << level) - 1; } /* Save the part of the block that contains this sector */ memcpy(fp->f_ind_cache, &buf[zone & ~IND_CACHE_MASK], IND_CACHE_SZ * sizeof fp->f_ind_cache[0]); fp->f_ind_cache_block = ind_cache; zone = (zone_t)ind_block_num; *disk_block_p = (block_t)((zone << scale) + boff); return 0; } /* * Read a portion of a file into an internal buffer. * Return the location in the buffer and the amount in the buffer. */ static int buf_read_file(struct open_file *f, void *v, size_t *size_p) { char **buf_p = v; struct file *fp = (struct file *)f->f_fsdata; struct mfs_sblock *fs = fp->f_fs; long off; block_t file_block; block_t disk_block = 0; /* XXX: gcc */ size_t block_size; int rc; off = mfs_blkoff(fs, fp->f_seekp); file_block = mfs_lblkno(fs, fp->f_seekp); block_size = fs->mfs_block_size; if (file_block != fp->f_buf_blkno) { rc = block_map(f, file_block, &disk_block); if (rc) return rc; if (disk_block == 0) { memset(fp->f_buf, 0, block_size); fp->f_buf_size = block_size; } else { twiddle(); rc = DEV_STRATEGY(f->f_dev)(f->f_devdata, F_READ, FSBTODB(fs, disk_block), block_size, fp->f_buf, &fp->f_buf_size); if (rc) return rc; } fp->f_buf_blkno = file_block; } /* * Return address of byte in buffer corresponding to * offset, and size of remainder of buffer after that * byte. */ *buf_p = fp->f_buf + off; *size_p = block_size - off; /* * But truncate buffer at end of file. */ if (*size_p > fp->f_di.mdi_size - fp->f_seekp) *size_p = fp->f_di.mdi_size - fp->f_seekp; return 0; } /* * Search a directory for a name and return its * inode number. */ static int search_directory(const char *name, int length, struct open_file *f, ino32_t *inumber_p) { struct file *fp = (struct file *)f->f_fsdata; struct mfs_sblock *fs = fp->f_fs; struct mfs_direct *dp; struct mfs_direct *dbuf; size_t buf_size; int namlen; int rc; fp->f_seekp = 0; while (fp->f_seekp < (off_t)fp->f_di.mdi_size) { rc = buf_read_file(f, (void *)&dbuf, &buf_size); if (rc) return rc; if (buf_size == 0) return EIO; /* XXX we assume, that buf_read_file reads an fs block and * doesn't truncate buffer. Currently i_size in MFS doesn't * the same as size of allocated blocks, it makes buf_read_file * to truncate buf_size. */ if (buf_size < fs->mfs_block_size) buf_size = fs->mfs_block_size; for (dp = dbuf; dp < &dbuf[NR_DIR_ENTRIES(fs)]; dp++) { char *cp; if (fs2h32(dp->mfsd_ino) == (ino32_t) 0) continue; /* Compute the length of the name */ cp = memchr(dp->mfsd_name, '\0', sizeof(dp->mfsd_name)); if (cp == NULL) namlen = sizeof(dp->mfsd_name); else namlen = cp - (dp->mfsd_name); if (namlen == length && !memcmp(name, dp->mfsd_name, length)) { /* found entry */ *inumber_p = fs2h32(dp->mfsd_ino); return 0; } } fp->f_seekp += buf_size; } return ENOENT; } int read_sblock(struct open_file *f, struct mfs_sblock *fs) { static uint8_t sbbuf[MINBSIZE]; size_t buf_size; int rc; /* We must read amount multiple of sector size, hence we can't * read SBSIZE and read MINBSIZE. */ if (SBSIZE > MINBSIZE) return EINVAL; rc = DEV_STRATEGY(f->f_dev)(f->f_devdata, F_READ, SUPER_BLOCK_OFF / DEV_BSIZE, MINBSIZE, sbbuf, &buf_size); if (rc) return rc; if (buf_size != MINBSIZE) return EIO; mfs_sbload((void *)sbbuf, fs); if (fs->mfs_magic != SUPER_MAGIC) return EINVAL; if (fs->mfs_block_size < MINBSIZE) return EINVAL; if ((fs->mfs_block_size % 512) != 0) return EINVAL; if (SBSIZE > fs->mfs_block_size) return EINVAL; if ((fs->mfs_block_size % INODE_SIZE) != 0) return EINVAL; /* For even larger disks, a similar problem occurs with s_firstdatazone. * If the on-disk field contains zero, we assume that the value was too * large to fit, and compute it on the fly. */ if (fs->mfs_firstdatazone_old == 0) { block_t offset; offset = START_BLOCK + fs->mfs_imap_blocks + fs->mfs_zmap_blocks; offset += (fs->mfs_ninodes + fs->mfs_inodes_per_block - 1) / fs->mfs_inodes_per_block; fs->mfs_firstdatazone = (offset + (1 << fs->mfs_log_zone_size) - 1) >> fs->mfs_log_zone_size; } else { fs->mfs_firstdatazone = (zone_t) fs->mfs_firstdatazone_old; } if (fs->mfs_imap_blocks < 1 || fs->mfs_zmap_blocks < 1 || fs->mfs_ninodes < 1 || fs->mfs_zones < 1 || fs->mfs_firstdatazone <= 4 || fs->mfs_firstdatazone >= fs->mfs_zones || (unsigned) fs->mfs_log_zone_size > 4) return EINVAL; /* compute in-memory mfs_sblock values */ fs->mfs_inodes_per_block = fs->mfs_block_size / INODE_SIZE; { int32_t mult = fs->mfs_block_size >> LOG_MINBSIZE; int ln2 = LOG_MINBSIZE; for (; mult != 1; ln2++) mult >>= 1; fs->mfs_bshift = ln2; /* XXX assume hw bsize = 512 */ fs->mfs_fsbtodb = ln2 - LOG_MINBSIZE + 1; } fs->mfs_qbmask = fs->mfs_block_size - 1; fs->mfs_bmask = ~fs->mfs_qbmask; return 0; } /* * Open a file. */ __compactcall int minixfs3_open(const char *path, struct open_file *f) { #ifndef LIBSA_FS_SINGLECOMPONENT const char *cp, *ncp; int c; #endif ino32_t inumber; struct file *fp; struct mfs_sblock *fs; int rc; #ifndef LIBSA_NO_FS_SYMLINK ino32_t parent_inumber; int nlinks = 0; char namebuf[MAXPATHLEN+1]; char *buf; #endif /* allocate file system specific data structure */ fp = alloc(sizeof(struct file)); memset(fp, 0, sizeof(struct file)); f->f_fsdata = (void *)fp; /* allocate space and read super block */ fs = alloc(sizeof(*fs)); memset(fs, 0, sizeof(*fs)); fp->f_fs = fs; twiddle(); rc = read_sblock(f, fs); if (rc) goto out; /* alloc a block sized buffer used for all fs transfers */ fp->f_buf = alloc(fs->mfs_block_size); /* * Calculate indirect block levels. */ { int32_t mult; int ln2; /* * We note that the number of indirect blocks is always * a power of 2. This lets us use shifts and masks instead * of divide and remainder and avoinds pulling in the * 64bit division routine into the boot code. */ mult = MFS_NINDIR(fs); #ifdef DEBUG if (!powerof2(mult)) { /* Hummm was't a power of 2 */ rc = EINVAL; goto out; } #endif for (ln2 = 0; mult != 1; ln2++) mult >>= 1; fp->f_nishift = ln2; } inumber = ROOT_INODE; if ((rc = read_inode(inumber, f)) != 0) goto out; #ifndef LIBSA_FS_SINGLECOMPONENT cp = path; while (*cp) { /* * Remove extra separators */ while (*cp == '/') cp++; if (*cp == '\0') break; /* * Check that current node is a directory. */ if ((fp->f_di.mdi_mode & I_TYPE) != I_DIRECTORY) { rc = ENOTDIR; goto out; } /* * Get next component of path name. */ ncp = cp; while ((c = *cp) != '\0' && c != '/') cp++; /* * Look up component in current directory. * Save directory inumber in case we find a * symbolic link. */ #ifndef LIBSA_NO_FS_SYMLINK parent_inumber = inumber; #endif rc = search_directory(ncp, cp - ncp, f, &inumber); if (rc) goto out; /* * Open next component. */ if ((rc = read_inode(inumber, f)) != 0) goto out; #ifndef LIBSA_NO_FS_SYMLINK /* * Check for symbolic link. */ if ((fp->f_di.mdi_mode & I_TYPE) == I_SYMBOLIC_LINK) { int link_len = fp->f_di.mdi_size; int len; size_t buf_size; block_t disk_block; len = strlen(cp); if (link_len + len > MAXPATHLEN || ++nlinks > MAXSYMLINKS) { rc = ENOENT; goto out; } memmove(&namebuf[link_len], cp, len + 1); /* * Read file for symbolic link */ buf = fp->f_buf; rc = block_map(f, (block_t)0, &disk_block); if (rc) goto out; twiddle(); rc = DEV_STRATEGY(f->f_dev)(f->f_devdata, F_READ, FSBTODB(fs, disk_block), fs->mfs_block_size, buf, &buf_size); if (rc) goto out; memcpy(namebuf, buf, link_len); /* * If relative pathname, restart at parent directory. * If absolute pathname, restart at root. */ cp = namebuf; if (*cp != '/') inumber = parent_inumber; else inumber = (ino32_t) ROOT_INODE; if ((rc = read_inode(inumber, f)) != 0) goto out; } #endif /* !LIBSA_NO_FS_SYMLINK */ } /* * Found terminal component. */ rc = 0; #else /* !LIBSA_FS_SINGLECOMPONENT */ /* look up component in the current (root) directory */ rc = search_directory(path, strlen(path), f, &inumber); if (rc) goto out; /* open it */ rc = read_inode(inumber, f); #endif /* !LIBSA_FS_SINGLECOMPONENT */ fp->f_seekp = 0; /* reset seek pointer */ out: if (rc) minixfs3_close(f); return rc; } __compactcall int minixfs3_close(struct open_file *f) { struct file *fp = (struct file *)f->f_fsdata; f->f_fsdata = NULL; if (fp == NULL) return 0; if (fp->f_buf) dealloc(fp->f_buf, fp->f_fs->mfs_block_size); dealloc(fp->f_fs, sizeof(*fp->f_fs)); dealloc(fp, sizeof(struct file)); return 0; } /* * Copy a portion of a file into kernel memory. * Cross block boundaries when necessary. */ __compactcall int minixfs3_read(struct open_file *f, void *start, size_t size, size_t *resid) { struct file *fp = (struct file *)f->f_fsdata; size_t csize; char *buf; size_t buf_size; int rc = 0; char *addr = start; while (size != 0) { if (fp->f_seekp >= (off_t)fp->f_di.mdi_size) break; rc = buf_read_file(f, &buf, &buf_size); if (rc) break; csize = size; if (csize > buf_size) csize = buf_size; memcpy(addr, buf, csize); fp->f_seekp += csize; addr += csize; size -= csize; } if (resid) *resid = size; return rc; } /* * Not implemented. */ #ifndef LIBSA_NO_FS_WRITE __compactcall int minixfs3_write(struct open_file *f, void *start, size_t size, size_t *resid) { return EROFS; } #endif /* !LIBSA_NO_FS_WRITE */ #ifndef LIBSA_NO_FS_SEEK __compactcall off_t minixfs3_seek(struct open_file *f, off_t offset, int where) { struct file *fp = (struct file *)f->f_fsdata; switch (where) { case SEEK_SET: fp->f_seekp = offset; break; case SEEK_CUR: fp->f_seekp += offset; break; case SEEK_END: fp->f_seekp = fp->f_di.mdi_size - offset; break; default: return -1; } return fp->f_seekp; } #endif /* !LIBSA_NO_FS_SEEK */ __compactcall int minixfs3_stat(struct open_file *f, struct stat *sb) { struct file *fp = (struct file *)f->f_fsdata; /* only important stuff */ memset(sb, 0, sizeof *sb); sb->st_mode = fp->f_di.mdi_mode; sb->st_uid = fp->f_di.mdi_uid; sb->st_gid = fp->f_di.mdi_gid; sb->st_size = fp->f_di.mdi_size; return 0; } #if defined(LIBSA_ENABLE_LS_OP) #include "ls.h" #if defined(__minix) && !defined(LIBSA_ENABLE_LOAD_MODS_OP) __compactcall void minixfs3_ls(struct open_file *f, const char *pattern) #else __compactcall lsentry_t * minixfs3_list(struct open_file *f, const char *pattern); __compactcall void minixfs3_ls(struct open_file *f, const char *pattern) { lsentry_t *names = minixfs3_list(f, pattern); lsprint(names); lsfree(names); } __compactcall void minixfs3_load_mods(struct open_file *f, const char *pattern, void (*funcp)(char *), char *path) { lsentry_t *names = minixfs3_list(f, pattern); lsapply(names, pattern, funcp, path); lsfree(names); } __compactcall lsentry_t * minixfs3_list(struct open_file *f, const char *pattern) #endif /* defined(__minix) && defined(LIBSA_ENABLE_LOAD_MODS_OP) */ { struct file *fp = (struct file *)f->f_fsdata; struct mfs_sblock *fs = fp->f_fs; struct mfs_direct *dp; struct mfs_direct *dbuf; size_t buf_size; lsentry_t *names = 0; fp->f_seekp = 0; while (fp->f_seekp < (off_t)fp->f_di.mdi_size) { int rc = buf_read_file(f, &dbuf, &buf_size); if (rc) goto out; /* XXX we assume, that buf_read_file reads an fs block and * doesn't truncate buffer. Currently i_size in MFS doesn't * the same as size of allocated blocks, it makes buf_read_file * to truncate buf_size. */ if (buf_size < fs->mfs_block_size) buf_size = fs->mfs_block_size; for (dp = dbuf; dp < &dbuf[NR_DIR_ENTRIES(fs)]; dp++) { char *cp; int namlen; if (fs2h32(dp->mfsd_ino) == 0) continue; /* Compute the length of the name, * We don't use strlen and strcpy, because original MFS * code doesn't. */ cp = memchr(dp->mfsd_name, '\0', sizeof(dp->mfsd_name)); if (cp == NULL) namlen = sizeof(dp->mfsd_name); else namlen = cp - (dp->mfsd_name); lsadd(&names, pattern, dp->mfsd_name, namlen, fs2h32(dp->mfsd_ino), "?"); } fp->f_seekp += buf_size; } #if defined(__minix) && defined(LIBSA_ENABLE_LOAD_MODS_OP) out: return names; #else lsprint(names); out: lsfree(names); #endif /* defined(__minix) && defined(LIBSA_ENABLE_LOAD_MODS_OP) */ } #endif /* * byte swap functions for big endian machines * (mfs is always little endian) */ /* These functions are only needed if native byte order is not big endian */ #if BYTE_ORDER == BIG_ENDIAN void minixfs3_sb_bswap(struct mfs_sblock *old, struct mfs_sblock *new) { new->mfs_ninodes = bswap32(old->mfs_ninodes); new->mfs_nzones = bswap16(old->mfs_nzones); new->mfs_imap_blocks = bswap16(old->mfs_imap_blocks); new->mfs_zmap_blocks = bswap16(old->mfs_zmap_blocks); new->mfs_firstdatazone_old = bswap16(old->mfs_firstdatazone_old); new->mfs_log_zone_size = bswap16(old->mfs_log_zone_size); new->mfs_max_size = bswap32(old->mfs_max_size); new->mfs_zones = bswap32(old->mfs_zones); new->mfs_magic = bswap16(old->mfs_magic); new->mfs_block_size = bswap16(old->mfs_block_size); new->mfs_disk_version = old->mfs_disk_version; } void minixfs3_i_bswap(struct mfs_dinode *old, struct mfs_dinode *new) { int i; new->mdi_mode = bswap16(old->mdi_mode); new->mdi_nlinks = bswap16(old->mdi_nlinks); new->mdi_uid = bswap16(old->mdi_uid); new->mdi_gid = bswap16(old->mdi_gid); new->mdi_size = bswap32(old->mdi_size); new->mdi_atime = bswap32(old->mdi_atime); new->mdi_mtime = bswap32(old->mdi_mtime); new->mdi_ctime = bswap32(old->mdi_ctime); /* We don't swap here, because indirects must be swapped later * anyway, hence everything is done by block_map(). */ for (i = 0; i < NR_TZONES; i++) new->mdi_zone[i] = old->mdi_zone[i]; } #endif
26.243928
79
0.685672
ff96c3310f7456651dbf280a5e395928456b89c1
1,594
h
C
avogadro/qtplugins/noncovalent/noncovalent.h
aerkiaga/avogadrolibs
f0a64061f521dce156e67e07118db546da6b9f1b
[ "BSD-3-Clause" ]
null
null
null
avogadro/qtplugins/noncovalent/noncovalent.h
aerkiaga/avogadrolibs
f0a64061f521dce156e67e07118db546da6b9f1b
[ "BSD-3-Clause" ]
null
null
null
avogadro/qtplugins/noncovalent/noncovalent.h
aerkiaga/avogadrolibs
f0a64061f521dce156e67e07118db546da6b9f1b
[ "BSD-3-Clause" ]
null
null
null
/****************************************************************************** This source file is part of the Avogadro project. This source code is released under the 3-Clause BSD License, (see "LICENSE"). ******************************************************************************/ #ifndef AVOGADRO_QTPLUGINS_NONCOVALENT_H #define AVOGADRO_QTPLUGINS_NONCOVALENT_H #include <avogadro/core/vector.h> #include <avogadro/qtgui/sceneplugin.h> namespace Avogadro { namespace QtPlugins { /** * @brief Predict some non-covalent interactions, like hydrogen bonds. * @author Aritz Erkiaga */ class NonCovalent : public QtGui::ScenePlugin { Q_OBJECT public: explicit NonCovalent(QObject* parent = nullptr); ~NonCovalent() override; void process(const QtGui::Molecule& molecule, Rendering::GroupNode& node) override; QString name() const override { return tr("Non-Covalent"); } QString description() const override { return tr("Render a few non-covalent interactions."); } QWidget* setupWidget() override; DefaultBehavior defaultBehavior() const override { return DefaultBehavior::False; } public slots: void setAngleTolerance(float angleTolerance); void setMaximumDistance(float maximumDistance); void setLineWidth(float width); private: std::string m_name = "Non-Covalent"; double m_angleToleranceDegrees; double m_maximumDistance; std::array<Vector3ub, 1> m_lineColors; std::array<float, 1> m_lineWidths; }; } // end namespace QtPlugins } // end namespace Avogadro #endif // AVOGADRO_QTPLUGINS_NONCOVALENT_H
25.709677
79
0.669385
ff99ccb6abfd364ea3e8d278a544af2b3b3b3636
1,776
h
C
pge/source/pge/rendering/material/Material.h
222464/PGE
8801301046a0412c323444a7f9f49e02f9ac87cc
[ "Zlib" ]
100
2016-05-04T00:05:43.000Z
2021-09-11T17:34:31.000Z
pge/source/pge/rendering/material/Material.h
222464/PGE
8801301046a0412c323444a7f9f49e02f9ac87cc
[ "Zlib" ]
8
2016-05-06T12:51:53.000Z
2017-07-20T20:15:46.000Z
pge/source/pge/rendering/material/Material.h
222464/PGE
8801301046a0412c323444a7f9f49e02f9ac87cc
[ "Zlib" ]
16
2016-05-04T06:37:20.000Z
2020-11-12T17:24:55.000Z
#pragma once #include <pge/scene/RenderScene.h> #include <pge/rendering/texture/Texture2D.h> #include <pge/rendering/bufferobjects/VBO.h> namespace pge { // Set texture pointers to NULL to indicate it is not used class Material { private: VBO _uniformBuffer; bool _refreshUniformBuffer; public: Vec3f _diffuseColor; float _specularColor; float _shininess; float _emissiveColor; // Special float _heightMapScale; Texture2D* _pDiffuseMap; Texture2D* _pSpecularMap; Texture2D* _pShininessMap; Texture2D* _pEmissiveMap; // Special Texture2D* _pNormalMap; Texture2D* _pHeightMap; RenderScene::GBufferRenderShaderType _type; Material(); void createUniformBuffer(const UBOShaderInterface &uboShaderInterface); void setUniforms(Shader* pShader, Texture2D* pWhiteTexture); void setUniformsTextures(Shader* pShader, Texture2D* pWhiteTexture); void setUniformsBuffer(UBOShaderInterface &uboShaderInterface); void bindUniformBuffer(UBOShaderInterface &uboShaderInterface); const VBO &getUniformBuffer() const { return _uniformBuffer; } RenderScene::GBufferRenderShaderType getShaderType() const { return _type; } void updateShaderType(); void refreshUniformBuffer() { _refreshUniformBuffer = true; } void genMipMaps(); static bool loadFromMTL(const std::string &fileName, AssetManager* pTextureManager, std::vector<Material> &materials); static bool loadFromMTL(const std::string &fileName, AssetManager* pTextureManager, std::vector<std::string> &materialNames, std::vector<Material> &materials); static bool loadFromMTL(const std::string &fileName, AssetManager* pTextureManager, std::unordered_map<std::string, size_t> &materialNamesToIndicesMap, std::vector<Material> &materials); }; }
27.75
188
0.771396
ff9aa3a39ce0cc3779996d3f9e55b8f03d587f38
3,606
c
C
hash_table.c
AkaShark/LeetCode_algorithm
0ca6e9d096a75d74f3a7d4a13677307d291ee4fa
[ "MIT" ]
null
null
null
hash_table.c
AkaShark/LeetCode_algorithm
0ca6e9d096a75d74f3a7d4a13677307d291ee4fa
[ "MIT" ]
null
null
null
hash_table.c
AkaShark/LeetCode_algorithm
0ca6e9d096a75d74f3a7d4a13677307d291ee4fa
[ "MIT" ]
null
null
null
#include"hash_table.h" #include<stdlib.h> #include<string.h> #include<stdio.h> #define Table_Size (1024*1024) struct kv{ struct kv *next; char *key; void *value; void (*free_value)(void *); }; // hashTable struct HashTable{ struct kv **table; }; static void init_kv(struct kv *kv){ kv->next = NULL; kv->key = NULL; kv->value = NULL; kv->free_value = NULL; } static void free_kv(struct kv* kv){ if (kv) { if (kv->free_value) { kv->free_value(kv->value); } free(kv->key); kv->key = NULL; free(kv); } } // times33 hash function static unsigned int hash_33(char *key){ unsigned int hash = 0; while (*key) { hash=(hash<<5)+hash+*key++; } return hash; } // new HashTable* hash_table_new(){ HashTable *ht = malloc(sizeof(HashTable)); if (NULL==ht) { hash_table_delete(ht); return NULL; } ht->table = malloc(sizeof(struct kv*)*Table_Size); if (NULL==ht->table) { hash_table_delete(ht); return NULL; } memset(ht->table,0,sizeof(struct kv*)*Table_Size); return ht; } // delete void hash_table_delete(HashTable *ht){ if (ht) { if (ht->table) { int i = 0; for (i = 0; i < Table_Size; i++) { struct kv *p = ht->table[i]; struct kv *q = NULL; while (p) { q = p->next; free_kv(p); p = q; } } free(ht->table); ht->table = NULL; } free(ht); } } // insert int hash_table_put2(HashTable* ht, char* key, void* value, void(*free_value)(void*)){ int i = hash_33(key) % Table_Size; struct kv *p = ht->table[i]; struct kv *pre = p; while (p) { // already stored if (strcmp(p->key,key)==0) { if (p->free_value) { p->free_value(p->free_value); } p->value = value; p->free_value = free_value; break; } pre = p; p = p->next; } // has not stored if (p==NULL) { char *kstr = malloc(strlen(key)+1); if (kstr==NULL) { return -1; } struct kv *kv = malloc(sizeof(struct kv)); if (NULL == kv) { free(kstr); kstr = NULL; return -1; } init_kv(kv); kv->next = NULL; strcpy(kstr,key); kv->key = kstr; kv->value = value; kv->free_value = free_value; if (pre==NULL) { ht->table[i] = kv; }else { pre->next = kv; } } return 0; } void *hash_table_get(HashTable *ht,char* key){ int i = hash_33(key) % Table_Size; struct kv *p = ht->table[i]; while (p) { if(strcmp(key,p->key)==0){ return p->value; } // 链式冲突解决 p = p->next; } return NULL; } void hash_table_rm(HashTable *ht,char*key){ int i = hash_33(key) % Table_Size; struct kv *p = ht->table[i]; struct kv *pre = p; while (p) { if (strcmp(key,p->key)==0) { free_kv(p); if(p==pre){ ht->table[i] = NULL: }else{ pre->next = p->next; } } pre = p; p = p->next; } }
19.387097
85
0.437327
ff9b785dfa3b384e71f79674e77ad60f2a8ae236
568
h
C
x86/x86.h
mrexodia/REDasm-Assemblers
182c16d82d2f46dc8e0f0f3d15f8e455d992f556
[ "MIT" ]
8
2019-06-09T10:22:26.000Z
2021-03-17T02:43:15.000Z
x86/x86.h
mrexodia/REDasm-Assemblers
182c16d82d2f46dc8e0f0f3d15f8e455d992f556
[ "MIT" ]
2
2019-07-15T13:55:57.000Z
2019-07-15T13:56:18.000Z
x86/x86.h
mrexodia/REDasm-Assemblers
182c16d82d2f46dc8e0f0f3d15f8e455d992f556
[ "MIT" ]
9
2019-10-13T19:09:41.000Z
2021-09-10T22:35:13.000Z
#pragma once #include "zydiscommon.h" class X86Assembler: public ZydisCommon { public: X86Assembler(RDContext* ctx, size_t bits); void lift(rd_address address, const RDBufferView* view, RDILFunction* il); void renderInstruction(const RDRendererParams* srp); void emulate(RDEmulateResult* result); private: void processRefs(ZydisDecodedInstruction* zinstr, rd_address address, RDEmulateResult* result); private: RDContext* m_context; ZydisFormatter m_formatter; ZydisDecoder m_decoder; };
27.047619
103
0.704225
ff9cd35f1b81aeb9317f2f25eaaa0b9262e6f8eb
417
h
C
src/dynaMIS.h
GPLi-WORK/dynaMIS
a1f40ba54ada5a21c502275287434f9a78db83ba
[ "MIT" ]
1
2021-03-20T14:50:01.000Z
2021-03-20T14:50:01.000Z
src/dynaMIS.h
GPLi-WORK/dynaMIS
a1f40ba54ada5a21c502275287434f9a78db83ba
[ "MIT" ]
null
null
null
src/dynaMIS.h
GPLi-WORK/dynaMIS
a1f40ba54ada5a21c502275287434f9a78db83ba
[ "MIT" ]
2
2021-12-12T11:10:12.000Z
2022-03-11T09:46:02.000Z
/* * dynaMIS.h * * Created on: Sep 23, 2019 * Author: guangping */ #pragma once #include "problem.h" #include "rect_problem.h" #include "miscellaneous.h" #include "simulation.h" #include "mis_cg.h" #include "mis_ors.h" #include "grid.h" #include "grid_greedy.h" #include "grid_k.h" #include "grid_k_greedy.h" #include "line.h" #include "line_greedy.h" #include "line_rect.h" #include "line_rect_greedy.h"
18.130435
29
0.70024
ffa09999d27fbfdef011ebafba14af09d695aa08
1,248
h
C
KSAutoCompleteTextfield/KSAutoCompleteTextfield.h
poetryfar/KSAutoCompleteTextField
2a3742342a3cd3c78855bb3ec2585d2c9cdc5611
[ "Apache-2.0" ]
2
2015-04-22T14:23:20.000Z
2015-04-23T03:01:34.000Z
KSAutoCompleteTextfield/KSAutoCompleteTextfield.h
poetryfar/KSAutoCompleteTextField
2a3742342a3cd3c78855bb3ec2585d2c9cdc5611
[ "Apache-2.0" ]
null
null
null
KSAutoCompleteTextfield/KSAutoCompleteTextfield.h
poetryfar/KSAutoCompleteTextField
2a3742342a3cd3c78855bb3ec2585d2c9cdc5611
[ "Apache-2.0" ]
null
null
null
// // KSAutoCompleteTextfield.h // KSAutoCompleteTextfield // // Created by Cube on 14-1-28. // Copyright (c) 2014年 Cube. All rights reserved. // // KSAutoCompleteTextfieldStatus_input 表示是正常输入的状态 // KSAutoCompleteTextfieldStatus_delete 表示是当前正在删除的状态 // KSAutoCompleteTextfieldStatus_complete 表示正在补全的状态 // #import <UIKit/UIKit.h> typedef NS_ENUM(NSInteger, KSAutoCompleteTextfieldStatus) { KSAutoCompleteTextfieldStatus_NA, KSAutoCompleteTextfieldStatus_input, KSAutoCompleteTextfieldStatus_delete, KSAutoCompleteTextfieldStatus_complete, }; @interface KSAutoCompleteTextfield : UITextField /** 初始化函数 @param frame frame @param 字体大小 @param 补全的大小 */ - (id)initWithFrame:(CGRect)frame withFont:(UIFont*)font withCompleteColor:(UIColor*)completeColor; /** 补全调用的函数 @param 补全的字符串,一般是当前输入的字符串 @param 补全的前缀,通常是targetString的一部分 */ - (void)completeWithTagrgetString:(NSString*)targetString withPrefixString:(NSString*)prefixString; /** 继续用上次补全的字符串做补全 */ - (void)completeLastCompleteWithPrefixString:(NSString*)prefixString; /** 清除补全的状态 */ - (void)clearComplete; @property(nonatomic,copy)NSString *completeString; @property(nonatomic,assign)KSAutoCompleteTextfieldStatus status; @end
23.111111
69
0.770032
ffa109198897678cbf776143c8e76ec0642a6076
364
h
C
FlowerFire/商城/Page/Mine/Second/View/LoginInputView.h
CoderWeiLee/FlowerFire
7109cc2f2b41f4c92617e7d6b8af2b6c57bc8a62
[ "MIT" ]
1
2021-01-16T15:15:18.000Z
2021-01-16T15:15:18.000Z
FlowerFire/商城/Page/Mine/Second/View/LoginInputView.h
CoderWeiLee/FlowerFire
7109cc2f2b41f4c92617e7d6b8af2b6c57bc8a62
[ "MIT" ]
null
null
null
FlowerFire/商城/Page/Mine/Second/View/LoginInputView.h
CoderWeiLee/FlowerFire
7109cc2f2b41f4c92617e7d6b8af2b6c57bc8a62
[ "MIT" ]
null
null
null
// // LoginInputView.h // 531Mall // // Created by 王涛 on 2020/5/22. // Copyright © 2020 Celery. All rights reserved. // #import "BaseUIView.h" NS_ASSUME_NONNULL_BEGIN @interface LoginInputView : UITextField -(instancetype)initWithFrame:(CGRect)frame placeholderStr:(NSString *)placeholderStr rightView:(UIView *)rightView; @end NS_ASSUME_NONNULL_END
17.333333
115
0.747253
ffa40c0fe1a1a299448beb665cb575a4dd74e0b3
529
h
C
src/dico.h
ColinLaugier/Scrabble-M3103-2020
4e2f971c32fca42454e836bd7a9a43b9ceb17ac3
[ "MIT" ]
null
null
null
src/dico.h
ColinLaugier/Scrabble-M3103-2020
4e2f971c32fca42454e836bd7a9a43b9ceb17ac3
[ "MIT" ]
null
null
null
src/dico.h
ColinLaugier/Scrabble-M3103-2020
4e2f971c32fca42454e836bd7a9a43b9ceb17ac3
[ "MIT" ]
null
null
null
/** * @authors LAUGIER Colin, RADJA Samy, SOLLIER Alexandre, TRON Anthony * @date 10/10/2020 * @brief The dico class */ #ifndef DICO_H #define DICO_H #include <string> #include <map> #include <unordered_set> typedef unsigned char word_size_t; class dico { private: std::map<word_size_t, std::unordered_set<std::string>> m_dico; public: void add(const std::string& word); void show() const; bool find(const std::string& word) const; bool parseFile(const std::string& file); }; #endif // DICO_H
17.064516
71
0.68431
ffa42216ba2e723924c7faaf2af815dc0e6cb220
740
c
C
Task008.c
maffin-1/C
46dd7232a5b45f4ab287276401d7269eb8d0f6ca
[ "MIT" ]
null
null
null
Task008.c
maffin-1/C
46dd7232a5b45f4ab287276401d7269eb8d0f6ca
[ "MIT" ]
null
null
null
Task008.c
maffin-1/C
46dd7232a5b45f4ab287276401d7269eb8d0f6ca
[ "MIT" ]
null
null
null
#include <stdio.h> void main() { int sum = 0; char x='n', y='n', z='n', b='n'; printf("Here is a small Questionary for you:\n"); printf("Are you a Close Friend to Bride and Groom? (y/n): "); scanf("%2c", &x); printf("Are you a Relative for Bride or Groom? (y/n): "); scanf("%2c", &y); printf("Do you know Bride or Groom more than 3 years? (y/n): "); scanf("%2c", &z); printf("Will Road to wedding take more than 1 hour? (y/n): "); scanf("%2c", &b); sum = 0; if (x == 'y') sum += 500; if (y == 'y') sum += 1000; else if (x == 'n') sum += 250; if (z == 'y' && x != 'y') sum +=50; if (b == 'y' && x != 'y') sum -= 50; printf("check for %d nis\n", sum); }
25.517241
68
0.47973
ffa4fa6b19e153c1fc571d5e0cbabe67659f74fe
394
h
C
Persistency/Model/ETObservation.h
etoile/EtoileUI
5c0abe5094742d6e86b0f4305a333fed928fdf35
[ "BSD-3-Clause" ]
9
2015-09-23T02:45:22.000Z
2022-02-05T07:39:40.000Z
Persistency/Model/ETObservation.h
etoile/EtoileUI
5c0abe5094742d6e86b0f4305a333fed928fdf35
[ "BSD-3-Clause" ]
null
null
null
Persistency/Model/ETObservation.h
etoile/EtoileUI
5c0abe5094742d6e86b0f4305a333fed928fdf35
[ "BSD-3-Clause" ]
6
2015-01-01T14:02:34.000Z
2021-11-13T03:01:17.000Z
/** Copyright (C) 2014 Quentin Mathe Author: Quentin Mathe <quentin.mathe@gmail.com> Date: June 2014 License: Modified BSD (see COPYING) */ #import <Foundation/Foundation.h> #import <CoreObject/COObject.h> @interface ETObservation : COObject @property (nonatomic, retain) COObject *object; @property (nonatomic, copy) NSString *name; @property (nonatomic, assign) SEL selector; @end
21.888889
49
0.743655
ffa8c3e67c933a196c067adf348c830ea56860b2
209
h
C
MyBibibi/MyBibibi/ViewController.h
WeiJia0905/HM2
463cdacfb2b29d7b7d8c802164e17705e7921dde
[ "Apache-2.0" ]
null
null
null
MyBibibi/MyBibibi/ViewController.h
WeiJia0905/HM2
463cdacfb2b29d7b7d8c802164e17705e7921dde
[ "Apache-2.0" ]
null
null
null
MyBibibi/MyBibibi/ViewController.h
WeiJia0905/HM2
463cdacfb2b29d7b7d8c802164e17705e7921dde
[ "Apache-2.0" ]
null
null
null
// // ViewController.h // MyBibibi // // Created by lanou3g on 15/8/5. // Copyright (c) 2015年 WeiJia. All rights reserved. // #import <UIKit/UIKit.h> @interface ViewController : UIViewController @end
13.0625
52
0.679426
ffa9a03560adb9b42d2e0c6a46280d90e3c2b182
86
c
C
libssm_ref-0.6.6-r2263/src/mr/ssm_mr_destroy.c
matthewcurry/single-sided-messaging
3993f7c90cd9e12a689095ee7396cf0e6c35de0e
[ "BSD-2-Clause" ]
1
2019-12-13T17:54:41.000Z
2019-12-13T17:54:41.000Z
deps/libssm_ref-0.6.6-r2263/src/mr/ssm_mr_destroy.c
matthewcurry/sirocco-release
008c5e40c360053300e8f61e03e36c448287a193
[ "BSD-2-Clause" ]
null
null
null
deps/libssm_ref-0.6.6-r2263/src/mr/ssm_mr_destroy.c
matthewcurry/sirocco-release
008c5e40c360053300e8f61e03e36c448287a193
[ "BSD-2-Clause" ]
null
null
null
#include <ssm_mr_ref.h> int ssm_mr_destroy(ssm_mr mr) { SSM_DEL(mr); return 0; }
10.75
29
0.686047
ffaafd405de80a253da4367b2e13c427d28de333
2,422
c
C
ftmlx/cam_faces_1.c
fde-capu/miniRT
dd289c8ed15fbbcc00e574bb8056d16f07bdc4a1
[ "Apache-2.0" ]
7
2020-08-14T20:34:33.000Z
2022-02-15T21:27:02.000Z
ftmlx/cam_faces_1.c
fde-capu/miniRT
dd289c8ed15fbbcc00e574bb8056d16f07bdc4a1
[ "Apache-2.0" ]
null
null
null
ftmlx/cam_faces_1.c
fde-capu/miniRT
dd289c8ed15fbbcc00e574bb8056d16f07bdc4a1
[ "Apache-2.0" ]
null
null
null
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* cam_faces_1.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: fde-capu <fde-capu@student.42sp.org.br> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/09/02 19:54:39 by fde-capu #+# #+# */ /* Updated: 2020/09/02 19:59:55 by fde-capu ### ########.fr */ /* */ /* ************************************************************************** */ #include "ftmlx.h" void cam_faces_y(t_cam *cam, t_vec **pix) { t_mat *trf; trf = vector_vector_rotation_matrix(g_y, g_z); vector_transform(pix, trf); trf = vectorx(trf, vector_vector_rotation_matrix(cam->n, g_z)); vector_transform(pix, trf); vector_destroy(trf); return ; } void cam_faces_minus_y(t_cam *cam, t_vec **pix) { t_mat *trf; vector_multiply_element(*pix, 1, -1.0); trf = vector_vector_rotation_matrix(g_y, g_z); vector_transform(pix, trf); trf = vectorx(trf, vector_vector_rotation_matrix(cam->n, g_z)); vector_transform(pix, trf); vector_destroy(trf); return ; } void cam_faces_minus_x(t_cam *cam, t_vec **pix) { t_mat *trf; trf = vector_vector_rotation_matrix(g_y, g_x); vector_transform(pix, trf); trf = vectorx(trf, vector_vector_rotation_matrix(g_z, g_x)); vector_transform(pix, trf); trf = vectorx(trf, vector_vector_rotation_matrix(cam->n, g_z)); vector_transform(pix, trf); vector_destroy(trf); return ; } void cam_faces_x(t_cam *cam, t_vec **pix) { t_mat *trf; trf = vector_vector_rotation_matrix(g_y, g_x); vector_transform(pix, trf); trf = vectorx(trf, vector_vector_rotation_matrix(g_z, g_x)); vector_transform(pix, trf); trf = vectorx(trf, vector_vector_rotation_matrix(cam->n, g_z)); vector_transform(pix, trf); vector_destroy(trf); return ; } void cam_faces_minus_z(t_cam *cam, t_vec **pix) { t_mat *trf; vector_multiply_element(*pix, 2, -1.0); trf = vector_vector_rotation_matrix(cam->n, g_y); vector_transform(pix, trf); vector_destroy(trf); return ; }
31.051282
80
0.507845
ffad107608971cd1286f0510415bdaecc0de34db
92
h
C
src/config.h
adyxax/b98
1b03e5bfb2317804619057924e7261fd49f68a54
[ "MIT" ]
2
2016-08-18T10:01:20.000Z
2020-01-31T15:59:27.000Z
src/config.h
adyxax/b98
1b03e5bfb2317804619057924e7261fd49f68a54
[ "MIT" ]
null
null
null
src/config.h
adyxax/b98
1b03e5bfb2317804619057924e7261fd49f68a54
[ "MIT" ]
null
null
null
#ifndef _CONFIG_H_ #define _CONFIG_H_ #define HOST "example.com" #define PORT 6667 #endif
11.5
26
0.771739
ffaf81a026d264cb2f49081bb3443679ef82e157
12,011
h
C
nfc/hal/int/nfc_hal_int_api.h
aminfauzi/android_device_samsung_hlte-common
d8a70ed6442b7bd047d8abb777deb98ab694727e
[ "FTL" ]
17
2016-10-02T23:56:06.000Z
2021-06-06T04:49:03.000Z
nfc/hal/int/nfc_hal_int_api.h
aminfauzi/android_device_samsung_hlte-common
d8a70ed6442b7bd047d8abb777deb98ab694727e
[ "FTL" ]
2
2020-05-11T22:12:07.000Z
2022-03-14T08:07:22.000Z
nfc/hal/int/nfc_hal_int_api.h
aminfauzi/android_device_samsung_hlte-common
d8a70ed6442b7bd047d8abb777deb98ab694727e
[ "FTL" ]
33
2015-06-05T07:38:19.000Z
2022-03-31T04:21:09.000Z
/****************************************************************************** * * Copyright (C) 2009-2014 Broadcom 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 to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * ******************************************************************************/ /****************************************************************************** * * Internal NFC HAL API functions. * ******************************************************************************/ #ifndef NFC_HAL_INT_API_H #define NFC_HAL_INT_API_H /**************************************************************************** ** Device Configuration definitions ****************************************************************************/ #define NFC_HAL_PLL_325_SETCONFIG_PARAM_LEN (2 + NCI_PARAM_LEN_PLL325_CFG_PARAM) /* Crystal Frequency Index (in 1 KHz) */ enum { NFC_HAL_XTAL_INDEX_9600, NFC_HAL_XTAL_INDEX_13000, NFC_HAL_XTAL_INDEX_16200, NFC_HAL_XTAL_INDEX_19200, NFC_HAL_XTAL_INDEX_24000, NFC_HAL_XTAL_INDEX_26000, NFC_HAL_XTAL_INDEX_38400, NFC_HAL_XTAL_INDEX_52000, NFC_HAL_XTAL_INDEX_37400, NFC_HAL_XTAL_INDEX_MAX, NFC_HAL_XTAL_INDEX_SPECIAL = 0xFF }; typedef uint8_t tNFC_HAL_XTAL_INDEX; /* Broadcom specific device initialization before sending NCI reset */ typedef struct { uint32_t brcm_hw_id; uint16_t xtal_freq; uint8_t xtal_index; } tNFC_HAL_DEV_INIT_XTAL_CFG; #define NFC_HAL_DEV_INIT_MAX_XTAL_CFG 5 typedef struct { uint8_t num_xtal_cfg; tNFC_HAL_DEV_INIT_XTAL_CFG xtal_cfg[NFC_HAL_DEV_INIT_MAX_XTAL_CFG]; } tNFC_HAL_DEV_INIT_CFG; /***************************************************************************** ** Low Power Mode definitions *****************************************************************************/ /* Snooze mode disabled */ #define NFC_HAL_LP_SNOOZE_MODE_NONE NFC_SNOOZE_MODE_NONE /* Snooze mode for UART */ #define NFC_HAL_LP_SNOOZE_MODE_UART NFC_SNOOZE_MODE_UART /* Snooze mode for SPI/I2C */ #define NFC_HAL_LP_SNOOZE_MODE_SPI_I2C NFC_SNOOZE_MODE_SPI_I2C /* high to low voltage is asserting */ #define NFC_HAL_LP_ACTIVE_LOW NFC_SNOOZE_ACTIVE_LOW /* low to high voltage is asserting */ #define NFC_HAL_LP_ACTIVE_HIGH NFC_SNOOZE_ACTIVE_HIGH /***************************************************************************** ** Patch RAM Constants *****************************************************************************/ /* patch format type */ #define NFC_HAL_PRM_FORMAT_BIN 0x00 #define NFC_HAL_PRM_FORMAT_HCD 0x01 #define NFC_HAL_PRM_FORMAT_NCD 0x02 typedef uint8_t tNFC_HAL_PRM_FORMAT; /***************************************************************************** ** Patch RAM Callback for event notificaton *****************************************************************************/ /* Events for tNFC_HAL_PRM_CBACK */ enum { NFC_HAL_PRM_CONTINUE_EVT, NFC_HAL_PRM_COMPLETE_EVT, NFC_HAL_PRM_ABORT_EVT, NFC_HAL_PRM_ABORT_INVALID_PATCH_EVT, /* Patch is invalid (bad version, project id, or chip) */ NFC_HAL_PRM_ABORT_BAD_SIGNATURE_EVT, /* Patch has invalid signature */ NFC_HAL_PRM_SPD_GET_PATCHFILE_HDR_EVT, /* Secure Patch Download: request for patchfile header */ NFC_HAL_PRM_SPD_GET_NEXT_PATCH, /* Get first command of next patch in patchfile */ NFC_HAL_PRM_ABORT_NO_NVM_EVT /* nfc_hal_prm_nvm_required is TRUE and NVM is unavail */ }; typedef void(tNFC_HAL_PRM_CBACK)(uint8_t event); typedef uint8_t tNFC_HAL_NCI_EVT; /* MT + Opcode */ typedef void(tNFC_HAL_NCI_CBACK)(tNFC_HAL_NCI_EVT event, uint16_t data_len, uint8_t* p_data); #ifdef __cplusplus extern "C" { #endif /******************************************************************************* ** ** Function HAL_NfcPreInitDone ** ** Description Notify that pre-initialization of NFCC is complete ** ** Returns void ** *******************************************************************************/ void HAL_NfcPreInitDone(tHAL_NFC_STATUS status); /******************************************************************************* ** ** Function HAL_NfcReInit ** ** Description This function is called to restart initialization after ** REG_PU toggled because of failure to detect NVM type or ** download patchram. ** ** Note This function should be called only during the HAL init ** process ** ** Returns HAL_NFC_STATUS_OK if successfully initiated ** HAL_NFC_STATUS_FAILED otherwise ** *******************************************************************************/ tHAL_NFC_STATUS HAL_NfcReInit(void); /******************************************************************************* ** ** Function HAL_NfcSetSnoozeMode ** ** Description Set snooze mode ** snooze_mode ** NFC_HAL_LP_SNOOZE_MODE_NONE - Snooze mode disabled ** NFC_HAL_LP_SNOOZE_MODE_UART - Snooze mode for UART ** NFC_HAL_LP_SNOOZE_MODE_SPI_I2C - Snooze mode for SPI/I2C ** ** idle_threshold_dh/idle_threshold_nfcc ** Idle Threshold Host in 100ms unit ** ** nfc_wake_active_mode/dh_wake_active_mode ** NFC_HAL_LP_ACTIVE_LOW - high to low voltage is asserting ** NFC_HAL_LP_ACTIVE_HIGH - low to high voltage is ** asserting ** ** p_snooze_cback ** Notify status of operation ** ** Returns tHAL_NFC_STATUS ** *******************************************************************************/ tHAL_NFC_STATUS HAL_NfcSetSnoozeMode(uint8_t snooze_mode, uint8_t idle_threshold_dh, uint8_t idle_threshold_nfcc, uint8_t nfc_wake_active_mode, uint8_t dh_wake_active_mode, tHAL_NFC_STATUS_CBACK* p_snooze_cback); /******************************************************************************* ** ** Function HAL_NfcPrmDownloadStart ** ** Description Initiate patch download ** ** Input Params ** format_type patch format type ** (NFC_HAL_PRM_FORMAT_BIN, ** NFC_HAL_PRM_FORMAT_HCD, or ** NFC_HAL_PRM_FORMAT_NCD) ** ** dest_address destination adderess (needed for BIN format ** only) ** ** p_patchram_buf pointer to patchram buffer. If NULL, then ** app must call HAL_NfcPrmDownloadContinue ** when NFC_HAL_PRM_CONTINUE_EVT is received, ** to send the next segment of patchram ** ** patchram_len size of p_patchram_buf (if non-NULL) ** ** patchram_delay The delay after each patch. ** If the given value is less than the size of ** the patchram, the size of patchram is used ** instead. ** ** p_cback callback for download status ** ** ** Returns TRUE if successful, otherwise FALSE ** ** *******************************************************************************/ bool HAL_NfcPrmDownloadStart(tNFC_HAL_PRM_FORMAT format_type, uint32_t dest_address, uint8_t* p_patchram_buf, uint32_t patchram_len, uint32_t patchram_delay, tNFC_HAL_PRM_CBACK* p_cback); /******************************************************************************* ** ** Function HAL_NfcPrmDownloadContinue ** ** Description Send next segment of patchram to controller. Called when ** NFC_HAL_PRM_CONTINUE_EVT is received. ** ** Only needed if HAL_NfcPrmDownloadStart was called with ** p_patchram_buf=NULL ** ** Input Params p_patch_data pointer to patch data ** patch_data_len patch data len ** ** Returns TRUE if successful, otherwise FALSE ** *******************************************************************************/ bool HAL_NfcPrmDownloadContinue(uint8_t* p_patch_data, uint16_t patch_data_len); /******************************************************************************* ** ** Function HAL_NfcPrmSetI2cPatch ** ** Description Specify patchfile for BCM20791B3 I2C fix. This fix ** must be downloaded prior to initial patch download for I2C ** transport ** ** Input Params p_i2c_patchfile_buf: pointer to patch for i2c fix ** i2c_patchfile_len: length of patch ** prei2c_delay: the delay before downloading main patch ** if 0 is given, NFC_HAL_PRM_POST_I2C_FIX_DELAY ** is used instead. ** ** Returns Nothing ** ** *******************************************************************************/ void HAL_NfcPrmSetI2cPatch(uint8_t* p_i2c_patchfile_buf, uint16_t i2c_patchfile_len, uint32_t prei2c_delay); /******************************************************************************* ** ** Function HAL_NfcPrmSetSpdNciCmdPayloadSize ** ** Description Set Host-to-NFCC NCI message size for secure patch download ** ** This API must be called before calling ** HAL_NfcPrmDownloadStart. If the API is not called, then PRM ** will use the default message size. ** ** Typically, this API is only called for platforms that have ** message-size limitations in the transport/driver. ** ** Valid message size range: ** NFC_HAL_PRM_MIN_NCI_CMD_PAYLOAD_SIZE to 255. ** ** Returns HAL_NFC_STATUS_OK if successful ** HAL_NFC_STATUS_FAILED otherwise ** ** *******************************************************************************/ tHAL_NFC_STATUS HAL_NfcPrmSetSpdNciCmdPayloadSize(uint8_t max_payload_size); /******************************************************************************* ** ** Function HAL_NfcSetMaxRfDataCredits ** ** Description This function sets the maximum RF data credit for HAL. ** If 0, use the value reported from NFCC. ** ** Returns none ** *******************************************************************************/ void HAL_NfcSetMaxRfDataCredits(uint8_t max_credits); /******************************************************************************* ** ** Function HAL_NfcSetTraceLevel ** ** Description This function sets the trace level for HAL. If called with ** a value of 0xFF, it simply returns the current trace level. ** ** Returns The new or current trace level ** *******************************************************************************/ uint8_t HAL_NfcSetTraceLevel(uint8_t new_level); #ifdef __cplusplus } #endif #endif /* NFC_HAL_INT_API_H */
38.996753
80
0.50512
ffb1f60c0a2d5e9cf867cc9d9b127bd337e8ea31
150
h
C
BbLibrary/BbDebugObject.h
evilBird/BbCore
9484eda0ade07079aea13dcad66626a0d348c95d
[ "MIT" ]
null
null
null
BbLibrary/BbDebugObject.h
evilBird/BbCore
9484eda0ade07079aea13dcad66626a0d348c95d
[ "MIT" ]
null
null
null
BbLibrary/BbDebugObject.h
evilBird/BbCore
9484eda0ade07079aea13dcad66626a0d348c95d
[ "MIT" ]
null
null
null
// // BbDebugObject.h // Pods // // Created by Travis Henspeter on 2/12/16. // // #import "BbObject.h" @interface BbDebugObject : BbObject @end
10.714286
43
0.646667