hexsha
stringlengths
40
40
size
int64
3
1.05M
ext
stringclasses
163 values
lang
stringclasses
53 values
max_stars_repo_path
stringlengths
3
945
max_stars_repo_name
stringlengths
4
112
max_stars_repo_head_hexsha
stringlengths
40
78
max_stars_repo_licenses
sequencelengths
1
10
max_stars_count
float64
1
191k
max_stars_repo_stars_event_min_datetime
stringlengths
24
24
max_stars_repo_stars_event_max_datetime
stringlengths
24
24
max_issues_repo_path
stringlengths
3
945
max_issues_repo_name
stringlengths
4
113
max_issues_repo_head_hexsha
stringlengths
40
78
max_issues_repo_licenses
sequencelengths
1
10
max_issues_count
float64
1
116k
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
945
max_forks_repo_name
stringlengths
4
113
max_forks_repo_head_hexsha
stringlengths
40
78
max_forks_repo_licenses
sequencelengths
1
10
max_forks_count
float64
1
105k
max_forks_repo_forks_event_min_datetime
stringlengths
24
24
max_forks_repo_forks_event_max_datetime
stringlengths
24
24
content
stringlengths
3
1.05M
avg_line_length
float64
1
966k
max_line_length
int64
1
977k
alphanum_fraction
float64
0
1
1deb7a7c8bd9272ce982b569ad9a01addd1d1127
1,718
ada
Ada
Task/Integer-overflow/Ada/integer-overflow.ada
mullikine/RosettaCodeData
4f0027c6ce83daa36118ee8b67915a13cd23ab67
[ "Info-ZIP" ]
1
2018-11-09T22:08:38.000Z
2018-11-09T22:08:38.000Z
Task/Integer-overflow/Ada/integer-overflow.ada
mullikine/RosettaCodeData
4f0027c6ce83daa36118ee8b67915a13cd23ab67
[ "Info-ZIP" ]
null
null
null
Task/Integer-overflow/Ada/integer-overflow.ada
mullikine/RosettaCodeData
4f0027c6ce83daa36118ee8b67915a13cd23ab67
[ "Info-ZIP" ]
1
2018-11-09T22:08:40.000Z
2018-11-09T22:08:40.000Z
with Ada.Text_IO; use Ada.Text_IO; procedure Overflow is generic type T is Range <>; Name_Of_T: String; procedure Print_Bounds; -- first instantiate this with T, Name -- then call the instantiation procedure Print_Bounds is begin Put_Line(" " & Name_Of_T & " " & T'Image(T'First) & " .." & T'Image(T'Last)); end Print_Bounds; procedure P_Int is new Print_Bounds(Integer, "Integer "); procedure P_Nat is new Print_Bounds(Natural, "Natural "); procedure P_Pos is new Print_Bounds(Positive, "Positive"); procedure P_Long is new Print_Bounds(Long_Integer, "Long "); type Unsigned_Byte is range 0 .. 255; type Signed_Byte is range -128 .. 127; type Unsigned_Word is range 0 .. 2**32-1; type Thousand is range 0 .. 999; type Signed_Double is range - 2**63 .. 2**63-1; type Crazy is range -11 .. -3; procedure P_UB is new Print_Bounds(Unsigned_Byte, "U 8 "); procedure P_SB is new Print_Bounds(Signed_Byte, "S 8 "); procedure P_UW is new Print_Bounds(Unsigned_Word, "U 32 "); procedure P_Th is new Print_Bounds(Thousand, "Thous"); procedure P_SD is new Print_Bounds(Signed_Double, "S 64 "); procedure P_Cr is new Print_Bounds(Crazy, "Crazy"); A: Crazy := Crazy'First; begin Put_Line("Predefined Types:"); P_Int; P_Nat; P_Pos; P_Long; New_Line; Put_Line("Types defined by the user:"); P_UB; P_SB; P_UW; P_Th; P_SD; P_Cr; New_Line; Put_Line("Forcing a variable of type Crazy to overflow:"); loop -- endless loop Put(" " & Crazy'Image(A) & "+1"); A := A + 1; -- line 49 -- this will later raise a CONSTRAINT_ERROR end loop; end Overflow;
33.038462
72
0.648428
1d9e38e4ed2d2791b20777697627e695dd907350
4,687
ads
Ada
bb-runtimes/runtimes/ravenscar-full-stm32f3x4/gnat/s-imguti.ads
JCGobbi/Nucleo-STM32F334R8
2a0b1b4b2664c92773703ac5e95dcb71979d051c
[ "BSD-3-Clause" ]
null
null
null
bb-runtimes/runtimes/ravenscar-full-stm32f3x4/gnat/s-imguti.ads
JCGobbi/Nucleo-STM32F334R8
2a0b1b4b2664c92773703ac5e95dcb71979d051c
[ "BSD-3-Clause" ]
null
null
null
bb-runtimes/runtimes/ravenscar-full-stm32f3x4/gnat/s-imguti.ads
JCGobbi/Nucleo-STM32F334R8
2a0b1b4b2664c92773703ac5e95dcb71979d051c
[ "BSD-3-Clause" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- S Y S T E M . I M G _ U T I L -- -- -- -- S p e c -- -- -- -- Copyright (C) 2020-2021, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- -- -- -- -- -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- This package provides some common utilities used by the s-imgxxx files package System.Img_Util is pragma Pure; Max_Real_Image_Length : constant := 5200; -- If Exp is set to zero and Aft is set to Text_IO.Field'Last (i.e., 255) -- then Long_Long_Float'Last generates an image whose length is slightly -- less than 5200. procedure Set_Decimal_Digits (Digs : in out String; NDigs : Natural; S : out String; P : in out Natural; Scale : Integer; Fore : Natural; Aft : Natural; Exp : Natural); -- Sets the image of Digs (1 .. NDigs), which is a string of decimal digits -- preceded by either a minus sign or a space, i.e. the integer image of -- the value in units of delta if this is for a decimal fixed point type -- with the given Scale, or the integer image of the value converted to an -- implicit decimal fixed point type with the given Scale if this is for an -- ordinary fixed point type, starting at S (P + 1), updating P to point to -- the last character stored. The caller promises that the buffer is large -- enough and therefore no check is made for it. Constraint_Error will not -- necessarily be raised if the requirement is violated since it is valid -- to compile this unit with checks off. The Fore, Aft and Exp values can -- be set to any valid values for the case of use by Text_IO.Decimal_IO or -- Text_IO.Fixed_IO. Note that there is no leading space stored. The call -- may destroy the value in Digs, which is why Digs is in-out (this happens -- if rounding is required). type Floating_Invalid_Value is (Minus_Infinity, Infinity, Not_A_Number); procedure Set_Floating_Invalid_Value (V : Floating_Invalid_Value; S : out String; P : in out Natural; Fore : Natural; Aft : Natural; Exp : Natural); -- Sets the image of a floating-point invalid value, starting at S (P + 1), -- updating P to point to the last character stored. The caller promises -- that the buffer is large enough and therefore no check is made for it. -- Constraint_Error will not necessarily be raised if the requirement is -- violated since it is valid to compile this unit with checks off. end System.Img_Util;
57.158537
79
0.487945
06ecbf6fbab685d6f2b0d217e85298d9f6435ca8
825
ada
Ada
Task/Long-multiplication/Ada/long-multiplication-4.ada
mullikine/RosettaCodeData
4f0027c6ce83daa36118ee8b67915a13cd23ab67
[ "Info-ZIP" ]
1
2018-11-09T22:08:38.000Z
2018-11-09T22:08:38.000Z
Task/Long-multiplication/Ada/long-multiplication-4.ada
mullikine/RosettaCodeData
4f0027c6ce83daa36118ee8b67915a13cd23ab67
[ "Info-ZIP" ]
null
null
null
Task/Long-multiplication/Ada/long-multiplication-4.ada
mullikine/RosettaCodeData
4f0027c6ce83daa36118ee8b67915a13cd23ab67
[ "Info-ZIP" ]
1
2018-11-09T22:08:40.000Z
2018-11-09T22:08:40.000Z
type Long_Number is array (Natural range <>) of Unsigned_32; function "*" (Left, Right : Long_Number) return Long_Number is Result : Long_Number (0..Left'Length + Right'Length - 1) := (others => 0); Accum : Unsigned_64; begin for I in Left'Range loop for J in Right'Range loop Accum := Unsigned_64 (Left (I)) * Unsigned_64 (Right (J)); for K in I + J..Result'Last loop exit when Accum = 0; Accum := Accum + Unsigned_64 (Result (K)); Result (K) := Unsigned_32 (Accum and 16#FFFF_FFFF#); Accum := Accum / 2**32; end loop; end loop; end loop; for Index in reverse Result'Range loop -- Normalization if Result (Index) /= 0 then return Result (0..Index); end if; end loop; return (0 => 0); end "*";
33
77
0.579394
29c2276916562f2ffcef1a64af7693e6748e022f
172
ads
Ada
generated/natools-static_maps-web-comments-list_commands.ads
faelys/natools-web
f7ba99f2ffb6f5a06d1b1e8becbf5f92fd58c750
[ "0BSD" ]
1
2015-04-23T10:48:58.000Z
2015-04-23T10:48:58.000Z
generated/natools-static_maps-web-comments-list_commands.ads
faelys/natools-web
f7ba99f2ffb6f5a06d1b1e8becbf5f92fd58c750
[ "0BSD" ]
null
null
null
generated/natools-static_maps-web-comments-list_commands.ads
faelys/natools-web
f7ba99f2ffb6f5a06d1b1e8becbf5f92fd58c750
[ "0BSD" ]
null
null
null
package Natools.Static_Maps.Web.Comments.List_Commands is pragma Pure; function Hash (S : String) return Natural; end Natools.Static_Maps.Web.Comments.List_Commands;
34.4
57
0.802326
1dd87e70e9e3199b72d1a8cb5d9297c2b2c64925
7,587
ads
Ada
include/bits_pthreadtypes_h.ads
docandrew/troodon
9240611708f92ffb5491fa677bffb6ecac58a51e
[ "MIT" ]
5
2021-11-03T04:34:16.000Z
2021-11-10T23:06:30.000Z
include/bits_pthreadtypes_h.ads
docandrew/troodon
9240611708f92ffb5491fa677bffb6ecac58a51e
[ "MIT" ]
null
null
null
include/bits_pthreadtypes_h.ads
docandrew/troodon
9240611708f92ffb5491fa677bffb6ecac58a51e
[ "MIT" ]
null
null
null
pragma Ada_2012; pragma Style_Checks (Off); with Interfaces.C; use Interfaces.C; with bits_struct_mutex_h; with bits_thread_shared_types_h; with bits_struct_rwlock_h; package bits_pthreadtypes_h is -- Declaration of common pthread types for all architectures. -- Copyright (C) 2017-2021 Free Software Foundation, Inc. -- This file is part of the GNU C Library. -- The GNU C Library is free software; you can redistribute it and/or -- modify it under the terms of the GNU Lesser General Public -- License as published by the Free Software Foundation; either -- version 2.1 of the License, or (at your option) any later version. -- The GNU C Library 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 -- Lesser General Public License for more details. -- You should have received a copy of the GNU Lesser General Public -- License along with the GNU C Library; if not, see -- <https://www.gnu.org/licenses/>. -- For internal mutex and condition variable definitions. -- Thread identifiers. The structure of the attribute type is not -- exposed on purpose. subtype pthread_t is unsigned_long; -- /usr/include/bits/pthreadtypes.h:27 -- Data structures for mutex handling. The structure of the attribute -- type is not exposed on purpose. -- skipped anonymous struct anon_8 subtype pthread_mutexattr_t_array1001 is Interfaces.C.char_array (0 .. 3); type pthread_mutexattr_t (discr : unsigned := 0) is record case discr is when 0 => uu_size : aliased pthread_mutexattr_t_array1001; -- /usr/include/bits/pthreadtypes.h:34 when others => uu_align : aliased int; -- /usr/include/bits/pthreadtypes.h:35 end case; end record with Convention => C_Pass_By_Copy, Unchecked_Union => True; -- /usr/include/bits/pthreadtypes.h:36 -- Data structure for condition variable handling. The structure of -- the attribute type is not exposed on purpose. -- skipped anonymous struct anon_9 subtype pthread_condattr_t_array1001 is Interfaces.C.char_array (0 .. 3); type pthread_condattr_t (discr : unsigned := 0) is record case discr is when 0 => uu_size : aliased pthread_condattr_t_array1001; -- /usr/include/bits/pthreadtypes.h:43 when others => uu_align : aliased int; -- /usr/include/bits/pthreadtypes.h:44 end case; end record with Convention => C_Pass_By_Copy, Unchecked_Union => True; -- /usr/include/bits/pthreadtypes.h:45 -- Keys for thread-specific data subtype pthread_key_t is unsigned; -- /usr/include/bits/pthreadtypes.h:49 -- Once-only execution subtype pthread_once_t is int; -- /usr/include/bits/pthreadtypes.h:53 subtype pthread_attr_t_array1009 is Interfaces.C.char_array (0 .. 55); type pthread_attr_t (discr : unsigned := 0) is record case discr is when 0 => uu_size : aliased pthread_attr_t_array1009; -- /usr/include/bits/pthreadtypes.h:58 when others => uu_align : aliased long; -- /usr/include/bits/pthreadtypes.h:59 end case; end record with Convention => C_Pass_By_Copy, Unchecked_Union => True; -- /usr/include/bits/pthreadtypes.h:56 -- skipped anonymous struct anon_10 subtype pthread_mutex_t_array1014 is Interfaces.C.char_array (0 .. 39); type pthread_mutex_t (discr : unsigned := 0) is record case discr is when 0 => uu_data : aliased bits_struct_mutex_h.uu_pthread_mutex_s; -- /usr/include/bits/pthreadtypes.h:69 when 1 => uu_size : aliased pthread_mutex_t_array1014; -- /usr/include/bits/pthreadtypes.h:70 when others => uu_align : aliased long; -- /usr/include/bits/pthreadtypes.h:71 end case; end record with Convention => C_Pass_By_Copy, Unchecked_Union => True; -- /usr/include/bits/pthreadtypes.h:72 -- skipped anonymous struct anon_11 subtype pthread_cond_t_array1018 is Interfaces.C.char_array (0 .. 47); type pthread_cond_t (discr : unsigned := 0) is record case discr is when 0 => uu_data : aliased bits_thread_shared_types_h.uu_pthread_cond_s; -- /usr/include/bits/pthreadtypes.h:77 when 1 => uu_size : aliased pthread_cond_t_array1018; -- /usr/include/bits/pthreadtypes.h:78 when others => uu_align : aliased Long_Long_Integer; -- /usr/include/bits/pthreadtypes.h:79 end case; end record with Convention => C_Pass_By_Copy, Unchecked_Union => True; -- /usr/include/bits/pthreadtypes.h:80 -- Data structure for reader-writer lock variable handling. The -- structure of the attribute type is deliberately not exposed. -- skipped anonymous struct anon_12 subtype pthread_rwlock_t_array1009 is Interfaces.C.char_array (0 .. 55); type pthread_rwlock_t (discr : unsigned := 0) is record case discr is when 0 => uu_data : aliased bits_struct_rwlock_h.uu_pthread_rwlock_arch_t; -- /usr/include/bits/pthreadtypes.h:88 when 1 => uu_size : aliased pthread_rwlock_t_array1009; -- /usr/include/bits/pthreadtypes.h:89 when others => uu_align : aliased long; -- /usr/include/bits/pthreadtypes.h:90 end case; end record with Convention => C_Pass_By_Copy, Unchecked_Union => True; -- /usr/include/bits/pthreadtypes.h:91 -- skipped anonymous struct anon_13 subtype pthread_rwlockattr_t_array1024 is Interfaces.C.char_array (0 .. 7); type pthread_rwlockattr_t (discr : unsigned := 0) is record case discr is when 0 => uu_size : aliased pthread_rwlockattr_t_array1024; -- /usr/include/bits/pthreadtypes.h:95 when others => uu_align : aliased long; -- /usr/include/bits/pthreadtypes.h:96 end case; end record with Convention => C_Pass_By_Copy, Unchecked_Union => True; -- /usr/include/bits/pthreadtypes.h:97 -- POSIX spinlock data type. subtype pthread_spinlock_t is int; -- /usr/include/bits/pthreadtypes.h:103 -- POSIX barriers data type. The structure of the type is -- deliberately not exposed. -- skipped anonymous struct anon_14 subtype pthread_barrier_t_array1030 is Interfaces.C.char_array (0 .. 31); type pthread_barrier_t (discr : unsigned := 0) is record case discr is when 0 => uu_size : aliased pthread_barrier_t_array1030; -- /usr/include/bits/pthreadtypes.h:110 when others => uu_align : aliased long; -- /usr/include/bits/pthreadtypes.h:111 end case; end record with Convention => C_Pass_By_Copy, Unchecked_Union => True; -- /usr/include/bits/pthreadtypes.h:112 -- skipped anonymous struct anon_15 subtype pthread_barrierattr_t_array1001 is Interfaces.C.char_array (0 .. 3); type pthread_barrierattr_t (discr : unsigned := 0) is record case discr is when 0 => uu_size : aliased pthread_barrierattr_t_array1001; -- /usr/include/bits/pthreadtypes.h:116 when others => uu_align : aliased int; -- /usr/include/bits/pthreadtypes.h:117 end case; end record with Convention => C_Pass_By_Copy, Unchecked_Union => True; -- /usr/include/bits/pthreadtypes.h:118 end bits_pthreadtypes_h;
41.233696
116
0.678265
2fcf0c8a8b3147ab48cc90b14243c3ee5ef65baa
2,568
ads
Ada
bb-runtimes/runtimes/ravenscar-full-stm32f3x4/gnat/s-expint.ads
JCGobbi/Nucleo-STM32F334R8
2a0b1b4b2664c92773703ac5e95dcb71979d051c
[ "BSD-3-Clause" ]
null
null
null
bb-runtimes/runtimes/ravenscar-full-stm32f3x4/gnat/s-expint.ads
JCGobbi/Nucleo-STM32F334R8
2a0b1b4b2664c92773703ac5e95dcb71979d051c
[ "BSD-3-Clause" ]
null
null
null
bb-runtimes/runtimes/ravenscar-full-stm32f3x4/gnat/s-expint.ads
JCGobbi/Nucleo-STM32F334R8
2a0b1b4b2664c92773703ac5e95dcb71979d051c
[ "BSD-3-Clause" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- S Y S T E M . E X P I N T -- -- -- -- S p e c -- -- -- -- Copyright (C) 1992-2021, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- -- -- -- -- -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- Integer exponentiation (checks on) with System.Expont; package System.Exp_Int is function Exp_Integer is new Expont (Integer); pragma Pure_Function (Exp_Integer); end System.Exp_Int;
61.142857
78
0.329829
3180b7951d5baef80466a2fa09d703b9d9f34fbc
4,980
ads
Ada
source/xml/sax/xml-sax-input_sources-strings.ads
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
24
2016-11-29T06:59:41.000Z
2021-08-30T11:55:16.000Z
source/xml/sax/xml-sax-input_sources-strings.ads
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
2
2019-01-16T05:15:20.000Z
2019-02-03T10:03:32.000Z
source/xml/sax/xml-sax-input_sources-strings.ads
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
4
2017-07-18T07:11:05.000Z
2020-06-21T03:02:25.000Z
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- XML Processor -- -- -- -- Testsuite Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2010-2011, Vadim Godunko <[email protected]> -- -- 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 Vadim Godunko, IE 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. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ package XML.SAX.Input_Sources.Strings is pragma Preelaborate; type String_Input_Source is limited new SAX_Input_Source with private; not overriding procedure Set_String (Self : in out String_Input_Source; String : League.Strings.Universal_String); overriding function Public_Id (Self : String_Input_Source) return League.Strings.Universal_String; overriding procedure Next (Self : in out String_Input_Source; Buffer : in out not null Matreshka.Internals.Strings.Shared_String_Access; End_Of_Data : out Boolean); overriding procedure Reset (Self : in out String_Input_Source; Version : League.Strings.Universal_String; Encoding : League.Strings.Universal_String; Rescan : out Boolean; Success : out Boolean); not overriding procedure Set_Public_Id (Self : in out String_Input_Source; Id : League.Strings.Universal_String); overriding procedure Set_System_Id (Self : in out String_Input_Source; Id : League.Strings.Universal_String); overriding procedure Set_Version (Self : in out String_Input_Source; Version : League.Strings.Universal_String); overriding function System_Id (Self : String_Input_Source) return League.Strings.Universal_String; private type String_Input_Source is limited new SAX_Input_Source with record String : League.Strings.Universal_String; Public_Id : League.Strings.Universal_String; System_Id : League.Strings.Universal_String; Version : League.Strings.Universal_String; end record; end XML.SAX.Input_Sources.Strings;
51.875
78
0.500201
591021542888b885f04b2dec50476eabd7671aa8
6,000
adb
Ada
source/nodes/program-nodes-constrained_array_types.adb
optikos/oasis
9f64d46d26d964790d69f9db681c874cfb3bf96d
[ "MIT" ]
null
null
null
source/nodes/program-nodes-constrained_array_types.adb
optikos/oasis
9f64d46d26d964790d69f9db681c874cfb3bf96d
[ "MIT" ]
null
null
null
source/nodes/program-nodes-constrained_array_types.adb
optikos/oasis
9f64d46d26d964790d69f9db681c874cfb3bf96d
[ "MIT" ]
2
2019-09-14T23:18:50.000Z
2019-10-02T10:11:40.000Z
-- Copyright (c) 2019 Maxim Reznik <[email protected]> -- -- SPDX-License-Identifier: MIT -- License-Filename: LICENSE ------------------------------------------------------------- package body Program.Nodes.Constrained_Array_Types is function Create (Array_Token : not null Program.Lexical_Elements .Lexical_Element_Access; Left_Bracket_Token : not null Program.Lexical_Elements .Lexical_Element_Access; Index_Subtypes : not null Program.Elements.Discrete_Ranges .Discrete_Range_Vector_Access; Right_Bracket_Token : not null Program.Lexical_Elements .Lexical_Element_Access; Of_Token : not null Program.Lexical_Elements .Lexical_Element_Access; Component_Definition : not null Program.Elements.Component_Definitions .Component_Definition_Access) return Constrained_Array_Type is begin return Result : Constrained_Array_Type := (Array_Token => Array_Token, Left_Bracket_Token => Left_Bracket_Token, Index_Subtypes => Index_Subtypes, Right_Bracket_Token => Right_Bracket_Token, Of_Token => Of_Token, Component_Definition => Component_Definition, Enclosing_Element => null) do Initialize (Result); end return; end Create; function Create (Index_Subtypes : not null Program.Elements.Discrete_Ranges .Discrete_Range_Vector_Access; Component_Definition : not null Program.Elements.Component_Definitions .Component_Definition_Access; Is_Part_Of_Implicit : Boolean := False; Is_Part_Of_Inherited : Boolean := False; Is_Part_Of_Instance : Boolean := False) return Implicit_Constrained_Array_Type is begin return Result : Implicit_Constrained_Array_Type := (Index_Subtypes => Index_Subtypes, Component_Definition => Component_Definition, Is_Part_Of_Implicit => Is_Part_Of_Implicit, Is_Part_Of_Inherited => Is_Part_Of_Inherited, Is_Part_Of_Instance => Is_Part_Of_Instance, Enclosing_Element => null) do Initialize (Result); end return; end Create; overriding function Index_Subtypes (Self : Base_Constrained_Array_Type) return not null Program.Elements.Discrete_Ranges .Discrete_Range_Vector_Access is begin return Self.Index_Subtypes; end Index_Subtypes; overriding function Component_Definition (Self : Base_Constrained_Array_Type) return not null Program.Elements.Component_Definitions .Component_Definition_Access is begin return Self.Component_Definition; end Component_Definition; overriding function Array_Token (Self : Constrained_Array_Type) return not null Program.Lexical_Elements.Lexical_Element_Access is begin return Self.Array_Token; end Array_Token; overriding function Left_Bracket_Token (Self : Constrained_Array_Type) return not null Program.Lexical_Elements.Lexical_Element_Access is begin return Self.Left_Bracket_Token; end Left_Bracket_Token; overriding function Right_Bracket_Token (Self : Constrained_Array_Type) return not null Program.Lexical_Elements.Lexical_Element_Access is begin return Self.Right_Bracket_Token; end Right_Bracket_Token; overriding function Of_Token (Self : Constrained_Array_Type) return not null Program.Lexical_Elements.Lexical_Element_Access is begin return Self.Of_Token; end Of_Token; overriding function Is_Part_Of_Implicit (Self : Implicit_Constrained_Array_Type) return Boolean is begin return Self.Is_Part_Of_Implicit; end Is_Part_Of_Implicit; overriding function Is_Part_Of_Inherited (Self : Implicit_Constrained_Array_Type) return Boolean is begin return Self.Is_Part_Of_Inherited; end Is_Part_Of_Inherited; overriding function Is_Part_Of_Instance (Self : Implicit_Constrained_Array_Type) return Boolean is begin return Self.Is_Part_Of_Instance; end Is_Part_Of_Instance; procedure Initialize (Self : aliased in out Base_Constrained_Array_Type'Class) is begin for Item in Self.Index_Subtypes.Each_Element loop Set_Enclosing_Element (Item.Element, Self'Unchecked_Access); end loop; Set_Enclosing_Element (Self.Component_Definition, Self'Unchecked_Access); null; end Initialize; overriding function Is_Constrained_Array_Type_Element (Self : Base_Constrained_Array_Type) return Boolean is pragma Unreferenced (Self); begin return True; end Is_Constrained_Array_Type_Element; overriding function Is_Type_Definition_Element (Self : Base_Constrained_Array_Type) return Boolean is pragma Unreferenced (Self); begin return True; end Is_Type_Definition_Element; overriding function Is_Definition_Element (Self : Base_Constrained_Array_Type) return Boolean is pragma Unreferenced (Self); begin return True; end Is_Definition_Element; overriding procedure Visit (Self : not null access Base_Constrained_Array_Type; Visitor : in out Program.Element_Visitors.Element_Visitor'Class) is begin Visitor.Constrained_Array_Type (Self); end Visit; overriding function To_Constrained_Array_Type_Text (Self : aliased in out Constrained_Array_Type) return Program.Elements.Constrained_Array_Types .Constrained_Array_Type_Text_Access is begin return Self'Unchecked_Access; end To_Constrained_Array_Type_Text; overriding function To_Constrained_Array_Type_Text (Self : aliased in out Implicit_Constrained_Array_Type) return Program.Elements.Constrained_Array_Types .Constrained_Array_Type_Text_Access is pragma Unreferenced (Self); begin return null; end To_Constrained_Array_Type_Text; end Program.Nodes.Constrained_Array_Types;
33.333333
79
0.730333
59b283c2bb2886701f2729b8c05277e5c38e8ebe
443
adb
Ada
gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/specs/varsize_return_pkg1.adb
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
7
2020-05-02T17:34:05.000Z
2021-10-17T10:15:18.000Z
gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/specs/varsize_return_pkg1.adb
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
null
null
null
gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/specs/varsize_return_pkg1.adb
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
2
2020-07-27T00:22:36.000Z
2021-04-01T09:41:02.000Z
package body Varsize_Return_Pkg1 is function Is_Fixed return Boolean is begin return True; end Is_Fixed; function Do_Item (I : Natural) return Variable_Data_Fixed_T is It : Variable_Data_Fixed_T; begin return It; end Do_Item; My_Db : Db.T; procedure Run is Kitem : Variable_Data_Fixed_T; I : Natural; begin Kitem := Db.Get (My_Db); Kitem := Do_Item (I); end Run; end Varsize_Return_Pkg1;
17.72
64
0.68623
29be425200e44859de8438297b5e2cc412869926
55,555
adb
Ada
apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b/conv2d_b2b/hls_target/.autopilot/db/Block_preheader39_p.sched.adb
dillonhuff/Halide-HLS
e9f4c3ac7915e5a52f211ce65004ae17890515a0
[ "MIT" ]
1
2020-06-18T16:51:39.000Z
2020-06-18T16:51:39.000Z
apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b/conv2d_b2b/hls_target/.autopilot/db/Block_preheader39_p.sched.adb
dillonhuff/Halide-HLS
e9f4c3ac7915e5a52f211ce65004ae17890515a0
[ "MIT" ]
null
null
null
apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b/conv2d_b2b/hls_target/.autopilot/db/Block_preheader39_p.sched.adb
dillonhuff/Halide-HLS
e9f4c3ac7915e5a52f211ce65004ae17890515a0
[ "MIT" ]
1
2020-03-18T00:43:22.000Z
2020-03-18T00:43:22.000Z
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> <!DOCTYPE boost_serialization> <boost_serialization signature="serialization::archive" version="14"> <syndb class_id="0" tracking_level="0" version="0"> <userIPLatency>-1</userIPLatency> <userIPName></userIPName> <cdfg class_id="1" tracking_level="1" version="0" object_id="_0"> <name>Block_preheader39_p</name> <ret_bitwidth>0</ret_bitwidth> <ports class_id="2" tracking_level="0" version="0"> <count>3</count> <item_version>0</item_version> <item class_id="3" tracking_level="1" version="0" object_id="_1"> <Value class_id="4" tracking_level="0" version="0"> <Obj class_id="5" tracking_level="0" version="0"> <type>1</type> <id>1</id> <name>p_mul_stencil_stream_V_value_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo class_id="6" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>_mul_stencil_stream_to_p2_mul1.V.value.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>128</bitwidth> </Value> <direction>0</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs class_id="7" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_2"> <Value> <Obj> <type>1</type> <id>2</id> <name>hw_output_V_value_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>stream&amp;lt;AxiPackedStencil&amp;lt;unsigned char, 1, 1, 1, 1&amp;gt; &amp;gt;.V.value.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>1</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_3"> <Value> <Obj> <type>1</type> <id>3</id> <name>hw_output_V_last_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>stream&amp;lt;AxiPackedStencil&amp;lt;unsigned char, 1, 1, 1, 1&amp;gt; &amp;gt;.V.last.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <direction>1</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> </ports> <nodes class_id="8" tracking_level="0" version="0"> <count>23</count> <item_version>0</item_version> <item class_id="9" tracking_level="1" version="0" object_id="_4"> <Value> <Obj> <type>0</type> <id>6</id> <name>p_p2_mul1_stencil_str</name> <fileName>hls_target.cpp</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</fileDirectory> <lineNumber>173</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item class_id="10" tracking_level="0" version="0"> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</first> <second class_id="11" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="12" tracking_level="0" version="0"> <first class_id="13" tracking_level="0" version="0"> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>173</second> </item> </second> </item> </inlineStackInfo> <originalName>_p2_mul1_stencil_stream_to_hw_output.V.value.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>38</item> </oprand_edges> <opcode>alloca</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_5"> <Value> <Obj> <type>0</type> <id>11</id> <name>tmp_value_V</name> <fileName>hls_target.cpp</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</fileDirectory> <lineNumber>186</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>186</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.value.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>128</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>40</item> <item>41</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_6"> <Value> <Obj> <type>0</type> <id>12</id> <name>p_s</name> <fileName>hls_target.cpp</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</fileDirectory> <lineNumber>197</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>197</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>43</item> <item>44</item> <item>46</item> <item>48</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_7"> <Value> <Obj> <type>0</type> <id>13</id> <name>p_315_cast</name> <fileName>hls_target.cpp</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</fileDirectory> <lineNumber>205</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>205</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>49</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_8"> <Value> <Obj> <type>0</type> <id>14</id> <name>tmp_6</name> <fileName>hls_target.cpp</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</fileDirectory> <lineNumber>186</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>186</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>51</item> <item>52</item> <item>54</item> <item>56</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_9"> <Value> <Obj> <type>0</type> <id>15</id> <name>p_8</name> <fileName>hls_target.cpp</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</fileDirectory> <lineNumber>206</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>206</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>58</item> <item>59</item> <item>61</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_10"> <Value> <Obj> <type>0</type> <id>16</id> <name>p_323_cast</name> <fileName>hls_target.cpp</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</fileDirectory> <lineNumber>208</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>208</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>62</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_11"> <Value> <Obj> <type>0</type> <id>17</id> <name>p_9</name> <fileName>hls_target.cpp</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</fileDirectory> <lineNumber>208</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>208</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>63</item> <item>64</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_12"> <Value> <Obj> <type>0</type> <id>18</id> <name>p_324_cast</name> <fileName>hls_target.cpp</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</fileDirectory> <lineNumber>208</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>208</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>10</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>65</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_13"> <Value> <Obj> <type>0</type> <id>19</id> <name>tmp_7</name> <fileName>hls_target.cpp</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</fileDirectory> <lineNumber>186</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>186</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>67</item> <item>68</item> <item>70</item> <item>72</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_14"> <Value> <Obj> <type>0</type> <id>20</id> <name>p_10</name> <fileName>hls_target.cpp</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</fileDirectory> <lineNumber>215</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>215</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>74</item> <item>75</item> <item>77</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_15"> <Value> <Obj> <type>0</type> <id>21</id> <name>p_331_cast_cast</name> <fileName>hls_target.cpp</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</fileDirectory> <lineNumber>221</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>221</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>78</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_16"> <Value> <Obj> <type>0</type> <id>22</id> <name>p_11</name> <fileName>hls_target.cpp</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</fileDirectory> <lineNumber>224</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>224</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>79</item> <item>80</item> <item>82</item> <item>84</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_17"> <Value> <Obj> <type>0</type> <id>23</id> <name>p_339_cast_cast</name> <fileName>hls_target.cpp</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</fileDirectory> <lineNumber>226</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>226</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>85</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_18"> <Value> <Obj> <type>0</type> <id>24</id> <name>tmp</name> <fileName>hls_target.cpp</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</fileDirectory> <lineNumber>226</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>226</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>86</item> <item>87</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_19"> <Value> <Obj> <type>0</type> <id>25</id> <name>tmp_cast</name> <fileName>hls_target.cpp</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</fileDirectory> <lineNumber>226</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>226</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>10</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>88</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_20"> <Value> <Obj> <type>0</type> <id>26</id> <name>tmp_value_V_6</name> <fileName>hls_target.cpp</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</fileDirectory> <lineNumber>226</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>226</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.value.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>10</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>89</item> <item>90</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_21"> <Value> <Obj> <type>0</type> <id>27</id> <name>tmp_value_V_7</name> <fileName>hls_target.cpp</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</fileDirectory> <lineNumber>226</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>226</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.value.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>91</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_22"> <Value> <Obj> <type>0</type> <id>28</id> <name></name> <fileName>hls_target.cpp</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</fileDirectory> <lineNumber>228</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>228</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>93</item> <item>94</item> <item>95</item> </oprand_edges> <opcode>write</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_23"> <Value> <Obj> <type>0</type> <id>31</id> <name>tmp_value_V_8</name> <fileName>hls_target.cpp</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</fileDirectory> <lineNumber>245</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>245</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.value.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>97</item> <item>98</item> <item>207</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_24"> <Value> <Obj> <type>0</type> <id>32</id> <name>tmp_value_V_9</name> <fileName>hls_target.cpp</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</fileDirectory> <lineNumber>252</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>252</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.value.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>100</item> <item>101</item> <item>103</item> <item>105</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_25"> <Value> <Obj> <type>0</type> <id>33</id> <name></name> <fileName>hls_target.cpp</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</fileDirectory> <lineNumber>260</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>260</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>5</count> <item_version>0</item_version> <item>107</item> <item>108</item> <item>109</item> <item>110</item> <item>112</item> </oprand_edges> <opcode>write</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_26"> <Value> <Obj> <type>0</type> <id>35</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>0</count> <item_version>0</item_version> </oprand_edges> <opcode>ret</opcode> <m_Display>0</m_Display> </item> </nodes> <consts class_id="15" tracking_level="0" version="0"> <count>14</count> <item_version>0</item_version> <item class_id="16" tracking_level="1" version="0" object_id="_27"> <Value> <Obj> <type>2</type> <id>37</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_28"> <Value> <Obj> <type>2</type> <id>45</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>4</content> </item> <item class_id_reference="16" object_id="_29"> <Value> <Obj> <type>2</type> <id>47</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>11</content> </item> <item class_id_reference="16" object_id="_30"> <Value> <Obj> <type>2</type> <id>53</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>36</content> </item> <item class_id_reference="16" object_id="_31"> <Value> <Obj> <type>2</type> <id>55</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>41</content> </item> <item class_id_reference="16" object_id="_32"> <Value> <Obj> <type>2</type> <id>60</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_33"> <Value> <Obj> <type>2</type> <id>69</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>68</content> </item> <item class_id_reference="16" object_id="_34"> <Value> <Obj> <type>2</type> <id>71</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>74</content> </item> <item class_id_reference="16" object_id="_35"> <Value> <Obj> <type>2</type> <id>76</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_36"> <Value> <Obj> <type>2</type> <id>81</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>100</content> </item> <item class_id_reference="16" object_id="_37"> <Value> <Obj> <type>2</type> <id>83</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>107</content> </item> <item class_id_reference="16" object_id="_38"> <Value> <Obj> <type>2</type> <id>102</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>3</content> </item> <item class_id_reference="16" object_id="_39"> <Value> <Obj> <type>2</type> <id>104</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>10</content> </item> <item class_id_reference="16" object_id="_40"> <Value> <Obj> <type>2</type> <id>111</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> </consts> <blocks class_id="17" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="18" tracking_level="1" version="0" object_id="_41"> <Obj> <type>3</type> <id>36</id> <name>Block_.preheader39.p</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>23</count> <item_version>0</item_version> <item>6</item> <item>11</item> <item>12</item> <item>13</item> <item>14</item> <item>15</item> <item>16</item> <item>17</item> <item>18</item> <item>19</item> <item>20</item> <item>21</item> <item>22</item> <item>23</item> <item>24</item> <item>25</item> <item>26</item> <item>27</item> <item>28</item> <item>31</item> <item>32</item> <item>33</item> <item>35</item> </node_objs> </item> </blocks> <edges class_id="19" tracking_level="0" version="0"> <count>42</count> <item_version>0</item_version> <item class_id="20" tracking_level="1" version="0" object_id="_42"> <id>38</id> <edge_type>1</edge_type> <source_obj>37</source_obj> <sink_obj>6</sink_obj> </item> <item class_id_reference="20" object_id="_43"> <id>41</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>11</sink_obj> </item> <item class_id_reference="20" object_id="_44"> <id>44</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>12</sink_obj> </item> <item class_id_reference="20" object_id="_45"> <id>46</id> <edge_type>1</edge_type> <source_obj>45</source_obj> <sink_obj>12</sink_obj> </item> <item class_id_reference="20" object_id="_46"> <id>48</id> <edge_type>1</edge_type> <source_obj>47</source_obj> <sink_obj>12</sink_obj> </item> <item class_id_reference="20" object_id="_47"> <id>49</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>13</sink_obj> </item> <item class_id_reference="20" object_id="_48"> <id>52</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>14</sink_obj> </item> <item class_id_reference="20" object_id="_49"> <id>54</id> <edge_type>1</edge_type> <source_obj>53</source_obj> <sink_obj>14</sink_obj> </item> <item class_id_reference="20" object_id="_50"> <id>56</id> <edge_type>1</edge_type> <source_obj>55</source_obj> <sink_obj>14</sink_obj> </item> <item class_id_reference="20" object_id="_51"> <id>59</id> <edge_type>1</edge_type> <source_obj>14</source_obj> <sink_obj>15</sink_obj> </item> <item class_id_reference="20" object_id="_52"> <id>61</id> <edge_type>1</edge_type> <source_obj>60</source_obj> <sink_obj>15</sink_obj> </item> <item class_id_reference="20" object_id="_53"> <id>62</id> <edge_type>1</edge_type> <source_obj>15</source_obj> <sink_obj>16</sink_obj> </item> <item class_id_reference="20" object_id="_54"> <id>63</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>17</sink_obj> </item> <item class_id_reference="20" object_id="_55"> <id>64</id> <edge_type>1</edge_type> <source_obj>13</source_obj> <sink_obj>17</sink_obj> </item> <item class_id_reference="20" object_id="_56"> <id>65</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>18</sink_obj> </item> <item class_id_reference="20" object_id="_57"> <id>68</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>19</sink_obj> </item> <item class_id_reference="20" object_id="_58"> <id>70</id> <edge_type>1</edge_type> <source_obj>69</source_obj> <sink_obj>19</sink_obj> </item> <item class_id_reference="20" object_id="_59"> <id>72</id> <edge_type>1</edge_type> <source_obj>71</source_obj> <sink_obj>19</sink_obj> </item> <item class_id_reference="20" object_id="_60"> <id>75</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>20</sink_obj> </item> <item class_id_reference="20" object_id="_61"> <id>77</id> <edge_type>1</edge_type> <source_obj>76</source_obj> <sink_obj>20</sink_obj> </item> <item class_id_reference="20" object_id="_62"> <id>78</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>21</sink_obj> </item> <item class_id_reference="20" object_id="_63"> <id>80</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>22</sink_obj> </item> <item class_id_reference="20" object_id="_64"> <id>82</id> <edge_type>1</edge_type> <source_obj>81</source_obj> <sink_obj>22</sink_obj> </item> <item class_id_reference="20" object_id="_65"> <id>84</id> <edge_type>1</edge_type> <source_obj>83</source_obj> <sink_obj>22</sink_obj> </item> <item class_id_reference="20" object_id="_66"> <id>85</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>23</sink_obj> </item> <item class_id_reference="20" object_id="_67"> <id>86</id> <edge_type>1</edge_type> <source_obj>23</source_obj> <sink_obj>24</sink_obj> </item> <item class_id_reference="20" object_id="_68"> <id>87</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>24</sink_obj> </item> <item class_id_reference="20" object_id="_69"> <id>88</id> <edge_type>1</edge_type> <source_obj>24</source_obj> <sink_obj>25</sink_obj> </item> <item class_id_reference="20" object_id="_70"> <id>89</id> <edge_type>1</edge_type> <source_obj>18</source_obj> <sink_obj>26</sink_obj> </item> <item class_id_reference="20" object_id="_71"> <id>90</id> <edge_type>1</edge_type> <source_obj>25</source_obj> <sink_obj>26</sink_obj> </item> <item class_id_reference="20" object_id="_72"> <id>91</id> <edge_type>1</edge_type> <source_obj>26</source_obj> <sink_obj>27</sink_obj> </item> <item class_id_reference="20" object_id="_73"> <id>94</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>28</sink_obj> </item> <item class_id_reference="20" object_id="_74"> <id>95</id> <edge_type>1</edge_type> <source_obj>27</source_obj> <sink_obj>28</sink_obj> </item> <item class_id_reference="20" object_id="_75"> <id>98</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>31</sink_obj> </item> <item class_id_reference="20" object_id="_76"> <id>101</id> <edge_type>1</edge_type> <source_obj>31</source_obj> <sink_obj>32</sink_obj> </item> <item class_id_reference="20" object_id="_77"> <id>103</id> <edge_type>1</edge_type> <source_obj>102</source_obj> <sink_obj>32</sink_obj> </item> <item class_id_reference="20" object_id="_78"> <id>105</id> <edge_type>1</edge_type> <source_obj>104</source_obj> <sink_obj>32</sink_obj> </item> <item class_id_reference="20" object_id="_79"> <id>108</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>33</sink_obj> </item> <item class_id_reference="20" object_id="_80"> <id>109</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>33</sink_obj> </item> <item class_id_reference="20" object_id="_81"> <id>110</id> <edge_type>1</edge_type> <source_obj>32</source_obj> <sink_obj>33</sink_obj> </item> <item class_id_reference="20" object_id="_82"> <id>112</id> <edge_type>1</edge_type> <source_obj>111</source_obj> <sink_obj>33</sink_obj> </item> <item class_id_reference="20" object_id="_83"> <id>207</id> <edge_type>4</edge_type> <source_obj>28</source_obj> <sink_obj>31</sink_obj> </item> </edges> </cdfg> <cdfg_regions class_id="21" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="22" tracking_level="1" version="0" object_id="_84"> <mId>1</mId> <mTag>Block_.preheader39.p</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>36</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>2</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> </cdfg_regions> <fsm class_id="-1"></fsm> <res class_id="-1"></res> <node_label_latency class_id="26" tracking_level="0" version="0"> <count>23</count> <item_version>0</item_version> <item class_id="27" tracking_level="0" version="0"> <first>6</first> <second class_id="28" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>11</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>12</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>13</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>14</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>15</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>16</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>17</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>18</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>19</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>20</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>21</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>22</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>23</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>24</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>25</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>26</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>27</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>28</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>31</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>32</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>33</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>35</first> <second> <first>2</first> <second>0</second> </second> </item> </node_label_latency> <bblk_ent_exit class_id="29" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="30" tracking_level="0" version="0"> <first>36</first> <second class_id="31" tracking_level="0" version="0"> <first>0</first> <second>2</second> </second> </item> </bblk_ent_exit> <regions class_id="32" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </regions> <dp_fu_nodes class_id="33" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_fu_nodes> <dp_fu_nodes_expression class_id="34" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_expression> <dp_fu_nodes_module> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_module> <dp_fu_nodes_io> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_io> <return_ports> <count>0</count> <item_version>0</item_version> </return_ports> <dp_mem_port_nodes class_id="35" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_mem_port_nodes> <dp_reg_nodes> <count>0</count> <item_version>0</item_version> </dp_reg_nodes> <dp_regname_nodes> <count>0</count> <item_version>0</item_version> </dp_regname_nodes> <dp_reg_phi> <count>0</count> <item_version>0</item_version> </dp_reg_phi> <dp_regname_phi> <count>0</count> <item_version>0</item_version> </dp_regname_phi> <dp_port_io_nodes class_id="36" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_port_io_nodes> <port2core class_id="37" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </port2core> <node2core> <count>0</count> <item_version>0</item_version> </node2core> </syndb> </boost_serialization>
28.072259
141
0.606588
12818f91a0223e083bb7ab3f20e4128cb202aca4
787
adb
Ada
contrib/gnu/gdb/dist/gdb/testsuite/gdb.ada/task_bp/foo.adb
TheSledgeHammer/2.11BSD
fe61f0b9aaa273783cd027c7b5ec77e95ead2153
[ "BSD-3-Clause" ]
3
2021-05-04T17:09:06.000Z
2021-10-04T07:19:26.000Z
contrib/gnu/gdb/dist/gdb/testsuite/gdb.ada/task_bp/foo.adb
TheSledgeHammer/2.11BSD
fe61f0b9aaa273783cd027c7b5ec77e95ead2153
[ "BSD-3-Clause" ]
null
null
null
contrib/gnu/gdb/dist/gdb/testsuite/gdb.ada/task_bp/foo.adb
TheSledgeHammer/2.11BSD
fe61f0b9aaa273783cd027c7b5ec77e95ead2153
[ "BSD-3-Clause" ]
null
null
null
-- Copyright 2011-2020 Free Software Foundation, Inc. -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- 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/>. with Pck; use Pck; procedure Foo is begin Dummy_Task.Start; end Foo;
37.47619
73
0.738247
59df74229a355dc54412e359d8c46b0a807b1ca2
713
ads
Ada
source/asis/spec/obsolescent/sequential_io.ads
faelys/gela-asis
48a3bee90eda9f0c9d958b4e3c80a5a9b1c65253
[ "BSD-3-Clause" ]
4
2016-02-05T15:51:56.000Z
2022-03-25T20:38:32.000Z
source/asis/spec/obsolescent/sequential_io.ads
faelys/gela-asis
48a3bee90eda9f0c9d958b4e3c80a5a9b1c65253
[ "BSD-3-Clause" ]
null
null
null
source/asis/spec/obsolescent/sequential_io.ads
faelys/gela-asis
48a3bee90eda9f0c9d958b4e3c80a5a9b1c65253
[ "BSD-3-Clause" ]
null
null
null
------------------------------------------------------------------------------ -- A d a r u n - t i m e s p e c i f i c a t i o n -- -- ASIS implementation for Gela project, a portable Ada compiler -- -- http://gela.ada-ru.org -- -- - - - - - - - - - - - - - - - -- -- Read copyright and license at the end of ada.ads file -- ------------------------------------------------------------------------------ -- $Revision: 209 $ $Date: 2013-11-30 21:03:24 +0200 (Сб., 30 нояб. 2013) $ with Ada.Sequential_IO; generic package Sequential_IO renames Ada.Sequential_IO;
54.846154
78
0.349229
299bbf8771f38cef67b2419032908861f297b553
20,804
adb
Ada
test/halide_data/pldi_camera_ready/big_apps_32_real/conv2d/collateral/conv2d/hls_target/.autopilot/db/linebuffer_1.sched.adb
David-Durst/embeddedHaskellAetherling
34c5403e07433e572170699f3bd69c5b5c3eff2d
[ "BSD-3-Clause" ]
20
2019-03-12T20:12:31.000Z
2022-02-07T04:23:22.000Z
apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d/conv2d_div39/hls_target/.autopilot/db/linebuffer_1.sched.adb
dillonhuff/Halide-HLS
e9f4c3ac7915e5a52f211ce65004ae17890515a0
[ "MIT" ]
30
2019-07-22T19:25:42.000Z
2020-06-18T17:58:43.000Z
test/halide_data/pldi_camera_ready/big_apps_32_real/conv2d/collateral/conv2d/hls_target/.autopilot/db/linebuffer_1.sched.adb
David-Durst/embeddedHaskellAetherling
34c5403e07433e572170699f3bd69c5b5c3eff2d
[ "BSD-3-Clause" ]
3
2019-10-14T18:07:26.000Z
2022-01-20T14:36:17.000Z
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> <!DOCTYPE boost_serialization> <boost_serialization signature="serialization::archive" version="14"> <syndb class_id="0" tracking_level="0" version="0"> <userIPLatency>-1</userIPLatency> <userIPName></userIPName> <cdfg class_id="1" tracking_level="1" version="0" object_id="_0"> <name>linebuffer_1</name> <ret_bitwidth>0</ret_bitwidth> <ports class_id="2" tracking_level="0" version="0"> <count>3</count> <item_version>0</item_version> <item class_id="3" tracking_level="1" version="0" object_id="_1"> <Value class_id="4" tracking_level="0" version="0"> <Obj class_id="5" tracking_level="0" version="0"> <type>1</type> <id>1</id> <name>in_axi_stream_V_value_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo class_id="6" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>in_axi_stream.V.value.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs class_id="7" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_2"> <Value> <Obj> <type>1</type> <id>2</id> <name>in_axi_stream_V_last_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>in_axi_stream.V.last.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_3"> <Value> <Obj> <type>1</type> <id>3</id> <name>out_stream_V_value_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>out_stream.V.value.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>288</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> </ports> <nodes class_id="8" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="9" tracking_level="1" version="0" object_id="_4"> <Value> <Obj> <type>0</type> <id>7</id> <name>in_stream_V_value_V</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</fileDirectory> <lineNumber>545</lineNumber> <contextFuncName>linebuffer&amp;lt;1920, 1080, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, unsigned int&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item class_id="10" tracking_level="0" version="0"> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second class_id="11" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="12" tracking_level="0" version="0"> <first class_id="13" tracking_level="0" version="0"> <first>../../../lib_files/Linebuffer.h</first> <second>linebuffer&amp;lt;1920, 1080, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, unsigned int&amp;gt;</second> </first> <second>545</second> </item> </second> </item> </inlineStackInfo> <originalName>in_stream.V.value.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>16</item> </oprand_edges> <opcode>alloca</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_5"> <Value> <Obj> <type>0</type> <id>11</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>18</item> <item>19</item> <item>20</item> <item>21</item> </oprand_edges> <opcode>call</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_6"> <Value> <Obj> <type>0</type> <id>12</id> <name></name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</fileDirectory> <lineNumber>556</lineNumber> <contextFuncName>linebuffer&amp;lt;1920, 1080, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, unsigned int&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>linebuffer&amp;lt;1920, 1080, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, unsigned int&amp;gt;</second> </first> <second>556</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>5</count> <item_version>0</item_version> <item>23</item> <item>24</item> <item>25</item> <item>107</item> <item>108</item> </oprand_edges> <opcode>call</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_7"> <Value> <Obj> <type>0</type> <id>13</id> <name></name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</fileDirectory> <lineNumber>557</lineNumber> <contextFuncName>linebuffer&amp;lt;1920, 1080, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, unsigned int&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>linebuffer&amp;lt;1920, 1080, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, unsigned int&amp;gt;</second> </first> <second>557</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>0</count> <item_version>0</item_version> </oprand_edges> <opcode>ret</opcode> <m_Display>0</m_Display> </item> </nodes> <consts class_id="15" tracking_level="0" version="0"> <count>3</count> <item_version>0</item_version> <item class_id="16" tracking_level="1" version="0" object_id="_8"> <Value> <Obj> <type>2</type> <id>15</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_9"> <Value> <Obj> <type>2</type> <id>17</id> <name>linebuffer_Loop_1_pr</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <const_type>6</const_type> <content>&lt;constant:linebuffer_Loop_1_pr&gt;</content> </item> <item class_id_reference="16" object_id="_10"> <Value> <Obj> <type>2</type> <id>22</id> <name>linebuffer</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <const_type>6</const_type> <content>&lt;constant:linebuffer&gt;</content> </item> </consts> <blocks class_id="17" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="18" tracking_level="1" version="0" object_id="_11"> <Obj> <type>3</type> <id>14</id> <name>linebuffer.1</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>4</count> <item_version>0</item_version> <item>7</item> <item>11</item> <item>12</item> <item>13</item> </node_objs> </item> </blocks> <edges class_id="19" tracking_level="0" version="0"> <count>10</count> <item_version>0</item_version> <item class_id="20" tracking_level="1" version="0" object_id="_12"> <id>16</id> <edge_type>1</edge_type> <source_obj>15</source_obj> <sink_obj>7</sink_obj> </item> <item class_id_reference="20" object_id="_13"> <id>18</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>11</sink_obj> </item> <item class_id_reference="20" object_id="_14"> <id>19</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>11</sink_obj> </item> <item class_id_reference="20" object_id="_15"> <id>20</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>11</sink_obj> </item> <item class_id_reference="20" object_id="_16"> <id>21</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>11</sink_obj> </item> <item class_id_reference="20" object_id="_17"> <id>23</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>12</sink_obj> </item> <item class_id_reference="20" object_id="_18"> <id>24</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>12</sink_obj> </item> <item class_id_reference="20" object_id="_19"> <id>25</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>12</sink_obj> </item> <item class_id_reference="20" object_id="_20"> <id>107</id> <edge_type>4</edge_type> <source_obj>11</source_obj> <sink_obj>12</sink_obj> </item> <item class_id_reference="20" object_id="_21"> <id>108</id> <edge_type>4</edge_type> <source_obj>11</source_obj> <sink_obj>12</sink_obj> </item> </edges> </cdfg> <cdfg_regions class_id="21" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="22" tracking_level="1" version="0" object_id="_22"> <mId>1</mId> <mTag>linebuffer.1</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>14</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>2077921</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>1</mIsDfPipe> <mDfPipe class_id="23" tracking_level="1" version="0" object_id="_23"> <port_list class_id="24" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </port_list> <process_list class_id="25" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="26" tracking_level="1" version="0" object_id="_24"> <type>0</type> <name>linebuffer_Loop_1_pr_U0</name> <ssdmobj_id>11</ssdmobj_id> <pins class_id="27" tracking_level="0" version="0"> <count>3</count> <item_version>0</item_version> <item class_id="28" tracking_level="1" version="0" object_id="_25"> <port class_id="29" tracking_level="1" version="0" object_id="_26"> <name>in_axi_stream_V_value_V</name> <dir>3</dir> <type>0</type> </port> <inst class_id="30" tracking_level="1" version="0" object_id="_27"> <type>0</type> <name>linebuffer_Loop_1_pr_U0</name> <ssdmobj_id>11</ssdmobj_id> </inst> </item> <item class_id_reference="28" object_id="_28"> <port class_id_reference="29" object_id="_29"> <name>in_axi_stream_V_last_V</name> <dir>3</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_27"></inst> </item> <item class_id_reference="28" object_id="_30"> <port class_id_reference="29" object_id="_31"> <name>in_stream_V_value_V</name> <dir>0</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_27"></inst> </item> </pins> </item> <item class_id_reference="26" object_id="_32"> <type>0</type> <name>linebuffer_U0</name> <ssdmobj_id>12</ssdmobj_id> <pins> <count>2</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_33"> <port class_id_reference="29" object_id="_34"> <name>in_stream_V_value_V</name> <dir>0</dir> <type>0</type> </port> <inst class_id_reference="30" object_id="_35"> <type>0</type> <name>linebuffer_U0</name> <ssdmobj_id>12</ssdmobj_id> </inst> </item> <item class_id_reference="28" object_id="_36"> <port class_id_reference="29" object_id="_37"> <name>out_stream_V_value_V</name> <dir>0</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_35"></inst> </item> </pins> </item> </process_list> <channel_list class_id="31" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="32" tracking_level="1" version="0" object_id="_38"> <type>1</type> <name>in_stream_V_value_V</name> <ssdmobj_id>7</ssdmobj_id> <ctype>0</ctype> <depth>1</depth> <bitwidth>32</bitwidth> <source class_id_reference="28" object_id="_39"> <port class_id_reference="29" object_id="_40"> <name>in</name> <dir>3</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_27"></inst> </source> <sink class_id_reference="28" object_id="_41"> <port class_id_reference="29" object_id="_42"> <name>out</name> <dir>3</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_35"></inst> </sink> </item> </channel_list> <net_list class_id="33" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </net_list> </mDfPipe> </item> </cdfg_regions> <fsm class_id="-1"></fsm> <res class_id="-1"></res> <node_label_latency class_id="36" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="37" tracking_level="0" version="0"> <first>7</first> <second class_id="38" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>11</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>12</first> <second> <first>2</first> <second>1</second> </second> </item> <item> <first>13</first> <second> <first>3</first> <second>0</second> </second> </item> </node_label_latency> <bblk_ent_exit class_id="39" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="40" tracking_level="0" version="0"> <first>14</first> <second class_id="41" tracking_level="0" version="0"> <first>0</first> <second>3</second> </second> </item> </bblk_ent_exit> <regions class_id="42" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="43" tracking_level="1" version="0" object_id="_43"> <region_name>linebuffer.1</region_name> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>14</item> </basic_blocks> <nodes> <count>10</count> <item_version>0</item_version> <item>4</item> <item>5</item> <item>6</item> <item>7</item> <item>8</item> <item>9</item> <item>10</item> <item>11</item> <item>12</item> <item>13</item> </nodes> <anchor_node>-1</anchor_node> <region_type>16</region_type> <interval>0</interval> <pipe_depth>0</pipe_depth> </item> </regions> <dp_fu_nodes class_id="44" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_fu_nodes> <dp_fu_nodes_expression class_id="45" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_expression> <dp_fu_nodes_module> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_module> <dp_fu_nodes_io> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_io> <return_ports> <count>0</count> <item_version>0</item_version> </return_ports> <dp_mem_port_nodes class_id="46" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_mem_port_nodes> <dp_reg_nodes> <count>0</count> <item_version>0</item_version> </dp_reg_nodes> <dp_regname_nodes> <count>0</count> <item_version>0</item_version> </dp_regname_nodes> <dp_reg_phi> <count>0</count> <item_version>0</item_version> </dp_reg_phi> <dp_regname_phi> <count>0</count> <item_version>0</item_version> </dp_regname_phi> <dp_port_io_nodes class_id="47" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_port_io_nodes> <port2core class_id="48" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </port2core> <node2core> <count>0</count> <item_version>0</item_version> </node2core> </syndb> </boost_serialization>
30.020202
134
0.614641
311a4138eb12b0014859fd74c684b732805a1f13
75
adb
Ada
tester.adb
skill-lang/adaCommon
b27bccb8fa1c8b299ab98a82741a648183e41d3c
[ "BSD-3-Clause" ]
null
null
null
tester.adb
skill-lang/adaCommon
b27bccb8fa1c8b299ab98a82741a648183e41d3c
[ "BSD-3-Clause" ]
null
null
null
tester.adb
skill-lang/adaCommon
b27bccb8fa1c8b299ab98a82741a648183e41d3c
[ "BSD-3-Clause" ]
null
null
null
with Skill.Streams.Reader; procedure Tester is begin null; end Tester;
10.714286
26
0.76
415a8d2565dca5cdeede5a46913b7f80a91ec018
746,876
adb
Ada
networklayer/synthesis_results_HMB/ICMP_hls_prj/ultrascale_plus/.autopilot/db/icmp_server.adb
OCT-FPGA/network-demo
76fba0d4315abf7bffe77959a2501c287f20ecec
[ "BSD-3-Clause" ]
null
null
null
networklayer/synthesis_results_HMB/ICMP_hls_prj/ultrascale_plus/.autopilot/db/icmp_server.adb
OCT-FPGA/network-demo
76fba0d4315abf7bffe77959a2501c287f20ecec
[ "BSD-3-Clause" ]
null
null
null
networklayer/synthesis_results_HMB/ICMP_hls_prj/ultrascale_plus/.autopilot/db/icmp_server.adb
OCT-FPGA/network-demo
76fba0d4315abf7bffe77959a2501c287f20ecec
[ "BSD-3-Clause" ]
null
null
null
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> <!DOCTYPE boost_serialization> <boost_serialization signature="serialization::archive" version="17"> <syndb class_id="0" tracking_level="0" version="0"> <userIPLatency>-1</userIPLatency> <userIPName/> <cdfg class_id="1" tracking_level="1" version="0" object_id="_0"> <name>icmp_server</name> <module_structure>Pipeline</module_structure> <ret_bitwidth>0</ret_bitwidth> <ports class_id="2" tracking_level="0" version="0"> <count>9</count> <item_version>0</item_version> <item class_id="3" tracking_level="1" version="0" object_id="_1"> <Value class_id="4" tracking_level="0" version="0"> <Obj class_id="5" tracking_level="0" version="0"> <type>1</type> <id>1</id> <name>s_axis_icmp_V_data_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo class_id="6" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>s_axis_icmp</originalName> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>3621216858</coreId> <rtlModuleName/> </Obj> <bitwidth>512</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs class_id="7" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_2"> <Value> <Obj> <type>1</type> <id>2</id> <name>s_axis_icmp_V_keep_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>s_axis_icmp</originalName> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>3703154816</coreId> <rtlModuleName/> </Obj> <bitwidth>64</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_3"> <Value> <Obj> <type>1</type> <id>3</id> <name>s_axis_icmp_V_strb_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>s_axis_icmp</originalName> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>448</coreId> <rtlModuleName/> </Obj> <bitwidth>64</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_4"> <Value> <Obj> <type>1</type> <id>4</id> <name>s_axis_icmp_V_last_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>s_axis_icmp</originalName> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>53</coreId> <rtlModuleName/> </Obj> <bitwidth>1</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_5"> <Value> <Obj> <type>1</type> <id>5</id> <name>myIpAddress</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>105</coreId> <rtlModuleName/> </Obj> <bitwidth>32</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_6"> <Value> <Obj> <type>1</type> <id>6</id> <name>m_axis_icmp_V_data_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>m_axis_icmp</originalName> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>512</bitwidth> </Value> <direction>1</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_7"> <Value> <Obj> <type>1</type> <id>7</id> <name>m_axis_icmp_V_keep_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>m_axis_icmp</originalName> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1397508187</coreId> <rtlModuleName/> </Obj> <bitwidth>64</bitwidth> </Value> <direction>1</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_8"> <Value> <Obj> <type>1</type> <id>8</id> <name>m_axis_icmp_V_strb_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>m_axis_icmp</originalName> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>64</bitwidth> </Value> <direction>1</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_9"> <Value> <Obj> <type>1</type> <id>9</id> <name>m_axis_icmp_V_last_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>m_axis_icmp</originalName> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>3703520352</coreId> <rtlModuleName/> </Obj> <bitwidth>1</bitwidth> </Value> <direction>1</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> </ports> <nodes class_id="8" tracking_level="0" version="0"> <count>161</count> <item_version>0</item_version> <item class_id="9" tracking_level="1" version="0" object_id="_10"> <Value> <Obj> <type>0</type> <id>35</id> <name>aiFSMState_load</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>148</lineNumber> <contextFuncName>icmp_server</contextFuncName> <contextNormFuncName>icmp_server</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item class_id="10" tracking_level="0" version="0"> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second class_id="11" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="12" tracking_level="0" version="0"> <first class_id="13" tracking_level="0" version="0"> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</first> <second>icmp_server</second> </first> <second>148</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>213</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>1</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_11"> <Value> <Obj> <type>0</type> <id>36</id> <name>ipDestination_V_load</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_base.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>1049</lineNumber> <contextFuncName>operator==&amp;lt;32, false&amp;gt;</contextFuncName> <contextNormFuncName>operator_eq_32_false</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_base.h</first> <second>operator==&amp;lt;32, false&amp;gt;</second> </first> <second>1049</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>214</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>2</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_12"> <Value> <Obj> <type>0</type> <id>37</id> <name>icmpType_V_load</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_base.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>1049</lineNumber> <contextFuncName>operator==&amp;lt;8, false&amp;gt;</contextFuncName> <contextNormFuncName>operator_eq_8_false</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_base.h</first> <second>operator==&amp;lt;8, false&amp;gt;</second> </first> <second>1049</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>215</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>3</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_13"> <Value> <Obj> <type>0</type> <id>38</id> <name>icmpCode_V_load</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_base.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>1049</lineNumber> <contextFuncName>operator==&amp;lt;32, true&amp;gt;</contextFuncName> <contextNormFuncName>operator_eq_32_true</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_base.h</first> <second>operator==&amp;lt;32, true&amp;gt;</second> </first> <second>1049</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>14</coreId> <rtlModuleName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>216</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>4</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_14"> <Value> <Obj> <type>0</type> <id>39</id> <name>auxInchecksum_r_V_load</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_base.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>1049</lineNumber> <contextFuncName>operator==&amp;lt;32, true&amp;gt;</contextFuncName> <contextNormFuncName>operator_eq_32_true</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_base.h</first> <second>operator==&amp;lt;32, true&amp;gt;</second> </first> <second>1049</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>14</coreId> <rtlModuleName/> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>217</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>112</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_15"> <Value> <Obj> <type>0</type> <id>40</id> <name>tmp_8</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>185</lineNumber> <contextFuncName>icmp_server</contextFuncName> <contextNormFuncName>icmp_server</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</first> <second>icmp_server</second> </first> <second>185</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp</originalName> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>14</coreId> <rtlModuleName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>218</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>5</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_16"> <Value> <Obj> <type>0</type> <id>41</id> <name>_ln148</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>148</lineNumber> <contextFuncName>icmp_server</contextFuncName> <contextNormFuncName>icmp_server</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</first> <second>icmp_server</second> </first> <second>148</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>12</count> <item_version>0</item_version> <item>219</item> <item>220</item> <item>222</item> <item>223</item> <item>225</item> <item>226</item> <item>228</item> <item>229</item> <item>231</item> <item>232</item> <item>234</item> <item>235</item> </oprand_edges> <opcode>switch</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.65</m_delay> <m_topoIndex>6</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_17"> <Value> <Obj> <type>0</type> <id>43</id> <name>tmp_7</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_axi_sdata.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>267</lineNumber> <contextFuncName>empty</contextFuncName> <contextNormFuncName>empty</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_axi_sdata.h</first> <second>empty</second> </first> <second>267</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp</originalName> <rtlName/> <control>auto</control> <opType>adapter</opType> <implIndex>axi4stream</implIndex> <coreName>axis</coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>123</coreId> <rtlModuleName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>6</count> <item_version>0</item_version> <item>660</item> <item>661</item> <item>662</item> <item>663</item> <item>664</item> <item>665</item> </oprand_edges> <opcode>nbreadreq</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>7</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_18"> <Value> <Obj> <type>0</type> <id>44</id> <name>br_ln217</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>217</lineNumber> <contextFuncName>icmp_server</contextFuncName> <contextNormFuncName>icmp_server</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</first> <second>icmp_server</second> </first> <second>217</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>3702776224</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>666</item> <item>667</item> <item>668</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>8</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_19"> <Value> <Obj> <type>0</type> <id>46</id> <name>empty_28</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_axi_sdata.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>283</lineNumber> <contextFuncName>read</contextFuncName> <contextNormFuncName>read</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_axi_sdata.h</first> <second>read</second> </first> <second>283</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control>auto</control> <opType>adapter</opType> <implIndex>axi4stream</implIndex> <coreName>axis</coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>123</coreId> <rtlModuleName/> </Obj> <bitwidth>641</bitwidth> </Value> <oprand_edges> <count>6</count> <item_version>0</item_version> <item>669</item> <item>670</item> <item>671</item> <item>672</item> <item>673</item> <item>843</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>9</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_20"> <Value> <Obj> <type>0</type> <id>47</id> <name>tmp_15</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_axi_sdata.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>283</lineNumber> <contextFuncName>read</contextFuncName> <contextNormFuncName>read</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_axi_sdata.h</first> <second>read</second> </first> <second>283</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp</originalName> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>512</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>674</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>10</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_21"> <Value> <Obj> <type>0</type> <id>48</id> <name>tmp_16</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_axi_sdata.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>283</lineNumber> <contextFuncName>read</contextFuncName> <contextNormFuncName>read</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_axi_sdata.h</first> <second>read</second> </first> <second>283</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp</originalName> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>3703380000</coreId> <rtlModuleName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>675</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>11</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_22"> <Value> <Obj> <type>0</type> <id>49</id> <name>tmp_17</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_axi_sdata.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>283</lineNumber> <contextFuncName>read</contextFuncName> <contextNormFuncName>read</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_axi_sdata.h</first> <second>read</second> </first> <second>283</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp</originalName> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>64</coreId> <rtlModuleName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>676</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>12</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_23"> <Value> <Obj> <type>0</type> <id>50</id> <name>tmp_19</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_axi_sdata.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>283</lineNumber> <contextFuncName>read</contextFuncName> <contextNormFuncName>read</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_axi_sdata.h</first> <second>read</second> </first> <second>283</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp</originalName> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>8</coreId> <rtlModuleName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>677</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>13</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_24"> <Value> <Obj> <type>0</type> <id>51</id> <name>m_axis_icmp_V_data_V_write_ln304</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_axi_sdata.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>304</lineNumber> <contextFuncName>write</contextFuncName> <contextNormFuncName>write</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_axi_sdata.h</first> <second>write</second> </first> <second>304</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control>auto</control> <opType>adapter</opType> <implIndex>axi4stream</implIndex> <coreName>axis</coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>123</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>9</count> <item_version>0</item_version> <item>678</item> <item>679</item> <item>680</item> <item>681</item> <item>682</item> <item>683</item> <item>684</item> <item>685</item> <item>686</item> </oprand_edges> <opcode>write</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>113</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_25"> <Value> <Obj> <type>0</type> <id>52</id> <name>br_ln221</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>221</lineNumber> <contextFuncName>icmp_server</contextFuncName> <contextNormFuncName>icmp_server</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</first> <second>icmp_server</second> </first> <second>221</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>3702959136</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>687</item> <item>688</item> <item>689</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>14</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_26"> <Value> <Obj> <type>0</type> <id>54</id> <name>aiFSMState_write_ln222</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>222</lineNumber> <contextFuncName>icmp_server</contextFuncName> <contextNormFuncName>icmp_server</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</first> <second>icmp_server</second> </first> <second>222</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>3703533920</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>690</item> <item>691</item> <item>842</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.45</m_delay> <m_topoIndex>15</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_27"> <Value> <Obj> <type>0</type> <id>55</id> <name>br_ln222</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>222</lineNumber> <contextFuncName>icmp_server</contextFuncName> <contextNormFuncName>icmp_server</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</first> <second>icmp_server</second> </first> <second>222</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>3703391552</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>692</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>16</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_28"> <Value> <Obj> <type>0</type> <id>57</id> <name>br_ln223</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>223</lineNumber> <contextFuncName>icmp_server</contextFuncName> <contextNormFuncName>icmp_server</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</first> <second>icmp_server</second> </first> <second>223</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1634956133</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>693</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>17</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_29"> <Value> <Obj> <type>0</type> <id>59</id> <name>br_ln224</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>224</lineNumber> <contextFuncName>icmp_server</contextFuncName> <contextNormFuncName>icmp_server</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</first> <second>icmp_server</second> </first> <second>224</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>3703388712</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>694</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>18</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_30"> <Value> <Obj> <type>0</type> <id>61</id> <name>tmp_6</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_axi_sdata.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>267</lineNumber> <contextFuncName>empty</contextFuncName> <contextNormFuncName>empty</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_axi_sdata.h</first> <second>empty</second> </first> <second>267</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp</originalName> <rtlName/> <control>auto</control> <opType>adapter</opType> <implIndex>axi4stream</implIndex> <coreName>axis</coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>123</coreId> <rtlModuleName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>6</count> <item_version>0</item_version> <item>637</item> <item>638</item> <item>639</item> <item>640</item> <item>641</item> <item>642</item> </oprand_edges> <opcode>nbreadreq</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>19</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_31"> <Value> <Obj> <type>0</type> <id>62</id> <name>br_ln209</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>209</lineNumber> <contextFuncName>icmp_server</contextFuncName> <contextNormFuncName>icmp_server</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</first> <second>icmp_server</second> </first> <second>209</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>192</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>643</item> <item>644</item> <item>645</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>20</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_32"> <Value> <Obj> <type>0</type> <id>64</id> <name>empty_27</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_axi_sdata.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>283</lineNumber> <contextFuncName>read</contextFuncName> <contextNormFuncName>read</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_axi_sdata.h</first> <second>read</second> </first> <second>283</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control>auto</control> <opType>adapter</opType> <implIndex>axi4stream</implIndex> <coreName>axis</coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>123</coreId> <rtlModuleName/> </Obj> <bitwidth>641</bitwidth> </Value> <oprand_edges> <count>6</count> <item_version>0</item_version> <item>646</item> <item>647</item> <item>648</item> <item>649</item> <item>650</item> <item>844</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>21</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_33"> <Value> <Obj> <type>0</type> <id>65</id> <name>tmp_21</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_axi_sdata.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>283</lineNumber> <contextFuncName>read</contextFuncName> <contextNormFuncName>read</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_axi_sdata.h</first> <second>read</second> </first> <second>283</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp</originalName> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>176</coreId> <rtlModuleName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>651</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>22</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_34"> <Value> <Obj> <type>0</type> <id>66</id> <name>br_ln212</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>212</lineNumber> <contextFuncName>icmp_server</contextFuncName> <contextNormFuncName>icmp_server</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</first> <second>icmp_server</second> </first> <second>212</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>3703517872</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>652</item> <item>653</item> <item>654</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>23</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_35"> <Value> <Obj> <type>0</type> <id>68</id> <name>aiFSMState_write_ln213</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>213</lineNumber> <contextFuncName>icmp_server</contextFuncName> <contextNormFuncName>icmp_server</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</first> <second>icmp_server</second> </first> <second>213</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>3703525616</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>655</item> <item>656</item> <item>841</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.45</m_delay> <m_topoIndex>24</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_36"> <Value> <Obj> <type>0</type> <id>69</id> <name>br_ln213</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>213</lineNumber> <contextFuncName>icmp_server</contextFuncName> <contextNormFuncName>icmp_server</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</first> <second>icmp_server</second> </first> <second>213</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>256</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>657</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>25</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_37"> <Value> <Obj> <type>0</type> <id>71</id> <name>br_ln214</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>214</lineNumber> <contextFuncName>icmp_server</contextFuncName> <contextNormFuncName>icmp_server</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</first> <second>icmp_server</second> </first> <second>214</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>75</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>658</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>26</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_38"> <Value> <Obj> <type>0</type> <id>73</id> <name>br_ln215</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>215</lineNumber> <contextFuncName>icmp_server</contextFuncName> <contextNormFuncName>icmp_server</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</first> <second>icmp_server</second> </first> <second>215</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>3703537104</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>659</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>27</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_39"> <Value> <Obj> <type>0</type> <id>75</id> <name>currWord_data_V</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>185</lineNumber> <contextFuncName>icmp_server</contextFuncName> <contextNormFuncName>icmp_server</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</first> <second>icmp_server</second> </first> <second>185</second> </item> </second> </item> </inlineStackInfo> <originalName>currWord.data.V</originalName> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1397508187</coreId> <rtlModuleName/> </Obj> <bitwidth>512</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>552</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>114</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_40"> <Value> <Obj> <type>0</type> <id>76</id> <name>tmp_4</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>185</lineNumber> <contextFuncName>icmp_server</contextFuncName> <contextNormFuncName>icmp_server</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</first> <second>icmp_server</second> </first> <second>185</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp</originalName> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>553</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>115</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_41"> <Value> <Obj> <type>0</type> <id>77</id> <name>tmp_5</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>185</lineNumber> <contextFuncName>icmp_server</contextFuncName> <contextNormFuncName>icmp_server</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</first> <second>icmp_server</second> </first> <second>185</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp</originalName> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>3703542640</coreId> <rtlModuleName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>554</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>116</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_42"> <Value> <Obj> <type>0</type> <id>78</id> <name>p_Result_1</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>391</lineNumber> <contextFuncName>operator=</contextFuncName> <contextNormFuncName>operator_assign</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</first> <second>operator=</second> </first> <second>391</second> </item> </second> </item> </inlineStackInfo> <originalName>__Result__</originalName> <rtlName>p_Result_1_fu_860_p5</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>3703543488</coreId> <rtlModuleName/> </Obj> <bitwidth>512</bitwidth> </Value> <oprand_edges> <count>5</count> <item_version>0</item_version> <item>556</item> <item>557</item> <item>559</item> <item>560</item> <item>561</item> </oprand_edges> <opcode>partset</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>117</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_43"> <Value> <Obj> <type>0</type> <id>79</id> <name>p_Result_3</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>388</lineNumber> <contextFuncName>operator=</contextFuncName> <contextNormFuncName>operator_assign</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</first> <second>operator=</second> </first> <second>388</second> </item> </second> </item> </inlineStackInfo> <originalName>__Result__</originalName> <rtlName>p_Result_3_fu_872_p5</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>3703408288</coreId> <rtlModuleName/> </Obj> <bitwidth>512</bitwidth> </Value> <oprand_edges> <count>5</count> <item_version>0</item_version> <item>563</item> <item>564</item> <item>566</item> <item>567</item> <item>568</item> </oprand_edges> <opcode>partset</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>118</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_44"> <Value> <Obj> <type>0</type> <id>80</id> <name>p_Result_4</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>391</lineNumber> <contextFuncName>operator=</contextFuncName> <contextNormFuncName>operator_assign</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</first> <second>operator=</second> </first> <second>391</second> </item> </second> </item> </inlineStackInfo> <originalName>__Result__</originalName> <rtlName>p_Result_4_fu_884_p5</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>3703407016</coreId> <rtlModuleName/> </Obj> <bitwidth>512</bitwidth> </Value> <oprand_edges> <count>5</count> <item_version>0</item_version> <item>570</item> <item>571</item> <item>572</item> <item>573</item> <item>574</item> </oprand_edges> <opcode>partset</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>119</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_45"> <Value> <Obj> <type>0</type> <id>81</id> <name>p_Result_s_26</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>674</lineNumber> <contextFuncName>get</contextFuncName> <contextNormFuncName>get</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</first> <second>get</second> </first> <second>674</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>p_Result_s_26_fu_896_p4</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>575</item> <item>576</item> <item>577</item> <item>578</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>120</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_46"> <Value> <Obj> <type>0</type> <id>82</id> <name>p_Result_5</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>414</lineNumber> <contextFuncName>operator=&amp;lt;512, false&amp;gt;</contextFuncName> <contextNormFuncName>operator_assign_512_false</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</first> <second>operator=&amp;lt;512, false&amp;gt;</second> </first> <second>414</second> </item> </second> </item> </inlineStackInfo> <originalName>__Result__</originalName> <rtlName>p_Result_5_fu_906_p5</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1702258035</coreId> <rtlModuleName/> </Obj> <bitwidth>512</bitwidth> </Value> <oprand_edges> <count>5</count> <item_version>0</item_version> <item>580</item> <item>581</item> <item>582</item> <item>583</item> <item>584</item> </oprand_edges> <opcode>partset</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>121</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_47"> <Value> <Obj> <type>0</type> <id>83</id> <name>p_Result_2</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>674</lineNumber> <contextFuncName>get</contextFuncName> <contextNormFuncName>get</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</first> <second>get</second> </first> <second>674</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>p_Result_2_fu_918_p4</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>585</item> <item>586</item> <item>587</item> <item>588</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>122</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_48"> <Value> <Obj> <type>0</type> <id>84</id> <name>p_Result_7</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>414</lineNumber> <contextFuncName>operator=&amp;lt;512, false&amp;gt;</contextFuncName> <contextNormFuncName>operator_assign_512_false</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</first> <second>operator=&amp;lt;512, false&amp;gt;</second> </first> <second>414</second> </item> </second> </item> </inlineStackInfo> <originalName>__Result__</originalName> <rtlName>p_Result_7_fu_928_p5</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1769496890</coreId> <rtlModuleName/> </Obj> <bitwidth>512</bitwidth> </Value> <oprand_edges> <count>5</count> <item_version>0</item_version> <item>589</item> <item>590</item> <item>591</item> <item>592</item> <item>593</item> </oprand_edges> <opcode>partset</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>123</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_49"> <Value> <Obj> <type>0</type> <id>85</id> <name>p_Val2_5</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>819</lineNumber> <contextFuncName>operator bool</contextFuncName> <contextNormFuncName>operator_bool</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</first> <second>operator bool</second> </first> <second>819</second> </item> </second> </item> </inlineStackInfo> <originalName>__Val2__</originalName> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>17</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>594</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>124</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_50"> <Value> <Obj> <type>0</type> <id>86</id> <name>p_Result_8</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>674</lineNumber> <contextFuncName>get</contextFuncName> <contextNormFuncName>get</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</first> <second>get</second> </first> <second>674</second> </item> </second> </item> </inlineStackInfo> <originalName>__Result__</originalName> <rtlName>p_Result_8_fu_944_p1</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>595</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>125</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_51"> <Value> <Obj> <type>0</type> <id>87</id> <name>tmp_2</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>217</lineNumber> <contextFuncName>ap_uint&amp;lt;18&amp;gt;</contextFuncName> <contextNormFuncName>ap_uint_18_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int.h</first> <second>ap_uint&amp;lt;18&amp;gt;</second> </first> <second>217</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_2_fu_948_p3</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>3703417568</coreId> <rtlModuleName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>596</item> <item>597</item> <item>598</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>126</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_52"> <Value> <Obj> <type>0</type> <id>88</id> <name>zext_ln217_2</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>217</lineNumber> <contextFuncName>ap_uint&amp;lt;18&amp;gt;</contextFuncName> <contextNormFuncName>ap_uint_18_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int.h</first> <second>ap_uint&amp;lt;18&amp;gt;</second> </first> <second>217</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>zext_ln217_2_fu_956_p1</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>3703421304</coreId> <rtlModuleName/> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>599</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>127</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_53"> <Value> <Obj> <type>0</type> <id>89</id> <name>icmpChecksumTmp_V</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>217</lineNumber> <contextFuncName>ap_uint&amp;lt;18&amp;gt;</contextFuncName> <contextNormFuncName>ap_uint_18_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int.h</first> <second>ap_uint&amp;lt;18&amp;gt;</second> </first> <second>217</second> </item> </second> </item> </inlineStackInfo> <originalName>icmpChecksumTmp.V</originalName> <rtlName>icmpChecksumTmp_V_fu_960_p2</rtlName> <control>auto</control> <opType>add</opType> <implIndex>fabric</implIndex> <coreName>Adder</coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1</coreId> <rtlModuleName/> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>600</item> <item>601</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.78</m_delay> <m_topoIndex>128</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_54"> <Value> <Obj> <type>0</type> <id>90</id> <name>p_Result_34</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>388</lineNumber> <contextFuncName>operator=</contextFuncName> <contextNormFuncName>operator_assign</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</first> <second>operator=</second> </first> <second>388</second> </item> </second> </item> </inlineStackInfo> <originalName>__Result__</originalName> <rtlName>p_Result_34_fu_966_p5</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>3703422392</coreId> <rtlModuleName/> </Obj> <bitwidth>512</bitwidth> </Value> <oprand_edges> <count>5</count> <item_version>0</item_version> <item>602</item> <item>603</item> <item>604</item> <item>605</item> <item>606</item> </oprand_edges> <opcode>partset</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>129</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_55"> <Value> <Obj> <type>0</type> <id>91</id> <name>p_Result_6</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>674</lineNumber> <contextFuncName>get</contextFuncName> <contextNormFuncName>get</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</first> <second>get</second> </first> <second>674</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>p_Result_6_fu_978_p4</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>3703000032</coreId> <rtlModuleName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>608</item> <item>609</item> <item>610</item> <item>611</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>130</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_56"> <Value> <Obj> <type>0</type> <id>92</id> <name>trunc_ln674</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>674</lineNumber> <contextFuncName>get</contextFuncName> <contextNormFuncName>get</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</first> <second>get</second> </first> <second>674</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>trunc_ln674_fu_988_p1</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1953391988</coreId> <rtlModuleName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>612</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>131</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_57"> <Value> <Obj> <type>0</type> <id>93</id> <name>tmp_1</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>312</lineNumber> <contextFuncName>get</contextFuncName> <contextNormFuncName>get</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</first> <second>get</second> </first> <second>312</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_1_fu_992_p3</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1769496832</coreId> <rtlModuleName/> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>613</item> <item>614</item> <item>615</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>132</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_58"> <Value> <Obj> <type>0</type> <id>94</id> <name>p_Result_35</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>414</lineNumber> <contextFuncName>operator=&amp;lt;34, false&amp;gt;</contextFuncName> <contextNormFuncName>operator_assign_34_false</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</first> <second>operator=&amp;lt;34, false&amp;gt;</second> </first> <second>414</second> </item> </second> </item> </inlineStackInfo> <originalName>__Result__</originalName> <rtlName>p_Result_35_fu_1000_p5</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>208</coreId> <rtlModuleName/> </Obj> <bitwidth>512</bitwidth> </Value> <oprand_edges> <count>5</count> <item_version>0</item_version> <item>616</item> <item>617</item> <item>618</item> <item>619</item> <item>620</item> </oprand_edges> <opcode>partset</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>133</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_59"> <Value> <Obj> <type>0</type> <id>95</id> <name>select_ln202</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>202</lineNumber> <contextFuncName>icmp_server</contextFuncName> <contextNormFuncName>icmp_server</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</first> <second>icmp_server</second> </first> <second>202</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>select_ln202_fu_308_p3</rtlName> <control>auto</control> <opType>select</opType> <implIndex>auto_sel</implIndex> <coreName>Sel</coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>73</coreId> <rtlModuleName/> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>621</item> <item>622</item> <item>623</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.27</m_delay> <m_topoIndex>28</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_60"> <Value> <Obj> <type>0</type> <id>96</id> <name>aiFSMState_write_ln202</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>202</lineNumber> <contextFuncName>icmp_server</contextFuncName> <contextNormFuncName>icmp_server</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</first> <second>icmp_server</second> </first> <second>202</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>624</item> <item>625</item> <item>834</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.45</m_delay> <m_topoIndex>29</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_61"> <Value> <Obj> <type>0</type> <id>97</id> <name>m_axis_icmp_V_data_V_write_ln304</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_axi_sdata.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>304</lineNumber> <contextFuncName>write</contextFuncName> <contextNormFuncName>write</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_axi_sdata.h</first> <second>write</second> </first> <second>304</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control>auto</control> <opType>adapter</opType> <implIndex>axi4stream</implIndex> <coreName>axis</coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>123</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>9</count> <item_version>0</item_version> <item>627</item> <item>628</item> <item>629</item> <item>630</item> <item>631</item> <item>632</item> <item>633</item> <item>634</item> <item>635</item> </oprand_edges> <opcode>write</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>134</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_62"> <Value> <Obj> <type>0</type> <id>98</id> <name>br_ln207</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>207</lineNumber> <contextFuncName>icmp_server</contextFuncName> <contextNormFuncName>icmp_server</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</first> <second>icmp_server</second> </first> <second>207</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>636</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>160</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_63"> <Value> <Obj> <type>0</type> <id>100</id> <name>myIpAddress_read</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_base.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>1049</lineNumber> <contextFuncName>operator==&amp;lt;32, false&amp;gt;</contextFuncName> <contextNormFuncName>operator_eq_32_false</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_base.h</first> <second>operator==&amp;lt;32, false&amp;gt;</second> </first> <second>1049</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>3703367120</coreId> <rtlModuleName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>527</item> <item>528</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>30</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_64"> <Value> <Obj> <type>0</type> <id>101</id> <name>icmp_ln1049</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_base.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>1049</lineNumber> <contextFuncName>operator==&amp;lt;32, false&amp;gt;</contextFuncName> <contextNormFuncName>operator_eq_32_false</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_base.h</first> <second>operator==&amp;lt;32, false&amp;gt;</second> </first> <second>1049</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>icmp_ln1049_fu_1013_p2</rtlName> <control>auto</control> <opType>icmp</opType> <implIndex>auto</implIndex> <coreName>Cmp</coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>9</coreId> <rtlModuleName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>529</item> <item>530</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.85</m_delay> <m_topoIndex>135</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_65"> <Value> <Obj> <type>0</type> <id>102</id> <name>icmp_ln1049_1</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_base.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>1049</lineNumber> <contextFuncName>operator==&amp;lt;8, false&amp;gt;</contextFuncName> <contextNormFuncName>operator_eq_8_false</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_base.h</first> <second>operator==&amp;lt;8, false&amp;gt;</second> </first> <second>1049</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>icmp_ln1049_1_fu_322_p2</rtlName> <control>auto</control> <opType>icmp</opType> <implIndex>auto</implIndex> <coreName>Cmp</coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>9</coreId> <rtlModuleName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>531</item> <item>533</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.58</m_delay> <m_topoIndex>31</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_66"> <Value> <Obj> <type>0</type> <id>103</id> <name>icmp_ln1049_2</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_base.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>1049</lineNumber> <contextFuncName>operator==&amp;lt;32, true&amp;gt;</contextFuncName> <contextNormFuncName>operator_eq_32_true</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_base.h</first> <second>operator==&amp;lt;32, true&amp;gt;</second> </first> <second>1049</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>icmp_ln1049_2_fu_328_p2</rtlName> <control>auto</control> <opType>icmp</opType> <implIndex>auto</implIndex> <coreName>Cmp</coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>9</coreId> <rtlModuleName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>534</item> <item>536</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.58</m_delay> <m_topoIndex>32</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_67"> <Value> <Obj> <type>0</type> <id>104</id> <name>icmp_ln1049_3</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_base.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>1049</lineNumber> <contextFuncName>operator==&amp;lt;32, true&amp;gt;</contextFuncName> <contextNormFuncName>operator_eq_32_true</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_base.h</first> <second>operator==&amp;lt;32, true&amp;gt;</second> </first> <second>1049</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>icmp_ln1049_3_fu_1018_p2</rtlName> <control>auto</control> <opType>icmp</opType> <implIndex>auto</implIndex> <coreName>Cmp</coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>9</coreId> <rtlModuleName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>537</item> <item>539</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.67</m_delay> <m_topoIndex>136</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_68"> <Value> <Obj> <type>0</type> <id>105</id> <name>and_ln170</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>170</lineNumber> <contextFuncName>icmp_server</contextFuncName> <contextNormFuncName>icmp_server</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</first> <second>icmp_server</second> </first> <second>170</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>and_ln170_fu_1024_p2</rtlName> <control>auto</control> <opType>and</opType> <implIndex>auto</implIndex> <coreName>LogicGate</coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>74</coreId> <rtlModuleName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>540</item> <item>541</item> </oprand_edges> <opcode>and</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>137</m_topoIndex> <m_clusterGroupNumber>1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_69"> <Value> <Obj> <type>0</type> <id>106</id> <name>and_ln170_1</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>170</lineNumber> <contextFuncName>icmp_server</contextFuncName> <contextNormFuncName>icmp_server</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</first> <second>icmp_server</second> </first> <second>170</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>and_ln170_1_fu_1029_p2</rtlName> <control>auto</control> <opType>and</opType> <implIndex>auto</implIndex> <coreName>LogicGate</coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>74</coreId> <rtlModuleName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>542</item> <item>543</item> </oprand_edges> <opcode>and</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>138</m_topoIndex> <m_clusterGroupNumber>1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_70"> <Value> <Obj> <type>0</type> <id>107</id> <name>and_ln170_2</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>170</lineNumber> <contextFuncName>icmp_server</contextFuncName> <contextNormFuncName>icmp_server</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</first> <second>icmp_server</second> </first> <second>170</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>and_ln170_2_fu_1034_p2</rtlName> <control>auto</control> <opType>and</opType> <implIndex>auto</implIndex> <coreName>LogicGate</coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>74</coreId> <rtlModuleName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>544</item> <item>545</item> </oprand_edges> <opcode>and</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>139</m_topoIndex> <m_clusterGroupNumber>1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_71"> <Value> <Obj> <type>0</type> <id>108</id> <name>select_ln170</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>170</lineNumber> <contextFuncName>icmp_server</contextFuncName> <contextNormFuncName>icmp_server</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</first> <second>icmp_server</second> </first> <second>170</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>select_ln170_fu_1040_p3</rtlName> <control>auto</control> <opType>select</opType> <implIndex>auto_sel</implIndex> <coreName>Sel</coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>73</coreId> <rtlModuleName/> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>546</item> <item>547</item> <item>548</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.27</m_delay> <m_topoIndex>140</m_topoIndex> <m_clusterGroupNumber>1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_72"> <Value> <Obj> <type>0</type> <id>109</id> <name>aiFSMState_write_ln171</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>171</lineNumber> <contextFuncName>icmp_server</contextFuncName> <contextNormFuncName>icmp_server</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</first> <second>icmp_server</second> </first> <second>171</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>3703428912</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>549</item> <item>550</item> <item>833</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.45</m_delay> <m_topoIndex>141</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_73"> <Value> <Obj> <type>0</type> <id>110</id> <name>br_ln181</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>181</lineNumber> <contextFuncName>icmp_server</contextFuncName> <contextNormFuncName>icmp_server</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</first> <second>icmp_server</second> </first> <second>181</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>3703430456</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>551</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>142</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_74"> <Value> <Obj> <type>0</type> <id>112</id> <name>tmp</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_axi_sdata.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>267</lineNumber> <contextFuncName>empty</contextFuncName> <contextNormFuncName>empty</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_axi_sdata.h</first> <second>empty</second> </first> <second>267</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp</originalName> <rtlName/> <control>auto</control> <opType>adapter</opType> <implIndex>axi4stream</implIndex> <coreName>axis</coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>123</coreId> <rtlModuleName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>6</count> <item_version>0</item_version> <item>237</item> <item>238</item> <item>239</item> <item>240</item> <item>241</item> <item>243</item> </oprand_edges> <opcode>nbreadreq</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>33</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_75"> <Value> <Obj> <type>0</type> <id>113</id> <name>br_ln150</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>150</lineNumber> <contextFuncName>icmp_server</contextFuncName> <contextNormFuncName>icmp_server</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</first> <second>icmp_server</second> </first> <second>150</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>3703000032</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>244</item> <item>245</item> <item>246</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>34</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_76"> <Value> <Obj> <type>0</type> <id>115</id> <name>empty</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_axi_sdata.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>283</lineNumber> <contextFuncName>read</contextFuncName> <contextNormFuncName>read</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_axi_sdata.h</first> <second>read</second> </first> <second>283</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control>auto</control> <opType>adapter</opType> <implIndex>axi4stream</implIndex> <coreName>axis</coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>123</coreId> <rtlModuleName/> </Obj> <bitwidth>641</bitwidth> </Value> <oprand_edges> <count>6</count> <item_version>0</item_version> <item>248</item> <item>249</item> <item>250</item> <item>251</item> <item>252</item> <item>845</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>35</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_77"> <Value> <Obj> <type>0</type> <id>116</id> <name>tmp_20</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_axi_sdata.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>283</lineNumber> <contextFuncName>read</contextFuncName> <contextNormFuncName>read</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_axi_sdata.h</first> <second>read</second> </first> <second>283</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp</originalName> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>3703435232</coreId> <rtlModuleName/> </Obj> <bitwidth>512</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>253</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>36</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_78"> <Value> <Obj> <type>0</type> <id>117</id> <name>tmp_10</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_axi_sdata.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>283</lineNumber> <contextFuncName>read</contextFuncName> <contextNormFuncName>read</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_axi_sdata.h</first> <second>read</second> </first> <second>283</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp</originalName> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1819113532</coreId> <rtlModuleName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>254</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>37</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_79"> <Value> <Obj> <type>0</type> <id>118</id> <name>tmp_11</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_axi_sdata.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>283</lineNumber> <contextFuncName>read</contextFuncName> <contextNormFuncName>read</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_axi_sdata.h</first> <second>read</second> </first> <second>283</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp</originalName> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>774337125</coreId> <rtlModuleName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>255</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>38</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_80"> <Value> <Obj> <type>0</type> <id>119</id> <name>tmp_12</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_axi_sdata.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>283</lineNumber> <contextFuncName>read</contextFuncName> <contextNormFuncName>read</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_axi_sdata.h</first> <second>read</second> </first> <second>283</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp</originalName> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>570456421</coreId> <rtlModuleName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>256</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>39</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_81"> <Value> <Obj> <type>0</type> <id>120</id> <name>trunc_ln674_1</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>674</lineNumber> <contextFuncName>get</contextFuncName> <contextNormFuncName>get</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</first> <second>get</second> </first> <second>674</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>trunc_ln674_1_fu_334_p1</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>3703458448</coreId> <rtlModuleName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>257</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>40</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_82"> <Value> <Obj> <type>0</type> <id>121</id> <name>p_Result_9</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>674</lineNumber> <contextFuncName>get</contextFuncName> <contextNormFuncName>get</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</first> <second>get</second> </first> <second>674</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>p_Result_9_fu_338_p4</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>259</item> <item>260</item> <item>262</item> <item>264</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>41</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_83"> <Value> <Obj> <type>0</type> <id>122</id> <name>checksumL0_V_18</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>414</lineNumber> <contextFuncName>operator=&amp;lt;512, false&amp;gt;</contextFuncName> <contextNormFuncName>operator_assign_512_false</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</first> <second>operator=&amp;lt;512, false&amp;gt;</second> </first> <second>414</second> </item> </second> </item> </inlineStackInfo> <originalName>checksumL0.V</originalName> <rtlName>checksumL0_V_18_fu_348_p3</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>266</item> <item>267</item> <item>268</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>42</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_84"> <Value> <Obj> <type>0</type> <id>123</id> <name>p_Result_10</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>674</lineNumber> <contextFuncName>get</contextFuncName> <contextNormFuncName>get</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</first> <second>get</second> </first> <second>674</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>p_Result_10_fu_356_p4</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>480</coreId> <rtlModuleName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>269</item> <item>270</item> <item>272</item> <item>274</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>43</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_85"> <Value> <Obj> <type>0</type> <id>124</id> <name>p_Result_11</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>674</lineNumber> <contextFuncName>get</contextFuncName> <contextNormFuncName>get</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</first> <second>get</second> </first> <second>674</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>p_Result_11_fu_366_p4</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>3703447656</coreId> <rtlModuleName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>275</item> <item>276</item> <item>278</item> <item>280</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>44</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_86"> <Value> <Obj> <type>0</type> <id>125</id> <name>checksumL0_V_17</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>414</lineNumber> <contextFuncName>operator=&amp;lt;512, false&amp;gt;</contextFuncName> <contextNormFuncName>operator_assign_512_false</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</first> <second>operator=&amp;lt;512, false&amp;gt;</second> </first> <second>414</second> </item> </second> </item> </inlineStackInfo> <originalName>checksumL0.V</originalName> <rtlName>checksumL0_V_17_fu_376_p3</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>281</item> <item>282</item> <item>283</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>45</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_87"> <Value> <Obj> <type>0</type> <id>126</id> <name>p_Result_12</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>674</lineNumber> <contextFuncName>get</contextFuncName> <contextNormFuncName>get</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</first> <second>get</second> </first> <second>674</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>p_Result_12_fu_384_p4</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>3703448608</coreId> <rtlModuleName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>284</item> <item>285</item> <item>287</item> <item>289</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>46</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_88"> <Value> <Obj> <type>0</type> <id>127</id> <name>p_Result_13</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>674</lineNumber> <contextFuncName>get</contextFuncName> <contextNormFuncName>get</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</first> <second>get</second> </first> <second>674</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>p_Result_13_fu_394_p4</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>3703486112</coreId> <rtlModuleName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>290</item> <item>291</item> <item>293</item> <item>295</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>47</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_89"> <Value> <Obj> <type>0</type> <id>128</id> <name>checksumL0_V_16</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>414</lineNumber> <contextFuncName>operator=&amp;lt;512, false&amp;gt;</contextFuncName> <contextNormFuncName>operator_assign_512_false</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</first> <second>operator=&amp;lt;512, false&amp;gt;</second> </first> <second>414</second> </item> </second> </item> </inlineStackInfo> <originalName>checksumL0.V</originalName> <rtlName>checksumL0_V_16_fu_404_p3</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>296</item> <item>297</item> <item>298</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>48</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_90"> <Value> <Obj> <type>0</type> <id>129</id> <name>p_Result_14</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>674</lineNumber> <contextFuncName>get</contextFuncName> <contextNormFuncName>get</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</first> <second>get</second> </first> <second>674</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>p_Result_14_fu_412_p4</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1886216568</coreId> <rtlModuleName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>299</item> <item>300</item> <item>302</item> <item>304</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>49</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_91"> <Value> <Obj> <type>0</type> <id>130</id> <name>p_Result_15</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>674</lineNumber> <contextFuncName>get</contextFuncName> <contextNormFuncName>get</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</first> <second>get</second> </first> <second>674</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>p_Result_15_fu_422_p4</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1663988325</coreId> <rtlModuleName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>305</item> <item>306</item> <item>308</item> <item>310</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>50</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_92"> <Value> <Obj> <type>0</type> <id>131</id> <name>checksumL0_V_15</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>414</lineNumber> <contextFuncName>operator=&amp;lt;512, false&amp;gt;</contextFuncName> <contextNormFuncName>operator_assign_512_false</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</first> <second>operator=&amp;lt;512, false&amp;gt;</second> </first> <second>414</second> </item> </second> </item> </inlineStackInfo> <originalName>checksumL0.V</originalName> <rtlName>checksumL0_V_15_fu_432_p3</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1852793632</coreId> <rtlModuleName/> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>311</item> <item>312</item> <item>313</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>51</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_93"> <Value> <Obj> <type>0</type> <id>132</id> <name>p_Result_16</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>674</lineNumber> <contextFuncName>get</contextFuncName> <contextNormFuncName>get</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</first> <second>get</second> </first> <second>674</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>p_Result_16_fu_440_p4</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>796095077</coreId> <rtlModuleName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>314</item> <item>315</item> <item>317</item> <item>319</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>52</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_94"> <Value> <Obj> <type>0</type> <id>133</id> <name>p_Result_17</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>674</lineNumber> <contextFuncName>get</contextFuncName> <contextNormFuncName>get</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</first> <second>get</second> </first> <second>674</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>p_Result_17_fu_450_p4</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1043341356</coreId> <rtlModuleName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>320</item> <item>321</item> <item>323</item> <item>325</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>53</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_95"> <Value> <Obj> <type>0</type> <id>134</id> <name>checksumL0_V_14</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>414</lineNumber> <contextFuncName>operator=&amp;lt;512, false&amp;gt;</contextFuncName> <contextNormFuncName>operator_assign_512_false</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</first> <second>operator=&amp;lt;512, false&amp;gt;</second> </first> <second>414</second> </item> </second> </item> </inlineStackInfo> <originalName>checksumL0.V</originalName> <rtlName>checksumL0_V_14_fu_460_p3</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1631351657</coreId> <rtlModuleName/> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>326</item> <item>327</item> <item>328</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>54</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_96"> <Value> <Obj> <type>0</type> <id>135</id> <name>p_Result_18</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>674</lineNumber> <contextFuncName>get</contextFuncName> <contextNormFuncName>get</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</first> <second>get</second> </first> <second>674</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>p_Result_18_fu_468_p4</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1819307361</coreId> <rtlModuleName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>329</item> <item>330</item> <item>332</item> <item>334</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>55</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_97"> <Value> <Obj> <type>0</type> <id>136</id> <name>p_Result_19</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>674</lineNumber> <contextFuncName>get</contextFuncName> <contextNormFuncName>get</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</first> <second>get</second> </first> <second>674</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>p_Result_19_fu_478_p4</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1702453580</coreId> <rtlModuleName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>335</item> <item>336</item> <item>338</item> <item>340</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>56</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_98"> <Value> <Obj> <type>0</type> <id>137</id> <name>checksumL0_V_13</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>414</lineNumber> <contextFuncName>operator=&amp;lt;512, false&amp;gt;</contextFuncName> <contextNormFuncName>operator_assign_512_false</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</first> <second>operator=&amp;lt;512, false&amp;gt;</second> </first> <second>414</second> </item> </second> </item> </inlineStackInfo> <originalName>checksumL0.V</originalName> <rtlName>checksumL0_V_13_fu_488_p3</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1852795252</coreId> <rtlModuleName/> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>341</item> <item>342</item> <item>343</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>57</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_99"> <Value> <Obj> <type>0</type> <id>138</id> <name>p_Result_20</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>674</lineNumber> <contextFuncName>get</contextFuncName> <contextNormFuncName>get</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</first> <second>get</second> </first> <second>674</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>p_Result_20_fu_496_p4</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1701519360</coreId> <rtlModuleName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>344</item> <item>345</item> <item>347</item> <item>349</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>58</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_100"> <Value> <Obj> <type>0</type> <id>139</id> <name>p_Result_21</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>674</lineNumber> <contextFuncName>get</contextFuncName> <contextNormFuncName>get</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</first> <second>get</second> </first> <second>674</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>p_Result_21_fu_506_p4</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>979725673</coreId> <rtlModuleName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>350</item> <item>351</item> <item>353</item> <item>355</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>59</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_101"> <Value> <Obj> <type>0</type> <id>140</id> <name>checksumL0_V_12</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>414</lineNumber> <contextFuncName>operator=&amp;lt;512, false&amp;gt;</contextFuncName> <contextNormFuncName>operator_assign_512_false</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</first> <second>operator=&amp;lt;512, false&amp;gt;</second> </first> <second>414</second> </item> </second> </item> </inlineStackInfo> <originalName>checksumL0.V</originalName> <rtlName>checksumL0_V_12_fu_516_p3</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>757935405</coreId> <rtlModuleName/> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>356</item> <item>357</item> <item>358</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>60</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_102"> <Value> <Obj> <type>0</type> <id>141</id> <name>p_Result_22</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>674</lineNumber> <contextFuncName>get</contextFuncName> <contextNormFuncName>get</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</first> <second>get</second> </first> <second>674</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>p_Result_22_fu_524_p4</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>448</coreId> <rtlModuleName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>359</item> <item>360</item> <item>362</item> <item>364</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>61</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_103"> <Value> <Obj> <type>0</type> <id>142</id> <name>p_Result_23</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>674</lineNumber> <contextFuncName>get</contextFuncName> <contextNormFuncName>get</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</first> <second>get</second> </first> <second>674</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>p_Result_23_fu_534_p4</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>3703473504</coreId> <rtlModuleName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>365</item> <item>366</item> <item>368</item> <item>370</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>62</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_104"> <Value> <Obj> <type>0</type> <id>143</id> <name>checksumL0_V_11</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>414</lineNumber> <contextFuncName>operator=&amp;lt;512, false&amp;gt;</contextFuncName> <contextNormFuncName>operator_assign_512_false</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</first> <second>operator=&amp;lt;512, false&amp;gt;</second> </first> <second>414</second> </item> </second> </item> </inlineStackInfo> <originalName>checksumL0.V</originalName> <rtlName>checksumL0_V_11_fu_544_p3</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>3703477744</coreId> <rtlModuleName/> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>371</item> <item>372</item> <item>373</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>63</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_105"> <Value> <Obj> <type>0</type> <id>144</id> <name>p_Result_24</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>674</lineNumber> <contextFuncName>get</contextFuncName> <contextNormFuncName>get</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</first> <second>get</second> </first> <second>674</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>p_Result_24_fu_552_p4</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>3703481696</coreId> <rtlModuleName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>374</item> <item>375</item> <item>377</item> <item>379</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>64</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_106"> <Value> <Obj> <type>0</type> <id>145</id> <name>p_Result_25</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>674</lineNumber> <contextFuncName>get</contextFuncName> <contextNormFuncName>get</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</first> <second>get</second> </first> <second>674</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>p_Result_25_fu_562_p4</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>380</item> <item>381</item> <item>383</item> <item>385</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>65</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_107"> <Value> <Obj> <type>0</type> <id>146</id> <name>checksumL0_V_10</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>414</lineNumber> <contextFuncName>operator=&amp;lt;512, false&amp;gt;</contextFuncName> <contextNormFuncName>operator_assign_512_false</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</first> <second>operator=&amp;lt;512, false&amp;gt;</second> </first> <second>414</second> </item> </second> </item> </inlineStackInfo> <originalName>checksumL0.V</originalName> <rtlName>checksumL0_V_10_fu_572_p3</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1702258035</coreId> <rtlModuleName/> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>386</item> <item>387</item> <item>388</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>66</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_108"> <Value> <Obj> <type>0</type> <id>147</id> <name>p_Result_26</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>674</lineNumber> <contextFuncName>get</contextFuncName> <contextNormFuncName>get</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</first> <second>get</second> </first> <second>674</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>p_Result_26_fu_580_p4</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>3703485768</coreId> <rtlModuleName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>389</item> <item>390</item> <item>392</item> <item>394</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>67</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_109"> <Value> <Obj> <type>0</type> <id>148</id> <name>p_Result_27</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>674</lineNumber> <contextFuncName>get</contextFuncName> <contextNormFuncName>get</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</first> <second>get</second> </first> <second>674</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>p_Result_27_fu_590_p4</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>3703000032</coreId> <rtlModuleName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>395</item> <item>396</item> <item>398</item> <item>400</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>68</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_110"> <Value> <Obj> <type>0</type> <id>149</id> <name>p_Result_28</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>674</lineNumber> <contextFuncName>get</contextFuncName> <contextNormFuncName>get</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</first> <second>get</second> </first> <second>674</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>ipDestination_V</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>176</coreId> <rtlModuleName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>402</item> <item>403</item> <item>404</item> <item>405</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>69</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_111"> <Value> <Obj> <type>0</type> <id>150</id> <name>ipDestination_V_write_ln156</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>156</lineNumber> <contextFuncName>icmp_server</contextFuncName> <contextNormFuncName>icmp_server</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</first> <second>icmp_server</second> </first> <second>156</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>3703488912</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>406</item> <item>407</item> <item>836</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>70</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_112"> <Value> <Obj> <type>0</type> <id>151</id> <name>p_Result_29</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>674</lineNumber> <contextFuncName>get</contextFuncName> <contextNormFuncName>get</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</first> <second>get</second> </first> <second>674</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>icmpType_V</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>3703489760</coreId> <rtlModuleName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>408</item> <item>409</item> <item>411</item> <item>413</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>71</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_113"> <Value> <Obj> <type>0</type> <id>152</id> <name>icmpType_V_write_ln157</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>157</lineNumber> <contextFuncName>icmp_server</contextFuncName> <contextNormFuncName>icmp_server</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</first> <second>icmp_server</second> </first> <second>157</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>414</item> <item>415</item> <item>837</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>72</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_114"> <Value> <Obj> <type>0</type> <id>153</id> <name>p_Result_30</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>674</lineNumber> <contextFuncName>get</contextFuncName> <contextNormFuncName>get</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</first> <second>get</second> </first> <second>674</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>icmpCode_V</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>3703492304</coreId> <rtlModuleName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>416</item> <item>417</item> <item>419</item> <item>421</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>73</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_115"> <Value> <Obj> <type>0</type> <id>154</id> <name>icmpCode_V_write_ln158</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>158</lineNumber> <contextFuncName>icmp_server</contextFuncName> <contextNormFuncName>icmp_server</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</first> <second>icmp_server</second> </first> <second>158</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>3703493696</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>422</item> <item>423</item> <item>838</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>74</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_116"> <Value> <Obj> <type>0</type> <id>155</id> <name>p_Result_31</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>674</lineNumber> <contextFuncName>get</contextFuncName> <contextNormFuncName>get</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</first> <second>get</second> </first> <second>674</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>p_Result_31_fu_648_p4</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>424</item> <item>425</item> <item>427</item> <item>429</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>75</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_117"> <Value> <Obj> <type>0</type> <id>156</id> <name>p_Result_32</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>674</lineNumber> <contextFuncName>get</contextFuncName> <contextNormFuncName>get</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</first> <second>get</second> </first> <second>674</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>p_Result_32_fu_658_p4</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>430</item> <item>431</item> <item>433</item> <item>435</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>76</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_118"> <Value> <Obj> <type>0</type> <id>157</id> <name>tmp_s</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>312</lineNumber> <contextFuncName>get</contextFuncName> <contextNormFuncName>get</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</first> <second>get</second> </first> <second>312</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_s_fu_668_p3</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>3703497200</coreId> <rtlModuleName/> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>436</item> <item>437</item> <item>438</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>77</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_119"> <Value> <Obj> <type>0</type> <id>158</id> <name>zext_ln320</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>320</lineNumber> <contextFuncName>ap_uint</contextFuncName> <contextNormFuncName>ap_uint</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int.h</first> <second>ap_uint</second> </first> <second>320</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>zext_ln320_fu_676_p1</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>17</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>439</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>78</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_120"> <Value> <Obj> <type>0</type> <id>159</id> <name>add_ln320</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>320</lineNumber> <contextFuncName>ap_uint</contextFuncName> <contextNormFuncName>ap_uint</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int.h</first> <second>ap_uint</second> </first> <second>320</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>add_ln320_fu_680_p2</rtlName> <control>auto</control> <opType>add</opType> <implIndex>fabric</implIndex> <coreName>Adder</coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1</coreId> <rtlModuleName/> </Obj> <bitwidth>17</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>440</item> <item>442</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.78</m_delay> <m_topoIndex>79</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_121"> <Value> <Obj> <type>0</type> <id>160</id> <name>icmpChecksum_V_write_ln160</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>160</lineNumber> <contextFuncName>icmp_server</contextFuncName> <contextNormFuncName>icmp_server</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</first> <second>icmp_server</second> </first> <second>160</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>3702843904</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>443</item> <item>444</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>80</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_122"> <Value> <Obj> <type>0</type> <id>161</id> <name>checksumL0_V</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>674</lineNumber> <contextFuncName>get</contextFuncName> <contextNormFuncName>get</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</first> <second>get</second> </first> <second>674</second> </item> </second> </item> </inlineStackInfo> <originalName>checksumL0.V</originalName> <rtlName>checksumL0_V_fu_692_p3</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>3703501728</coreId> <rtlModuleName/> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>445</item> <item>446</item> <item>447</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>81</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_123"> <Value> <Obj> <type>0</type> <id>162</id> <name>zext_ln225</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_base.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>225</lineNumber> <contextFuncName>ap_int_base&amp;lt;16, false&amp;gt;</contextFuncName> <contextNormFuncName>ap_int_base_16_false_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_base.h</first> <second>ap_int_base&amp;lt;16, false&amp;gt;</second> </first> <second>225</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>zext_ln225_fu_700_p1</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>3703500368</coreId> <rtlModuleName/> </Obj> <bitwidth>17</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>448</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>82</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_124"> <Value> <Obj> <type>0</type> <id>163</id> <name>zext_ln225_1</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_base.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>225</lineNumber> <contextFuncName>ap_int_base&amp;lt;16, false&amp;gt;</contextFuncName> <contextNormFuncName>ap_int_base_16_false_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_base.h</first> <second>ap_int_base&amp;lt;16, false&amp;gt;</second> </first> <second>225</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>zext_ln225_1_fu_704_p1</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>3702803856</coreId> <rtlModuleName/> </Obj> <bitwidth>17</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>449</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>83</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_125"> <Value> <Obj> <type>0</type> <id>164</id> <name>ret_10</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_base.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>1525</lineNumber> <contextFuncName>operator+&amp;lt;16, false, 16, false&amp;gt;</contextFuncName> <contextNormFuncName>operator_add_16_false_16_false</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_base.h</first> <second>operator+&amp;lt;16, false, 16, false&amp;gt;</second> </first> <second>1525</second> </item> </second> </item> </inlineStackInfo> <originalName>ret</originalName> <rtlName>ret_10_fu_708_p2</rtlName> <control>auto</control> <opType>add</opType> <implIndex>fabric</implIndex> <coreName>Adder</coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1</coreId> <rtlModuleName/> </Obj> <bitwidth>17</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>450</item> <item>451</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.78</m_delay> <m_topoIndex>84</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_126"> <Value> <Obj> <type>0</type> <id>165</id> <name>zext_ln225_2</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_base.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>225</lineNumber> <contextFuncName>ap_int_base&amp;lt;16, false&amp;gt;</contextFuncName> <contextNormFuncName>ap_int_base_16_false_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_base.h</first> <second>ap_int_base&amp;lt;16, false&amp;gt;</second> </first> <second>225</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>zext_ln225_2_fu_714_p1</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>3703510256</coreId> <rtlModuleName/> </Obj> <bitwidth>17</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>452</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>85</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_127"> <Value> <Obj> <type>0</type> <id>166</id> <name>zext_ln225_3</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_base.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>225</lineNumber> <contextFuncName>ap_int_base&amp;lt;16, false&amp;gt;</contextFuncName> <contextNormFuncName>ap_int_base_16_false_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_base.h</first> <second>ap_int_base&amp;lt;16, false&amp;gt;</second> </first> <second>225</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>zext_ln225_3_fu_718_p1</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>17</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>453</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>86</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_128"> <Value> <Obj> <type>0</type> <id>167</id> <name>ret_11</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_base.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>1525</lineNumber> <contextFuncName>operator+&amp;lt;16, false, 16, false&amp;gt;</contextFuncName> <contextNormFuncName>operator_add_16_false_16_false</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_base.h</first> <second>operator+&amp;lt;16, false, 16, false&amp;gt;</second> </first> <second>1525</second> </item> </second> </item> </inlineStackInfo> <originalName>ret</originalName> <rtlName>ret_11_fu_722_p2</rtlName> <control>auto</control> <opType>add</opType> <implIndex>fabric</implIndex> <coreName>Adder</coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1</coreId> <rtlModuleName/> </Obj> <bitwidth>17</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>454</item> <item>455</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.78</m_delay> <m_topoIndex>87</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_129"> <Value> <Obj> <type>0</type> <id>168</id> <name>zext_ln225_4</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_base.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>225</lineNumber> <contextFuncName>ap_int_base&amp;lt;16, false&amp;gt;</contextFuncName> <contextNormFuncName>ap_int_base_16_false_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_base.h</first> <second>ap_int_base&amp;lt;16, false&amp;gt;</second> </first> <second>225</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>zext_ln225_4_fu_728_p1</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>176</coreId> <rtlModuleName/> </Obj> <bitwidth>17</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>456</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>88</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_130"> <Value> <Obj> <type>0</type> <id>169</id> <name>zext_ln225_5</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_base.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>225</lineNumber> <contextFuncName>ap_int_base&amp;lt;16, false&amp;gt;</contextFuncName> <contextNormFuncName>ap_int_base_16_false_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_base.h</first> <second>ap_int_base&amp;lt;16, false&amp;gt;</second> </first> <second>225</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>zext_ln225_5_fu_732_p1</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>17</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>457</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>89</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_131"> <Value> <Obj> <type>0</type> <id>170</id> <name>ret_12</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_base.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>1525</lineNumber> <contextFuncName>operator+&amp;lt;16, false, 16, false&amp;gt;</contextFuncName> <contextNormFuncName>operator_add_16_false_16_false</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_base.h</first> <second>operator+&amp;lt;16, false, 16, false&amp;gt;</second> </first> <second>1525</second> </item> </second> </item> </inlineStackInfo> <originalName>ret</originalName> <rtlName>ret_12_fu_736_p2</rtlName> <control>auto</control> <opType>add</opType> <implIndex>fabric</implIndex> <coreName>Adder</coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1</coreId> <rtlModuleName/> </Obj> <bitwidth>17</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>458</item> <item>459</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.78</m_delay> <m_topoIndex>90</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_132"> <Value> <Obj> <type>0</type> <id>171</id> <name>zext_ln225_6</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_base.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>225</lineNumber> <contextFuncName>ap_int_base&amp;lt;16, false&amp;gt;</contextFuncName> <contextNormFuncName>ap_int_base_16_false_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_base.h</first> <second>ap_int_base&amp;lt;16, false&amp;gt;</second> </first> <second>225</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>zext_ln225_6_fu_742_p1</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>3703518944</coreId> <rtlModuleName/> </Obj> <bitwidth>17</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>460</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>91</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_133"> <Value> <Obj> <type>0</type> <id>172</id> <name>zext_ln225_7</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_base.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>225</lineNumber> <contextFuncName>ap_int_base&amp;lt;16, false&amp;gt;</contextFuncName> <contextNormFuncName>ap_int_base_16_false_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_base.h</first> <second>ap_int_base&amp;lt;16, false&amp;gt;</second> </first> <second>225</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>zext_ln225_7_fu_746_p1</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>17</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>461</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>92</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_134"> <Value> <Obj> <type>0</type> <id>173</id> <name>ret_13</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_base.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>1525</lineNumber> <contextFuncName>operator+&amp;lt;16, false, 16, false&amp;gt;</contextFuncName> <contextNormFuncName>operator_add_16_false_16_false</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_base.h</first> <second>operator+&amp;lt;16, false, 16, false&amp;gt;</second> </first> <second>1525</second> </item> </second> </item> </inlineStackInfo> <originalName>ret</originalName> <rtlName>ret_13_fu_750_p2</rtlName> <control>auto</control> <opType>add</opType> <implIndex>fabric</implIndex> <coreName>Adder</coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1</coreId> <rtlModuleName/> </Obj> <bitwidth>17</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>462</item> <item>463</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.78</m_delay> <m_topoIndex>93</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_135"> <Value> <Obj> <type>0</type> <id>174</id> <name>zext_ln225_8</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_base.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>225</lineNumber> <contextFuncName>ap_int_base&amp;lt;16, false&amp;gt;</contextFuncName> <contextNormFuncName>ap_int_base_16_false_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_base.h</first> <second>ap_int_base&amp;lt;16, false&amp;gt;</second> </first> <second>225</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>zext_ln225_8_fu_756_p1</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>3703523808</coreId> <rtlModuleName/> </Obj> <bitwidth>17</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>464</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>94</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_136"> <Value> <Obj> <type>0</type> <id>175</id> <name>zext_ln225_9</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_base.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>225</lineNumber> <contextFuncName>ap_int_base&amp;lt;16, false&amp;gt;</contextFuncName> <contextNormFuncName>ap_int_base_16_false_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_base.h</first> <second>ap_int_base&amp;lt;16, false&amp;gt;</second> </first> <second>225</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>zext_ln225_9_fu_760_p1</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>17</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>465</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>95</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_137"> <Value> <Obj> <type>0</type> <id>176</id> <name>ret_14</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_base.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>1525</lineNumber> <contextFuncName>operator+&amp;lt;16, false, 16, false&amp;gt;</contextFuncName> <contextNormFuncName>operator_add_16_false_16_false</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_base.h</first> <second>operator+&amp;lt;16, false, 16, false&amp;gt;</second> </first> <second>1525</second> </item> </second> </item> </inlineStackInfo> <originalName>ret</originalName> <rtlName>ret_14_fu_764_p2</rtlName> <control>auto</control> <opType>add</opType> <implIndex>fabric</implIndex> <coreName>Adder</coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1</coreId> <rtlModuleName/> </Obj> <bitwidth>17</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>466</item> <item>467</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.78</m_delay> <m_topoIndex>96</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_138"> <Value> <Obj> <type>0</type> <id>177</id> <name>zext_ln225_10</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_base.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>225</lineNumber> <contextFuncName>ap_int_base&amp;lt;17, false&amp;gt;</contextFuncName> <contextNormFuncName>ap_int_base_17_false_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_base.h</first> <second>ap_int_base&amp;lt;17, false&amp;gt;</second> </first> <second>225</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>zext_ln225_10_fu_770_p1</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>18</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>468</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>97</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_139"> <Value> <Obj> <type>0</type> <id>178</id> <name>zext_ln225_11</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_base.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>225</lineNumber> <contextFuncName>ap_int_base&amp;lt;17, false&amp;gt;</contextFuncName> <contextNormFuncName>ap_int_base_17_false_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_base.h</first> <second>ap_int_base&amp;lt;17, false&amp;gt;</second> </first> <second>225</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>zext_ln225_11_fu_774_p1</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>18</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>469</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>98</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_140"> <Value> <Obj> <type>0</type> <id>179</id> <name>ret_15</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_base.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>1525</lineNumber> <contextFuncName>operator+&amp;lt;17, false, 17, false&amp;gt;</contextFuncName> <contextNormFuncName>operator_add_17_false_17_false</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_base.h</first> <second>operator+&amp;lt;17, false, 17, false&amp;gt;</second> </first> <second>1525</second> </item> </second> </item> </inlineStackInfo> <originalName>ret</originalName> <rtlName>ret_15_fu_778_p2</rtlName> <control>auto</control> <opType>add</opType> <implIndex>fabric</implIndex> <coreName>Adder</coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1</coreId> <rtlModuleName/> </Obj> <bitwidth>18</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>470</item> <item>471</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.79</m_delay> <m_topoIndex>99</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_141"> <Value> <Obj> <type>0</type> <id>180</id> <name>zext_ln225_12</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_base.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>225</lineNumber> <contextFuncName>ap_int_base&amp;lt;17, false&amp;gt;</contextFuncName> <contextNormFuncName>ap_int_base_17_false_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_base.h</first> <second>ap_int_base&amp;lt;17, false&amp;gt;</second> </first> <second>225</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>zext_ln225_12_fu_784_p1</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>18</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>472</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>100</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_142"> <Value> <Obj> <type>0</type> <id>181</id> <name>zext_ln225_13</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_base.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>225</lineNumber> <contextFuncName>ap_int_base&amp;lt;17, false&amp;gt;</contextFuncName> <contextNormFuncName>ap_int_base_17_false_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_base.h</first> <second>ap_int_base&amp;lt;17, false&amp;gt;</second> </first> <second>225</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>zext_ln225_13_fu_788_p1</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>18</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>473</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>101</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_143"> <Value> <Obj> <type>0</type> <id>182</id> <name>ret_16</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_base.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>1525</lineNumber> <contextFuncName>operator+&amp;lt;17, false, 17, false&amp;gt;</contextFuncName> <contextNormFuncName>operator_add_17_false_17_false</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_base.h</first> <second>operator+&amp;lt;17, false, 17, false&amp;gt;</second> </first> <second>1525</second> </item> </second> </item> </inlineStackInfo> <originalName>ret</originalName> <rtlName>ret_16_fu_792_p2</rtlName> <control>auto</control> <opType>add</opType> <implIndex>fabric</implIndex> <coreName>Adder</coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1</coreId> <rtlModuleName/> </Obj> <bitwidth>18</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>474</item> <item>475</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.79</m_delay> <m_topoIndex>102</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_144"> <Value> <Obj> <type>0</type> <id>183</id> <name>zext_ln225_14</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_base.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>225</lineNumber> <contextFuncName>ap_int_base&amp;lt;18, false&amp;gt;</contextFuncName> <contextNormFuncName>ap_int_base_18_false_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_base.h</first> <second>ap_int_base&amp;lt;18, false&amp;gt;</second> </first> <second>225</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>zext_ln225_14_fu_798_p1</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>641</coreId> <rtlModuleName/> </Obj> <bitwidth>19</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>476</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>103</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_145"> <Value> <Obj> <type>0</type> <id>184</id> <name>zext_ln225_15</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_base.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>225</lineNumber> <contextFuncName>ap_int_base&amp;lt;18, false&amp;gt;</contextFuncName> <contextNormFuncName>ap_int_base_18_false_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_base.h</first> <second>ap_int_base&amp;lt;18, false&amp;gt;</second> </first> <second>225</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>zext_ln225_15_fu_802_p1</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>19</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>477</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>104</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_146"> <Value> <Obj> <type>0</type> <id>185</id> <name>ret_17</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_base.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>1525</lineNumber> <contextFuncName>operator+&amp;lt;18, false, 18, false&amp;gt;</contextFuncName> <contextNormFuncName>operator_add_18_false_18_false</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_base.h</first> <second>operator+&amp;lt;18, false, 18, false&amp;gt;</second> </first> <second>1525</second> </item> </second> </item> </inlineStackInfo> <originalName>ret</originalName> <rtlName>ret_17_fu_806_p2</rtlName> <control>auto</control> <opType>add</opType> <implIndex>fabric</implIndex> <coreName>Adder</coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1</coreId> <rtlModuleName/> </Obj> <bitwidth>19</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>478</item> <item>479</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.79</m_delay> <m_topoIndex>105</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_147"> <Value> <Obj> <type>0</type> <id>186</id> <name>zext_ln225_16</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_base.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>225</lineNumber> <contextFuncName>ap_int_base&amp;lt;19, false&amp;gt;</contextFuncName> <contextNormFuncName>ap_int_base_19_false_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_base.h</first> <second>ap_int_base&amp;lt;19, false&amp;gt;</second> </first> <second>225</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>zext_ln225_16_fu_1054_p1</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>38</coreId> <rtlModuleName/> </Obj> <bitwidth>20</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>480</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>143</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_148"> <Value> <Obj> <type>0</type> <id>187</id> <name>zext_ln225_17</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_base.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>225</lineNumber> <contextFuncName>ap_int_base&amp;lt;17, false&amp;gt;</contextFuncName> <contextNormFuncName>ap_int_base_17_false_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_base.h</first> <second>ap_int_base&amp;lt;17, false&amp;gt;</second> </first> <second>225</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>zext_ln225_17_fu_1057_p1</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>20</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>481</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>144</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_149"> <Value> <Obj> <type>0</type> <id>188</id> <name>ret_18</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_base.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>1525</lineNumber> <contextFuncName>operator+&amp;lt;19, false, 17, false&amp;gt;</contextFuncName> <contextNormFuncName>operator_add_19_false_17_false</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_base.h</first> <second>operator+&amp;lt;19, false, 17, false&amp;gt;</second> </first> <second>1525</second> </item> </second> </item> </inlineStackInfo> <originalName>ret</originalName> <rtlName>ret_18_fu_1060_p2</rtlName> <control>auto</control> <opType>add</opType> <implIndex>fabric</implIndex> <coreName>Adder</coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1</coreId> <rtlModuleName/> </Obj> <bitwidth>20</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>482</item> <item>483</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.80</m_delay> <m_topoIndex>145</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_150"> <Value> <Obj> <type>0</type> <id>189</id> <name>trunc_ln357</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>357</lineNumber> <contextFuncName>operator ap_int_base</contextFuncName> <contextNormFuncName>operator_ap_int_base</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</first> <second>operator ap_int_base</second> </first> <second>357</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>trunc_ln357_fu_1066_p1</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>175</coreId> <rtlModuleName/> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>484</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>146</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_151"> <Value> <Obj> <type>0</type> <id>190</id> <name>p_Result_33</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>357</lineNumber> <contextFuncName>operator ap_int_base</contextFuncName> <contextNormFuncName>operator_ap_int_base</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</first> <second>operator ap_int_base</second> </first> <second>357</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>p_Result_33_fu_1070_p4</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>486</item> <item>487</item> <item>488</item> <item>490</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>147</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_152"> <Value> <Obj> <type>0</type> <id>191</id> <name>zext_ln217</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>217</lineNumber> <contextFuncName>ap_uint&amp;lt;21&amp;gt;</contextFuncName> <contextNormFuncName>ap_uint_21_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int.h</first> <second>ap_uint&amp;lt;21&amp;gt;</second> </first> <second>217</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>zext_ln217_fu_1080_p1</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>3</coreId> <rtlModuleName/> </Obj> <bitwidth>17</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>491</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>148</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_153"> <Value> <Obj> <type>0</type> <id>192</id> <name>zext_ln217_1</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>217</lineNumber> <contextFuncName>ap_uint&amp;lt;21&amp;gt;</contextFuncName> <contextNormFuncName>ap_uint_21_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int.h</first> <second>ap_uint&amp;lt;21&amp;gt;</second> </first> <second>217</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>zext_ln217_1_fu_1084_p1</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>182</coreId> <rtlModuleName/> </Obj> <bitwidth>17</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>492</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>149</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_154"> <Value> <Obj> <type>0</type> <id>193</id> <name>zext_ln217_3</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>217</lineNumber> <contextFuncName>ap_uint&amp;lt;21&amp;gt;</contextFuncName> <contextNormFuncName>ap_uint_21_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int.h</first> <second>ap_uint&amp;lt;21&amp;gt;</second> </first> <second>217</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>zext_ln217_3_fu_1088_p1</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>493</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>150</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_155"> <Value> <Obj> <type>0</type> <id>194</id> <name>checksumL4_r_V</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>217</lineNumber> <contextFuncName>ap_uint&amp;lt;21&amp;gt;</contextFuncName> <contextNormFuncName>ap_uint_21_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int.h</first> <second>ap_uint&amp;lt;21&amp;gt;</second> </first> <second>217</second> </item> </second> </item> </inlineStackInfo> <originalName>checksumL4_r.V</originalName> <rtlName>checksumL4_r_V_fu_1092_p2</rtlName> <control>auto</control> <opType>add</opType> <implIndex>fabric</implIndex> <coreName>Adder</coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1</coreId> <rtlModuleName/> </Obj> <bitwidth>17</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>494</item> <item>495</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.78</m_delay> <m_topoIndex>151</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_156"> <Value> <Obj> <type>0</type> <id>195</id> <name>add_ln45</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>45</lineNumber> <contextFuncName>computeCheckSum20B</contextFuncName> <contextNormFuncName>computeCheckSum20B</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</first> <second>computeCheckSum20B</second> </first> <second>45</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>add_ln45_fu_1098_p2</rtlName> <control>auto</control> <opType>add</opType> <implIndex>tadder</implIndex> <coreName>TAddSub</coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>10</coreId> <rtlModuleName/> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>496</item> <item>497</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>152</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_157"> <Value> <Obj> <type>0</type> <id>196</id> <name>checksumL4_o_V</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>223</lineNumber> <contextFuncName>ap_uint&amp;lt;33&amp;gt;</contextFuncName> <contextNormFuncName>ap_uint_33_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int.h</first> <second>ap_uint&amp;lt;33&amp;gt;</second> </first> <second>223</second> </item> </second> </item> </inlineStackInfo> <originalName>checksumL4_o.V</originalName> <rtlName>checksumL4_o_V_fu_1104_p2</rtlName> <control>auto</control> <opType>add</opType> <implIndex>tadder</implIndex> <coreName>TAddSub</coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>10</coreId> <rtlModuleName/> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>498</item> <item>500</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.67</m_delay> <m_topoIndex>153</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_158"> <Value> <Obj> <type>0</type> <id>197</id> <name>p_Result_s</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>819</lineNumber> <contextFuncName>operator bool</contextFuncName> <contextNormFuncName>operator_bool</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</first> <second>operator bool</second> </first> <second>819</second> </item> </second> </item> </inlineStackInfo> <originalName>__Result__</originalName> <rtlName>p_Result_s_fu_1110_p3</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>502</item> <item>503</item> <item>504</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>154</m_topoIndex> <m_clusterGroupNumber>2</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_159"> <Value> <Obj> <type>0</type> <id>198</id> <name>trunc_ln649</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>649</lineNumber> <contextFuncName>operator~</contextFuncName> <contextNormFuncName>operator_bnot</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</first> <second>operator~</second> </first> <second>649</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>trunc_ln649_fu_1118_p1</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>4294967295</coreId> <rtlModuleName/> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>505</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>155</m_topoIndex> <m_clusterGroupNumber>2</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_160"> <Value> <Obj> <type>0</type> <id>199</id> <name>select_ln819</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>819</lineNumber> <contextFuncName>operator bool</contextFuncName> <contextNormFuncName>operator_bool</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</first> <second>operator bool</second> </first> <second>819</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>select_ln819_fu_1122_p3</rtlName> <control>auto</control> <opType>select</opType> <implIndex>auto_sel</implIndex> <coreName>Sel</coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>73</coreId> <rtlModuleName/> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>506</item> <item>507</item> <item>508</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>156</m_topoIndex> <m_clusterGroupNumber>2</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_161"> <Value> <Obj> <type>0</type> <id>200</id> <name>checksum</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>284</lineNumber> <contextFuncName>ap_uint&amp;lt;17, false&amp;gt;</contextFuncName> <contextNormFuncName>ap_uint_17_false_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int.h</first> <second>ap_uint&amp;lt;17, false&amp;gt;</second> </first> <second>284</second> </item> </second> </item> </inlineStackInfo> <originalName>checksum</originalName> <rtlName>checksum_fu_1130_p2</rtlName> <control>auto</control> <opType>xor</opType> <implIndex>auto</implIndex> <coreName>LogicGate</coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>74</coreId> <rtlModuleName/> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>509</item> <item>511</item> </oprand_edges> <opcode>xor</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.29</m_delay> <m_topoIndex>157</m_topoIndex> <m_clusterGroupNumber>2</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_162"> <Value> <Obj> <type>0</type> <id>201</id> <name>auxInchecksum_r_V_write_ln161</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>161</lineNumber> <contextFuncName>icmp_server</contextFuncName> <contextNormFuncName>icmp_server</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</first> <second>icmp_server</second> </first> <second>161</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>3702763072</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>512</item> <item>513</item> <item>839</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>158</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_163"> <Value> <Obj> <type>0</type> <id>202</id> <name>aiFSMState_write_ln163</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>163</lineNumber> <contextFuncName>icmp_server</contextFuncName> <contextNormFuncName>icmp_server</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</first> <second>icmp_server</second> </first> <second>163</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>514</item> <item>515</item> <item>835</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.45</m_delay> <m_topoIndex>106</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_164"> <Value> <Obj> <type>0</type> <id>203</id> <name>prevWord_data_V_write_ln165</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>165</lineNumber> <contextFuncName>icmp_server</contextFuncName> <contextNormFuncName>icmp_server</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</first> <second>icmp_server</second> </first> <second>165</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>516</item> <item>517</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>107</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_165"> <Value> <Obj> <type>0</type> <id>204</id> <name>prevWord_keep_V_write_ln165</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>165</lineNumber> <contextFuncName>icmp_server</contextFuncName> <contextNormFuncName>icmp_server</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</first> <second>icmp_server</second> </first> <second>165</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>518</item> <item>519</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>108</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_166"> <Value> <Obj> <type>0</type> <id>205</id> <name>prevWord_strb_V_write_ln165</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>165</lineNumber> <contextFuncName>icmp_server</contextFuncName> <contextNormFuncName>icmp_server</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</first> <second>icmp_server</second> </first> <second>165</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>520</item> <item>521</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>109</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_167"> <Value> <Obj> <type>0</type> <id>206</id> <name>prevWord_last_V_write_ln165</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>165</lineNumber> <contextFuncName>icmp_server</contextFuncName> <contextNormFuncName>icmp_server</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</first> <second>icmp_server</second> </first> <second>165</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>522</item> <item>523</item> <item>840</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>110</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_168"> <Value> <Obj> <type>0</type> <id>207</id> <name>br_ln166</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>166</lineNumber> <contextFuncName>icmp_server</contextFuncName> <contextNormFuncName>icmp_server</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</first> <second>icmp_server</second> </first> <second>166</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>524</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>159</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_169"> <Value> <Obj> <type>0</type> <id>209</id> <name>br_ln167</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>167</lineNumber> <contextFuncName>icmp_server</contextFuncName> <contextNormFuncName>icmp_server</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</first> <second>icmp_server</second> </first> <second>167</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>525</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>111</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_170"> <Value> <Obj> <type>0</type> <id>211</id> <name>_ln227</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>227</lineNumber> <contextFuncName>icmp_server</contextFuncName> <contextNormFuncName>icmp_server</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/icmp_server/icmp_server.cpp</first> <second>icmp_server</second> </first> <second>227</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>0</count> <item_version>0</item_version> </oprand_edges> <opcode>ret</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>161</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> </nodes> <consts class_id="15" tracking_level="0" version="0"> <count>61</count> <item_version>0</item_version> <item class_id="16" tracking_level="1" version="0" object_id="_171"> <Value> <Obj> <type>2</type> <id>221</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>62</coreId> <rtlModuleName/> </Obj> <bitwidth>3</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_172"> <Value> <Obj> <type>2</type> <id>224</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>3</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_173"> <Value> <Obj> <type>2</type> <id>227</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>3</bitwidth> </Value> <const_type>0</const_type> <content>2</content> </item> <item class_id_reference="16" object_id="_174"> <Value> <Obj> <type>2</type> <id>230</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>3</bitwidth> </Value> <const_type>0</const_type> <content>4</content> </item> <item class_id_reference="16" object_id="_175"> <Value> <Obj> <type>2</type> <id>233</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>3</bitwidth> </Value> <const_type>0</const_type> <content>3</content> </item> <item class_id_reference="16" object_id="_176"> <Value> <Obj> <type>2</type> <id>242</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_177"> <Value> <Obj> <type>2</type> <id>261</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>8</content> </item> <item class_id_reference="16" object_id="_178"> <Value> <Obj> <type>2</type> <id>263</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>15</content> </item> <item class_id_reference="16" object_id="_179"> <Value> <Obj> <type>2</type> <id>271</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>16</content> </item> <item class_id_reference="16" object_id="_180"> <Value> <Obj> <type>2</type> <id>273</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>23</content> </item> <item class_id_reference="16" object_id="_181"> <Value> <Obj> <type>2</type> <id>277</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>24</content> </item> <item class_id_reference="16" object_id="_182"> <Value> <Obj> <type>2</type> <id>279</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>31</content> </item> <item class_id_reference="16" object_id="_183"> <Value> <Obj> <type>2</type> <id>286</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>32</content> </item> <item class_id_reference="16" object_id="_184"> <Value> <Obj> <type>2</type> <id>288</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>39</content> </item> <item class_id_reference="16" object_id="_185"> <Value> <Obj> <type>2</type> <id>292</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>40</content> </item> <item class_id_reference="16" object_id="_186"> <Value> <Obj> <type>2</type> <id>294</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>3703604912</coreId> <rtlModuleName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>47</content> </item> <item class_id_reference="16" object_id="_187"> <Value> <Obj> <type>2</type> <id>301</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>48</content> </item> <item class_id_reference="16" object_id="_188"> <Value> <Obj> <type>2</type> <id>303</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>55</content> </item> <item class_id_reference="16" object_id="_189"> <Value> <Obj> <type>2</type> <id>307</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>56</content> </item> <item class_id_reference="16" object_id="_190"> <Value> <Obj> <type>2</type> <id>309</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>63</content> </item> <item class_id_reference="16" object_id="_191"> <Value> <Obj> <type>2</type> <id>316</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>3703609424</coreId> <rtlModuleName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>64</content> </item> <item class_id_reference="16" object_id="_192"> <Value> <Obj> <type>2</type> <id>318</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>71</content> </item> <item class_id_reference="16" object_id="_193"> <Value> <Obj> <type>2</type> <id>322</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>72</content> </item> <item class_id_reference="16" object_id="_194"> <Value> <Obj> <type>2</type> <id>324</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>79</content> </item> <item class_id_reference="16" object_id="_195"> <Value> <Obj> <type>2</type> <id>331</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>80</content> </item> <item class_id_reference="16" object_id="_196"> <Value> <Obj> <type>2</type> <id>333</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>87</content> </item> <item class_id_reference="16" object_id="_197"> <Value> <Obj> <type>2</type> <id>337</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>88</content> </item> <item class_id_reference="16" object_id="_198"> <Value> <Obj> <type>2</type> <id>339</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>95</content> </item> <item class_id_reference="16" object_id="_199"> <Value> <Obj> <type>2</type> <id>346</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>96</content> </item> <item class_id_reference="16" object_id="_200"> <Value> <Obj> <type>2</type> <id>348</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>103</content> </item> <item class_id_reference="16" object_id="_201"> <Value> <Obj> <type>2</type> <id>352</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>104</content> </item> <item class_id_reference="16" object_id="_202"> <Value> <Obj> <type>2</type> <id>354</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>111</content> </item> <item class_id_reference="16" object_id="_203"> <Value> <Obj> <type>2</type> <id>361</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>112</content> </item> <item class_id_reference="16" object_id="_204"> <Value> <Obj> <type>2</type> <id>363</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>119</content> </item> <item class_id_reference="16" object_id="_205"> <Value> <Obj> <type>2</type> <id>367</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>120</content> </item> <item class_id_reference="16" object_id="_206"> <Value> <Obj> <type>2</type> <id>369</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>127</content> </item> <item class_id_reference="16" object_id="_207"> <Value> <Obj> <type>2</type> <id>376</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>128</content> </item> <item class_id_reference="16" object_id="_208"> <Value> <Obj> <type>2</type> <id>378</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>135</content> </item> <item class_id_reference="16" object_id="_209"> <Value> <Obj> <type>2</type> <id>382</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>136</content> </item> <item class_id_reference="16" object_id="_210"> <Value> <Obj> <type>2</type> <id>384</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>143</content> </item> <item class_id_reference="16" object_id="_211"> <Value> <Obj> <type>2</type> <id>391</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>144</content> </item> <item class_id_reference="16" object_id="_212"> <Value> <Obj> <type>2</type> <id>393</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>151</content> </item> <item class_id_reference="16" object_id="_213"> <Value> <Obj> <type>2</type> <id>397</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>33686752</coreId> <rtlModuleName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>152</content> </item> <item class_id_reference="16" object_id="_214"> <Value> <Obj> <type>2</type> <id>399</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>159</content> </item> <item class_id_reference="16" object_id="_215"> <Value> <Obj> <type>2</type> <id>410</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>160</content> </item> <item class_id_reference="16" object_id="_216"> <Value> <Obj> <type>2</type> <id>412</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>167</content> </item> <item class_id_reference="16" object_id="_217"> <Value> <Obj> <type>2</type> <id>418</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>168</content> </item> <item class_id_reference="16" object_id="_218"> <Value> <Obj> <type>2</type> <id>420</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>175</content> </item> <item class_id_reference="16" object_id="_219"> <Value> <Obj> <type>2</type> <id>426</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>184</content> </item> <item class_id_reference="16" object_id="_220"> <Value> <Obj> <type>2</type> <id>428</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>191</content> </item> <item class_id_reference="16" object_id="_221"> <Value> <Obj> <type>2</type> <id>432</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>176</content> </item> <item class_id_reference="16" object_id="_222"> <Value> <Obj> <type>2</type> <id>434</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>183</content> </item> <item class_id_reference="16" object_id="_223"> <Value> <Obj> <type>2</type> <id>441</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>17</bitwidth> </Value> <const_type>0</const_type> <content>2048</content> </item> <item class_id_reference="16" object_id="_224"> <Value> <Obj> <type>2</type> <id>489</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>19</content> </item> <item class_id_reference="16" object_id="_225"> <Value> <Obj> <type>2</type> <id>499</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>16</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_226"> <Value> <Obj> <type>2</type> <id>510</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>16</bitwidth> </Value> <const_type>0</const_type> <content>65535</content> </item> <item class_id_reference="16" object_id="_227"> <Value> <Obj> <type>2</type> <id>532</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>8</bitwidth> </Value> <const_type>0</const_type> <content>8</content> </item> <item class_id_reference="16" object_id="_228"> <Value> <Obj> <type>2</type> <id>535</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>8</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_229"> <Value> <Obj> <type>2</type> <id>538</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>16</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_230"> <Value> <Obj> <type>2</type> <id>558</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>8</bitwidth> </Value> <const_type>0</const_type> <content>128</content> </item> <item class_id_reference="16" object_id="_231"> <Value> <Obj> <type>2</type> <id>565</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>24</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> </consts> <blocks class_id="17" tracking_level="0" version="0"> <count>17</count> <item_version>0</item_version> <item class_id="18" tracking_level="1" version="0" object_id="_232"> <Obj> <type>3</type> <id>42</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <node_objs> <count>7</count> <item_version>0</item_version> <item>35</item> <item>36</item> <item>37</item> <item>38</item> <item>39</item> <item>40</item> <item>41</item> </node_objs> </item> <item class_id_reference="18" object_id="_233"> <Obj> <type>3</type> <id>45</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>43</item> <item>44</item> </node_objs> </item> <item class_id_reference="18" object_id="_234"> <Obj> <type>3</type> <id>53</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <node_objs> <count>7</count> <item_version>0</item_version> <item>46</item> <item>47</item> <item>48</item> <item>49</item> <item>50</item> <item>51</item> <item>52</item> </node_objs> </item> <item class_id_reference="18" object_id="_235"> <Obj> <type>3</type> <id>56</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>54</item> <item>55</item> </node_objs> </item> <item class_id_reference="18" object_id="_236"> <Obj> <type>3</type> <id>58</id> <name>._crit_edge8</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>57</item> </node_objs> </item> <item class_id_reference="18" object_id="_237"> <Obj> <type>3</type> <id>60</id> <name>._crit_edge7</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>3703424800</coreId> <rtlModuleName/> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>59</item> </node_objs> </item> <item class_id_reference="18" object_id="_238"> <Obj> <type>3</type> <id>63</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>3703402544</coreId> <rtlModuleName/> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>61</item> <item>62</item> </node_objs> </item> <item class_id_reference="18" object_id="_239"> <Obj> <type>3</type> <id>67</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>3703378944</coreId> <rtlModuleName/> </Obj> <node_objs> <count>3</count> <item_version>0</item_version> <item>64</item> <item>65</item> <item>66</item> </node_objs> </item> <item class_id_reference="18" object_id="_240"> <Obj> <type>3</type> <id>70</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>3703526944</coreId> <rtlModuleName/> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>68</item> <item>69</item> </node_objs> </item> <item class_id_reference="18" object_id="_241"> <Obj> <type>3</type> <id>72</id> <name>._crit_edge6</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>71</item> </node_objs> </item> <item class_id_reference="18" object_id="_242"> <Obj> <type>3</type> <id>74</id> <name>._crit_edge5</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>3703537088</coreId> <rtlModuleName/> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>73</item> </node_objs> </item> <item class_id_reference="18" object_id="_243"> <Obj> <type>3</type> <id>99</id> <name>_ZNK12ap_range_refILi17ELb0EE6lengthEv.exit29.i.i.i</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <node_objs> <count>24</count> <item_version>0</item_version> <item>75</item> <item>76</item> <item>77</item> <item>78</item> <item>79</item> <item>80</item> <item>81</item> <item>82</item> <item>83</item> <item>84</item> <item>85</item> <item>86</item> <item>87</item> <item>88</item> <item>89</item> <item>90</item> <item>91</item> <item>92</item> <item>93</item> <item>94</item> <item>95</item> <item>96</item> <item>97</item> <item>98</item> </node_objs> </item> <item class_id_reference="18" object_id="_244"> <Obj> <type>3</type> <id>111</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <node_objs> <count>11</count> <item_version>0</item_version> <item>100</item> <item>101</item> <item>102</item> <item>103</item> <item>104</item> <item>105</item> <item>106</item> <item>107</item> <item>108</item> <item>109</item> <item>110</item> </node_objs> </item> <item class_id_reference="18" object_id="_245"> <Obj> <type>3</type> <id>114</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>3703000032</coreId> <rtlModuleName/> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>112</item> <item>113</item> </node_objs> </item> <item class_id_reference="18" object_id="_246"> <Obj> <type>3</type> <id>208</id> <name>_ZNK12ap_range_refILi512ELb0EE6lengthEv.exit29.i.i_ifconv</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>3703434320</coreId> <rtlModuleName/> </Obj> <node_objs> <count>93</count> <item_version>0</item_version> <item>115</item> <item>116</item> <item>117</item> <item>118</item> <item>119</item> <item>120</item> <item>121</item> <item>122</item> <item>123</item> <item>124</item> <item>125</item> <item>126</item> <item>127</item> <item>128</item> <item>129</item> <item>130</item> <item>131</item> <item>132</item> <item>133</item> <item>134</item> <item>135</item> <item>136</item> <item>137</item> <item>138</item> <item>139</item> <item>140</item> <item>141</item> <item>142</item> <item>143</item> <item>144</item> <item>145</item> <item>146</item> <item>147</item> <item>148</item> <item>149</item> <item>150</item> <item>151</item> <item>152</item> <item>153</item> <item>154</item> <item>155</item> <item>156</item> <item>157</item> <item>158</item> <item>159</item> <item>160</item> <item>161</item> <item>162</item> <item>163</item> <item>164</item> <item>165</item> <item>166</item> <item>167</item> <item>168</item> <item>169</item> <item>170</item> <item>171</item> <item>172</item> <item>173</item> <item>174</item> <item>175</item> <item>176</item> <item>177</item> <item>178</item> <item>179</item> <item>180</item> <item>181</item> <item>182</item> <item>183</item> <item>184</item> <item>185</item> <item>186</item> <item>187</item> <item>188</item> <item>189</item> <item>190</item> <item>191</item> <item>192</item> <item>193</item> <item>194</item> <item>195</item> <item>196</item> <item>197</item> <item>198</item> <item>199</item> <item>200</item> <item>201</item> <item>202</item> <item>203</item> <item>204</item> <item>205</item> <item>206</item> <item>207</item> </node_objs> </item> <item class_id_reference="18" object_id="_247"> <Obj> <type>3</type> <id>210</id> <name>._crit_edge4</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>209</item> </node_objs> </item> <item class_id_reference="18" object_id="_248"> <Obj> <type>3</type> <id>212</id> <name>._crit_edge</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>211</item> </node_objs> </item> </blocks> <edges class_id="19" tracking_level="0" version="0"> <count>388</count> <item_version>0</item_version> <item class_id="20" tracking_level="1" version="0" object_id="_249"> <id>213</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>35</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_250"> <id>214</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>36</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_251"> <id>215</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>37</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_252"> <id>216</id> <edge_type>1</edge_type> <source_obj>13</source_obj> <sink_obj>38</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_253"> <id>217</id> <edge_type>1</edge_type> <source_obj>14</source_obj> <sink_obj>39</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_254"> <id>218</id> <edge_type>1</edge_type> <source_obj>15</source_obj> <sink_obj>40</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_255"> <id>219</id> <edge_type>1</edge_type> <source_obj>35</source_obj> <sink_obj>41</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_256"> <id>220</id> <edge_type>2</edge_type> <source_obj>212</source_obj> <sink_obj>41</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_257"> <id>222</id> <edge_type>1</edge_type> <source_obj>221</source_obj> <sink_obj>41</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_258"> <id>223</id> <edge_type>2</edge_type> <source_obj>114</source_obj> <sink_obj>41</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_259"> <id>225</id> <edge_type>1</edge_type> <source_obj>224</source_obj> <sink_obj>41</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_260"> <id>226</id> <edge_type>2</edge_type> <source_obj>111</source_obj> <sink_obj>41</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_261"> <id>228</id> <edge_type>1</edge_type> <source_obj>227</source_obj> <sink_obj>41</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_262"> <id>229</id> <edge_type>2</edge_type> <source_obj>99</source_obj> <sink_obj>41</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_263"> <id>231</id> <edge_type>1</edge_type> <source_obj>230</source_obj> <sink_obj>41</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_264"> <id>232</id> <edge_type>2</edge_type> <source_obj>63</source_obj> <sink_obj>41</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_265"> <id>234</id> <edge_type>1</edge_type> <source_obj>233</source_obj> <sink_obj>41</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_266"> <id>235</id> <edge_type>2</edge_type> <source_obj>45</source_obj> <sink_obj>41</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_267"> <id>238</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>112</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_268"> <id>239</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>112</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_269"> <id>240</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>112</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_270"> <id>241</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>112</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_271"> <id>243</id> <edge_type>1</edge_type> <source_obj>242</source_obj> <sink_obj>112</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_272"> <id>244</id> <edge_type>1</edge_type> <source_obj>112</source_obj> <sink_obj>113</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_273"> <id>245</id> <edge_type>2</edge_type> <source_obj>210</source_obj> <sink_obj>113</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_274"> <id>246</id> <edge_type>2</edge_type> <source_obj>208</source_obj> <sink_obj>113</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_275"> <id>249</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>115</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_276"> <id>250</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>115</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_277"> <id>251</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>115</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_278"> <id>252</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>115</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_279"> <id>253</id> <edge_type>1</edge_type> <source_obj>115</source_obj> <sink_obj>116</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_280"> <id>254</id> <edge_type>1</edge_type> <source_obj>115</source_obj> <sink_obj>117</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_281"> <id>255</id> <edge_type>1</edge_type> <source_obj>115</source_obj> <sink_obj>118</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_282"> <id>256</id> <edge_type>1</edge_type> <source_obj>115</source_obj> <sink_obj>119</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_283"> <id>257</id> <edge_type>1</edge_type> <source_obj>116</source_obj> <sink_obj>120</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_284"> <id>260</id> <edge_type>1</edge_type> <source_obj>116</source_obj> <sink_obj>121</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_285"> <id>262</id> <edge_type>1</edge_type> <source_obj>261</source_obj> <sink_obj>121</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_286"> <id>264</id> <edge_type>1</edge_type> <source_obj>263</source_obj> <sink_obj>121</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_287"> <id>267</id> <edge_type>1</edge_type> <source_obj>120</source_obj> <sink_obj>122</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_288"> <id>268</id> <edge_type>1</edge_type> <source_obj>121</source_obj> <sink_obj>122</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_289"> <id>270</id> <edge_type>1</edge_type> <source_obj>116</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_290"> <id>272</id> <edge_type>1</edge_type> <source_obj>271</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_291"> <id>274</id> <edge_type>1</edge_type> <source_obj>273</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_292"> <id>276</id> <edge_type>1</edge_type> <source_obj>116</source_obj> <sink_obj>124</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_293"> <id>278</id> <edge_type>1</edge_type> <source_obj>277</source_obj> <sink_obj>124</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_294"> <id>280</id> <edge_type>1</edge_type> <source_obj>279</source_obj> <sink_obj>124</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_295"> <id>282</id> <edge_type>1</edge_type> <source_obj>123</source_obj> <sink_obj>125</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_296"> <id>283</id> <edge_type>1</edge_type> <source_obj>124</source_obj> <sink_obj>125</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_297"> <id>285</id> <edge_type>1</edge_type> <source_obj>116</source_obj> <sink_obj>126</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_298"> <id>287</id> <edge_type>1</edge_type> <source_obj>286</source_obj> <sink_obj>126</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_299"> <id>289</id> <edge_type>1</edge_type> <source_obj>288</source_obj> <sink_obj>126</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_300"> <id>291</id> <edge_type>1</edge_type> <source_obj>116</source_obj> <sink_obj>127</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_301"> <id>293</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>127</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_302"> <id>295</id> <edge_type>1</edge_type> <source_obj>294</source_obj> <sink_obj>127</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_303"> <id>297</id> <edge_type>1</edge_type> <source_obj>126</source_obj> <sink_obj>128</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_304"> <id>298</id> <edge_type>1</edge_type> <source_obj>127</source_obj> <sink_obj>128</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_305"> <id>300</id> <edge_type>1</edge_type> <source_obj>116</source_obj> <sink_obj>129</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_306"> <id>302</id> <edge_type>1</edge_type> <source_obj>301</source_obj> <sink_obj>129</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_307"> <id>304</id> <edge_type>1</edge_type> <source_obj>303</source_obj> <sink_obj>129</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_308"> <id>306</id> <edge_type>1</edge_type> <source_obj>116</source_obj> <sink_obj>130</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_309"> <id>308</id> <edge_type>1</edge_type> <source_obj>307</source_obj> <sink_obj>130</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_310"> <id>310</id> <edge_type>1</edge_type> <source_obj>309</source_obj> <sink_obj>130</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_311"> <id>312</id> <edge_type>1</edge_type> <source_obj>129</source_obj> <sink_obj>131</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_312"> <id>313</id> <edge_type>1</edge_type> <source_obj>130</source_obj> <sink_obj>131</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_313"> <id>315</id> <edge_type>1</edge_type> <source_obj>116</source_obj> <sink_obj>132</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_314"> <id>317</id> <edge_type>1</edge_type> <source_obj>316</source_obj> <sink_obj>132</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_315"> <id>319</id> <edge_type>1</edge_type> <source_obj>318</source_obj> <sink_obj>132</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_316"> <id>321</id> <edge_type>1</edge_type> <source_obj>116</source_obj> <sink_obj>133</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_317"> <id>323</id> <edge_type>1</edge_type> <source_obj>322</source_obj> <sink_obj>133</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_318"> <id>325</id> <edge_type>1</edge_type> <source_obj>324</source_obj> <sink_obj>133</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_319"> <id>327</id> <edge_type>1</edge_type> <source_obj>132</source_obj> <sink_obj>134</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_320"> <id>328</id> <edge_type>1</edge_type> <source_obj>133</source_obj> <sink_obj>134</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_321"> <id>330</id> <edge_type>1</edge_type> <source_obj>116</source_obj> <sink_obj>135</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_322"> <id>332</id> <edge_type>1</edge_type> <source_obj>331</source_obj> <sink_obj>135</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_323"> <id>334</id> <edge_type>1</edge_type> <source_obj>333</source_obj> <sink_obj>135</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_324"> <id>336</id> <edge_type>1</edge_type> <source_obj>116</source_obj> <sink_obj>136</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_325"> <id>338</id> <edge_type>1</edge_type> <source_obj>337</source_obj> <sink_obj>136</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_326"> <id>340</id> <edge_type>1</edge_type> <source_obj>339</source_obj> <sink_obj>136</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_327"> <id>342</id> <edge_type>1</edge_type> <source_obj>135</source_obj> <sink_obj>137</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_328"> <id>343</id> <edge_type>1</edge_type> <source_obj>136</source_obj> <sink_obj>137</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_329"> <id>345</id> <edge_type>1</edge_type> <source_obj>116</source_obj> <sink_obj>138</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_330"> <id>347</id> <edge_type>1</edge_type> <source_obj>346</source_obj> <sink_obj>138</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_331"> <id>349</id> <edge_type>1</edge_type> <source_obj>348</source_obj> <sink_obj>138</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_332"> <id>351</id> <edge_type>1</edge_type> <source_obj>116</source_obj> <sink_obj>139</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_333"> <id>353</id> <edge_type>1</edge_type> <source_obj>352</source_obj> <sink_obj>139</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_334"> <id>355</id> <edge_type>1</edge_type> <source_obj>354</source_obj> <sink_obj>139</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_335"> <id>357</id> <edge_type>1</edge_type> <source_obj>138</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_336"> <id>358</id> <edge_type>1</edge_type> <source_obj>139</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_337"> <id>360</id> <edge_type>1</edge_type> <source_obj>116</source_obj> <sink_obj>141</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_338"> <id>362</id> <edge_type>1</edge_type> <source_obj>361</source_obj> <sink_obj>141</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_339"> <id>364</id> <edge_type>1</edge_type> <source_obj>363</source_obj> <sink_obj>141</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_340"> <id>366</id> <edge_type>1</edge_type> <source_obj>116</source_obj> <sink_obj>142</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_341"> <id>368</id> <edge_type>1</edge_type> <source_obj>367</source_obj> <sink_obj>142</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_342"> <id>370</id> <edge_type>1</edge_type> <source_obj>369</source_obj> <sink_obj>142</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_343"> <id>372</id> <edge_type>1</edge_type> <source_obj>141</source_obj> <sink_obj>143</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_344"> <id>373</id> <edge_type>1</edge_type> <source_obj>142</source_obj> <sink_obj>143</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_345"> <id>375</id> <edge_type>1</edge_type> <source_obj>116</source_obj> <sink_obj>144</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_346"> <id>377</id> <edge_type>1</edge_type> <source_obj>376</source_obj> <sink_obj>144</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_347"> <id>379</id> <edge_type>1</edge_type> <source_obj>378</source_obj> <sink_obj>144</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_348"> <id>381</id> <edge_type>1</edge_type> <source_obj>116</source_obj> <sink_obj>145</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_349"> <id>383</id> <edge_type>1</edge_type> <source_obj>382</source_obj> <sink_obj>145</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_350"> <id>385</id> <edge_type>1</edge_type> <source_obj>384</source_obj> <sink_obj>145</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_351"> <id>387</id> <edge_type>1</edge_type> <source_obj>144</source_obj> <sink_obj>146</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_352"> <id>388</id> <edge_type>1</edge_type> <source_obj>145</source_obj> <sink_obj>146</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_353"> <id>390</id> <edge_type>1</edge_type> <source_obj>116</source_obj> <sink_obj>147</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_354"> <id>392</id> <edge_type>1</edge_type> <source_obj>391</source_obj> <sink_obj>147</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_355"> <id>394</id> <edge_type>1</edge_type> <source_obj>393</source_obj> <sink_obj>147</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_356"> <id>396</id> <edge_type>1</edge_type> <source_obj>116</source_obj> <sink_obj>148</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_357"> <id>398</id> <edge_type>1</edge_type> <source_obj>397</source_obj> <sink_obj>148</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_358"> <id>400</id> <edge_type>1</edge_type> <source_obj>399</source_obj> <sink_obj>148</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_359"> <id>403</id> <edge_type>1</edge_type> <source_obj>116</source_obj> <sink_obj>149</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_360"> <id>404</id> <edge_type>1</edge_type> <source_obj>376</source_obj> <sink_obj>149</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_361"> <id>405</id> <edge_type>1</edge_type> <source_obj>399</source_obj> <sink_obj>149</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_362"> <id>406</id> <edge_type>1</edge_type> <source_obj>149</source_obj> <sink_obj>150</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_363"> <id>407</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>150</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_364"> <id>409</id> <edge_type>1</edge_type> <source_obj>116</source_obj> <sink_obj>151</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_365"> <id>411</id> <edge_type>1</edge_type> <source_obj>410</source_obj> <sink_obj>151</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_366"> <id>413</id> <edge_type>1</edge_type> <source_obj>412</source_obj> <sink_obj>151</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_367"> <id>414</id> <edge_type>1</edge_type> <source_obj>151</source_obj> <sink_obj>152</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_368"> <id>415</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>152</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_369"> <id>417</id> <edge_type>1</edge_type> <source_obj>116</source_obj> <sink_obj>153</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_370"> <id>419</id> <edge_type>1</edge_type> <source_obj>418</source_obj> <sink_obj>153</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_371"> <id>421</id> <edge_type>1</edge_type> <source_obj>420</source_obj> <sink_obj>153</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_372"> <id>422</id> <edge_type>1</edge_type> <source_obj>153</source_obj> <sink_obj>154</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_373"> <id>423</id> <edge_type>1</edge_type> <source_obj>13</source_obj> <sink_obj>154</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_374"> <id>425</id> <edge_type>1</edge_type> <source_obj>116</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_375"> <id>427</id> <edge_type>1</edge_type> <source_obj>426</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_376"> <id>429</id> <edge_type>1</edge_type> <source_obj>428</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_377"> <id>431</id> <edge_type>1</edge_type> <source_obj>116</source_obj> <sink_obj>156</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_378"> <id>433</id> <edge_type>1</edge_type> <source_obj>432</source_obj> <sink_obj>156</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_379"> <id>435</id> <edge_type>1</edge_type> <source_obj>434</source_obj> <sink_obj>156</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_380"> <id>437</id> <edge_type>1</edge_type> <source_obj>156</source_obj> <sink_obj>157</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_381"> <id>438</id> <edge_type>1</edge_type> <source_obj>155</source_obj> <sink_obj>157</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_382"> <id>439</id> <edge_type>1</edge_type> <source_obj>157</source_obj> <sink_obj>158</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_383"> <id>440</id> <edge_type>1</edge_type> <source_obj>158</source_obj> <sink_obj>159</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_384"> <id>442</id> <edge_type>1</edge_type> <source_obj>441</source_obj> <sink_obj>159</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_385"> <id>443</id> <edge_type>1</edge_type> <source_obj>159</source_obj> <sink_obj>160</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_386"> <id>444</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>160</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_387"> <id>446</id> <edge_type>1</edge_type> <source_obj>147</source_obj> <sink_obj>161</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_388"> <id>447</id> <edge_type>1</edge_type> <source_obj>148</source_obj> <sink_obj>161</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_389"> <id>448</id> <edge_type>1</edge_type> <source_obj>161</source_obj> <sink_obj>162</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_390"> <id>449</id> <edge_type>1</edge_type> <source_obj>146</source_obj> <sink_obj>163</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_391"> <id>450</id> <edge_type>1</edge_type> <source_obj>163</source_obj> <sink_obj>164</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_392"> <id>451</id> <edge_type>1</edge_type> <source_obj>162</source_obj> <sink_obj>164</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_393"> <id>452</id> <edge_type>1</edge_type> <source_obj>143</source_obj> <sink_obj>165</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_394"> <id>453</id> <edge_type>1</edge_type> <source_obj>140</source_obj> <sink_obj>166</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_395"> <id>454</id> <edge_type>1</edge_type> <source_obj>166</source_obj> <sink_obj>167</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_396"> <id>455</id> <edge_type>1</edge_type> <source_obj>165</source_obj> <sink_obj>167</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_397"> <id>456</id> <edge_type>1</edge_type> <source_obj>137</source_obj> <sink_obj>168</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_398"> <id>457</id> <edge_type>1</edge_type> <source_obj>134</source_obj> <sink_obj>169</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_399"> <id>458</id> <edge_type>1</edge_type> <source_obj>169</source_obj> <sink_obj>170</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_400"> <id>459</id> <edge_type>1</edge_type> <source_obj>168</source_obj> <sink_obj>170</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_401"> <id>460</id> <edge_type>1</edge_type> <source_obj>131</source_obj> <sink_obj>171</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_402"> <id>461</id> <edge_type>1</edge_type> <source_obj>128</source_obj> <sink_obj>172</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_403"> <id>462</id> <edge_type>1</edge_type> <source_obj>172</source_obj> <sink_obj>173</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_404"> <id>463</id> <edge_type>1</edge_type> <source_obj>171</source_obj> <sink_obj>173</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_405"> <id>464</id> <edge_type>1</edge_type> <source_obj>125</source_obj> <sink_obj>174</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_406"> <id>465</id> <edge_type>1</edge_type> <source_obj>122</source_obj> <sink_obj>175</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_407"> <id>466</id> <edge_type>1</edge_type> <source_obj>175</source_obj> <sink_obj>176</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_408"> <id>467</id> <edge_type>1</edge_type> <source_obj>174</source_obj> <sink_obj>176</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_409"> <id>468</id> <edge_type>1</edge_type> <source_obj>164</source_obj> <sink_obj>177</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_410"> <id>469</id> <edge_type>1</edge_type> <source_obj>167</source_obj> <sink_obj>178</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_411"> <id>470</id> <edge_type>1</edge_type> <source_obj>178</source_obj> <sink_obj>179</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_412"> <id>471</id> <edge_type>1</edge_type> <source_obj>177</source_obj> <sink_obj>179</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_413"> <id>472</id> <edge_type>1</edge_type> <source_obj>170</source_obj> <sink_obj>180</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_414"> <id>473</id> <edge_type>1</edge_type> <source_obj>173</source_obj> <sink_obj>181</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_415"> <id>474</id> <edge_type>1</edge_type> <source_obj>181</source_obj> <sink_obj>182</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_416"> <id>475</id> <edge_type>1</edge_type> <source_obj>180</source_obj> <sink_obj>182</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_417"> <id>476</id> <edge_type>1</edge_type> <source_obj>179</source_obj> <sink_obj>183</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_418"> <id>477</id> <edge_type>1</edge_type> <source_obj>182</source_obj> <sink_obj>184</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_419"> <id>478</id> <edge_type>1</edge_type> <source_obj>184</source_obj> <sink_obj>185</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_420"> <id>479</id> <edge_type>1</edge_type> <source_obj>183</source_obj> <sink_obj>185</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_421"> <id>480</id> <edge_type>1</edge_type> <source_obj>185</source_obj> <sink_obj>186</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_422"> <id>481</id> <edge_type>1</edge_type> <source_obj>176</source_obj> <sink_obj>187</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_423"> <id>482</id> <edge_type>1</edge_type> <source_obj>186</source_obj> <sink_obj>188</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_424"> <id>483</id> <edge_type>1</edge_type> <source_obj>187</source_obj> <sink_obj>188</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_425"> <id>484</id> <edge_type>1</edge_type> <source_obj>188</source_obj> <sink_obj>189</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_426"> <id>487</id> <edge_type>1</edge_type> <source_obj>188</source_obj> <sink_obj>190</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_427"> <id>488</id> <edge_type>1</edge_type> <source_obj>271</source_obj> <sink_obj>190</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_428"> <id>490</id> <edge_type>1</edge_type> <source_obj>489</source_obj> <sink_obj>190</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_429"> <id>491</id> <edge_type>1</edge_type> <source_obj>189</source_obj> <sink_obj>191</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_430"> <id>492</id> <edge_type>1</edge_type> <source_obj>190</source_obj> <sink_obj>192</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_431"> <id>493</id> <edge_type>1</edge_type> <source_obj>190</source_obj> <sink_obj>193</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_432"> <id>494</id> <edge_type>1</edge_type> <source_obj>191</source_obj> <sink_obj>194</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_433"> <id>495</id> <edge_type>1</edge_type> <source_obj>192</source_obj> <sink_obj>194</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_434"> <id>496</id> <edge_type>1</edge_type> <source_obj>189</source_obj> <sink_obj>195</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_435"> <id>497</id> <edge_type>1</edge_type> <source_obj>193</source_obj> <sink_obj>195</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_436"> <id>498</id> <edge_type>1</edge_type> <source_obj>195</source_obj> <sink_obj>196</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_437"> <id>500</id> <edge_type>1</edge_type> <source_obj>499</source_obj> <sink_obj>196</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_438"> <id>503</id> <edge_type>1</edge_type> <source_obj>194</source_obj> <sink_obj>197</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_439"> <id>504</id> <edge_type>1</edge_type> <source_obj>271</source_obj> <sink_obj>197</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_440"> <id>505</id> <edge_type>1</edge_type> <source_obj>194</source_obj> <sink_obj>198</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_441"> <id>506</id> <edge_type>1</edge_type> <source_obj>197</source_obj> <sink_obj>199</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_442"> <id>507</id> <edge_type>1</edge_type> <source_obj>196</source_obj> <sink_obj>199</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_443"> <id>508</id> <edge_type>1</edge_type> <source_obj>198</source_obj> <sink_obj>199</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_444"> <id>509</id> <edge_type>1</edge_type> <source_obj>199</source_obj> <sink_obj>200</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_445"> <id>511</id> <edge_type>1</edge_type> <source_obj>510</source_obj> <sink_obj>200</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_446"> <id>512</id> <edge_type>1</edge_type> <source_obj>200</source_obj> <sink_obj>201</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_447"> <id>513</id> <edge_type>1</edge_type> <source_obj>14</source_obj> <sink_obj>201</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_448"> <id>514</id> <edge_type>1</edge_type> <source_obj>224</source_obj> <sink_obj>202</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_449"> <id>515</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>202</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_450"> <id>516</id> <edge_type>1</edge_type> <source_obj>116</source_obj> <sink_obj>203</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_451"> <id>517</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>203</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_452"> <id>518</id> <edge_type>1</edge_type> <source_obj>117</source_obj> <sink_obj>204</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_453"> <id>519</id> <edge_type>1</edge_type> <source_obj>18</source_obj> <sink_obj>204</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_454"> <id>520</id> <edge_type>1</edge_type> <source_obj>118</source_obj> <sink_obj>205</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_455"> <id>521</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>205</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_456"> <id>522</id> <edge_type>1</edge_type> <source_obj>119</source_obj> <sink_obj>206</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_457"> <id>523</id> <edge_type>1</edge_type> <source_obj>15</source_obj> <sink_obj>206</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_458"> <id>524</id> <edge_type>2</edge_type> <source_obj>210</source_obj> <sink_obj>207</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_459"> <id>525</id> <edge_type>2</edge_type> <source_obj>212</source_obj> <sink_obj>209</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_460"> <id>528</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>100</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_461"> <id>529</id> <edge_type>1</edge_type> <source_obj>36</source_obj> <sink_obj>101</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_462"> <id>530</id> <edge_type>1</edge_type> <source_obj>100</source_obj> <sink_obj>101</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_463"> <id>531</id> <edge_type>1</edge_type> <source_obj>37</source_obj> <sink_obj>102</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_464"> <id>533</id> <edge_type>1</edge_type> <source_obj>532</source_obj> <sink_obj>102</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_465"> <id>534</id> <edge_type>1</edge_type> <source_obj>38</source_obj> <sink_obj>103</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_466"> <id>536</id> <edge_type>1</edge_type> <source_obj>535</source_obj> <sink_obj>103</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_467"> <id>537</id> <edge_type>1</edge_type> <source_obj>39</source_obj> <sink_obj>104</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_468"> <id>539</id> <edge_type>1</edge_type> <source_obj>538</source_obj> <sink_obj>104</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_469"> <id>540</id> <edge_type>1</edge_type> <source_obj>101</source_obj> <sink_obj>105</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_470"> <id>541</id> <edge_type>1</edge_type> <source_obj>102</source_obj> <sink_obj>105</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_471"> <id>542</id> <edge_type>1</edge_type> <source_obj>103</source_obj> <sink_obj>106</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_472"> <id>543</id> <edge_type>1</edge_type> <source_obj>104</source_obj> <sink_obj>106</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_473"> <id>544</id> <edge_type>1</edge_type> <source_obj>106</source_obj> <sink_obj>107</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_474"> <id>545</id> <edge_type>1</edge_type> <source_obj>105</source_obj> <sink_obj>107</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_475"> <id>546</id> <edge_type>1</edge_type> <source_obj>107</source_obj> <sink_obj>108</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_476"> <id>547</id> <edge_type>1</edge_type> <source_obj>227</source_obj> <sink_obj>108</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_477"> <id>548</id> <edge_type>1</edge_type> <source_obj>230</source_obj> <sink_obj>108</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_478"> <id>549</id> <edge_type>1</edge_type> <source_obj>108</source_obj> <sink_obj>109</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_479"> <id>550</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>109</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_480"> <id>551</id> <edge_type>2</edge_type> <source_obj>212</source_obj> <sink_obj>110</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_481"> <id>552</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>75</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_482"> <id>553</id> <edge_type>1</edge_type> <source_obj>18</source_obj> <sink_obj>76</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_483"> <id>554</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>77</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_484"> <id>557</id> <edge_type>1</edge_type> <source_obj>75</source_obj> <sink_obj>78</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_485"> <id>559</id> <edge_type>1</edge_type> <source_obj>558</source_obj> <sink_obj>78</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_486"> <id>560</id> <edge_type>1</edge_type> <source_obj>316</source_obj> <sink_obj>78</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_487"> <id>561</id> <edge_type>1</edge_type> <source_obj>318</source_obj> <sink_obj>78</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_488"> <id>564</id> <edge_type>1</edge_type> <source_obj>78</source_obj> <sink_obj>79</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_489"> <id>566</id> <edge_type>1</edge_type> <source_obj>565</source_obj> <sink_obj>79</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_490"> <id>567</id> <edge_type>1</edge_type> <source_obj>322</source_obj> <sink_obj>79</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_491"> <id>568</id> <edge_type>1</edge_type> <source_obj>339</source_obj> <sink_obj>79</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_492"> <id>571</id> <edge_type>1</edge_type> <source_obj>79</source_obj> <sink_obj>80</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_493"> <id>572</id> <edge_type>1</edge_type> <source_obj>538</source_obj> <sink_obj>80</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_494"> <id>573</id> <edge_type>1</edge_type> <source_obj>331</source_obj> <sink_obj>80</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_495"> <id>574</id> <edge_type>1</edge_type> <source_obj>339</source_obj> <sink_obj>80</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_496"> <id>576</id> <edge_type>1</edge_type> <source_obj>75</source_obj> <sink_obj>81</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_497"> <id>577</id> <edge_type>1</edge_type> <source_obj>376</source_obj> <sink_obj>81</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_498"> <id>578</id> <edge_type>1</edge_type> <source_obj>399</source_obj> <sink_obj>81</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_499"> <id>581</id> <edge_type>1</edge_type> <source_obj>80</source_obj> <sink_obj>82</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_500"> <id>582</id> <edge_type>1</edge_type> <source_obj>81</source_obj> <sink_obj>82</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_501"> <id>583</id> <edge_type>1</edge_type> <source_obj>346</source_obj> <sink_obj>82</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_502"> <id>584</id> <edge_type>1</edge_type> <source_obj>369</source_obj> <sink_obj>82</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_503"> <id>586</id> <edge_type>1</edge_type> <source_obj>75</source_obj> <sink_obj>83</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_504"> <id>587</id> <edge_type>1</edge_type> <source_obj>346</source_obj> <sink_obj>83</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_505"> <id>588</id> <edge_type>1</edge_type> <source_obj>369</source_obj> <sink_obj>83</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_506"> <id>590</id> <edge_type>1</edge_type> <source_obj>82</source_obj> <sink_obj>84</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_507"> <id>591</id> <edge_type>1</edge_type> <source_obj>83</source_obj> <sink_obj>84</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_508"> <id>592</id> <edge_type>1</edge_type> <source_obj>376</source_obj> <sink_obj>84</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_509"> <id>593</id> <edge_type>1</edge_type> <source_obj>399</source_obj> <sink_obj>84</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_510"> <id>594</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>85</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_511"> <id>595</id> <edge_type>1</edge_type> <source_obj>85</source_obj> <sink_obj>86</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_512"> <id>597</id> <edge_type>1</edge_type> <source_obj>85</source_obj> <sink_obj>87</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_513"> <id>598</id> <edge_type>1</edge_type> <source_obj>271</source_obj> <sink_obj>87</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_514"> <id>599</id> <edge_type>1</edge_type> <source_obj>87</source_obj> <sink_obj>88</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_515"> <id>600</id> <edge_type>1</edge_type> <source_obj>88</source_obj> <sink_obj>89</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_516"> <id>601</id> <edge_type>1</edge_type> <source_obj>86</source_obj> <sink_obj>89</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_517"> <id>603</id> <edge_type>1</edge_type> <source_obj>84</source_obj> <sink_obj>90</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_518"> <id>604</id> <edge_type>1</edge_type> <source_obj>535</source_obj> <sink_obj>90</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_519"> <id>605</id> <edge_type>1</edge_type> <source_obj>410</source_obj> <sink_obj>90</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_520"> <id>606</id> <edge_type>1</edge_type> <source_obj>412</source_obj> <sink_obj>90</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_521"> <id>609</id> <edge_type>1</edge_type> <source_obj>89</source_obj> <sink_obj>91</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_522"> <id>610</id> <edge_type>1</edge_type> <source_obj>261</source_obj> <sink_obj>91</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_523"> <id>611</id> <edge_type>1</edge_type> <source_obj>263</source_obj> <sink_obj>91</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_524"> <id>612</id> <edge_type>1</edge_type> <source_obj>89</source_obj> <sink_obj>92</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_525"> <id>614</id> <edge_type>1</edge_type> <source_obj>92</source_obj> <sink_obj>93</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_526"> <id>615</id> <edge_type>1</edge_type> <source_obj>91</source_obj> <sink_obj>93</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_527"> <id>617</id> <edge_type>1</edge_type> <source_obj>90</source_obj> <sink_obj>94</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_528"> <id>618</id> <edge_type>1</edge_type> <source_obj>93</source_obj> <sink_obj>94</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_529"> <id>619</id> <edge_type>1</edge_type> <source_obj>432</source_obj> <sink_obj>94</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_530"> <id>620</id> <edge_type>1</edge_type> <source_obj>428</source_obj> <sink_obj>94</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_531"> <id>621</id> <edge_type>1</edge_type> <source_obj>40</source_obj> <sink_obj>95</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_532"> <id>622</id> <edge_type>1</edge_type> <source_obj>221</source_obj> <sink_obj>95</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_533"> <id>623</id> <edge_type>1</edge_type> <source_obj>233</source_obj> <sink_obj>95</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_534"> <id>624</id> <edge_type>1</edge_type> <source_obj>95</source_obj> <sink_obj>96</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_535"> <id>625</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>96</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_536"> <id>628</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>97</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_537"> <id>629</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>97</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_538"> <id>630</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>97</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_539"> <id>631</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>97</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_540"> <id>632</id> <edge_type>1</edge_type> <source_obj>94</source_obj> <sink_obj>97</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_541"> <id>633</id> <edge_type>1</edge_type> <source_obj>76</source_obj> <sink_obj>97</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_542"> <id>634</id> <edge_type>1</edge_type> <source_obj>77</source_obj> <sink_obj>97</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_543"> <id>635</id> <edge_type>1</edge_type> <source_obj>40</source_obj> <sink_obj>97</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_544"> <id>636</id> <edge_type>2</edge_type> <source_obj>212</source_obj> <sink_obj>98</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_545"> <id>638</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>61</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_546"> <id>639</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>61</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_547"> <id>640</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>61</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_548"> <id>641</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>61</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_549"> <id>642</id> <edge_type>1</edge_type> <source_obj>242</source_obj> <sink_obj>61</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_550"> <id>643</id> <edge_type>1</edge_type> <source_obj>61</source_obj> <sink_obj>62</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_551"> <id>644</id> <edge_type>2</edge_type> <source_obj>74</source_obj> <sink_obj>62</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_552"> <id>645</id> <edge_type>2</edge_type> <source_obj>67</source_obj> <sink_obj>62</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_553"> <id>647</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>64</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_554"> <id>648</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>64</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_555"> <id>649</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>64</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_556"> <id>650</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>64</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_557"> <id>651</id> <edge_type>1</edge_type> <source_obj>64</source_obj> <sink_obj>65</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_558"> <id>652</id> <edge_type>1</edge_type> <source_obj>65</source_obj> <sink_obj>66</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_559"> <id>653</id> <edge_type>2</edge_type> <source_obj>72</source_obj> <sink_obj>66</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_560"> <id>654</id> <edge_type>2</edge_type> <source_obj>70</source_obj> <sink_obj>66</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_561"> <id>655</id> <edge_type>1</edge_type> <source_obj>221</source_obj> <sink_obj>68</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_562"> <id>656</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>68</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_563"> <id>657</id> <edge_type>2</edge_type> <source_obj>72</source_obj> <sink_obj>69</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_564"> <id>658</id> <edge_type>2</edge_type> <source_obj>74</source_obj> <sink_obj>71</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_565"> <id>659</id> <edge_type>2</edge_type> <source_obj>212</source_obj> <sink_obj>73</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_566"> <id>661</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>43</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_567"> <id>662</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>43</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_568"> <id>663</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>43</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_569"> <id>664</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>43</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_570"> <id>665</id> <edge_type>1</edge_type> <source_obj>242</source_obj> <sink_obj>43</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_571"> <id>666</id> <edge_type>1</edge_type> <source_obj>43</source_obj> <sink_obj>44</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_572"> <id>667</id> <edge_type>2</edge_type> <source_obj>60</source_obj> <sink_obj>44</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_573"> <id>668</id> <edge_type>2</edge_type> <source_obj>53</source_obj> <sink_obj>44</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_574"> <id>670</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>46</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_575"> <id>671</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>46</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_576"> <id>672</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>46</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_577"> <id>673</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>46</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_578"> <id>674</id> <edge_type>1</edge_type> <source_obj>46</source_obj> <sink_obj>47</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_579"> <id>675</id> <edge_type>1</edge_type> <source_obj>46</source_obj> <sink_obj>48</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_580"> <id>676</id> <edge_type>1</edge_type> <source_obj>46</source_obj> <sink_obj>49</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_581"> <id>677</id> <edge_type>1</edge_type> <source_obj>46</source_obj> <sink_obj>50</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_582"> <id>679</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>51</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_583"> <id>680</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>51</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_584"> <id>681</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>51</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_585"> <id>682</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>51</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_586"> <id>683</id> <edge_type>1</edge_type> <source_obj>47</source_obj> <sink_obj>51</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_587"> <id>684</id> <edge_type>1</edge_type> <source_obj>48</source_obj> <sink_obj>51</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_588"> <id>685</id> <edge_type>1</edge_type> <source_obj>49</source_obj> <sink_obj>51</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_589"> <id>686</id> <edge_type>1</edge_type> <source_obj>50</source_obj> <sink_obj>51</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_590"> <id>687</id> <edge_type>1</edge_type> <source_obj>50</source_obj> <sink_obj>52</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_591"> <id>688</id> <edge_type>2</edge_type> <source_obj>58</source_obj> <sink_obj>52</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_592"> <id>689</id> <edge_type>2</edge_type> <source_obj>56</source_obj> <sink_obj>52</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_593"> <id>690</id> <edge_type>1</edge_type> <source_obj>221</source_obj> <sink_obj>54</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_594"> <id>691</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>54</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_595"> <id>692</id> <edge_type>2</edge_type> <source_obj>58</source_obj> <sink_obj>55</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_596"> <id>693</id> <edge_type>2</edge_type> <source_obj>60</source_obj> <sink_obj>57</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_597"> <id>694</id> <edge_type>2</edge_type> <source_obj>212</source_obj> <sink_obj>59</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_598"> <id>807</id> <edge_type>2</edge_type> <source_obj>42</source_obj> <sink_obj>212</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_599"> <id>808</id> <edge_type>2</edge_type> <source_obj>42</source_obj> <sink_obj>114</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_600"> <id>809</id> <edge_type>2</edge_type> <source_obj>42</source_obj> <sink_obj>111</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_601"> <id>810</id> <edge_type>2</edge_type> <source_obj>42</source_obj> <sink_obj>99</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_602"> <id>811</id> <edge_type>2</edge_type> <source_obj>42</source_obj> <sink_obj>63</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_603"> <id>812</id> <edge_type>2</edge_type> <source_obj>42</source_obj> <sink_obj>45</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_604"> <id>813</id> <edge_type>2</edge_type> <source_obj>45</source_obj> <sink_obj>53</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_605"> <id>814</id> <edge_type>2</edge_type> <source_obj>45</source_obj> <sink_obj>60</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_606"> <id>815</id> <edge_type>2</edge_type> <source_obj>53</source_obj> <sink_obj>56</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_607"> <id>816</id> <edge_type>2</edge_type> <source_obj>53</source_obj> <sink_obj>58</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_608"> <id>817</id> <edge_type>2</edge_type> <source_obj>56</source_obj> <sink_obj>58</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_609"> <id>818</id> <edge_type>2</edge_type> <source_obj>58</source_obj> <sink_obj>60</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_610"> <id>819</id> <edge_type>2</edge_type> <source_obj>60</source_obj> <sink_obj>212</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_611"> <id>820</id> <edge_type>2</edge_type> <source_obj>63</source_obj> <sink_obj>67</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_612"> <id>821</id> <edge_type>2</edge_type> <source_obj>63</source_obj> <sink_obj>74</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_613"> <id>822</id> <edge_type>2</edge_type> <source_obj>67</source_obj> <sink_obj>70</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_614"> <id>823</id> <edge_type>2</edge_type> <source_obj>67</source_obj> <sink_obj>72</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_615"> <id>824</id> <edge_type>2</edge_type> <source_obj>70</source_obj> <sink_obj>72</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_616"> <id>825</id> <edge_type>2</edge_type> <source_obj>72</source_obj> <sink_obj>74</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_617"> <id>826</id> <edge_type>2</edge_type> <source_obj>74</source_obj> <sink_obj>212</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_618"> <id>827</id> <edge_type>2</edge_type> <source_obj>99</source_obj> <sink_obj>212</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_619"> <id>828</id> <edge_type>2</edge_type> <source_obj>111</source_obj> <sink_obj>212</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_620"> <id>829</id> <edge_type>2</edge_type> <source_obj>114</source_obj> <sink_obj>208</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_621"> <id>830</id> <edge_type>2</edge_type> <source_obj>114</source_obj> <sink_obj>210</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_622"> <id>831</id> <edge_type>2</edge_type> <source_obj>208</source_obj> <sink_obj>210</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_623"> <id>832</id> <edge_type>2</edge_type> <source_obj>210</source_obj> <sink_obj>212</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_624"> <id>833</id> <edge_type>4</edge_type> <source_obj>35</source_obj> <sink_obj>109</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_625"> <id>834</id> <edge_type>4</edge_type> <source_obj>35</source_obj> <sink_obj>96</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_626"> <id>835</id> <edge_type>4</edge_type> <source_obj>35</source_obj> <sink_obj>202</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_627"> <id>836</id> <edge_type>4</edge_type> <source_obj>36</source_obj> <sink_obj>150</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_628"> <id>837</id> <edge_type>4</edge_type> <source_obj>37</source_obj> <sink_obj>152</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_629"> <id>838</id> <edge_type>4</edge_type> <source_obj>38</source_obj> <sink_obj>154</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_630"> <id>839</id> <edge_type>4</edge_type> <source_obj>39</source_obj> <sink_obj>201</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_631"> <id>840</id> <edge_type>4</edge_type> <source_obj>40</source_obj> <sink_obj>206</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_632"> <id>841</id> <edge_type>4</edge_type> <source_obj>35</source_obj> <sink_obj>68</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_633"> <id>842</id> <edge_type>4</edge_type> <source_obj>35</source_obj> <sink_obj>54</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_634"> <id>843</id> <edge_type>4</edge_type> <source_obj>43</source_obj> <sink_obj>46</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_635"> <id>844</id> <edge_type>4</edge_type> <source_obj>61</source_obj> <sink_obj>64</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_636"> <id>845</id> <edge_type>4</edge_type> <source_obj>112</source_obj> <sink_obj>115</sink_obj> <is_back_edge>0</is_back_edge> </item> </edges> </cdfg> <cdfg_regions class_id="21" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="22" tracking_level="1" version="0" object_id="_637"> <mId>1</mId> <mTag>icmp_server</mTag> <mNormTag>icmp_server</mNormTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>17</count> <item_version>0</item_version> <item>42</item> <item>45</item> <item>53</item> <item>56</item> <item>58</item> <item>60</item> <item>63</item> <item>67</item> <item>70</item> <item>72</item> <item>74</item> <item>99</item> <item>111</item> <item>114</item> <item>208</item> <item>210</item> <item>212</item> </basic_blocks> <mII>1</mII> <mDepth>3</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>2</mMinLatency> <mMaxLatency>2</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> </cdfg_regions> <fsm class_id="24" tracking_level="1" version="0" object_id="_638"> <states class_id="25" tracking_level="0" version="0"> <count>3</count> <item_version>0</item_version> <item class_id="26" tracking_level="1" version="0" object_id="_639"> <id>1</id> <operations class_id="27" tracking_level="0" version="0"> <count>111</count> <item_version>0</item_version> <item class_id="28" tracking_level="1" version="0" object_id="_640"> <id>35</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_641"> <id>36</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_642"> <id>37</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_643"> <id>38</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_644"> <id>40</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_645"> <id>41</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_646"> <id>43</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_647"> <id>44</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_648"> <id>46</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_649"> <id>47</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_650"> <id>48</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_651"> <id>49</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_652"> <id>50</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_653"> <id>52</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_654"> <id>54</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_655"> <id>55</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_656"> <id>57</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_657"> <id>59</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_658"> <id>61</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_659"> <id>62</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_660"> <id>64</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_661"> <id>65</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_662"> <id>66</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_663"> <id>68</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_664"> <id>69</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_665"> <id>71</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_666"> <id>73</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_667"> <id>95</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_668"> <id>96</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_669"> <id>100</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_670"> <id>102</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_671"> <id>103</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_672"> <id>112</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_673"> <id>113</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_674"> <id>115</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_675"> <id>116</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_676"> <id>117</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_677"> <id>118</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_678"> <id>119</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_679"> <id>120</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_680"> <id>121</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_681"> <id>122</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_682"> <id>123</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_683"> <id>124</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_684"> <id>125</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_685"> <id>126</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_686"> <id>127</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_687"> <id>128</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_688"> <id>129</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_689"> <id>130</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_690"> <id>131</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_691"> <id>132</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_692"> <id>133</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_693"> <id>134</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_694"> <id>135</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_695"> <id>136</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_696"> <id>137</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_697"> <id>138</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_698"> <id>139</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_699"> <id>140</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_700"> <id>141</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_701"> <id>142</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_702"> <id>143</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_703"> <id>144</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_704"> <id>145</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_705"> <id>146</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_706"> <id>147</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_707"> <id>148</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_708"> <id>149</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_709"> <id>150</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_710"> <id>151</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_711"> <id>152</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_712"> <id>153</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_713"> <id>154</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_714"> <id>155</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_715"> <id>156</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_716"> <id>157</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_717"> <id>158</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_718"> <id>159</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_719"> <id>160</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_720"> <id>161</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_721"> <id>162</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_722"> <id>163</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_723"> <id>164</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_724"> <id>165</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_725"> <id>166</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_726"> <id>167</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_727"> <id>168</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_728"> <id>169</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_729"> <id>170</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_730"> <id>171</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_731"> <id>172</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_732"> <id>173</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_733"> <id>174</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_734"> <id>175</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_735"> <id>176</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_736"> <id>177</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_737"> <id>178</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_738"> <id>179</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_739"> <id>180</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_740"> <id>181</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_741"> <id>182</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_742"> <id>183</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_743"> <id>184</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_744"> <id>185</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_745"> <id>202</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_746"> <id>203</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_747"> <id>204</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_748"> <id>205</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_749"> <id>206</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_750"> <id>209</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_751"> <id>2</id> <operations> <count>64</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_752"> <id>20</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_753"> <id>21</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_754"> <id>22</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_755"> <id>23</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_756"> <id>24</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_757"> <id>25</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_758"> <id>26</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_759"> <id>27</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_760"> <id>28</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_761"> <id>29</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_762"> <id>30</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_763"> <id>31</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_764"> <id>32</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_765"> <id>33</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_766"> <id>34</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_767"> <id>39</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_768"> <id>51</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_769"> <id>75</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_770"> <id>76</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_771"> <id>77</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_772"> <id>78</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_773"> <id>79</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_774"> <id>80</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_775"> <id>81</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_776"> <id>82</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_777"> <id>83</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_778"> <id>84</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_779"> <id>85</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_780"> <id>86</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_781"> <id>87</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_782"> <id>88</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_783"> <id>89</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_784"> <id>90</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_785"> <id>91</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_786"> <id>92</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_787"> <id>93</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_788"> <id>94</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_789"> <id>97</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_790"> <id>100</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_791"> <id>101</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_792"> <id>104</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_793"> <id>105</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_794"> <id>106</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_795"> <id>107</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_796"> <id>108</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_797"> <id>109</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_798"> <id>110</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_799"> <id>186</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_800"> <id>187</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_801"> <id>188</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_802"> <id>189</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_803"> <id>190</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_804"> <id>191</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_805"> <id>192</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_806"> <id>193</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_807"> <id>194</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_808"> <id>195</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_809"> <id>196</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_810"> <id>197</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_811"> <id>198</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_812"> <id>199</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_813"> <id>200</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_814"> <id>201</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_815"> <id>207</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_816"> <id>3</id> <operations> <count>4</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_817"> <id>51</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_818"> <id>97</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_819"> <id>98</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_820"> <id>211</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> </states> <transitions class_id="29" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="30" tracking_level="1" version="0" object_id="_821"> <inState>1</inState> <outState>2</outState> <condition class_id="31" tracking_level="0" version="0"> <id>-1</id> <sop class_id="32" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="33" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_822"> <inState>2</inState> <outState>3</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> </transitions> </fsm> <res class_id="34" tracking_level="1" version="0" object_id="_823"> <dp_component_resource class_id="35" tracking_level="0" version="0"> <count>8</count> <item_version>0</item_version> <item class_id="36" tracking_level="0" version="0"> <first>regslice_both_m_axis_icmp_V_data_V_U (icmp_server_regslice_both)</first> <second class_id="37" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </second> </item> <item> <first>regslice_both_m_axis_icmp_V_keep_V_U (icmp_server_regslice_both)</first> <second> <count>0</count> <item_version>0</item_version> </second> </item> <item> <first>regslice_both_m_axis_icmp_V_last_V_U (icmp_server_regslice_both)</first> <second> <count>0</count> <item_version>0</item_version> </second> </item> <item> <first>regslice_both_m_axis_icmp_V_strb_V_U (icmp_server_regslice_both)</first> <second> <count>0</count> <item_version>0</item_version> </second> </item> <item> <first>regslice_both_s_axis_icmp_V_data_V_U (icmp_server_regslice_both)</first> <second> <count>0</count> <item_version>0</item_version> </second> </item> <item> <first>regslice_both_s_axis_icmp_V_keep_V_U (icmp_server_regslice_both)</first> <second> <count>0</count> <item_version>0</item_version> </second> </item> <item> <first>regslice_both_s_axis_icmp_V_last_V_U (icmp_server_regslice_both)</first> <second> <count>0</count> <item_version>0</item_version> </second> </item> <item> <first>regslice_both_s_axis_icmp_V_strb_V_U (icmp_server_regslice_both)</first> <second> <count>0</count> <item_version>0</item_version> </second> </item> </dp_component_resource> <dp_expression_resource> <count>39</count> <item_version>0</item_version> <item> <first>add_ln320_fu_680_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item class_id="38" tracking_level="0" version="0"> <first>(0P0)</first> <second>17</second> </item> <item> <first>(1P1)</first> <second>12</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>24</second> </item> </second> </item> <item> <first>add_ln45_fu_1098_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>16</second> </item> <item> <first>(1P1)</first> <second>16</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>16</second> </item> </second> </item> <item> <first>and_ln170_1_fu_1029_p2 ( and ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>and_ln170_2_fu_1034_p2 ( and ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>and_ln170_fu_1024_p2 ( and ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>ap_block_pp0_stage0_01001 ( or ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>ap_block_pp0_stage0_11001 ( or ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>ap_block_state1_pp0_stage0_iter0 ( or ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>ap_block_state2_io ( or ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>ap_block_state3_io ( or ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>ap_block_state3_pp0_stage0_iter2 ( or ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>ap_condition_276 ( and ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>ap_enable_pp0 ( xor ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>2</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>ap_predicate_op12_read_state1 ( and ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>ap_predicate_op131_write_state2 ( and ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>ap_predicate_op179_write_state3 ( and ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>ap_predicate_op24_read_state1 ( and ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>ap_predicate_op38_read_state1 ( and ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>checksumL4_o_V_fu_1104_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>16</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>16</second> </item> </second> </item> <item> <first>checksumL4_r_V_fu_1092_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>17</second> </item> <item> <first>(1P1)</first> <second>17</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>24</second> </item> </second> </item> <item> <first>checksum_fu_1130_p2 ( xor ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>16</second> </item> <item> <first>(1P1)</first> <second>2</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>16</second> </item> </second> </item> <item> <first>grp_nbreadreq_fu_212_p6 ( and ) </first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>icmpChecksumTmp_V_fu_960_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>16</second> </item> <item> <first>(1P1)</first> <second>16</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>23</second> </item> </second> </item> <item> <first>icmp_ln1049_1_fu_322_p2 ( icmp ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>8</second> </item> <item> <first>(1P1)</first> <second>4</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>11</second> </item> </second> </item> <item> <first>icmp_ln1049_2_fu_328_p2 ( icmp ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>8</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>11</second> </item> </second> </item> <item> <first>icmp_ln1049_3_fu_1018_p2 ( icmp ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>16</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>13</second> </item> </second> </item> <item> <first>icmp_ln1049_fu_1013_p2 ( icmp ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>32</second> </item> <item> <first>(1P1)</first> <second>32</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>20</second> </item> </second> </item> <item> <first>ret_10_fu_708_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>17</second> </item> <item> <first>(1P1)</first> <second>17</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>24</second> </item> </second> </item> <item> <first>ret_11_fu_722_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>17</second> </item> <item> <first>(1P1)</first> <second>17</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>24</second> </item> </second> </item> <item> <first>ret_12_fu_736_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>17</second> </item> <item> <first>(1P1)</first> <second>17</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>24</second> </item> </second> </item> <item> <first>ret_13_fu_750_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>17</second> </item> <item> <first>(1P1)</first> <second>17</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>24</second> </item> </second> </item> <item> <first>ret_14_fu_764_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>17</second> </item> <item> <first>(1P1)</first> <second>17</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>24</second> </item> </second> </item> <item> <first>ret_15_fu_778_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>18</second> </item> <item> <first>(1P1)</first> <second>18</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>25</second> </item> </second> </item> <item> <first>ret_16_fu_792_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>18</second> </item> <item> <first>(1P1)</first> <second>18</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>25</second> </item> </second> </item> <item> <first>ret_17_fu_806_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>19</second> </item> <item> <first>(1P1)</first> <second>19</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>26</second> </item> </second> </item> <item> <first>ret_18_fu_1060_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>20</second> </item> <item> <first>(1P1)</first> <second>20</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>27</second> </item> </second> </item> <item> <first>select_ln170_fu_1040_p3 ( select ) </first> <second> <count>5</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>2</second> </item> <item> <first>(2P2)</first> <second>4</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>4</second> </item> </second> </item> <item> <first>select_ln202_fu_308_p3 ( select ) </first> <second> <count>5</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>(2P2)</first> <second>2</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>select_ln819_fu_1122_p3 ( select ) </first> <second> <count>5</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>16</second> </item> <item> <first>(2P2)</first> <second>16</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>16</second> </item> </second> </item> </dp_expression_resource> <dp_fifo_resource> <count>0</count> <item_version>0</item_version> </dp_fifo_resource> <dp_memory_resource> <count>0</count> <item_version>0</item_version> </dp_memory_resource> <dp_multiplexer_resource> <count>8</count> <item_version>0</item_version> <item> <first>aiFSMState</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>4</second> </item> <item> <first>(1Bits)</first> <second>3</second> </item> <item> <first>(2Count)</first> <second>12</second> </item> <item> <first>LUT</first> <second>20</second> </item> </second> </item> <item> <first>ap_sig_allocacmp_aiFSMState_load</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>3</second> </item> <item> <first>(2Count)</first> <second>6</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>m_axis_icmp_TDATA_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>m_axis_icmp_TDATA_int_regslice</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>512</second> </item> <item> <first>(2Count)</first> <second>1536</second> </item> <item> <first>LUT</first> <second>14</second> </item> </second> </item> <item> <first>m_axis_icmp_TKEEP_int_regslice</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>64</second> </item> <item> <first>(2Count)</first> <second>192</second> </item> <item> <first>LUT</first> <second>14</second> </item> </second> </item> <item> <first>m_axis_icmp_TLAST_int_regslice</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>3</second> </item> <item> <first>LUT</first> <second>14</second> </item> </second> </item> <item> <first>m_axis_icmp_TSTRB_int_regslice</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>64</second> </item> <item> <first>(2Count)</first> <second>192</second> </item> <item> <first>LUT</first> <second>14</second> </item> </second> </item> <item> <first>s_axis_icmp_TDATA_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> </dp_multiplexer_resource> <dp_register_resource> <count>30</count> <item_version>0</item_version> <item> <first>aiFSMState</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>3</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>3</second> </item> </second> </item> <item> <first>aiFSMState_load_reg_1142</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>3</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>3</second> </item> </second> </item> <item> <first>aiFSMState_load_reg_1142_pp0_iter1_reg</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>3</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>3</second> </item> </second> </item> <item> <first>ap_CS_fsm</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>ap_enable_reg_pp0_iter1</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>ap_enable_reg_pp0_iter2</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>auxInchecksum_r_V</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>16</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>16</second> </item> </second> </item> <item> <first>icmpChecksum_V</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>17</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>17</second> </item> </second> </item> <item> <first>icmpCode_V</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>8</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>8</second> </item> </second> </item> <item> <first>icmpType_V</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>8</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>8</second> </item> </second> </item> <item> <first>icmp_ln1049_1_reg_1186</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>icmp_ln1049_2_reg_1191</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>ipDestination_V</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>32</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>32</second> </item> </second> </item> <item> <first>ipDestination_V_load_reg_1146</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>32</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>32</second> </item> </second> </item> <item> <first>myIpAddress_0_data_reg</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>32</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>32</second> </item> </second> </item> <item> <first>myIpAddress_0_vld_reg</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> </second> </item> <item> <first>prevWord_data_V</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>512</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>512</second> </item> </second> </item> <item> <first>prevWord_keep_V</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>64</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>64</second> </item> </second> </item> <item> <first>prevWord_last_V</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>prevWord_strb_V</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>64</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>64</second> </item> </second> </item> <item> <first>ret_14_reg_1200</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>17</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>17</second> </item> </second> </item> <item> <first>ret_17_reg_1205</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>19</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>19</second> </item> </second> </item> <item> <first>tmp_15_reg_1160</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>512</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>512</second> </item> </second> </item> <item> <first>tmp_16_reg_1165</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>64</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>64</second> </item> </second> </item> <item> <first>tmp_17_reg_1170</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>64</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>64</second> </item> </second> </item> <item> <first>tmp_19_reg_1175</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>tmp_7_reg_1156</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>tmp_7_reg_1156_pp0_iter1_reg</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>tmp_8_reg_1151</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>tmp_reg_1196</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> </dp_register_resource> <dp_dsp_resource> <count>8</count> <item_version>0</item_version> <item> <first>regslice_both_m_axis_icmp_V_data_V_U</first> <second> <count>0</count> <item_version>0</item_version> </second> </item> <item> <first>regslice_both_m_axis_icmp_V_keep_V_U</first> <second> <count>0</count> <item_version>0</item_version> </second> </item> <item> <first>regslice_both_m_axis_icmp_V_last_V_U</first> <second> <count>0</count> <item_version>0</item_version> </second> </item> <item> <first>regslice_both_m_axis_icmp_V_strb_V_U</first> <second> <count>0</count> <item_version>0</item_version> </second> </item> <item> <first>regslice_both_s_axis_icmp_V_data_V_U</first> <second> <count>0</count> <item_version>0</item_version> </second> </item> <item> <first>regslice_both_s_axis_icmp_V_keep_V_U</first> <second> <count>0</count> <item_version>0</item_version> </second> </item> <item> <first>regslice_both_s_axis_icmp_V_last_V_U</first> <second> <count>0</count> <item_version>0</item_version> </second> </item> <item> <first>regslice_both_s_axis_icmp_V_strb_V_U</first> <second> <count>0</count> <item_version>0</item_version> </second> </item> </dp_dsp_resource> <dp_component_map class_id="39" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_component_map> <dp_expression_map> <count>25</count> <item_version>0</item_version> <item class_id="40" tracking_level="0" version="0"> <first>add_ln320_fu_680_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>159</item> </second> </item> <item> <first>add_ln45_fu_1098_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>195</item> </second> </item> <item> <first>and_ln170_1_fu_1029_p2 ( and ) </first> <second> <count>1</count> <item_version>0</item_version> <item>106</item> </second> </item> <item> <first>and_ln170_2_fu_1034_p2 ( and ) </first> <second> <count>1</count> <item_version>0</item_version> <item>107</item> </second> </item> <item> <first>and_ln170_fu_1024_p2 ( and ) </first> <second> <count>1</count> <item_version>0</item_version> <item>105</item> </second> </item> <item> <first>checksumL4_o_V_fu_1104_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>196</item> </second> </item> <item> <first>checksumL4_r_V_fu_1092_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>194</item> </second> </item> <item> <first>checksum_fu_1130_p2 ( xor ) </first> <second> <count>1</count> <item_version>0</item_version> <item>200</item> </second> </item> <item> <first>icmpChecksumTmp_V_fu_960_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>89</item> </second> </item> <item> <first>icmp_ln1049_1_fu_322_p2 ( icmp ) </first> <second> <count>1</count> <item_version>0</item_version> <item>102</item> </second> </item> <item> <first>icmp_ln1049_2_fu_328_p2 ( icmp ) </first> <second> <count>1</count> <item_version>0</item_version> <item>103</item> </second> </item> <item> <first>icmp_ln1049_3_fu_1018_p2 ( icmp ) </first> <second> <count>1</count> <item_version>0</item_version> <item>104</item> </second> </item> <item> <first>icmp_ln1049_fu_1013_p2 ( icmp ) </first> <second> <count>1</count> <item_version>0</item_version> <item>101</item> </second> </item> <item> <first>ret_10_fu_708_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>164</item> </second> </item> <item> <first>ret_11_fu_722_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>167</item> </second> </item> <item> <first>ret_12_fu_736_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>170</item> </second> </item> <item> <first>ret_13_fu_750_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>173</item> </second> </item> <item> <first>ret_14_fu_764_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>176</item> </second> </item> <item> <first>ret_15_fu_778_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>179</item> </second> </item> <item> <first>ret_16_fu_792_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>182</item> </second> </item> <item> <first>ret_17_fu_806_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>185</item> </second> </item> <item> <first>ret_18_fu_1060_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>188</item> </second> </item> <item> <first>select_ln170_fu_1040_p3 ( select ) </first> <second> <count>1</count> <item_version>0</item_version> <item>108</item> </second> </item> <item> <first>select_ln202_fu_308_p3 ( select ) </first> <second> <count>1</count> <item_version>0</item_version> <item>95</item> </second> </item> <item> <first>select_ln819_fu_1122_p3 ( select ) </first> <second> <count>1</count> <item_version>0</item_version> <item>199</item> </second> </item> </dp_expression_map> <dp_fifo_map> <count>0</count> <item_version>0</item_version> </dp_fifo_map> <dp_memory_map> <count>0</count> <item_version>0</item_version> </dp_memory_map> </res> <node_label_latency class_id="41" tracking_level="0" version="0"> <count>161</count> <item_version>0</item_version> <item class_id="42" tracking_level="0" version="0"> <first>35</first> <second class_id="43" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>36</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>37</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>38</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>39</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>40</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>41</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>43</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>44</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>46</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>47</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>48</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>49</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>50</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>51</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>52</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>54</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>55</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>57</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>59</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>61</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>62</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>64</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>65</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>66</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>68</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>69</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>71</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>73</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>75</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>76</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>77</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>78</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>79</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>80</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>81</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>82</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>83</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>84</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>85</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>86</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>87</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>88</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>89</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>90</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>91</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>92</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>93</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>94</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>95</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>96</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>97</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>98</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>100</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>101</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>102</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>103</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>104</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>105</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>106</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>107</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>108</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>109</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>110</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>112</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>113</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>115</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>116</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>117</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>118</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>119</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>120</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>121</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>122</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>123</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>124</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>125</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>126</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>127</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>128</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>129</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>130</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>131</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>132</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>133</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>134</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>135</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>136</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>137</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>138</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>139</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>140</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>141</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>142</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>143</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>144</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>145</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>146</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>147</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>148</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>149</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>150</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>151</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>152</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>153</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>154</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>155</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>156</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>157</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>158</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>159</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>160</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>161</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>162</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>163</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>164</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>165</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>166</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>167</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>168</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>169</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>170</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>171</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>172</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>173</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>174</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>175</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>176</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>177</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>178</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>179</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>180</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>181</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>182</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>183</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>184</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>185</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>186</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>187</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>188</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>189</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>190</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>191</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>192</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>193</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>194</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>195</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>196</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>197</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>198</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>199</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>200</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>201</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>202</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>203</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>204</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>205</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>206</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>207</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>209</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>211</first> <second> <first>2</first> <second>0</second> </second> </item> </node_label_latency> <bblk_ent_exit class_id="44" tracking_level="0" version="0"> <count>17</count> <item_version>0</item_version> <item class_id="45" tracking_level="0" version="0"> <first>42</first> <second class_id="46" tracking_level="0" version="0"> <first>0</first> <second>1</second> </second> </item> <item> <first>45</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>53</first> <second> <first>0</first> <second>2</second> </second> </item> <item> <first>56</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>58</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>60</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>63</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>67</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>70</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>72</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>74</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>99</first> <second> <first>0</first> <second>2</second> </second> </item> <item> <first>111</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>114</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>208</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>210</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>212</first> <second> <first>2</first> <second>2</second> </second> </item> </bblk_ent_exit> <regions class_id="47" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="48" tracking_level="1" version="0" object_id="_824"> <region_name>icmp_server</region_name> <basic_blocks> <count>17</count> <item_version>0</item_version> <item>42</item> <item>45</item> <item>53</item> <item>56</item> <item>58</item> <item>60</item> <item>63</item> <item>67</item> <item>70</item> <item>72</item> <item>74</item> <item>99</item> <item>111</item> <item>114</item> <item>208</item> <item>210</item> <item>212</item> </basic_blocks> <nodes> <count>0</count> <item_version>0</item_version> </nodes> <anchor_node>-1</anchor_node> <region_type>8</region_type> <interval>1</interval> <pipe_depth>3</pipe_depth> <mDBIIViolationVec class_id="49" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </mDBIIViolationVec> </item> </regions> <dp_fu_nodes class_id="50" tracking_level="0" version="0"> <count>134</count> <item_version>0</item_version> <item class_id="51" tracking_level="0" version="0"> <first>212</first> <second> <count>3</count> <item_version>0</item_version> <item>43</item> <item>61</item> <item>112</item> </second> </item> <item> <first>226</first> <second> <count>3</count> <item_version>0</item_version> <item>46</item> <item>64</item> <item>115</item> </second> </item> <item> <first>238</first> <second> <count>2</count> <item_version>0</item_version> <item>100</item> <item>100</item> </second> </item> <item> <first>244</first> <second> <count>4</count> <item_version>0</item_version> <item>51</item> <item>51</item> <item>97</item> <item>97</item> </second> </item> <item> <first>260</first> <second> <count>2</count> <item_version>0</item_version> <item>47</item> <item>116</item> </second> </item> <item> <first>264</first> <second> <count>2</count> <item_version>0</item_version> <item>48</item> <item>117</item> </second> </item> <item> <first>268</first> <second> <count>2</count> <item_version>0</item_version> <item>49</item> <item>118</item> </second> </item> <item> <first>272</first> <second> <count>3</count> <item_version>0</item_version> <item>50</item> <item>65</item> <item>119</item> </second> </item> <item> <first>276</first> <second> <count>1</count> <item_version>0</item_version> <item>35</item> </second> </item> <item> <first>280</first> <second> <count>1</count> <item_version>0</item_version> <item>36</item> </second> </item> <item> <first>284</first> <second> <count>1</count> <item_version>0</item_version> <item>37</item> </second> </item> <item> <first>288</first> <second> <count>1</count> <item_version>0</item_version> <item>38</item> </second> </item> <item> <first>292</first> <second> <count>1</count> <item_version>0</item_version> <item>40</item> </second> </item> <item> <first>296</first> <second> <count>1</count> <item_version>0</item_version> <item>54</item> </second> </item> <item> <first>302</first> <second> <count>1</count> <item_version>0</item_version> <item>68</item> </second> </item> <item> <first>308</first> <second> <count>1</count> <item_version>0</item_version> <item>95</item> </second> </item> <item> <first>316</first> <second> <count>1</count> <item_version>0</item_version> <item>96</item> </second> </item> <item> <first>322</first> <second> <count>1</count> <item_version>0</item_version> <item>102</item> </second> </item> <item> <first>328</first> <second> <count>1</count> <item_version>0</item_version> <item>103</item> </second> </item> <item> <first>334</first> <second> <count>1</count> <item_version>0</item_version> <item>120</item> </second> </item> <item> <first>338</first> <second> <count>1</count> <item_version>0</item_version> <item>121</item> </second> </item> <item> <first>348</first> <second> <count>1</count> <item_version>0</item_version> <item>122</item> </second> </item> <item> <first>356</first> <second> <count>1</count> <item_version>0</item_version> <item>123</item> </second> </item> <item> <first>366</first> <second> <count>1</count> <item_version>0</item_version> <item>124</item> </second> </item> <item> <first>376</first> <second> <count>1</count> <item_version>0</item_version> <item>125</item> </second> </item> <item> <first>384</first> <second> <count>1</count> <item_version>0</item_version> <item>126</item> </second> </item> <item> <first>394</first> <second> <count>1</count> <item_version>0</item_version> <item>127</item> </second> </item> <item> <first>404</first> <second> <count>1</count> <item_version>0</item_version> <item>128</item> </second> </item> <item> <first>412</first> <second> <count>1</count> <item_version>0</item_version> <item>129</item> </second> </item> <item> <first>422</first> <second> <count>1</count> <item_version>0</item_version> <item>130</item> </second> </item> <item> <first>432</first> <second> <count>1</count> <item_version>0</item_version> <item>131</item> </second> </item> <item> <first>440</first> <second> <count>1</count> <item_version>0</item_version> <item>132</item> </second> </item> <item> <first>450</first> <second> <count>1</count> <item_version>0</item_version> <item>133</item> </second> </item> <item> <first>460</first> <second> <count>1</count> <item_version>0</item_version> <item>134</item> </second> </item> <item> <first>468</first> <second> <count>1</count> <item_version>0</item_version> <item>135</item> </second> </item> <item> <first>478</first> <second> <count>1</count> <item_version>0</item_version> <item>136</item> </second> </item> <item> <first>488</first> <second> <count>1</count> <item_version>0</item_version> <item>137</item> </second> </item> <item> <first>496</first> <second> <count>1</count> <item_version>0</item_version> <item>138</item> </second> </item> <item> <first>506</first> <second> <count>1</count> <item_version>0</item_version> <item>139</item> </second> </item> <item> <first>516</first> <second> <count>1</count> <item_version>0</item_version> <item>140</item> </second> </item> <item> <first>524</first> <second> <count>1</count> <item_version>0</item_version> <item>141</item> </second> </item> <item> <first>534</first> <second> <count>1</count> <item_version>0</item_version> <item>142</item> </second> </item> <item> <first>544</first> <second> <count>1</count> <item_version>0</item_version> <item>143</item> </second> </item> <item> <first>552</first> <second> <count>1</count> <item_version>0</item_version> <item>144</item> </second> </item> <item> <first>562</first> <second> <count>1</count> <item_version>0</item_version> <item>145</item> </second> </item> <item> <first>572</first> <second> <count>1</count> <item_version>0</item_version> <item>146</item> </second> </item> <item> <first>580</first> <second> <count>1</count> <item_version>0</item_version> <item>147</item> </second> </item> <item> <first>590</first> <second> <count>1</count> <item_version>0</item_version> <item>148</item> </second> </item> <item> <first>600</first> <second> <count>1</count> <item_version>0</item_version> <item>149</item> </second> </item> <item> <first>610</first> <second> <count>1</count> <item_version>0</item_version> <item>150</item> </second> </item> <item> <first>616</first> <second> <count>1</count> <item_version>0</item_version> <item>151</item> </second> </item> <item> <first>626</first> <second> <count>1</count> <item_version>0</item_version> <item>152</item> </second> </item> <item> <first>632</first> <second> <count>1</count> <item_version>0</item_version> <item>153</item> </second> </item> <item> <first>642</first> <second> <count>1</count> <item_version>0</item_version> <item>154</item> </second> </item> <item> <first>648</first> <second> <count>1</count> <item_version>0</item_version> <item>155</item> </second> </item> <item> <first>658</first> <second> <count>1</count> <item_version>0</item_version> <item>156</item> </second> </item> <item> <first>668</first> <second> <count>1</count> <item_version>0</item_version> <item>157</item> </second> </item> <item> <first>676</first> <second> <count>1</count> <item_version>0</item_version> <item>158</item> </second> </item> <item> <first>680</first> <second> <count>1</count> <item_version>0</item_version> <item>159</item> </second> </item> <item> <first>686</first> <second> <count>1</count> <item_version>0</item_version> <item>160</item> </second> </item> <item> <first>692</first> <second> <count>1</count> <item_version>0</item_version> <item>161</item> </second> </item> <item> <first>700</first> <second> <count>1</count> <item_version>0</item_version> <item>162</item> </second> </item> <item> <first>704</first> <second> <count>1</count> <item_version>0</item_version> <item>163</item> </second> </item> <item> <first>708</first> <second> <count>1</count> <item_version>0</item_version> <item>164</item> </second> </item> <item> <first>714</first> <second> <count>1</count> <item_version>0</item_version> <item>165</item> </second> </item> <item> <first>718</first> <second> <count>1</count> <item_version>0</item_version> <item>166</item> </second> </item> <item> <first>722</first> <second> <count>1</count> <item_version>0</item_version> <item>167</item> </second> </item> <item> <first>728</first> <second> <count>1</count> <item_version>0</item_version> <item>168</item> </second> </item> <item> <first>732</first> <second> <count>1</count> <item_version>0</item_version> <item>169</item> </second> </item> <item> <first>736</first> <second> <count>1</count> <item_version>0</item_version> <item>170</item> </second> </item> <item> <first>742</first> <second> <count>1</count> <item_version>0</item_version> <item>171</item> </second> </item> <item> <first>746</first> <second> <count>1</count> <item_version>0</item_version> <item>172</item> </second> </item> <item> <first>750</first> <second> <count>1</count> <item_version>0</item_version> <item>173</item> </second> </item> <item> <first>756</first> <second> <count>1</count> <item_version>0</item_version> <item>174</item> </second> </item> <item> <first>760</first> <second> <count>1</count> <item_version>0</item_version> <item>175</item> </second> </item> <item> <first>764</first> <second> <count>1</count> <item_version>0</item_version> <item>176</item> </second> </item> <item> <first>770</first> <second> <count>1</count> <item_version>0</item_version> <item>177</item> </second> </item> <item> <first>774</first> <second> <count>1</count> <item_version>0</item_version> <item>178</item> </second> </item> <item> <first>778</first> <second> <count>1</count> <item_version>0</item_version> <item>179</item> </second> </item> <item> <first>784</first> <second> <count>1</count> <item_version>0</item_version> <item>180</item> </second> </item> <item> <first>788</first> <second> <count>1</count> <item_version>0</item_version> <item>181</item> </second> </item> <item> <first>792</first> <second> <count>1</count> <item_version>0</item_version> <item>182</item> </second> </item> <item> <first>798</first> <second> <count>1</count> <item_version>0</item_version> <item>183</item> </second> </item> <item> <first>802</first> <second> <count>1</count> <item_version>0</item_version> <item>184</item> </second> </item> <item> <first>806</first> <second> <count>1</count> <item_version>0</item_version> <item>185</item> </second> </item> <item> <first>812</first> <second> <count>1</count> <item_version>0</item_version> <item>202</item> </second> </item> <item> <first>818</first> <second> <count>1</count> <item_version>0</item_version> <item>203</item> </second> </item> <item> <first>824</first> <second> <count>1</count> <item_version>0</item_version> <item>204</item> </second> </item> <item> <first>830</first> <second> <count>1</count> <item_version>0</item_version> <item>205</item> </second> </item> <item> <first>836</first> <second> <count>1</count> <item_version>0</item_version> <item>206</item> </second> </item> <item> <first>842</first> <second> <count>1</count> <item_version>0</item_version> <item>39</item> </second> </item> <item> <first>846</first> <second> <count>1</count> <item_version>0</item_version> <item>75</item> </second> </item> <item> <first>850</first> <second> <count>1</count> <item_version>0</item_version> <item>76</item> </second> </item> <item> <first>855</first> <second> <count>1</count> <item_version>0</item_version> <item>77</item> </second> </item> <item> <first>860</first> <second> <count>1</count> <item_version>0</item_version> <item>78</item> </second> </item> <item> <first>872</first> <second> <count>1</count> <item_version>0</item_version> <item>79</item> </second> </item> <item> <first>884</first> <second> <count>1</count> <item_version>0</item_version> <item>80</item> </second> </item> <item> <first>896</first> <second> <count>1</count> <item_version>0</item_version> <item>81</item> </second> </item> <item> <first>906</first> <second> <count>1</count> <item_version>0</item_version> <item>82</item> </second> </item> <item> <first>918</first> <second> <count>1</count> <item_version>0</item_version> <item>83</item> </second> </item> <item> <first>928</first> <second> <count>1</count> <item_version>0</item_version> <item>84</item> </second> </item> <item> <first>940</first> <second> <count>1</count> <item_version>0</item_version> <item>85</item> </second> </item> <item> <first>944</first> <second> <count>1</count> <item_version>0</item_version> <item>86</item> </second> </item> <item> <first>948</first> <second> <count>1</count> <item_version>0</item_version> <item>87</item> </second> </item> <item> <first>956</first> <second> <count>1</count> <item_version>0</item_version> <item>88</item> </second> </item> <item> <first>960</first> <second> <count>1</count> <item_version>0</item_version> <item>89</item> </second> </item> <item> <first>966</first> <second> <count>1</count> <item_version>0</item_version> <item>90</item> </second> </item> <item> <first>978</first> <second> <count>1</count> <item_version>0</item_version> <item>91</item> </second> </item> <item> <first>988</first> <second> <count>1</count> <item_version>0</item_version> <item>92</item> </second> </item> <item> <first>992</first> <second> <count>1</count> <item_version>0</item_version> <item>93</item> </second> </item> <item> <first>1000</first> <second> <count>1</count> <item_version>0</item_version> <item>94</item> </second> </item> <item> <first>1013</first> <second> <count>1</count> <item_version>0</item_version> <item>101</item> </second> </item> <item> <first>1018</first> <second> <count>1</count> <item_version>0</item_version> <item>104</item> </second> </item> <item> <first>1024</first> <second> <count>1</count> <item_version>0</item_version> <item>105</item> </second> </item> <item> <first>1029</first> <second> <count>1</count> <item_version>0</item_version> <item>106</item> </second> </item> <item> <first>1034</first> <second> <count>1</count> <item_version>0</item_version> <item>107</item> </second> </item> <item> <first>1040</first> <second> <count>1</count> <item_version>0</item_version> <item>108</item> </second> </item> <item> <first>1048</first> <second> <count>1</count> <item_version>0</item_version> <item>109</item> </second> </item> <item> <first>1054</first> <second> <count>1</count> <item_version>0</item_version> <item>186</item> </second> </item> <item> <first>1057</first> <second> <count>1</count> <item_version>0</item_version> <item>187</item> </second> </item> <item> <first>1060</first> <second> <count>1</count> <item_version>0</item_version> <item>188</item> </second> </item> <item> <first>1066</first> <second> <count>1</count> <item_version>0</item_version> <item>189</item> </second> </item> <item> <first>1070</first> <second> <count>1</count> <item_version>0</item_version> <item>190</item> </second> </item> <item> <first>1080</first> <second> <count>1</count> <item_version>0</item_version> <item>191</item> </second> </item> <item> <first>1084</first> <second> <count>1</count> <item_version>0</item_version> <item>192</item> </second> </item> <item> <first>1088</first> <second> <count>1</count> <item_version>0</item_version> <item>193</item> </second> </item> <item> <first>1092</first> <second> <count>1</count> <item_version>0</item_version> <item>194</item> </second> </item> <item> <first>1098</first> <second> <count>1</count> <item_version>0</item_version> <item>195</item> </second> </item> <item> <first>1104</first> <second> <count>1</count> <item_version>0</item_version> <item>196</item> </second> </item> <item> <first>1110</first> <second> <count>1</count> <item_version>0</item_version> <item>197</item> </second> </item> <item> <first>1118</first> <second> <count>1</count> <item_version>0</item_version> <item>198</item> </second> </item> <item> <first>1122</first> <second> <count>1</count> <item_version>0</item_version> <item>199</item> </second> </item> <item> <first>1130</first> <second> <count>1</count> <item_version>0</item_version> <item>200</item> </second> </item> <item> <first>1136</first> <second> <count>1</count> <item_version>0</item_version> <item>201</item> </second> </item> </dp_fu_nodes> <dp_fu_nodes_expression class_id="53" tracking_level="0" version="0"> <count>106</count> <item_version>0</item_version> <item class_id="54" tracking_level="0" version="0"> <first>add_ln320_fu_680</first> <second> <count>1</count> <item_version>0</item_version> <item>159</item> </second> </item> <item> <first>add_ln45_fu_1098</first> <second> <count>1</count> <item_version>0</item_version> <item>195</item> </second> </item> <item> <first>and_ln170_1_fu_1029</first> <second> <count>1</count> <item_version>0</item_version> <item>106</item> </second> </item> <item> <first>and_ln170_2_fu_1034</first> <second> <count>1</count> <item_version>0</item_version> <item>107</item> </second> </item> <item> <first>and_ln170_fu_1024</first> <second> <count>1</count> <item_version>0</item_version> <item>105</item> </second> </item> <item> <first>checksumL0_V_10_fu_572</first> <second> <count>1</count> <item_version>0</item_version> <item>146</item> </second> </item> <item> <first>checksumL0_V_11_fu_544</first> <second> <count>1</count> <item_version>0</item_version> <item>143</item> </second> </item> <item> <first>checksumL0_V_12_fu_516</first> <second> <count>1</count> <item_version>0</item_version> <item>140</item> </second> </item> <item> <first>checksumL0_V_13_fu_488</first> <second> <count>1</count> <item_version>0</item_version> <item>137</item> </second> </item> <item> <first>checksumL0_V_14_fu_460</first> <second> <count>1</count> <item_version>0</item_version> <item>134</item> </second> </item> <item> <first>checksumL0_V_15_fu_432</first> <second> <count>1</count> <item_version>0</item_version> <item>131</item> </second> </item> <item> <first>checksumL0_V_16_fu_404</first> <second> <count>1</count> <item_version>0</item_version> <item>128</item> </second> </item> <item> <first>checksumL0_V_17_fu_376</first> <second> <count>1</count> <item_version>0</item_version> <item>125</item> </second> </item> <item> <first>checksumL0_V_18_fu_348</first> <second> <count>1</count> <item_version>0</item_version> <item>122</item> </second> </item> <item> <first>checksumL0_V_fu_692</first> <second> <count>1</count> <item_version>0</item_version> <item>161</item> </second> </item> <item> <first>checksumL4_o_V_fu_1104</first> <second> <count>1</count> <item_version>0</item_version> <item>196</item> </second> </item> <item> <first>checksumL4_r_V_fu_1092</first> <second> <count>1</count> <item_version>0</item_version> <item>194</item> </second> </item> <item> <first>checksum_fu_1130</first> <second> <count>1</count> <item_version>0</item_version> <item>200</item> </second> </item> <item> <first>grp_fu_260</first> <second> <count>2</count> <item_version>0</item_version> <item>47</item> <item>116</item> </second> </item> <item> <first>grp_fu_264</first> <second> <count>2</count> <item_version>0</item_version> <item>48</item> <item>117</item> </second> </item> <item> <first>grp_fu_268</first> <second> <count>2</count> <item_version>0</item_version> <item>49</item> <item>118</item> </second> </item> <item> <first>grp_fu_272</first> <second> <count>3</count> <item_version>0</item_version> <item>50</item> <item>65</item> <item>119</item> </second> </item> <item> <first>icmpChecksumTmp_V_fu_960</first> <second> <count>1</count> <item_version>0</item_version> <item>89</item> </second> </item> <item> <first>icmp_ln1049_1_fu_322</first> <second> <count>1</count> <item_version>0</item_version> <item>102</item> </second> </item> <item> <first>icmp_ln1049_2_fu_328</first> <second> <count>1</count> <item_version>0</item_version> <item>103</item> </second> </item> <item> <first>icmp_ln1049_3_fu_1018</first> <second> <count>1</count> <item_version>0</item_version> <item>104</item> </second> </item> <item> <first>icmp_ln1049_fu_1013</first> <second> <count>1</count> <item_version>0</item_version> <item>101</item> </second> </item> <item> <first>p_Result_10_fu_356</first> <second> <count>1</count> <item_version>0</item_version> <item>123</item> </second> </item> <item> <first>p_Result_11_fu_366</first> <second> <count>1</count> <item_version>0</item_version> <item>124</item> </second> </item> <item> <first>p_Result_12_fu_384</first> <second> <count>1</count> <item_version>0</item_version> <item>126</item> </second> </item> <item> <first>p_Result_13_fu_394</first> <second> <count>1</count> <item_version>0</item_version> <item>127</item> </second> </item> <item> <first>p_Result_14_fu_412</first> <second> <count>1</count> <item_version>0</item_version> <item>129</item> </second> </item> <item> <first>p_Result_15_fu_422</first> <second> <count>1</count> <item_version>0</item_version> <item>130</item> </second> </item> <item> <first>p_Result_16_fu_440</first> <second> <count>1</count> <item_version>0</item_version> <item>132</item> </second> </item> <item> <first>p_Result_17_fu_450</first> <second> <count>1</count> <item_version>0</item_version> <item>133</item> </second> </item> <item> <first>p_Result_18_fu_468</first> <second> <count>1</count> <item_version>0</item_version> <item>135</item> </second> </item> <item> <first>p_Result_19_fu_478</first> <second> <count>1</count> <item_version>0</item_version> <item>136</item> </second> </item> <item> <first>p_Result_1_fu_860</first> <second> <count>1</count> <item_version>0</item_version> <item>78</item> </second> </item> <item> <first>p_Result_20_fu_496</first> <second> <count>1</count> <item_version>0</item_version> <item>138</item> </second> </item> <item> <first>p_Result_21_fu_506</first> <second> <count>1</count> <item_version>0</item_version> <item>139</item> </second> </item> <item> <first>p_Result_22_fu_524</first> <second> <count>1</count> <item_version>0</item_version> <item>141</item> </second> </item> <item> <first>p_Result_23_fu_534</first> <second> <count>1</count> <item_version>0</item_version> <item>142</item> </second> </item> <item> <first>p_Result_24_fu_552</first> <second> <count>1</count> <item_version>0</item_version> <item>144</item> </second> </item> <item> <first>p_Result_25_fu_562</first> <second> <count>1</count> <item_version>0</item_version> <item>145</item> </second> </item> <item> <first>p_Result_26_fu_580</first> <second> <count>1</count> <item_version>0</item_version> <item>147</item> </second> </item> <item> <first>p_Result_27_fu_590</first> <second> <count>1</count> <item_version>0</item_version> <item>148</item> </second> </item> <item> <first>p_Result_28_fu_600</first> <second> <count>1</count> <item_version>0</item_version> <item>149</item> </second> </item> <item> <first>p_Result_29_fu_616</first> <second> <count>1</count> <item_version>0</item_version> <item>151</item> </second> </item> <item> <first>p_Result_2_fu_918</first> <second> <count>1</count> <item_version>0</item_version> <item>83</item> </second> </item> <item> <first>p_Result_30_fu_632</first> <second> <count>1</count> <item_version>0</item_version> <item>153</item> </second> </item> <item> <first>p_Result_31_fu_648</first> <second> <count>1</count> <item_version>0</item_version> <item>155</item> </second> </item> <item> <first>p_Result_32_fu_658</first> <second> <count>1</count> <item_version>0</item_version> <item>156</item> </second> </item> <item> <first>p_Result_33_fu_1070</first> <second> <count>1</count> <item_version>0</item_version> <item>190</item> </second> </item> <item> <first>p_Result_34_fu_966</first> <second> <count>1</count> <item_version>0</item_version> <item>90</item> </second> </item> <item> <first>p_Result_35_fu_1000</first> <second> <count>1</count> <item_version>0</item_version> <item>94</item> </second> </item> <item> <first>p_Result_3_fu_872</first> <second> <count>1</count> <item_version>0</item_version> <item>79</item> </second> </item> <item> <first>p_Result_4_fu_884</first> <second> <count>1</count> <item_version>0</item_version> <item>80</item> </second> </item> <item> <first>p_Result_5_fu_906</first> <second> <count>1</count> <item_version>0</item_version> <item>82</item> </second> </item> <item> <first>p_Result_6_fu_978</first> <second> <count>1</count> <item_version>0</item_version> <item>91</item> </second> </item> <item> <first>p_Result_7_fu_928</first> <second> <count>1</count> <item_version>0</item_version> <item>84</item> </second> </item> <item> <first>p_Result_8_fu_944</first> <second> <count>1</count> <item_version>0</item_version> <item>86</item> </second> </item> <item> <first>p_Result_9_fu_338</first> <second> <count>1</count> <item_version>0</item_version> <item>121</item> </second> </item> <item> <first>p_Result_s_26_fu_896</first> <second> <count>1</count> <item_version>0</item_version> <item>81</item> </second> </item> <item> <first>p_Result_s_fu_1110</first> <second> <count>1</count> <item_version>0</item_version> <item>197</item> </second> </item> <item> <first>ret_10_fu_708</first> <second> <count>1</count> <item_version>0</item_version> <item>164</item> </second> </item> <item> <first>ret_11_fu_722</first> <second> <count>1</count> <item_version>0</item_version> <item>167</item> </second> </item> <item> <first>ret_12_fu_736</first> <second> <count>1</count> <item_version>0</item_version> <item>170</item> </second> </item> <item> <first>ret_13_fu_750</first> <second> <count>1</count> <item_version>0</item_version> <item>173</item> </second> </item> <item> <first>ret_14_fu_764</first> <second> <count>1</count> <item_version>0</item_version> <item>176</item> </second> </item> <item> <first>ret_15_fu_778</first> <second> <count>1</count> <item_version>0</item_version> <item>179</item> </second> </item> <item> <first>ret_16_fu_792</first> <second> <count>1</count> <item_version>0</item_version> <item>182</item> </second> </item> <item> <first>ret_17_fu_806</first> <second> <count>1</count> <item_version>0</item_version> <item>185</item> </second> </item> <item> <first>ret_18_fu_1060</first> <second> <count>1</count> <item_version>0</item_version> <item>188</item> </second> </item> <item> <first>select_ln170_fu_1040</first> <second> <count>1</count> <item_version>0</item_version> <item>108</item> </second> </item> <item> <first>select_ln202_fu_308</first> <second> <count>1</count> <item_version>0</item_version> <item>95</item> </second> </item> <item> <first>select_ln819_fu_1122</first> <second> <count>1</count> <item_version>0</item_version> <item>199</item> </second> </item> <item> <first>tmp_1_fu_992</first> <second> <count>1</count> <item_version>0</item_version> <item>93</item> </second> </item> <item> <first>tmp_2_fu_948</first> <second> <count>1</count> <item_version>0</item_version> <item>87</item> </second> </item> <item> <first>tmp_s_fu_668</first> <second> <count>1</count> <item_version>0</item_version> <item>157</item> </second> </item> <item> <first>trunc_ln357_fu_1066</first> <second> <count>1</count> <item_version>0</item_version> <item>189</item> </second> </item> <item> <first>trunc_ln649_fu_1118</first> <second> <count>1</count> <item_version>0</item_version> <item>198</item> </second> </item> <item> <first>trunc_ln674_1_fu_334</first> <second> <count>1</count> <item_version>0</item_version> <item>120</item> </second> </item> <item> <first>trunc_ln674_fu_988</first> <second> <count>1</count> <item_version>0</item_version> <item>92</item> </second> </item> <item> <first>zext_ln217_1_fu_1084</first> <second> <count>1</count> <item_version>0</item_version> <item>192</item> </second> </item> <item> <first>zext_ln217_2_fu_956</first> <second> <count>1</count> <item_version>0</item_version> <item>88</item> </second> </item> <item> <first>zext_ln217_3_fu_1088</first> <second> <count>1</count> <item_version>0</item_version> <item>193</item> </second> </item> <item> <first>zext_ln217_fu_1080</first> <second> <count>1</count> <item_version>0</item_version> <item>191</item> </second> </item> <item> <first>zext_ln225_10_fu_770</first> <second> <count>1</count> <item_version>0</item_version> <item>177</item> </second> </item> <item> <first>zext_ln225_11_fu_774</first> <second> <count>1</count> <item_version>0</item_version> <item>178</item> </second> </item> <item> <first>zext_ln225_12_fu_784</first> <second> <count>1</count> <item_version>0</item_version> <item>180</item> </second> </item> <item> <first>zext_ln225_13_fu_788</first> <second> <count>1</count> <item_version>0</item_version> <item>181</item> </second> </item> <item> <first>zext_ln225_14_fu_798</first> <second> <count>1</count> <item_version>0</item_version> <item>183</item> </second> </item> <item> <first>zext_ln225_15_fu_802</first> <second> <count>1</count> <item_version>0</item_version> <item>184</item> </second> </item> <item> <first>zext_ln225_16_fu_1054</first> <second> <count>1</count> <item_version>0</item_version> <item>186</item> </second> </item> <item> <first>zext_ln225_17_fu_1057</first> <second> <count>1</count> <item_version>0</item_version> <item>187</item> </second> </item> <item> <first>zext_ln225_1_fu_704</first> <second> <count>1</count> <item_version>0</item_version> <item>163</item> </second> </item> <item> <first>zext_ln225_2_fu_714</first> <second> <count>1</count> <item_version>0</item_version> <item>165</item> </second> </item> <item> <first>zext_ln225_3_fu_718</first> <second> <count>1</count> <item_version>0</item_version> <item>166</item> </second> </item> <item> <first>zext_ln225_4_fu_728</first> <second> <count>1</count> <item_version>0</item_version> <item>168</item> </second> </item> <item> <first>zext_ln225_5_fu_732</first> <second> <count>1</count> <item_version>0</item_version> <item>169</item> </second> </item> <item> <first>zext_ln225_6_fu_742</first> <second> <count>1</count> <item_version>0</item_version> <item>171</item> </second> </item> <item> <first>zext_ln225_7_fu_746</first> <second> <count>1</count> <item_version>0</item_version> <item>172</item> </second> </item> <item> <first>zext_ln225_8_fu_756</first> <second> <count>1</count> <item_version>0</item_version> <item>174</item> </second> </item> <item> <first>zext_ln225_9_fu_760</first> <second> <count>1</count> <item_version>0</item_version> <item>175</item> </second> </item> <item> <first>zext_ln225_fu_700</first> <second> <count>1</count> <item_version>0</item_version> <item>162</item> </second> </item> <item> <first>zext_ln320_fu_676</first> <second> <count>1</count> <item_version>0</item_version> <item>158</item> </second> </item> </dp_fu_nodes_expression> <dp_fu_nodes_module> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_module> <dp_fu_nodes_io> <count>28</count> <item_version>0</item_version> <item> <first>aiFSMState_load_load_fu_276</first> <second> <count>1</count> <item_version>0</item_version> <item>35</item> </second> </item> <item> <first>auxInchecksum_r_V_load_load_fu_842</first> <second> <count>1</count> <item_version>0</item_version> <item>39</item> </second> </item> <item> <first>currWord_data_V_load_fu_846</first> <second> <count>1</count> <item_version>0</item_version> <item>75</item> </second> </item> <item> <first>grp_nbreadreq_fu_212</first> <second> <count>3</count> <item_version>0</item_version> <item>43</item> <item>61</item> <item>112</item> </second> </item> <item> <first>grp_read_fu_226</first> <second> <count>3</count> <item_version>0</item_version> <item>46</item> <item>64</item> <item>115</item> </second> </item> <item> <first>grp_read_fu_238</first> <second> <count>2</count> <item_version>0</item_version> <item>100</item> <item>100</item> </second> </item> <item> <first>grp_write_fu_244</first> <second> <count>4</count> <item_version>0</item_version> <item>51</item> <item>51</item> <item>97</item> <item>97</item> </second> </item> <item> <first>icmpCode_V_load_load_fu_288</first> <second> <count>1</count> <item_version>0</item_version> <item>38</item> </second> </item> <item> <first>icmpType_V_load_load_fu_284</first> <second> <count>1</count> <item_version>0</item_version> <item>37</item> </second> </item> <item> <first>ipDestination_V_load_load_fu_280</first> <second> <count>1</count> <item_version>0</item_version> <item>36</item> </second> </item> <item> <first>p_Val2_5_load_fu_940</first> <second> <count>1</count> <item_version>0</item_version> <item>85</item> </second> </item> <item> <first>store_ln156_store_fu_610</first> <second> <count>1</count> <item_version>0</item_version> <item>150</item> </second> </item> <item> <first>store_ln157_store_fu_626</first> <second> <count>1</count> <item_version>0</item_version> <item>152</item> </second> </item> <item> <first>store_ln158_store_fu_642</first> <second> <count>1</count> <item_version>0</item_version> <item>154</item> </second> </item> <item> <first>store_ln160_store_fu_686</first> <second> <count>1</count> <item_version>0</item_version> <item>160</item> </second> </item> <item> <first>store_ln161_store_fu_1136</first> <second> <count>1</count> <item_version>0</item_version> <item>201</item> </second> </item> <item> <first>store_ln163_store_fu_812</first> <second> <count>1</count> <item_version>0</item_version> <item>202</item> </second> </item> <item> <first>store_ln165_store_fu_818</first> <second> <count>1</count> <item_version>0</item_version> <item>203</item> </second> </item> <item> <first>store_ln165_store_fu_824</first> <second> <count>1</count> <item_version>0</item_version> <item>204</item> </second> </item> <item> <first>store_ln165_store_fu_830</first> <second> <count>1</count> <item_version>0</item_version> <item>205</item> </second> </item> <item> <first>store_ln165_store_fu_836</first> <second> <count>1</count> <item_version>0</item_version> <item>206</item> </second> </item> <item> <first>store_ln171_store_fu_1048</first> <second> <count>1</count> <item_version>0</item_version> <item>109</item> </second> </item> <item> <first>store_ln202_store_fu_316</first> <second> <count>1</count> <item_version>0</item_version> <item>96</item> </second> </item> <item> <first>store_ln213_store_fu_302</first> <second> <count>1</count> <item_version>0</item_version> <item>68</item> </second> </item> <item> <first>store_ln222_store_fu_296</first> <second> <count>1</count> <item_version>0</item_version> <item>54</item> </second> </item> <item> <first>tmp_4_load_fu_850</first> <second> <count>1</count> <item_version>0</item_version> <item>76</item> </second> </item> <item> <first>tmp_5_load_fu_855</first> <second> <count>1</count> <item_version>0</item_version> <item>77</item> </second> </item> <item> <first>tmp_8_load_fu_292</first> <second> <count>1</count> <item_version>0</item_version> <item>40</item> </second> </item> </dp_fu_nodes_io> <return_ports> <count>0</count> <item_version>0</item_version> </return_ports> <dp_mem_port_nodes class_id="55" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_mem_port_nodes> <dp_reg_nodes> <count>16</count> <item_version>0</item_version> <item> <first>1142</first> <second> <count>1</count> <item_version>0</item_version> <item>35</item> </second> </item> <item> <first>1146</first> <second> <count>1</count> <item_version>0</item_version> <item>36</item> </second> </item> <item> <first>1151</first> <second> <count>1</count> <item_version>0</item_version> <item>40</item> </second> </item> <item> <first>1156</first> <second> <count>1</count> <item_version>0</item_version> <item>43</item> </second> </item> <item> <first>1160</first> <second> <count>1</count> <item_version>0</item_version> <item>47</item> </second> </item> <item> <first>1165</first> <second> <count>1</count> <item_version>0</item_version> <item>48</item> </second> </item> <item> <first>1170</first> <second> <count>1</count> <item_version>0</item_version> <item>49</item> </second> </item> <item> <first>1175</first> <second> <count>1</count> <item_version>0</item_version> <item>50</item> </second> </item> <item> <first>1186</first> <second> <count>1</count> <item_version>0</item_version> <item>102</item> </second> </item> <item> <first>1191</first> <second> <count>1</count> <item_version>0</item_version> <item>103</item> </second> </item> <item> <first>1196</first> <second> <count>1</count> <item_version>0</item_version> <item>112</item> </second> </item> <item> <first>1200</first> <second> <count>1</count> <item_version>0</item_version> <item>176</item> </second> </item> <item> <first>1205</first> <second> <count>1</count> <item_version>0</item_version> <item>185</item> </second> </item> <item> <first>1210</first> <second> <count>1</count> <item_version>0</item_version> <item>76</item> </second> </item> <item> <first>1215</first> <second> <count>1</count> <item_version>0</item_version> <item>77</item> </second> </item> <item> <first>1220</first> <second> <count>1</count> <item_version>0</item_version> <item>94</item> </second> </item> </dp_reg_nodes> <dp_regname_nodes> <count>16</count> <item_version>0</item_version> <item> <first>aiFSMState_load_reg_1142</first> <second> <count>1</count> <item_version>0</item_version> <item>35</item> </second> </item> <item> <first>icmp_ln1049_1_reg_1186</first> <second> <count>1</count> <item_version>0</item_version> <item>102</item> </second> </item> <item> <first>icmp_ln1049_2_reg_1191</first> <second> <count>1</count> <item_version>0</item_version> <item>103</item> </second> </item> <item> <first>ipDestination_V_load_reg_1146</first> <second> <count>1</count> <item_version>0</item_version> <item>36</item> </second> </item> <item> <first>p_Result_35_reg_1220</first> <second> <count>1</count> <item_version>0</item_version> <item>94</item> </second> </item> <item> <first>ret_14_reg_1200</first> <second> <count>1</count> <item_version>0</item_version> <item>176</item> </second> </item> <item> <first>ret_17_reg_1205</first> <second> <count>1</count> <item_version>0</item_version> <item>185</item> </second> </item> <item> <first>tmp_15_reg_1160</first> <second> <count>1</count> <item_version>0</item_version> <item>47</item> </second> </item> <item> <first>tmp_16_reg_1165</first> <second> <count>1</count> <item_version>0</item_version> <item>48</item> </second> </item> <item> <first>tmp_17_reg_1170</first> <second> <count>1</count> <item_version>0</item_version> <item>49</item> </second> </item> <item> <first>tmp_19_reg_1175</first> <second> <count>1</count> <item_version>0</item_version> <item>50</item> </second> </item> <item> <first>tmp_4_reg_1210</first> <second> <count>1</count> <item_version>0</item_version> <item>76</item> </second> </item> <item> <first>tmp_5_reg_1215</first> <second> <count>1</count> <item_version>0</item_version> <item>77</item> </second> </item> <item> <first>tmp_7_reg_1156</first> <second> <count>1</count> <item_version>0</item_version> <item>43</item> </second> </item> <item> <first>tmp_8_reg_1151</first> <second> <count>1</count> <item_version>0</item_version> <item>40</item> </second> </item> <item> <first>tmp_reg_1196</first> <second> <count>1</count> <item_version>0</item_version> <item>112</item> </second> </item> </dp_regname_nodes> <dp_reg_phi> <count>0</count> <item_version>0</item_version> </dp_reg_phi> <dp_regname_phi> <count>0</count> <item_version>0</item_version> </dp_regname_phi> <dp_port_io_nodes class_id="56" tracking_level="0" version="0"> <count>9</count> <item_version>0</item_version> <item class_id="57" tracking_level="0" version="0"> <first>m_axis_icmp_V_data_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>2</count> <item_version>0</item_version> <item>97</item> <item>51</item> </second> </item> </second> </item> <item> <first>m_axis_icmp_V_keep_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>2</count> <item_version>0</item_version> <item>97</item> <item>51</item> </second> </item> </second> </item> <item> <first>m_axis_icmp_V_last_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>2</count> <item_version>0</item_version> <item>97</item> <item>51</item> </second> </item> </second> </item> <item> <first>m_axis_icmp_V_strb_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>2</count> <item_version>0</item_version> <item>97</item> <item>51</item> </second> </item> </second> </item> <item> <first>myIpAddress</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>100</item> </second> </item> </second> </item> <item> <first>s_axis_icmp_V_data_V</first> <second> <count>2</count> <item_version>0</item_version> <item> <first>nbreadreq</first> <second> <count>3</count> <item_version>0</item_version> <item>112</item> <item>61</item> <item>43</item> </second> </item> <item> <first>read</first> <second> <count>3</count> <item_version>0</item_version> <item>115</item> <item>64</item> <item>46</item> </second> </item> </second> </item> <item> <first>s_axis_icmp_V_keep_V</first> <second> <count>2</count> <item_version>0</item_version> <item> <first>nbreadreq</first> <second> <count>3</count> <item_version>0</item_version> <item>112</item> <item>61</item> <item>43</item> </second> </item> <item> <first>read</first> <second> <count>3</count> <item_version>0</item_version> <item>115</item> <item>64</item> <item>46</item> </second> </item> </second> </item> <item> <first>s_axis_icmp_V_last_V</first> <second> <count>2</count> <item_version>0</item_version> <item> <first>nbreadreq</first> <second> <count>3</count> <item_version>0</item_version> <item>112</item> <item>61</item> <item>43</item> </second> </item> <item> <first>read</first> <second> <count>3</count> <item_version>0</item_version> <item>115</item> <item>64</item> <item>46</item> </second> </item> </second> </item> <item> <first>s_axis_icmp_V_strb_V</first> <second> <count>2</count> <item_version>0</item_version> <item> <first>nbreadreq</first> <second> <count>3</count> <item_version>0</item_version> <item>112</item> <item>61</item> <item>43</item> </second> </item> <item> <first>read</first> <second> <count>3</count> <item_version>0</item_version> <item>115</item> <item>64</item> <item>46</item> </second> </item> </second> </item> </dp_port_io_nodes> <port2core> <count>0</count> <item_version>0</item_version> </port2core> <node2core> <count>33</count> <item_version>0</item_version> <item> <first>43</first> <second> <first>888</first> <second>111</second> </second> </item> <item> <first>46</first> <second> <first>888</first> <second>111</second> </second> </item> <item> <first>51</first> <second> <first>888</first> <second>111</second> </second> </item> <item> <first>61</first> <second> <first>888</first> <second>111</second> </second> </item> <item> <first>64</first> <second> <first>888</first> <second>111</second> </second> </item> <item> <first>89</first> <second> <first>8</first> <second>4</second> </second> </item> <item> <first>95</first> <second> <first>49</first> <second>107</second> </second> </item> <item> <first>97</first> <second> <first>888</first> <second>111</second> </second> </item> <item> <first>101</first> <second> <first>45</first> <second>0</second> </second> </item> <item> <first>102</first> <second> <first>45</first> <second>0</second> </second> </item> <item> <first>103</first> <second> <first>45</first> <second>0</second> </second> </item> <item> <first>104</first> <second> <first>45</first> <second>0</second> </second> </item> <item> <first>105</first> <second> <first>23</first> <second>0</second> </second> </item> <item> <first>106</first> <second> <first>23</first> <second>0</second> </second> </item> <item> <first>107</first> <second> <first>23</first> <second>0</second> </second> </item> <item> <first>108</first> <second> <first>49</first> <second>107</second> </second> </item> <item> <first>112</first> <second> <first>888</first> <second>111</second> </second> </item> <item> <first>115</first> <second> <first>888</first> <second>111</second> </second> </item> <item> <first>159</first> <second> <first>8</first> <second>4</second> </second> </item> <item> <first>164</first> <second> <first>8</first> <second>4</second> </second> </item> <item> <first>167</first> <second> <first>8</first> <second>4</second> </second> </item> <item> <first>170</first> <second> <first>8</first> <second>4</second> </second> </item> <item> <first>173</first> <second> <first>8</first> <second>4</second> </second> </item> <item> <first>176</first> <second> <first>8</first> <second>4</second> </second> </item> <item> <first>179</first> <second> <first>8</first> <second>4</second> </second> </item> <item> <first>182</first> <second> <first>8</first> <second>4</second> </second> </item> <item> <first>185</first> <second> <first>8</first> <second>4</second> </second> </item> <item> <first>188</first> <second> <first>8</first> <second>4</second> </second> </item> <item> <first>194</first> <second> <first>8</first> <second>4</second> </second> </item> <item> <first>195</first> <second> <first>8</first> <second>156</second> </second> </item> <item> <first>196</first> <second> <first>8</first> <second>156</second> </second> </item> <item> <first>199</first> <second> <first>49</first> <second>107</second> </second> </item> <item> <first>200</first> <second> <first>25</first> <second>0</second> </second> </item> </node2core> </syndb> </boost_serialization>
33.769318
174
0.47866
414a5e9335a20ade0cce71db8ca0269f30264422
3,055
ads
Ada
Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/a-wtcstr.ads
djamal2727/Main-Bearing-Analytical-Model
2f00c2219c71be0175c6f4f8f1d4cca231d97096
[ "Apache-2.0" ]
null
null
null
Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/a-wtcstr.ads
djamal2727/Main-Bearing-Analytical-Model
2f00c2219c71be0175c6f4f8f1d4cca231d97096
[ "Apache-2.0" ]
null
null
null
Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/a-wtcstr.ads
djamal2727/Main-Bearing-Analytical-Model
2f00c2219c71be0175c6f4f8f1d4cca231d97096
[ "Apache-2.0" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- A D A . W I D E _ T E X T _ I O . C _ S T R E A M S -- -- -- -- S p e c -- -- -- -- Copyright (C) 1992-2020, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- This package provides an interface between Ada.Wide_Text_IO and the -- C streams. This allows sharing of a stream between Ada and C or C++, -- as well as allowing the Ada program to operate directly on the stream. with Interfaces.C_Streams; package Ada.Wide_Text_IO.C_Streams is package ICS renames Interfaces.C_Streams; function C_Stream (F : File_Type) return ICS.FILEs; -- Obtain stream from existing open file procedure Open (File : in out File_Type; Mode : File_Mode; C_Stream : ICS.FILEs; Form : String := ""; Name : String := ""); -- Create new file from existing stream end Ada.Wide_Text_IO.C_Streams;
56.574074
78
0.439607
4d288ae0a1b2cd54432ca2fcfc29ffa3a5d02c05
14,345
ads
Ada
awa/plugins/awa-votes/src/model/awa-votes-models.ads
fuzzysloth/ada-awa
f9b921eeea29841667a028f2fc4528e4385d247a
[ "Apache-2.0" ]
null
null
null
awa/plugins/awa-votes/src/model/awa-votes-models.ads
fuzzysloth/ada-awa
f9b921eeea29841667a028f2fc4528e4385d247a
[ "Apache-2.0" ]
null
null
null
awa/plugins/awa-votes/src/model/awa-votes-models.ads
fuzzysloth/ada-awa
f9b921eeea29841667a028f2fc4528e4385d247a
[ "Apache-2.0" ]
null
null
null
----------------------------------------------------------------------- -- AWA.Votes.Models -- AWA.Votes.Models ----------------------------------------------------------------------- -- File generated by ada-gen DO NOT MODIFY -- Template used: templates/model/package-spec.xhtml -- Ada Generator: https://ada-gen.googlecode.com/svn/trunk Revision 1095 ----------------------------------------------------------------------- -- Copyright (C) 2017 Stephane Carrez -- Written by Stephane Carrez ([email protected]) -- -- 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. ----------------------------------------------------------------------- pragma Warnings (Off); with ADO.Sessions; with ADO.Objects; with ADO.Statements; with ADO.SQL; with ADO.Schemas; with Ada.Containers.Vectors; with Ada.Strings.Unbounded; with Util.Beans.Objects; with Util.Beans.Basic.Lists; with Util.Beans.Methods; pragma Warnings (On); package AWA.Votes.Models is pragma Style_Checks ("-mr"); type Rating_Ref is new ADO.Objects.Object_Ref with null record; type Vote_Ref is new ADO.Objects.Object_Ref with null record; -- Create an object key for Rating. function Rating_Key (Id : in ADO.Identifier) return ADO.Objects.Object_Key; -- Create an object key for Rating from a string. -- Raises Constraint_Error if the string cannot be converted into the object key. function Rating_Key (Id : in String) return ADO.Objects.Object_Key; Null_Rating : constant Rating_Ref; function "=" (Left, Right : Rating_Ref'Class) return Boolean; -- Set the rating identifier procedure Set_Id (Object : in out Rating_Ref; Value : in ADO.Identifier); -- Get the rating identifier function Get_Id (Object : in Rating_Ref) return ADO.Identifier; -- Set the rating taking into account all votes procedure Set_Rating (Object : in out Rating_Ref; Value : in Integer); -- Get the rating taking into account all votes function Get_Rating (Object : in Rating_Ref) return Integer; -- Set the number of votes procedure Set_Vote_Count (Object : in out Rating_Ref; Value : in Integer); -- Get the number of votes function Get_Vote_Count (Object : in Rating_Ref) return Integer; -- procedure Set_For_Entity_Id (Object : in out Rating_Ref; Value : in ADO.Identifier); -- function Get_For_Entity_Id (Object : in Rating_Ref) return ADO.Identifier; -- Set the entity type procedure Set_For_Entity_Type (Object : in out Rating_Ref; Value : in ADO.Entity_Type); -- Get the entity type function Get_For_Entity_Type (Object : in Rating_Ref) return ADO.Entity_Type; -- Load the entity identified by 'Id'. -- Raises the NOT_FOUND exception if it does not exist. procedure Load (Object : in out Rating_Ref; Session : in out ADO.Sessions.Session'Class; Id : in ADO.Identifier); -- Load the entity identified by 'Id'. -- Returns True in <b>Found</b> if the object was found and False if it does not exist. procedure Load (Object : in out Rating_Ref; Session : in out ADO.Sessions.Session'Class; Id : in ADO.Identifier; Found : out Boolean); -- Find and load the entity. overriding procedure Find (Object : in out Rating_Ref; Session : in out ADO.Sessions.Session'Class; Query : in ADO.SQL.Query'Class; Found : out Boolean); -- Save the entity. If the entity does not have an identifier, an identifier is allocated -- and it is inserted in the table. Otherwise, only data fields which have been changed -- are updated. overriding procedure Save (Object : in out Rating_Ref; Session : in out ADO.Sessions.Master_Session'Class); -- Delete the entity. overriding procedure Delete (Object : in out Rating_Ref; Session : in out ADO.Sessions.Master_Session'Class); overriding function Get_Value (From : in Rating_Ref; Name : in String) return Util.Beans.Objects.Object; -- Table definition RATING_TABLE : constant ADO.Schemas.Class_Mapping_Access; -- Internal method to allocate the Object_Record instance overriding procedure Allocate (Object : in out Rating_Ref); -- Copy of the object. procedure Copy (Object : in Rating_Ref; Into : in out Rating_Ref); -- -------------------- -- The vote table tracks a vote action by a user on a given database entity. -- The primary key is made of the user, the entity id and entity type. -- -------------------- -- Create an object key for Vote. function Vote_Key (Id : in ADO.Identifier) return ADO.Objects.Object_Key; -- Create an object key for Vote from a string. -- Raises Constraint_Error if the string cannot be converted into the object key. function Vote_Key (Id : in String) return ADO.Objects.Object_Key; Null_Vote : constant Vote_Ref; function "=" (Left, Right : Vote_Ref'Class) return Boolean; -- procedure Set_Rating (Object : in out Vote_Ref; Value : in Integer); -- function Get_Rating (Object : in Vote_Ref) return Integer; -- procedure Set_Entity (Object : in out Vote_Ref; Value : in AWA.Votes.Models.Rating_Ref'Class); -- function Get_Entity (Object : in Vote_Ref) return AWA.Votes.Models.Rating_Ref'Class; -- procedure Set_User_Id (Object : in out Vote_Ref; Value : in ADO.Identifier); -- function Get_User_Id (Object : in Vote_Ref) return ADO.Identifier; -- Load the entity identified by 'Id'. -- Raises the NOT_FOUND exception if it does not exist. procedure Load (Object : in out Vote_Ref; Session : in out ADO.Sessions.Session'Class; Id : in ADO.Identifier); -- Load the entity identified by 'Id'. -- Returns True in <b>Found</b> if the object was found and False if it does not exist. procedure Load (Object : in out Vote_Ref; Session : in out ADO.Sessions.Session'Class; Id : in ADO.Identifier; Found : out Boolean); -- Find and load the entity. overriding procedure Find (Object : in out Vote_Ref; Session : in out ADO.Sessions.Session'Class; Query : in ADO.SQL.Query'Class; Found : out Boolean); -- Save the entity. If the entity does not have an identifier, an identifier is allocated -- and it is inserted in the table. Otherwise, only data fields which have been changed -- are updated. overriding procedure Save (Object : in out Vote_Ref; Session : in out ADO.Sessions.Master_Session'Class); -- Delete the entity. overriding procedure Delete (Object : in out Vote_Ref; Session : in out ADO.Sessions.Master_Session'Class); overriding function Get_Value (From : in Vote_Ref; Name : in String) return Util.Beans.Objects.Object; -- Table definition VOTE_TABLE : constant ADO.Schemas.Class_Mapping_Access; -- Internal method to allocate the Object_Record instance overriding procedure Allocate (Object : in out Vote_Ref); -- Copy of the object. procedure Copy (Object : in Vote_Ref; Into : in out Vote_Ref); type Vote_Bean is abstract new Util.Beans.Basic.Bean and Util.Beans.Methods.Method_Bean with record -- the permission name to check if the user is allowed to vote Permission : Ada.Strings.Unbounded.Unbounded_String; -- the entity identifier Entity_Id : ADO.Identifier; -- the user rating Rating : Integer; -- the entity type Entity_Type : Ada.Strings.Unbounded.Unbounded_String; -- the total rating for the entity Total : Integer; end record; -- This bean provides some methods that can be used in a Method_Expression. overriding function Get_Method_Bindings (From : in Vote_Bean) return Util.Beans.Methods.Method_Binding_Array_Access; -- Get the bean attribute identified by the name. overriding function Get_Value (From : in Vote_Bean; Name : in String) return Util.Beans.Objects.Object; -- Set the bean attribute identified by the name. overriding procedure Set_Value (Item : in out Vote_Bean; Name : in String; Value : in Util.Beans.Objects.Object); procedure Vote_Up (Bean : in out Vote_Bean; Outcome : in out Ada.Strings.Unbounded.Unbounded_String) is abstract; procedure Vote_Down (Bean : in out Vote_Bean; Outcome : in out Ada.Strings.Unbounded.Unbounded_String) is abstract; procedure Vote (Bean : in out Vote_Bean; Outcome : in out Ada.Strings.Unbounded.Unbounded_String) is abstract; private RATING_NAME : aliased constant String := "awa_rating"; COL_0_1_NAME : aliased constant String := "id"; COL_1_1_NAME : aliased constant String := "rating"; COL_2_1_NAME : aliased constant String := "vote_count"; COL_3_1_NAME : aliased constant String := "for_entity_id"; COL_4_1_NAME : aliased constant String := "for_entity_type"; RATING_DEF : aliased constant ADO.Schemas.Class_Mapping := (Count => 5, Table => RATING_NAME'Access, Members => ( 1 => COL_0_1_NAME'Access, 2 => COL_1_1_NAME'Access, 3 => COL_2_1_NAME'Access, 4 => COL_3_1_NAME'Access, 5 => COL_4_1_NAME'Access ) ); RATING_TABLE : constant ADO.Schemas.Class_Mapping_Access := RATING_DEF'Access; Null_Rating : constant Rating_Ref := Rating_Ref'(ADO.Objects.Object_Ref with null record); type Rating_Impl is new ADO.Objects.Object_Record (Key_Type => ADO.Objects.KEY_INTEGER, Of_Class => RATING_DEF'Access) with record Rating : Integer; Vote_Count : Integer; For_Entity_Id : ADO.Identifier; For_Entity_Type : ADO.Entity_Type; end record; type Rating_Access is access all Rating_Impl; overriding procedure Destroy (Object : access Rating_Impl); overriding procedure Find (Object : in out Rating_Impl; Session : in out ADO.Sessions.Session'Class; Query : in ADO.SQL.Query'Class; Found : out Boolean); overriding procedure Load (Object : in out Rating_Impl; Session : in out ADO.Sessions.Session'Class); procedure Load (Object : in out Rating_Impl; Stmt : in out ADO.Statements.Query_Statement'Class; Session : in out ADO.Sessions.Session'Class); overriding procedure Save (Object : in out Rating_Impl; Session : in out ADO.Sessions.Master_Session'Class); procedure Create (Object : in out Rating_Impl; Session : in out ADO.Sessions.Master_Session'Class); overriding procedure Delete (Object : in out Rating_Impl; Session : in out ADO.Sessions.Master_Session'Class); procedure Set_Field (Object : in out Rating_Ref'Class; Impl : out Rating_Access); VOTE_NAME : aliased constant String := "awa_vote"; COL_0_2_NAME : aliased constant String := "rating"; COL_1_2_NAME : aliased constant String := "entity_id"; COL_2_2_NAME : aliased constant String := "user_id"; VOTE_DEF : aliased constant ADO.Schemas.Class_Mapping := (Count => 3, Table => VOTE_NAME'Access, Members => ( 1 => COL_0_2_NAME'Access, 2 => COL_1_2_NAME'Access, 3 => COL_2_2_NAME'Access ) ); VOTE_TABLE : constant ADO.Schemas.Class_Mapping_Access := VOTE_DEF'Access; Null_Vote : constant Vote_Ref := Vote_Ref'(ADO.Objects.Object_Ref with null record); type Vote_Impl is new ADO.Objects.Object_Record (Key_Type => ADO.Objects.KEY_INTEGER, Of_Class => VOTE_DEF'Access) with record Rating : Integer; Entity : AWA.Votes.Models.Rating_Ref; end record; type Vote_Access is access all Vote_Impl; overriding procedure Destroy (Object : access Vote_Impl); overriding procedure Find (Object : in out Vote_Impl; Session : in out ADO.Sessions.Session'Class; Query : in ADO.SQL.Query'Class; Found : out Boolean); overriding procedure Load (Object : in out Vote_Impl; Session : in out ADO.Sessions.Session'Class); procedure Load (Object : in out Vote_Impl; Stmt : in out ADO.Statements.Query_Statement'Class; Session : in out ADO.Sessions.Session'Class); overriding procedure Save (Object : in out Vote_Impl; Session : in out ADO.Sessions.Master_Session'Class); procedure Create (Object : in out Vote_Impl; Session : in out ADO.Sessions.Master_Session'Class); overriding procedure Delete (Object : in out Vote_Impl; Session : in out ADO.Sessions.Master_Session'Class); procedure Set_Field (Object : in out Vote_Ref'Class; Impl : out Vote_Access); end AWA.Votes.Models;
36.224747
94
0.62175
1db818afe36ebb4ee6d248f0de13f2be1f3bbbe9
371
adb
Ada
testing/ultrasonic_sensor/src/main.adb
Stykk-Gruppen/rts-project
ba741eedc0b978f7066b330675d83984eadc610d
[ "MIT" ]
2
2020-11-16T12:39:17.000Z
2020-11-16T15:27:35.000Z
testing/ultrasonic_sensor/src/main.adb
Stykk-Gruppen/rts-project
ba741eedc0b978f7066b330675d83984eadc610d
[ "MIT" ]
null
null
null
testing/ultrasonic_sensor/src/main.adb
Stykk-Gruppen/rts-project
ba741eedc0b978f7066b330675d83984eadc610d
[ "MIT" ]
null
null
null
with Arduino_Nano_33_Ble_Sense.IOs; with HCSR04; procedure Main is Testing_Sensor_Echo : constant Arduino_Nano_33_Ble_Sense.IOs.Pin_Id := 44; Testing_Sensor_Trig : constant Arduino_Nano_33_Ble_Sense.IOs.Pin_Id := 43; Distance_Value : Float; begin loop Distance_Value := HCSR04.Distance(Testing_Sensor_Trig, Testing_Sensor_Echo); end loop; end Main;
28.538462
82
0.784367
5976937824ae04478b4bf50a0464d262a2f380ba
2,200
adb
Ada
regtests/util-mail-tests.adb
My-Colaborations/ada-util
039b219f8247e541e281bba73b61f683c52db579
[ "Apache-2.0" ]
null
null
null
regtests/util-mail-tests.adb
My-Colaborations/ada-util
039b219f8247e541e281bba73b61f683c52db579
[ "Apache-2.0" ]
null
null
null
regtests/util-mail-tests.adb
My-Colaborations/ada-util
039b219f8247e541e281bba73b61f683c52db579
[ "Apache-2.0" ]
null
null
null
----------------------------------------------------------------------- -- util-mail-tests -- Unit tests for mail -- Copyright (C) 2018 Stephane Carrez -- Written by Stephane Carrez ([email protected]) -- -- 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. ----------------------------------------------------------------------- with Util.Test_Caller; package body Util.Mail.Tests is package Caller is new Util.Test_Caller (Test, "Strings"); procedure Add_Tests (Suite : in Util.Tests.Access_Test_Suite) is begin Caller.Add_Test (Suite, "Test Util.Mail.Parse_Address", Test_Parse_Address'Access); end Add_Tests; procedure Test_Parse_Address (T : in out Test) is use Ada.Strings.Unbounded; procedure Check (Value : in String; Name : in String; Email : in String); procedure Check (Value : in String; Name : in String; Email : in String) is A : constant Email_Address := Parse_Address (Value); begin Util.Tests.Assert_Equals (T, Name, To_String (A.Name), "Invalid name for: " & Value); Util.Tests.Assert_Equals (T, Email, To_String (A.Address), "Invalid email for: " & Value); end Check; begin Check ("Luke Jedi <[email protected]> ", "Luke Jedi", "[email protected]"); Check (" <[email protected]> ", "Anakin", "[email protected]"); Check (" [email protected] ", "Vador", "[email protected]"); end Test_Parse_Address; end Util.Mail.Tests;
40
93
0.593636
2908819c135f5bd5e184083424a6cfae6236e9d2
6,865
ads
Ada
source/nodes/program-nodes-while_loop_statements.ads
optikos/oasis
9f64d46d26d964790d69f9db681c874cfb3bf96d
[ "MIT" ]
null
null
null
source/nodes/program-nodes-while_loop_statements.ads
optikos/oasis
9f64d46d26d964790d69f9db681c874cfb3bf96d
[ "MIT" ]
null
null
null
source/nodes/program-nodes-while_loop_statements.ads
optikos/oasis
9f64d46d26d964790d69f9db681c874cfb3bf96d
[ "MIT" ]
2
2019-09-14T23:18:50.000Z
2019-10-02T10:11:40.000Z
-- Copyright (c) 2019 Maxim Reznik <[email protected]> -- -- SPDX-License-Identifier: MIT -- License-Filename: LICENSE ------------------------------------------------------------- with Program.Elements.Defining_Identifiers; with Program.Lexical_Elements; with Program.Elements.Expressions; with Program.Element_Vectors; with Program.Elements.Identifiers; with Program.Elements.While_Loop_Statements; with Program.Element_Visitors; package Program.Nodes.While_Loop_Statements is pragma Preelaborate; type While_Loop_Statement is new Program.Nodes.Node and Program.Elements.While_Loop_Statements.While_Loop_Statement and Program.Elements.While_Loop_Statements.While_Loop_Statement_Text with private; function Create (Statement_Identifier : Program.Elements.Defining_Identifiers .Defining_Identifier_Access; Colon_Token : Program.Lexical_Elements .Lexical_Element_Access; While_Token : not null Program.Lexical_Elements .Lexical_Element_Access; Condition : not null Program.Elements.Expressions .Expression_Access; Loop_Token : not null Program.Lexical_Elements .Lexical_Element_Access; Statements : not null Program.Element_Vectors .Element_Vector_Access; End_Token : not null Program.Lexical_Elements .Lexical_Element_Access; Loop_Token_2 : not null Program.Lexical_Elements .Lexical_Element_Access; End_Statement_Identifier : Program.Elements.Identifiers.Identifier_Access; Semicolon_Token : not null Program.Lexical_Elements .Lexical_Element_Access) return While_Loop_Statement; type Implicit_While_Loop_Statement is new Program.Nodes.Node and Program.Elements.While_Loop_Statements.While_Loop_Statement with private; function Create (Statement_Identifier : Program.Elements.Defining_Identifiers .Defining_Identifier_Access; Condition : not null Program.Elements.Expressions .Expression_Access; Statements : not null Program.Element_Vectors .Element_Vector_Access; End_Statement_Identifier : Program.Elements.Identifiers.Identifier_Access; Is_Part_Of_Implicit : Boolean := False; Is_Part_Of_Inherited : Boolean := False; Is_Part_Of_Instance : Boolean := False) return Implicit_While_Loop_Statement with Pre => Is_Part_Of_Implicit or Is_Part_Of_Inherited or Is_Part_Of_Instance; private type Base_While_Loop_Statement is abstract new Program.Nodes.Node and Program.Elements.While_Loop_Statements.While_Loop_Statement with record Statement_Identifier : Program.Elements.Defining_Identifiers .Defining_Identifier_Access; Condition : not null Program.Elements.Expressions .Expression_Access; Statements : not null Program.Element_Vectors .Element_Vector_Access; End_Statement_Identifier : Program.Elements.Identifiers .Identifier_Access; end record; procedure Initialize (Self : aliased in out Base_While_Loop_Statement'Class); overriding procedure Visit (Self : not null access Base_While_Loop_Statement; Visitor : in out Program.Element_Visitors.Element_Visitor'Class); overriding function Statement_Identifier (Self : Base_While_Loop_Statement) return Program.Elements.Defining_Identifiers.Defining_Identifier_Access; overriding function Condition (Self : Base_While_Loop_Statement) return not null Program.Elements.Expressions.Expression_Access; overriding function Statements (Self : Base_While_Loop_Statement) return not null Program.Element_Vectors.Element_Vector_Access; overriding function End_Statement_Identifier (Self : Base_While_Loop_Statement) return Program.Elements.Identifiers.Identifier_Access; overriding function Is_While_Loop_Statement_Element (Self : Base_While_Loop_Statement) return Boolean; overriding function Is_Statement_Element (Self : Base_While_Loop_Statement) return Boolean; type While_Loop_Statement is new Base_While_Loop_Statement and Program.Elements.While_Loop_Statements.While_Loop_Statement_Text with record Colon_Token : Program.Lexical_Elements.Lexical_Element_Access; While_Token : not null Program.Lexical_Elements .Lexical_Element_Access; Loop_Token : not null Program.Lexical_Elements .Lexical_Element_Access; End_Token : not null Program.Lexical_Elements .Lexical_Element_Access; Loop_Token_2 : not null Program.Lexical_Elements .Lexical_Element_Access; Semicolon_Token : not null Program.Lexical_Elements .Lexical_Element_Access; end record; overriding function To_While_Loop_Statement_Text (Self : aliased in out While_Loop_Statement) return Program.Elements.While_Loop_Statements .While_Loop_Statement_Text_Access; overriding function Colon_Token (Self : While_Loop_Statement) return Program.Lexical_Elements.Lexical_Element_Access; overriding function While_Token (Self : While_Loop_Statement) return not null Program.Lexical_Elements.Lexical_Element_Access; overriding function Loop_Token (Self : While_Loop_Statement) return not null Program.Lexical_Elements.Lexical_Element_Access; overriding function End_Token (Self : While_Loop_Statement) return not null Program.Lexical_Elements.Lexical_Element_Access; overriding function Loop_Token_2 (Self : While_Loop_Statement) return not null Program.Lexical_Elements.Lexical_Element_Access; overriding function Semicolon_Token (Self : While_Loop_Statement) return not null Program.Lexical_Elements.Lexical_Element_Access; type Implicit_While_Loop_Statement is new Base_While_Loop_Statement with record Is_Part_Of_Implicit : Boolean; Is_Part_Of_Inherited : Boolean; Is_Part_Of_Instance : Boolean; end record; overriding function To_While_Loop_Statement_Text (Self : aliased in out Implicit_While_Loop_Statement) return Program.Elements.While_Loop_Statements .While_Loop_Statement_Text_Access; overriding function Is_Part_Of_Implicit (Self : Implicit_While_Loop_Statement) return Boolean; overriding function Is_Part_Of_Inherited (Self : Implicit_While_Loop_Statement) return Boolean; overriding function Is_Part_Of_Instance (Self : Implicit_While_Loop_Statement) return Boolean; end Program.Nodes.While_Loop_Statements;
37.108108
79
0.730226
4d04059d5c838e86aaa375b67b24deaea7ad79ab
1,109
ads
Ada
src/ada_containers_indefinite_holders.ads
egilhh/Futures-in-Ada
f1c71ad6d7774e98dc44a98c9252bf0ead34a69e
[ "MIT" ]
1
2015-11-25T19:57:53.000Z
2015-11-25T19:57:53.000Z
src/ada_containers_indefinite_holders.ads
egilhh/Futures-in-Ada
f1c71ad6d7774e98dc44a98c9252bf0ead34a69e
[ "MIT" ]
null
null
null
src/ada_containers_indefinite_holders.ads
egilhh/Futures-in-Ada
f1c71ad6d7774e98dc44a98c9252bf0ead34a69e
[ "MIT" ]
null
null
null
with Ada.Finalization; generic type Element_Type(<>) is private; with function "=" (Left, Right : Element_Type) return Boolean is <>; package Ada_Containers_Indefinite_Holders is pragma Preelaborate(Ada_Containers_Indefinite_Holders); type Holder is tagged private; pragma Preelaborable_Initialization (Holder); -- Empty_Holder : constant Holder; -- function "=" (Left, Right : Holder) return Boolean; -- function To_Holder (New_Item : Element_Type) return Holder; function Is_Empty (Container : Holder) return Boolean; -- procedure Clear (Container : in out Holder); function Element (Container : Holder) return Element_Type; procedure Replace_Element (Container : in out Holder; New_Item : in Element_Type); private type Element_Access is access all Element_Type; type Holder is new Ada.Finalization.Controlled with record Element : Element_Access; end record; overriding procedure Adjust(Self : in out Holder); overriding procedure Finalize(Self : in out Holder); end Ada_Containers_Indefinite_Holders;
27.04878
71
0.726781
20da7b748252404c9f018d26800b158a1669accb
6,888
ads
Ada
3-mid/impact/source/3d/math/impact-d3-scalar.ads
charlie5/lace
e9b7dc751d500ff3f559617a6fc3089ace9dc134
[ "0BSD" ]
20
2015-11-04T09:23:59.000Z
2022-01-14T10:21:42.000Z
3-mid/impact/source/3d/math/impact-d3-scalar.ads
charlie5/lace
e9b7dc751d500ff3f559617a6fc3089ace9dc134
[ "0BSD" ]
2
2015-11-04T17:05:56.000Z
2015-12-08T03:16:13.000Z
3-mid/impact/source/3d/math/impact-d3-scalar.ads
charlie5/lace
e9b7dc751d500ff3f559617a6fc3089ace9dc134
[ "0BSD" ]
1
2015-12-07T12:53:52.000Z
2015-12-07T12:53:52.000Z
package impact.d3.Scalar -- -- -- is use Math; BT_BULLET_VERSION : constant := 279; SIMD_2_PI : constant Real := 6.283185307179586232; SIMD_PI : constant Real := SIMD_2_PI * 0.5; SIMD_HALF_PI : constant Real := SIMD_2_PI * 0.25; SIMD_RADS_PER_DEG : constant Real := SIMD_2_PI / 360.0; SIMD_DEGS_PER_RAD : constant Real := 360.0 / SIMD_2_PI; SIMDSQRT12 : constant Real := 0.7071067811865475244008443621048490; function btRecipSqrt (x : in Real) return Real; -- reciprocal square root SIMD_EPSILON : constant Real := Real'Epsilon; --- tbd: check this ! SIMD_INFINITY : constant Real := Real'Last; function btAtan2Fast (y, x : Real) return Real; function btFuzzyZero (x : Real) return Boolean; function btIsNegative (x : Real) return Boolean; function btEqual (a, eps : Real) return Boolean; function btGreaterEqual (a, eps : Real) return Boolean; function btRadians (x : Real) return Real; function btDegrees (x : Real) return Real; -- #define BT_DECLARE_HANDLE(name) typedef struct name##__ { int unused; } *name function btNormalizeAngle (angleInRadians : Real) return Real; -- -- Returns normalized value in range -SIMD_PI .. SIMD_PI. type btTypedObject is new impact.Any with record m_objectType : Integer; end record; -- -- Rudimentary class to provide type info. -- struct btTypedObject -- { -- btTypedObject(int objectType) -- :m_objectType(objectType) -- { -- } -- int m_objectType; -- inline int getObjectType() const -- { -- return m_objectType; -- } -- }; function btFsel (a, b, c : in Real) return Real; function btFsels (a, b, c : in Real) return Real renames btFsel; end impact.d3.Scalar; -- -- SIMD_FORCE_INLINE bool btMachineIsLittleEndian() -- { -- long int i = 1; -- const char *p = (const char *) &i; -- if (p[0] == 1) // Lowest address contains the least significant byte -- return true; -- else -- return false; -- } -- -- -- -- ///btSelect avoids branches, which makes performance much better for consoles like Playstation 3 and XBox 360 -- ///Thanks Phil Knight. See also http://www.cellperformance.com/articles/2006/04/more_techniques_for_eliminatin_1.html -- SIMD_FORCE_INLINE unsigned btSelect(unsigned condition, unsigned valueIfConditionNonZero, unsigned valueIfConditionZero) -- { -- // Set testNz to 0xFFFFFFFF if condition is nonzero, 0x00000000 if condition is zero -- // Rely on positive value or'ed with its negative having sign bit on -- // and zero value or'ed with its negative (which is still zero) having sign bit off -- // Use arithmetic shift right, shifting the sign bit through all 32 bits -- unsigned testNz = (unsigned)(((int)condition | -(int)condition) >> 31); -- unsigned testEqz = ~testNz; -- return ((valueIfConditionNonZero & testNz) | (valueIfConditionZero & testEqz)); -- } -- SIMD_FORCE_INLINE int btSelect(unsigned condition, int valueIfConditionNonZero, int valueIfConditionZero) -- { -- unsigned testNz = (unsigned)(((int)condition | -(int)condition) >> 31); -- unsigned testEqz = ~testNz; -- return static_cast<int>((valueIfConditionNonZero & testNz) | (valueIfConditionZero & testEqz)); -- } -- SIMD_FORCE_INLINE float btSelect(unsigned condition, float valueIfConditionNonZero, float valueIfConditionZero) -- { -- #ifdef BT_HAVE_NATIVE_FSEL -- return (float)btFsel((impact.d3.Scalar)condition - impact.d3.Scalar(1.0f), valueIfConditionNonZero, valueIfConditionZero); -- #else -- return (condition != 0) ? valueIfConditionNonZero : valueIfConditionZero; -- #endif -- } -- -- template<typename T> SIMD_FORCE_INLINE void btSwap(T& a, T& b) -- { -- T tmp = a; -- a = b; -- b = tmp; -- } -- -- -- //PCK: endian swapping functions -- SIMD_FORCE_INLINE unsigned btSwapEndian(unsigned val) -- { -- return (((val & 0xff000000) >> 24) | ((val & 0x00ff0000) >> 8) | ((val & 0x0000ff00) << 8) | ((val & 0x000000ff) << 24)); -- } -- -- SIMD_FORCE_INLINE unsigned short btSwapEndian(unsigned short val) -- { -- return static_cast<unsigned short>(((val & 0xff00) >> 8) | ((val & 0x00ff) << 8)); -- } -- -- SIMD_FORCE_INLINE unsigned btSwapEndian(int val) -- { -- return btSwapEndian((unsigned)val); -- } -- -- SIMD_FORCE_INLINE unsigned short btSwapEndian(short val) -- { -- return btSwapEndian((unsigned short) val); -- } -- -- ///btSwapFloat uses using char pointers to swap the endianness -- ////btSwapFloat/btSwapDouble will NOT return a float, because the machine might 'correct' invalid floating point values -- ///Not all values of sign/exponent/mantissa are valid floating point numbers according to IEEE 754. -- ///When a floating point unit is faced with an invalid value, it may actually change the value, or worse, throw an exception. -- ///In most systems, running user mode code, you wouldn't get an exception, but instead the hardware/os/runtime will 'fix' the number for you. -- ///so instead of returning a float/double, we return integer/long long integer -- SIMD_FORCE_INLINE unsigned int btSwapEndianFloat(float d) -- { -- unsigned int a = 0; -- unsigned char *dst = (unsigned char *)&a; -- unsigned char *src = (unsigned char *)&d; -- -- dst[0] = src[3]; -- dst[1] = src[2]; -- dst[2] = src[1]; -- dst[3] = src[0]; -- return a; -- } -- -- // unswap using char pointers -- SIMD_FORCE_INLINE float btUnswapEndianFloat(unsigned int a) -- { -- float d = 0.0f; -- unsigned char *src = (unsigned char *)&a; -- unsigned char *dst = (unsigned char *)&d; -- -- dst[0] = src[3]; -- dst[1] = src[2]; -- dst[2] = src[1]; -- dst[3] = src[0]; -- -- return d; -- } -- -- -- // swap using char pointers -- SIMD_FORCE_INLINE void btSwapEndianDouble(double d, unsigned char* dst) -- { -- unsigned char *src = (unsigned char *)&d; -- -- dst[0] = src[7]; -- dst[1] = src[6]; -- dst[2] = src[5]; -- dst[3] = src[4]; -- dst[4] = src[3]; -- dst[5] = src[2]; -- dst[6] = src[1]; -- dst[7] = src[0]; -- -- } -- -- // unswap using char pointers -- SIMD_FORCE_INLINE double btUnswapEndianDouble(const unsigned char *src) -- { -- double d = 0.0; -- unsigned char *dst = (unsigned char *)&d; -- -- dst[0] = src[7]; -- dst[1] = src[6]; -- dst[2] = src[5]; -- dst[3] = src[4]; -- dst[4] = src[3]; -- dst[5] = src[2]; -- dst[6] = src[1]; -- dst[7] = src[0]; -- -- return d; -- }
28.114286
145
0.607433
29a0606168c673fe951f458bbaf69c6f65c4ca53
17,447
ads
Ada
Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/g-spitbo.ads
djamal2727/Main-Bearing-Analytical-Model
2f00c2219c71be0175c6f4f8f1d4cca231d97096
[ "Apache-2.0" ]
null
null
null
Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/g-spitbo.ads
djamal2727/Main-Bearing-Analytical-Model
2f00c2219c71be0175c6f4f8f1d4cca231d97096
[ "Apache-2.0" ]
null
null
null
Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/g-spitbo.ads
djamal2727/Main-Bearing-Analytical-Model
2f00c2219c71be0175c6f4f8f1d4cca231d97096
[ "Apache-2.0" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- GNAT LIBRARY COMPONENTS -- -- -- -- G N A T . S P I T B O L -- -- -- -- S p e c -- -- -- -- Copyright (C) 1997-2020, AdaCore -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- SPITBOL-like interface facilities -- This package provides a set of interfaces to semantic operations copied -- from SPITBOL, including a complete implementation of SPITBOL pattern -- matching. The code is derived from the original SPITBOL MINIMAL sources, -- created by Robert Dewar. The translation is not exact, but the -- algorithmic approaches are similar. with Ada.Finalization; use Ada.Finalization; with Ada.Strings.Unbounded; use Ada.Strings.Unbounded; with Interfaces; use Interfaces; package GNAT.Spitbol is pragma Preelaborate; -- The Spitbol package relies heavily on the Unbounded_String package, -- using the synonym VString for variable length string. The following -- declarations define this type and other useful abbreviations. subtype VString is Ada.Strings.Unbounded.Unbounded_String; function V (Source : String) return VString renames Ada.Strings.Unbounded.To_Unbounded_String; function S (Source : VString) return String renames Ada.Strings.Unbounded.To_String; Nul : VString renames Ada.Strings.Unbounded.Null_Unbounded_String; ------------------------- -- Facilities Provided -- ------------------------- -- The SPITBOL support in GNAT consists of this package together with -- several child packages. In this package, we have first a set of -- useful string functions, copied exactly from the corresponding -- SPITBOL functions, except that we had to rename REVERSE because -- reverse is a reserved word (it is now Reverse_String). -- The second element of the parent package is a generic implementation -- of a table facility. In SPITBOL, the TABLE function allows general -- mappings from any datatype to any other datatype, and of course, as -- always, we can freely mix multiple types in the same table. -- The Ada version of tables is strongly typed, so the indexing type and -- the range type are always of a consistent type. In this implementation -- we only provide VString as an indexing type, since this is by far the -- most common case. The generic instantiation specifies the range type -- to be used. -- Three child packages provide standard instantiations of this table -- package for three common datatypes: -- GNAT.Spitbol.Table_Boolean (file g-sptabo.ads) -- The range type is Boolean. The default value is False. This -- means that this table is essentially a representation of a set. -- GNAT.Spitbol.Table_Integer (file g-sptain.ads) -- The range type is Integer. The default value is Integer'First. -- This provides a general mapping from strings to integers. -- GNAT.Spitbol.Table_VString (file g-sptavs.ads) -- The range type is VString. The default value is the null string. -- This provides a general mapping from strings to strings. -- Finally there is another child package: -- GNAT.Spitbol.Patterns (file g-spipat.ads) -- This child package provides a complete implementation of SPITBOL -- pattern matching. The spec contains a complete tutorial on the -- use of pattern matching. --------------------------------- -- Standard String Subprograms -- --------------------------------- -- This section contains some operations on unbounded strings that are -- closely related to those in the package Unbounded.Strings, but they -- correspond to the SPITBOL semantics for these operations. function Char (Num : Natural) return Character; pragma Inline (Char); -- Equivalent to Character'Val (Num) function Lpad (Str : VString; Len : Natural; Pad : Character := ' ') return VString; function Lpad (Str : String; Len : Natural; Pad : Character := ' ') return VString; -- If the length of Str is greater than or equal to Len, then Str is -- returned unchanged. Otherwise, the value returned is obtained by -- concatenating Length (Str) - Len instances of the Pad character to -- the left hand side. procedure Lpad (Str : in out VString; Len : Natural; Pad : Character := ' '); -- The procedure form is identical to the function form, except that -- the result overwrites the input argument Str. function Reverse_String (Str : VString) return VString; function Reverse_String (Str : String) return VString; -- Returns result of reversing the string Str, i.e. the result returned -- is a mirror image (end-for-end reversal) of the input string. procedure Reverse_String (Str : in out VString); -- The procedure form is identical to the function form, except that the -- result overwrites the input argument Str. function Rpad (Str : VString; Len : Natural; Pad : Character := ' ') return VString; function Rpad (Str : String; Len : Natural; Pad : Character := ' ') return VString; -- If the length of Str is greater than or equal to Len, then Str is -- returned unchanged. Otherwise, the value returned is obtained by -- concatenating Length (Str) - Len instances of the Pad character to -- the right hand side. procedure Rpad (Str : in out VString; Len : Natural; Pad : Character := ' '); -- The procedure form is identical to the function form, except that the -- result overwrites the input argument Str. function Size (Source : VString) return Natural renames Ada.Strings.Unbounded.Length; function Substr (Str : VString; Start : Positive; Len : Natural) return VString; function Substr (Str : String; Start : Positive; Len : Natural) return VString; -- Returns the substring starting at the given character position (which -- is always counted from the start of the string, regardless of bounds, -- e.g. 2 means starting with the second character of the string), and -- with the length (Len) given. Index_Error is raised if the starting -- position is out of range, and Length_Error is raised if Len is too long. function Trim (Str : VString) return VString; function Trim (Str : String) return VString; -- Returns the string obtained by removing all spaces from the right -- hand side of the string Str. procedure Trim (Str : in out VString); -- The procedure form is identical to the function form, except that the -- result overwrites the input argument Str. ----------------------- -- Utility Functions -- ----------------------- -- In SPITBOL, integer values can be freely treated as strings. The -- following definitions help provide some of this capability in -- some common cases. function "&" (Num : Integer; Str : String) return String; function "&" (Str : String; Num : Integer) return String; function "&" (Num : Integer; Str : VString) return VString; function "&" (Str : VString; Num : Integer) return VString; -- In all these concatenation operations, the integer is converted to -- its corresponding decimal string form, with no leading blank. function S (Num : Integer) return String; function V (Num : Integer) return VString; -- These operators return the given integer converted to its decimal -- string form with no leading blank. function N (Str : VString) return Integer; -- Converts string to number (same as Integer'Value (S (Str))) ------------------- -- Table Support -- ------------------- -- So far, we only provide support for tables whose indexing data values -- are strings (or unbounded strings). The values stored may be of any -- type, as supplied by the generic formal parameter. generic type Value_Type is private; -- Any non-limited type can be used as the value type in the table Null_Value : Value_Type; -- Value used to represent a value that is not present in the table with function Img (A : Value_Type) return String; -- Used to provide image of value in Dump procedure with function "=" (A, B : Value_Type) return Boolean is <>; -- This allows a user-defined equality function to override the -- predefined equality function. package Table is ------------------------ -- Table Declarations -- ------------------------ type Table (N : Unsigned_32) is private; -- This is the table type itself. A table is a mapping from string -- values to values of Value_Type. The discriminant is an estimate of -- the number of values in the table. If the estimate is much too -- high, some space is wasted, if the estimate is too low, access to -- table elements is slowed down. The type Table has copy semantics, -- not reference semantics. This means that if a table is copied -- using simple assignment, then the two copies refer to entirely -- separate tables. ----------------------------- -- Table Access Operations -- ----------------------------- function Get (T : Table; Name : VString) return Value_Type; function Get (T : Table; Name : Character) return Value_Type; pragma Inline (Get); function Get (T : Table; Name : String) return Value_Type; -- If an entry with the given name exists in the table, then the -- corresponding Value_Type value is returned. Otherwise Null_Value -- is returned. function Present (T : Table; Name : VString) return Boolean; function Present (T : Table; Name : Character) return Boolean; pragma Inline (Present); function Present (T : Table; Name : String) return Boolean; -- Determines if an entry with the given name is present in the table. -- A returned value of True means that it is in the table, otherwise -- False indicates that it is not in the table. procedure Delete (T : in out Table; Name : VString); procedure Delete (T : in out Table; Name : Character); pragma Inline (Delete); procedure Delete (T : in out Table; Name : String); -- Deletes the table element with the given name from the table. If -- no element in the table has this name, then the call has no effect. procedure Set (T : in out Table; Name : VString; Value : Value_Type); procedure Set (T : in out Table; Name : Character; Value : Value_Type); pragma Inline (Set); procedure Set (T : in out Table; Name : String; Value : Value_Type); -- Sets the value of the element with the given name to the given -- value. If Value is equal to Null_Value, the effect is to remove -- the entry from the table. If no element with the given name is -- currently in the table, then a new element with the given value -- is created. ---------------------------- -- Allocation and Copying -- ---------------------------- -- Table is a controlled type, so that all storage associated with -- tables is properly reclaimed when a Table value is abandoned. -- Tables have value semantics rather than reference semantics as -- in Spitbol, i.e. when you assign a copy you end up with two -- distinct copies of the table, as though COPY had been used in -- Spitbol. It seems clearly more appropriate in Ada to require -- the use of explicit pointers for reference semantics. procedure Clear (T : in out Table); -- Clears all the elements of the given table, freeing associated -- storage. On return T is an empty table with no elements. procedure Copy (From : Table; To : in out Table); -- First all the elements of table To are cleared (as described for -- the Clear procedure above), then all the elements of table From -- are copied into To. In the case where the tables From and To have -- the same declared size (i.e. the same discriminant), the call to -- Copy has the same effect as the assignment of From to To. The -- difference is that, unlike the assignment statement, which will -- cause a Constraint_Error if the source and target are of different -- sizes, Copy works fine with different sized tables. ---------------- -- Conversion -- ---------------- type Table_Entry is record Name : VString; Value : Value_Type; end record; type Table_Array is array (Positive range <>) of Table_Entry; function Convert_To_Array (T : Table) return Table_Array; -- Returns a Table_Array value with a low bound of 1, and a length -- corresponding to the number of elements in the table. The elements -- of the array give the elements of the table in unsorted order. --------------- -- Debugging -- --------------- procedure Dump (T : Table; Str : String := "Table"); -- Dump contents of given table to the standard output file. The -- string value Str is used as the name of the table in the dump. procedure Dump (T : Table_Array; Str : String := "Table_Array"); -- Dump contents of given table array to the current output file. The -- string value Str is used as the name of the table array in the dump. private ------------------ -- Private Part -- ------------------ -- A Table is a pointer to a hash table which contains the indicated -- number of hash elements (the number is forced to the next odd value -- if it is even to improve hashing performance). If more than one -- of the entries in a table hashes to the same slot, the Next field -- is used to chain entries from the header. The chains are not kept -- ordered. A chain is terminated by a null pointer in Next. An unused -- chain is marked by an element whose Name is null and whose value -- is Null_Value. type Hash_Element; type Hash_Element_Ptr is access all Hash_Element; type Hash_Element is record Name : String_Access := null; Value : Value_Type := Null_Value; Next : Hash_Element_Ptr := null; end record; type Hash_Table is array (Unsigned_32 range <>) of aliased Hash_Element; type Table (N : Unsigned_32) is new Controlled with record Elmts : Hash_Table (1 .. N); end record; pragma Finalize_Storage_Only (Table); overriding procedure Adjust (Object : in out Table); -- The Adjust procedure does a deep copy of the table structure -- so that the effect of assignment is, like other assignments -- in Ada, value-oriented. overriding procedure Finalize (Object : in out Table); -- This is the finalization routine that ensures that all storage -- associated with a table is properly released when a table object -- is abandoned and finalized. end Table; end GNAT.Spitbol;
44.16962
79
0.610649
066d30df26407b77683fd58640c81031e4d39f6d
86
ads
Ada
AdaToolsTests/krunchpa.ads
gitter-badger/Ada-tools
1a7c354ca49925d12a9be0e14c88b66e7350d257
[ "BSD-3-Clause" ]
null
null
null
AdaToolsTests/krunchpa.ads
gitter-badger/Ada-tools
1a7c354ca49925d12a9be0e14c88b66e7350d257
[ "BSD-3-Clause" ]
null
null
null
AdaToolsTests/krunchpa.ads
gitter-badger/Ada-tools
1a7c354ca49925d12a9be0e14c88b66e7350d257
[ "BSD-3-Clause" ]
null
null
null
package KrunchPackage is --@description Tests the krunch behavior end KrunchPackage;
21.5
40
0.825581
3130ffc520ee89d76022521032cedc51deeebb9d
5,476
adb
Ada
random-bet/ada/src/RandomBet.adb
Tim-Tom/scratch
b165c2ffb4f60bdb996761e678ce4c3447cee05a
[ "Unlicense" ]
null
null
null
random-bet/ada/src/RandomBet.adb
Tim-Tom/scratch
b165c2ffb4f60bdb996761e678ce4c3447cee05a
[ "Unlicense" ]
null
null
null
random-bet/ada/src/RandomBet.adb
Tim-Tom/scratch
b165c2ffb4f60bdb996761e678ce4c3447cee05a
[ "Unlicense" ]
null
null
null
with Ada.Text_IO; procedure RandomBet is package IO renames Ada.Text_IO; Max_Starting_Bet : constant := 255; Max_Bet_Pool : constant := Max_Starting_Bet * 3; type Offset_Array is Array (1 .. Max_Starting_Bet, 1 .. (Max_Bet_Pool - 1) / 2) of Natural; type Memory_Record is record Predecessor : Integer; Next_Record : Integer; P1,P2,P3 : Natural; end record; type Memory_Array is Array (Natural range <>) of Memory_Record; type Memory_Array_Access is access Memory_Array; Offsets : Offset_Array; function Init_Offsets return Natural is sum : Natural := 0; begin for x in Offsets'Range(1) loop for y in Offsets'Range(2) loop if y < x or 2*y + x > Max_Bet_Pool then Offsets(x,y) := 0; else Offsets(x,y) := sum; sum := sum + (Max_Bet_Pool - x - 2*y + 1); end if; end loop; end loop; return sum; end Init_Offsets; function Get_Offset(p1, p2, p3 : Natural) return Natural is base : constant Natural := Offsets(p1, p2); begin return base + p3 - p2; end Get_Offset; Memory_Size : constant Natural := Init_Offsets; Memory : constant Memory_Array_Access := new Memory_Array(0 .. Memory_Size); Next_Record : Integer := -1; Last_Record : Integer := -1; procedure Evaluate_Candidate(predecessor, p1, p2, p3: Natural) is offset : Natural; begin -- IO.Put_Line(Integer'Image(predecessor) & Integer'Image(p1) & Integer'Image(p2) & Integer'Image(p3)); if p1 = p2 or else p2 = p3 then return; end if; offset := Get_Offset(p1, p2, p3); if Memory(offset).Predecessor /= -1 then return; end if; Memory(offset).Predecessor := predecessor; Memory(Last_Record).Next_Record := offset; Last_Record := offset; end Evaluate_Candidate; procedure Evaluate_Candidate_Sort(predecessor, p1, p2, p3: Natural) is begin if p1 <= p2 then if p2 <= p3 then Evaluate_Candidate(predecessor, p1, p2, p3); elsif p1 <= p3 then Evaluate_Candidate(predecessor, p1, p3, p2); else Evaluate_Candidate(predecessor, p3, p1, p2); end if; elsif p2 <= p3 then if p1 <= p3 then Evaluate_Candidate(predecessor, p2, p1, p3); else Evaluate_Candidate(predecessor, p2, p3, p1); end if; else Evaluate_Candidate(predecessor, p3, p2, p1); end if; end Evaluate_Candidate_Sort; procedure Print_Solution(offset : Natural) is nr : Integer := offset; begin while nr /= -1 loop IO.Put_Line(Integer'Image(memory(nr).P1) & Integer'Image(memory(nr).P2) & Integer'Image(memory(nr).P3)); nr := memory(nr).Predecessor; end loop; end Print_Solution; Processed : Natural := 0; begin for x in 1 .. Max_Starting_Bet loop for y in x .. (Max_Bet_Pool - x) / 2 loop for z in y .. (Max_Bet_Pool - x - y) loop declare offset : Natural; begin offset := Get_Offset(x, y, z); Memory(offset).P1 := x; Memory(offset).P2 := y; Memory(offset).P3 := z; Memory(offset).Predecessor := -1; Memory(offset).Next_Record := -1; end; end loop; end loop; end loop; for x in 1 .. Max_Starting_Bet loop declare offset : Integer; begin if x mod 2 = 0 then offset := Get_Offset(x,x,x); Memory(offset).Next_Record := Next_Record; Next_Record := offset; end if; for y in x + 1 .. Max_Bet_Pool - 2*x loop if x mod 2 = 0 or else y mod 2 = 0 then offset := Get_Offset(x,x,y); Memory(offset).Next_Record := Next_Record; Next_Record := offset; end if; end loop; for y in x + 1 .. (Max_Bet_Pool - x)/2 loop if x mod 2 = 0 or else y mod 2 = 0 then offset := Get_Offset(x,y,y); Memory(offset).Next_Record := Next_Record; Next_Record := offset; end if; end loop; end; end loop; -- 1,1,2 is always the first record encountered. Last_Record := Get_Offset(1,1,2); while Next_Record /= -1 loop processed := processed + 1; declare mr : Memory_Record renames Memory(Next_Record); half : Natural; begin if mr.P1 mod 2 = 0 then half := mr.P1 / 2; Evaluate_Candidate_Sort(Next_Record, half, mr.P2 + half, mr.P3); Evaluate_Candidate_Sort(Next_Record, half, mr.P2, mr.P3 + half); end if; if mr.P2 mod 2 = 0 then half := mr.P2 / 2; Evaluate_Candidate_Sort(Next_Record, half, mr.P1 + half, mr.P3); Evaluate_Candidate_Sort(Next_Record, half, mr.P1, mr.P3 + half); end if; if mr.P3 mod 2 = 0 then half := mr.P3 / 2; Evaluate_Candidate_Sort(Next_Record, half, mr.P1 + half, mr.P2); Evaluate_Candidate_Sort(Next_Record, half, mr.P1, mr.P2 + half); end if; Next_Record := mr.Next_Record; end; end loop; IO.Put_Line("Processed " & Integer'Image(processed) & " records"); Print_Solution(Get_Offset(175, 199, 223)); end RandomBet;
35.329032
113
0.567385
2f2d1b0354a2e51189c44a22b82a165b2fec4baa
5,195
ads
Ada
source/amf/uml/amf-uml-deployed_artifacts-collections.ads
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
24
2016-11-29T06:59:41.000Z
2021-08-30T11:55:16.000Z
source/amf/uml/amf-uml-deployed_artifacts-collections.ads
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
2
2019-01-16T05:15:20.000Z
2019-02-03T10:03:32.000Z
source/amf/uml/amf-uml-deployed_artifacts-collections.ads
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
4
2017-07-18T07:11:05.000Z
2020-06-21T03:02:25.000Z
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2011-2012, Vadim Godunko <[email protected]> -- -- 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 Vadim Godunko, IE 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. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ -- This file is generated, don't edit it. ------------------------------------------------------------------------------ with AMF.Generic_Collections; package AMF.UML.Deployed_Artifacts.Collections is pragma Preelaborate; package UML_Deployed_Artifact_Collections is new AMF.Generic_Collections (UML_Deployed_Artifact, UML_Deployed_Artifact_Access); type Set_Of_UML_Deployed_Artifact is new UML_Deployed_Artifact_Collections.Set with null record; Empty_Set_Of_UML_Deployed_Artifact : constant Set_Of_UML_Deployed_Artifact; type Ordered_Set_Of_UML_Deployed_Artifact is new UML_Deployed_Artifact_Collections.Ordered_Set with null record; Empty_Ordered_Set_Of_UML_Deployed_Artifact : constant Ordered_Set_Of_UML_Deployed_Artifact; type Bag_Of_UML_Deployed_Artifact is new UML_Deployed_Artifact_Collections.Bag with null record; Empty_Bag_Of_UML_Deployed_Artifact : constant Bag_Of_UML_Deployed_Artifact; type Sequence_Of_UML_Deployed_Artifact is new UML_Deployed_Artifact_Collections.Sequence with null record; Empty_Sequence_Of_UML_Deployed_Artifact : constant Sequence_Of_UML_Deployed_Artifact; private Empty_Set_Of_UML_Deployed_Artifact : constant Set_Of_UML_Deployed_Artifact := (UML_Deployed_Artifact_Collections.Set with null record); Empty_Ordered_Set_Of_UML_Deployed_Artifact : constant Ordered_Set_Of_UML_Deployed_Artifact := (UML_Deployed_Artifact_Collections.Ordered_Set with null record); Empty_Bag_Of_UML_Deployed_Artifact : constant Bag_Of_UML_Deployed_Artifact := (UML_Deployed_Artifact_Collections.Bag with null record); Empty_Sequence_Of_UML_Deployed_Artifact : constant Sequence_Of_UML_Deployed_Artifact := (UML_Deployed_Artifact_Collections.Sequence with null record); end AMF.UML.Deployed_Artifacts.Collections;
56.467391
94
0.53436
31f1270b20e1e86ac0e9885d8cba5365885c4bf3
8,303
ads
Ada
tools/scitools/conf/understand/ada/ada12/g-arrspl.ads
brucegua/moocos
575c161cfa35e220f10d042e2e5ca18773691695
[ "Apache-2.0" ]
1
2020-01-20T21:26:46.000Z
2020-01-20T21:26:46.000Z
tools/scitools/conf/understand/ada/ada12/g-arrspl.ads
brucegua/moocos
575c161cfa35e220f10d042e2e5ca18773691695
[ "Apache-2.0" ]
null
null
null
tools/scitools/conf/understand/ada/ada12/g-arrspl.ads
brucegua/moocos
575c161cfa35e220f10d042e2e5ca18773691695
[ "Apache-2.0" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- G N A T . A R R A Y _ S P L I T -- -- -- -- S p e c -- -- -- -- Copyright (C) 2002-2009, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- -- -- -- -- -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- Useful array-manipulation routines: given a set of separators, split -- an array wherever the separators appear, and provide direct access -- to the resulting slices. with Ada.Finalization; generic type Element is (<>); -- Element of the array, this must be a discrete type type Element_Sequence is array (Positive range <>) of Element; -- The array which is a sequence of element type Element_Set is private; -- This type represent a set of elements. This set does not defined a -- specific order of the elements. The conversion of a sequence to a -- set and membership tests in the set is performed using the routines -- To_Set and Is_In defined below. with function To_Set (Sequence : Element_Sequence) return Element_Set; -- Returns an Element_Set given an Element_Sequence. Duplicate elements -- can be ignored during this conversion. with function Is_In (Item : Element; Set : Element_Set) return Boolean; -- Returns True if Item is found in Set, False otherwise package GNAT.Array_Split is Index_Error : exception; -- Raised by all operations below if Index > Field_Count (S) type Separator_Mode is (Single, -- In this mode the array is cut at each element in the separator -- set. If two separators are contiguous the result at that position -- is an empty slice. Multiple -- In this mode contiguous separators are handled as a single -- separator and no empty slice is created. ); type Slice_Set is private; -- This type uses by-reference semantics. This is a set of slices as -- returned by Create or Set routines below. The abstraction represents -- a set of items. Each item is a part of the original string named a -- Slice. It is possible to access individual slices by using the Slice -- routine below. The first slice in the Set is at the position/index -- 1. The total number of slices in the set is returned by Slice_Count. procedure Create (S : out Slice_Set; From : Element_Sequence; Separators : Element_Sequence; Mode : Separator_Mode := Single); -- Create a cut array object. From is the source array, and Separators -- is a sequence of Element along which to split the array. The source -- array is sliced at separator boundaries. The separators are not -- included as part of the resulting slices. -- -- Note that if From is terminated by a separator an extra empty element -- is added to the slice set. If From only contains a separator the slice -- set contains two empty elements. procedure Create (S : out Slice_Set; From : Element_Sequence; Separators : Element_Set; Mode : Separator_Mode := Single); -- Same as above but using a Element_Set procedure Set (S : in out Slice_Set; Separators : Element_Sequence; Mode : Separator_Mode := Single); -- Change the set of separators. The source array will be split according -- to this new set of separators. procedure Set (S : in out Slice_Set; Separators : Element_Set; Mode : Separator_Mode := Single); -- Same as above but using a Element_Set type Slice_Number is new Natural; -- Type used to count number of slices function Slice_Count (S : Slice_Set) return Slice_Number; pragma Inline (Slice_Count); -- Returns the number of slices (fields) in S function Slice (S : Slice_Set; Index : Slice_Number) return Element_Sequence; pragma Inline (Slice); -- Returns the slice at position Index. First slice is 1. If Index is 0 -- the whole array is returned including the separators (this is the -- original source array). type Position is (Before, After); -- Used to designate position of separator type Slice_Separators is array (Position) of Element; -- Separators found before and after the slice Array_End : constant Element; -- This is the separator returned for the start or the end of the array function Separators (S : Slice_Set; Index : Slice_Number) return Slice_Separators; -- Returns the separators used to slice (front and back) the slice at -- position Index. For slices at start and end of the original array, the -- Array_End value is returned for the corresponding outer bound. In -- Multiple mode only the element closest to the slice is returned. -- if Index = 0, returns (Array_End, Array_End). type Separators_Indexes is array (Positive range <>) of Positive; function Separators (S : Slice_Set) return Separators_Indexes; -- Returns indexes of all separators used to slice original source array S private Array_End : constant Element := Element'First; type Element_Access is access Element_Sequence; type Counter is access Natural; type Indexes_Access is access Separators_Indexes; type Slice_Info is record Start : Positive; Stop : Natural; end record; -- Starting/Ending position of a slice. This does not include separators type Slices_Indexes is array (Slice_Number range <>) of Slice_Info; type Slices_Access is access Slices_Indexes; -- All indexes for fast access to slices. In the Slice_Set we keep only -- the original array and the indexes where each slice start and stop. type Slice_Set is new Ada.Finalization.Controlled with record Ref_Counter : Counter; -- Reference counter, by-address sem Source : Element_Access; N_Slice : Slice_Number := 0; -- Number of slices found Indexes : Indexes_Access; Slices : Slices_Access; end record; procedure Initialize (S : in out Slice_Set); procedure Adjust (S : in out Slice_Set); procedure Finalize (S : in out Slice_Set); end GNAT.Array_Split;
44.164894
78
0.578225
1d0870875518402f10c073a7ebd1f3ccca28e28a
5,224
ads
Ada
source/amf/utp/amf-internals-utp_timer_running_actions.ads
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
24
2016-11-29T06:59:41.000Z
2021-08-30T11:55:16.000Z
source/amf/utp/amf-internals-utp_timer_running_actions.ads
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
2
2019-01-16T05:15:20.000Z
2019-02-03T10:03:32.000Z
source/amf/utp/amf-internals-utp_timer_running_actions.ads
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
4
2017-07-18T07:11:05.000Z
2020-06-21T03:02:25.000Z
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2012, Vadim Godunko <[email protected]> -- -- 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 Vadim Godunko, IE 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. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ -- This file is generated, don't edit it. ------------------------------------------------------------------------------ with AMF.Internals.Utp_Elements; with AMF.UML.Read_Structural_Feature_Actions; with AMF.Utp.Timer_Running_Actions; with AMF.Visitors; package AMF.Internals.Utp_Timer_Running_Actions is type Utp_Timer_Running_Action_Proxy is limited new AMF.Internals.Utp_Elements.Utp_Element_Proxy and AMF.Utp.Timer_Running_Actions.Utp_Timer_Running_Action with null record; overriding function Get_Base_Read_Structural_Feature_Action (Self : not null access constant Utp_Timer_Running_Action_Proxy) return AMF.UML.Read_Structural_Feature_Actions.UML_Read_Structural_Feature_Action_Access; -- Getter of TimerRunningAction::base_ReadStructuralFeatureAction. -- overriding procedure Set_Base_Read_Structural_Feature_Action (Self : not null access Utp_Timer_Running_Action_Proxy; To : AMF.UML.Read_Structural_Feature_Actions.UML_Read_Structural_Feature_Action_Access); -- Setter of TimerRunningAction::base_ReadStructuralFeatureAction. -- overriding procedure Enter_Element (Self : not null access constant Utp_Timer_Running_Action_Proxy; Visitor : in out AMF.Visitors.Abstract_Visitor'Class; Control : in out AMF.Visitors.Traverse_Control); overriding procedure Leave_Element (Self : not null access constant Utp_Timer_Running_Action_Proxy; Visitor : in out AMF.Visitors.Abstract_Visitor'Class; Control : in out AMF.Visitors.Traverse_Control); overriding procedure Visit_Element (Self : not null access constant Utp_Timer_Running_Action_Proxy; Iterator : in out AMF.Visitors.Abstract_Iterator'Class; Visitor : in out AMF.Visitors.Abstract_Visitor'Class; Control : in out AMF.Visitors.Traverse_Control); end AMF.Internals.Utp_Timer_Running_Actions;
60.744186
96
0.523162
062155aa172c7e2b16f398daf344fdba3eb3cd71
4,109
adb
Ada
source/numerics/x86_64/a-nudsge.adb
ytomino/drake
4e4bdcd8b8e23a11a29b31d3a8861fdf60090ea2
[ "MIT" ]
33
2015-04-04T09:19:36.000Z
2021-11-10T05:33:34.000Z
source/numerics/x86_64/a-nudsge.adb
ytomino/drake
4e4bdcd8b8e23a11a29b31d3a8861fdf60090ea2
[ "MIT" ]
8
2017-11-14T13:05:07.000Z
2018-08-09T15:28:49.000Z
source/numerics/x86_64/a-nudsge.adb
ytomino/drake
4e4bdcd8b8e23a11a29b31d3a8861fdf60090ea2
[ "MIT" ]
9
2015-02-03T17:09:53.000Z
2021-11-12T01:16:05.000Z
with Ada.Unchecked_Conversion; package body Ada.Numerics.dSFMT.Generating is -- SSE2 version use type Interfaces.Unsigned_64; type v2df is array (0 .. 1) of Long_Float; for v2df'Alignment use 16; pragma Machine_Attribute (v2df, "vector_type"); pragma Machine_Attribute (v2df, "may_alias"); pragma Suppress_Initialization (v2df); function mm_add_pd (a, b : v2df) return v2df with Import, Convention => Intrinsic, External_Name => "__builtin_ia32_addpd"; function mm_sub_pd (a, b : v2df) return v2df with Import, Convention => Intrinsic, External_Name => "__builtin_ia32_subpd"; type v4si is array (0 .. 3) of Unsigned_32; for v4si'Alignment use 16; pragma Machine_Attribute (v4si, "vector_type"); pragma Machine_Attribute (v4si, "may_alias"); pragma Suppress_Initialization (v4si); function mm_shuffle_epi32 (a : v4si; b : Integer) return v4si with Import, Convention => Intrinsic, External_Name => "__builtin_ia32_pshufd"; type v2di is array (0 .. 1) of Unsigned_64; for v2di'Alignment use 16; pragma Machine_Attribute (v2di, "vector_type"); pragma Machine_Attribute (v2di, "may_alias"); pragma Suppress_Initialization (v2di); function mm_and_si128 (a, b : v2di) return v2di with Import, Convention => Intrinsic, External_Name => "__builtin_ia32_pand128"; function mm_or_si128 (a, b : v2di) return v2di with Import, Convention => Intrinsic, External_Name => "__builtin_ia32_por128"; function mm_xor_si128 (a, b : v2di) return v2di with Import, Convention => Intrinsic, External_Name => "__builtin_ia32_pxor128"; function mm_slli_epi64 (a : v2di; b : Integer) return v2di with Import, Convention => Intrinsic, External_Name => "__builtin_ia32_psllqi128"; function mm_srli_epi64 (a : v2di; b : Integer) return v2di with Import, Convention => Intrinsic, External_Name => "__builtin_ia32_psrlqi128"; function To_v2df is new Unchecked_Conversion (v2di, v2df); function To_v2df is new Unchecked_Conversion (w128_t, v2df); function To_v2di is new Unchecked_Conversion (v4si, v2di); function To_v2di is new Unchecked_Conversion (w128_t, v2di); function To_w128_t is new Unchecked_Conversion (v2df, w128_t); function To_w128_t is new Unchecked_Conversion (v2di, w128_t); SSE2_SHUFF : constant := 16#1b#; -- 1 in 64bit for sse2 sse2_int_one : constant v2di := (1, 1); -- 2.0 double for sse2 sse2_double_two : constant v2df := (2.0, 2.0); -- -1.0 double for sse2 sse2_double_m_one : constant v2df := (-1.0, -1.0); -- implementation procedure do_recursion ( r : aliased out w128_t; a, b : aliased w128_t; lung : aliased in out w128_t) is type v4si_Access is access all v4si; type w128_t_Access is access all w128_t; function To_v4si is new Unchecked_Conversion (w128_t_Access, v4si_Access); -- mask data for sse2 sse2_param_mask : constant v2di := (MSK1, MSK2); v, w, x, y, z : v2di; begin x := To_v2di (a); z := mm_slli_epi64 (x, SL1); y := To_v2di (mm_shuffle_epi32 (To_v4si (lung'Access).all, SSE2_SHUFF)); z := mm_xor_si128 (z, To_v2di (b)); y := mm_xor_si128 (y, z); v := mm_srli_epi64 (y, SR); w := mm_and_si128 (y, sse2_param_mask); v := mm_xor_si128 (v, x); v := mm_xor_si128 (v, w); r := To_w128_t (v); lung := To_w128_t (y); end do_recursion; procedure convert_c0o1 (w : aliased in out w128_t) is begin w := To_w128_t (mm_add_pd (To_v2df (w), sse2_double_m_one)); end convert_c0o1; procedure convert_o0c1 (w : aliased in out w128_t) is begin w := To_w128_t (mm_sub_pd (sse2_double_two, To_v2df (w))); end convert_o0c1; procedure convert_o0o1 (w : aliased in out w128_t) is begin w := To_w128_t ( mm_add_pd ( To_v2df (mm_or_si128 (To_v2di (w), sse2_int_one)), sse2_double_m_one)); end convert_o0o1; end Ada.Numerics.dSFMT.Generating;
35.730435
78
0.668046
41b69016917283d6590df1fe27d5097d8ac96117
1,018
ads
Ada
applet/aide/source/editors/aide-editor-of_subtype.ads
charlie5/aIDE
fab406dbcd9b72a4cb215ffebb05166c788d6365
[ "MIT" ]
3
2017-04-29T14:25:22.000Z
2017-09-29T10:15:28.000Z
applet/aide/source/editors/aide-editor-of_subtype.ads
charlie5/aIDE
fab406dbcd9b72a4cb215ffebb05166c788d6365
[ "MIT" ]
null
null
null
applet/aide/source/editors/aide-editor-of_subtype.ads
charlie5/aIDE
fab406dbcd9b72a4cb215ffebb05166c788d6365
[ "MIT" ]
null
null
null
with AdaM.a_Type.a_subtype, gtk.Widget; private with gtk.gEntry, gtk.Box, gtk.Label, gtk.Button; package aIDE.Editor.of_subtype is type Item is new Editor.item with private; type View is access all Item'Class; package Forge is function to_Editor (the_Target : in AdaM.a_Type.a_subtype.view) return View; end Forge; overriding function top_Widget (Self : in Item) return gtk.Widget.Gtk_Widget; private use gtk.Button, gtk.gEntry, gtk.Label, gtk.Box; type Item is new Editor.item with record Target : AdaM.a_Type.a_subtype.view; top_Box : gtk_Box; subtype_name_Entry : Gtk_Entry; type_name_Button : gtk_Button; first_Entry : Gtk_Entry; last_Entry : Gtk_Entry; rid_Button : gtk_Button; end record; overriding procedure freshen (Self : in out Item); end aIDE.Editor.of_subtype;
18.509091
82
0.603143
fbb43b7f81e665f1fcc716675cd15162493ff829
36,881
adb
Ada
firehog/ncurses/Ada95/ada_include/terminal_interface-curses-forms.adb
KipodAfterFree/KAF-2019-FireHog
5f6ee3c3c3329459bc9daeabc1a16ff4619508d9
[ "MIT" ]
1
2019-04-02T20:28:58.000Z
2019-04-02T20:28:58.000Z
Ada95/ada_include/terminal_interface-curses-forms.adb
mitchelhaan/ncurses
0b8ae5088202164ecc1769aa255ed1aad283d2ae
[ "X11" ]
null
null
null
Ada95/ada_include/terminal_interface-curses-forms.adb
mitchelhaan/ncurses
0b8ae5088202164ecc1769aa255ed1aad283d2ae
[ "X11" ]
1
2019-12-26T10:18:16.000Z
2019-12-26T10:18:16.000Z
------------------------------------------------------------------------------ -- -- -- GNAT ncurses Binding -- -- -- -- Terminal_Interface.Curses.Forms -- -- -- -- B O D Y -- -- -- ------------------------------------------------------------------------------ -- Copyright (c) 1998 Free Software Foundation, Inc. -- -- -- -- Permission is hereby granted, free of charge, to any person obtaining a -- -- copy of this software and associated documentation files (the -- -- "Software"), to deal in the Software without restriction, including -- -- without limitation the rights to use, copy, modify, merge, publish, -- -- distribute, distribute with modifications, sublicense, and/or sell -- -- copies of the Software, and to permit persons to whom the Software is -- -- furnished to do so, subject to the following conditions: -- -- -- -- The above copyright notice and this permission notice shall be included -- -- in all copies or substantial portions of the Software. -- -- -- -- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -- -- OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -- -- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -- -- IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -- -- DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -- -- OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR -- -- THE USE OR OTHER DEALINGS IN THE SOFTWARE. -- -- -- -- Except as contained in this notice, the name(s) of the above copyright -- -- holders shall not be used in advertising or otherwise to promote the -- -- sale, use or other dealings in this Software without prior written -- -- authorization. -- ------------------------------------------------------------------------------ -- Author: Juergen Pfeifer <[email protected]> 1996 -- Version Control: -- $Revision: 1.13 $ -- Binding Version 00.93 ------------------------------------------------------------------------------ with Ada.Unchecked_Deallocation; with Unchecked_Conversion; with Interfaces.C; use Interfaces.C; with Interfaces.C.Strings; use Interfaces.C.Strings; with Terminal_Interface.Curses.Aux; use Terminal_Interface.Curses.Aux; package body Terminal_Interface.Curses.Forms is ------------------------------------------------------------------------------ -- | -- | -- | -- subtype chars_ptr is Interfaces.C.Strings.chars_ptr; function FOS_2_CInt is new Unchecked_Conversion (Field_Option_Set, C_Int); function CInt_2_FOS is new Unchecked_Conversion (C_Int, Field_Option_Set); function FrmOS_2_CInt is new Unchecked_Conversion (Form_Option_Set, C_Int); function CInt_2_FrmOS is new Unchecked_Conversion (C_Int, Form_Option_Set); procedure Request_Name (Key : in Form_Request_Code; Name : out String) is function Form_Request_Name (Key : C_Int) return chars_ptr; pragma Import (C, Form_Request_Name, "form_request_name"); begin Fill_String (Form_Request_Name (C_Int (Key)), Name); end Request_Name; function Request_Name (Key : Form_Request_Code) return String is function Form_Request_Name (Key : C_Int) return chars_ptr; pragma Import (C, Form_Request_Name, "form_request_name"); begin return Fill_String (Form_Request_Name (C_Int (Key))); end Request_Name; ------------------------------------------------------------------------------ -- | -- | -- | -- | -- |===================================================================== -- | man page form_field_new.3x -- |===================================================================== -- | -- | -- | function Create (Height : Line_Count; Width : Column_Count; Top : Line_Position; Left : Column_Position; Off_Screen : Natural := 0; More_Buffers : Buffer_Number := Buffer_Number'First) return Field is function Newfield (H, W, T, L, O, M : C_Int) return Field; pragma Import (C, Newfield, "new_field"); Fld : constant Field := Newfield (C_Int (Height), C_Int (Width), C_Int (Top), C_Int (Left), C_Int (Off_Screen), C_Int (More_Buffers)); begin if Fld = Null_Field then raise Form_Exception; end if; return Fld; end Create; -- | -- | -- | procedure Delete (Fld : in out Field) is function Free_Field (Fld : Field) return C_Int; pragma Import (C, Free_Field, "free_field"); Res : Eti_Error; begin Res := Free_Field (Fld); if Res /= E_Ok then Eti_Exception (Res); end if; Fld := Null_Field; end Delete; -- | -- | -- | function Duplicate (Fld : Field; Top : Line_Position; Left : Column_Position) return Field is function Dup_Field (Fld : Field; Top : C_Int; Left : C_Int) return Field; pragma Import (C, Dup_Field, "dup_field"); F : constant Field := Dup_Field (Fld, C_Int (Top), C_Int (Left)); begin if F = Null_Field then raise Form_Exception; end if; return F; end Duplicate; -- | -- | -- | function Link (Fld : Field; Top : Line_Position; Left : Column_Position) return Field is function Lnk_Field (Fld : Field; Top : C_Int; Left : C_Int) return Field; pragma Import (C, Lnk_Field, "link_field"); F : constant Field := Lnk_Field (Fld, C_Int (Top), C_Int (Left)); begin if F = Null_Field then raise Form_Exception; end if; return F; end Link; -- | -- |===================================================================== -- | man page form_field_just.3x -- |===================================================================== -- | -- | -- | procedure Set_Justification (Fld : in Field; Just : in Field_Justification := None) is function Set_Field_Just (Fld : Field; Just : C_Int) return C_Int; pragma Import (C, Set_Field_Just, "set_field_just"); Res : constant Eti_Error := Set_Field_Just (Fld, C_Int (Field_Justification'Pos (Just))); begin if Res /= E_Ok then Eti_Exception (Res); end if; end Set_Justification; -- | -- | -- | function Get_Justification (Fld : Field) return Field_Justification is function Field_Just (Fld : Field) return C_Int; pragma Import (C, Field_Just, "field_just"); begin return Field_Justification'Val (Field_Just (Fld)); end Get_Justification; -- | -- |===================================================================== -- | man page form_field_buffer.3x -- |===================================================================== -- | -- | -- | procedure Set_Buffer (Fld : in Field; Buffer : in Buffer_Number := Buffer_Number'First; Str : in String) is type Char_Ptr is access all Interfaces.C.Char; function Set_Fld_Buffer (Fld : Field; Bufnum : C_Int; S : Char_Ptr) return C_Int; pragma Import (C, Set_Fld_Buffer, "set_field_buffer"); Txt : char_array (0 .. Str'Length); Len : size_t; Res : Eti_Error; begin To_C (Str, Txt, Len); Res := Set_Fld_Buffer (Fld, C_Int (Buffer), Txt (Txt'First)'Access); if Res /= E_Ok then Eti_Exception (Res); end if; end Set_Buffer; -- | -- | -- | procedure Get_Buffer (Fld : in Field; Buffer : in Buffer_Number := Buffer_Number'First; Str : out String) is function Field_Buffer (Fld : Field; B : C_Int) return chars_ptr; pragma Import (C, Field_Buffer, "field_buffer"); begin Fill_String (Field_Buffer (Fld, C_Int (Buffer)), Str); end Get_Buffer; function Get_Buffer (Fld : in Field; Buffer : in Buffer_Number := Buffer_Number'First) return String is function Field_Buffer (Fld : Field; B : C_Int) return chars_ptr; pragma Import (C, Field_Buffer, "field_buffer"); begin return Fill_String (Field_Buffer (Fld, C_Int (Buffer))); end Get_Buffer; -- | -- | -- | procedure Set_Status (Fld : in Field; Status : in Boolean := True) is function Set_Fld_Status (Fld : Field; St : C_Int) return C_Int; pragma Import (C, Set_Fld_Status, "set_field_status"); Res : constant Eti_Error := Set_Fld_Status (Fld, Boolean'Pos (Status)); begin if Res /= E_Ok then raise Form_Exception; end if; end Set_Status; -- | -- | -- | function Changed (Fld : Field) return Boolean is function Field_Status (Fld : Field) return C_Int; pragma Import (C, Field_Status, "field_status"); Res : constant C_Int := Field_Status (Fld); begin if Res = Curses_False then return False; else return True; end if; end Changed; -- | -- | -- | procedure Set_Maximum_Size (Fld : in Field; Max : in Natural := 0) is function Set_Field_Max (Fld : Field; M : C_Int) return C_Int; pragma Import (C, Set_Field_Max, "set_max_field"); Res : constant Eti_Error := Set_Field_Max (Fld, C_Int (Max)); begin if Res /= E_Ok then Eti_Exception (Res); end if; end Set_Maximum_Size; -- | -- |===================================================================== -- | man page form_field_opts.3x -- |===================================================================== -- | -- | -- | procedure Normalize_Field_Options (Options : in out C_Int); pragma Import (C, Normalize_Field_Options, "_nc_ada_normalize_field_opts"); procedure Set_Options (Fld : in Field; Options : in Field_Option_Set) is function Set_Field_Opts (Fld : Field; Opt : C_Int) return C_Int; pragma Import (C, Set_Field_Opts, "set_field_opts"); Opt : C_Int := FOS_2_CInt (Options); Res : Eti_Error; begin Normalize_Field_Options (Opt); Res := Set_Field_Opts (Fld, Opt); if Res /= E_Ok then Eti_Exception (Res); end if; end Set_Options; -- | -- | -- | procedure Switch_Options (Fld : in Field; Options : in Field_Option_Set; On : Boolean := True) is function Field_Opts_On (Fld : Field; Opt : C_Int) return C_Int; pragma Import (C, Field_Opts_On, "field_opts_on"); function Field_Opts_Off (Fld : Field; Opt : C_Int) return C_Int; pragma Import (C, Field_Opts_Off, "field_opts_off"); Err : Eti_Error; Opt : C_Int := FOS_2_CInt (Options); begin Normalize_Field_Options (Opt); if On then Err := Field_Opts_On (Fld, Opt); else Err := Field_Opts_Off (Fld, Opt); end if; if Err /= E_Ok then Eti_Exception (Err); end if; end Switch_Options; -- | -- | -- | procedure Get_Options (Fld : in Field; Options : out Field_Option_Set) is function Field_Opts (Fld : Field) return C_Int; pragma Import (C, Field_Opts, "field_opts"); Res : C_Int := Field_Opts (Fld); begin Normalize_Field_Options (Res); Options := CInt_2_FOS (Res); end Get_Options; -- | -- | -- | function Get_Options (Fld : Field := Null_Field) return Field_Option_Set is Fos : Field_Option_Set; begin Get_Options (Fld, Fos); return Fos; end Get_Options; -- | -- |===================================================================== -- | man page form_field_attributes.3x -- |===================================================================== -- | -- | -- | procedure Set_Foreground (Fld : in Field; Fore : in Character_Attribute_Set := Normal_Video; Color : in Color_Pair := Color_Pair'First) is function Set_Field_Fore (Fld : Field; Attr : C_Int) return C_Int; pragma Import (C, Set_Field_Fore, "set_field_fore"); Ch : constant Attributed_Character := (Ch => Character'First, Color => Color, Attr => Fore); Res : constant Eti_Error := Set_Field_Fore (Fld, Chtype_To_CInt (Ch)); begin if Res /= E_Ok then Eti_Exception (Res); end if; end Set_Foreground; -- | -- | -- | procedure Foreground (Fld : in Field; Fore : out Character_Attribute_Set) is function Field_Fore (Fld : Field) return C_Int; pragma Import (C, Field_Fore, "field_fore"); begin Fore := CInt_To_Chtype (Field_Fore (Fld)).Attr; end Foreground; procedure Foreground (Fld : in Field; Fore : out Character_Attribute_Set; Color : out Color_Pair) is function Field_Fore (Fld : Field) return C_Int; pragma Import (C, Field_Fore, "field_fore"); begin Fore := CInt_To_Chtype (Field_Fore (Fld)).Attr; Color := CInt_To_Chtype (Field_Fore (Fld)).Color; end Foreground; -- | -- | -- | procedure Set_Background (Fld : in Field; Back : in Character_Attribute_Set := Normal_Video; Color : in Color_Pair := Color_Pair'First) is function Set_Field_Back (Fld : Field; Attr : C_Int) return C_Int; pragma Import (C, Set_Field_Back, "set_field_back"); Ch : constant Attributed_Character := (Ch => Character'First, Color => Color, Attr => Back); Res : constant Eti_Error := Set_Field_Back (Fld, Chtype_To_CInt (Ch)); begin if Res /= E_Ok then Eti_Exception (Res); end if; end Set_Background; -- | -- | -- | procedure Background (Fld : in Field; Back : out Character_Attribute_Set) is function Field_Back (Fld : Field) return C_Int; pragma Import (C, Field_Back, "field_back"); begin Back := CInt_To_Chtype (Field_Back (Fld)).Attr; end Background; procedure Background (Fld : in Field; Back : out Character_Attribute_Set; Color : out Color_Pair) is function Field_Back (Fld : Field) return C_Int; pragma Import (C, Field_Back, "field_back"); begin Back := CInt_To_Chtype (Field_Back (Fld)).Attr; Color := CInt_To_Chtype (Field_Back (Fld)).Color; end Background; -- | -- | -- | procedure Set_Pad_Character (Fld : in Field; Pad : in Character := Space) is function Set_Field_Pad (Fld : Field; Ch : C_Int) return C_Int; pragma Import (C, Set_Field_Pad, "set_field_pad"); Res : constant Eti_Error := Set_Field_Pad (Fld, C_Int (Character'Pos (Pad))); begin if Res /= E_Ok then Eti_Exception (Res); end if; end Set_Pad_Character; -- | -- | -- | procedure Pad_Character (Fld : in Field; Pad : out Character) is function Field_Pad (Fld : Field) return C_Int; pragma Import (C, Field_Pad, "field_pad"); begin Pad := Character'Val (Field_Pad (Fld)); end Pad_Character; -- | -- |===================================================================== -- | man page form_field_info.3x -- |===================================================================== -- | -- | -- | procedure Info (Fld : in Field; Lines : out Line_Count; Columns : out Column_Count; First_Row : out Line_Position; First_Column : out Column_Position; Off_Screen : out Natural; Additional_Buffers : out Buffer_Number) is type C_Int_Access is access all C_Int; function Fld_Info (Fld : Field; L, C, Fr, Fc, Os, Ab : C_Int_Access) return C_Int; pragma Import (C, Fld_Info, "field_info"); L, C, Fr, Fc, Os, Ab : aliased C_Int; Res : constant Eti_Error := Fld_Info (Fld, L'Access, C'Access, Fr'Access, Fc'Access, Os'Access, Ab'Access); begin if Res /= E_Ok then Eti_Exception (Res); else Lines := Line_Count (L); Columns := Column_Count (C); First_Row := Line_Position (Fr); First_Column := Column_Position (Fc); Off_Screen := Natural (Os); Additional_Buffers := Buffer_Number (Ab); end if; end Info; -- | -- | -- | procedure Dynamic_Info (Fld : in Field; Lines : out Line_Count; Columns : out Column_Count; Max : out Natural) is type C_Int_Access is access all C_Int; function Dyn_Info (Fld : Field; L, C, M : C_Int_Access) return C_Int; pragma Import (C, Dyn_Info, "dynamic_field_info"); L, C, M : aliased C_Int; Res : constant Eti_Error := Dyn_Info (Fld, L'Access, C'Access, M'Access); begin if Res /= E_Ok then Eti_Exception (Res); else Lines := Line_Count (L); Columns := Column_Count (C); Max := Natural (M); end if; end Dynamic_Info; -- | -- |===================================================================== -- | man page form_win.3x -- |===================================================================== -- | -- | -- | procedure Set_Window (Frm : in Form; Win : in Window) is function Set_Form_Win (Frm : Form; Win : Window) return C_Int; pragma Import (C, Set_Form_Win, "set_form_win"); Res : constant Eti_Error := Set_Form_Win (Frm, Win); begin if Res /= E_Ok then Eti_Exception (Res); end if; end Set_Window; -- | -- | -- | function Get_Window (Frm : Form) return Window is function Form_Win (Frm : Form) return Window; pragma Import (C, Form_Win, "form_win"); W : constant Window := Form_Win (Frm); begin return W; end Get_Window; -- | -- | -- | procedure Set_Sub_Window (Frm : in Form; Win : in Window) is function Set_Form_Sub (Frm : Form; Win : Window) return C_Int; pragma Import (C, Set_Form_Sub, "set_form_sub"); Res : constant Eti_Error := Set_Form_Sub (Frm, Win); begin if Res /= E_Ok then Eti_Exception (Res); end if; end Set_Sub_Window; -- | -- | -- | function Get_Sub_Window (Frm : Form) return Window is function Form_Sub (Frm : Form) return Window; pragma Import (C, Form_Sub, "form_sub"); W : constant Window := Form_Sub (Frm); begin return W; end Get_Sub_Window; -- | -- | -- | procedure Scale (Frm : in Form; Lines : out Line_Count; Columns : out Column_Count) is type C_Int_Access is access all C_Int; function M_Scale (Frm : Form; Yp, Xp : C_Int_Access) return C_Int; pragma Import (C, M_Scale, "scale_form"); X, Y : aliased C_Int; Res : constant Eti_Error := M_Scale (Frm, Y'Access, X'Access); begin if Res /= E_Ok then Eti_Exception (Res); end if; Lines := Line_Count (Y); Columns := Column_Count (X); end Scale; -- | -- |===================================================================== -- | man page menu_hook.3x -- |===================================================================== -- | -- | -- | procedure Set_Field_Init_Hook (Frm : in Form; Proc : in Form_Hook_Function) is function Set_Field_Init (Frm : Form; Proc : Form_Hook_Function) return C_Int; pragma Import (C, Set_Field_Init, "set_field_init"); Res : constant Eti_Error := Set_Field_Init (Frm, Proc); begin if Res /= E_Ok then Eti_Exception (Res); end if; end Set_Field_Init_Hook; -- | -- | -- | procedure Set_Field_Term_Hook (Frm : in Form; Proc : in Form_Hook_Function) is function Set_Field_Term (Frm : Form; Proc : Form_Hook_Function) return C_Int; pragma Import (C, Set_Field_Term, "set_field_term"); Res : constant Eti_Error := Set_Field_Term (Frm, Proc); begin if Res /= E_Ok then Eti_Exception (Res); end if; end Set_Field_Term_Hook; -- | -- | -- | procedure Set_Form_Init_Hook (Frm : in Form; Proc : in Form_Hook_Function) is function Set_Form_Init (Frm : Form; Proc : Form_Hook_Function) return C_Int; pragma Import (C, Set_Form_Init, "set_form_init"); Res : constant Eti_Error := Set_Form_Init (Frm, Proc); begin if Res /= E_Ok then Eti_Exception (Res); end if; end Set_Form_Init_Hook; -- | -- | -- | procedure Set_Form_Term_Hook (Frm : in Form; Proc : in Form_Hook_Function) is function Set_Form_Term (Frm : Form; Proc : Form_Hook_Function) return C_Int; pragma Import (C, Set_Form_Term, "set_form_term"); Res : constant Eti_Error := Set_Form_Term (Frm, Proc); begin if Res /= E_Ok then Eti_Exception (Res); end if; end Set_Form_Term_Hook; -- | -- |===================================================================== -- | man page form_fields.3x -- |===================================================================== -- | -- | -- | procedure Redefine (Frm : in Form; Flds : in Field_Array_Access) is function Set_Frm_Fields (Frm : Form; Items : System.Address) return C_Int; pragma Import (C, Set_Frm_Fields, "set_form_fields"); Res : Eti_Error; begin pragma Assert (Flds (Flds'Last) = Null_Field); if Flds (Flds'Last) /= Null_Field then raise Form_Exception; else Res := Set_Frm_Fields (Frm, Flds (Flds'First)'Address); if Res /= E_Ok then Eti_Exception (Res); end if; end if; end Redefine; -- | -- | -- | function Fields (Frm : Form; Index : Positive) return Field is function F_Fields (Frm : Form; Idx : C_Int) return Field; pragma Import (C, F_Fields, "_nc_get_field"); begin if Frm = Null_Form or else Index not in 1 .. Field_Count (Frm) then raise Form_Exception; else return F_Fields (Frm, C_Int (Index) - 1); end if; end Fields; -- | -- | -- | function Field_Count (Frm : Form) return Natural is function Count (Frm : Form) return C_Int; pragma Import (C, Count, "field_count"); begin return Natural (Count (Frm)); end Field_Count; -- | -- | -- | procedure Move (Fld : in Field; Line : in Line_Position; Column : in Column_Position) is function Move (Fld : Field; L, C : C_Int) return C_Int; pragma Import (C, Move, "move_field"); Res : constant Eti_Error := Move (Fld, C_Int (Line), C_Int (Column)); begin if Res /= E_Ok then Eti_Exception (Res); end if; end Move; -- | -- |===================================================================== -- | man page form_new.3x -- |===================================================================== -- | -- | -- | function Create (Fields : Field_Array_Access) return Form is function NewForm (Fields : System.Address) return Form; pragma Import (C, NewForm, "new_form"); M : Form; begin pragma Assert (Fields (Fields'Last) = Null_Field); if Fields (Fields'Last) /= Null_Field then raise Form_Exception; else M := NewForm (Fields (Fields'First)'Address); if M = Null_Form then raise Form_Exception; end if; return M; end if; end Create; -- | -- | -- | procedure Delete (Frm : in out Form) is function Free (Frm : Form) return C_Int; pragma Import (C, Free, "free_form"); Res : constant Eti_Error := Free (Frm); begin if Res /= E_Ok then Eti_Exception (Res); end if; Frm := Null_Form; end Delete; -- | -- |===================================================================== -- | man page form_opts.3x -- |===================================================================== -- | -- | -- | procedure Normalize_Form_Options (Options : in out C_Int); pragma Import (C, Normalize_Form_Options, "_nc_ada_normalize_form_opts"); procedure Set_Options (Frm : in Form; Options : in Form_Option_Set) is function Set_Form_Opts (Frm : Form; Opt : C_Int) return C_Int; pragma Import (C, Set_Form_Opts, "set_form_opts"); Opt : C_Int := FrmOS_2_CInt (Options); Res : Eti_Error; begin Normalize_Form_Options (Opt); Res := Set_Form_Opts (Frm, Opt); if Res /= E_Ok then Eti_Exception (Res); end if; end Set_Options; -- | -- | -- | procedure Switch_Options (Frm : in Form; Options : in Form_Option_Set; On : Boolean := True) is function Form_Opts_On (Frm : Form; Opt : C_Int) return C_Int; pragma Import (C, Form_Opts_On, "form_opts_on"); function Form_Opts_Off (Frm : Form; Opt : C_Int) return C_Int; pragma Import (C, Form_Opts_Off, "form_opts_off"); Err : Eti_Error; Opt : C_Int := FrmOS_2_CInt (Options); begin Normalize_Form_Options (Opt); if On then Err := Form_Opts_On (Frm, Opt); else Err := Form_Opts_Off (Frm, Opt); end if; if Err /= E_Ok then Eti_Exception (Err); end if; end Switch_Options; -- | -- | -- | procedure Get_Options (Frm : in Form; Options : out Form_Option_Set) is function Form_Opts (Frm : Form) return C_Int; pragma Import (C, Form_Opts, "form_opts"); Res : C_Int := Form_Opts (Frm); begin Normalize_Form_Options (Res); Options := CInt_2_FrmOS (Res); end Get_Options; -- | -- | -- | function Get_Options (Frm : Form := Null_Form) return Form_Option_Set is Fos : Form_Option_Set; begin Get_Options (Frm, Fos); return Fos; end Get_Options; -- | -- |===================================================================== -- | man page form_post.3x -- |===================================================================== -- | -- | -- | procedure Post (Frm : in Form; Post : in Boolean := True) is function M_Post (Frm : Form) return C_Int; pragma Import (C, M_Post, "post_form"); function M_Unpost (Frm : Form) return C_Int; pragma Import (C, M_Unpost, "unpost_form"); Res : Eti_Error; begin if Post then Res := M_Post (Frm); else Res := M_Unpost (Frm); end if; if Res /= E_Ok then Eti_Exception (Res); end if; end Post; -- | -- |===================================================================== -- | man page form_cursor.3x -- |===================================================================== -- | -- | -- | procedure Position_Cursor (Frm : Form) is function Pos_Form_Cursor (Frm : Form) return C_Int; pragma Import (C, Pos_Form_Cursor, "pos_form_cursor"); Res : constant Eti_Error := Pos_Form_Cursor (Frm); begin if Res /= E_Ok then Eti_Exception (Res); end if; end Position_Cursor; -- | -- |===================================================================== -- | man page form_data.3x -- |===================================================================== -- | -- | -- | function Data_Ahead (Frm : Form) return Boolean is function Ahead (Frm : Form) return C_Int; pragma Import (C, Ahead, "data_ahead"); Res : constant C_Int := Ahead (Frm); begin if Res = Curses_False then return False; else return True; end if; end Data_Ahead; -- | -- | -- | function Data_Behind (Frm : Form) return Boolean is function Behind (Frm : Form) return C_Int; pragma Import (C, Behind, "data_behind"); Res : constant C_Int := Behind (Frm); begin if Res = Curses_False then return False; else return True; end if; end Data_Behind; -- | -- |===================================================================== -- | man page form_driver.3x -- |===================================================================== -- | -- | -- | function Driver (Frm : Form; Key : Key_Code) return Driver_Result is function Frm_Driver (Frm : Form; Key : C_Int) return C_Int; pragma Import (C, Frm_Driver, "form_driver"); R : Eti_Error := Frm_Driver (Frm, C_Int (Key)); begin if R /= E_Ok then if R = E_Unknown_Command then return Unknown_Request; elsif R = E_Invalid_Field then return Invalid_Field; elsif R = E_Request_Denied then return Request_Denied; else Eti_Exception (R); return Form_Ok; end if; else return Form_Ok; end if; end Driver; -- | -- |===================================================================== -- | man page form_page.3x -- |===================================================================== -- | -- | -- | procedure Set_Current (Frm : in Form; Fld : in Field) is function Set_Current_Fld (Frm : Form; Fld : Field) return C_Int; pragma Import (C, Set_Current_Fld, "set_current_field"); Res : constant Eti_Error := Set_Current_Fld (Frm, Fld); begin if Res /= E_Ok then Eti_Exception (Res); end if; end Set_Current; -- | -- | -- | function Current (Frm : in Form) return Field is function Current_Fld (Frm : Form) return Field; pragma Import (C, Current_Fld, "current_field"); Fld : constant Field := Current_Fld (Frm); begin if Fld = Null_Field then raise Form_Exception; end if; return Fld; end Current; -- | -- | -- | procedure Set_Page (Frm : in Form; Page : in Page_Number := Page_Number'First) is function Set_Frm_Page (Frm : Form; Pg : C_Int) return C_Int; pragma Import (C, Set_Frm_Page, "set_form_page"); Res : constant Eti_Error := Set_Frm_Page (Frm, C_Int (Page)); begin if Res /= E_Ok then Eti_Exception (Res); end if; end Set_Page; -- | -- | -- | function Page (Frm : Form) return Page_Number is function Get_Page (Frm : Form) return C_Int; pragma Import (C, Get_Page, "form_page"); P : constant C_Int := Get_Page (Frm); begin if P < 0 then raise Form_Exception; else return Page_Number (P); end if; end Page; function Get_Index (Fld : Field) return Positive is function Get_Fieldindex (Fld : Field) return C_Int; pragma Import (C, Get_Fieldindex, "field_index"); Res : constant C_Int := Get_Fieldindex (Fld); begin if Res = Curses_Err then raise Form_Exception; end if; return Positive (Natural (Res) + Positive'First); end Get_Index; -- | -- |===================================================================== -- | man page form_new_page.3x -- |===================================================================== -- | -- | -- | procedure Set_New_Page (Fld : in Field; New_Page : in Boolean := True) is function Set_Page (Fld : Field; Flg : C_Int) return C_Int; pragma Import (C, Set_Page, "set_new_page"); Res : constant Eti_Error := Set_Page (Fld, Boolean'Pos (New_Page)); begin if Res /= E_Ok then Eti_Exception (Res); end if; end Set_New_Page; -- | -- | -- | function Is_New_Page (Fld : Field) return Boolean is function Is_New (Fld : Field) return C_Int; pragma Import (C, Is_New, "new_page"); Res : constant C_Int := Is_New (Fld); begin if Res = Curses_False then return False; else return True; end if; end Is_New_Page; procedure Free (FA : in out Field_Array_Access; Free_Fields : in Boolean := False) is procedure Release is new Ada.Unchecked_Deallocation (Field_Array, Field_Array_Access); begin if FA /= null and then Free_Fields then for I in FA'First .. (FA'Last - 1) loop if (FA (I) /= Null_Field) then Delete (FA (I)); end if; end loop; end if; Release (FA); end Free; -- |===================================================================== function Default_Field_Options return Field_Option_Set is begin return Get_Options (Null_Field); end Default_Field_Options; function Default_Form_Options return Form_Option_Set is begin return Get_Options (Null_Form); end Default_Form_Options; end Terminal_Interface.Curses.Forms;
31.793966
78
0.482362
5938763d4e66bb2e2a18c63232456aba339501a7
3,611
adb
Ada
Lab6/lab6.adb
albinjal/ada_basic
2ee5963f18496870ee9efc2e6466917c87482ddc
[ "MIT" ]
3
2020-01-27T10:04:20.000Z
2022-02-11T23:17:00.000Z
Lab6/lab6.adb
albinjal/ada_basic
2ee5963f18496870ee9efc2e6466917c87482ddc
[ "MIT" ]
null
null
null
Lab6/lab6.adb
albinjal/ada_basic
2ee5963f18496870ee9efc2e6466917c87482ddc
[ "MIT" ]
null
null
null
with Ada.Strings.Unbounded; use Ada.Strings.Unbounded; with Ada.Text_IO; use Ada.Text_IO; with Text_IO.Unbounded_IO; use Text_IO.Unbounded_IO; -- Temporär, ta bort när den inte behövs längre with Ada.Integer_Text_IO; use Ada.Integer_Text_IO; procedure Lab6 is Input, Output : File_Type; I: Integer; WasLastTab: Integer; WasLastSpace: Integer; TmpStr: Unbounded_String; begin Open (File => Input, Mode => In_File, Name => "REG.BIN"); Create (File => Output, Mode => Out_File, Name => "output.txt"); -- Denna loop loopar igenom filen rad för rad loop declare -- Deklarera en variabel som håller varje rad i minnet varje gång loopen körs InputLine : String := Get_Line (Input); begin I := 0; WasLastTab := 0; WasLastSpace := 0; TmpStr := To_Unbounded_String(""); -- Loopa igenom varje tecken på raden och hämta ut varje element när flera mellanrum kommer i följd Put("---------------------------------------------"); New_Line; for I in 1..InputLine'Last loop -- Kolla om tecknet är mellanslag --Put(InputLine(I)); --Put(" > "); --Put( Character'Pos(InputLine(I)) ); --New_Line; if(Character'Pos(InputLine(I)) = 32) then -- Tecknet var mellanrum! -- Kolla om nästa tecknen också är mellanrum if(Character'Pos(InputLine(I+1)) = 32) then -- Vi ska avsluta elementet! WasLastTab := 1; else -- Nästa tecken var inte ett mellanrum -- Kolla så att föregående tecknen inte var ett mellanrum if(Character'Pos(InputLine(I-1)) /= 32) then -- Endast ett mellanrum, del av elementet! Append(TmpStr, " "); --Put("SPACE"); New_Line; else -- Föregående tecken var ett mellanrum, avsluta elementet! New_Line; Put("|"); Put(TmpStr); Put("|"); New_Line;New_Line; --Put("_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_"); -- Töm elementet TmpStr := To_Unbounded_String(""); ----New_Line; end if; end if; else WasLastTab := 0; -- Put( String(I) ); case Character'Pos(InputLine(I)) is when 0..32 => null; Put("->"); Put( Character'Pos(InputLine(I)) ); New_Line; when 196 => Append(TmpStr, "Ä"); Put( "Ä" ); Put(" === "); Put( Character'Pos( InputLine(I) ) ); New_Line; when 197 => Append(TmpStr, "Å"); Put( "Å" ); Put(" === "); Put( Character'Pos( InputLine(I) ) ); New_Line; when 214 => Append(TmpStr, "Ö"); Put( "Ö" ); Put(" === "); Put( Character'Pos( InputLine(I) ) ); New_Line; when 228 => Append(TmpStr, "ä"); Put( "ä" ); Put(" === "); Put( Character'Pos( InputLine(I) ) ); New_Line; when 229 => Append(TmpStr, "å"); Put( "å" ); Put(" === "); Put( Character'Pos( InputLine(I) ) ); New_Line; when 246 => Append(TmpStr, "å"); Put( "å" ); Put(" === "); Put( Character'Pos( InputLine(I) ) ); New_Line; when others => Append(TmpStr, InputLine(I)); --Put( InputLine(I) ); --Put(" === "); --Put( Character'Pos( InputLine(I) ) ); --New_Line; end case; end if; end loop; -- Put_Line (Output, Line); --Put(Line); --Skip_Line; end; end loop; -- Close(Input); -- Close(Output); exception when End_Error => if Is_Open(Input) then Close (Input); end if; if Is_Open(Output) then Close (Output); end if; end Lab6;
29.842975
104
0.545832
a1471db6f3b1e42f28569f79fd031e1ff79bacfd
1,310
ads
Ada
resources/scripts/scrape/baidu.ads
shahriarr-sec/Amass
cba7aa618cde1e2cbb3df673801065011918ce7f
[ "Apache-2.0" ]
1
2021-02-04T22:55:20.000Z
2021-02-04T22:55:20.000Z
resources/scripts/scrape/baidu.ads
shahriarr-sec/Amass
cba7aa618cde1e2cbb3df673801065011918ce7f
[ "Apache-2.0" ]
null
null
null
resources/scripts/scrape/baidu.ads
shahriarr-sec/Amass
cba7aa618cde1e2cbb3df673801065011918ce7f
[ "Apache-2.0" ]
null
null
null
-- Copyright 2017 Jeff Foley. All rights reserved. -- Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file. local url = require("url") local json = require("json") name = "Baidu" type = "scrape" function start() setratelimit(1) end function vertical(ctx, domain) apirequest(ctx, domain) doscrape(ctx, domain) end function doscrape(ctx, domain) for i=1,10 do checkratelimit() local ok = scrape(ctx, {['url']=buildurl(domain, i)}) if not ok then break end end end function buildurl(domain, pagenum) local query = "site:" .. domain .. " -site:www." .. domain local params = { wd=query, oq=query, pn=tostring(pagenum), } return "https://www.baidu.com/s?" .. url.build_query_string(params) end function apirequest(ctx, domain) local page, err = request({['url']=apiurl(domain)}) if (err ~= nil and err ~= "") then return end local resp = json.decode(page) if (resp == nil or resp.code ~= 0 or #resp['data'] == 0) then return end for i, tb in pairs(resp.data) do newname(ctx, tb.domain) end end function apiurl(domain) return "https://ce.baidu.com/index/getRelatedSites?site_address=" .. domain end
21.833333
97
0.619847
292ef85781c667ee17ea58f9acc5502afbdc6dc3
3,563
adb
Ada
bb-runtimes/arm/lm3s/setup_pll.adb
JCGobbi/Nucleo-STM32F334R8
2a0b1b4b2664c92773703ac5e95dcb71979d051c
[ "BSD-3-Clause" ]
null
null
null
bb-runtimes/arm/lm3s/setup_pll.adb
JCGobbi/Nucleo-STM32F334R8
2a0b1b4b2664c92773703ac5e95dcb71979d051c
[ "BSD-3-Clause" ]
null
null
null
bb-runtimes/arm/lm3s/setup_pll.adb
JCGobbi/Nucleo-STM32F334R8
2a0b1b4b2664c92773703ac5e95dcb71979d051c
[ "BSD-3-Clause" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- Copyright (C) 2012, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ pragma Restrictions (No_Elaboration_Code); with Interfaces; use Interfaces; with System; procedure Setup_Pll is RIS : Unsigned_32; for RIS'Address use System'To_Address (16#400f_e000# + 16#50#); pragma Import (Ada, RIS); pragma Volatile (RIS); RCC : Unsigned_32; for RCC'Address use System'To_Address (16#400f_e000# + 16#60#); pragma Import (Ada, RCC); pragma Volatile (RCC); RCC_Val : Unsigned_32; begin -- PLL configuration. See 5.3 Initialization and Configuration -- We are slightly more careful not to disrupt jtag probe -- 1. Bypass the PLL and system clock divider, enable main oscillator, -- clear USESYS. RCC_Val := RCC; RCC_Val := (RCC_Val and not 16#40_0001#) or 16#0800#; RCC := RCC_Val; -- 2. Select the crystal value (8Mhz), clear PWRDWN RCC_Val := (RCC_Val and not 16#23c0#) or 16#0380#; RCC := RCC_Val; -- 4. Wait a little bit for I in 1 .. 4096 loop null; end loop; -- 4. Wait for the PLL to lock while (RIS and 16#40#) = 0 loop null; end loop; -- 3. Select the desired system divider (50Mhz) RCC_Val := (RCC_Val and not 16#0780_0000#) or 16#0180_0000#; -- 50Mhz RCC := RCC_Val; -- 5. Enable use of the PLL by clearing the BYPASS bit, disable internal -- oscillator RCC_Val := RCC_Val and not 16#0800#; -- BYPASS RCC_Val := RCC_Val or 16#40_0000#; -- USESYS RCC := RCC_Val; RCC_Val := RCC_Val or 16#02#; -- IOSCDIS RCC := RCC_Val; end Setup_Pll;
43.45122
78
0.511928
592cd26b51b7d9b2c676417323f7d239b472a314
743
ads
Ada
tests/goals-test_data-tests.ads
thindil/steamsky
d5d7fea622f7994c91017c4cd7ba5e188153556c
[ "TCL", "MIT" ]
80
2017-04-08T23:14:07.000Z
2022-02-10T22:30:51.000Z
tests/goals-test_data-tests.ads
thindil/steamsky
d5d7fea622f7994c91017c4cd7ba5e188153556c
[ "TCL", "MIT" ]
89
2017-06-24T08:18:26.000Z
2021-11-12T04:37:36.000Z
tests/goals-test_data-tests.ads
thindil/steamsky
d5d7fea622f7994c91017c4cd7ba5e188153556c
[ "TCL", "MIT" ]
9
2018-04-14T16:37:25.000Z
2020-03-21T14:33:49.000Z
-- This package has been generated automatically by GNATtest. -- Do not edit any part of it, see GNATtest documentation for more details. -- begin read only with Gnattest_Generated; package Goals.Test_Data.Tests is type Test is new GNATtest_Generated.GNATtest_Standard.Goals.Test_Data .Test with null record; procedure Test_GoalText_c541ba_7395a3(Gnattest_T: in out Test); -- goals.ads:96:4:GoalText:Test_GoalText procedure Test_ClearCurrentGoal_cb9255_59ac81(Gnattest_T: in out Test); -- goals.ads:106:4:ClearCurrentGoal:Test_ClearCurrentGoal procedure Test_UpdateGoal_cfe7db_0e93ce(Gnattest_T: in out Test); -- goals.ads:119:4:UpdateGoal:Test_UpdateGoal end Goals.Test_Data.Tests; -- end read only
30.958333
76
0.776581
50970ca6f09e54075ba5bf8ab2af4c7282109a7f
2,334
ads
Ada
ada-strings-wide_maps-wide_constants.ads
mgrojo/adalib
dc1355a5b65c2843e702ac76252addb2caf3c56b
[ "BSD-3-Clause" ]
15
2018-07-08T07:09:19.000Z
2021-11-21T09:58:55.000Z
ada-strings-wide_maps-wide_constants.ads
mgrojo/adalib
dc1355a5b65c2843e702ac76252addb2caf3c56b
[ "BSD-3-Clause" ]
4
2019-11-17T20:04:33.000Z
2021-08-29T21:24:55.000Z
ada-strings-wide_maps-wide_constants.ads
mgrojo/adalib
dc1355a5b65c2843e702ac76252addb2caf3c56b
[ "BSD-3-Clause" ]
3
2020-04-23T11:17:11.000Z
2021-08-29T19:31:09.000Z
-- Standard Ada library specification -- Copyright (c) 2003-2018 Maxim Reznik <[email protected]> -- Copyright (c) 2004-2016 AXE Consultants -- Copyright (c) 2004, 2005, 2006 Ada-Europe -- Copyright (c) 2000 The MITRE Corporation, Inc. -- Copyright (c) 1992, 1993, 1994, 1995 Intermetrics, Inc. -- SPDX-License-Identifier: BSD-3-Clause and LicenseRef-AdaReferenceManual --------------------------------------------------------------------------- package Ada.Strings.Wide_Maps.Wide_Constants is pragma Preelaborate (Wide_Constants); Control_Set : constant Wide_Character_Set; Graphic_Set : constant Wide_Character_Set; Letter_Set : constant Wide_Character_Set; Lower_Set : constant Wide_Character_Set; Upper_Set : constant Wide_Character_Set; Basic_Set : constant Wide_Character_Set; Decimal_Digit_Set : constant Wide_Character_Set; Hexadecimal_Digit_Set : constant Wide_Character_Set; Alphanumeric_Set : constant Wide_Character_Set; Special_Set : constant Wide_Character_Set; ISO_646_Set : constant Wide_Character_Set; Character_Set : constant Wide_Character_Set; -- Contains each Wide_Character value WC such that -- Characters.Conversions.Is_Character(WC) is True Lower_Case_Map : constant Wide_Character_Mapping; -- Wide_Maps to lower case for letters, else identity Upper_Case_Map : constant Wide_Character_Mapping; -- Wide_Maps to upper case for letters, else identity Basic_Map : constant Wide_Character_Mapping; -- Wide_Maps to basic letter for letters, else identity private pragma Import (Ada, Control_Set); pragma Import (Ada, Graphic_Set); pragma Import (Ada, Letter_Set); pragma Import (Ada, Lower_Set); pragma Import (Ada, Upper_Set); pragma Import (Ada, Basic_Set); pragma Import (Ada, Decimal_Digit_Set); pragma Import (Ada, Hexadecimal_Digit_Set); pragma Import (Ada, Alphanumeric_Set); pragma Import (Ada, Special_Set); pragma Import (Ada, ISO_646_Set); pragma Import (Ada, Lower_Case_Map); pragma Import (Ada, Upper_Case_Map); pragma Import (Ada, Basic_Map); pragma Import (Ada, Character_Set); end Ada.Strings.Wide_Maps.Wide_Constants;
40.241379
75
0.686375
411b74c5c07043605081ae0cfa67357a8c6e7771
9,932
ads
Ada
unicode-utf8_stream_decoder-codec.ads
annexi-strayline/ASAP-Unicode
a34b52c41378c3cfe777e59bfee634caa64767d6
[ "BSD-3-Clause" ]
1
2021-11-08T01:20:55.000Z
2021-11-08T01:20:55.000Z
unicode-utf8_stream_decoder-codec.ads
annexi-strayline/ASAP-Unicode
a34b52c41378c3cfe777e59bfee634caa64767d6
[ "BSD-3-Clause" ]
null
null
null
unicode-utf8_stream_decoder-codec.ads
annexi-strayline/ASAP-Unicode
a34b52c41378c3cfe777e59bfee634caa64767d6
[ "BSD-3-Clause" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- Unicode Utilities -- -- UTF-8 Stream Decoder -- -- -- -- ------------------------------------------------------------------------ -- -- -- -- Copyright (C) 2019, ANNEXI-STRAYLINE Trans-Human Ltd. -- -- All rights reserved. -- -- -- -- Original Contributors: -- -- * Richard Wai (ANNEXI-STRAYLINE) -- -- -- -- 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 copyright holder 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. -- -- -- ------------------------------------------------------------------------------ -- Formally verified codec private package Unicode.UTF8_Stream_Decoder.Codec with Pure, SPARK_Mode => On is pragma Assertion_Policy (Ignore); pragma Assert (Stream_Element'Modulus = 2**8); -- Re-assertion for the encompasing package, to help the SPARK tools subtype Sequence_Index is Stream_Element_Offset range 1 .. 4; type Sequence_Array is array (Sequence_Index range <>) of Stream_Element; -- A restricted analogue to Stream_Element_Array which is digestible by the -- SPARK tools - used internally for the various sequence validation/ -- processing steps. type Decode_Status is (Success, Short_Load, -- Additional bytes required Bad_Sequence, -- 1. First octet was illegal (RFS3629) -- 2. First octet was invalid (encoded more than 3 -- continuation bytes -- 3. Expected continuation bytes were invalid -- (not in 2#10_000000# .. 2#10_111111) -- not properly marked as continuation bytes Overlong, -- An illegal overlong condition was found. Codepoint_Excursion); -- The encoded sequence is not a legal Unicode -- codepoint procedure Try_Decode (Sequence : in Sequence_Array; Last : out Sequence_Index; Continuation_Bytes: out Stream_Element_Count; Result : out Wide_Wide_Character; Status : out Decode_Status) with Inline => True, -- For performance, and since this package is not -- embedded in the parent package because it SPARK_Mode -- can only be applied to library-level packages Global => null, Post => ((Continuation_Bytes in 0 .. 3) and then (if Status = Success then Last = Sequence'First + Continuation_Bytes and then (for all Octet of Sequence(Sequence'First .. Last) => Octet not in 16#C0# | 16#C1# | 16#F5# .. 16#FF#) -- STD63/RFC3629 Section 1 - Prohibited octets -- in any UTF-8 text and then (case Continuation_Bytes is when 0 => Wide_Wide_Character'Pos (Result) in 16#000000# .. 16#00007F#, when 1 => Wide_Wide_Character'Pos (Result) in 16#000080# .. 16#0007FF#, when 2 => Wide_Wide_Character'Pos (Result) in 16#000800# .. 16#00D7FF# | 16#00E000# .. 16#00FDCF# | 16#00FDF0# .. 16#00FFFD#, -- IETF STD63/RFC3629 Section 3: -- UTF-16 "surrogate pairs" -- (U+D800 .. U+DFFF) are prohibited -- -- Unicode Corrigendum #9 - Noncharacter -- codepoints: -- U+FDD0 .. U+FDEF -- U+nFFFE + U+nFFFF when 3 => Wide_Wide_Character'Pos (Result) in 16#010000# .. 16#01FFFD# | 16#020000# .. 16#02FFFD# | 16#030000# .. 16#03FFFD# | 16#040000# .. 16#04FFFD# | 16#050000# .. 16#05FFFD# | 16#060000# .. 16#06FFFD# | 16#070000# .. 16#07FFFD# | 16#080000# .. 16#08FFFD# | 16#090000# .. 16#09FFFD# | 16#0A0000# .. 16#0AFFFD# | 16#0B0000# .. 16#0BFFFD# | 16#0C0000# .. 16#0CFFFD# | 16#0D0000# .. 16#0DFFFD# | 16#0E0000# .. 16#0EFFFD# | 16#0F0000# .. 16#0FFFFD# | 16#100000# .. 16#10FFFD#, -- U+10000 .. U+10FFFF except for: -- Unicode Corrigendum #9 - Noncharacter -- codepoints: -- U+nFFFE + U+nFFFF when others => -- There are no others False) elsif Status = Short_Load then Sequence'Length = 0 or else Continuation_Bytes in 1 .. 3 else Result = Unicode_Replacement_Character and then (if Sequence'Length > 0 then Last in Sequence'Range else Last = Sequence_Index'First))); -- Used by the non-spark portions to implement -- a very efficient two-step process -- Try_Decode attempts to decode a Character, and indicates the reson for -- failure if not successful. Indented to be called from full Ada, this -- procedure carries the full contract of a correct decoding result in the -- postcondtion which has been fully verified. -- -- Try_Decode is invoked by the Decode_Next subprograms in the parent -- package end Unicode.UTF8_Stream_Decoder.Codec;
58.423529
79
0.393878
41b06f999d55b3be320da6bcd3ec8e87793dcccb
1,963
adb
Ada
regtests/ado-testsuite.adb
My-Colaborations/ada-ado
cebf1f9b38c0c259c44935e8bca05a5bff12aace
[ "Apache-2.0" ]
null
null
null
regtests/ado-testsuite.adb
My-Colaborations/ada-ado
cebf1f9b38c0c259c44935e8bca05a5bff12aace
[ "Apache-2.0" ]
null
null
null
regtests/ado-testsuite.adb
My-Colaborations/ada-ado
cebf1f9b38c0c259c44935e8bca05a5bff12aace
[ "Apache-2.0" ]
null
null
null
----------------------------------------------------------------------- -- ado-testsuite -- Testsuite for ADO -- Copyright (C) 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2018 Stephane Carrez -- Written by Stephane Carrez ([email protected]) -- -- 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. ----------------------------------------------------------------------- with ADO.Tests; with ADO.Drivers.Tests; with ADO.Sequences.Tests; with ADO.Schemas.Tests; with ADO.Objects.Tests; with ADO.Queries.Tests; with ADO.Parameters.Tests; with ADO.Datasets.Tests; with ADO.Statements.Tests; with ADO.Audits.Tests; package body ADO.Testsuite is procedure Drivers (Suite : in Util.Tests.Access_Test_Suite); procedure Drivers (Suite : in Util.Tests.Access_Test_Suite) is separate; Tests : aliased Util.Tests.Test_Suite; function Suite return Util.Tests.Access_Test_Suite is Ret : constant Util.Tests.Access_Test_Suite := Tests'Access; begin ADO.Drivers.Tests.Add_Tests (Ret); ADO.Parameters.Tests.Add_Tests (Ret); ADO.Sequences.Tests.Add_Tests (Ret); ADO.Objects.Tests.Add_Tests (Ret); ADO.Statements.Tests.Add_Tests (Ret); ADO.Tests.Add_Tests (Ret); ADO.Schemas.Tests.Add_Tests (Ret); Drivers (Ret); ADO.Queries.Tests.Add_Tests (Ret); ADO.Datasets.Tests.Add_Tests (Ret); ADO.Audits.Tests.Add_Tests (Ret); return Ret; end Suite; end ADO.Testsuite;
35.690909
80
0.668365
23c8e7276b694c7f16ae36a8bb49d858046357f1
3,763
adb
Ada
support/MinGW/lib/gcc/mingw32/9.2.0/adainclude/a-nudira.adb
orb-zhuchen/Orb
6da2404b949ac28bde786e08bf4debe4a27cd3a0
[ "CNRI-Python-GPL-Compatible", "MIT" ]
null
null
null
support/MinGW/lib/gcc/mingw32/9.2.0/adainclude/a-nudira.adb
orb-zhuchen/Orb
6da2404b949ac28bde786e08bf4debe4a27cd3a0
[ "CNRI-Python-GPL-Compatible", "MIT" ]
null
null
null
support/MinGW/lib/gcc/mingw32/9.2.0/adainclude/a-nudira.adb
orb-zhuchen/Orb
6da2404b949ac28bde786e08bf4debe4a27cd3a0
[ "CNRI-Python-GPL-Compatible", "MIT" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- A D A . N U M E R I C S . D I S C R E T E _ R A N D O M -- -- -- -- B o d y -- -- -- -- Copyright (C) 1992-2019, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ package body Ada.Numerics.Discrete_Random with SPARK_Mode => Off is package SRN renames System.Random_Numbers; use SRN; ----------- -- Image -- ----------- function Image (Of_State : State) return String is begin return Image (SRN.State (Of_State)); end Image; ------------ -- Random -- ------------ function Random (Gen : Generator) return Result_Subtype is function Random is new SRN.Random_Discrete (Result_Subtype, Result_Subtype'First); begin return Random (SRN.Generator (Gen)); end Random; ----------- -- Reset -- ----------- procedure Reset (Gen : Generator) is begin Reset (SRN.Generator (Gen)); end Reset; procedure Reset (Gen : Generator; Initiator : Integer) is begin Reset (SRN.Generator (Gen), Initiator); end Reset; procedure Reset (Gen : Generator; From_State : State) is begin Reset (SRN.Generator (Gen), SRN.State (From_State)); end Reset; ---------- -- Save -- ---------- procedure Save (Gen : Generator; To_State : out State) is begin Save (SRN.Generator (Gen), SRN.State (To_State)); end Save; ----------- -- Value -- ----------- function Value (Coded_State : String) return State is begin return State (SRN.State'(Value (Coded_State))); end Value; end Ada.Numerics.Discrete_Random;
38.793814
78
0.449375
29d9df9333a113320cea461888f2cd28f5e3fb1f
1,431
ads
Ada
tests/src/test_transforms_singles_quaternions.ads
onox/orka
9edf99559a16ffa96dfdb208322f4d18efbcbac6
[ "Apache-2.0" ]
52
2016-07-30T23:00:28.000Z
2022-02-05T11:54:55.000Z
tests/src/test_transforms_singles_quaternions.ads
onox/orka
9edf99559a16ffa96dfdb208322f4d18efbcbac6
[ "Apache-2.0" ]
79
2016-08-01T18:36:48.000Z
2022-02-27T12:14:20.000Z
tests/src/test_transforms_singles_quaternions.ads
onox/orka
9edf99559a16ffa96dfdb208322f4d18efbcbac6
[ "Apache-2.0" ]
4
2018-04-28T22:36:26.000Z
2020-11-14T23:00:29.000Z
-- SPDX-License-Identifier: Apache-2.0 -- -- Copyright (c) 2017 onox <[email protected]> -- -- 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. with AUnit.Test_Suites; with AUnit.Test_Fixtures; package Test_Transforms_Singles_Quaternions is function Suite return AUnit.Test_Suites.Access_Test_Suite; private type Test is new AUnit.Test_Fixtures.Test_Fixture with null record; procedure Test_Multiplication (Object : in out Test); procedure Test_Conjugate (Object : in out Test); procedure Test_Norm (Object : in out Test); procedure Test_Normalize (Object : in out Test); procedure Test_Normalized (Object : in out Test); procedure Test_Rotate_Axis_Angle (Object : in out Test); procedure Test_Rotate_Vectors (Object : in out Test); procedure Test_Rotate_At_Origin (Object : in out Test); procedure Test_Slerp (Object : in out Test); end Test_Transforms_Singles_Quaternions;
36.692308
76
0.754018
29244fc9eaf684b6b12b12f72318f2d3fb92ca33
2,490
ads
Ada
src/agate-stack_canaries_enable__enabled.ads
Fabien-Chouteau/AGATE
cd8dbc54c1c70379c833e7cd710e2326ad6e9a91
[ "BSD-3-Clause" ]
3
2017-12-23T10:25:07.000Z
2021-06-09T13:47:19.000Z
src/agate-stack_canaries_enable__enabled.ads
Fabien-Chouteau/AGATE
cd8dbc54c1c70379c833e7cd710e2326ad6e9a91
[ "BSD-3-Clause" ]
null
null
null
src/agate-stack_canaries_enable__enabled.ads
Fabien-Chouteau/AGATE
cd8dbc54c1c70379c833e7cd710e2326ad6e9a91
[ "BSD-3-Clause" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- Copyright (C) 2020, Fabien Chouteau -- -- -- -- 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 copyright holder 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. -- -- -- ------------------------------------------------------------------------------ private package AGATE.Stack_Canaries_Enable is Enabled : constant Boolean := True; end AGATE.Stack_Canaries_Enable;
71.142857
78
0.52008
5983082f17d541da6d547ed667176a69a9dc3b6e
193,074
adb
Ada
HLS/solution1/.autopilot/db/AXIvideo2Mat.bind.adb
NekoSilverFox/CornerDetectionOnZYNQ
5688fa851f57d00f0f2d309adf06df840a25e1da
[ "Apache-2.0" ]
null
null
null
HLS/solution1/.autopilot/db/AXIvideo2Mat.bind.adb
NekoSilverFox/CornerDetectionOnZYNQ
5688fa851f57d00f0f2d309adf06df840a25e1da
[ "Apache-2.0" ]
null
null
null
HLS/solution1/.autopilot/db/AXIvideo2Mat.bind.adb
NekoSilverFox/CornerDetectionOnZYNQ
5688fa851f57d00f0f2d309adf06df840a25e1da
[ "Apache-2.0" ]
null
null
null
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> <!DOCTYPE boost_serialization> <boost_serialization signature="serialization::archive" version="15"> <syndb class_id="0" tracking_level="0" version="0"> <userIPLatency>-1</userIPLatency> <userIPName></userIPName> <cdfg class_id="1" tracking_level="1" version="0" object_id="_0"> <name>AXIvideo2Mat</name> <ret_bitwidth>0</ret_bitwidth> <ports class_id="2" tracking_level="0" version="0"> <count>10</count> <item_version>0</item_version> <item class_id="3" tracking_level="1" version="0" object_id="_1"> <Value class_id="4" tracking_level="0" version="0"> <Obj class_id="5" tracking_level="0" version="0"> <type>1</type> <id>1</id> <name>AXI_video_strm_V_data_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo class_id="6" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>AXI_video_strm.V.data.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>24</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs class_id="7" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_2"> <Value> <Obj> <type>1</type> <id>2</id> <name>AXI_video_strm_V_keep_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>AXI_video_strm.V.keep.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_3"> <Value> <Obj> <type>1</type> <id>3</id> <name>AXI_video_strm_V_strb_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>AXI_video_strm.V.strb.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_4"> <Value> <Obj> <type>1</type> <id>4</id> <name>AXI_video_strm_V_user_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>AXI_video_strm.V.user.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_5"> <Value> <Obj> <type>1</type> <id>5</id> <name>AXI_video_strm_V_last_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>AXI_video_strm.V.last.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_6"> <Value> <Obj> <type>1</type> <id>6</id> <name>AXI_video_strm_V_id_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>AXI_video_strm.V.id.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_7"> <Value> <Obj> <type>1</type> <id>7</id> <name>AXI_video_strm_V_dest_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>AXI_video_strm.V.dest.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_8"> <Value> <Obj> <type>1</type> <id>8</id> <name>img_data_stream_0_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>img.data_stream[0].V</originalName> <rtlName></rtlName> <coreName>FIFO</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_9"> <Value> <Obj> <type>1</type> <id>9</id> <name>img_data_stream_1_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>img.data_stream[1].V</originalName> <rtlName></rtlName> <coreName>FIFO</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_10"> <Value> <Obj> <type>1</type> <id>10</id> <name>img_data_stream_2_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>img.data_stream[2].V</originalName> <rtlName></rtlName> <coreName>FIFO</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> </ports> <nodes class_id="8" tracking_level="0" version="0"> <count>51</count> <item_version>0</item_version> <item class_id="9" tracking_level="1" version="0" object_id="_11"> <Value> <Obj> <type>0</type> <id>15</id> <name></name> <fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_io.h</fileName> <fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory> <lineNumber>63</lineNumber> <contextFuncName>AXIvideo2Mat&amp;lt;24, 768, 1024, 4096&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item class_id="10" tracking_level="0" version="0"> <first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first> <second class_id="11" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="12" tracking_level="0" version="0"> <first class_id="13" tracking_level="0" version="0"> <first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_io.h</first> <second>AXIvideo2Mat&amp;lt;24, 768, 1024, 4096&amp;gt;</second> </first> <second>63</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>102</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>1</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_12"> <Value> <Obj> <type>0</type> <id>21</id> <name>empty</name> <fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_io.h</fileName> <fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory> <lineNumber>68</lineNumber> <contextFuncName>AXIvideo2Mat&amp;lt;24, 768, 1024, 4096&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_io.h</first> <second>AXIvideo2Mat&amp;lt;24, 768, 1024, 4096&amp;gt;</second> </first> <second>68</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>34</bitwidth> </Value> <oprand_edges> <count>8</count> <item_version>0</item_version> <item>104</item> <item>105</item> <item>106</item> <item>107</item> <item>108</item> <item>109</item> <item>110</item> <item>111</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>2</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_13"> <Value> <Obj> <type>0</type> <id>22</id> <name>tmp_data_V</name> <fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_io.h</fileName> <fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory> <lineNumber>68</lineNumber> <contextFuncName>AXIvideo2Mat&amp;lt;24, 768, 1024, 4096&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_io.h</first> <second>AXIvideo2Mat&amp;lt;24, 768, 1024, 4096&amp;gt;</second> </first> <second>68</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.data.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>24</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>112</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>3</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_14"> <Value> <Obj> <type>0</type> <id>23</id> <name>tmp_user_V</name> <fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_io.h</fileName> <fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory> <lineNumber>68</lineNumber> <contextFuncName>AXIvideo2Mat&amp;lt;24, 768, 1024, 4096&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_io.h</first> <second>AXIvideo2Mat&amp;lt;24, 768, 1024, 4096&amp;gt;</second> </first> <second>68</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.user.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>113</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>4</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_15"> <Value> <Obj> <type>0</type> <id>24</id> <name>tmp_last_V</name> <fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_io.h</fileName> <fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory> <lineNumber>68</lineNumber> <contextFuncName>AXIvideo2Mat&amp;lt;24, 768, 1024, 4096&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_io.h</first> <second>AXIvideo2Mat&amp;lt;24, 768, 1024, 4096&amp;gt;</second> </first> <second>68</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.last.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>114</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>5</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_16"> <Value> <Obj> <type>0</type> <id>26</id> <name></name> <fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_io.h</fileName> <fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory> <lineNumber>65</lineNumber> <contextFuncName>AXIvideo2Mat&amp;lt;24, 768, 1024, 4096&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_io.h</first> <second>AXIvideo2Mat&amp;lt;24, 768, 1024, 4096&amp;gt;</second> </first> <second>65</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>115</item> <item>116</item> <item>117</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>6</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_17"> <Value> <Obj> <type>0</type> <id>28</id> <name>sof_1</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>119</item> </oprand_edges> <opcode>alloca</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>7</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_18"> <Value> <Obj> <type>0</type> <id>29</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>121</item> <item>122</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.46</m_delay> <m_topoIndex>8</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_19"> <Value> <Obj> <type>0</type> <id>30</id> <name></name> <fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_io.h</fileName> <fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory> <lineNumber>71</lineNumber> <contextFuncName>AXIvideo2Mat&amp;lt;24, 768, 1024, 4096&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_io.h</first> <second>AXIvideo2Mat&amp;lt;24, 768, 1024, 4096&amp;gt;</second> </first> <second>71</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>123</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.46</m_delay> <m_topoIndex>9</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_20"> <Value> <Obj> <type>0</type> <id>32</id> <name>axi_last_V1</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>tmp.last.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>124</item> <item>125</item> <item>126</item> <item>127</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>10</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_21"> <Value> <Obj> <type>0</type> <id>33</id> <name>axi_data_V1</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>tmp.data.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>24</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>128</item> <item>129</item> <item>130</item> <item>131</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>11</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_22"> <Value> <Obj> <type>0</type> <id>34</id> <name>t_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>i.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>10</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>132</item> <item>133</item> <item>135</item> <item>136</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>12</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_23"> <Value> <Obj> <type>0</type> <id>35</id> <name>exitcond1</name> <fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_io.h</fileName> <fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory> <lineNumber>71</lineNumber> <contextFuncName>AXIvideo2Mat&amp;lt;24, 768, 1024, 4096&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_io.h</first> <second>AXIvideo2Mat&amp;lt;24, 768, 1024, 4096&amp;gt;</second> </first> <second>71</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>137</item> <item>139</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.94</m_delay> <m_topoIndex>13</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_24"> <Value> <Obj> <type>0</type> <id>37</id> <name>i_V</name> <fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_io.h</fileName> <fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory> <lineNumber>71</lineNumber> <contextFuncName>AXIvideo2Mat&amp;lt;24, 768, 1024, 4096&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_io.h</first> <second>AXIvideo2Mat&amp;lt;24, 768, 1024, 4096&amp;gt;</second> </first> <second>71</second> </item> </second> </item> </inlineStackInfo> <originalName>i.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>10</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>140</item> <item>142</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.41</m_delay> <m_topoIndex>14</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_25"> <Value> <Obj> <type>0</type> <id>38</id> <name></name> <fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_io.h</fileName> <fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory> <lineNumber>71</lineNumber> <contextFuncName>AXIvideo2Mat&amp;lt;24, 768, 1024, 4096&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_io.h</first> <second>AXIvideo2Mat&amp;lt;24, 768, 1024, 4096&amp;gt;</second> </first> <second>71</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>143</item> <item>144</item> <item>145</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>15</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_26"> <Value> <Obj> <type>0</type> <id>42</id> <name></name> <fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_io.h</fileName> <fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory> <lineNumber>73</lineNumber> <contextFuncName>AXIvideo2Mat&amp;lt;24, 768, 1024, 4096&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_io.h</first> <second>AXIvideo2Mat&amp;lt;24, 768, 1024, 4096&amp;gt;</second> </first> <second>73</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>146</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.46</m_delay> <m_topoIndex>16</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_27"> <Value> <Obj> <type>0</type> <id>44</id> <name>eol_1</name> <fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_io.h</fileName> <fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory> <lineNumber>100</lineNumber> <contextFuncName>AXIvideo2Mat&amp;lt;24, 768, 1024, 4096&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_io.h</first> <second>AXIvideo2Mat&amp;lt;24, 768, 1024, 4096&amp;gt;</second> </first> <second>100</second> </item> </second> </item> </inlineStackInfo> <originalName>eol</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>147</item> <item>148</item> <item>149</item> <item>150</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>18</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_28"> <Value> <Obj> <type>0</type> <id>45</id> <name>axi_data_V_1</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>__Val2__</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>24</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>151</item> <item>152</item> <item>153</item> <item>154</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>19</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_29"> <Value> <Obj> <type>0</type> <id>46</id> <name>t_V_5</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>j.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>11</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>156</item> <item>157</item> <item>158</item> <item>159</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>20</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_30"> <Value> <Obj> <type>0</type> <id>47</id> <name>eol</name> <fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_io.h</fileName> <fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory> <lineNumber>81</lineNumber> <contextFuncName>AXIvideo2Mat&amp;lt;24, 768, 1024, 4096&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_io.h</first> <second>AXIvideo2Mat&amp;lt;24, 768, 1024, 4096&amp;gt;</second> </first> <second>81</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>161</item> <item>162</item> <item>163</item> <item>164</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>21</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_31"> <Value> <Obj> <type>0</type> <id>48</id> <name>exitcond</name> <fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_io.h</fileName> <fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory> <lineNumber>73</lineNumber> <contextFuncName>AXIvideo2Mat&amp;lt;24, 768, 1024, 4096&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_io.h</first> <second>AXIvideo2Mat&amp;lt;24, 768, 1024, 4096&amp;gt;</second> </first> <second>73</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>165</item> <item>167</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.88</m_delay> <m_topoIndex>22</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_32"> <Value> <Obj> <type>0</type> <id>50</id> <name>j_V</name> <fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_io.h</fileName> <fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory> <lineNumber>73</lineNumber> <contextFuncName>AXIvideo2Mat&amp;lt;24, 768, 1024, 4096&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_io.h</first> <second>AXIvideo2Mat&amp;lt;24, 768, 1024, 4096&amp;gt;</second> </first> <second>73</second> </item> </second> </item> </inlineStackInfo> <originalName>j.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>11</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>168</item> <item>170</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.48</m_delay> <m_topoIndex>23</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_33"> <Value> <Obj> <type>0</type> <id>51</id> <name></name> <fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_io.h</fileName> <fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory> <lineNumber>73</lineNumber> <contextFuncName>AXIvideo2Mat&amp;lt;24, 768, 1024, 4096&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_io.h</first> <second>AXIvideo2Mat&amp;lt;24, 768, 1024, 4096&amp;gt;</second> </first> <second>73</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>171</item> <item>172</item> <item>173</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>24</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_34"> <Value> <Obj> <type>0</type> <id>53</id> <name>sof_1_load</name> <fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_io.h</fileName> <fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory> <lineNumber>76</lineNumber> <contextFuncName>AXIvideo2Mat&amp;lt;24, 768, 1024, 4096&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_io.h</first> <second>AXIvideo2Mat&amp;lt;24, 768, 1024, 4096&amp;gt;</second> </first> <second>76</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>175</item> <item>458</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>25</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_35"> <Value> <Obj> <type>0</type> <id>57</id> <name>brmerge</name> <fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_io.h</fileName> <fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory> <lineNumber>76</lineNumber> <contextFuncName>AXIvideo2Mat&amp;lt;24, 768, 1024, 4096&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_io.h</first> <second>AXIvideo2Mat&amp;lt;24, 768, 1024, 4096&amp;gt;</second> </first> <second>76</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>176</item> <item>177</item> </oprand_edges> <opcode>or</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.80</m_delay> <m_topoIndex>26</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_36"> <Value> <Obj> <type>0</type> <id>58</id> <name></name> <fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_io.h</fileName> <fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory> <lineNumber>76</lineNumber> <contextFuncName>AXIvideo2Mat&amp;lt;24, 768, 1024, 4096&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_io.h</first> <second>AXIvideo2Mat&amp;lt;24, 768, 1024, 4096&amp;gt;</second> </first> <second>76</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>178</item> <item>179</item> <item>180</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.46</m_delay> <m_topoIndex>27</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_37"> <Value> <Obj> <type>0</type> <id>60</id> <name>empty_70</name> <fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_io.h</fileName> <fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory> <lineNumber>81</lineNumber> <contextFuncName>AXIvideo2Mat&amp;lt;24, 768, 1024, 4096&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_io.h</first> <second>AXIvideo2Mat&amp;lt;24, 768, 1024, 4096&amp;gt;</second> </first> <second>81</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>34</bitwidth> </Value> <oprand_edges> <count>9</count> <item_version>0</item_version> <item>181</item> <item>182</item> <item>183</item> <item>184</item> <item>185</item> <item>186</item> <item>187</item> <item>188</item> <item>456</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>28</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_38"> <Value> <Obj> <type>0</type> <id>61</id> <name>tmp_data_V_1</name> <fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_io.h</fileName> <fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory> <lineNumber>81</lineNumber> <contextFuncName>AXIvideo2Mat&amp;lt;24, 768, 1024, 4096&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_io.h</first> <second>AXIvideo2Mat&amp;lt;24, 768, 1024, 4096&amp;gt;</second> </first> <second>81</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.data.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>24</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>189</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>29</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_39"> <Value> <Obj> <type>0</type> <id>62</id> <name>tmp_last_V_1</name> <fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_io.h</fileName> <fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory> <lineNumber>81</lineNumber> <contextFuncName>AXIvideo2Mat&amp;lt;24, 768, 1024, 4096&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_io.h</first> <second>AXIvideo2Mat&amp;lt;24, 768, 1024, 4096&amp;gt;</second> </first> <second>81</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.last.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>190</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>30</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_40"> <Value> <Obj> <type>0</type> <id>63</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>191</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.46</m_delay> <m_topoIndex>31</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_41"> <Value> <Obj> <type>0</type> <id>65</id> <name>axi_last_V_2</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>axi.last.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>192</item> <item>193</item> <item>194</item> <item>195</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>32</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_42"> <Value> <Obj> <type>0</type> <id>66</id> <name>p_Val2_s</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>axi.data.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>24</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>196</item> <item>197</item> <item>198</item> <item>199</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>33</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_43"> <Value> <Obj> <type>0</type> <id>67</id> <name>tmp_68</name> <fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_axi_io.h</fileName> <fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>AXIGetBitFields&amp;lt;24, unsigned char&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_axi_io.h</first> <second>AXIGetBitFields&amp;lt;24, unsigned char&amp;gt;</second> </first> <second>49</second> </item> <item> <first> <first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_io.h</first> <second>AXIvideo2Mat&amp;lt;24, 768, 1024, 4096&amp;gt;</second> </first> <second>92</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>200</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>34</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_44"> <Value> <Obj> <type>0</type> <id>68</id> <name>tmp_46</name> <fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_axi_io.h</fileName> <fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>AXIGetBitFields&amp;lt;24, unsigned char&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_axi_io.h</first> <second>AXIGetBitFields&amp;lt;24, unsigned char&amp;gt;</second> </first> <second>49</second> </item> <item> <first> <first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_io.h</first> <second>AXIvideo2Mat&amp;lt;24, 768, 1024, 4096&amp;gt;</second> </first> <second>92</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>202</item> <item>203</item> <item>205</item> <item>207</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>35</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_45"> <Value> <Obj> <type>0</type> <id>69</id> <name>tmp_47</name> <fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_axi_io.h</fileName> <fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>AXIGetBitFields&amp;lt;24, unsigned char&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_axi_io.h</first> <second>AXIGetBitFields&amp;lt;24, unsigned char&amp;gt;</second> </first> <second>49</second> </item> <item> <first> <first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_io.h</first> <second>AXIvideo2Mat&amp;lt;24, 768, 1024, 4096&amp;gt;</second> </first> <second>92</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>208</item> <item>209</item> <item>211</item> <item>213</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>36</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_46"> <Value> <Obj> <type>0</type> <id>72</id> <name></name> <fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_core.h</fileName> <fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory> <lineNumber>703</lineNumber> <contextFuncName>write</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_core.h</first> <second>operator&amp;lt;&amp;lt;</second> </first> <second>717</second> </item> <item> <first> <first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_core.h</first> <second>write</second> </first> <second>703</second> </item> <item> <first> <first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_io.h</first> <second>AXIvideo2Mat&amp;lt;24, 768, 1024, 4096&amp;gt;</second> </first> <second>94</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>215</item> <item>216</item> <item>217</item> </oprand_edges> <opcode>write</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>3.40</m_delay> <m_topoIndex>38</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_47"> <Value> <Obj> <type>0</type> <id>73</id> <name></name> <fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_core.h</fileName> <fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory> <lineNumber>703</lineNumber> <contextFuncName>write</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_core.h</first> <second>operator&amp;lt;&amp;lt;</second> </first> <second>717</second> </item> <item> <first> <first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_core.h</first> <second>write</second> </first> <second>703</second> </item> <item> <first> <first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_io.h</first> <second>AXIvideo2Mat&amp;lt;24, 768, 1024, 4096&amp;gt;</second> </first> <second>94</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>218</item> <item>219</item> <item>220</item> </oprand_edges> <opcode>write</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>3.40</m_delay> <m_topoIndex>39</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_48"> <Value> <Obj> <type>0</type> <id>74</id> <name></name> <fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_core.h</fileName> <fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory> <lineNumber>703</lineNumber> <contextFuncName>write</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_core.h</first> <second>operator&amp;lt;&amp;lt;</second> </first> <second>717</second> </item> <item> <first> <first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_core.h</first> <second>write</second> </first> <second>703</second> </item> <item> <first> <first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_io.h</first> <second>AXIvideo2Mat&amp;lt;24, 768, 1024, 4096&amp;gt;</second> </first> <second>94</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>221</item> <item>222</item> <item>223</item> </oprand_edges> <opcode>write</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>3.40</m_delay> <m_topoIndex>40</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_49"> <Value> <Obj> <type>0</type> <id>77</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>224</item> <item>225</item> <item>459</item> <item>460</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.46</m_delay> <m_topoIndex>37</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_50"> <Value> <Obj> <type>0</type> <id>78</id> <name></name> <fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_io.h</fileName> <fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory> <lineNumber>73</lineNumber> <contextFuncName>AXIvideo2Mat&amp;lt;24, 768, 1024, 4096&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_io.h</first> <second>AXIvideo2Mat&amp;lt;24, 768, 1024, 4096&amp;gt;</second> </first> <second>73</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>226</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>41</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_51"> <Value> <Obj> <type>0</type> <id>80</id> <name></name> <fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_io.h</fileName> <fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory> <lineNumber>96</lineNumber> <contextFuncName>AXIvideo2Mat&amp;lt;24, 768, 1024, 4096&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_io.h</first> <second>AXIvideo2Mat&amp;lt;24, 768, 1024, 4096&amp;gt;</second> </first> <second>96</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>174</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.46</m_delay> <m_topoIndex>42</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_52"> <Value> <Obj> <type>0</type> <id>82</id> <name>axi_last_V_3</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>axi.last.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>227</item> <item>228</item> <item>229</item> <item>230</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>43</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_53"> <Value> <Obj> <type>0</type> <id>83</id> <name>axi_data_V_3</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>axi.data.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>24</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>231</item> <item>232</item> <item>233</item> <item>234</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>44</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_54"> <Value> <Obj> <type>0</type> <id>84</id> <name>eol_2</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>axi.last.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>235</item> <item>236</item> <item>237</item> <item>238</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>45</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_55"> <Value> <Obj> <type>0</type> <id>85</id> <name></name> <fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_io.h</fileName> <fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory> <lineNumber>96</lineNumber> <contextFuncName>AXIvideo2Mat&amp;lt;24, 768, 1024, 4096&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_io.h</first> <second>AXIvideo2Mat&amp;lt;24, 768, 1024, 4096&amp;gt;</second> </first> <second>96</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>239</item> <item>240</item> <item>241</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>46</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_56"> <Value> <Obj> <type>0</type> <id>91</id> <name>empty_73</name> <fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_io.h</fileName> <fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory> <lineNumber>100</lineNumber> <contextFuncName>AXIvideo2Mat&amp;lt;24, 768, 1024, 4096&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_io.h</first> <second>AXIvideo2Mat&amp;lt;24, 768, 1024, 4096&amp;gt;</second> </first> <second>100</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>34</bitwidth> </Value> <oprand_edges> <count>9</count> <item_version>0</item_version> <item>242</item> <item>243</item> <item>244</item> <item>245</item> <item>246</item> <item>247</item> <item>248</item> <item>249</item> <item>457</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>47</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_57"> <Value> <Obj> <type>0</type> <id>92</id> <name>tmp_data_V_2</name> <fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_io.h</fileName> <fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory> <lineNumber>100</lineNumber> <contextFuncName>AXIvideo2Mat&amp;lt;24, 768, 1024, 4096&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_io.h</first> <second>AXIvideo2Mat&amp;lt;24, 768, 1024, 4096&amp;gt;</second> </first> <second>100</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.data.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>24</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>250</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>48</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_58"> <Value> <Obj> <type>0</type> <id>93</id> <name>tmp_last_V_2</name> <fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_io.h</fileName> <fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory> <lineNumber>100</lineNumber> <contextFuncName>AXIvideo2Mat&amp;lt;24, 768, 1024, 4096&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_io.h</first> <second>AXIvideo2Mat&amp;lt;24, 768, 1024, 4096&amp;gt;</second> </first> <second>100</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.last.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>251</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>49</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_59"> <Value> <Obj> <type>0</type> <id>95</id> <name></name> <fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_io.h</fileName> <fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory> <lineNumber>103</lineNumber> <contextFuncName>AXIvideo2Mat&amp;lt;24, 768, 1024, 4096&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_io.h</first> <second>AXIvideo2Mat&amp;lt;24, 768, 1024, 4096&amp;gt;</second> </first> <second>103</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>252</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>50</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_60"> <Value> <Obj> <type>0</type> <id>98</id> <name></name> <fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_io.h</fileName> <fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory> <lineNumber>71</lineNumber> <contextFuncName>AXIvideo2Mat&amp;lt;24, 768, 1024, 4096&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_io.h</first> <second>AXIvideo2Mat&amp;lt;24, 768, 1024, 4096&amp;gt;</second> </first> <second>71</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>253</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>51</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_61"> <Value> <Obj> <type>0</type> <id>100</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>0</count> <item_version>0</item_version> </oprand_edges> <opcode>ret</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>17</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> </nodes> <consts class_id="15" tracking_level="0" version="0"> <count>13</count> <item_version>0</item_version> <item class_id="16" tracking_level="1" version="0" object_id="_62"> <Value> <Obj> <type>2</type> <id>118</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_63"> <Value> <Obj> <type>2</type> <id>120</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_64"> <Value> <Obj> <type>2</type> <id>134</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>10</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_65"> <Value> <Obj> <type>2</type> <id>138</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>10</bitwidth> </Value> <const_type>0</const_type> <content>768</content> </item> <item class_id_reference="16" object_id="_66"> <Value> <Obj> <type>2</type> <id>141</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>10</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_67"> <Value> <Obj> <type>2</type> <id>155</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>11</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_68"> <Value> <Obj> <type>2</type> <id>160</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_69"> <Value> <Obj> <type>2</type> <id>166</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>11</bitwidth> </Value> <const_type>0</const_type> <content>1024</content> </item> <item class_id_reference="16" object_id="_70"> <Value> <Obj> <type>2</type> <id>169</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>11</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_71"> <Value> <Obj> <type>2</type> <id>204</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>8</content> </item> <item class_id_reference="16" object_id="_72"> <Value> <Obj> <type>2</type> <id>206</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>15</content> </item> <item class_id_reference="16" object_id="_73"> <Value> <Obj> <type>2</type> <id>210</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>16</content> </item> <item class_id_reference="16" object_id="_74"> <Value> <Obj> <type>2</type> <id>212</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>23</content> </item> </consts> <blocks class_id="17" tracking_level="0" version="0"> <count>14</count> <item_version>0</item_version> <item class_id="18" tracking_level="1" version="0" object_id="_75"> <Obj> <type>3</type> <id>16</id> <name>._crit_edge</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>15</item> </node_objs> </item> <item class_id_reference="18" object_id="_76"> <Obj> <type>3</type> <id>27</id> <name>._crit_edge1</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>5</count> <item_version>0</item_version> <item>21</item> <item>22</item> <item>23</item> <item>24</item> <item>26</item> </node_objs> </item> <item class_id_reference="18" object_id="_77"> <Obj> <type>3</type> <id>31</id> <name>.preheader232.preheader</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>3</count> <item_version>0</item_version> <item>28</item> <item>29</item> <item>30</item> </node_objs> </item> <item class_id_reference="18" object_id="_78"> <Obj> <type>3</type> <id>39</id> <name>.preheader232</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>6</count> <item_version>0</item_version> <item>32</item> <item>33</item> <item>34</item> <item>35</item> <item>37</item> <item>38</item> </node_objs> </item> <item class_id_reference="18" object_id="_79"> <Obj> <type>3</type> <id>43</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>42</item> </node_objs> </item> <item class_id_reference="18" object_id="_80"> <Obj> <type>3</type> <id>52</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>7</count> <item_version>0</item_version> <item>44</item> <item>45</item> <item>46</item> <item>47</item> <item>48</item> <item>50</item> <item>51</item> </node_objs> </item> <item class_id_reference="18" object_id="_81"> <Obj> <type>3</type> <id>59</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>3</count> <item_version>0</item_version> <item>53</item> <item>57</item> <item>58</item> </node_objs> </item> <item class_id_reference="18" object_id="_82"> <Obj> <type>3</type> <id>64</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>4</count> <item_version>0</item_version> <item>60</item> <item>61</item> <item>62</item> <item>63</item> </node_objs> </item> <item class_id_reference="18" object_id="_83"> <Obj> <type>3</type> <id>79</id> <name>._crit_edge2</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>10</count> <item_version>0</item_version> <item>65</item> <item>66</item> <item>67</item> <item>68</item> <item>69</item> <item>72</item> <item>73</item> <item>74</item> <item>77</item> <item>78</item> </node_objs> </item> <item class_id_reference="18" object_id="_84"> <Obj> <type>3</type> <id>81</id> <name>.preheader.preheader</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>80</item> </node_objs> </item> <item class_id_reference="18" object_id="_85"> <Obj> <type>3</type> <id>86</id> <name>.preheader</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>4</count> <item_version>0</item_version> <item>82</item> <item>83</item> <item>84</item> <item>85</item> </node_objs> </item> <item class_id_reference="18" object_id="_86"> <Obj> <type>3</type> <id>96</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>4</count> <item_version>0</item_version> <item>91</item> <item>92</item> <item>93</item> <item>95</item> </node_objs> </item> <item class_id_reference="18" object_id="_87"> <Obj> <type>3</type> <id>99</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>98</item> </node_objs> </item> <item class_id_reference="18" object_id="_88"> <Obj> <type>3</type> <id>101</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>100</item> </node_objs> </item> </blocks> <edges class_id="19" tracking_level="0" version="0"> <count>151</count> <item_version>0</item_version> <item class_id="20" tracking_level="1" version="0" object_id="_89"> <id>102</id> <edge_type>2</edge_type> <source_obj>27</source_obj> <sink_obj>15</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_90"> <id>105</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>21</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_91"> <id>106</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>21</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_92"> <id>107</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>21</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_93"> <id>108</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>21</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_94"> <id>109</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>21</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_95"> <id>110</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>21</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_96"> <id>111</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>21</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_97"> <id>112</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>22</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_98"> <id>113</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>23</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_99"> <id>114</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_100"> <id>115</id> <edge_type>1</edge_type> <source_obj>23</source_obj> <sink_obj>26</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_101"> <id>116</id> <edge_type>2</edge_type> <source_obj>27</source_obj> <sink_obj>26</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_102"> <id>117</id> <edge_type>2</edge_type> <source_obj>31</source_obj> <sink_obj>26</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_103"> <id>119</id> <edge_type>1</edge_type> <source_obj>118</source_obj> <sink_obj>28</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_104"> <id>121</id> <edge_type>1</edge_type> <source_obj>120</source_obj> <sink_obj>29</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_105"> <id>122</id> <edge_type>1</edge_type> <source_obj>28</source_obj> <sink_obj>29</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_106"> <id>123</id> <edge_type>2</edge_type> <source_obj>39</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_107"> <id>124</id> <edge_type>1</edge_type> <source_obj>82</source_obj> <sink_obj>32</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_108"> <id>125</id> <edge_type>2</edge_type> <source_obj>99</source_obj> <sink_obj>32</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_109"> <id>126</id> <edge_type>1</edge_type> <source_obj>24</source_obj> <sink_obj>32</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_110"> <id>127</id> <edge_type>2</edge_type> <source_obj>31</source_obj> <sink_obj>32</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_111"> <id>128</id> <edge_type>1</edge_type> <source_obj>83</source_obj> <sink_obj>33</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_112"> <id>129</id> <edge_type>2</edge_type> <source_obj>99</source_obj> <sink_obj>33</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_113"> <id>130</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_114"> <id>131</id> <edge_type>2</edge_type> <source_obj>31</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_115"> <id>132</id> <edge_type>1</edge_type> <source_obj>37</source_obj> <sink_obj>34</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_116"> <id>133</id> <edge_type>2</edge_type> <source_obj>99</source_obj> <sink_obj>34</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_117"> <id>135</id> <edge_type>1</edge_type> <source_obj>134</source_obj> <sink_obj>34</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_118"> <id>136</id> <edge_type>2</edge_type> <source_obj>31</source_obj> <sink_obj>34</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_119"> <id>137</id> <edge_type>1</edge_type> <source_obj>34</source_obj> <sink_obj>35</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_120"> <id>139</id> <edge_type>1</edge_type> <source_obj>138</source_obj> <sink_obj>35</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_121"> <id>140</id> <edge_type>1</edge_type> <source_obj>34</source_obj> <sink_obj>37</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_122"> <id>142</id> <edge_type>1</edge_type> <source_obj>141</source_obj> <sink_obj>37</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_123"> <id>143</id> <edge_type>1</edge_type> <source_obj>35</source_obj> <sink_obj>38</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_124"> <id>144</id> <edge_type>2</edge_type> <source_obj>43</source_obj> <sink_obj>38</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_125"> <id>145</id> <edge_type>2</edge_type> <source_obj>101</source_obj> <sink_obj>38</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_126"> <id>146</id> <edge_type>2</edge_type> <source_obj>52</source_obj> <sink_obj>42</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_127"> <id>147</id> <edge_type>1</edge_type> <source_obj>32</source_obj> <sink_obj>44</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_128"> <id>148</id> <edge_type>2</edge_type> <source_obj>43</source_obj> <sink_obj>44</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_129"> <id>149</id> <edge_type>1</edge_type> <source_obj>65</source_obj> <sink_obj>44</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_130"> <id>150</id> <edge_type>2</edge_type> <source_obj>79</source_obj> <sink_obj>44</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_131"> <id>151</id> <edge_type>1</edge_type> <source_obj>33</source_obj> <sink_obj>45</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_132"> <id>152</id> <edge_type>2</edge_type> <source_obj>43</source_obj> <sink_obj>45</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_133"> <id>153</id> <edge_type>1</edge_type> <source_obj>66</source_obj> <sink_obj>45</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_134"> <id>154</id> <edge_type>2</edge_type> <source_obj>79</source_obj> <sink_obj>45</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_135"> <id>156</id> <edge_type>1</edge_type> <source_obj>155</source_obj> <sink_obj>46</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_136"> <id>157</id> <edge_type>2</edge_type> <source_obj>43</source_obj> <sink_obj>46</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_137"> <id>158</id> <edge_type>1</edge_type> <source_obj>50</source_obj> <sink_obj>46</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_138"> <id>159</id> <edge_type>2</edge_type> <source_obj>79</source_obj> <sink_obj>46</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_139"> <id>161</id> <edge_type>1</edge_type> <source_obj>160</source_obj> <sink_obj>47</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_140"> <id>162</id> <edge_type>2</edge_type> <source_obj>43</source_obj> <sink_obj>47</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_141"> <id>163</id> <edge_type>1</edge_type> <source_obj>65</source_obj> <sink_obj>47</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_142"> <id>164</id> <edge_type>2</edge_type> <source_obj>79</source_obj> <sink_obj>47</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_143"> <id>165</id> <edge_type>1</edge_type> <source_obj>46</source_obj> <sink_obj>48</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_144"> <id>167</id> <edge_type>1</edge_type> <source_obj>166</source_obj> <sink_obj>48</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_145"> <id>168</id> <edge_type>1</edge_type> <source_obj>46</source_obj> <sink_obj>50</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_146"> <id>170</id> <edge_type>1</edge_type> <source_obj>169</source_obj> <sink_obj>50</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_147"> <id>171</id> <edge_type>1</edge_type> <source_obj>48</source_obj> <sink_obj>51</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_148"> <id>172</id> <edge_type>2</edge_type> <source_obj>59</source_obj> <sink_obj>51</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_149"> <id>173</id> <edge_type>2</edge_type> <source_obj>81</source_obj> <sink_obj>51</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_150"> <id>174</id> <edge_type>2</edge_type> <source_obj>86</source_obj> <sink_obj>80</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_151"> <id>175</id> <edge_type>1</edge_type> <source_obj>28</source_obj> <sink_obj>53</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_152"> <id>176</id> <edge_type>1</edge_type> <source_obj>53</source_obj> <sink_obj>57</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_153"> <id>177</id> <edge_type>1</edge_type> <source_obj>47</source_obj> <sink_obj>57</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_154"> <id>178</id> <edge_type>1</edge_type> <source_obj>57</source_obj> <sink_obj>58</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_155"> <id>179</id> <edge_type>2</edge_type> <source_obj>64</source_obj> <sink_obj>58</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_156"> <id>180</id> <edge_type>2</edge_type> <source_obj>79</source_obj> <sink_obj>58</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_157"> <id>182</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>60</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_158"> <id>183</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>60</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_159"> <id>184</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>60</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_160"> <id>185</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>60</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_161"> <id>186</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>60</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_162"> <id>187</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>60</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_163"> <id>188</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>60</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_164"> <id>189</id> <edge_type>1</edge_type> <source_obj>60</source_obj> <sink_obj>61</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_165"> <id>190</id> <edge_type>1</edge_type> <source_obj>60</source_obj> <sink_obj>62</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_166"> <id>191</id> <edge_type>2</edge_type> <source_obj>79</source_obj> <sink_obj>63</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_167"> <id>192</id> <edge_type>1</edge_type> <source_obj>62</source_obj> <sink_obj>65</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_168"> <id>193</id> <edge_type>2</edge_type> <source_obj>64</source_obj> <sink_obj>65</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_169"> <id>194</id> <edge_type>1</edge_type> <source_obj>44</source_obj> <sink_obj>65</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_170"> <id>195</id> <edge_type>2</edge_type> <source_obj>59</source_obj> <sink_obj>65</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_171"> <id>196</id> <edge_type>1</edge_type> <source_obj>61</source_obj> <sink_obj>66</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_172"> <id>197</id> <edge_type>2</edge_type> <source_obj>64</source_obj> <sink_obj>66</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_173"> <id>198</id> <edge_type>1</edge_type> <source_obj>45</source_obj> <sink_obj>66</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_174"> <id>199</id> <edge_type>2</edge_type> <source_obj>59</source_obj> <sink_obj>66</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_175"> <id>200</id> <edge_type>1</edge_type> <source_obj>66</source_obj> <sink_obj>67</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_176"> <id>203</id> <edge_type>1</edge_type> <source_obj>66</source_obj> <sink_obj>68</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_177"> <id>205</id> <edge_type>1</edge_type> <source_obj>204</source_obj> <sink_obj>68</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_178"> <id>207</id> <edge_type>1</edge_type> <source_obj>206</source_obj> <sink_obj>68</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_179"> <id>209</id> <edge_type>1</edge_type> <source_obj>66</source_obj> <sink_obj>69</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_180"> <id>211</id> <edge_type>1</edge_type> <source_obj>210</source_obj> <sink_obj>69</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_181"> <id>213</id> <edge_type>1</edge_type> <source_obj>212</source_obj> <sink_obj>69</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_182"> <id>216</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>72</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_183"> <id>217</id> <edge_type>1</edge_type> <source_obj>67</source_obj> <sink_obj>72</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_184"> <id>219</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>73</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_185"> <id>220</id> <edge_type>1</edge_type> <source_obj>68</source_obj> <sink_obj>73</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_186"> <id>222</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>74</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_187"> <id>223</id> <edge_type>1</edge_type> <source_obj>69</source_obj> <sink_obj>74</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_188"> <id>224</id> <edge_type>1</edge_type> <source_obj>160</source_obj> <sink_obj>77</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_189"> <id>225</id> <edge_type>1</edge_type> <source_obj>28</source_obj> <sink_obj>77</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_190"> <id>226</id> <edge_type>2</edge_type> <source_obj>52</source_obj> <sink_obj>78</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_191"> <id>227</id> <edge_type>1</edge_type> <source_obj>93</source_obj> <sink_obj>82</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_192"> <id>228</id> <edge_type>2</edge_type> <source_obj>96</source_obj> <sink_obj>82</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_193"> <id>229</id> <edge_type>1</edge_type> <source_obj>44</source_obj> <sink_obj>82</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_194"> <id>230</id> <edge_type>2</edge_type> <source_obj>81</source_obj> <sink_obj>82</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_195"> <id>231</id> <edge_type>1</edge_type> <source_obj>92</source_obj> <sink_obj>83</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_196"> <id>232</id> <edge_type>2</edge_type> <source_obj>96</source_obj> <sink_obj>83</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_197"> <id>233</id> <edge_type>1</edge_type> <source_obj>45</source_obj> <sink_obj>83</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_198"> <id>234</id> <edge_type>2</edge_type> <source_obj>81</source_obj> <sink_obj>83</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_199"> <id>235</id> <edge_type>1</edge_type> <source_obj>93</source_obj> <sink_obj>84</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_200"> <id>236</id> <edge_type>2</edge_type> <source_obj>96</source_obj> <sink_obj>84</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_201"> <id>237</id> <edge_type>1</edge_type> <source_obj>47</source_obj> <sink_obj>84</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_202"> <id>238</id> <edge_type>2</edge_type> <source_obj>81</source_obj> <sink_obj>84</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_203"> <id>239</id> <edge_type>1</edge_type> <source_obj>84</source_obj> <sink_obj>85</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_204"> <id>240</id> <edge_type>2</edge_type> <source_obj>96</source_obj> <sink_obj>85</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_205"> <id>241</id> <edge_type>2</edge_type> <source_obj>99</source_obj> <sink_obj>85</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_206"> <id>243</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>91</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_207"> <id>244</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>91</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_208"> <id>245</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>91</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_209"> <id>246</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>91</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_210"> <id>247</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>91</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_211"> <id>248</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>91</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_212"> <id>249</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>91</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_213"> <id>250</id> <edge_type>1</edge_type> <source_obj>91</source_obj> <sink_obj>92</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_214"> <id>251</id> <edge_type>1</edge_type> <source_obj>91</source_obj> <sink_obj>93</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_215"> <id>252</id> <edge_type>2</edge_type> <source_obj>86</source_obj> <sink_obj>95</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_216"> <id>253</id> <edge_type>2</edge_type> <source_obj>39</source_obj> <sink_obj>98</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_217"> <id>438</id> <edge_type>2</edge_type> <source_obj>16</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_218"> <id>439</id> <edge_type>2</edge_type> <source_obj>27</source_obj> <sink_obj>31</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_219"> <id>440</id> <edge_type>2</edge_type> <source_obj>27</source_obj> <sink_obj>27</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_220"> <id>441</id> <edge_type>2</edge_type> <source_obj>31</source_obj> <sink_obj>39</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_221"> <id>442</id> <edge_type>2</edge_type> <source_obj>39</source_obj> <sink_obj>101</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_222"> <id>443</id> <edge_type>2</edge_type> <source_obj>39</source_obj> <sink_obj>43</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_223"> <id>444</id> <edge_type>2</edge_type> <source_obj>43</source_obj> <sink_obj>52</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_224"> <id>445</id> <edge_type>2</edge_type> <source_obj>52</source_obj> <sink_obj>81</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_225"> <id>446</id> <edge_type>2</edge_type> <source_obj>52</source_obj> <sink_obj>59</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_226"> <id>447</id> <edge_type>2</edge_type> <source_obj>59</source_obj> <sink_obj>79</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_227"> <id>448</id> <edge_type>2</edge_type> <source_obj>59</source_obj> <sink_obj>64</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_228"> <id>449</id> <edge_type>2</edge_type> <source_obj>64</source_obj> <sink_obj>79</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_229"> <id>450</id> <edge_type>2</edge_type> <source_obj>79</source_obj> <sink_obj>52</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_230"> <id>451</id> <edge_type>2</edge_type> <source_obj>81</source_obj> <sink_obj>86</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_231"> <id>452</id> <edge_type>2</edge_type> <source_obj>86</source_obj> <sink_obj>99</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_232"> <id>453</id> <edge_type>2</edge_type> <source_obj>86</source_obj> <sink_obj>96</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_233"> <id>454</id> <edge_type>2</edge_type> <source_obj>96</source_obj> <sink_obj>86</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_234"> <id>455</id> <edge_type>2</edge_type> <source_obj>99</source_obj> <sink_obj>39</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_235"> <id>456</id> <edge_type>4</edge_type> <source_obj>21</source_obj> <sink_obj>60</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_236"> <id>457</id> <edge_type>4</edge_type> <source_obj>21</source_obj> <sink_obj>91</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_237"> <id>458</id> <edge_type>4</edge_type> <source_obj>29</source_obj> <sink_obj>53</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_238"> <id>459</id> <edge_type>4</edge_type> <source_obj>29</source_obj> <sink_obj>77</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_239"> <id>460</id> <edge_type>4</edge_type> <source_obj>53</source_obj> <sink_obj>77</sink_obj> <is_back_edge>0</is_back_edge> </item> </edges> </cdfg> <cdfg_regions class_id="21" tracking_level="0" version="0"> <count>11</count> <item_version>0</item_version> <item class_id="22" tracking_level="1" version="0" object_id="_240"> <mId>1</mId> <mTag>AXIvideo2Mat</mTag> <mType>0</mType> <sub_regions> <count>5</count> <item_version>0</item_version> <item>2</item> <item>3</item> <item>4</item> <item>5</item> <item>11</item> </sub_regions> <basic_blocks> <count>0</count> <item_version>0</item_version> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>790275</mMinLatency> <mMaxLatency>790275</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_241"> <mId>2</mId> <mTag>Entry</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>16</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_242"> <mId>3</mId> <mTag>loop_wait_for_start</mTag> <mType>1</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>27</item> </basic_blocks> <mII>1</mII> <mDepth>1</mDepth> <mMinTripCount>0</mMinTripCount> <mMaxTripCount>0</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_243"> <mId>4</mId> <mTag>Region 1</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>31</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_244"> <mId>5</mId> <mTag>loop_height</mTag> <mType>1</mType> <sub_regions> <count>5</count> <item_version>0</item_version> <item>6</item> <item>7</item> <item>8</item> <item>9</item> <item>10</item> </sub_regions> <basic_blocks> <count>0</count> <item_version>0</item_version> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>768</mMinTripCount> <mMaxTripCount>768</mMaxTripCount> <mMinLatency>790272</mMinLatency> <mMaxLatency>790272</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_245"> <mId>6</mId> <mTag>Region 2</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>39</item> <item>43</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_246"> <mId>7</mId> <mTag>loop_width</mTag> <mType>1</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>4</count> <item_version>0</item_version> <item>52</item> <item>59</item> <item>64</item> <item>79</item> </basic_blocks> <mII>1</mII> <mDepth>2</mDepth> <mMinTripCount>1024</mMinTripCount> <mMaxTripCount>1024</mMaxTripCount> <mMinLatency>1024</mMinLatency> <mMaxLatency>1024</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_247"> <mId>8</mId> <mTag>Region 3</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>81</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_248"> <mId>9</mId> <mTag>loop_wait_for_eol</mTag> <mType>1</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>86</item> <item>96</item> </basic_blocks> <mII>1</mII> <mDepth>1</mDepth> <mMinTripCount>0</mMinTripCount> <mMaxTripCount>0</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_249"> <mId>10</mId> <mTag>Region 4</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>99</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_250"> <mId>11</mId> <mTag>Return</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>101</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> </cdfg_regions> <fsm class_id="24" tracking_level="1" version="0" object_id="_251"> <states class_id="25" tracking_level="0" version="0"> <count>9</count> <item_version>0</item_version> <item class_id="26" tracking_level="1" version="0" object_id="_252"> <id>1</id> <operations class_id="27" tracking_level="0" version="0"> <count>5</count> <item_version>0</item_version> <item class_id="28" tracking_level="1" version="0" object_id="_253"> <id>11</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_254"> <id>12</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_255"> <id>13</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_256"> <id>14</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_257"> <id>15</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_258"> <id>2</id> <operations> <count>10</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_259"> <id>17</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_260"> <id>18</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_261"> <id>19</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_262"> <id>20</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_263"> <id>21</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_264"> <id>22</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_265"> <id>23</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_266"> <id>24</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_267"> <id>25</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_268"> <id>26</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_269"> <id>3</id> <operations> <count>3</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_270"> <id>28</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_271"> <id>29</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_272"> <id>30</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_273"> <id>4</id> <operations> <count>11</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_274"> <id>32</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_275"> <id>33</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_276"> <id>34</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_277"> <id>35</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_278"> <id>36</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_279"> <id>37</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_280"> <id>38</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_281"> <id>40</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_282"> <id>41</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_283"> <id>42</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_284"> <id>100</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_285"> <id>5</id> <operations> <count>21</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_286"> <id>44</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_287"> <id>45</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_288"> <id>46</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_289"> <id>47</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_290"> <id>48</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_291"> <id>49</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_292"> <id>50</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_293"> <id>51</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_294"> <id>53</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_295"> <id>57</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_296"> <id>58</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_297"> <id>60</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_298"> <id>61</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_299"> <id>62</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_300"> <id>63</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_301"> <id>65</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_302"> <id>66</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_303"> <id>67</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_304"> <id>68</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_305"> <id>69</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_306"> <id>77</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_307"> <id>6</id> <operations> <count>11</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_308"> <id>54</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_309"> <id>55</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_310"> <id>56</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_311"> <id>70</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_312"> <id>71</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_313"> <id>72</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_314"> <id>73</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_315"> <id>74</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_316"> <id>75</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_317"> <id>76</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_318"> <id>78</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_319"> <id>7</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_320"> <id>80</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_321"> <id>8</id> <operations> <count>13</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_322"> <id>82</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_323"> <id>83</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_324"> <id>84</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_325"> <id>85</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_326"> <id>87</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_327"> <id>88</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_328"> <id>89</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_329"> <id>90</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_330"> <id>91</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_331"> <id>92</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_332"> <id>93</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_333"> <id>94</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_334"> <id>95</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_335"> <id>9</id> <operations> <count>2</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_336"> <id>97</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_337"> <id>98</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> </states> <transitions class_id="29" tracking_level="0" version="0"> <count>12</count> <item_version>0</item_version> <item class_id="30" tracking_level="1" version="0" object_id="_338"> <inState>1</inState> <outState>2</outState> <condition class_id="31" tracking_level="0" version="0"> <id>-1</id> <sop class_id="32" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="33" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_339"> <inState>3</inState> <outState>4</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_340"> <inState>4</inState> <outState>5</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item class_id="34" tracking_level="0" version="0"> <first class_id="35" tracking_level="0" version="0"> <first>35</first> <second>0</second> </first> <second>1</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_341"> <inState>7</inState> <outState>8</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_342"> <inState>9</inState> <outState>4</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_343"> <inState>2</inState> <outState>3</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item> <first> <first>23</first> <second>0</second> </first> <second>0</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_344"> <inState>2</inState> <outState>2</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item> <first> <first>23</first> <second>0</second> </first> <second>1</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_345"> <inState>6</inState> <outState>5</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_346"> <inState>5</inState> <outState>7</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item> <first> <first>48</first> <second>0</second> </first> <second>0</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_347"> <inState>5</inState> <outState>6</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item> <first> <first>48</first> <second>0</second> </first> <second>1</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_348"> <inState>8</inState> <outState>9</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item> <first> <first>84</first> <second>0</second> </first> <second>0</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_349"> <inState>8</inState> <outState>8</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item> <first> <first>84</first> <second>0</second> </first> <second>1</second> </item> </item> </sop> </condition> </item> </transitions> </fsm> <res class_id="-1"></res> <node_label_latency class_id="37" tracking_level="0" version="0"> <count>51</count> <item_version>0</item_version> <item class_id="38" tracking_level="0" version="0"> <first>15</first> <second class_id="39" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>21</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>22</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>23</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>24</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>26</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>28</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>29</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>30</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>32</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>33</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>34</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>35</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>37</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>38</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>42</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>44</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>45</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>46</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>47</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>48</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>50</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>51</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>53</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>57</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>58</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>60</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>61</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>62</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>63</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>65</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>66</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>67</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>68</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>69</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>72</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>73</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>74</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>77</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>78</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>80</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>82</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>83</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>84</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>85</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>91</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>92</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>93</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>95</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>98</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>100</first> <second> <first>3</first> <second>0</second> </second> </item> </node_label_latency> <bblk_ent_exit class_id="40" tracking_level="0" version="0"> <count>14</count> <item_version>0</item_version> <item class_id="41" tracking_level="0" version="0"> <first>16</first> <second class_id="42" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>27</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>31</first> <second> <first>2</first> <second>2</second> </second> </item> <item> <first>39</first> <second> <first>3</first> <second>3</second> </second> </item> <item> <first>43</first> <second> <first>3</first> <second>3</second> </second> </item> <item> <first>52</first> <second> <first>4</first> <second>4</second> </second> </item> <item> <first>59</first> <second> <first>4</first> <second>5</second> </second> </item> <item> <first>64</first> <second> <first>4</first> <second>4</second> </second> </item> <item> <first>79</first> <second> <first>4</first> <second>5</second> </second> </item> <item> <first>81</first> <second> <first>5</first> <second>5</second> </second> </item> <item> <first>86</first> <second> <first>6</first> <second>6</second> </second> </item> <item> <first>96</first> <second> <first>6</first> <second>6</second> </second> </item> <item> <first>99</first> <second> <first>7</first> <second>7</second> </second> </item> <item> <first>101</first> <second> <first>3</first> <second>3</second> </second> </item> </bblk_ent_exit> <regions class_id="43" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="44" tracking_level="1" version="0" object_id="_350"> <region_name>loop_wait_for_start</region_name> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>27</item> </basic_blocks> <nodes> <count>0</count> <item_version>0</item_version> </nodes> <anchor_node>-1</anchor_node> <region_type>8</region_type> <interval>1</interval> <pipe_depth>1</pipe_depth> </item> <item class_id_reference="44" object_id="_351"> <region_name>loop_width</region_name> <basic_blocks> <count>4</count> <item_version>0</item_version> <item>52</item> <item>59</item> <item>64</item> <item>79</item> </basic_blocks> <nodes> <count>0</count> <item_version>0</item_version> </nodes> <anchor_node>-1</anchor_node> <region_type>8</region_type> <interval>1</interval> <pipe_depth>2</pipe_depth> </item> <item class_id_reference="44" object_id="_352"> <region_name>hls_label_2</region_name> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>79</item> </basic_blocks> <nodes> <count>6</count> <item_version>0</item_version> <item>70</item> <item>71</item> <item>72</item> <item>73</item> <item>74</item> <item>75</item> </nodes> <anchor_node>70</anchor_node> <region_type>1</region_type> <interval>0</interval> <pipe_depth>0</pipe_depth> </item> <item class_id_reference="44" object_id="_353"> <region_name>loop_wait_for_eol</region_name> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>86</item> <item>96</item> </basic_blocks> <nodes> <count>0</count> <item_version>0</item_version> </nodes> <anchor_node>-1</anchor_node> <region_type>8</region_type> <interval>1</interval> <pipe_depth>1</pipe_depth> </item> </regions> <dp_fu_nodes class_id="45" tracking_level="0" version="0"> <count>31</count> <item_version>0</item_version> <item class_id="46" tracking_level="0" version="0"> <first>128</first> <second> <count>1</count> <item_version>0</item_version> <item>28</item> </second> </item> <item> <first>132</first> <second> <count>3</count> <item_version>0</item_version> <item>21</item> <item>60</item> <item>91</item> </second> </item> <item> <first>150</first> <second> <count>1</count> <item_version>0</item_version> <item>72</item> </second> </item> <item> <first>157</first> <second> <count>1</count> <item_version>0</item_version> <item>73</item> </second> </item> <item> <first>164</first> <second> <count>1</count> <item_version>0</item_version> <item>74</item> </second> </item> <item> <first>174</first> <second> <count>1</count> <item_version>0</item_version> <item>32</item> </second> </item> <item> <first>184</first> <second> <count>1</count> <item_version>0</item_version> <item>33</item> </second> </item> <item> <first>195</first> <second> <count>1</count> <item_version>0</item_version> <item>34</item> </second> </item> <item> <first>205</first> <second> <count>1</count> <item_version>0</item_version> <item>44</item> </second> </item> <item> <first>216</first> <second> <count>1</count> <item_version>0</item_version> <item>45</item> </second> </item> <item> <first>228</first> <second> <count>1</count> <item_version>0</item_version> <item>46</item> </second> </item> <item> <first>239</first> <second> <count>1</count> <item_version>0</item_version> <item>47</item> </second> </item> <item> <first>252</first> <second> <count>1</count> <item_version>0</item_version> <item>65</item> </second> </item> <item> <first>264</first> <second> <count>1</count> <item_version>0</item_version> <item>66</item> </second> </item> <item> <first>276</first> <second> <count>1</count> <item_version>0</item_version> <item>82</item> </second> </item> <item> <first>288</first> <second> <count>1</count> <item_version>0</item_version> <item>83</item> </second> </item> <item> <first>299</first> <second> <count>1</count> <item_version>0</item_version> <item>84</item> </second> </item> <item> <first>306</first> <second> <count>3</count> <item_version>0</item_version> <item>22</item> <item>61</item> <item>92</item> </second> </item> <item> <first>311</first> <second> <count>3</count> <item_version>0</item_version> <item>24</item> <item>62</item> <item>93</item> </second> </item> <item> <first>316</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> <item> <first>320</first> <second> <count>1</count> <item_version>0</item_version> <item>29</item> </second> </item> <item> <first>325</first> <second> <count>1</count> <item_version>0</item_version> <item>35</item> </second> </item> <item> <first>331</first> <second> <count>1</count> <item_version>0</item_version> <item>37</item> </second> </item> <item> <first>337</first> <second> <count>1</count> <item_version>0</item_version> <item>48</item> </second> </item> <item> <first>343</first> <second> <count>1</count> <item_version>0</item_version> <item>50</item> </second> </item> <item> <first>349</first> <second> <count>1</count> <item_version>0</item_version> <item>53</item> </second> </item> <item> <first>352</first> <second> <count>1</count> <item_version>0</item_version> <item>57</item> </second> </item> <item> <first>358</first> <second> <count>1</count> <item_version>0</item_version> <item>67</item> </second> </item> <item> <first>362</first> <second> <count>1</count> <item_version>0</item_version> <item>68</item> </second> </item> <item> <first>372</first> <second> <count>1</count> <item_version>0</item_version> <item>69</item> </second> </item> <item> <first>382</first> <second> <count>1</count> <item_version>0</item_version> <item>77</item> </second> </item> </dp_fu_nodes> <dp_fu_nodes_expression class_id="48" tracking_level="0" version="0"> <count>24</count> <item_version>0</item_version> <item class_id="49" tracking_level="0" version="0"> <first>axi_data_V1_phi_fu_184</first> <second> <count>1</count> <item_version>0</item_version> <item>33</item> </second> </item> <item> <first>axi_data_V_1_phi_fu_216</first> <second> <count>1</count> <item_version>0</item_version> <item>45</item> </second> </item> <item> <first>axi_data_V_3_phi_fu_288</first> <second> <count>1</count> <item_version>0</item_version> <item>83</item> </second> </item> <item> <first>axi_last_V1_phi_fu_174</first> <second> <count>1</count> <item_version>0</item_version> <item>32</item> </second> </item> <item> <first>axi_last_V_2_phi_fu_252</first> <second> <count>1</count> <item_version>0</item_version> <item>65</item> </second> </item> <item> <first>axi_last_V_3_phi_fu_276</first> <second> <count>1</count> <item_version>0</item_version> <item>82</item> </second> </item> <item> <first>brmerge_fu_352</first> <second> <count>1</count> <item_version>0</item_version> <item>57</item> </second> </item> <item> <first>eol_1_phi_fu_205</first> <second> <count>1</count> <item_version>0</item_version> <item>44</item> </second> </item> <item> <first>eol_2_phi_fu_299</first> <second> <count>1</count> <item_version>0</item_version> <item>84</item> </second> </item> <item> <first>eol_phi_fu_239</first> <second> <count>1</count> <item_version>0</item_version> <item>47</item> </second> </item> <item> <first>exitcond1_fu_325</first> <second> <count>1</count> <item_version>0</item_version> <item>35</item> </second> </item> <item> <first>exitcond_fu_337</first> <second> <count>1</count> <item_version>0</item_version> <item>48</item> </second> </item> <item> <first>grp_fu_306</first> <second> <count>3</count> <item_version>0</item_version> <item>22</item> <item>61</item> <item>92</item> </second> </item> <item> <first>grp_fu_311</first> <second> <count>3</count> <item_version>0</item_version> <item>24</item> <item>62</item> <item>93</item> </second> </item> <item> <first>i_V_fu_331</first> <second> <count>1</count> <item_version>0</item_version> <item>37</item> </second> </item> <item> <first>j_V_fu_343</first> <second> <count>1</count> <item_version>0</item_version> <item>50</item> </second> </item> <item> <first>p_Val2_s_phi_fu_264</first> <second> <count>1</count> <item_version>0</item_version> <item>66</item> </second> </item> <item> <first>sof_1_fu_128</first> <second> <count>1</count> <item_version>0</item_version> <item>28</item> </second> </item> <item> <first>t_V_5_phi_fu_228</first> <second> <count>1</count> <item_version>0</item_version> <item>46</item> </second> </item> <item> <first>t_V_phi_fu_195</first> <second> <count>1</count> <item_version>0</item_version> <item>34</item> </second> </item> <item> <first>tmp_46_fu_362</first> <second> <count>1</count> <item_version>0</item_version> <item>68</item> </second> </item> <item> <first>tmp_47_fu_372</first> <second> <count>1</count> <item_version>0</item_version> <item>69</item> </second> </item> <item> <first>tmp_68_fu_358</first> <second> <count>1</count> <item_version>0</item_version> <item>67</item> </second> </item> <item> <first>tmp_user_V_fu_316</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> </dp_fu_nodes_expression> <dp_fu_nodes_module> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_module> <dp_fu_nodes_io> <count>7</count> <item_version>0</item_version> <item> <first>StgValue_26_store_fu_320</first> <second> <count>1</count> <item_version>0</item_version> <item>29</item> </second> </item> <item> <first>StgValue_59_store_fu_382</first> <second> <count>1</count> <item_version>0</item_version> <item>77</item> </second> </item> <item> <first>StgValue_65_write_fu_150</first> <second> <count>1</count> <item_version>0</item_version> <item>72</item> </second> </item> <item> <first>StgValue_66_write_fu_157</first> <second> <count>1</count> <item_version>0</item_version> <item>73</item> </second> </item> <item> <first>StgValue_67_write_fu_164</first> <second> <count>1</count> <item_version>0</item_version> <item>74</item> </second> </item> <item> <first>grp_read_fu_132</first> <second> <count>3</count> <item_version>0</item_version> <item>21</item> <item>60</item> <item>91</item> </second> </item> <item> <first>sof_1_load_load_fu_349</first> <second> <count>1</count> <item_version>0</item_version> <item>53</item> </second> </item> </dp_fu_nodes_io> <return_ports> <count>0</count> <item_version>0</item_version> </return_ports> <dp_mem_port_nodes class_id="50" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_mem_port_nodes> <dp_reg_nodes> <count>25</count> <item_version>0</item_version> <item> <first>171</first> <second> <count>1</count> <item_version>0</item_version> <item>32</item> </second> </item> <item> <first>181</first> <second> <count>1</count> <item_version>0</item_version> <item>33</item> </second> </item> <item> <first>191</first> <second> <count>1</count> <item_version>0</item_version> <item>34</item> </second> </item> <item> <first>202</first> <second> <count>1</count> <item_version>0</item_version> <item>44</item> </second> </item> <item> <first>213</first> <second> <count>1</count> <item_version>0</item_version> <item>45</item> </second> </item> <item> <first>224</first> <second> <count>1</count> <item_version>0</item_version> <item>46</item> </second> </item> <item> <first>235</first> <second> <count>1</count> <item_version>0</item_version> <item>47</item> </second> </item> <item> <first>247</first> <second> <count>1</count> <item_version>0</item_version> <item>65</item> </second> </item> <item> <first>260</first> <second> <count>1</count> <item_version>0</item_version> <item>66</item> </second> </item> <item> <first>272</first> <second> <count>1</count> <item_version>0</item_version> <item>82</item> </second> </item> <item> <first>284</first> <second> <count>1</count> <item_version>0</item_version> <item>83</item> </second> </item> <item> <first>296</first> <second> <count>1</count> <item_version>0</item_version> <item>84</item> </second> </item> <item> <first>387</first> <second> <count>1</count> <item_version>0</item_version> <item>22</item> </second> </item> <item> <first>395</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>400</first> <second> <count>1</count> <item_version>0</item_version> <item>28</item> </second> </item> <item> <first>407</first> <second> <count>1</count> <item_version>0</item_version> <item>35</item> </second> </item> <item> <first>411</first> <second> <count>1</count> <item_version>0</item_version> <item>37</item> </second> </item> <item> <first>416</first> <second> <count>1</count> <item_version>0</item_version> <item>48</item> </second> </item> <item> <first>420</first> <second> <count>1</count> <item_version>0</item_version> <item>50</item> </second> </item> <item> <first>425</first> <second> <count>1</count> <item_version>0</item_version> <item>57</item> </second> </item> <item> <first>429</first> <second> <count>1</count> <item_version>0</item_version> <item>67</item> </second> </item> <item> <first>434</first> <second> <count>1</count> <item_version>0</item_version> <item>68</item> </second> </item> <item> <first>439</first> <second> <count>1</count> <item_version>0</item_version> <item>69</item> </second> </item> <item> <first>444</first> <second> <count>1</count> <item_version>0</item_version> <item>92</item> </second> </item> <item> <first>449</first> <second> <count>1</count> <item_version>0</item_version> <item>93</item> </second> </item> </dp_reg_nodes> <dp_regname_nodes> <count>25</count> <item_version>0</item_version> <item> <first>axi_data_V1_reg_181</first> <second> <count>1</count> <item_version>0</item_version> <item>33</item> </second> </item> <item> <first>axi_data_V_1_reg_213</first> <second> <count>1</count> <item_version>0</item_version> <item>45</item> </second> </item> <item> <first>axi_data_V_3_reg_284</first> <second> <count>1</count> <item_version>0</item_version> <item>83</item> </second> </item> <item> <first>axi_last_V1_reg_171</first> <second> <count>1</count> <item_version>0</item_version> <item>32</item> </second> </item> <item> <first>axi_last_V_2_reg_247</first> <second> <count>1</count> <item_version>0</item_version> <item>65</item> </second> </item> <item> <first>axi_last_V_3_reg_272</first> <second> <count>1</count> <item_version>0</item_version> <item>82</item> </second> </item> <item> <first>brmerge_reg_425</first> <second> <count>1</count> <item_version>0</item_version> <item>57</item> </second> </item> <item> <first>eol_1_reg_202</first> <second> <count>1</count> <item_version>0</item_version> <item>44</item> </second> </item> <item> <first>eol_2_reg_296</first> <second> <count>1</count> <item_version>0</item_version> <item>84</item> </second> </item> <item> <first>eol_reg_235</first> <second> <count>1</count> <item_version>0</item_version> <item>47</item> </second> </item> <item> <first>exitcond1_reg_407</first> <second> <count>1</count> <item_version>0</item_version> <item>35</item> </second> </item> <item> <first>exitcond_reg_416</first> <second> <count>1</count> <item_version>0</item_version> <item>48</item> </second> </item> <item> <first>i_V_reg_411</first> <second> <count>1</count> <item_version>0</item_version> <item>37</item> </second> </item> <item> <first>j_V_reg_420</first> <second> <count>1</count> <item_version>0</item_version> <item>50</item> </second> </item> <item> <first>p_Val2_s_reg_260</first> <second> <count>1</count> <item_version>0</item_version> <item>66</item> </second> </item> <item> <first>sof_1_reg_400</first> <second> <count>1</count> <item_version>0</item_version> <item>28</item> </second> </item> <item> <first>t_V_5_reg_224</first> <second> <count>1</count> <item_version>0</item_version> <item>46</item> </second> </item> <item> <first>t_V_reg_191</first> <second> <count>1</count> <item_version>0</item_version> <item>34</item> </second> </item> <item> <first>tmp_46_reg_434</first> <second> <count>1</count> <item_version>0</item_version> <item>68</item> </second> </item> <item> <first>tmp_47_reg_439</first> <second> <count>1</count> <item_version>0</item_version> <item>69</item> </second> </item> <item> <first>tmp_68_reg_429</first> <second> <count>1</count> <item_version>0</item_version> <item>67</item> </second> </item> <item> <first>tmp_data_V_2_reg_444</first> <second> <count>1</count> <item_version>0</item_version> <item>92</item> </second> </item> <item> <first>tmp_data_V_reg_387</first> <second> <count>1</count> <item_version>0</item_version> <item>22</item> </second> </item> <item> <first>tmp_last_V_2_reg_449</first> <second> <count>1</count> <item_version>0</item_version> <item>93</item> </second> </item> <item> <first>tmp_last_V_reg_395</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> </dp_regname_nodes> <dp_reg_phi> <count>12</count> <item_version>0</item_version> <item> <first>171</first> <second> <count>1</count> <item_version>0</item_version> <item>32</item> </second> </item> <item> <first>181</first> <second> <count>1</count> <item_version>0</item_version> <item>33</item> </second> </item> <item> <first>191</first> <second> <count>1</count> <item_version>0</item_version> <item>34</item> </second> </item> <item> <first>202</first> <second> <count>1</count> <item_version>0</item_version> <item>44</item> </second> </item> <item> <first>213</first> <second> <count>1</count> <item_version>0</item_version> <item>45</item> </second> </item> <item> <first>224</first> <second> <count>1</count> <item_version>0</item_version> <item>46</item> </second> </item> <item> <first>235</first> <second> <count>1</count> <item_version>0</item_version> <item>47</item> </second> </item> <item> <first>247</first> <second> <count>1</count> <item_version>0</item_version> <item>65</item> </second> </item> <item> <first>260</first> <second> <count>1</count> <item_version>0</item_version> <item>66</item> </second> </item> <item> <first>272</first> <second> <count>1</count> <item_version>0</item_version> <item>82</item> </second> </item> <item> <first>284</first> <second> <count>1</count> <item_version>0</item_version> <item>83</item> </second> </item> <item> <first>296</first> <second> <count>1</count> <item_version>0</item_version> <item>84</item> </second> </item> </dp_reg_phi> <dp_regname_phi> <count>12</count> <item_version>0</item_version> <item> <first>axi_data_V1_reg_181</first> <second> <count>1</count> <item_version>0</item_version> <item>33</item> </second> </item> <item> <first>axi_data_V_1_reg_213</first> <second> <count>1</count> <item_version>0</item_version> <item>45</item> </second> </item> <item> <first>axi_data_V_3_reg_284</first> <second> <count>1</count> <item_version>0</item_version> <item>83</item> </second> </item> <item> <first>axi_last_V1_reg_171</first> <second> <count>1</count> <item_version>0</item_version> <item>32</item> </second> </item> <item> <first>axi_last_V_2_reg_247</first> <second> <count>1</count> <item_version>0</item_version> <item>65</item> </second> </item> <item> <first>axi_last_V_3_reg_272</first> <second> <count>1</count> <item_version>0</item_version> <item>82</item> </second> </item> <item> <first>eol_1_reg_202</first> <second> <count>1</count> <item_version>0</item_version> <item>44</item> </second> </item> <item> <first>eol_2_reg_296</first> <second> <count>1</count> <item_version>0</item_version> <item>84</item> </second> </item> <item> <first>eol_reg_235</first> <second> <count>1</count> <item_version>0</item_version> <item>47</item> </second> </item> <item> <first>p_Val2_s_reg_260</first> <second> <count>1</count> <item_version>0</item_version> <item>66</item> </second> </item> <item> <first>t_V_5_reg_224</first> <second> <count>1</count> <item_version>0</item_version> <item>46</item> </second> </item> <item> <first>t_V_reg_191</first> <second> <count>1</count> <item_version>0</item_version> <item>34</item> </second> </item> </dp_regname_phi> <dp_port_io_nodes class_id="51" tracking_level="0" version="0"> <count>10</count> <item_version>0</item_version> <item class_id="52" tracking_level="0" version="0"> <first>AXI_video_strm_V_data_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>3</count> <item_version>0</item_version> <item>21</item> <item>60</item> <item>91</item> </second> </item> </second> </item> <item> <first>AXI_video_strm_V_dest_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>3</count> <item_version>0</item_version> <item>21</item> <item>60</item> <item>91</item> </second> </item> </second> </item> <item> <first>AXI_video_strm_V_id_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>3</count> <item_version>0</item_version> <item>21</item> <item>60</item> <item>91</item> </second> </item> </second> </item> <item> <first>AXI_video_strm_V_keep_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>3</count> <item_version>0</item_version> <item>21</item> <item>60</item> <item>91</item> </second> </item> </second> </item> <item> <first>AXI_video_strm_V_last_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>3</count> <item_version>0</item_version> <item>21</item> <item>60</item> <item>91</item> </second> </item> </second> </item> <item> <first>AXI_video_strm_V_strb_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>3</count> <item_version>0</item_version> <item>21</item> <item>60</item> <item>91</item> </second> </item> </second> </item> <item> <first>AXI_video_strm_V_user_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>3</count> <item_version>0</item_version> <item>21</item> <item>60</item> <item>91</item> </second> </item> </second> </item> <item> <first>img_data_stream_0_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>1</count> <item_version>0</item_version> <item>72</item> </second> </item> </second> </item> <item> <first>img_data_stream_1_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>1</count> <item_version>0</item_version> <item>73</item> </second> </item> </second> </item> <item> <first>img_data_stream_2_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>1</count> <item_version>0</item_version> <item>74</item> </second> </item> </second> </item> </dp_port_io_nodes> <port2core class_id="53" tracking_level="0" version="0"> <count>3</count> <item_version>0</item_version> <item class_id="54" tracking_level="0" version="0"> <first>8</first> <second>FIFO</second> </item> <item> <first>9</first> <second>FIFO</second> </item> <item> <first>10</first> <second>FIFO</second> </item> </port2core> <node2core> <count>0</count> <item_version>0</item_version> </node2core> </syndb> </boost_serialization>
26.682421
102
0.606923
5952a76b71ab236ef0a8781eb5d83025de721169
1,688
ads
Ada
Src/mini_expect.ads
SMerrony/dashera
74961f34a44cabae414e84537e8baae0ecb373c9
[ "MIT" ]
23
2021-12-12T15:20:22.000Z
2022-03-19T19:55:06.000Z
Src/mini_expect.ads
SMerrony/dashera
74961f34a44cabae414e84537e8baae0ecb373c9
[ "MIT" ]
1
2022-03-10T00:09:35.000Z
2022-03-15T08:16:00.000Z
Src/mini_expect.ads
SMerrony/dashera
74961f34a44cabae414e84537e8baae0ecb373c9
[ "MIT" ]
1
2022-03-11T19:42:02.000Z
2022-03-11T19:42:02.000Z
-- Copyright ©2022 Steve Merrony -- Permission is hereby granted, free of charge, to any person obtaining a copy -- of this software and associated documentation files (the "Software"), to deal -- in the Software without restriction, including without limitation the rights -- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -- copies of the Software, and to permit persons to whom the Software is -- furnished to do so, subject to the following conditions: -- The above copyright notice and this permission notice shall be included in -- all copies or substantial portions of the Software. -- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -- THE SOFTWARE. with Ada.Strings.Unbounded; use Ada.Strings.Unbounded; with Ada.Text_IO; use Ada.Text_IO; package Mini_Expect is task type Runner_T; type Runner_Acc is access Runner_T; procedure Prepare (Filename : in String); -- Try to open a DasherA mini-Expect script. -- Could also sanity-check it in the future... procedure Handle_Char (Ch : in Character; Done : out Boolean); Expect_File : File_Type; Runner_Task : Runner_Acc; Expecting : Boolean; Search_Str, Host_Str : Unbounded_String; Already_Expecting : exception; end Mini_Expect;
40.190476
80
0.749408
2f8f7056702bd60bc7c1c43db8a2866b4a730293
1,576
ads
Ada
resources/scripts/api/shodan.ads
mzpqnxow/Amass
798f0f113cd44b59fe950d5020b394d6804839f0
[ "Apache-2.0" ]
11
2020-08-19T01:01:42.000Z
2022-02-12T08:36:53.000Z
resources/scripts/api/shodan.ads
mzpqnxow/Amass
798f0f113cd44b59fe950d5020b394d6804839f0
[ "Apache-2.0" ]
null
null
null
resources/scripts/api/shodan.ads
mzpqnxow/Amass
798f0f113cd44b59fe950d5020b394d6804839f0
[ "Apache-2.0" ]
2
2020-11-10T17:13:54.000Z
2021-01-23T07:23:24.000Z
-- Copyright 2017 Jeff Foley. All rights reserved. -- Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file. local json = require("json") name = "Shodan" type = "api" function start() setratelimit(2) end function check() if (api ~= nil and api.key ~= nil and api.key ~= "") then return true end return false end function vertical(ctx, domain) if (api == nil or api.key == nil or api.key == "") then return end local resp local vurl = buildurl(domain) -- Check if the response data is in the graph database if (api.ttl ~= nil and api.ttl > 0) then resp = obtain_response(vurl, api.ttl) end if (resp == nil or resp == "") then local err resp, err = request({ url=vurl, headers={['Content-Type']="application/json"}, }) if (err ~= nil and err ~= "") then return end if (api.ttl ~= nil and api.ttl > 0) then cache_response(vurl, resp) end end local d = json.decode(resp) if (d == nil or #(d.subdomains) == 0) then return end for i, sub in pairs(d.subdomains) do sendnames(ctx, sub .. "." .. domain) end end function buildurl(domain) return "https://api.shodan.io/dns/domain/" .. domain .. "?key=" .. api.key end function sendnames(ctx, content) local names = find(content, subdomainre) if names == nil then return end for i, v in pairs(names) do newname(ctx, v) end end
21.888889
97
0.574873
596cfe27bb2f88871b5763876d033e6377b47577
2,628
adb
Ada
Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnarl/s-intman__dummy.adb
djamal2727/Main-Bearing-Analytical-Model
2f00c2219c71be0175c6f4f8f1d4cca231d97096
[ "Apache-2.0" ]
null
null
null
Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnarl/s-intman__dummy.adb
djamal2727/Main-Bearing-Analytical-Model
2f00c2219c71be0175c6f4f8f1d4cca231d97096
[ "Apache-2.0" ]
null
null
null
Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnarl/s-intman__dummy.adb
djamal2727/Main-Bearing-Analytical-Model
2f00c2219c71be0175c6f4f8f1d4cca231d97096
[ "Apache-2.0" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS -- -- -- -- S Y S T E M . I N T E R R U P T _ M A N A G E M E N T -- -- -- -- B o d y -- -- -- -- Copyright (C) 1997-2020, Free Software Foundation, Inc. -- -- -- -- GNARL is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNARL was developed by the GNARL team at Florida State University. -- -- Extensive contributions were provided by Ada Core Technologies, Inc. -- -- -- ------------------------------------------------------------------------------ -- This is a NO tasking version of this package package body System.Interrupt_Management is ---------------- -- Initialize -- ---------------- procedure Initialize is begin null; end Initialize; end System.Interrupt_Management;
57.130435
78
0.39726
a181dee326c1871274ef85418daa7994ccb33896
1,092
ads
Ada
applet/aide/source/editors/aide-editor-of_record_component.ads
charlie5/aIDE
fab406dbcd9b72a4cb215ffebb05166c788d6365
[ "MIT" ]
3
2017-04-29T14:25:22.000Z
2017-09-29T10:15:28.000Z
applet/aide/source/editors/aide-editor-of_record_component.ads
charlie5/aIDE
fab406dbcd9b72a4cb215ffebb05166c788d6365
[ "MIT" ]
null
null
null
applet/aide/source/editors/aide-editor-of_record_component.ads
charlie5/aIDE
fab406dbcd9b72a4cb215ffebb05166c788d6365
[ "MIT" ]
null
null
null
with AdaM.record_Component, gtk.Widget; private with gtk.gEntry, gtk.Box, gtk.Label, gtk.Button; package aIDE.Editor.of_record_component is type Item is new Editor.item with private; type View is access all Item'Class; package Forge is function new_Editor (the_Target : in AdaM.record_Component.view) return View; end Forge; overriding function top_Widget (Self : in Item) return gtk.Widget.Gtk_Widget; private use gtk.Button, gtk.gEntry, gtk.Label, gtk.Box; type Item is new Editor.item with record Target : AdaM.record_Component.view; top_Box : gtk_Box; name_Entry : Gtk_Entry; type_Button : gtk_Button; colon_Label : gtk_Label; aliased_Label : gtk_Label; initializer_Label : gtk_Label; default_Entry : Gtk_Entry; rid_Button : gtk_Button; end record; overriding procedure freshen (Self : in out Item); end aIDE.Editor.of_record_component;
19.157895
83
0.617216
590155750bc7cc6b060b6b8ab2040bc5966aa3a8
8,446
adb
Ada
src/ada/src/comms/uxas-comms-lmcp_object_message_receiver_pipes.adb
VVCAS-Sean/OpenUxAS
dcd7be29d182d278a5387908f568d6f8a06b79ee
[ "NASA-1.3" ]
88
2017-08-24T07:02:01.000Z
2022-03-18T04:34:17.000Z
src/ada/src/comms/uxas-comms-lmcp_object_message_receiver_pipes.adb
VVCAS-Sean/OpenUxAS
dcd7be29d182d278a5387908f568d6f8a06b79ee
[ "NASA-1.3" ]
46
2017-06-08T18:18:08.000Z
2022-03-15T18:24:43.000Z
src/ada/src/comms/uxas-comms-lmcp_object_message_receiver_pipes.adb
VVCAS-Sean/OpenUxAS
dcd7be29d182d278a5387908f568d6f8a06b79ee
[ "NASA-1.3" ]
53
2017-06-22T14:48:05.000Z
2022-02-15T16:59:38.000Z
with ZMQ.Sockets; with AVTAS.LMCP.Factory; with UxAS.Comms.Transport.ZeroMQ_Socket_Configurations; use UxAS.Comms.Transport.ZeroMQ_Socket_Configurations; with UxAS.Comms.Transport.Network_Name; with UxAS.Common.String_Constant.Lmcp_Network_Socket_Address; use UxAS.Common.String_Constant.Lmcp_Network_Socket_Address; with AVTAS.LMCP.ByteBuffers; use AVTAS.LMCP.ByteBuffers; with Ada.Strings.Unbounded; use Ada.Strings.Unbounded; package body UxAS.Comms.LMCP_Object_Message_Receiver_Pipes is procedure Initialize_Zmq_Socket (This : in out LMCP_Object_Message_Receiver_Pipe; Entity_Id : UInt32; Service_Id : UInt32; Zmq_SocketType : ZMQ.Sockets.Socket_Type; Socket_Address : String; Is_Server : Boolean); --------------------- -- Initialize_Pull -- --------------------- procedure Initialize_Pull (This : in out LMCP_Object_Message_Receiver_Pipe; Entity_Id : UInt32; Service_Id : UInt32) is begin Initialize_Zmq_Socket (This, Entity_Id => Entity_Id, Service_Id => Service_Id, Zmq_SocketType => ZMQ.Sockets.PULL, Socket_Address => To_String (InProc_To_MessageHub), Is_Server => True); end Initialize_Pull; -------------------------------------- -- Initialize_External_Subscription -- -------------------------------------- procedure Initialize_External_Subscription (This : in out LMCP_Object_Message_Receiver_Pipe; Entity_Id : UInt32; Service_Id : UInt32; External_Socket_Address : String; Is_Server : Boolean) is begin Initialize_Zmq_Socket (This, Entity_Id => Entity_Id, Service_Id => Service_Id, Zmq_SocketType => ZMQ.Sockets.SUB, Socket_Address => External_Socket_Address, Is_Server => Is_Server); end Initialize_External_Subscription; ------------------------------ -- Initialize_External_Pull -- ------------------------------ procedure Initialize_External_Pull (This : in out LMCP_Object_Message_Receiver_Pipe; Entity_Id : UInt32; Service_Id : UInt32; External_Socket_Address : String; Is_Server : Boolean) is begin Initialize_Zmq_Socket (This, Entity_Id => Entity_Id, Service_Id => Service_Id, Zmq_SocketType => ZMQ.Sockets.PULL, Socket_Address => External_Socket_Address, Is_Server => Is_Server); end Initialize_External_Pull; ----------------------------- -- Initialize_Subscription -- ----------------------------- procedure Initialize_Subscription (This : in out LMCP_Object_Message_Receiver_Pipe; Entity_Id : UInt32; Service_Id : UInt32) is begin Initialize_Zmq_Socket (This, Entity_Id => Entity_Id, Service_Id => Service_Id, Zmq_SocketType => ZMQ.Sockets.SUB, Socket_Address => To_String (InProc_From_MessageHub), Is_Server => False); end Initialize_Subscription; ----------------------- -- Initialize_Stream -- ----------------------- procedure Initialize_Stream (This : in out LMCP_Object_Message_Receiver_Pipe; Entity_Id : UInt32; Service_Id : UInt32; Socket_Address : String; Is_Server : Boolean) is begin Initialize_Zmq_Socket (This, Entity_Id => Entity_Id, Service_Id => Service_Id, Zmq_SocketType => ZMQ.Sockets.STREAM, Socket_Address => Socket_Address, Is_Server => Is_Server); end Initialize_Stream; ------------------------------------------ -- Add_Lmcp_Object_Subscription_Address -- ------------------------------------------ procedure Add_Lmcp_Object_Subscription_Address (This : in out LMCP_Object_Message_Receiver_Pipe; Address : String; Result : out Boolean) is begin This.Receiver.Add_Subscription_Address (Address, Result); end Add_Lmcp_Object_Subscription_Address; --------------------------------------------- -- Remove_Lmcp_Object_Subscription_Address -- --------------------------------------------- procedure Remove_Lmcp_Object_Subscription_Address (This : in out LMCP_Object_Message_Receiver_Pipe; Address : String; Result : out Boolean) is begin This.Receiver.Remove_Subscription_Address (Address, Result); end Remove_Lmcp_Object_Subscription_Address; ------------------------------------------------- -- Remove_All_Lmcp_Object_Subscription_Address -- ------------------------------------------------- procedure Remove_All_Lmcp_Object_Subscription_Address (This : in out LMCP_Object_Message_Receiver_Pipe; Result : out Boolean) is begin This.Receiver.Remove_All_Subscription_Addresses (Result); end Remove_All_Lmcp_Object_Subscription_Address; ----------------------------- -- Get_Next_Message_Object -- ----------------------------- procedure Get_Next_Message_Object (This : in out LMCP_Object_Message_Receiver_Pipe; Message : out Any_LMCP_Message) is Next_Message : Addressed_Attributed_Message_Ref; Object : AVTAS.LMCP.Object.Object_Any; begin This.Receiver.Get_Next_Message (Next_Message); if Next_Message /= null then Deserialize_Message (This, Next_Message.Payload, Object); if Object /= null then Message := new LMCP_Message'(Attributes => Next_Message.Message_Attributes_Ownership, Payload => Object); else Message := null; end if; else Message := null; end if; end Get_Next_Message_Object; --------------------------------- -- Get_Next_Serialized_Message -- --------------------------------- procedure Get_Next_Serialized_Message (This : in out LMCP_Object_Message_Receiver_Pipe; Message : out Addressed_Attributed_Message_Ref) is begin This.Receiver.Get_Next_Message (Message); end Get_Next_Serialized_Message; ------------------------- -- Deserialize_Message -- ------------------------- procedure Deserialize_Message (This : in out LMCP_Object_Message_Receiver_Pipe; Payload : String; Message : out not null AVTAS.LMCP.Object.Object_Any) is pragma Unreferenced (This); Buffer : ByteBuffer (Payload'Length); begin Buffer.Put_Raw_Bytes (Payload); Buffer.Rewind; AVTAS.LMCP.Factory.getObject (Buffer, Message); end Deserialize_Message; --------------- -- Entity_Id -- --------------- function Entity_Id (This : LMCP_Object_Message_Receiver_Pipe) return UInt32 is (This.Entity_Id); ---------------- -- Service_Id -- ---------------- function Service_Id (This : LMCP_Object_Message_Receiver_Pipe) return UInt32 is (This.Service_Id); --------------------------- -- Initialize_Zmq_Socket -- --------------------------- procedure Initialize_Zmq_Socket (This : in out LMCP_Object_Message_Receiver_Pipe; Entity_Id : UInt32; Service_Id : UInt32; Zmq_SocketType : ZMQ.Sockets.Socket_Type; Socket_Address : String; Is_Server : Boolean) is Zmq_High_Water_Mark : constant Int32 := 100_000; Configuration : constant ZeroMq_Socket_Configuration := Make (Network_Name => UxAS.Comms.Transport.Network_Name.ZmqLmcpNetwork, Socket_Address => Socket_Address, Zmq_Socket_Type => Zmq_SocketType, Number_Of_IO_Threads => 1, Is_Server_Bind => Is_Server, Is_Receive => True, Receive_High_Water_Mark => Zmq_High_Water_Mark, Send_High_Water_Mark => Zmq_High_Water_Mark); begin This.Entity_Id := Entity_Id; This.Service_Id := Service_Id; This.Receiver := new ZeroMq_Addressed_Attributed_Message_Receiver; This.Receiver.Initialize (Entity_Id, Service_Id, Configuration); end Initialize_Zmq_Socket; end UxAS.Comms.LMCP_Object_Message_Receiver_Pipes;
31.75188
97
0.587971
41d11e154f92a207388209d367b4c9e3c923f3b9
1,672
adb
Ada
server/jason-server.adb
stcarrez/jason
eee21b84fb6bab2e05b1f4df408d8f9ed34cbccc
[ "Apache-2.0" ]
2
2019-01-26T22:14:55.000Z
2019-01-28T10:49:46.000Z
server/jason-server.adb
stcarrez/jason
eee21b84fb6bab2e05b1f4df408d8f9ed34cbccc
[ "Apache-2.0" ]
null
null
null
server/jason-server.adb
stcarrez/jason
eee21b84fb6bab2e05b1f4df408d8f9ed34cbccc
[ "Apache-2.0" ]
null
null
null
----------------------------------------------------------------------- -- Jason-server -- Application server -- Copyright (C) 2016 Stephane.Carrez -- Written by Stephane.Carrez ([email protected]) -- -- 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. ----------------------------------------------------------------------- with Ada.Exceptions; with Util.Log.loggers; with ASF.Server.Web; with Jason.Applications; procedure Jason.Server is Log : constant Util.Log.Loggers.Logger := Util.Log.Loggers.Create ("Jason.Server"); App : constant Jason.Applications.Application_Access := new Jason.Applications.Application; WS : ASF.Server.Web.AWS_Container; begin Jason.Applications.Initialize (App); WS.Register_Application (Jason.Applications.CONTEXT_PATH, App.all'Access); Log.Info ("Connect you browser to: http://localhost:8080/jason/index.html"); WS.Start; delay 365.0 * 24.0 * 3600.0; App.Close; exception when E: others => Log.Error ("Exception in server: " & Ada.Exceptions.Exception_Name (E) & ": " & Ada.Exceptions.Exception_Message (E)); end Jason.Server;
38.883721
98
0.647129
418cb7f67fbe84ee1b3ae56115e35923927a35da
1,016
adb
Ada
AdaProgrammingAssignment/matrixmult.adb
rohitsaraf17/NYU-ProgrammingLanguages
363d751b64bb0671946aaa29e4aed107751e79d8
[ "Apache-2.0" ]
3
2020-02-21T01:37:24.000Z
2020-02-21T06:37:59.000Z
AdaProgrammingAssignment/matrixmult.adb
rohitsaraf17/NYU-ProgrammingLanguages
363d751b64bb0671946aaa29e4aed107751e79d8
[ "Apache-2.0" ]
null
null
null
AdaProgrammingAssignment/matrixmult.adb
rohitsaraf17/NYU-ProgrammingLanguages
363d751b64bb0671946aaa29e4aed107751e79d8
[ "Apache-2.0" ]
null
null
null
package body MatrixMult is task type MultiplyType is entry mult(A,B : Matrix; I,j : Integer); entry assign(P:out Integer); end MultiplyType; task body MultiplyType is sum: integer; row: integer; col: integer; arr1: array(1..10) of integer; arr2: array(1..10) of integer; begin accept mult(A,B : Matrix; I,J : Integer) do sum := 0; row := I; col := J; for K in 1..SIZE loop arr1(K) := A(I,K); arr2(K) := B(K,J); end loop; end mult; for K in 1..SIZE loop sum := sum + (arr1(K)*arr2(K)); end loop; accept assign(P:out Integer) do P:= sum; end assign; end MultiplyType; Multiply: array(1..SIZE,1..SIZE) of MultiplyType; procedure MatMult(A, B : Matrix; C : out Matrix) is P: integer; begin for I in 1..SIZE loop for J in 1..SIZE loop Multiply(I,J).mult(A,B,I,J); end loop; end loop; for I in 1..SIZE loop for J in 1..SIZE loop Multiply(I,J).assign(P); C(I,J) := P; end loop; end loop; end MatMult; end MatrixMult;
19.921569
52
0.610236
595e802421b8bc420abffd901542624a8bd61f9d
3,626
ads
Ada
source/amf/uml/amf-uml-function_behaviors-hash.ads
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
24
2016-11-29T06:59:41.000Z
2021-08-30T11:55:16.000Z
source/amf/uml/amf-uml-function_behaviors-hash.ads
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
2
2019-01-16T05:15:20.000Z
2019-02-03T10:03:32.000Z
source/amf/uml/amf-uml-function_behaviors-hash.ads
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
4
2017-07-18T07:11:05.000Z
2020-06-21T03:02:25.000Z
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2011-2012, Vadim Godunko <[email protected]> -- -- 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 Vadim Godunko, IE 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. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ -- This file is generated, don't edit it. ------------------------------------------------------------------------------ with AMF.Elements.Generic_Hash; function AMF.UML.Function_Behaviors.Hash is new AMF.Elements.Generic_Hash (UML_Function_Behavior, UML_Function_Behavior_Access);
72.52
86
0.404854
10faac49d124248ca3a6d22d66193b64da79318c
7,045
adb
Ada
4-high/gel/applet/demo/sprite/mixed_joints/launch_mixed_joints.adb
charlie5/lace-alire
9ace9682cf4daac7adb9f980c2868d6225b8111c
[ "0BSD" ]
1
2022-01-20T07:13:42.000Z
2022-01-20T07:13:42.000Z
4-high/gel/applet/demo/sprite/mixed_joints/launch_mixed_joints.adb
charlie5/lace-alire
9ace9682cf4daac7adb9f980c2868d6225b8111c
[ "0BSD" ]
null
null
null
4-high/gel/applet/demo/sprite/mixed_joints/launch_mixed_joints.adb
charlie5/lace-alire
9ace9682cf4daac7adb9f980c2868d6225b8111c
[ "0BSD" ]
null
null
null
with gel.Window.sdl, gel.Applet.gui_world, gel.Forge, gel.Sprite, gel.hinge_Joint, gel.ball_Joint, gel.cone_twist_Joint, gel.slider_Joint, gel.any_Joint, openGL.Palette; pragma unreferenced (gel.Window.sdl); procedure launch_mixed_Joints -- -- Shows a variety of joints. -- is package Math renames gel.Math; use openGL, opengl.Palette; the_Applet : constant gel.Applet.gui_World.view := gel.Forge.new_gui_Applet ("mixed Joints", 1536, 864); begin the_Applet.gui_World .Gravity_is ((0.0, -10.0, 0.0)); the_Applet.gui_Camera.Site_is ((0.0, 4.0, 30.0)); -- Position the camera. the_Applet.Renderer .Background_is (Grey); the_Applet.enable_simple_Dolly (gel.Applet.gui_world.gui_world_Id); -- Enable user camera control via keyboard. -- Add joints. -- declare use gel.Forge, gel.linear_Algebra_3D, Math; begin -- Hinge -- declare the_hinge_Box_1 : constant gel.Sprite.view := new_box_Sprite (the_Applet.gui_World, Mass => 0.0); the_hinge_Box_2 : constant gel.Sprite.view := new_box_Sprite (the_Applet.gui_World); the_hinge_Joint : constant gel.hinge_Joint .view := new gel.hinge_Joint.item; Frame_A : constant math.Matrix_4x4 := math.Identity_4x4; Frame_B : math.Matrix_4x4 := math.Identity_4x4; begin set_Translation (Frame_B, ( 2.0, 2.0, 0.0)); the_hinge_Joint.define (the_Applet.gui_World.Space, the_hinge_Box_1, the_hinge_Box_2, Frame_A, Frame_B, collide_Conected => False); the_hinge_Box_1.Site_is (( 0.0, 0.0, 0.0)); the_hinge_Box_2.Site_is ((-1.0, 2.0, 0.0)); the_Applet.gui_World.add (the_hinge_Box_1, and_Children => False); the_Applet.gui_World.add (the_hinge_Box_2, and_Children => False); the_Applet.gui_World.add (the_hinge_Joint.all'Access); end; -- DoF6 -- declare the_DoF6_Box_1 : constant gel.Sprite .view := new_box_Sprite (the_Applet.gui_World, Mass => 0.0); the_DoF6_Box_2 : constant gel.Sprite .view := new_box_Sprite (the_Applet.gui_World); the_DoF6_Joint : constant gel.any_Joint.view := new gel.any_Joint.item; Frame_A : constant math.Matrix_4x4 := math.Identity_4x4; Frame_B : math.Matrix_4x4 := math.Identity_4x4; begin set_Translation (Frame_B, (2.0, 2.0, 0.0)); the_DoF6_Joint.define (the_Applet.gui_World.Space, the_DoF6_Box_1, the_DoF6_Box_2, Frame_A, Frame_B); the_DoF6_Box_1.Site_is ((-20.0, 0.0, 0.0)); the_DoF6_Box_2.Site_is ((-20.0 - 2.0, 0.0, 2.0)); the_Applet.gui_World.add (the_DoF6_Box_1); the_Applet.gui_World.add (the_DoF6_Box_2); the_Applet.gui_World.add (the_DoF6_Joint.all'Access); end; -- Ball -- declare the_ball_Box_1 : constant gel.Sprite .view := new_box_Sprite (the_Applet.gui_World, Mass => 0.0); the_ball_Box_2 : constant gel.Sprite .view := new_box_Sprite (the_Applet.gui_World); the_ball_Joint : constant gel.ball_Joint.view := new gel.ball_Joint.item; Pivot_in_A : constant math.Vector_3 := (0.0, -1.0, 0.0); Pivot_in_B : constant math.Vector_3 := (0.0, 1.0, 0.0); begin the_ball_Joint.define (the_Applet.gui_World.Space, the_ball_Box_1, the_ball_Box_2, Pivot_in_A, Pivot_in_B); the_ball_Box_1.Site_is ((-10.0, 0.0, 0.0)); the_ball_Box_2.Site_is ((-10.0 - 2.0, 0.0, 2.0)); the_Applet.gui_World.add (the_ball_Box_1); the_Applet.gui_World.add (the_ball_Box_2); the_Applet.gui_World.add (the_ball_Joint.all'Access); end; -- Slider -- declare the_slider_Box_1 : constant gel.Sprite .view := new_box_Sprite (the_Applet.gui_World, Mass => 0.0); the_slider_Box_2 : constant gel.Sprite .view := new_box_Sprite (the_Applet.gui_World); the_slider_Joint : constant gel.slider_Joint.view := new gel.slider_Joint.item; Frame_A : math.Matrix_4x4 := math.Identity_4x4; Frame_B : math.Matrix_4x4 := math.Identity_4x4; y_Rot : math.Matrix_3x3 := y_Rotation_from (to_Radians (45.0)); x_Rot : math.Matrix_3x3 := x_Rotation_from (to_Radians (45.0)); begin set_Translation (Frame_A, (-4.0, 4.0, -4.0)); set_Translation (Frame_B, ( 4.0, 0.0, 0.0)); -- set_Rotation (Frame_A, x_Rot); -- set_Rotation (Frame_B, x_Rot); the_slider_Joint.define (the_Applet.gui_World.Space, the_slider_Box_1, the_slider_Box_2, Frame_A, Frame_B); the_slider_Box_1.Site_is ((-10.0, 10.0, 0.0)); the_slider_Box_2.Site_is ((-10.0 - 2.0, 15.0, 0.0)); the_Applet.gui_World.add (the_slider_Box_1); the_Applet.gui_World.add (the_slider_Box_2); the_Applet.gui_World.add (the_slider_Joint.all'Access); end; -- cone Twist -- declare the_cone_twist_Box_1 : constant gel.Sprite .view := new_box_Sprite (the_Applet.gui_World, Mass => 0.0); the_cone_twist_Box_2 : constant gel.Sprite .view := new_box_Sprite (the_Applet.gui_World); the_cone_twist_Joint : constant gel.cone_twist_Joint.view := new gel.cone_twist_Joint.item; Frame_A : constant math.Matrix_4x4 := math.Identity_4x4; Frame_B : math.Matrix_4x4 := math.Identity_4x4; y_Rot : math.Matrix_3x3 := y_Rotation_from (to_Radians (45.0)); x_Rot : math.Matrix_3x3 := x_Rotation_from (to_Radians (45.0)); begin -- set_Translation (Frame_A, ( -4.0, 4.0, -4.0)); set_Translation (Frame_B, (4.0, 0.0, 0.0)); -- set_Rotation (Frame_A, x_Rot); -- set_Rotation (Frame_B, x_Rot); the_cone_twist_Joint.define (the_Applet.gui_World.Space, the_cone_twist_Box_1, the_cone_twist_Box_2, Frame_A, Frame_B); the_cone_twist_Box_1.Site_is ((10.0, 10.0, 0.0)); the_cone_twist_Box_2.Site_is ((10.0 + 2.0, 10.0, 0.0)); the_Applet.gui_World.add (the_cone_twist_Box_1); the_Applet.gui_World.add (the_cone_twist_Box_2); the_Applet.gui_World.add (the_cone_twist_Joint.all'Access); end; end; while the_Applet.is_open loop the_Applet.freshen; -- Handle any new events, evolve the world and update the screen. end loop; the_Applet.destroy; end launch_mixed_Joints;
38.922652
123
0.5956
41c9e63d1c304d61857e3f8085e9867ad78c70ce
9,116
adb
Ada
src/http/curl/util-http-clients-curl.adb
Letractively/ada-util
e4c63b93635dc07c46e95f12ba02d18903b307b3
[ "Apache-2.0" ]
null
null
null
src/http/curl/util-http-clients-curl.adb
Letractively/ada-util
e4c63b93635dc07c46e95f12ba02d18903b307b3
[ "Apache-2.0" ]
null
null
null
src/http/curl/util-http-clients-curl.adb
Letractively/ada-util
e4c63b93635dc07c46e95f12ba02d18903b307b3
[ "Apache-2.0" ]
null
null
null
----------------------------------------------------------------------- -- util-http-clients-curl -- HTTP Clients with CURL -- Copyright (C) 2012 Stephane Carrez -- Written by Stephane Carrez ([email protected]) -- -- 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. ----------------------------------------------------------------------- with Util.Strings; with Util.Log.Loggers; with Util.Http.Clients.Curl.Constants; package body Util.Http.Clients.Curl is use System; pragma Linker_Options ("-lcurl"); Log : constant Util.Log.Loggers.Logger := Util.Log.Loggers.Create ("Util.Http.Clients.Curl"); function Get_Request (Http : in Client'Class) return Curl_Http_Request_Access; Manager : aliased Curl_Http_Manager; -- ------------------------------ -- Register the CURL Http manager. -- ------------------------------ procedure Register is begin Default_Http_Manager := Manager'Access; end Register; -- ------------------------------ -- Check the CURL result code and report and exception and a log message if -- the CURL code indicates an error. -- ------------------------------ procedure Check_Code (Code : in CURL_Code; Message : in String) is begin if Code /= CURLE_OK then declare Error : constant Chars_Ptr := Curl_Easy_Strerror (Code); Msg : constant String := Interfaces.C.Strings.Value (Error); begin Log.Error ("{0}: {1}", Message, Msg); raise Connection_Error with Msg; end; end if; end Check_Code; -- ------------------------------ -- Create a new HTTP request associated with the current request manager. -- ------------------------------ procedure Create (Manager : in Curl_Http_Manager; Http : in out Client'Class) is pragma Unreferenced (Manager); Request : Curl_Http_Request_Access; Data : CURL; begin Data := Curl_Easy_Init; if Data = System.Null_Address then raise Storage_Error with "curl_easy_init cannot create the CURL instance"; end if; Request := new Curl_Http_Request; Request.Data := Data; Http.Delegate := Request.all'Access; end Create; function Get_Request (Http : in Client'Class) return Curl_Http_Request_Access is begin return Curl_Http_Request'Class (Http.Delegate.all)'Access; end Get_Request; -- ------------------------------ -- This function is called by CURL when a response line was read. -- ------------------------------ function Read_Response (Data : in Chars_Ptr; Size : in Size_T; Nmemb : in Size_T; Response : in Curl_Http_Response_Access) return Size_T is Total : constant Size_T := Size * Nmemb; Line : constant String := Interfaces.C.Strings.Value (Data, Total); begin Log.Info ("RCV: {0}", Line); if Response.Parsing_Body then Ada.Strings.Unbounded.Append (Response.Content, Line); elsif Total = 2 and then Line (1) = ASCII.CR and then Line (2) = ASCII.LF then Response.Parsing_Body := True; else declare Pos : constant Natural := Util.Strings.Index (Line, ':'); Start : Natural; Last : Natural; begin if Pos > 0 then Start := Pos + 1; while Start <= Line'Last and Line (Start) = ' ' loop Start := Start + 1; end loop; Last := Line'Last; while Last >= Start and (Line (Last) = ASCII.CR or Line (Last) = ASCII.LF) loop Last := Last - 1; end loop; Response.Add_Header (Name => Line (Line'First .. Pos - 1), Value => Line (Start .. Last)); end if; end; end if; return Total; end Read_Response; procedure Do_Get (Manager : in Curl_Http_Manager; Http : in Client'Class; URI : in String; Reply : out Response'Class) is pragma Unreferenced (Manager); use Interfaces.C; Req : constant Curl_Http_Request_Access := Get_Request (Http); Result : CURL_Code; Response : Curl_Http_Response_Access; Status : aliased C.long; begin Log.Info ("GET {0}", URI); Result := Curl_Easy_Setopt_Write_Callback (Req.Data, Constants.CURLOPT_WRITEUNCTION, Read_Response'Access); Check_Code (Result, "set callback"); Interfaces.C.Strings.Free (Req.URL); Req.URL := Strings.New_String (URI); Result := Curl_Easy_Setopt_Long (Req.Data, Constants.CURLOPT_HEADER, 1); Check_Code (Result, "set header"); Result := Curl_Easy_Setopt_String (Req.Data, Constants.CURLOPT_URL, Req.URL); Check_Code (Result, "set url"); Response := new Curl_Http_Response; Result := Curl_Easy_Setopt_Data (Req.Data, Constants.CURLOPT_WRITEDATA, Response); Check_Code (Result, "set write data"); Reply.Delegate := Response.all'Access; Result := Curl_Easy_Perform (Req.Data); Check_Code (Result, "get request"); Result := Curl_Easy_Getinfo_Long (Req.Data, Constants.CURLINFO_RESPONSE_CODE, Status'Access); Check_Code (Result, "get response code"); Response.Status := Natural (Status); end Do_Get; procedure Do_Post (Manager : in Curl_Http_Manager; Http : in Client'Class; URI : in String; Data : in String; Reply : out Response'Class) is pragma Unreferenced (Manager); use Interfaces.C; Req : constant Curl_Http_Request_Access := Get_Request (Http); Result : CURL_Code; Response : Curl_Http_Response_Access; Status : aliased C.long; begin Log.Info ("POST {0}", URI); Result := Curl_Easy_Setopt_Write_Callback (Req.Data, Constants.CURLOPT_WRITEUNCTION, Read_Response'Access); Check_Code (Result, "set callback"); Interfaces.C.Strings.Free (Req.URL); Req.URL := Strings.New_String (URI); Interfaces.C.Strings.Free (Req.Content); Req.Content := Strings.New_String (Data); Result := Curl_Easy_Setopt_Long (Req.Data, Constants.CURLOPT_HEADER, 1); Check_Code (Result, "set header"); Result := Curl_Easy_Setopt_String (Req.Data, Constants.CURLOPT_URL, Req.URL); Check_Code (Result, "set url"); Result := Curl_Easy_Setopt_String (Req.Data, Constants.CURLOPT_POSTFIELDS, Req.Content); Check_Code (Result, "set post data"); Result := Curl_Easy_Setopt_Long (Req.Data, Constants.CURLOPT_POSTFIELDSIZE, Data'Length); Check_Code (Result, "set post data"); Response := new Curl_Http_Response; Result := Curl_Easy_Setopt_Data (Req.Data, Constants.CURLOPT_WRITEDATA, Response); Check_Code (Result, "set write data"); Reply.Delegate := Response.all'Access; Result := Curl_Easy_Perform (Req.Data); Check_Code (Result, "get request"); Result := Curl_Easy_Getinfo_Long (Req.Data, Constants.CURLINFO_RESPONSE_CODE, Status'Access); Check_Code (Result, "get response code"); Response.Status := Natural (Status); end Do_Post; overriding procedure Finalize (Request : in out Curl_Http_Request) is begin if Request.Data /= System.Null_Address then Curl_Easy_Cleanup (Request.Data); Request.Data := System.Null_Address; end if; if Request.Headers /= null then Curl_Slist_Free_All (Request.Headers); Request.Headers := null; end if; Interfaces.C.Strings.Free (Request.URL); Interfaces.C.Strings.Free (Request.Content); end Finalize; -- ------------------------------ -- Get the response body as a string. -- ------------------------------ overriding function Get_Body (Reply : in Curl_Http_Response) return String is begin return Ada.Strings.Unbounded.To_String (Reply.Content); end Get_Body; -- ------------------------------ -- Get the response status code. -- ------------------------------ overriding function Get_Status (Reply : in Curl_Http_Response) return Natural is begin return Reply.Status; end Get_Status; end Util.Http.Clients.Curl;
36.610442
99
0.584138
065f5aa45493d78a64c09c468dc22e14e4850f9a
175
ads
Ada
ejercicios4/matriz.ads
iyan22/AprendeAda
18bd2a224e5bda30c43d9ceabe0c05278e069ebf
[ "MIT" ]
null
null
null
ejercicios4/matriz.ads
iyan22/AprendeAda
18bd2a224e5bda30c43d9ceabe0c05278e069ebf
[ "MIT" ]
null
null
null
ejercicios4/matriz.ads
iyan22/AprendeAda
18bd2a224e5bda30c43d9ceabe0c05278e069ebf
[ "MIT" ]
null
null
null
package Matriz is type Vector_De_enteros is array(Integer range <>) of Integer; type Matriz_de_Enteros is array (INTEGER range <>, INTEGER range <>) of Integer; end Matriz;
35
81
0.765714
594d7abfeb3be3a2c7120b7f4d08096bbaf3fcfe
8,686
ads
Ada
thirdparty/adasdl/thin/adasdl/AdaSDL/binding/sdl-cdrom.ads
Lucretia/old_nehe_ada95
d0378c3bfce202eb01bf00b57c128735dbe8582d
[ "BSD-3-Clause" ]
null
null
null
thirdparty/adasdl/thin/adasdl/AdaSDL/binding/sdl-cdrom.ads
Lucretia/old_nehe_ada95
d0378c3bfce202eb01bf00b57c128735dbe8582d
[ "BSD-3-Clause" ]
null
null
null
thirdparty/adasdl/thin/adasdl/AdaSDL/binding/sdl-cdrom.ads
Lucretia/old_nehe_ada95
d0378c3bfce202eb01bf00b57c128735dbe8582d
[ "BSD-3-Clause" ]
null
null
null
-- ----------------------------------------------------------------- -- -- AdaSDL -- -- Binding to Simple Direct Media Layer -- -- Copyright (C) 2001 A.M.F.Vargas -- -- Antonio M. F. Vargas -- -- Ponta Delgada - Azores - Portugal -- -- http://www.adapower.net/~avargas -- -- E-mail: [email protected] -- -- ----------------------------------------------------------------- -- -- -- -- This library 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. -- -- -- -- This library 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 library; if not, write to the -- -- Free Software Foundation, Inc., 59 Temple Place - Suite 330, -- -- Boston, MA 02111-1307, USA. -- -- -- -- As a special exception, if other files instantiate generics from -- -- this unit, or you link this unit with other files to produce an -- -- executable, this unit does not by itself cause the resulting -- -- executable to be covered by the GNU General Public License. This -- -- exception does not however invalidate any other reasons why the -- -- executable file might be covered by the GNU Public License. -- -- ----------------------------------------------------------------- -- -- **************************************************************** -- -- This is an Ada binding to SDL ( Simple DirectMedia Layer from -- -- Sam Lantinga - www.libsld.org ) -- -- **************************************************************** -- -- In order to help the Ada programmer, the comments in this file -- -- are, in great extent, a direct copy of the original text in the -- -- SDL header files. -- -- **************************************************************** -- with Interfaces.C.Strings; with SDL.Types; use SDL.Types; package SDL.Cdrom is package CS renames Interfaces.C.Strings; -- The maximum number of CDROM tracks on a disk. MAX_TRACKS : constant := 99; -- the types of CD-ROM track possible AUDIO_TRACK : constant := 16#00#; DATA_TRACK : constant := 16#04#; type CDstatus is new C.int; -- The possible states which a CD-ROM drive can be TRAYEMPTY : constant := 0; STOPPED : constant := 1; PLAYING : constant := 2; PAUSED : constant := 3; ERROR : constant := -1; -- Given a status, returns true if there's a disk in the drive -- #define CD_INDRIVE(status) ((int)status > 0) function INDRIVE (status : CDstatus) return Boolean; pragma Inline (INDRIVE); type CDtrack is record id : Uint8; -- Track number the_type : Uint8; -- Data or audio track unused : Uint16; lenght : Uint32; -- Length, in frames, of this track offset : Uint32; -- Offset, in frames, from start of disk end record; pragma Convention (C, CDtrack); type track_Array is array (C.int range 0 .. MAX_TRACKS) of CDtrack; pragma Convention (C, track_Array); -- This structure is only current as of the last call to CDStatus type CD is record id : C.int; -- Private drive identifier status : CDstatus; -- Current drive status -- The rest of this structure is only valid if -- there's a CD in drive numtracks : C.int; -- Number of tracks on disk cur_track : C.int; -- Current track position cur_frame : C.int; -- Current frame offset within current track track : track_Array; end record; pragma Convention (C, CD); type CD_ptr is access CD; pragma Convention (C, CD_ptr); -- Conversion functions from frames to Minute/Second/Frames -- and vice versa CD_FPS : constant := 75; procedure FRAMES_TO_MSF ( frames : C.int; M : in out C.int; S : in out C.int; F : in out C.int); pragma Inline (FRAMES_TO_MSF); function MSF_TO_FRAMES ( M : C.int; S : C.int; F : C.int) return C.int; pragma Inline (MSF_TO_FRAMES); -- CD-audio API functions: -- Returns the number of CD-ROM drives on the system, or -1 if -- SDL.Init has not been called with the INIT_CDROM flag. function CDNumDrives return C.int; pragma Import (C, CDNumDrives, "SDL_CDNumDrives"); -- Returns a human-readable, system-dependent identifier for the CD-ROM. -- Example: -- "/dev/cdrom" -- "E:" -- "/dev/disk/ide/1/master" function CDName (drive : C.int) return CS.chars_ptr; pragma Import (C, CDName, "SDL_CDName"); -- Opens a CD-ROM drive for access. It returns a drive handle -- on success, or NULL if the drive was invalid or busy. This -- newly opened CD-ROM becomes the default CD used when other -- CD functions are passed a NULL CD-ROM handle. -- Drives are numbered starting with 0. Drive 0 is the system -- default CD-ROM. function CDOpen (drive : C.int) return CD_ptr; pragma Import (C, CDOpen, "SDL_CDOpen"); -- This function returns the current status of the given drive. -- If the drive has a CD in it, the table of contents of the CD -- and current play position of the CD will be stored in the -- SDL_CD structure. function SDL_CDStatus (cdrom : CD_ptr) return CDstatus; pragma Import (C, SDL_CDStatus, "SDL_CDStatus"); -- Play the given CD starting at 'start_track' and 'start_frame' -- for 'ntracks' tracks and 'nframes' frames. If both 'ntrack' -- and 'nframe' are 0, play until the end of the CD. This function -- will skip data tracks. This function should only be called after -- calling SDL_CDStatus() to get track information about the CD. -- For example: -- -- Play entire CD: -- if CD_INDRIVE(SDL_CDStatus(cdrom)) /= 0 then -- CDPlayTracks(cdrom, 0, 0, 0, 0); -- end if; -- -- Play last track: -- if CD_INDRIVE(SDL_CDStatus(cdrom)) /= 0 then -- CDPlayTracks(cdrom, cdrom.numtracks-1, 0, 0, 0); -- end if; -- -- Play first and second track and 10 seconds of third track: -- if CD_INDRIVE(SDL_CDStatus(cdrom)) /= 0 then -- CDPlayTracks(cdrom, 0, 0, 2, 10); -- end if; -- This function returns 0, or -1 if there was an error. function CDPlayTracks ( cdrom : CD_ptr; start_track : C.int; start_frame : C.int; ntracks : C.int; nframes : C.int) return C.int; pragma Import (C, CDPlayTracks, "SDL_CDPlayTracks"); -- Play the given CD starting at 'start' frame for 'length' -- frames. It returns 0, or -1 if there was an error. function CDPlay ( cdrom : CD_ptr; start : C.int; lenght : C.int) return C.int; pragma Import (C, CDPlay, "SDL_CDPlay"); -- Pause play -- returns 0, or -1 on error function CDPause (cdrom : CD_ptr) return C.int; pragma Import (C, CDPause, "SDL_CDPause"); -- Resume play -- returns 0, or -1 on error function CDResume (cdrom : CD_ptr) return C.int; pragma Import (C, CDResume, "SDL_CDResume"); -- Stop play -- returns 0, or -1 on error function CDStop (cdrom : CD_ptr) return C.int; pragma Import (C, CDStop, "SDL_CDStop"); -- Eject CD-ROM -- returns 0, or -1 on error function CDEject (cdrom : CD_ptr) return C.int; pragma Import (C, CDEject, "SDL_CDEject"); -- Closes the handle for the CD-ROM drive procedure CDClose (cdrom : CD_ptr); pragma Import (C, CDClose, "SDL_CDClose"); end SDL.Cdrom;
41.759615
76
0.549044
2fddf998046c20d2786019c75114325e6c101320
831
adb
Ada
gnu/src/gdb/gdb/testsuite/gdb.ada/variant_record_packed_array/pck.adb
ghsecuritylab/ellcc-mirror
b03a4afac74d50cf0987554b8c0cd8209bcb92a2
[ "BSD-2-Clause" ]
null
null
null
gnu/src/gdb/gdb/testsuite/gdb.ada/variant_record_packed_array/pck.adb
ghsecuritylab/ellcc-mirror
b03a4afac74d50cf0987554b8c0cd8209bcb92a2
[ "BSD-2-Clause" ]
null
null
null
gnu/src/gdb/gdb/testsuite/gdb.ada/variant_record_packed_array/pck.adb
ghsecuritylab/ellcc-mirror
b03a4afac74d50cf0987554b8c0cd8209bcb92a2
[ "BSD-2-Clause" ]
null
null
null
-- Copyright 2009-2015 Free Software Foundation, Inc. -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- 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/>. package body Pck is procedure Do_Nothing (A : System.Address) is begin null; end Do_Nothing; end Pck;
39.571429
73
0.730445
413f604e41ac1f158e698bde1936b48324bf20dd
3,669
adb
Ada
src/lumen-binary-endian-shorts.adb
darkestkhan/lumen2
8c3ac44b2010b4abe36a46c576b1078101bf75a1
[ "0BSD" ]
8
2015-07-20T18:20:10.000Z
2021-01-29T21:09:02.000Z
src/lumen-binary-endian-shorts.adb
darkestkhan/lumen2
8c3ac44b2010b4abe36a46c576b1078101bf75a1
[ "0BSD" ]
10
2015-07-20T18:48:45.000Z
2016-05-07T19:23:31.000Z
src/lumen-binary-endian-shorts.adb
darkestkhan/lumen2
8c3ac44b2010b4abe36a46c576b1078101bf75a1
[ "0BSD" ]
1
2018-11-18T17:01:15.000Z
2018-11-18T17:01:15.000Z
-- Lumen.Binary.Endian.Shorts -- Byte re-ordering routines for "short" -- (16-bit) values -- -- -- Chip Richards, NiEstu, Phoenix AZ, Summer 2010 -- This code is covered by the ISC License: -- -- Copyright © 2010, NiEstu -- -- Permission to use, copy, modify, and/or distribute this software for any -- purpose with or without fee is hereby granted, provided that the above -- copyright notice and this permission notice appear in all copies. -- -- The software is provided "as is" and the author disclaims all warranties -- with regard to this software including all implied warranties of -- merchantability and fitness. In no event shall the author be liable for any -- special, direct, indirect, or consequential damages or any damages -- whatsoever resulting from loss of use, data or profits, whether in an -- action of contract, negligence or other tortious action, arising out of or -- in connection with the use or performance of this software. -- Environment with Ada.Unchecked_Conversion; package body Lumen.Binary.Endian.Shorts is --------------------------------------------------------------------------- -- Swap the bytes, no matter the host ordering function Swap_Bytes (Value : Short_Type) return Short_Type is S : Two_Bytes; T : Two_Bytes; function VTT is new Ada.Unchecked_Conversion (Short_Type, Two_Bytes); function TTV is new Ada.Unchecked_Conversion (Two_Bytes, Short_Type); begin -- Swap_Bytes T := VTT (Value); S.B0 := T.B1; S.B1 := T.B0; return TTV (S); end Swap_Bytes; --------------------------------------------------------------------------- -- Swap bytes if host is little-endian, or no-op if it's big-endian function To_Big (Value : Short_Type) return Short_Type is begin -- To_Big if System_Byte_Order /= High_Order_First then return Swap_Bytes (Value); else return Value; end if; end To_Big; --------------------------------------------------------------------------- -- Swap bytes if host is big-endian, or no-op if it's little-endian function To_Little (Value : Short_Type) return Short_Type is begin -- To_Little if System_Byte_Order /= Low_Order_First then return Swap_Bytes (Value); else return Value; end if; end To_Little; --------------------------------------------------------------------------- -- Swap the bytes, no matter the host ordering procedure Swap_Bytes (Value : in out Short_Type) is S : Two_Bytes; T : Two_Bytes; function VTT is new Ada.Unchecked_Conversion (Short_Type, Two_Bytes); function TTV is new Ada.Unchecked_Conversion (Two_Bytes, Short_Type); begin -- Swap_Bytes T := VTT (Value); S.B0 := T.B1; S.B1 := T.B0; Value := TTV (S); end Swap_Bytes; --------------------------------------------------------------------------- -- Swap bytes if host is little-endian, or no-op if it's big-endian procedure To_Big (Value : in out Short_Type) is begin -- To_Big if System_Byte_Order /= High_Order_First then Swap_Bytes (Value); end if; end To_Big; --------------------------------------------------------------------------- -- Swap bytes if host is big-endian, or no-op if it's little-endian procedure To_Little (Value : in out Short_Type) is begin -- To_Little if System_Byte_Order /= Low_Order_First then Swap_Bytes (Value); end if; end To_Little; --------------------------------------------------------------------------- end Lumen.Binary.Endian.Shorts;
34.613208
78
0.574816
a1acc223e579756db708ba9e7a856f20618b4c03
311
ads
Ada
gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/class_wide2.ads
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
7
2020-05-02T17:34:05.000Z
2021-10-17T10:15:18.000Z
gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/class_wide2.ads
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
null
null
null
gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/class_wide2.ads
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
2
2020-07-27T00:22:36.000Z
2021-04-01T09:41:02.000Z
package Class_Wide2 is type Root_1 (V : Integer) is tagged record null; end record; type Child is new Root_1 (1) with null record; type Class_Acc is access all Child'Class; type Grand_Child is new Child with record null; end record; procedure Initialize; end Class_Wide2;
17.277778
49
0.691318
29ccaaa782e8e615f1248be7618e09ad99625c8e
8,105
ads
Ada
src/gstreamer-rtsp-extension.ads
persan/A-gst
7a39693d105617adea52680424c862a1a08f7368
[ "Apache-2.0" ]
1
2018-01-18T00:51:00.000Z
2018-01-18T00:51:00.000Z
src/gstreamer-rtsp-extension.ads
persan/A-gst
7a39693d105617adea52680424c862a1a08f7368
[ "Apache-2.0" ]
null
null
null
src/gstreamer-rtsp-extension.ads
persan/A-gst
7a39693d105617adea52680424c862a1a08f7368
[ "Apache-2.0" ]
null
null
null
pragma Ada_2005; pragma Style_Checks (Off); pragma Warnings (Off); with Interfaces.C; use Interfaces.C; with glib; with Glib.Values; with System; private with GStreamer.GST_Low_Level.gstreamer_0_10_gst_rtsp_gstrtspmessage_h; private with GStreamer.GST_Low_Level.gstreamer_0_10_gst_rtsp_gstrtspdefs_h; private with GStreamer.GST_Low_Level.gstreamer_0_10_gst_sdp_gstsdpmessage_h; private with GStreamer.GST_Low_Level.gstreamer_0_10_gst_gststructure_h; private with GStreamer.GST_Low_Level.gstreamer_0_10_gst_gstcaps_h; private with GStreamer.GST_Low_Level.gstreamer_0_10_gst_rtsp_gstrtsptransport_h; private with GStreamer.GST_Low_Level.gstreamer_0_10_gst_rtsp_gstrtspurl_h; package GStreamer.rtsp.extension is -- unsupported macro: GST_TYPE_RTSP_EXTENSION (get_type ()) -- arg-macro: function GST_RTSP_EXTENSION (obj) -- return G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_RTSP_EXTENSION, GstRTSPExtension); -- arg-macro: function GST_IS_RTSP_EXTENSION (obj) -- return G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_RTSP_EXTENSION); -- arg-macro: function GET_IFACE (inst) -- return G_TYPE_INSTANCE_GET_INTERFACE ((inst), GST_TYPE_RTSP_EXTENSION, GstRTSPExtensionInterface); -- GStreamer RTSP Extension -- * Copyright (C) 2007 Wim Taymans <[email protected]> -- * -- * gstrtspextension.h: RTSP Extension interface. -- * -- * This library is free software; you can redistribute it and/or -- * modify it under the terms of the GNU Library General Public -- * License as published by the Free Software Foundation; either -- * version 2 of the License, or (at your option) any later version. -- * -- * This library 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 -- * Library General Public License for more details. -- * -- * You should have received a copy of the GNU Library General Public -- * License along with this library; if not, write to the -- * Free Software Foundation, Inc., 59 Temple Place - Suite 330, -- * Boston, MA 02111-1307, USA. -- -- skipped empty struct u_GstRTSPExtension -- skipped empty struct GstRTSPExtension type GstRTSPExtensionInterface; type u_GstRTSPExtensionInterface_u_gst_reserved_array is array (0 .. 2) of System.Address; --subtype GstRTSPExtensionInterface is u_GstRTSPExtensionInterface; -- gst/rtsp/gstrtspextension.h:44 type GstRTSPExtensionInterface is record parent : aliased GStreamer. GST_Low_Level.glib_2_0_gobject_gtype_h.GTypeInterface; -- gst/rtsp/gstrtspextension.h:47 detect_server : access function (arg1 : System.Address; arg2 : access GStreamer.GST_Low_Level.gstreamer_0_10_gst_rtsp_gstrtspmessage_h.GstRTSPMessage) return GLIB.gboolean; -- gst/rtsp/gstrtspextension.h:50 before_send : access function (arg1 : System.Address; arg2 : access GStreamer.GST_Low_Level.gstreamer_0_10_gst_rtsp_gstrtspmessage_h.GstRTSPMessage) return GstRTSPResult; -- gst/rtsp/gstrtspextension.h:52 after_send : access function (arg1 : System.Address; arg2 : access GStreamer.GST_Low_Level.gstreamer_0_10_gst_rtsp_gstrtspmessage_h.GstRTSPMessage; arg3 : access GStreamer.GST_Low_Level.gstreamer_0_10_gst_rtsp_gstrtspmessage_h.GstRTSPMessage) return GstRTSPResult; -- gst/rtsp/gstrtspextension.h:53 parse_sdp : access function (arg1 : System.Address; arg2 : access GStreamer.GST_Low_Level.gstreamer_0_10_gst_sdp_gstsdpmessage_h.GstSDPMessage; arg3 : access GStreamer.GST_Low_Level.gstreamer_0_10_gst_gststructure_h.GstStructure) return GstRTSPResult; -- gst/rtsp/gstrtspextension.h:55 setup_media : access function (arg1 : System.Address; arg2 : access GStreamer.GST_Low_Level.gstreamer_0_10_gst_sdp_gstsdpmessage_h.GstSDPMedia) return GstRTSPResult; -- gst/rtsp/gstrtspextension.h:56 configure_stream : access function (arg1 : System.Address; arg2 : access GStreamer.GST_Low_Level.gstreamer_0_10_gst_gstcaps_h.GstCaps) return GLIB.gboolean; -- gst/rtsp/gstrtspextension.h:58 get_transports : access function (arg1 : System.Address; arg2 : GStreamer.GST_Low_Level.gstreamer_0_10_gst_rtsp_gstrtsptransport_h.GstRTSPLowerTrans; arg3 : System.Address) return GstRTSPResult; -- gst/rtsp/gstrtspextension.h:60 stream_select : access function (arg1 : System.Address; arg2 : access GStreamer.GST_Low_Level.gstreamer_0_10_gst_rtsp_gstrtspurl_h.GstRTSPUrl) return GstRTSPResult; -- gst/rtsp/gstrtspextension.h:62 send : access function (arg1 : System.Address; arg2 : access GStreamer.GST_Low_Level.gstreamer_0_10_gst_rtsp_gstrtspmessage_h.GstRTSPMessage; arg3 : access GStreamer.GST_Low_Level.gstreamer_0_10_gst_rtsp_gstrtspmessage_h.GstRTSPMessage) return GstRTSPResult; -- gst/rtsp/gstrtspextension.h:65 receive_request : access function (arg1 : System.Address; arg2 : access GStreamer.GST_Low_Level.gstreamer_0_10_gst_rtsp_gstrtspmessage_h.GstRTSPMessage) return GstRTSPResult; -- gst/rtsp/gstrtspextension.h:68 u_gst_reserved : u_GstRTSPExtensionInterface_u_gst_reserved_array; -- gst/rtsp/gstrtspextension.h:71 end record; pragma Convention (C_Pass_By_Copy, GstRTSPExtensionInterface); -- gst/rtsp/gstrtspextension.h:46 -- vfunctions -- signals -- ABI: more vfunctions added later --< private > function get_type return GLIB.GType; -- gst/rtsp/gstrtspextension.h:74 -- invoke vfunction on interface function Detect_Server (Ext : System.Address; Resp : access GStreamer.GST_Low_Level.Gstreamer_0_10_Gst_Rtsp_Gstrtspmessage_H.GstRTSPMessage) return GLIB.Gboolean; -- gst/rtsp/gstrtspextension.h:77 function before_send (ext : System.Address; req : access GStreamer.GST_Low_Level.gstreamer_0_10_gst_rtsp_gstrtspmessage_h.GstRTSPMessage) return GstRTSPResult; -- gst/rtsp/gstrtspextension.h:79 function after_send (ext : System.Address; req : access GStreamer.GST_Low_Level.gstreamer_0_10_gst_rtsp_gstrtspmessage_h.GstRTSPMessage; resp : access GStreamer.GST_Low_Level.gstreamer_0_10_gst_rtsp_gstrtspmessage_h.GstRTSPMessage) return GstRTSPResult; -- gst/rtsp/gstrtspextension.h:80 function parse_sdp (ext : System.Address; sdp : access GStreamer.GST_Low_Level.gstreamer_0_10_gst_sdp_gstsdpmessage_h.GstSDPMessage; s : access GStreamer.GST_Low_Level.gstreamer_0_10_gst_gststructure_h.GstStructure) return GstRTSPResult; -- gst/rtsp/gstrtspextension.h:82 function setup_media (ext : System.Address; media : access GStreamer.GST_Low_Level.gstreamer_0_10_gst_sdp_gstsdpmessage_h.GstSDPMedia) return GstRTSPResult; -- gst/rtsp/gstrtspextension.h:84 function configure_stream (ext : System.Address; caps : access GStreamer.GST_Low_Level.gstreamer_0_10_gst_gstcaps_h.GstCaps) return GLIB.gboolean; -- gst/rtsp/gstrtspextension.h:85 function get_transports (ext : System.Address; protocols : GStreamer.GST_Low_Level.gstreamer_0_10_gst_rtsp_gstrtsptransport_h.GstRTSPLowerTrans; transport : System.Address) return GstRTSPResult; -- gst/rtsp/gstrtspextension.h:86 function stream_select (ext : System.Address; url : access GStreamer.GST_Low_Level.gstreamer_0_10_gst_rtsp_gstrtspurl_h.GstRTSPUrl) return GstRTSPResult; -- gst/rtsp/gstrtspextension.h:88 function receive_request (ext : System.Address; req : access GStreamer.GST_Low_Level.gstreamer_0_10_gst_rtsp_gstrtspmessage_h.GstRTSPMessage) return GstRTSPResult; -- gst/rtsp/gstrtspextension.h:89 -- signal emision function send (ext : System.Address; req : access GStreamer.GST_Low_Level.gstreamer_0_10_gst_rtsp_gstrtspmessage_h.GstRTSPMessage; resp : access GStreamer.GST_Low_Level.gstreamer_0_10_gst_rtsp_gstrtspmessage_h.GstRTSPMessage) return GstRTSPResult; -- gst/rtsp/gstrtspextension.h:92 end GStreamer.rtsp.extension;
59.595588
216
0.773103
2f5df51ebad856c6e5391f4d59c0af92c2d4e982
4,121
ads
Ada
src/util-encoders-sha1.ads
Letractively/ada-util
e4c63b93635dc07c46e95f12ba02d18903b307b3
[ "Apache-2.0" ]
null
null
null
src/util-encoders-sha1.ads
Letractively/ada-util
e4c63b93635dc07c46e95f12ba02d18903b307b3
[ "Apache-2.0" ]
null
null
null
src/util-encoders-sha1.ads
Letractively/ada-util
e4c63b93635dc07c46e95f12ba02d18903b307b3
[ "Apache-2.0" ]
null
null
null
----------------------------------------------------------------------- -- util-encoders-sha1 -- Compute SHA-1 hash -- Copyright (C) 2011 Stephane Carrez -- Written by Stephane Carrez ([email protected]) -- -- 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. ----------------------------------------------------------------------- with Ada.Streams; with Ada.Finalization; with Interfaces; -- The <b>Util.Encodes.SHA1</b> package generates SHA-1 hash according to -- RFC3174 or [FIPS-180-1]. package Util.Encoders.SHA1 is pragma Preelaborate; -- The SHA-1 binary hash (160-bit). subtype Hash_Array is Ada.Streams.Stream_Element_Array (0 .. 19); -- The SHA-1 hash as hexadecimal string. subtype Digest is String (1 .. 40); subtype Base64_Digest is String (1 .. 28); -- ------------------------------ -- SHA1 Context -- ------------------------------ type Context is limited private; -- Update the hash with the string. procedure Update (E : in out Context; S : in String); -- Update the hash with the string. procedure Update (E : in out Context; S : in Ada.Streams.Stream_Element_Array); -- Computes the SHA1 hash and returns the raw binary hash in <b>Hash</b>. procedure Finish (E : in out Context; Hash : out Hash_Array); -- Computes the SHA1 hash and returns the hexadecimal hash in <b>Hash</b>. procedure Finish (E : in out Context; Hash : out Digest); -- Computes the SHA1 hash and returns the base64 hash in <b>Hash</b>. procedure Finish_Base64 (E : in out Context; Hash : out Base64_Digest); -- ------------------------------ -- SHA1 encoder -- ------------------------------ -- This <b>Encoder</b> translates the (binary) input stream into -- an SHA1 hexadecimal stream. The encoding alphabet is: 0123456789ABCDEF. type Encoder is new Util.Encoders.Transformer with private; -- Encodes the binary input stream represented by <b>Data</b> into -- an SHA-1 hash output stream <b>Into</b>. -- -- If the transformer does not have enough room to write the result, -- it must return in <b>Encoded</b> the index of the last encoded -- position in the <b>Data</b> stream. -- -- The transformer returns in <b>Last</b> the last valid position -- in the output stream <b>Into</b>. -- -- The <b>Encoding_Error</b> exception is raised if the input -- stream cannot be transformed. overriding procedure Transform (E : in Encoder; Data : in Ada.Streams.Stream_Element_Array; Into : out Ada.Streams.Stream_Element_Array; Last : out Ada.Streams.Stream_Element_Offset; Encoded : out Ada.Streams.Stream_Element_Offset); private type Encoder is new Util.Encoders.Transformer with null record; use Interfaces; type H_Array is array (0 .. 4) of Unsigned_32; type W_Array is array (0 .. 79) of Unsigned_32; -- Process the message block collected in the context. procedure Compute (Ctx : in out Context); type Context is new Ada.Finalization.Limited_Controlled with record W : W_Array; H : H_Array; Pos : Natural; Count : Unsigned_64; Pending : String (1 .. 3); Pending_Pos : Natural; end record; -- Initialize the SHA-1 context. overriding procedure Initialize (E : in out Context); end Util.Encoders.SHA1;
36.794643
79
0.600582
a1791c5d7c3a76682f30fbb72ef87d7a2887e550
5,752
adb
Ada
src/syscalls/ewok-syscalls-cfg-gpio.adb
mfkiwl/ewok-kernel-security-OS
ca8e2a0b5cedbc94df957be1fac6d7d4b2ceb687
[ "Apache-2.0" ]
65
2018-09-26T09:10:11.000Z
2022-01-30T21:17:37.000Z
src/syscalls/ewok-syscalls-cfg-gpio.adb
mfkiwl/ewok-kernel-security-OS
ca8e2a0b5cedbc94df957be1fac6d7d4b2ceb687
[ "Apache-2.0" ]
22
2019-04-07T15:15:54.000Z
2020-10-15T12:45:54.000Z
src/syscalls/ewok-syscalls-cfg-gpio.adb
mfkiwl/ewok-kernel-security-OS
ca8e2a0b5cedbc94df957be1fac6d7d4b2ceb687
[ "Apache-2.0" ]
10
2018-09-27T09:43:08.000Z
2021-01-29T22:50:17.000Z
-- -- Copyright 2018 The wookey project team <[email protected]> -- - Ryad Benadjila -- - Arnauld Michelizza -- - Mathieu Renard -- - Philippe Thierry -- - Philippe Trebuchet -- -- 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. -- -- with ewok.tasks; use ewok.tasks; with ewok.tasks_shared; use ewok.tasks_shared; with ewok.gpio; with ewok.exti; with ewok.exported.gpios; use ewok.exported.gpios; with ewok.sanitize; package body ewok.syscalls.cfg.gpio with spark_mode => off is procedure svc_gpio_set (caller_id : in ewok.tasks_shared.t_task_id; params : in out t_parameters; mode : in ewok.tasks_shared.t_task_mode) is ref : ewok.exported.gpios.t_gpio_ref with address => params(1)'address; val : unsigned_8 with address => params(2)'address; begin -- Task initialization is complete ? if not is_init_done (caller_id) then goto ret_denied; end if; -- Valid t_gpio_ref ? if not ref.pin'valid or not ref.port'valid then goto ret_inval; end if; -- Does that GPIO really belongs to the caller ? if not ewok.gpio.belong_to (caller_id, ref) then goto ret_denied; end if; -- Write the pin if val >= 1 then ewok.gpio.write_pin (ref, 1); else ewok.gpio.write_pin (ref, 0); end if; set_return_value (caller_id, mode, SYS_E_DONE); ewok.tasks.set_state (caller_id, mode, TASK_STATE_RUNNABLE); return; <<ret_inval>> set_return_value (caller_id, mode, SYS_E_INVAL); ewok.tasks.set_state (caller_id, mode, TASK_STATE_RUNNABLE); return; <<ret_denied>> set_return_value (caller_id, mode, SYS_E_DENIED); ewok.tasks.set_state (caller_id, mode, TASK_STATE_RUNNABLE); return; end svc_gpio_set; procedure svc_gpio_get (caller_id : in ewok.tasks_shared.t_task_id; params : in out t_parameters; mode : in ewok.tasks_shared.t_task_mode) is ref : ewok.exported.gpios.t_gpio_ref with address => params(1)'address; retval_address : constant system_address := params(2); begin -- Task initialization is complete ? if not is_init_done (caller_id) then goto ret_denied; end if; -- Valid t_gpio_ref ? if not ref.pin'valid or not ref.port'valid then goto ret_inval; end if; -- Does that GPIO really belongs to the caller ? if not ewok.gpio.belong_to (caller_id, ref) then goto ret_denied; end if; -- Does &val is in the caller address space ? if not ewok.sanitize.is_word_in_data_region (retval_address, caller_id, mode) then goto ret_denied; end if; declare retval : unsigned_8 with address => to_address (retval_address); begin -- Read the pin retval := unsigned_8 (ewok.gpio.read_pin (ref)); set_return_value (caller_id, mode, SYS_E_DONE); ewok.tasks.set_state (caller_id, mode, TASK_STATE_RUNNABLE); return; end; <<ret_inval>> set_return_value (caller_id, mode, SYS_E_INVAL); ewok.tasks.set_state (caller_id, mode, TASK_STATE_RUNNABLE); return; <<ret_denied>> set_return_value (caller_id, mode, SYS_E_DENIED); ewok.tasks.set_state (caller_id, mode, TASK_STATE_RUNNABLE); return; end svc_gpio_get; -- Unlock EXTI line associated to given GPIO, if the EXTI -- line has been locked by the kernel (exti lock parameter is -- set to 'true'. procedure svc_gpio_unlock_exti (caller_id : in ewok.tasks_shared.t_task_id; params : in out t_parameters; mode : in ewok.tasks_shared.t_task_mode) is ref : ewok.exported.gpios.t_gpio_ref with address => params(1)'address; cfg : ewok.exported.gpios.t_gpio_config_access; begin -- Task initialization is complete ? if not is_init_done (caller_id) then goto ret_denied; end if; -- Valid t_gpio_ref ? if not ref.pin'valid or not ref.port'valid then goto ret_inval; end if; -- Does that GPIO really belongs to the caller ? if not ewok.gpio.belong_to (caller_id, ref) then goto ret_denied; end if; cfg := ewok.gpio.get_config (ref); -- Does that GPIO has an EXTI line which is lockable ? if cfg.all.exti_trigger = GPIO_EXTI_TRIGGER_NONE or cfg.all.exti_lock = GPIO_EXTI_UNLOCKED then goto ret_inval; end if; ewok.exti.enable(ref); set_return_value (caller_id, mode, SYS_E_DONE); ewok.tasks.set_state (caller_id, mode, TASK_STATE_RUNNABLE); return; <<ret_inval>> set_return_value (caller_id, mode, SYS_E_INVAL); ewok.tasks.set_state (caller_id, mode, TASK_STATE_RUNNABLE); return; <<ret_denied>> set_return_value (caller_id, mode, SYS_E_DENIED); ewok.tasks.set_state (caller_id, mode, TASK_STATE_RUNNABLE); return; end svc_gpio_unlock_exti; end ewok.syscalls.cfg.gpio;
28.334975
79
0.640994
410e72575de15c4815b8373e679f61747e74116e
2,774
ads
Ada
bb-runtimes/runtimes/ravenscar-full-stm32f3x4/gnat/s-imgrea.ads
JCGobbi/Nucleo-STM32F334R8
2a0b1b4b2664c92773703ac5e95dcb71979d051c
[ "BSD-3-Clause" ]
null
null
null
bb-runtimes/runtimes/ravenscar-full-stm32f3x4/gnat/s-imgrea.ads
JCGobbi/Nucleo-STM32F334R8
2a0b1b4b2664c92773703ac5e95dcb71979d051c
[ "BSD-3-Clause" ]
null
null
null
bb-runtimes/runtimes/ravenscar-full-stm32f3x4/gnat/s-imgrea.ads
JCGobbi/Nucleo-STM32F334R8
2a0b1b4b2664c92773703ac5e95dcb71979d051c
[ "BSD-3-Clause" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- S Y S T E M . I M G _ R E A L -- -- -- -- S p e c -- -- -- -- Copyright (C) 1992-2021, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- -- -- -- -- -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- This obsolete package is preserved for the sake of backward compatibility with System.Img_LLF; package System.Img_Real is pragma Pure; procedure Set_Image_Real (V : Long_Long_Float; S : in out String; P : in out Natural; Fore : Natural; Aft : Natural; Exp : Natural) renames System.Img_LLF.Set_Image_Long_Long_Float; end System.Img_Real;
56.612245
78
0.349315
06b98499d2e3d4139c55c1a6b80e65b6415e16d6
2,689
ads
Ada
source/asis/asis-gela-classificators_create.ads
faelys/gela-asis
48a3bee90eda9f0c9d958b4e3c80a5a9b1c65253
[ "BSD-3-Clause" ]
4
2016-02-05T15:51:56.000Z
2022-03-25T20:38:32.000Z
source/asis/asis-gela-classificators_create.ads
faelys/gela-asis
48a3bee90eda9f0c9d958b4e3c80a5a9b1c65253
[ "BSD-3-Clause" ]
null
null
null
source/asis/asis-gela-classificators_create.ads
faelys/gela-asis
48a3bee90eda9f0c9d958b4e3c80a5a9b1c65253
[ "BSD-3-Clause" ]
null
null
null
------------------------------------------------------------------------------ -- G E L A A S I S -- -- ASIS implementation for Gela project, a portable Ada compiler -- -- http://gela.ada-ru.org -- -- - - - - - - - - - - - - - - - -- -- Read copyright and license at the end of this file -- ------------------------------------------------------------------------------ -- $Revision: 209 $ $Date: 2013-11-30 21:03:24 +0200 (Сб., 30 нояб. 2013) $ -- Purpose: -- Classificator constructor. with Gela.Encodings; with Gela.Decoders; with Gela.Classificators; use Gela; function Asis.Gela.Classificators_Create (Encoding : Encodings.Encoding; Decoder : Decoders.Decoder'Class) return Classificators.Classificator'Class; ------------------------------------------------------------------------------ -- Copyright (c) 2006-2013, Maxim Reznik -- 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 Maxim Reznik, IE 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. -- ------------------------------------------------------------------------------
50.735849
79
0.592042
59dd81b32a5330858de952c37946a423cf77121f
5,294
ads
Ada
source/amf/mof/cmof/amf-cmof-value_specifications-collections.ads
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
24
2016-11-29T06:59:41.000Z
2021-08-30T11:55:16.000Z
source/amf/mof/cmof/amf-cmof-value_specifications-collections.ads
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
2
2019-01-16T05:15:20.000Z
2019-02-03T10:03:32.000Z
source/amf/mof/cmof/amf-cmof-value_specifications-collections.ads
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
4
2017-07-18T07:11:05.000Z
2020-06-21T03:02:25.000Z
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2011-2012, Vadim Godunko <[email protected]> -- -- 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 Vadim Godunko, IE 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. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ -- This file is generated, don't edit it. ------------------------------------------------------------------------------ with AMF.Generic_Collections; package AMF.CMOF.Value_Specifications.Collections is pragma Preelaborate; package CMOF_Value_Specification_Collections is new AMF.Generic_Collections (CMOF_Value_Specification, CMOF_Value_Specification_Access); type Set_Of_CMOF_Value_Specification is new CMOF_Value_Specification_Collections.Set with null record; Empty_Set_Of_CMOF_Value_Specification : constant Set_Of_CMOF_Value_Specification; type Ordered_Set_Of_CMOF_Value_Specification is new CMOF_Value_Specification_Collections.Ordered_Set with null record; Empty_Ordered_Set_Of_CMOF_Value_Specification : constant Ordered_Set_Of_CMOF_Value_Specification; type Bag_Of_CMOF_Value_Specification is new CMOF_Value_Specification_Collections.Bag with null record; Empty_Bag_Of_CMOF_Value_Specification : constant Bag_Of_CMOF_Value_Specification; type Sequence_Of_CMOF_Value_Specification is new CMOF_Value_Specification_Collections.Sequence with null record; Empty_Sequence_Of_CMOF_Value_Specification : constant Sequence_Of_CMOF_Value_Specification; private Empty_Set_Of_CMOF_Value_Specification : constant Set_Of_CMOF_Value_Specification := (CMOF_Value_Specification_Collections.Set with null record); Empty_Ordered_Set_Of_CMOF_Value_Specification : constant Ordered_Set_Of_CMOF_Value_Specification := (CMOF_Value_Specification_Collections.Ordered_Set with null record); Empty_Bag_Of_CMOF_Value_Specification : constant Bag_Of_CMOF_Value_Specification := (CMOF_Value_Specification_Collections.Bag with null record); Empty_Sequence_Of_CMOF_Value_Specification : constant Sequence_Of_CMOF_Value_Specification := (CMOF_Value_Specification_Collections.Sequence with null record); end AMF.CMOF.Value_Specifications.Collections;
57.543478
100
0.543068
065ce4b9d4001042c61bfb39f57c7d39dc0c5759
733
ads
Ada
firmware/coreboot/3rdparty/libhwbase/debug/null/hw-debug_sink.ads
fabiojna02/OpenCellular
45b6a202d6b2e2485c89955b9a6da920c4d56ddb
[ "CC-BY-4.0", "BSD-3-Clause" ]
1
2019-11-04T07:11:25.000Z
2019-11-04T07:11:25.000Z
firmware/coreboot/3rdparty/libhwbase/debug/null/hw-debug_sink.ads
aimin-wang/OpenCellular
5308146bf7edf43cc81c0e4d15305b711117070a
[ "CC-BY-4.0", "BSD-3-Clause" ]
13
2018-10-12T21:29:09.000Z
2018-10-25T20:06:51.000Z
firmware/coreboot/3rdparty/libhwbase/debug/null/hw-debug_sink.ads
aimin-wang/OpenCellular
5308146bf7edf43cc81c0e4d15305b711117070a
[ "CC-BY-4.0", "BSD-3-Clause" ]
null
null
null
-- -- Copyright (C) 2015 secunet Security Networks AG -- -- 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. -- -- 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. -- package HW.Debug_Sink is procedure Put (Item : String) is null; procedure Put_Char (Item : Character) is null; procedure New_Line is null; end HW.Debug_Sink;
30.541667
71
0.74352
31831b6b82f18309564d6006a8d83ca01fbcf278
24,943
adb
Ada
Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/a-exexda.adb
djamal2727/Main-Bearing-Analytical-Model
2f00c2219c71be0175c6f4f8f1d4cca231d97096
[ "Apache-2.0" ]
null
null
null
Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/a-exexda.adb
djamal2727/Main-Bearing-Analytical-Model
2f00c2219c71be0175c6f4f8f1d4cca231d97096
[ "Apache-2.0" ]
null
null
null
Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/a-exexda.adb
djamal2727/Main-Bearing-Analytical-Model
2f00c2219c71be0175c6f4f8f1d4cca231d97096
[ "Apache-2.0" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- ADA.EXCEPTIONS.EXCEPTION_DATA -- -- -- -- B o d y -- -- -- -- Copyright (C) 1992-2020, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ with System.Storage_Elements; use System.Storage_Elements; separate (Ada.Exceptions) package body Exception_Data is -- This unit implements the Exception_Information related services for -- both the Ada standard requirements and the GNAT.Exception_Traces -- facility. This is also used by the implementation of the stream -- attributes of types Exception_Id and Exception_Occurrence. -- There are common parts between the contents of Exception_Information -- (the regular Ada interface) and Untailored_Exception_Information (used -- for streaming, and when there is no symbolic traceback available) The -- overall structure is sketched below: -- -- Untailored_Exception_Information -- | -- +-------+--------+ -- | | -- Basic_Exc_Info & Untailored_Exc_Tback -- (B_E_I) (U_E_TB) -- o-- -- (B_E_I) | Exception_Name: <exception name> (as in Exception_Name) -- | Message: <message> (or a null line if no message) -- | PID=nnnn (if nonzero) -- o-- -- (U_E_TB) | Call stack traceback locations: -- | <0xyyyyyyyy 0xyyyyyyyy ...> -- o-- -- Exception_Information -- | -- +----------+----------+ -- | | -- Basic_Exc_Info & traceback -- | -- +-----------+------------+ -- | | -- Untailored_Exc_Tback Or Tback_Decorator -- if no decorator set otherwise -- Functions returning String imply secondary stack use, which is a heavy -- mechanism requiring run-time support. Besides, some of the routines we -- provide here are to be used by the default Last_Chance_Handler, at the -- critical point where the runtime is about to be finalized. Since most -- of the items we have at hand are of bounded length, we also provide a -- procedural interface able to incrementally append the necessary bits to -- a preallocated buffer or output them straight to stderr. -- The procedural interface is composed of two major sections: a neutral -- section for basic types like Address, Character, Natural or String, and -- an exception oriented section for the exception names, messages, and -- information. This is the Append_Info family of procedures below. -- Output to stderr is commanded by passing an empty buffer to update, and -- care is taken not to overflow otherwise. -------------------------------------------- -- Procedural Interface - Neutral section -- -------------------------------------------- procedure Append_Info_Address (A : Address; Info : in out String; Ptr : in out Natural); procedure Append_Info_Character (C : Character; Info : in out String; Ptr : in out Natural); procedure Append_Info_Nat (N : Natural; Info : in out String; Ptr : in out Natural); procedure Append_Info_NL (Info : in out String; Ptr : in out Natural); pragma Inline (Append_Info_NL); procedure Append_Info_String (S : String; Info : in out String; Ptr : in out Natural); ------------------------------------------------------- -- Procedural Interface - Exception oriented section -- ------------------------------------------------------- procedure Append_Info_Exception_Name (Id : Exception_Id; Info : in out String; Ptr : in out Natural); procedure Append_Info_Exception_Name (X : Exception_Occurrence; Info : in out String; Ptr : in out Natural); procedure Append_Info_Exception_Message (X : Exception_Occurrence; Info : in out String; Ptr : in out Natural); procedure Append_Info_Basic_Exception_Information (X : Exception_Occurrence; Info : in out String; Ptr : in out Natural); procedure Append_Info_Untailored_Exception_Traceback (X : Exception_Occurrence; Info : in out String; Ptr : in out Natural); procedure Append_Info_Untailored_Exception_Information (X : Exception_Occurrence; Info : in out String; Ptr : in out Natural); -- The "functional" interface to the exception information not involving -- a traceback decorator uses preallocated intermediate buffers to avoid -- the use of secondary stack. Preallocation requires preliminary length -- computation, for which a series of functions are introduced: --------------------------------- -- Length evaluation utilities -- --------------------------------- function Basic_Exception_Info_Maxlength (X : Exception_Occurrence) return Natural; function Untailored_Exception_Traceback_Maxlength (X : Exception_Occurrence) return Natural; function Exception_Info_Maxlength (X : Exception_Occurrence) return Natural; function Exception_Name_Length (Id : Exception_Id) return Natural; function Exception_Name_Length (X : Exception_Occurrence) return Natural; function Exception_Message_Length (X : Exception_Occurrence) return Natural; -------------------------- -- Functional Interface -- -------------------------- function Untailored_Exception_Traceback (X : Exception_Occurrence) return String; -- Returns an image of the complete call chain associated with an -- exception occurrence in its most basic form, that is as a raw sequence -- of hexadecimal addresses. function Tailored_Exception_Traceback (X : Exception_Occurrence) return String; -- Returns an image of the complete call chain associated with an -- exception occurrence, either in its basic form if no decorator is -- in place, or as formatted by the decorator otherwise. ----------------------------------------------------------------------- -- Services for the default Last_Chance_Handler and the task wrapper -- ----------------------------------------------------------------------- pragma Export (Ada, Append_Info_Exception_Message, "__gnat_append_info_e_msg"); pragma Export (Ada, Append_Info_Untailored_Exception_Information, "__gnat_append_info_u_e_info"); pragma Export (Ada, Exception_Message_Length, "__gnat_exception_msg_len"); function Get_Executable_Load_Address return System.Address; pragma Import (C, Get_Executable_Load_Address, "__gnat_get_executable_load_address"); -- Get the load address of the executable, or Null_Address if not known ------------------------- -- Append_Info_Address -- ------------------------- procedure Append_Info_Address (A : Address; Info : in out String; Ptr : in out Natural) is S : String (1 .. 18); P : Natural; N : Integer_Address; H : constant array (Integer range 0 .. 15) of Character := "0123456789abcdef"; begin P := S'Last; N := To_Integer (A); loop S (P) := H (Integer (N mod 16)); P := P - 1; N := N / 16; exit when N = 0; end loop; S (P - 1) := '0'; S (P) := 'x'; Append_Info_String (S (P - 1 .. S'Last), Info, Ptr); end Append_Info_Address; --------------------------------------------- -- Append_Info_Basic_Exception_Information -- --------------------------------------------- -- To ease the maximum length computation, we define and pull out some -- string constants: BEI_Name_Header : constant String := "raised "; BEI_Msg_Header : constant String := " : "; BEI_PID_Header : constant String := "PID: "; procedure Append_Info_Basic_Exception_Information (X : Exception_Occurrence; Info : in out String; Ptr : in out Natural) is Name : String (1 .. Exception_Name_Length (X)); -- Buffer in which to fetch the exception name, in order to check -- whether this is an internal _ABORT_SIGNAL or a regular occurrence. Name_Ptr : Natural := Name'First - 1; begin -- Output exception name and message except for _ABORT_SIGNAL, where -- these two lines are omitted. Append_Info_Exception_Name (X, Name, Name_Ptr); if Name (Name'First) /= '_' then Append_Info_String (BEI_Name_Header, Info, Ptr); Append_Info_String (Name, Info, Ptr); if Exception_Message_Length (X) /= 0 then Append_Info_String (BEI_Msg_Header, Info, Ptr); Append_Info_Exception_Message (X, Info, Ptr); end if; Append_Info_NL (Info, Ptr); end if; -- Output PID line if nonzero if X.Pid /= 0 then Append_Info_String (BEI_PID_Header, Info, Ptr); Append_Info_Nat (X.Pid, Info, Ptr); Append_Info_NL (Info, Ptr); end if; end Append_Info_Basic_Exception_Information; --------------------------- -- Append_Info_Character -- --------------------------- procedure Append_Info_Character (C : Character; Info : in out String; Ptr : in out Natural) is begin if Info'Length = 0 then To_Stderr (C); elsif Ptr < Info'Last then Ptr := Ptr + 1; Info (Ptr) := C; end if; end Append_Info_Character; ----------------------------------- -- Append_Info_Exception_Message -- ----------------------------------- procedure Append_Info_Exception_Message (X : Exception_Occurrence; Info : in out String; Ptr : in out Natural) is begin if X.Id = Null_Id then raise Constraint_Error; end if; declare Len : constant Natural := Exception_Message_Length (X); Msg : constant String (1 .. Len) := X.Msg (1 .. Len); begin Append_Info_String (Msg, Info, Ptr); end; end Append_Info_Exception_Message; -------------------------------- -- Append_Info_Exception_Name -- -------------------------------- procedure Append_Info_Exception_Name (Id : Exception_Id; Info : in out String; Ptr : in out Natural) is begin if Id = Null_Id then raise Constraint_Error; end if; declare Len : constant Natural := Exception_Name_Length (Id); Name : constant String (1 .. Len) := To_Ptr (Id.Full_Name) (1 .. Len); begin Append_Info_String (Name, Info, Ptr); end; end Append_Info_Exception_Name; procedure Append_Info_Exception_Name (X : Exception_Occurrence; Info : in out String; Ptr : in out Natural) is begin Append_Info_Exception_Name (X.Id, Info, Ptr); end Append_Info_Exception_Name; ------------------------------ -- Exception_Info_Maxlength -- ------------------------------ function Exception_Info_Maxlength (X : Exception_Occurrence) return Natural is begin return Basic_Exception_Info_Maxlength (X) + Untailored_Exception_Traceback_Maxlength (X); end Exception_Info_Maxlength; --------------------- -- Append_Info_Nat -- --------------------- procedure Append_Info_Nat (N : Natural; Info : in out String; Ptr : in out Natural) is begin if N > 9 then Append_Info_Nat (N / 10, Info, Ptr); end if; Append_Info_Character (Character'Val (Character'Pos ('0') + N mod 10), Info, Ptr); end Append_Info_Nat; -------------------- -- Append_Info_NL -- -------------------- procedure Append_Info_NL (Info : in out String; Ptr : in out Natural) is begin Append_Info_Character (ASCII.LF, Info, Ptr); end Append_Info_NL; ------------------------ -- Append_Info_String -- ------------------------ procedure Append_Info_String (S : String; Info : in out String; Ptr : in out Natural) is begin if Info'Length = 0 then To_Stderr (S); else declare Last : constant Natural := Integer'Min (Ptr + S'Length, Info'Last); begin Info (Ptr + 1 .. Last) := S; Ptr := Last; end; end if; end Append_Info_String; -------------------------------------------------- -- Append_Info_Untailored_Exception_Information -- -------------------------------------------------- procedure Append_Info_Untailored_Exception_Information (X : Exception_Occurrence; Info : in out String; Ptr : in out Natural) is begin Append_Info_Basic_Exception_Information (X, Info, Ptr); Append_Info_Untailored_Exception_Traceback (X, Info, Ptr); end Append_Info_Untailored_Exception_Information; ------------------------------------------------ -- Append_Info_Untailored_Exception_Traceback -- ------------------------------------------------ -- As for Basic_Exception_Information: BETB_Header : constant String := "Call stack traceback locations:"; LDAD_Header : constant String := "Load address: "; procedure Append_Info_Untailored_Exception_Traceback (X : Exception_Occurrence; Info : in out String; Ptr : in out Natural) is Load_Address : Address; begin if X.Num_Tracebacks = 0 then return; end if; -- The executable load address line Load_Address := Get_Executable_Load_Address; if Load_Address /= Null_Address then Append_Info_String (LDAD_Header, Info, Ptr); Append_Info_Address (Load_Address, Info, Ptr); Append_Info_NL (Info, Ptr); end if; -- The traceback lines Append_Info_String (BETB_Header, Info, Ptr); Append_Info_NL (Info, Ptr); for J in 1 .. X.Num_Tracebacks loop Append_Info_Address (TBE.PC_For (X.Tracebacks (J)), Info, Ptr); exit when J = X.Num_Tracebacks; Append_Info_Character (' ', Info, Ptr); end loop; Append_Info_NL (Info, Ptr); end Append_Info_Untailored_Exception_Traceback; ------------------------------------ -- Basic_Exception_Info_Maxlength -- ------------------------------------ function Basic_Exception_Info_Maxlength (X : Exception_Occurrence) return Natural is begin return BEI_Name_Header'Length + Exception_Name_Length (X) + BEI_Msg_Header'Length + Exception_Message_Length (X) + 1 + BEI_PID_Header'Length + 15; end Basic_Exception_Info_Maxlength; --------------------------- -- Exception_Information -- --------------------------- function Exception_Information (X : Exception_Occurrence) return String is -- The tailored exception information is the basic information -- associated with the tailored call chain backtrace. Tback_Info : constant String := Tailored_Exception_Traceback (X); Tback_Len : constant Natural := Tback_Info'Length; Info : String (1 .. Basic_Exception_Info_Maxlength (X) + Tback_Len); Ptr : Natural := Info'First - 1; begin Append_Info_Basic_Exception_Information (X, Info, Ptr); Append_Info_String (Tback_Info, Info, Ptr); return Info (Info'First .. Ptr); end Exception_Information; ------------------------------ -- Exception_Message_Length -- ------------------------------ function Exception_Message_Length (X : Exception_Occurrence) return Natural is begin return X.Msg_Length; end Exception_Message_Length; --------------------------- -- Exception_Name_Length -- --------------------------- function Exception_Name_Length (Id : Exception_Id) return Natural is begin -- What is stored in the internal Name buffer includes a terminating -- null character that we never care about. return Id.Name_Length - 1; end Exception_Name_Length; function Exception_Name_Length (X : Exception_Occurrence) return Natural is begin return Exception_Name_Length (X.Id); end Exception_Name_Length; ------------------------------- -- Untailored_Exception_Traceback -- ------------------------------- function Untailored_Exception_Traceback (X : Exception_Occurrence) return String is Info : aliased String (1 .. Untailored_Exception_Traceback_Maxlength (X)); Ptr : Natural := Info'First - 1; begin Append_Info_Untailored_Exception_Traceback (X, Info, Ptr); return Info (Info'First .. Ptr); end Untailored_Exception_Traceback; -------------------------------------- -- Untailored_Exception_Information -- -------------------------------------- function Untailored_Exception_Information (X : Exception_Occurrence) return String is Info : String (1 .. Exception_Info_Maxlength (X)); Ptr : Natural := Info'First - 1; begin Append_Info_Untailored_Exception_Information (X, Info, Ptr); return Info (Info'First .. Ptr); end Untailored_Exception_Information; ------------------------- -- Set_Exception_C_Msg -- ------------------------- procedure Set_Exception_C_Msg (Excep : EOA; Id : Exception_Id; Msg1 : System.Address; Line : Integer := 0; Column : Integer := 0; Msg2 : System.Address := System.Null_Address) is Remind : Integer; Ptr : Natural; procedure Append_Number (Number : Integer); -- Append given number to Excep.Msg ------------------- -- Append_Number -- ------------------- procedure Append_Number (Number : Integer) is Val : Integer; Size : Integer; begin if Number <= 0 then return; end if; -- Compute the number of needed characters Size := 1; Val := Number; while Val > 0 loop Val := Val / 10; Size := Size + 1; end loop; -- If enough characters are available, put the line number if Excep.Msg_Length <= Exception_Msg_Max_Length - Size then Excep.Msg (Excep.Msg_Length + 1) := ':'; Excep.Msg_Length := Excep.Msg_Length + Size; Val := Number; Size := 0; while Val > 0 loop Remind := Val rem 10; Val := Val / 10; Excep.Msg (Excep.Msg_Length - Size) := Character'Val (Remind + Character'Pos ('0')); Size := Size + 1; end loop; end if; end Append_Number; -- Start of processing for Set_Exception_C_Msg begin Excep.Exception_Raised := False; Excep.Id := Id; Excep.Num_Tracebacks := 0; Excep.Pid := Local_Partition_ID; Excep.Msg_Length := 0; while To_Ptr (Msg1) (Excep.Msg_Length + 1) /= ASCII.NUL and then Excep.Msg_Length < Exception_Msg_Max_Length loop Excep.Msg_Length := Excep.Msg_Length + 1; Excep.Msg (Excep.Msg_Length) := To_Ptr (Msg1) (Excep.Msg_Length); end loop; Append_Number (Line); Append_Number (Column); -- Append second message if present if Msg2 /= System.Null_Address and then Excep.Msg_Length + 1 < Exception_Msg_Max_Length then Excep.Msg_Length := Excep.Msg_Length + 1; Excep.Msg (Excep.Msg_Length) := ' '; Ptr := 1; while To_Ptr (Msg2) (Ptr) /= ASCII.NUL and then Excep.Msg_Length < Exception_Msg_Max_Length loop Excep.Msg_Length := Excep.Msg_Length + 1; Excep.Msg (Excep.Msg_Length) := To_Ptr (Msg2) (Ptr); Ptr := Ptr + 1; end loop; end if; end Set_Exception_C_Msg; ----------------------- -- Set_Exception_Msg -- ----------------------- procedure Set_Exception_Msg (Excep : EOA; Id : Exception_Id; Message : String) is Len : constant Natural := Natural'Min (Message'Length, Exception_Msg_Max_Length); First : constant Integer := Message'First; begin Excep.Exception_Raised := False; Excep.Msg_Length := Len; Excep.Msg (1 .. Len) := Message (First .. First + Len - 1); Excep.Id := Id; Excep.Num_Tracebacks := 0; Excep.Pid := Local_Partition_ID; end Set_Exception_Msg; ---------------------------------- -- Tailored_Exception_Traceback -- ---------------------------------- function Tailored_Exception_Traceback (X : Exception_Occurrence) return String is -- We reference the decorator *wrapper* here and not the decorator -- itself. The purpose of the local variable Wrapper is to prevent a -- potential race condition in the code below. The atomicity of this -- assignment is enforced by pragma Atomic in System.Soft_Links. -- The potential race condition here, if no local variable was used, -- relates to the test upon the wrapper's value and the call, which -- are not performed atomically. With the local variable, potential -- changes of the wrapper's global value between the test and the -- call become inoffensive. Wrapper : constant Traceback_Decorator_Wrapper_Call := Traceback_Decorator_Wrapper; begin if Wrapper = null then return Untailored_Exception_Traceback (X); else return Wrapper.all (X.Tracebacks'Address, X.Num_Tracebacks); end if; end Tailored_Exception_Traceback; ---------------------------------------------- -- Untailored_Exception_Traceback_Maxlength -- ---------------------------------------------- function Untailored_Exception_Traceback_Maxlength (X : Exception_Occurrence) return Natural is Space_Per_Address : constant := 2 + 16 + 1; -- Space for "0x" + HHHHHHHHHHHHHHHH + " " begin return LDAD_Header'Length + Space_Per_Address + BETB_Header'Length + 1 + X.Num_Tracebacks * Space_Per_Address + 1; end Untailored_Exception_Traceback_Maxlength; end Exception_Data;
33.480537
79
0.550535
2f00b70d70958a51829dd248dee359dedce7265c
47,527
adb
Ada
honeybee_proj/HBD/.autopilot/db/honeybee.bind.adb
AnthonyKenny98/HoneyBee
5b1859fe8c50cb5bd709f53780c4e5ce7160b987
[ "MIT" ]
null
null
null
honeybee_proj/HBD/.autopilot/db/honeybee.bind.adb
AnthonyKenny98/HoneyBee
5b1859fe8c50cb5bd709f53780c4e5ce7160b987
[ "MIT" ]
null
null
null
honeybee_proj/HBD/.autopilot/db/honeybee.bind.adb
AnthonyKenny98/HoneyBee
5b1859fe8c50cb5bd709f53780c4e5ce7160b987
[ "MIT" ]
null
null
null
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> <!DOCTYPE boost_serialization> <boost_serialization signature="serialization::archive" version="15"> <syndb class_id="0" tracking_level="0" version="0"> <userIPLatency>-1</userIPLatency> <userIPName></userIPName> <cdfg class_id="1" tracking_level="1" version="0" object_id="_0"> <name>honeybee</name> <ret_bitwidth>64</ret_bitwidth> <ports class_id="2" tracking_level="0" version="0"> <count>6</count> <item_version>0</item_version> <item class_id="3" tracking_level="1" version="0" object_id="_1"> <Value class_id="4" tracking_level="0" version="0"> <Obj class_id="5" tracking_level="0" version="0"> <type>1</type> <id>1</id> <name>edge_p1_x</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo class_id="6" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>edge_y.p1.x</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs class_id="7" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_2"> <Value> <Obj> <type>1</type> <id>2</id> <name>edge_p1_y</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>edge_y.p1.z</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_3"> <Value> <Obj> <type>1</type> <id>3</id> <name>edge_p1_z</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>edge_y.p1.y</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_4"> <Value> <Obj> <type>1</type> <id>4</id> <name>edge_p2_x</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>edge_y.p2.x</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_5"> <Value> <Obj> <type>1</type> <id>5</id> <name>edge_p2_y</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>edge_y.p2.z</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_6"> <Value> <Obj> <type>1</type> <id>6</id> <name>edge_p2_z</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>edge_y.p2.y</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> </ports> <nodes class_id="8" tracking_level="0" version="0"> <count>12</count> <item_version>0</item_version> <item class_id="9" tracking_level="1" version="0" object_id="_7"> <Value> <Obj> <type>0</type> <id>15</id> <name>edge_p2_z_read</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>145</lineNumber> <contextFuncName>honeybee</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item class_id="10" tracking_level="0" version="0"> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second class_id="11" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="12" tracking_level="0" version="0"> <first class_id="13" tracking_level="0" version="0"> <first>src/honeybee.c</first> <second>honeybee</second> </first> <second>145</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>29</item> <item>30</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>1</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_8"> <Value> <Obj> <type>0</type> <id>16</id> <name>edge_p2_y_read</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>145</lineNumber> <contextFuncName>honeybee</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>honeybee</second> </first> <second>145</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>31</item> <item>32</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>2</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_9"> <Value> <Obj> <type>0</type> <id>17</id> <name>edge_p2_x_read</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>145</lineNumber> <contextFuncName>honeybee</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>honeybee</second> </first> <second>145</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>33</item> <item>34</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>3</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_10"> <Value> <Obj> <type>0</type> <id>18</id> <name>edge_p1_z_read</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>145</lineNumber> <contextFuncName>honeybee</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>honeybee</second> </first> <second>145</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>35</item> <item>36</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>4</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_11"> <Value> <Obj> <type>0</type> <id>19</id> <name>edge_p1_y_read</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>145</lineNumber> <contextFuncName>honeybee</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>honeybee</second> </first> <second>145</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>37</item> <item>38</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>5</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_12"> <Value> <Obj> <type>0</type> <id>20</id> <name>edge_p1_x_read</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>145</lineNumber> <contextFuncName>honeybee</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>honeybee</second> </first> <second>145</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>39</item> <item>40</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>6</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_13"> <Value> <Obj> <type>0</type> <id>21</id> <name>collisions_z</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>152</lineNumber> <contextFuncName>honeybee</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>honeybee</second> </first> <second>152</second> </item> </second> </item> </inlineStackInfo> <originalName>collisions_z</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>7</count> <item_version>0</item_version> <item>42</item> <item>43</item> <item>44</item> <item>45</item> <item>46</item> <item>47</item> <item>48</item> </oprand_edges> <opcode>call</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>8.58</m_delay> <m_topoIndex>7</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_14"> <Value> <Obj> <type>0</type> <id>22</id> <name>collisions_y</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>154</lineNumber> <contextFuncName>honeybee</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>honeybee</second> </first> <second>154</second> </item> </second> </item> </inlineStackInfo> <originalName>collisions_y</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>7</count> <item_version>0</item_version> <item>50</item> <item>51</item> <item>52</item> <item>53</item> <item>54</item> <item>55</item> <item>56</item> </oprand_edges> <opcode>call</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>8.58</m_delay> <m_topoIndex>8</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_15"> <Value> <Obj> <type>0</type> <id>23</id> <name>collisions_x</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>156</lineNumber> <contextFuncName>honeybee</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>honeybee</second> </first> <second>156</second> </item> </second> </item> </inlineStackInfo> <originalName>collisions_x</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>7</count> <item_version>0</item_version> <item>58</item> <item>59</item> <item>60</item> <item>61</item> <item>62</item> <item>63</item> <item>64</item> </oprand_edges> <opcode>call</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>8.58</m_delay> <m_topoIndex>9</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_16"> <Value> <Obj> <type>0</type> <id>24</id> <name>or_ln159</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>159</lineNumber> <contextFuncName>honeybee</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>honeybee</second> </first> <second>159</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>65</item> <item>66</item> </oprand_edges> <opcode>or</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>10</m_topoIndex> <m_clusterGroupNumber>1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_17"> <Value> <Obj> <type>0</type> <id>25</id> <name>collisions</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>159</lineNumber> <contextFuncName>honeybee</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>honeybee</second> </first> <second>159</second> </item> </second> </item> </inlineStackInfo> <originalName>collisions</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>67</item> <item>68</item> </oprand_edges> <opcode>or</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.80</m_delay> <m_topoIndex>11</m_topoIndex> <m_clusterGroupNumber>1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_18"> <Value> <Obj> <type>0</type> <id>26</id> <name>_ln160</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>160</lineNumber> <contextFuncName>honeybee</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>honeybee</second> </first> <second>160</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>69</item> </oprand_edges> <opcode>ret</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>12</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> </nodes> <consts class_id="15" tracking_level="0" version="0"> <count>3</count> <item_version>0</item_version> <item class_id="16" tracking_level="1" version="0" object_id="_19"> <Value> <Obj> <type>2</type> <id>41</id> <name>checkAxis_2</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>6</const_type> <content>&lt;constant:checkAxis.2&gt;</content> </item> <item class_id_reference="16" object_id="_20"> <Value> <Obj> <type>2</type> <id>49</id> <name>checkAxis_0</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>6</const_type> <content>&lt;constant:checkAxis.0&gt;</content> </item> <item class_id_reference="16" object_id="_21"> <Value> <Obj> <type>2</type> <id>57</id> <name>checkAxis_1</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>6</const_type> <content>&lt;constant:checkAxis.1&gt;</content> </item> </consts> <blocks class_id="17" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="18" tracking_level="1" version="0" object_id="_22"> <Obj> <type>3</type> <id>27</id> <name>honeybee</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>12</count> <item_version>0</item_version> <item>15</item> <item>16</item> <item>17</item> <item>18</item> <item>19</item> <item>20</item> <item>21</item> <item>22</item> <item>23</item> <item>24</item> <item>25</item> <item>26</item> </node_objs> </item> </blocks> <edges class_id="19" tracking_level="0" version="0"> <count>32</count> <item_version>0</item_version> <item class_id="20" tracking_level="1" version="0" object_id="_23"> <id>30</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>15</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_24"> <id>32</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>16</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_25"> <id>34</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>17</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_26"> <id>36</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>18</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_27"> <id>38</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>19</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_28"> <id>40</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>20</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_29"> <id>42</id> <edge_type>1</edge_type> <source_obj>41</source_obj> <sink_obj>21</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_30"> <id>43</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>21</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_31"> <id>44</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>21</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_32"> <id>45</id> <edge_type>1</edge_type> <source_obj>18</source_obj> <sink_obj>21</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_33"> <id>46</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>21</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_34"> <id>47</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>21</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_35"> <id>48</id> <edge_type>1</edge_type> <source_obj>15</source_obj> <sink_obj>21</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_36"> <id>50</id> <edge_type>1</edge_type> <source_obj>49</source_obj> <sink_obj>22</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_37"> <id>51</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>22</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_38"> <id>52</id> <edge_type>1</edge_type> <source_obj>18</source_obj> <sink_obj>22</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_39"> <id>53</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>22</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_40"> <id>54</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>22</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_41"> <id>55</id> <edge_type>1</edge_type> <source_obj>15</source_obj> <sink_obj>22</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_42"> <id>56</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>22</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_43"> <id>58</id> <edge_type>1</edge_type> <source_obj>57</source_obj> <sink_obj>23</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_44"> <id>59</id> <edge_type>1</edge_type> <source_obj>18</source_obj> <sink_obj>23</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_45"> <id>60</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>23</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_46"> <id>61</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>23</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_47"> <id>62</id> <edge_type>1</edge_type> <source_obj>15</source_obj> <sink_obj>23</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_48"> <id>63</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>23</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_49"> <id>64</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>23</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_50"> <id>65</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_51"> <id>66</id> <edge_type>1</edge_type> <source_obj>23</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_52"> <id>67</id> <edge_type>1</edge_type> <source_obj>24</source_obj> <sink_obj>25</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_53"> <id>68</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>25</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_54"> <id>69</id> <edge_type>1</edge_type> <source_obj>25</source_obj> <sink_obj>26</sink_obj> <is_back_edge>0</is_back_edge> </item> </edges> </cdfg> <cdfg_regions class_id="21" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="22" tracking_level="1" version="0" object_id="_55"> <mId>1</mId> <mTag>honeybee</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>27</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>213</mMinLatency> <mMaxLatency>213</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> </cdfg_regions> <fsm class_id="24" tracking_level="1" version="0" object_id="_56"> <states class_id="25" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="26" tracking_level="1" version="0" object_id="_57"> <id>1</id> <operations class_id="27" tracking_level="0" version="0"> <count>9</count> <item_version>0</item_version> <item class_id="28" tracking_level="1" version="0" object_id="_58"> <id>15</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_59"> <id>16</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_60"> <id>17</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_61"> <id>18</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_62"> <id>19</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_63"> <id>20</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_64"> <id>21</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_65"> <id>22</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_66"> <id>23</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_67"> <id>2</id> <operations> <count>14</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_68"> <id>7</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_69"> <id>8</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_70"> <id>9</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_71"> <id>10</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_72"> <id>11</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_73"> <id>12</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_74"> <id>13</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_75"> <id>14</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_76"> <id>21</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_77"> <id>22</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_78"> <id>23</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_79"> <id>24</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_80"> <id>25</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_81"> <id>26</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> </states> <transitions class_id="29" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="30" tracking_level="1" version="0" object_id="_82"> <inState>1</inState> <outState>2</outState> <condition class_id="31" tracking_level="0" version="0"> <id>-1</id> <sop class_id="32" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="33" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> </transitions> </fsm> <res class_id="-1"></res> <node_label_latency class_id="35" tracking_level="0" version="0"> <count>12</count> <item_version>0</item_version> <item class_id="36" tracking_level="0" version="0"> <first>15</first> <second class_id="37" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>16</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>17</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>18</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>19</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>20</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>21</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>22</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>23</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>24</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>25</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>26</first> <second> <first>1</first> <second>0</second> </second> </item> </node_label_latency> <bblk_ent_exit class_id="38" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="39" tracking_level="0" version="0"> <first>27</first> <second class_id="40" tracking_level="0" version="0"> <first>0</first> <second>1</second> </second> </item> </bblk_ent_exit> <regions class_id="41" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </regions> <dp_fu_nodes class_id="42" tracking_level="0" version="0"> <count>11</count> <item_version>0</item_version> <item class_id="43" tracking_level="0" version="0"> <first>28</first> <second> <count>1</count> <item_version>0</item_version> <item>15</item> </second> </item> <item> <first>34</first> <second> <count>1</count> <item_version>0</item_version> <item>16</item> </second> </item> <item> <first>40</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> <item> <first>46</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> <item> <first>52</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>58</first> <second> <count>1</count> <item_version>0</item_version> <item>20</item> </second> </item> <item> <first>64</first> <second> <count>2</count> <item_version>0</item_version> <item>23</item> <item>23</item> </second> </item> <item> <first>80</first> <second> <count>2</count> <item_version>0</item_version> <item>21</item> <item>21</item> </second> </item> <item> <first>96</first> <second> <count>2</count> <item_version>0</item_version> <item>22</item> <item>22</item> </second> </item> <item> <first>112</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>118</first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> </dp_fu_nodes> <dp_fu_nodes_expression class_id="45" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="46" tracking_level="0" version="0"> <first>collisions_fu_118</first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> <item> <first>or_ln159_fu_112</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> </dp_fu_nodes_expression> <dp_fu_nodes_module> <count>3</count> <item_version>0</item_version> <item> <first>grp_checkAxis_0_fu_96</first> <second> <count>2</count> <item_version>0</item_version> <item>22</item> <item>22</item> </second> </item> <item> <first>grp_checkAxis_1_fu_64</first> <second> <count>2</count> <item_version>0</item_version> <item>23</item> <item>23</item> </second> </item> <item> <first>grp_checkAxis_2_fu_80</first> <second> <count>2</count> <item_version>0</item_version> <item>21</item> <item>21</item> </second> </item> </dp_fu_nodes_module> <dp_fu_nodes_io> <count>6</count> <item_version>0</item_version> <item> <first>edge_p1_x_read_read_fu_58</first> <second> <count>1</count> <item_version>0</item_version> <item>20</item> </second> </item> <item> <first>edge_p1_y_read_read_fu_52</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>edge_p1_z_read_read_fu_46</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> <item> <first>edge_p2_x_read_read_fu_40</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> <item> <first>edge_p2_y_read_read_fu_34</first> <second> <count>1</count> <item_version>0</item_version> <item>16</item> </second> </item> <item> <first>edge_p2_z_read_read_fu_28</first> <second> <count>1</count> <item_version>0</item_version> <item>15</item> </second> </item> </dp_fu_nodes_io> <return_ports> <count>0</count> <item_version>0</item_version> </return_ports> <dp_mem_port_nodes class_id="47" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_mem_port_nodes> <dp_reg_nodes> <count>6</count> <item_version>0</item_version> <item> <first>124</first> <second> <count>1</count> <item_version>0</item_version> <item>15</item> </second> </item> <item> <first>131</first> <second> <count>1</count> <item_version>0</item_version> <item>16</item> </second> </item> <item> <first>138</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> <item> <first>145</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> <item> <first>152</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>159</first> <second> <count>1</count> <item_version>0</item_version> <item>20</item> </second> </item> </dp_reg_nodes> <dp_regname_nodes> <count>6</count> <item_version>0</item_version> <item> <first>edge_p1_x_read_reg_159</first> <second> <count>1</count> <item_version>0</item_version> <item>20</item> </second> </item> <item> <first>edge_p1_y_read_reg_152</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>edge_p1_z_read_reg_145</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> <item> <first>edge_p2_x_read_reg_138</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> <item> <first>edge_p2_y_read_reg_131</first> <second> <count>1</count> <item_version>0</item_version> <item>16</item> </second> </item> <item> <first>edge_p2_z_read_reg_124</first> <second> <count>1</count> <item_version>0</item_version> <item>15</item> </second> </item> </dp_regname_nodes> <dp_reg_phi> <count>0</count> <item_version>0</item_version> </dp_reg_phi> <dp_regname_phi> <count>0</count> <item_version>0</item_version> </dp_regname_phi> <dp_port_io_nodes class_id="48" tracking_level="0" version="0"> <count>6</count> <item_version>0</item_version> <item class_id="49" tracking_level="0" version="0"> <first>edge_p1_x</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>20</item> </second> </item> </second> </item> <item> <first>edge_p1_y</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> </second> </item> <item> <first>edge_p1_z</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> </second> </item> <item> <first>edge_p2_x</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> </second> </item> <item> <first>edge_p2_y</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>16</item> </second> </item> </second> </item> <item> <first>edge_p2_z</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>15</item> </second> </item> </second> </item> </dp_port_io_nodes> <port2core class_id="50" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </port2core> <node2core> <count>0</count> <item_version>0</item_version> </node2core> </syndb> </boost_serialization>
25.900272
72
0.599154
06235d118bc948424c1b858dc61880f8d5f96280
4,535
adb
Ada
boards/stm32_common/nucleo_f303re/stm32-board.adb
ekoeppen/Ada_Drivers_Library
4b295a4ee8e89df17c460bd35ab270a3a0a68a3b
[ "BSD-3-Clause" ]
null
null
null
boards/stm32_common/nucleo_f303re/stm32-board.adb
ekoeppen/Ada_Drivers_Library
4b295a4ee8e89df17c460bd35ab270a3a0a68a3b
[ "BSD-3-Clause" ]
null
null
null
boards/stm32_common/nucleo_f303re/stm32-board.adb
ekoeppen/Ada_Drivers_Library
4b295a4ee8e89df17c460bd35ab270a3a0a68a3b
[ "BSD-3-Clause" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- Copyright (C) 2015, AdaCore -- -- -- -- 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. -- -- -- -- -- -- This file is based on: -- -- -- -- @file stm32f4_discovery.c -- -- @author MCD Application Team -- -- @version V1.1.0 -- -- @date 19-June-2014 -- -- @brief This file provides set of firmware functions to manage Leds -- -- and push-button available on STM32F42-Discovery Kit from -- -- STMicroelectronics. -- -- -- -- COPYRIGHT(c) 2014 STMicroelectronics -- ------------------------------------------------------------------------------ package body STM32.Board is ------------------ -- All_LEDs_Off -- ------------------ procedure All_LEDs_Off is begin Clear (All_LEDs); end All_LEDs_Off; ----------------- -- All_LEDs_On -- ----------------- procedure All_LEDs_On is begin Set (All_LEDs); end All_LEDs_On; --------------------- -- Initialize_LEDs -- --------------------- procedure Initialize_LEDs is Configuration : GPIO_Port_Configuration; begin Enable_Clock (All_LEDs); Configuration.Mode := Mode_Out; Configuration.Output_Type := Push_Pull; Configuration.Speed := Speed_100MHz; Configuration.Resistors := Floating; Configure_IO (All_LEDs, Config => Configuration); end Initialize_LEDs; -------------------------------- -- Configure_User_Button_GPIO -- -------------------------------- procedure Configure_User_Button_GPIO is Config : GPIO_Port_Configuration; begin Enable_Clock (User_Button_Point); Config.Mode := Mode_In; Config.Resistors := Floating; Configure_IO (User_Button_Point, Config); end Configure_User_Button_GPIO; end STM32.Board;
46.752577
78
0.464388
a1153de649db3f44b480d1f96c3a389a9cc79e0d
216
ads
Ada
gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/graphic.ads
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
7
2020-05-02T17:34:05.000Z
2021-10-17T10:15:18.000Z
gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/graphic.ads
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
null
null
null
gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/graphic.ads
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
2
2020-07-27T00:22:36.000Z
2021-04-01T09:41:02.000Z
with Ada.Streams; with Ada.Tags; package Graphic is use Ada; -- type Object is abstract tagged null record; function XML_Input (S : access Streams.Root_Stream_Type'Class) return Object'Class; end Graphic;
21.6
64
0.75
59c76ab146328b71a4f2cfd81a02ed4c1f460809
2,513
adb
Ada
support/MinGW/lib/gcc/mingw32/9.2.0/adainclude/a-stunha.adb
orb-zhuchen/Orb
6da2404b949ac28bde786e08bf4debe4a27cd3a0
[ "CNRI-Python-GPL-Compatible", "MIT" ]
null
null
null
support/MinGW/lib/gcc/mingw32/9.2.0/adainclude/a-stunha.adb
orb-zhuchen/Orb
6da2404b949ac28bde786e08bf4debe4a27cd3a0
[ "CNRI-Python-GPL-Compatible", "MIT" ]
null
null
null
support/MinGW/lib/gcc/mingw32/9.2.0/adainclude/a-stunha.adb
orb-zhuchen/Orb
6da2404b949ac28bde786e08bf4debe4a27cd3a0
[ "CNRI-Python-GPL-Compatible", "MIT" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- GNAT LIBRARY COMPONENTS -- -- -- -- A D A . S T R I N G S . U N B O U N D E D . H A S H -- -- -- -- B o d y -- -- -- -- Copyright (C) 2004-2019, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- This unit was originally developed by Matthew J Heaney. -- ------------------------------------------------------------------------------ with System.String_Hash; function Ada.Strings.Unbounded.Hash (Key : Unbounded_String) return Containers.Hash_Type is use Ada.Containers; function Hash is new System.String_Hash.Hash (Character, String, Hash_Type); begin return Hash (To_String (Key)); end Ada.Strings.Unbounded.Hash;
61.292683
78
0.411062
41dd4ce70e7d7fccbc9a1fbc9b8ff9a7648b4a52
66,131
adb
Ada
hls_video_block/solution1/.autopilot/db/gry2rgb.adb
parker-xilinx/HLS_2d_filter
25c85715167623c07bd5f06a8747961cdafee616
[ "Unlicense" ]
1
2019-12-22T12:22:36.000Z
2019-12-22T12:22:36.000Z
hls_video_block/solution1/.autopilot/db/gry2rgb.adb
parker-xilinx/HLS_2d_filter
25c85715167623c07bd5f06a8747961cdafee616
[ "Unlicense" ]
null
null
null
hls_video_block/solution1/.autopilot/db/gry2rgb.adb
parker-xilinx/HLS_2d_filter
25c85715167623c07bd5f06a8747961cdafee616
[ "Unlicense" ]
2
2019-12-22T12:22:38.000Z
2021-04-30T00:59:20.000Z
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> <!DOCTYPE boost_serialization> <boost_serialization signature="serialization::archive" version="15"> <syndb class_id="0" tracking_level="0" version="0"> <userIPLatency>-1</userIPLatency> <userIPName/> <cdfg class_id="1" tracking_level="1" version="0" object_id="_0"> <name>gry2rgb</name> <ret_bitwidth>0</ret_bitwidth> <ports class_id="2" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="3" tracking_level="1" version="0" object_id="_1"> <Value class_id="4" tracking_level="0" version="0"> <Obj class_id="5" tracking_level="0" version="0"> <type>1</type> <id>1</id> <name>input_mat_data_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo class_id="6" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>input_mat.data.V</originalName> <rtlName/> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>1</bitwidth> </Value> <direction>0</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs class_id="7" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_2"> <Value> <Obj> <type>1</type> <id>2</id> <name>output_mat_data_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>output_mat.data.V</originalName> <rtlName/> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>17</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> </ports> <nodes class_id="8" tracking_level="0" version="0"> <count>11</count> <item_version>0</item_version> <item class_id="9" tracking_level="1" version="0" object_id="_3"> <Value> <Obj> <type>0</type> <id>5</id> <name/> <fileName>hls_video_block.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>145</lineNumber> <contextFuncName>gry2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item class_id="10" tracking_level="0" version="0"> <first>C:\Users\parkerh\Documents\2d_filter_xfopencv</first> <second class_id="11" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="12" tracking_level="0" version="0"> <first class_id="13" tracking_level="0" version="0"> <first>hls_video_block.cpp</first> <second>gry2rgb</second> </first> <second>145</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>23</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.65</m_delay> <m_topoIndex>1</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_4"> <Value> <Obj> <type>0</type> <id>7</id> <name>indvar_flatten</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>20</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>25</item> <item>26</item> <item>27</item> <item>28</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>2</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_5"> <Value> <Obj> <type>0</type> <id>8</id> <name>exitcond_flatten</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName>exitcond_flatten_fu_68_p2</rtlName> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>29</item> <item>31</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.07</m_delay> <m_topoIndex>3</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_6"> <Value> <Obj> <type>0</type> <id>9</id> <name>indvar_flatten_next</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName>indvar_flatten_next_fu_74_p2</rtlName> <coreName/> </Obj> <bitwidth>20</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>32</item> <item>34</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.89</m_delay> <m_topoIndex>4</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_7"> <Value> <Obj> <type>0</type> <id>10</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>35</item> <item>36</item> <item>37</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>5</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_8"> <Value> <Obj> <type>0</type> <id>14</id> <name>input_mat_data_V_rea</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>39</item> <item>40</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.83</m_delay> <m_topoIndex>6</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_9"> <Value> <Obj> <type>0</type> <id>15</id> <name>input_pixel_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>input_pixel.V</originalName> <rtlName>input_pixel_V_fu_80_p3</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>41</item> <item>43</item> <item>45</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.17</m_delay> <m_topoIndex>7</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_10"> <Value> <Obj> <type>0</type> <id>16</id> <name>tmp</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName>output_mat_data_V_din</rtlName> <coreName/> </Obj> <bitwidth>17</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>47</item> <item>48</item> <item>49</item> <item>50</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>8</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_11"> <Value> <Obj> <type>0</type> <id>17</id> <name/> <fileName>hls_video_block.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>152</lineNumber> <contextFuncName>gry2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\parkerh\Documents\2d_filter_xfopencv</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_video_block.cpp</first> <second>gry2rgb</second> </first> <second>152</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>52</item> <item>53</item> <item>54</item> </oprand_edges> <opcode>write</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.83</m_delay> <m_topoIndex>9</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_12"> <Value> <Obj> <type>0</type> <id>19</id> <name/> <fileName>hls_video_block.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>146</lineNumber> <contextFuncName>gry2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\parkerh\Documents\2d_filter_xfopencv</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_video_block.cpp</first> <second>gry2rgb</second> </first> <second>146</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>55</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>10</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_13"> <Value> <Obj> <type>0</type> <id>21</id> <name/> <fileName>hls_video_block.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>155</lineNumber> <contextFuncName>gry2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\parkerh\Documents\2d_filter_xfopencv</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_video_block.cpp</first> <second>gry2rgb</second> </first> <second>155</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>0</count> <item_version>0</item_version> </oprand_edges> <opcode>ret</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>11</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> </nodes> <consts class_id="15" tracking_level="0" version="0"> <count>5</count> <item_version>0</item_version> <item class_id="16" tracking_level="1" version="0" object_id="_14"> <Value> <Obj> <type>2</type> <id>24</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>20</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_15"> <Value> <Obj> <type>2</type> <id>30</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>20</bitwidth> </Value> <const_type>0</const_type> <content>921600</content> </item> <item class_id_reference="16" object_id="_16"> <Value> <Obj> <type>2</type> <id>33</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>20</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_17"> <Value> <Obj> <type>2</type> <id>42</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <const_type>0</const_type> <content>255</content> </item> <item class_id_reference="16" object_id="_18"> <Value> <Obj> <type>2</type> <id>44</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> </consts> <blocks class_id="17" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="18" tracking_level="1" version="0" object_id="_19"> <Obj> <type>3</type> <id>6</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>5</item> </node_objs> </item> <item class_id_reference="18" object_id="_20"> <Obj> <type>3</type> <id>11</id> <name>.preheader</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>4</count> <item_version>0</item_version> <item>7</item> <item>8</item> <item>9</item> <item>10</item> </node_objs> </item> <item class_id_reference="18" object_id="_21"> <Obj> <type>3</type> <id>20</id> <name>.preheader.preheader</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>5</count> <item_version>0</item_version> <item>14</item> <item>15</item> <item>16</item> <item>17</item> <item>19</item> </node_objs> </item> <item class_id_reference="18" object_id="_22"> <Obj> <type>3</type> <id>22</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>21</item> </node_objs> </item> </blocks> <edges class_id="19" tracking_level="0" version="0"> <count>26</count> <item_version>0</item_version> <item class_id="20" tracking_level="1" version="0" object_id="_23"> <id>23</id> <edge_type>2</edge_type> <source_obj>11</source_obj> <sink_obj>5</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_24"> <id>25</id> <edge_type>1</edge_type> <source_obj>24</source_obj> <sink_obj>7</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_25"> <id>26</id> <edge_type>2</edge_type> <source_obj>6</source_obj> <sink_obj>7</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_26"> <id>27</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>7</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_27"> <id>28</id> <edge_type>2</edge_type> <source_obj>20</source_obj> <sink_obj>7</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_28"> <id>29</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>8</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_29"> <id>31</id> <edge_type>1</edge_type> <source_obj>30</source_obj> <sink_obj>8</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_30"> <id>32</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>9</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_31"> <id>34</id> <edge_type>1</edge_type> <source_obj>33</source_obj> <sink_obj>9</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_32"> <id>35</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>10</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_33"> <id>36</id> <edge_type>2</edge_type> <source_obj>20</source_obj> <sink_obj>10</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_34"> <id>37</id> <edge_type>2</edge_type> <source_obj>22</source_obj> <sink_obj>10</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_35"> <id>40</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>14</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_36"> <id>41</id> <edge_type>1</edge_type> <source_obj>14</source_obj> <sink_obj>15</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_37"> <id>43</id> <edge_type>1</edge_type> <source_obj>42</source_obj> <sink_obj>15</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_38"> <id>45</id> <edge_type>1</edge_type> <source_obj>44</source_obj> <sink_obj>15</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_39"> <id>48</id> <edge_type>1</edge_type> <source_obj>14</source_obj> <sink_obj>16</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_40"> <id>49</id> <edge_type>1</edge_type> <source_obj>15</source_obj> <sink_obj>16</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_41"> <id>50</id> <edge_type>1</edge_type> <source_obj>15</source_obj> <sink_obj>16</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_42"> <id>53</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>17</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_43"> <id>54</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>17</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_44"> <id>55</id> <edge_type>2</edge_type> <source_obj>11</source_obj> <sink_obj>19</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_45"> <id>113</id> <edge_type>2</edge_type> <source_obj>6</source_obj> <sink_obj>11</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_46"> <id>114</id> <edge_type>2</edge_type> <source_obj>11</source_obj> <sink_obj>22</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_47"> <id>115</id> <edge_type>2</edge_type> <source_obj>11</source_obj> <sink_obj>20</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_48"> <id>116</id> <edge_type>2</edge_type> <source_obj>20</source_obj> <sink_obj>11</sink_obj> <is_back_edge>1</is_back_edge> </item> </edges> </cdfg> <cdfg_regions class_id="21" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="22" tracking_level="1" version="0" object_id="_49"> <mId>1</mId> <mTag>gry2rgb</mTag> <mType>0</mType> <sub_regions> <count>3</count> <item_version>0</item_version> <item>2</item> <item>3</item> <item>4</item> </sub_regions> <basic_blocks> <count>0</count> <item_version>0</item_version> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>921602</mMinLatency> <mMaxLatency>921602</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> <item class_id_reference="22" object_id="_50"> <mId>2</mId> <mTag>Entry</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>6</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> <item class_id_reference="22" object_id="_51"> <mId>3</mId> <mTag>Loop 1</mTag> <mType>1</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>11</item> <item>20</item> </basic_blocks> <mII>1</mII> <mDepth>2</mDepth> <mMinTripCount>921600</mMinTripCount> <mMaxTripCount>921600</mMaxTripCount> <mMinLatency>921600</mMinLatency> <mMaxLatency>921600</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> <item class_id_reference="22" object_id="_52"> <mId>4</mId> <mTag>Return</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>22</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> </cdfg_regions> <fsm class_id="24" tracking_level="1" version="0" object_id="_53"> <states class_id="25" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="26" tracking_level="1" version="0" object_id="_54"> <id>1</id> <operations class_id="27" tracking_level="0" version="0"> <count>3</count> <item_version>0</item_version> <item class_id="28" tracking_level="1" version="0" object_id="_55"> <id>3</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_56"> <id>4</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_57"> <id>5</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_58"> <id>2</id> <operations> <count>4</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_59"> <id>7</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_60"> <id>8</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_61"> <id>9</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_62"> <id>10</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_63"> <id>3</id> <operations> <count>8</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_64"> <id>12</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_65"> <id>13</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_66"> <id>14</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_67"> <id>15</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_68"> <id>16</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_69"> <id>17</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_70"> <id>18</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_71"> <id>19</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_72"> <id>4</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_73"> <id>21</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> </states> <transitions class_id="29" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="30" tracking_level="1" version="0" object_id="_74"> <inState>1</inState> <outState>2</outState> <condition class_id="31" tracking_level="0" version="0"> <id>-1</id> <sop class_id="32" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="33" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_75"> <inState>3</inState> <outState>2</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_76"> <inState>2</inState> <outState>4</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item class_id="34" tracking_level="0" version="0"> <first class_id="35" tracking_level="0" version="0"> <first>8</first> <second>0</second> </first> <second>0</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_77"> <inState>2</inState> <outState>3</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item> <first> <first>8</first> <second>0</second> </first> <second>1</second> </item> </item> </sop> </condition> </item> </transitions> </fsm> <res class_id="36" tracking_level="1" version="0" object_id="_78"> <dp_component_resource class_id="37" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_component_resource> <dp_expression_resource> <count>8</count> <item_version>0</item_version> <item class_id="38" tracking_level="0" version="0"> <first>ap_block_pp0_stage0_01001 ( and ) </first> <second class_id="39" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="40" tracking_level="0" version="0"> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>ap_block_state1 ( or ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>ap_block_state3_pp0_stage0_iter1 ( or ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>ap_enable_pp0 ( xor ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>2</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>ap_enable_reg_pp0_iter1 ( xor ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>2</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>exitcond_flatten_fu_68_p2 ( icmp ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>20</second> </item> <item> <first>(1P1)</first> <second>18</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>20</second> </item> </second> </item> <item> <first>indvar_flatten_next_fu_74_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>20</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>27</second> </item> </second> </item> <item> <first>input_pixel_V_fu_80_p3 ( select ) </first> <second> <count>5</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>2</second> </item> <item> <first>(2P2)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> </dp_expression_resource> <dp_fifo_resource> <count>0</count> <item_version>0</item_version> </dp_fifo_resource> <dp_memory_resource> <count>0</count> <item_version>0</item_version> </dp_memory_resource> <dp_multiplexer_resource> <count>7</count> <item_version>0</item_version> <item> <first>ap_NS_fsm</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>4</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>4</second> </item> <item> <first>LUT</first> <second>21</second> </item> </second> </item> <item> <first>ap_done</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>ap_enable_reg_pp0_iter1</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>3</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> <item> <first>indvar_flatten_reg_57</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>20</second> </item> <item> <first>(2Count)</first> <second>40</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>input_mat_data_V_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>output_mat_data_V_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>real_start</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> </dp_multiplexer_resource> <dp_register_resource> <count>7</count> <item_version>0</item_version> <item> <first>ap_CS_fsm</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>3</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>3</second> </item> </second> </item> <item> <first>ap_done_reg</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>ap_enable_reg_pp0_iter0</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>ap_enable_reg_pp0_iter1</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>exitcond_flatten_reg_99</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>indvar_flatten_reg_57</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>20</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>20</second> </item> </second> </item> <item> <first>start_once_reg</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> </dp_register_resource> <dp_dsp_resource> <count>0</count> <item_version>0</item_version> </dp_dsp_resource> <dp_component_map class_id="41" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_component_map> <dp_expression_map> <count>3</count> <item_version>0</item_version> <item class_id="42" tracking_level="0" version="0"> <first>exitcond_flatten_fu_68_p2 ( icmp ) </first> <second> <count>1</count> <item_version>0</item_version> <item>8</item> </second> </item> <item> <first>indvar_flatten_next_fu_74_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>9</item> </second> </item> <item> <first>input_pixel_V_fu_80_p3 ( select ) </first> <second> <count>1</count> <item_version>0</item_version> <item>15</item> </second> </item> </dp_expression_map> <dp_fifo_map> <count>0</count> <item_version>0</item_version> </dp_fifo_map> <dp_memory_map> <count>0</count> <item_version>0</item_version> </dp_memory_map> </res> <node_label_latency class_id="43" tracking_level="0" version="0"> <count>11</count> <item_version>0</item_version> <item class_id="44" tracking_level="0" version="0"> <first>5</first> <second class_id="45" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>7</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>8</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>9</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>10</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>14</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>15</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>16</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>17</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>19</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>21</first> <second> <first>3</first> <second>0</second> </second> </item> </node_label_latency> <bblk_ent_exit class_id="46" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="47" tracking_level="0" version="0"> <first>6</first> <second class_id="48" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>11</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>20</first> <second> <first>2</first> <second>2</second> </second> </item> <item> <first>22</first> <second> <first>2</first> <second>2</second> </second> </item> </bblk_ent_exit> <regions class_id="49" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="50" tracking_level="1" version="0" object_id="_79"> <region_name>Loop 1</region_name> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>11</item> <item>20</item> </basic_blocks> <nodes> <count>0</count> <item_version>0</item_version> </nodes> <anchor_node>-1</anchor_node> <region_type>8</region_type> <interval>1</interval> <pipe_depth>2</pipe_depth> </item> </regions> <dp_fu_nodes class_id="51" tracking_level="0" version="0"> <count>7</count> <item_version>0</item_version> <item class_id="52" tracking_level="0" version="0"> <first>44</first> <second> <count>1</count> <item_version>0</item_version> <item>14</item> </second> </item> <item> <first>50</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> <item> <first>61</first> <second> <count>1</count> <item_version>0</item_version> <item>7</item> </second> </item> <item> <first>68</first> <second> <count>1</count> <item_version>0</item_version> <item>8</item> </second> </item> <item> <first>74</first> <second> <count>1</count> <item_version>0</item_version> <item>9</item> </second> </item> <item> <first>80</first> <second> <count>1</count> <item_version>0</item_version> <item>15</item> </second> </item> <item> <first>88</first> <second> <count>1</count> <item_version>0</item_version> <item>16</item> </second> </item> </dp_fu_nodes> <dp_fu_nodes_expression class_id="54" tracking_level="0" version="0"> <count>5</count> <item_version>0</item_version> <item class_id="55" tracking_level="0" version="0"> <first>exitcond_flatten_fu_68</first> <second> <count>1</count> <item_version>0</item_version> <item>8</item> </second> </item> <item> <first>indvar_flatten_next_fu_74</first> <second> <count>1</count> <item_version>0</item_version> <item>9</item> </second> </item> <item> <first>indvar_flatten_phi_fu_61</first> <second> <count>1</count> <item_version>0</item_version> <item>7</item> </second> </item> <item> <first>input_pixel_V_fu_80</first> <second> <count>1</count> <item_version>0</item_version> <item>15</item> </second> </item> <item> <first>tmp_fu_88</first> <second> <count>1</count> <item_version>0</item_version> <item>16</item> </second> </item> </dp_fu_nodes_expression> <dp_fu_nodes_module> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_module> <dp_fu_nodes_io> <count>2</count> <item_version>0</item_version> <item> <first>StgValue_17_write_fu_50</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> <item> <first>input_mat_data_V_rea_read_fu_44</first> <second> <count>1</count> <item_version>0</item_version> <item>14</item> </second> </item> </dp_fu_nodes_io> <return_ports> <count>0</count> <item_version>0</item_version> </return_ports> <dp_mem_port_nodes class_id="56" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_mem_port_nodes> <dp_reg_nodes> <count>3</count> <item_version>0</item_version> <item> <first>57</first> <second> <count>1</count> <item_version>0</item_version> <item>7</item> </second> </item> <item> <first>99</first> <second> <count>1</count> <item_version>0</item_version> <item>8</item> </second> </item> <item> <first>103</first> <second> <count>1</count> <item_version>0</item_version> <item>9</item> </second> </item> </dp_reg_nodes> <dp_regname_nodes> <count>3</count> <item_version>0</item_version> <item> <first>exitcond_flatten_reg_99</first> <second> <count>1</count> <item_version>0</item_version> <item>8</item> </second> </item> <item> <first>indvar_flatten_next_reg_103</first> <second> <count>1</count> <item_version>0</item_version> <item>9</item> </second> </item> <item> <first>indvar_flatten_reg_57</first> <second> <count>1</count> <item_version>0</item_version> <item>7</item> </second> </item> </dp_regname_nodes> <dp_reg_phi> <count>1</count> <item_version>0</item_version> <item> <first>57</first> <second> <count>1</count> <item_version>0</item_version> <item>7</item> </second> </item> </dp_reg_phi> <dp_regname_phi> <count>1</count> <item_version>0</item_version> <item> <first>indvar_flatten_reg_57</first> <second> <count>1</count> <item_version>0</item_version> <item>7</item> </second> </item> </dp_regname_phi> <dp_port_io_nodes class_id="57" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="58" tracking_level="0" version="0"> <first>input_mat_data_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>14</item> </second> </item> </second> </item> <item> <first>output_mat_data_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> </second> </item> </dp_port_io_nodes> <port2core class_id="59" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="60" tracking_level="0" version="0"> <first>1</first> <second>FIFO_SRL</second> </item> <item> <first>2</first> <second>FIFO_SRL</second> </item> </port2core> <node2core> <count>0</count> <item_version>0</item_version> </node2core> </syndb> </boost_serialization>
30.503229
79
0.461024
fbdf0ec0bfff5176a70974523f46a6dbcdf75cf1
3,460
ads
Ada
awa/src/awa-users-modules.ads
My-Colaborations/ada-awa
cc2dee291a14e4df0dbc9c10285bf284a7f1caa8
[ "Apache-2.0" ]
81
2015-01-18T23:02:30.000Z
2022-03-19T17:34:57.000Z
awa/src/awa-users-modules.ads
My-Colaborations/ada-awa
cc2dee291a14e4df0dbc9c10285bf284a7f1caa8
[ "Apache-2.0" ]
20
2015-12-09T19:26:19.000Z
2022-03-23T14:32:43.000Z
awa/src/awa-users-modules.ads
My-Colaborations/ada-awa
cc2dee291a14e4df0dbc9c10285bf284a7f1caa8
[ "Apache-2.0" ]
16
2015-06-29T02:44:06.000Z
2021-09-23T18:47:50.000Z
----------------------------------------------------------------------- -- awa-users-module -- User management module -- Copyright (C) 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2020 Stephane Carrez -- Written by Stephane Carrez ([email protected]) -- -- 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. ----------------------------------------------------------------------- with ASF.Applications; with AWA.Modules; with AWA.Users.Services; with AWA.Users.Filters; with AWA.Users.Servlets; -- == Integration == -- The `User_Module` manages the creation, update, removal of users -- in an application. It provides operations that are used by the user -- beans or other services to create and update wiki pages. -- An instance of the `User_Module` must be declared and registered in the -- AWA application. The module instance can be defined as follows: -- -- type Application is new AWA.Applications.Application with record -- User_Module : aliased AWA.Users.Modules.User_Module; -- end record; -- -- And registered in the `Initialize_Modules` procedure by using: -- -- Register (App => App.Self.all'Access, -- Name => AWA.Users.Modules.NAME, -- Module => App.User_Module'Access); -- package AWA.Users.Modules is NAME : constant String := "users"; type User_Module is new AWA.Modules.Module with private; type User_Module_Access is access all User_Module'Class; -- Initialize the user module. overriding procedure Initialize (Plugin : in out User_Module; App : in AWA.Modules.Application_Access; Props : in ASF.Applications.Config); -- Configures the module after its initialization and after having read -- its XML configuration. overriding procedure Configure (Plugin : in out User_Module; Props : in ASF.Applications.Config); -- Get the user manager. function Get_User_Manager (Plugin : in User_Module) return Services.User_Service_Access; -- Create a user manager. This operation can be overriden to provide another -- user service implementation. function Create_User_Manager (Plugin : in User_Module) return Services.User_Service_Access; -- Get the user module instance associated with the current application. function Get_User_Module return User_Module_Access; -- Get the user manager instance associated with the current application. function Get_User_Manager return Services.User_Service_Access; private type User_Module is new AWA.Modules.Module with record Manager : Services.User_Service_Access := null; Key_Filter : aliased AWA.Users.Filters.Verify_Filter; Auth_Filter : aliased AWA.Users.Filters.Auth_Filter; Auth : aliased AWA.Users.Servlets.Request_Auth_Servlet; Verify_Auth : aliased AWA.Users.Servlets.Verify_Auth_Servlet; end record; end AWA.Users.Modules;
40.705882
94
0.686705
29ce5a8f4e6c292d0a0fc9c2bf7c1902bc477c3a
1,784
adb
Ada
examples/src/tasksink.adb
sonneveld/adazmq
ee1a3ad1588f6a298fe1170c0e907052dcb7a1a6
[ "MIT" ]
null
null
null
examples/src/tasksink.adb
sonneveld/adazmq
ee1a3ad1588f6a298fe1170c0e907052dcb7a1a6
[ "MIT" ]
null
null
null
examples/src/tasksink.adb
sonneveld/adazmq
ee1a3ad1588f6a298fe1170c0e907052dcb7a1a6
[ "MIT" ]
null
null
null
-- Task sink -- Binds PULL socket to tcp://localhost:5558 -- Collects results from workers via that socket with Ada.Command_Line; with Ada.Text_IO; with GNAT.Formatted_String; with Ada.Calendar; with ZMQ; procedure TaskSink is use type Ada.Calendar.Time; use type GNAT.Formatted_String.Formatted_String; function Main return Ada.Command_Line.Exit_Status is begin declare -- Prepare our context and socket Context : ZMQ.Context_Type := ZMQ.New_Context; Receiver : constant ZMQ.Socket_Type'Class := Context.New_Socket (ZMQ.ZMQ_PULL); begin Receiver.Bind ("tcp://*:5558"); -- Wait for start of batch declare Dummy : String := Receiver.Recv; begin null; end; declare -- Start our clock now Start_Time : constant Ada.Calendar.Time := Ada.Calendar.Clock; begin -- Process 100 confirmations for Task_Nbr in 1 .. 100 loop declare Dummy : String := Receiver.Recv; begin null; if Task_Nbr mod 10 = 0 then Ada.Text_IO.Put (":"); else Ada.Text_IO.Put ("."); end if; Ada.Text_IO.Flush; end; end loop; -- Calculate and report duration of batch Ada.Text_IO.Put_Line (""); Ada.Text_IO.Put_Line (-(+"Total elapsed time: %d msec" & Integer ((Ada.Calendar.Clock - Start_Time) * 1000.0))); end; Receiver.Close; Context.Term; end; return 0; end Main; begin Ada.Command_Line.Set_Exit_Status (Main); end TaskSink;
26.235294
124
0.545404
5916340041debf035f9504cca3d5436580092267
426
ads
Ada
source/numerics/machine-apple-darwin/s-ranini.ads
ytomino/drake
4e4bdcd8b8e23a11a29b31d3a8861fdf60090ea2
[ "MIT" ]
33
2015-04-04T09:19:36.000Z
2021-11-10T05:33:34.000Z
source/numerics/machine-apple-darwin/s-ranini.ads
ytomino/drake
4e4bdcd8b8e23a11a29b31d3a8861fdf60090ea2
[ "MIT" ]
8
2017-11-14T13:05:07.000Z
2018-08-09T15:28:49.000Z
source/numerics/machine-apple-darwin/s-ranini.ads
ytomino/drake
4e4bdcd8b8e23a11a29b31d3a8861fdf60090ea2
[ "MIT" ]
9
2015-02-03T17:09:53.000Z
2021-11-12T01:16:05.000Z
pragma License (Unrestricted); -- implementation unit specialized for POSIX (Darwin, FreeBSD, or Linux) with Ada.IO_Exceptions; with System.Storage_Elements; package System.Random_Initiators is pragma Preelaborate; procedure Get ( Item : Address; Size : Storage_Elements.Storage_Count); -- Exceptions Use_Error : exception renames Ada.IO_Exceptions.Use_Error; end System.Random_Initiators;
23.666667
73
0.751174
41510a862e38abac36dab3f08cc23048d434f257
28,474
adb
Ada
awa/src/model/awa-permissions-models.adb
twdroeger/ada-awa
77b824773747aecb912c37b1b7b59ea414679b80
[ "Apache-2.0" ]
null
null
null
awa/src/model/awa-permissions-models.adb
twdroeger/ada-awa
77b824773747aecb912c37b1b7b59ea414679b80
[ "Apache-2.0" ]
null
null
null
awa/src/model/awa-permissions-models.adb
twdroeger/ada-awa
77b824773747aecb912c37b1b7b59ea414679b80
[ "Apache-2.0" ]
null
null
null
----------------------------------------------------------------------- -- AWA.Permissions.Models -- AWA.Permissions.Models ----------------------------------------------------------------------- -- File generated by ada-gen DO NOT MODIFY -- Template used: templates/model/package-body.xhtml -- Ada Generator: https://ada-gen.googlecode.com/svn/trunk Revision 1095 ----------------------------------------------------------------------- -- Copyright (C) 2019 Stephane Carrez -- Written by Stephane Carrez ([email protected]) -- -- 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. ----------------------------------------------------------------------- with Ada.Unchecked_Deallocation; package body AWA.Permissions.Models is use type ADO.Objects.Object_Record_Access; use type ADO.Objects.Object_Ref; pragma Warnings (Off, "formal parameter * is not referenced"); function ACL_Key (Id : in ADO.Identifier) return ADO.Objects.Object_Key is Result : ADO.Objects.Object_Key (Of_Type => ADO.Objects.KEY_INTEGER, Of_Class => ACL_DEF'Access); begin ADO.Objects.Set_Value (Result, Id); return Result; end ACL_Key; function ACL_Key (Id : in String) return ADO.Objects.Object_Key is Result : ADO.Objects.Object_Key (Of_Type => ADO.Objects.KEY_INTEGER, Of_Class => ACL_DEF'Access); begin ADO.Objects.Set_Value (Result, Id); return Result; end ACL_Key; function "=" (Left, Right : ACL_Ref'Class) return Boolean is begin return ADO.Objects.Object_Ref'Class (Left) = ADO.Objects.Object_Ref'Class (Right); end "="; procedure Set_Field (Object : in out Acl_Ref'Class; Impl : out Acl_Access) is Result : ADO.Objects.Object_Record_Access; begin Object.Prepare_Modify (Result); Impl := Acl_Impl (Result.all)'Access; end Set_Field; -- Internal method to allocate the Object_Record instance procedure Allocate (Object : in out Acl_Ref) is Impl : Acl_Access; begin Impl := new Acl_Impl; Impl.Entity_Id := ADO.NO_IDENTIFIER; Impl.Writeable := False; Impl.User_Id := ADO.NO_IDENTIFIER; Impl.Workspace_Id := ADO.NO_IDENTIFIER; Impl.Entity_Type := 0; Impl.Permission := ADO.NO_IDENTIFIER; ADO.Objects.Set_Object (Object, Impl.all'Access); end Allocate; -- ---------------------------------------- -- Data object: Acl -- ---------------------------------------- procedure Set_Id (Object : in out Acl_Ref; Value : in ADO.Identifier) is Impl : Acl_Access; begin Set_Field (Object, Impl); ADO.Objects.Set_Field_Key_Value (Impl.all, 1, Value); end Set_Id; function Get_Id (Object : in Acl_Ref) return ADO.Identifier is Impl : constant Acl_Access := Acl_Impl (Object.Get_Object.all)'Access; begin return Impl.Get_Key_Value; end Get_Id; procedure Set_Entity_Id (Object : in out Acl_Ref; Value : in ADO.Identifier) is Impl : Acl_Access; begin Set_Field (Object, Impl); ADO.Objects.Set_Field_Identifier (Impl.all, 2, Impl.Entity_Id, Value); end Set_Entity_Id; function Get_Entity_Id (Object : in Acl_Ref) return ADO.Identifier is Impl : constant Acl_Access := Acl_Impl (Object.Get_Load_Object.all)'Access; begin return Impl.Entity_Id; end Get_Entity_Id; procedure Set_Writeable (Object : in out Acl_Ref; Value : in Boolean) is Impl : Acl_Access; begin Set_Field (Object, Impl); ADO.Objects.Set_Field_Boolean (Impl.all, 3, Impl.Writeable, Value); end Set_Writeable; function Get_Writeable (Object : in Acl_Ref) return Boolean is Impl : constant Acl_Access := Acl_Impl (Object.Get_Load_Object.all)'Access; begin return Impl.Writeable; end Get_Writeable; procedure Set_User_Id (Object : in out Acl_Ref; Value : in ADO.Identifier) is Impl : Acl_Access; begin Set_Field (Object, Impl); ADO.Objects.Set_Field_Identifier (Impl.all, 4, Impl.User_Id, Value); end Set_User_Id; function Get_User_Id (Object : in Acl_Ref) return ADO.Identifier is Impl : constant Acl_Access := Acl_Impl (Object.Get_Load_Object.all)'Access; begin return Impl.User_Id; end Get_User_Id; procedure Set_Workspace_Id (Object : in out Acl_Ref; Value : in ADO.Identifier) is Impl : Acl_Access; begin Set_Field (Object, Impl); ADO.Objects.Set_Field_Identifier (Impl.all, 5, Impl.Workspace_Id, Value); end Set_Workspace_Id; function Get_Workspace_Id (Object : in Acl_Ref) return ADO.Identifier is Impl : constant Acl_Access := Acl_Impl (Object.Get_Load_Object.all)'Access; begin return Impl.Workspace_Id; end Get_Workspace_Id; procedure Set_Entity_Type (Object : in out Acl_Ref; Value : in ADO.Entity_Type) is Impl : Acl_Access; begin Set_Field (Object, Impl); ADO.Objects.Set_Field_Entity_Type (Impl.all, 6, Impl.Entity_Type, Value); end Set_Entity_Type; function Get_Entity_Type (Object : in Acl_Ref) return ADO.Entity_Type is Impl : constant Acl_Access := Acl_Impl (Object.Get_Load_Object.all)'Access; begin return Impl.Entity_Type; end Get_Entity_Type; procedure Set_Permission (Object : in out Acl_Ref; Value : in ADO.Identifier) is Impl : Acl_Access; begin Set_Field (Object, Impl); ADO.Objects.Set_Field_Identifier (Impl.all, 7, Impl.Permission, Value); end Set_Permission; function Get_Permission (Object : in Acl_Ref) return ADO.Identifier is Impl : constant Acl_Access := Acl_Impl (Object.Get_Load_Object.all)'Access; begin return Impl.Permission; end Get_Permission; -- Copy of the object. procedure Copy (Object : in Acl_Ref; Into : in out Acl_Ref) is Result : Acl_Ref; begin if not Object.Is_Null then declare Impl : constant Acl_Access := Acl_Impl (Object.Get_Load_Object.all)'Access; Copy : constant Acl_Access := new Acl_Impl; begin ADO.Objects.Set_Object (Result, Copy.all'Access); Copy.Copy (Impl.all); Copy.Entity_Id := Impl.Entity_Id; Copy.Writeable := Impl.Writeable; Copy.User_Id := Impl.User_Id; Copy.Workspace_Id := Impl.Workspace_Id; Copy.Entity_Type := Impl.Entity_Type; Copy.Permission := Impl.Permission; end; end if; Into := Result; end Copy; procedure Find (Object : in out Acl_Ref; Session : in out ADO.Sessions.Session'Class; Query : in ADO.SQL.Query'Class; Found : out Boolean) is Impl : constant Acl_Access := new Acl_Impl; begin Impl.Find (Session, Query, Found); if Found then ADO.Objects.Set_Object (Object, Impl.all'Access); else ADO.Objects.Set_Object (Object, null); Destroy (Impl); end if; end Find; procedure Load (Object : in out Acl_Ref; Session : in out ADO.Sessions.Session'Class; Id : in ADO.Identifier) is Impl : constant Acl_Access := new Acl_Impl; Found : Boolean; Query : ADO.SQL.Query; begin Query.Bind_Param (Position => 1, Value => Id); Query.Set_Filter ("id = ?"); Impl.Find (Session, Query, Found); if not Found then Destroy (Impl); raise ADO.Objects.NOT_FOUND; end if; ADO.Objects.Set_Object (Object, Impl.all'Access); end Load; procedure Load (Object : in out Acl_Ref; Session : in out ADO.Sessions.Session'Class; Id : in ADO.Identifier; Found : out Boolean) is Impl : constant Acl_Access := new Acl_Impl; Query : ADO.SQL.Query; begin Query.Bind_Param (Position => 1, Value => Id); Query.Set_Filter ("id = ?"); Impl.Find (Session, Query, Found); if not Found then Destroy (Impl); else ADO.Objects.Set_Object (Object, Impl.all'Access); end if; end Load; procedure Save (Object : in out Acl_Ref; Session : in out ADO.Sessions.Master_Session'Class) is Impl : ADO.Objects.Object_Record_Access := Object.Get_Object; begin if Impl = null then Impl := new Acl_Impl; ADO.Objects.Set_Object (Object, Impl); end if; if not ADO.Objects.Is_Created (Impl.all) then Impl.Create (Session); else Impl.Save (Session); end if; end Save; procedure Delete (Object : in out Acl_Ref; Session : in out ADO.Sessions.Master_Session'Class) is Impl : constant ADO.Objects.Object_Record_Access := Object.Get_Object; begin if Impl /= null then Impl.Delete (Session); end if; end Delete; -- -------------------- -- Free the object -- -------------------- procedure Destroy (Object : access Acl_Impl) is type Acl_Impl_Ptr is access all Acl_Impl; procedure Unchecked_Free is new Ada.Unchecked_Deallocation (Acl_Impl, Acl_Impl_Ptr); pragma Warnings (Off, "*redundant conversion*"); Ptr : Acl_Impl_Ptr := Acl_Impl (Object.all)'Access; pragma Warnings (On, "*redundant conversion*"); begin Unchecked_Free (Ptr); end Destroy; procedure Find (Object : in out Acl_Impl; Session : in out ADO.Sessions.Session'Class; Query : in ADO.SQL.Query'Class; Found : out Boolean) is Stmt : ADO.Statements.Query_Statement := Session.Create_Statement (Query, ACL_DEF'Access); begin Stmt.Execute; if Stmt.Has_Elements then Object.Load (Stmt, Session); Stmt.Next; Found := not Stmt.Has_Elements; else Found := False; end if; end Find; overriding procedure Load (Object : in out Acl_Impl; Session : in out ADO.Sessions.Session'Class) is Found : Boolean; Query : ADO.SQL.Query; Id : constant ADO.Identifier := Object.Get_Key_Value; begin Query.Bind_Param (Position => 1, Value => Id); Query.Set_Filter ("id = ?"); Object.Find (Session, Query, Found); if not Found then raise ADO.Objects.NOT_FOUND; end if; end Load; procedure Save (Object : in out Acl_Impl; Session : in out ADO.Sessions.Master_Session'Class) is Stmt : ADO.Statements.Update_Statement := Session.Create_Statement (ACL_DEF'Access); begin if Object.Is_Modified (1) then Stmt.Save_Field (Name => COL_0_1_NAME, -- id Value => Object.Get_Key); Object.Clear_Modified (1); end if; if Object.Is_Modified (2) then Stmt.Save_Field (Name => COL_1_1_NAME, -- entity_id Value => Object.Entity_Id); Object.Clear_Modified (2); end if; if Object.Is_Modified (3) then Stmt.Save_Field (Name => COL_2_1_NAME, -- writeable Value => Object.Writeable); Object.Clear_Modified (3); end if; if Object.Is_Modified (4) then Stmt.Save_Field (Name => COL_3_1_NAME, -- user_id Value => Object.User_Id); Object.Clear_Modified (4); end if; if Object.Is_Modified (5) then Stmt.Save_Field (Name => COL_4_1_NAME, -- workspace_id Value => Object.Workspace_Id); Object.Clear_Modified (5); end if; if Object.Is_Modified (6) then Stmt.Save_Field (Name => COL_5_1_NAME, -- entity_type Value => Object.Entity_Type); Object.Clear_Modified (6); end if; if Object.Is_Modified (7) then Stmt.Save_Field (Name => COL_6_1_NAME, -- permission Value => Object.Permission); Object.Clear_Modified (7); end if; if Stmt.Has_Save_Fields then Stmt.Set_Filter (Filter => "id = ?"); Stmt.Add_Param (Value => Object.Get_Key); declare Result : Integer; begin Stmt.Execute (Result); if Result /= 1 then if Result /= 0 then raise ADO.Objects.UPDATE_ERROR; end if; end if; end; end if; end Save; procedure Create (Object : in out Acl_Impl; Session : in out ADO.Sessions.Master_Session'Class) is Query : ADO.Statements.Insert_Statement := Session.Create_Statement (ACL_DEF'Access); Result : Integer; begin Session.Allocate (Id => Object); Query.Save_Field (Name => COL_0_1_NAME, -- id Value => Object.Get_Key); Query.Save_Field (Name => COL_1_1_NAME, -- entity_id Value => Object.Entity_Id); Query.Save_Field (Name => COL_2_1_NAME, -- writeable Value => Object.Writeable); Query.Save_Field (Name => COL_3_1_NAME, -- user_id Value => Object.User_Id); Query.Save_Field (Name => COL_4_1_NAME, -- workspace_id Value => Object.Workspace_Id); Query.Save_Field (Name => COL_5_1_NAME, -- entity_type Value => Object.Entity_Type); Query.Save_Field (Name => COL_6_1_NAME, -- permission Value => Object.Permission); Query.Execute (Result); if Result /= 1 then raise ADO.Objects.INSERT_ERROR; end if; ADO.Objects.Set_Created (Object); end Create; procedure Delete (Object : in out Acl_Impl; Session : in out ADO.Sessions.Master_Session'Class) is Stmt : ADO.Statements.Delete_Statement := Session.Create_Statement (ACL_DEF'Access); begin Stmt.Set_Filter (Filter => "id = ?"); Stmt.Add_Param (Value => Object.Get_Key); Stmt.Execute; end Delete; -- ------------------------------ -- Get the bean attribute identified by the name. -- ------------------------------ overriding function Get_Value (From : in Acl_Ref; Name : in String) return Util.Beans.Objects.Object is Obj : ADO.Objects.Object_Record_Access; Impl : access Acl_Impl; begin if From.Is_Null then return Util.Beans.Objects.Null_Object; end if; Obj := From.Get_Load_Object; Impl := Acl_Impl (Obj.all)'Access; if Name = "id" then return ADO.Objects.To_Object (Impl.Get_Key); elsif Name = "entity_id" then return Util.Beans.Objects.To_Object (Long_Long_Integer (Impl.Entity_Id)); elsif Name = "writeable" then return Util.Beans.Objects.To_Object (Impl.Writeable); elsif Name = "user_id" then return Util.Beans.Objects.To_Object (Long_Long_Integer (Impl.User_Id)); elsif Name = "workspace_id" then return Util.Beans.Objects.To_Object (Long_Long_Integer (Impl.Workspace_Id)); elsif Name = "entity_type" then return Util.Beans.Objects.To_Object (Long_Long_Integer (Impl.Entity_Type)); elsif Name = "permission" then return Util.Beans.Objects.To_Object (Long_Long_Integer (Impl.Permission)); end if; return Util.Beans.Objects.Null_Object; end Get_Value; -- ------------------------------ -- Load the object from current iterator position -- ------------------------------ procedure Load (Object : in out Acl_Impl; Stmt : in out ADO.Statements.Query_Statement'Class; Session : in out ADO.Sessions.Session'Class) is begin Object.Set_Key_Value (Stmt.Get_Identifier (0)); Object.Entity_Id := Stmt.Get_Identifier (1); Object.Writeable := Stmt.Get_Boolean (2); Object.User_Id := Stmt.Get_Identifier (3); Object.Workspace_Id := Stmt.Get_Identifier (4); Object.Entity_Type := ADO.Entity_Type (Stmt.Get_Integer (5)); Object.Permission := Stmt.Get_Identifier (6); ADO.Objects.Set_Created (Object); end Load; function Permission_Key (Id : in ADO.Identifier) return ADO.Objects.Object_Key is Result : ADO.Objects.Object_Key (Of_Type => ADO.Objects.KEY_INTEGER, Of_Class => PERMISSION_DEF'Access); begin ADO.Objects.Set_Value (Result, Id); return Result; end Permission_Key; function Permission_Key (Id : in String) return ADO.Objects.Object_Key is Result : ADO.Objects.Object_Key (Of_Type => ADO.Objects.KEY_INTEGER, Of_Class => PERMISSION_DEF'Access); begin ADO.Objects.Set_Value (Result, Id); return Result; end Permission_Key; function "=" (Left, Right : Permission_Ref'Class) return Boolean is begin return ADO.Objects.Object_Ref'Class (Left) = ADO.Objects.Object_Ref'Class (Right); end "="; procedure Set_Field (Object : in out Permission_Ref'Class; Impl : out Permission_Access) is Result : ADO.Objects.Object_Record_Access; begin Object.Prepare_Modify (Result); Impl := Permission_Impl (Result.all)'Access; end Set_Field; -- Internal method to allocate the Object_Record instance procedure Allocate (Object : in out Permission_Ref) is Impl : Permission_Access; begin Impl := new Permission_Impl; ADO.Objects.Set_Object (Object, Impl.all'Access); end Allocate; -- ---------------------------------------- -- Data object: Permission -- ---------------------------------------- procedure Set_Id (Object : in out Permission_Ref; Value : in ADO.Identifier) is Impl : Permission_Access; begin Set_Field (Object, Impl); ADO.Objects.Set_Field_Key_Value (Impl.all, 1, Value); end Set_Id; function Get_Id (Object : in Permission_Ref) return ADO.Identifier is Impl : constant Permission_Access := Permission_Impl (Object.Get_Object.all)'Access; begin return Impl.Get_Key_Value; end Get_Id; procedure Set_Name (Object : in out Permission_Ref; Value : in String) is Impl : Permission_Access; begin Set_Field (Object, Impl); ADO.Objects.Set_Field_String (Impl.all, 2, Impl.Name, Value); end Set_Name; procedure Set_Name (Object : in out Permission_Ref; Value : in Ada.Strings.Unbounded.Unbounded_String) is Impl : Permission_Access; begin Set_Field (Object, Impl); ADO.Objects.Set_Field_Unbounded_String (Impl.all, 2, Impl.Name, Value); end Set_Name; function Get_Name (Object : in Permission_Ref) return String is begin return Ada.Strings.Unbounded.To_String (Object.Get_Name); end Get_Name; function Get_Name (Object : in Permission_Ref) return Ada.Strings.Unbounded.Unbounded_String is Impl : constant Permission_Access := Permission_Impl (Object.Get_Load_Object.all)'Access; begin return Impl.Name; end Get_Name; -- Copy of the object. procedure Copy (Object : in Permission_Ref; Into : in out Permission_Ref) is Result : Permission_Ref; begin if not Object.Is_Null then declare Impl : constant Permission_Access := Permission_Impl (Object.Get_Load_Object.all)'Access; Copy : constant Permission_Access := new Permission_Impl; begin ADO.Objects.Set_Object (Result, Copy.all'Access); Copy.Copy (Impl.all); Copy.Name := Impl.Name; end; end if; Into := Result; end Copy; procedure Find (Object : in out Permission_Ref; Session : in out ADO.Sessions.Session'Class; Query : in ADO.SQL.Query'Class; Found : out Boolean) is Impl : constant Permission_Access := new Permission_Impl; begin Impl.Find (Session, Query, Found); if Found then ADO.Objects.Set_Object (Object, Impl.all'Access); else ADO.Objects.Set_Object (Object, null); Destroy (Impl); end if; end Find; procedure Load (Object : in out Permission_Ref; Session : in out ADO.Sessions.Session'Class; Id : in ADO.Identifier) is Impl : constant Permission_Access := new Permission_Impl; Found : Boolean; Query : ADO.SQL.Query; begin Query.Bind_Param (Position => 1, Value => Id); Query.Set_Filter ("id = ?"); Impl.Find (Session, Query, Found); if not Found then Destroy (Impl); raise ADO.Objects.NOT_FOUND; end if; ADO.Objects.Set_Object (Object, Impl.all'Access); end Load; procedure Load (Object : in out Permission_Ref; Session : in out ADO.Sessions.Session'Class; Id : in ADO.Identifier; Found : out Boolean) is Impl : constant Permission_Access := new Permission_Impl; Query : ADO.SQL.Query; begin Query.Bind_Param (Position => 1, Value => Id); Query.Set_Filter ("id = ?"); Impl.Find (Session, Query, Found); if not Found then Destroy (Impl); else ADO.Objects.Set_Object (Object, Impl.all'Access); end if; end Load; procedure Save (Object : in out Permission_Ref; Session : in out ADO.Sessions.Master_Session'Class) is Impl : ADO.Objects.Object_Record_Access := Object.Get_Object; begin if Impl = null then Impl := new Permission_Impl; ADO.Objects.Set_Object (Object, Impl); end if; if not ADO.Objects.Is_Created (Impl.all) then Impl.Create (Session); else Impl.Save (Session); end if; end Save; procedure Delete (Object : in out Permission_Ref; Session : in out ADO.Sessions.Master_Session'Class) is Impl : constant ADO.Objects.Object_Record_Access := Object.Get_Object; begin if Impl /= null then Impl.Delete (Session); end if; end Delete; -- -------------------- -- Free the object -- -------------------- procedure Destroy (Object : access Permission_Impl) is type Permission_Impl_Ptr is access all Permission_Impl; procedure Unchecked_Free is new Ada.Unchecked_Deallocation (Permission_Impl, Permission_Impl_Ptr); pragma Warnings (Off, "*redundant conversion*"); Ptr : Permission_Impl_Ptr := Permission_Impl (Object.all)'Access; pragma Warnings (On, "*redundant conversion*"); begin Unchecked_Free (Ptr); end Destroy; procedure Find (Object : in out Permission_Impl; Session : in out ADO.Sessions.Session'Class; Query : in ADO.SQL.Query'Class; Found : out Boolean) is Stmt : ADO.Statements.Query_Statement := Session.Create_Statement (Query, PERMISSION_DEF'Access); begin Stmt.Execute; if Stmt.Has_Elements then Object.Load (Stmt, Session); Stmt.Next; Found := not Stmt.Has_Elements; else Found := False; end if; end Find; overriding procedure Load (Object : in out Permission_Impl; Session : in out ADO.Sessions.Session'Class) is Found : Boolean; Query : ADO.SQL.Query; Id : constant ADO.Identifier := Object.Get_Key_Value; begin Query.Bind_Param (Position => 1, Value => Id); Query.Set_Filter ("id = ?"); Object.Find (Session, Query, Found); if not Found then raise ADO.Objects.NOT_FOUND; end if; end Load; procedure Save (Object : in out Permission_Impl; Session : in out ADO.Sessions.Master_Session'Class) is Stmt : ADO.Statements.Update_Statement := Session.Create_Statement (PERMISSION_DEF'Access); begin if Object.Is_Modified (1) then Stmt.Save_Field (Name => COL_0_2_NAME, -- id Value => Object.Get_Key); Object.Clear_Modified (1); end if; if Object.Is_Modified (2) then Stmt.Save_Field (Name => COL_1_2_NAME, -- name Value => Object.Name); Object.Clear_Modified (2); end if; if Stmt.Has_Save_Fields then Stmt.Set_Filter (Filter => "id = ?"); Stmt.Add_Param (Value => Object.Get_Key); declare Result : Integer; begin Stmt.Execute (Result); if Result /= 1 then if Result /= 0 then raise ADO.Objects.UPDATE_ERROR; end if; end if; end; end if; end Save; procedure Create (Object : in out Permission_Impl; Session : in out ADO.Sessions.Master_Session'Class) is Query : ADO.Statements.Insert_Statement := Session.Create_Statement (PERMISSION_DEF'Access); Result : Integer; begin Session.Allocate (Id => Object); Query.Save_Field (Name => COL_0_2_NAME, -- id Value => Object.Get_Key); Query.Save_Field (Name => COL_1_2_NAME, -- name Value => Object.Name); Query.Execute (Result); if Result /= 1 then raise ADO.Objects.INSERT_ERROR; end if; ADO.Objects.Set_Created (Object); end Create; procedure Delete (Object : in out Permission_Impl; Session : in out ADO.Sessions.Master_Session'Class) is Stmt : ADO.Statements.Delete_Statement := Session.Create_Statement (PERMISSION_DEF'Access); begin Stmt.Set_Filter (Filter => "id = ?"); Stmt.Add_Param (Value => Object.Get_Key); Stmt.Execute; end Delete; -- ------------------------------ -- Get the bean attribute identified by the name. -- ------------------------------ overriding function Get_Value (From : in Permission_Ref; Name : in String) return Util.Beans.Objects.Object is Obj : ADO.Objects.Object_Record_Access; Impl : access Permission_Impl; begin if From.Is_Null then return Util.Beans.Objects.Null_Object; end if; Obj := From.Get_Load_Object; Impl := Permission_Impl (Obj.all)'Access; if Name = "id" then return ADO.Objects.To_Object (Impl.Get_Key); elsif Name = "name" then return Util.Beans.Objects.To_Object (Impl.Name); end if; return Util.Beans.Objects.Null_Object; end Get_Value; -- ------------------------------ -- Load the object from current iterator position -- ------------------------------ procedure Load (Object : in out Permission_Impl; Stmt : in out ADO.Statements.Query_Statement'Class; Session : in out ADO.Sessions.Session'Class) is pragma Unreferenced (Session); begin Object.Set_Key_Value (Stmt.Get_Identifier (0)); Object.Name := Stmt.Get_Unbounded_String (1); ADO.Objects.Set_Created (Object); end Load; end AWA.Permissions.Models;
35.240099
88
0.589134
29f31762c06eb40218d954529ba22d5ab47897c5
5,725
adb
Ada
tools-src/gnu/gcc/gcc/ada/s-memory.adb
modern-tomato/tomato
96f09fab4929c6ddde5c9113f1b2476ad37133c4
[ "FSFAP" ]
80
2015-01-02T10:14:04.000Z
2021-06-07T06:29:49.000Z
tools-src/gnu/gcc/gcc/ada/s-memory.adb
modern-tomato/tomato
96f09fab4929c6ddde5c9113f1b2476ad37133c4
[ "FSFAP" ]
9
2015-05-14T11:03:12.000Z
2018-01-04T07:12:58.000Z
tools-src/gnu/gcc/gcc/ada/s-memory.adb
modern-tomato/tomato
96f09fab4929c6ddde5c9113f1b2476ad37133c4
[ "FSFAP" ]
69
2015-01-02T10:45:56.000Z
2021-09-06T07:52:13.000Z
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- S Y S T E M . M E M O R Y -- -- -- -- S p e c -- -- -- -- $Revision$ -- -- -- Copyright (C) 2001 Free Software Foundation, Inc. -- -- -- -- This specification is derived from the Ada Reference Manual for use with -- -- GNAT. The copyright notice above, and the license provisions that follow -- -- apply solely to the contents of the part following the private keyword. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 2, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT 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 distributed with GNAT; see file COPYING. If not, write -- -- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, -- -- MA 02111-1307, USA. -- -- -- -- As a special exception, if other files instantiate generics from this -- -- unit, or you link this unit with other files to produce an executable, -- -- this unit does not by itself cause the resulting executable to be -- -- covered by the GNU General Public License. This exception does not -- -- however invalidate any other reasons why the executable file might be -- -- covered by the GNU Public License. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- This is the default implementation of this package. -- This implementation assumes that the underlying malloc/free/realloc -- implementation is thread safe, and thus, no additional lock is required. -- Note that we still need to defer abortion because on most systems, -- an asynchronous signal (as used for implementing asynchronous abortion -- of task) cannot safely be handled while malloc is executing. -- If you are not using Ada constructs containing the "abort" keyword, -- then you can remove the calls to Abort_Defer.all and Abort_Undefer.all -- from this unit. with Ada.Exceptions; with System.Soft_Links; package body System.Memory is use Ada.Exceptions; use System.Soft_Links; function c_malloc (Size : size_t) return System.Address; pragma Import (C, c_malloc, "malloc"); procedure c_free (Ptr : System.Address); pragma Import (C, c_free, "free"); function c_realloc (Ptr : System.Address; Size : size_t) return System.Address; pragma Import (C, c_realloc, "realloc"); ----------- -- Alloc -- ----------- function Alloc (Size : size_t) return System.Address is Result : System.Address; Actual_Size : size_t := Size; begin if Size = size_t'Last then Raise_Exception (Storage_Error'Identity, "object too large"); end if; -- Change size from zero to non-zero. We still want a proper pointer -- for the zero case because pointers to zero length objects have to -- be distinct, but we can't just go ahead and allocate zero bytes, -- since some malloc's return zero for a zero argument. if Size = 0 then Actual_Size := 1; end if; Abort_Defer.all; Result := c_malloc (Actual_Size); Abort_Undefer.all; if Result = System.Null_Address then Raise_Exception (Storage_Error'Identity, "heap exhausted"); end if; return Result; end Alloc; ---------- -- Free -- ---------- procedure Free (Ptr : System.Address) is begin Abort_Defer.all; c_free (Ptr); Abort_Undefer.all; end Free; ------------- -- Realloc -- ------------- function Realloc (Ptr : System.Address; Size : size_t) return System.Address is Result : System.Address; Actual_Size : size_t := Size; begin if Size = size_t'Last then Raise_Exception (Storage_Error'Identity, "object too large"); end if; Abort_Defer.all; Result := c_realloc (Ptr, Actual_Size); Abort_Undefer.all; if Result = System.Null_Address then Raise_Exception (Storage_Error'Identity, "heap exhausted"); end if; return Result; end Realloc; end System.Memory;
40.034965
78
0.520873
2956643a9d9a2ad8888bdff8a7ccaaebd8f685d2
2,983
ads
Ada
tools/scitools/conf/understand/ada/ada12/s-pack35.ads
brucegua/moocos
575c161cfa35e220f10d042e2e5ca18773691695
[ "Apache-2.0" ]
1
2020-01-20T21:26:46.000Z
2020-01-20T21:26:46.000Z
tools/scitools/conf/understand/ada/ada12/s-pack35.ads
brucegua/moocos
575c161cfa35e220f10d042e2e5ca18773691695
[ "Apache-2.0" ]
null
null
null
tools/scitools/conf/understand/ada/ada12/s-pack35.ads
brucegua/moocos
575c161cfa35e220f10d042e2e5ca18773691695
[ "Apache-2.0" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- S Y S T E M . P A C K _ 3 5 -- -- -- -- S p e c -- -- -- -- Copyright (C) 1992-2009, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- -- -- -- -- -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- Handling of packed arrays with Component_Size = 35 package System.Pack_35 is pragma Preelaborate; Bits : constant := 35; type Bits_35 is mod 2 ** Bits; for Bits_35'Size use Bits; function Get_35 (Arr : System.Address; N : Natural) return Bits_35; -- Arr is the address of the packed array, N is the zero-based -- subscript. This element is extracted and returned. procedure Set_35 (Arr : System.Address; N : Natural; E : Bits_35); -- Arr is the address of the packed array, N is the zero-based -- subscript. This element is set to the given value. end System.Pack_35;
58.490196
78
0.376802
a1f52881a98f70dd521f400fe50e7816008dbdcb
7,107
adb
Ada
examples/normalize.adb
ytomino/drake
4e4bdcd8b8e23a11a29b31d3a8861fdf60090ea2
[ "MIT" ]
33
2015-04-04T09:19:36.000Z
2021-11-10T05:33:34.000Z
examples/normalize.adb
ytomino/drake
4e4bdcd8b8e23a11a29b31d3a8861fdf60090ea2
[ "MIT" ]
8
2017-11-14T13:05:07.000Z
2018-08-09T15:28:49.000Z
examples/normalize.adb
ytomino/drake
4e4bdcd8b8e23a11a29b31d3a8861fdf60090ea2
[ "MIT" ]
9
2015-02-03T17:09:53.000Z
2021-11-12T01:16:05.000Z
with Ada.Characters.Latin_1; with Ada.Strings.Composites; with Ada.Strings.Fixed; with Ada.Strings.Maps.Constants; with Ada.Strings.Normalization; procedure normalize is use type Ada.Strings.Composites.Class; subtype C is Character; subtype WWC is Wide_Wide_Character; subtype WWS is Wide_Wide_String; begin -- combining class pragma Assert (Ada.Strings.Composites.Combining_Class (WWC'First) = 0); pragma Assert (Ada.Strings.Composites.Combining_Class (WWC'Val (16#0308#)) = 230); pragma Assert (Ada.Strings.Composites.Combining_Class (WWC'Val (16#0323#)) = 220); pragma Assert (Ada.Strings.Composites.Combining_Class (WWC'Val (16#3099#)) = 8); pragma Assert (Ada.Strings.Composites.Combining_Class (WWC'Val (16#e0100#)) = 0); -- VARIATION SELECTOR pragma Assert (Ada.Strings.Composites.Combining_Class (WWC'Last) = 0); declare S : constant Wide_Wide_String := "a" & WWC'Val (16#0323#) & WWC'Val (16#0308#) & WWC'Val (16#304b#) & WWC'Val (16#3099#) -- ka & dakuten & "e" & WWC'Val (16#0323#) & WWC'Val (16#0304#) & WWC'Val (16#0301#); Last : Natural; Is_Illegal_Sequence : Boolean; begin Ada.Strings.Composites.Get_Combined (S, Last, Is_Illegal_Sequence); pragma Assert (Last = 3); pragma Assert (not Is_Illegal_Sequence); Ada.Strings.Composites.Get_Combined (S (Last + 1 .. S'Last), Last, Is_Illegal_Sequence); pragma Assert (Last = 5); pragma Assert (not Is_Illegal_Sequence); Ada.Strings.Composites.Get_Combined (S (Last + 1 .. S'Last), Last, Is_Illegal_Sequence); pragma Assert (Last = 9); pragma Assert (not Is_Illegal_Sequence); end; -- decomposing and composing pragma Assert (Ada.Strings.Normalization.Decompose (WWS'("")) = ""); pragma Assert (Ada.Strings.Normalization.Decompose (WWS'("A")) = "A"); pragma Assert (Ada.Strings.Normalization.Decompose ((1 => WWC'Val (16#304c#))) = WWC'Val (16#304b#) & WWC'Val (16#3099#)); pragma Assert (Ada.Strings.Normalization.Decompose ((1 => WWC'Val (16#0390#))) = WWC'Val (16#03B9#) & WWC'Val (16#0308#) & WWC'Val (16#0301#)); pragma Assert (Ada.Strings.Normalization.Decompose ((1 => WWC'Val (16#0958#))) = WWC'Val (16#0915#) & WWC'Val (16#093C#)); pragma Assert (Ada.Strings.Normalization.Decompose ((1 => WWC'Val (16#AC00#))) = WWC'Val (16#1100#) & WWC'Val (16#1161#)); -- Hangul LV pragma Assert (Ada.Strings.Normalization.Decompose ((1 => WWC'Val (16#AC01#))) = WWC'Val (16#1100#) & WWC'Val (16#1161#) & WWC'Val (16#11A8#)); -- Hangul LVT pragma Assert (Ada.Strings.Normalization.Compose (WWS'("")) = ""); pragma Assert (Ada.Strings.Normalization.Compose (WWS'("A")) = "A"); pragma Assert (Ada.Strings.Normalization.Compose (WWC'Val (16#304b#) & WWC'Val (16#3099#)) = (1 => WWC'Val (16#304c#))); pragma Assert (Ada.Strings.Normalization.Compose (WWC'Val (16#03B9#) & WWC'Val (16#0308#) & WWC'Val (16#0301#)) = (1 => WWC'Val (16#0390#))); pragma Assert (Ada.Strings.Normalization.Compose (WWC'Val (16#0915#) & WWC'Val (16#093C#)) = WWC'Val (16#0915#) & WWC'Val (16#093C#)); -- composition exclusion pragma Assert (Ada.Strings.Normalization.Compose (WWC'Val (16#1100#) & WWC'Val (16#1161#)) = (1 => WWC'Val (16#AC00#))); -- Hangul LV pragma Assert (Ada.Strings.Normalization.Compose (WWC'Val (16#1100#) & WWC'Val (16#1161#) & WWC'Val (16#11A8#)) = (1 => WWC'Val (16#AC01#))); -- Hangul LVT pragma Assert (Ada.Strings.Normalization.Decompose (C'Val (16#e3#) & C'Val (16#81#) & C'Val (16#8c#)) = (C'Val (16#e3#) & C'Val (16#81#) & C'Val (16#8b#) & C'Val (16#e3#) & C'Val (16#82#) & C'Val (16#99#))); -- UTF-8 -- equal pragma Assert (Ada.Strings.Normalization.Equal (WWS'(""), "")); pragma Assert (not Ada.Strings.Normalization.Equal (WWS'(""), "A")); pragma Assert (not Ada.Strings.Normalization.Equal (WWS'("A"), "")); pragma Assert (Ada.Strings.Normalization.Equal (WWS'("A"), "A")); pragma Assert (not Ada.Strings.Normalization.Equal (WWS'("A"), "AA")); pragma Assert (not Ada.Strings.Normalization.Equal (WWS'("AA"), "A")); pragma Assert (not Ada.Strings.Normalization.Equal (WWS'("AA"), "AB")); pragma Assert (not Ada.Strings.Normalization.Equal (WWS'("AB"), "AA")); pragma Assert (not Ada.Strings.Normalization.Equal ((1 => WWC'Val (16#00C0#)), 'A' & WWC'Val (16#0301#))); pragma Assert (Ada.Strings.Normalization.Equal ((1 => WWC'Val (16#00C1#)), 'A' & WWC'Val (16#0301#))); pragma Assert (Ada.Strings.Normalization.Equal ((1 => WWC'Val (16#304c#)), WWC'Val (16#304b#) & WWC'Val (16#3099#))); pragma Assert (Ada.Strings.Normalization.Equal (WWC'Val (16#304b#) & WWC'Val (16#3099#), (1 => WWC'Val (16#304c#)))); -- less pragma Assert (not Ada.Strings.Normalization.Less (WWS'(""), "")); pragma Assert (Ada.Strings.Normalization.Less (WWS'(""), "A")); pragma Assert (not Ada.Strings.Normalization.Less (WWS'("A"), "")); pragma Assert (not Ada.Strings.Normalization.Less (WWS'("A"), "A")); pragma Assert (Ada.Strings.Normalization.Less (WWS'("A"), "AA")); pragma Assert (not Ada.Strings.Normalization.Less (WWS'("AA"), "A")); pragma Assert (Ada.Strings.Normalization.Less (WWS'("AA"), "AB")); pragma Assert (not Ada.Strings.Normalization.Less (WWS'("AB"), "AA")); pragma Assert (Ada.Strings.Normalization.Less ((1 => WWC'Val (16#00C0#)), 'A' & WWC'Val (16#0301#))); pragma Assert (not Ada.Strings.Normalization.Less ((1 => WWC'Val (16#00C1#)), 'A' & WWC'Val (16#0301#))); pragma Assert (not Ada.Strings.Normalization.Less ((1 => WWC'Val (16#304c#)), WWC'Val (16#304b#) & WWC'Val (16#3099#))); pragma Assert (not Ada.Strings.Normalization.Less (WWC'Val (16#304b#) & WWC'Val (16#3099#), (1 => WWC'Val (16#304c#)))); -- To_Base declare package Latin_1 renames Ada.Characters.Latin_1; package F renames Ada.Strings.Fixed; package M renames Ada.Strings.Maps; begin pragma Assert (M.Value (M.Constants.Basic_Map, '6') = '6'); -- 16#36# pragma Assert (M.Value (M.Constants.Basic_Map, 'Y') = 'Y'); -- 16#59# pragma Assert (M.Value (M.Constants.Basic_Map, Latin_1.LC_R) = 'r'); -- 16#72# pragma Assert (F.Translate (Latin_1.UC_O_Acute, M.Constants.Basic_Map) = "O"); -- 16#D4# pragma Assert (F.Translate (Latin_1.UC_O_Tilde, M.Constants.Basic_Map) = "O"); -- 16#D6# pragma Assert (F.Translate (Latin_1.UC_U_Grave, M.Constants.Basic_Map) = "U"); -- 16#D9# pragma Assert (F.Translate (Latin_1.UC_U_Acute, M.Constants.Basic_Map) = "U"); -- 16#DA# pragma Assert (F.Translate (Latin_1.LC_A_Circumflex, M.Constants.Basic_Map) = "a"); -- 16#E2# pragma Assert (F.Translate (Latin_1.LC_A_Tilde, M.Constants.Basic_Map) = "a"); -- 16#E3# pragma Assert (F.Translate (Latin_1.LC_E_Grave, M.Constants.Basic_Map) = "e"); -- 16#E8# pragma Assert (F.Translate (Latin_1.LC_E_Acute, M.Constants.Basic_Map) = "e"); -- 16#E9# pragma Assert (F.Translate (Latin_1.LC_I_Circumflex, M.Constants.Basic_Map) = "i"); -- 16#EE# pragma Assert (F.Translate (Latin_1.LC_I_Diaeresis, M.Constants.Basic_Map) = "i"); -- 16#EF# pragma Assert (F.Translate (Latin_1.LC_Y_Acute, M.Constants.Basic_Map) = "y"); -- 16#FD# pragma Assert (F.Translate (Latin_1.LC_Y_Diaeresis, M.Constants.Basic_Map) = "y"); -- 16#FF# end; pragma Debug (Ada.Debug.Put ("OK")); end normalize;
69
217
0.676657
5996747cd735f0eb08459278b02b21c0074bc64e
976
adb
Ada
contrib/gnu/gdb/dist/gdb/testsuite/gdb.ada/mi_catch_ex_hand/foo.adb
TheSledgeHammer/2.11BSD
fe61f0b9aaa273783cd027c7b5ec77e95ead2153
[ "BSD-3-Clause" ]
3
2021-05-04T17:09:06.000Z
2021-10-04T07:19:26.000Z
contrib/gnu/gdb/dist/gdb/testsuite/gdb.ada/mi_catch_ex_hand/foo.adb
TheSledgeHammer/2.11BSD
fe61f0b9aaa273783cd027c7b5ec77e95ead2153
[ "BSD-3-Clause" ]
null
null
null
contrib/gnu/gdb/dist/gdb/testsuite/gdb.ada/mi_catch_ex_hand/foo.adb
TheSledgeHammer/2.11BSD
fe61f0b9aaa273783cd027c7b5ec77e95ead2153
[ "BSD-3-Clause" ]
null
null
null
-- Copyright 2007-2020 Free Software Foundation, Inc. -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- 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/>. procedure Foo is begin begin raise Constraint_Error; exception when Constraint_Error => -- BREAK1 null; end; begin raise Program_Error; exception when Program_Error => -- BREAK2 null; end; end Foo;
28.705882
73
0.699795
31bc605cadf4bd911dd49b4c62da4e04a1a85782
6,662
ads
Ada
src/lv-hal-disp.ads
Fabien-Chouteau/ada-lvlg
ccf8da85aeafa38f4ae669b61298237424dc7e55
[ "MIT" ]
3
2019-12-19T20:53:11.000Z
2020-12-19T23:01:38.000Z
src/lv-hal-disp.ads
Fabien-Chouteau/ada-lvlg
ccf8da85aeafa38f4ae669b61298237424dc7e55
[ "MIT" ]
2
2019-12-19T20:52:56.000Z
2020-01-25T21:22:53.000Z
src/lv-hal-disp.ads
Fabien-Chouteau/ada-lvgl
ccf8da85aeafa38f4ae669b61298237424dc7e55
[ "MIT" ]
null
null
null
with Lv.Color; with Lv.Area; private with System; package Lv.Hal.Disp is type Color_Array is array (0 .. Natural'Last) of aliased Lv.Color.Color_T with Convention => C; type Disp_Drv_T is record -- Write the internal buffer (VDB) to the display. 'lv_flush_ready()' has -- to be called when finished. Disp_Flush : access procedure (X1 : Int32_T; Y1 : Int32_T; X2 : Int32_T; Y2 : Int32_T; Color : access constant Color_Array); -- Fill an area with a color on the display Disp_Fill : access procedure (X1 : Int32_T; Y1 : Int32_T; X2 : Int32_T; Y2 : Int32_T; Color : Lv.Color.Color_T); -- Write pixel map (e.g. image) to the display Disp_Map : access procedure (X1 : Int32_T; Y1 : Int32_T; X2 : Int32_T; Y2 : Int32_T; Color : access constant Color_Array); -- Optional interface functions to use GPU Mem_Blend : access procedure (Dest : access Color_Array; Src : access constant Color_Array; Length : Uint32_T; Opa : Lv.Color.Opa_T); -- Fill a memory with a color (GPU only) Mem_Fill : access procedure (Dest : access Color_Array; Length : Uint32_T; Color : Lv.Color.Color_T); -- Optional: Set a pixel in a buffer according to the requirements of the -- display. Vdb_Wr : access procedure (Arg1 : access Uint8_T; Arg2 : Lv.Area.Coord_T; Arg3 : Lv.Area.Coord_T; Arg4 : Lv.Area.Coord_T; Arg5 : Lv.Color.Color_T; Arg6 : Lv.Color.Opa_T); end record; pragma Convention (C_Pass_By_Copy, Disp_Drv_T); type Disp_T is private; -- Initialize a display driver with default values. -- It is used to surly have known values in the fields ant not memory junk. -- After it you can set the fields. -- @param driver pointer to driver variable to initialize procedure Init_Drv (Driver : access Disp_Drv_T); -- Register an initialized display driver. -- Automatically set the first display as active. -- @param driver pointer to an initialized 'lv_disp_drv_t' variable (can be local variable) -- @return pointer to the new display or NULL on error function Register (Driver : access Disp_Drv_T) return Disp_T; -- Set the active display -- @param disp pointer to a display (return value of 'lv_disp_register') procedure Set_Active (Disp : Disp_T); -- Get a pointer to the active display -- @return pointer to the active display function Get_Active return Disp_T; -- Get the next display. -- @param disp pointer to the current display. NULL to initialize. -- @return the next display or NULL if no more. Give the first display when the parameter is NULL function Next (Disp : Disp_T) return Disp_T; -- Fill a rectangular area with a color on the active display -- @param x1 left coordinate of the rectangle -- @param x2 right coordinate of the rectangle -- @param y1 top coordinate of the rectangle -- @param y2 bottom coordinate of the rectangle -- @param color_p pointer to an array of colors procedure Flush (X1 : Int32_T; X2 : Int32_T; Y1 : Int32_T; Y2 : Int32_T; Color : access Color_Array); -- Fill a rectangular area with a color on the active display -- @param x1 left coordinate of the rectangle -- @param x2 right coordinate of the rectangle -- @param y1 top coordinate of the rectangle -- @param y2 bottom coordinate of the rectangle -- @param color fill color procedure Fill (X1 : Int32_T; X2 : Int32_T; Y1 : Int32_T; Y2 : Int32_T; Color : Lv.Color.Color_T); -- Put a color map to a rectangular area on the active display -- @param x1 left coordinate of the rectangle -- @param x2 right coordinate of the rectangle -- @param y1 top coordinate of the rectangle -- @param y2 bottom coordinate of the rectangle -- @param color_map pointer to an array of colors procedure Map (X1 : Int32_T; X2 : Int32_T; Y1 : Int32_T; Y2 : Int32_T; Color_Map : access constant Color_Array); -- Blend pixels to a destination memory from a source memory -- In 'lv_disp_drv_t' 'mem_blend' is optional. (NULL if not available) -- @param dest a memory address. Blend 'src' here. -- @param src pointer to pixel map. Blend it to 'dest'. -- @param length number of pixels in 'src' -- @param opa opacity (0, LV_OPA_TRANSP: transparent ... 255, LV_OPA_COVER, fully cover) procedure Mem_Blend (Dest : access Color_Array; Src : access constant Color_Array; Length : Uint32_T; Opa : Lv.Color.Opa_T); -- Fill a memory with a color (GPUs may support it) -- In 'lv_disp_drv_t' 'mem_fill' is optional. (NULL if not available) -- @param dest a memory address. Copy 'src' here. -- @param src pointer to pixel map. Copy it to 'dest'. -- @param length number of pixels in 'src' -- @param opa opacity (0, LV_OPA_TRANSP: transparent ... 255, LV_OPA_COVER, fully cover) procedure Mem_Fill (Src : access Color_Array; Length : Uint32_T; Opa : Lv.Color.Color_T); -- Shows if memory blending (by GPU) is supported or not -- @return false: 'mem_blend' is not supported in the driver; true: 'mem_blend' is supported in the driver function Is_Mem_Blend_Supported return U_Bool; -- Shows if memory fill (by GPU) is supported or not -- @return false: 'mem_fill' is not supported in the drover; true: 'mem_fill' is supported in the driver function Is_Mem_Fill_Supported return U_Bool; private type Disp_T is new System.Address; ------------- -- Imports -- ------------- pragma Import (C, Init_Drv, "lv_disp_drv_init"); pragma Import (C, Register, "lv_disp_drv_register"); pragma Import (C, Set_Active, "lv_disp_set_active"); pragma Import (C, Get_Active, "lv_disp_get_active"); pragma Import (C, Next, "lv_disp_next"); pragma Import (C, Flush, "lv_disp_flush"); pragma Import (C, Fill, "lv_disp_fill"); pragma Import (C, Map, "lv_disp_map"); pragma Import (C, Mem_Blend, "lv_disp_mem_blend"); pragma Import (C, Mem_Fill, "lv_disp_mem_fill"); pragma Import (C, Is_Mem_Blend_Supported, "lv_disp_is_mem_blend_supported"); pragma Import (C, Is_Mem_Fill_Supported, "lv_disp_is_mem_fill_supported"); end Lv.Hal.Disp;
36.206522
110
0.6432
06112d2449919a46b7dfa95f38f2a8097bc6584c
469
ads
Ada
source/environment/machine-w64-mingw32/s-progra.ads
ytomino/drake
4e4bdcd8b8e23a11a29b31d3a8861fdf60090ea2
[ "MIT" ]
33
2015-04-04T09:19:36.000Z
2021-11-10T05:33:34.000Z
source/environment/machine-w64-mingw32/s-progra.ads
ytomino/drake
4e4bdcd8b8e23a11a29b31d3a8861fdf60090ea2
[ "MIT" ]
8
2017-11-14T13:05:07.000Z
2018-08-09T15:28:49.000Z
source/environment/machine-w64-mingw32/s-progra.ads
ytomino/drake
4e4bdcd8b8e23a11a29b31d3a8861fdf60090ea2
[ "MIT" ]
9
2015-02-03T17:09:53.000Z
2021-11-12T01:16:05.000Z
pragma License (Unrestricted); -- extended unit specialized for Windows private with System.Storage_Map; package System.Program is -- Probing information of the program itself. pragma Preelaborate; -- the executable file function Full_Name return String; function Load_Address return Address; pragma Inline (Load_Address); -- renamed private function Load_Address return Address renames Storage_Map.Load_Address; end System.Program;
22.333333
49
0.763326
31dee668a184c53092369f8674f51b607fa9d289
15,143
adb
Ada
software/hal/boards/stm32f469_discovery/framebuffer_otm8009a.adb
TUM-EI-RCS/StratoX
5fdd04e01a25efef6052376f43ce85b5bc973392
[ "BSD-3-Clause" ]
12
2017-06-08T14:19:57.000Z
2022-03-09T02:48:59.000Z
software/hal/boards/stm32f469_discovery/framebuffer_otm8009a.adb
TUM-EI-RCS/StratoX
5fdd04e01a25efef6052376f43ce85b5bc973392
[ "BSD-3-Clause" ]
6
2017-06-08T13:13:50.000Z
2020-05-15T09:32:43.000Z
software/hal/boards/stm32f469_discovery/framebuffer_otm8009a.adb
TUM-EI-RCS/StratoX
5fdd04e01a25efef6052376f43ce85b5bc973392
[ "BSD-3-Clause" ]
3
2017-06-30T14:05:06.000Z
2022-02-17T12:20:45.000Z
with Ada.Real_Time; use Ada.Real_Time; with Ada.Unchecked_Conversion; with Ada.Interrupts.Names; with STM32.Device; use STM32.Device; with STM32.DMA2D.Interrupt; with STM32.DMA2D.Polling; with STM32.GPIO; use STM32.GPIO; with STM32.DSI; use STM32.DSI; with STM32.SDRAM; use STM32.SDRAM; with STM32_SVD.DSIHOST; use STM32_SVD.DSIHOST; with STM32_SVD.RCC; use STM32_SVD.RCC; with STM32_SVD.LTDC; use STM32_SVD.LTDC; package body Framebuffer_OTM8009A is LCD_XRES : GPIO_Point renames PH7; PLLSAIN : constant := 417; PLLSAIR : constant := 5; PLLSAI_DIVR : constant := 2; protected Sync is entry Wait; procedure Do_Refresh; private procedure End_Of_Refresh_Callback; procedure Tearing_Effect_Callback; procedure Interrupt with Attach_Handler => Ada.Interrupts.Names.DSI_Interrupt, Unreferenced; Refreshed : Boolean := True; end Sync; procedure LCD_Reset; procedure Initialize_Device (Display : in out Frame_Buffer); ---------- -- Sync -- ---------- protected body Sync is ---------- -- Wait -- ---------- entry Wait when Refreshed is begin null; end Wait; ---------------- -- Do_Refresh -- ---------------- procedure Do_Refresh is begin Refreshed := False; -- Enable the end of refresh interrupt DSIHOST.DSI_Refresh; end Do_Refresh; ----------------------------- -- End_Of_Refresh_Callback -- ----------------------------- procedure End_Of_Refresh_Callback is begin Refreshed := True; end End_Of_Refresh_Callback; ----------------------------- -- Tearing_Effect_Callback -- ----------------------------- procedure Tearing_Effect_Callback is begin null; end Tearing_Effect_Callback; --------------- -- Interrupt -- --------------- procedure Interrupt is begin if DSIHOST_Periph.DSI_WISR.ERIF then DSIHOST_Periph.DSI_WIFCR.CERIF := True; End_Of_Refresh_Callback; end if; if DSIHOST_Periph.DSI_WISR.TEIF then DSIHOST_Periph.DSI_WIFCR.CTEIF := True; Tearing_Effect_Callback; end if; end Interrupt; end Sync; --------------- -- LCD_Reset -- --------------- procedure LCD_Reset is begin Enable_Clock (LCD_XRES); Configure_IO (LCD_XRES, (Mode => Mode_Out, Output_Type => Open_Drain, Speed => Speed_50MHz, Resistors => Floating)); -- Activate XRES active low Clear (LCD_XRES); delay until Clock + Microseconds (20); Set (LCD_XRES); delay until Clock + Microseconds (10); end LCD_Reset; -------------------- -- Get_Max_Layers -- -------------------- overriding function Get_Max_Layers (Display : Frame_Buffer) return Positive is pragma Unreferenced (Display); begin return 2; end Get_Max_Layers; ------------------ -- Is_Supported -- ------------------ overriding function Is_Supported (Display : Frame_Buffer; Mode : HAL.Framebuffer.FB_Color_Mode) return Boolean is pragma Unreferenced (Display, Mode); begin -- The LTDC supports all HAL color modes return True; end Is_Supported; --------------- -- Get_Width -- --------------- overriding function Get_Width (Display : Frame_Buffer) return Positive is begin if not Display.Swapped then return LCD_Natural_Width; else return LCD_Natural_Height; end if; end Get_Width; ---------------- -- Get_Height -- ---------------- overriding function Get_Height (Display : Frame_Buffer) return Positive is begin if not Display.Swapped then return LCD_Natural_Height; else return LCD_Natural_Width; end if; end Get_Height; ---------------- -- Is_Swapped -- ---------------- overriding function Is_Swapped (Display : Frame_Buffer) return Boolean is pragma Unreferenced (Display); begin -- The display supports natively the swap of the X/Y coordinates. -- So to the outside world (e.g. bitmap operations), the buffer always -- has to be treated as 'native orientation' return False; end Is_Swapped; -------------------- -- Set_Background -- -------------------- overriding procedure Set_Background (Display : Frame_Buffer; R, G, B : Byte) is pragma Unreferenced (Display); begin DSIHOST.DSI_Wrapper_Disable; STM32.LTDC.Set_Background (R, G, B); DSIHOST.DSI_Wrapper_Enable; end Set_Background; ----------------------- -- Initialize_Device -- ----------------------- procedure Initialize_Device (Display : in out Frame_Buffer) is begin DSIHOST.DSI_Deinit; -- HSE input: 25MHz / IN_Div * N_Div => 1000 MHz = VCO -- VCO / ODF => 500 MHz DSIHOST.DSI_Initialize (Auto_Clock_Lane_Control => True, TX_Escape_Clock_Division => 4, -- 62500 / 4 = 15625 kHz < 20kHz (max) Number_Of_Lanes => Two_Data_Lanes, PLL_N_Div => 125, PLL_IN_Div => PLL_IN_DIV2, PLL_OUT_Div => PLL_OUT_DIV1); DSIHOST.DSI_Setup_Adapted_Command_Mode (Virtual_Channel => LCD_Channel, Color_Coding => STM32.DSI.RGB888, Command_Size => Short (Display.Get_Width), Tearing_Effect_Source => STM32.DSI.TE_DSI_Link, Tearing_Effect_Polarity => STM32.DSI.Rising_Edge, HSync_Polarity => STM32.DSI.Active_High, VSync_Polarity => STM32.DSI.Active_High, DataEn_Polarity => STM32.DSI.Active_High, VSync_Edge => STM32.DSI.Falling_Edge, Automatic_Refresh => False, TE_Acknowledge_Request => True); DSIHOST.DSI_Setup_Command (LP_Gen_Short_Write_No_P => True, LP_Gen_Short_Write_One_P => True, LP_Gen_Short_Write_Two_P => True, LP_Gen_Short_Read_No_P => True, LP_Gen_Short_Read_One_P => True, LP_Gen_Short_Read_Two_P => True, LP_Gen_Long_Write => True, LP_DCS_Short_Write_No_P => True, LP_DCS_Short_Write_One_P => True, LP_DCS_Short_Read_No_P => True, LP_DCS_Long_Write => True, LP_Max_Read_Packet => True, Acknowledge_Request => False); STM32.LTDC.Initialize (Width => Display.Get_Width, Height => Display.Get_Height, H_Sync => 2, H_Back_Porch => 1, H_Front_Porch => 1, V_Sync => 2, V_Back_Porch => 1, V_Front_Porch => 1, PLLSAI_N => PLLSAIN, PLLSAI_R => PLLSAIR, DivR => PLLSAI_DIVR); -- Enable the DSI Host and Wrapper DSIHOST.DSI_Start; -- LCD panel init Display.Device.Initialize (OTM8009A.RGB888, (if Display.Swapped then OTM8009A.Portrait else OTM8009A.Landscape)); DSIHOST.DSI_Setup_Command (LP_Gen_Short_Write_No_P => False, LP_Gen_Short_Write_One_P => False, LP_Gen_Short_Write_Two_P => False, LP_Gen_Short_Read_No_P => False, LP_Gen_Short_Read_One_P => False, LP_Gen_Short_Read_Two_P => False, LP_Gen_Long_Write => False, LP_DCS_Short_Write_No_P => False, LP_DCS_Short_Write_One_P => False, LP_DCS_Short_Read_No_P => False, LP_DCS_Long_Write => False, LP_Max_Read_Packet => False, Acknowledge_Request => False); DSIHOST.DSI_Setup_Flow_Control (Flow_Control_BTA); DSIHOST.DSI_Refresh; end Initialize_Device; ---------------- -- Initialize -- ---------------- procedure Initialize (Display : in out Frame_Buffer; Orientation : HAL.Framebuffer.Display_Orientation := Default; Mode : HAL.Framebuffer.Wait_Mode := Interrupt) is begin LCD_Reset; -- Init clocks on DSI, LTDC and DMA2D RCC_Periph.APB2ENR.LTDCEN := True; RCC_Periph.APB2RSTR.LTDCRST := True; RCC_Periph.APB2RSTR.LTDCRST := False; RCC_Periph.AHB1ENR.DMA2DEN := True; RCC_Periph.AHB1RSTR.DMA2DRST := True; RCC_Periph.AHB1RSTR.DMA2DRST := False; RCC_Periph.APB2ENR.DSIEN := True; RCC_Periph.APB2RSTR.DSIRST := True; RCC_Periph.APB2RSTR.DSIRST := False; -- Make sure the SDRAM is enabled STM32.SDRAM.Initialize; if Orientation = Portrait then Display.Swapped := True; end if; Display.Initialize_Device; case Mode is when Polling => STM32.DMA2D.Polling.Initialize; when Interrupt => STM32.DMA2D.Interrupt.Initialize; end case; end Initialize; ----------------- -- Initialized -- ----------------- overriding function Initialized (Display : Frame_Buffer) return Boolean is pragma Unreferenced (Display); begin return STM32.LTDC.Initialized; end Initialized; --------------------- -- Set_Orientation -- --------------------- overriding procedure Set_Orientation (Display : in out Frame_Buffer; Orientation : HAL.Framebuffer.Display_Orientation) is Old : constant Boolean := Display.Swapped; begin Display.Swapped := Orientation = Portrait; if Old = Display.Swapped then return; end if; Initialize_Device (Display); end Set_Orientation; -------------- -- Set_Mode -- -------------- overriding procedure Set_Mode (Display : in out Frame_Buffer; Mode : HAL.Framebuffer.Wait_Mode) is pragma Unreferenced (Display); begin case Mode is when Polling => STM32.DMA2D.Polling.Initialize; when Interrupt => STM32.DMA2D.Interrupt.Initialize; end case; end Set_Mode; ---------------------- -- Initialize_Layer -- ---------------------- overriding procedure Initialize_Layer (Display : in out Frame_Buffer; Layer : Positive; Mode : HAL.Framebuffer.FB_Color_Mode; X : Natural := 0; Y : Natural := 0; Width : Positive := Positive'Last; Height : Positive := Positive'Last) is function To_LTDC_Mode is new Ada.Unchecked_Conversion (HAL.Framebuffer.FB_Color_Mode, STM32.LTDC.Pixel_Format); LCD_Layer : constant STM32.LTDC.LCD_Layer := (if Layer = 1 then STM32.LTDC.Layer1 else STM32.LTDC.Layer2); W : Natural := Width; H : Natural := Height; begin if X >= Display.Get_Width then raise Constraint_Error with "Layer X position outside of screen"; elsif Y >= Display.Get_Height then raise Constraint_Error with "Layer Y position outside of screen"; end if; if W = Positive'Last or else X + W > Display.Get_Width then W := Display.Get_Width - X; end if; if H = Positive'Last or else Y + H > Display.Get_Height then H := Display.Get_Height - Y; end if; Display.Buffers (LCD_Layer) := (Addr => Reserve (Word (HAL.Bitmap.Bits_Per_Pixel (Mode) * W * H / 8)), Width => W, Height => H, Color_Mode => Mode, Swapped => False); Display.Buffers (LCD_Layer).Fill (0); DSIHOST.DSI_Wrapper_Disable; STM32.LTDC.Layer_Init (Layer => LCD_Layer, Config => To_LTDC_Mode (Mode), Buffer => Display.Buffers (LCD_Layer).Addr, X => X, Y => Y, W => W, H => H, Constant_Alpha => 255, BF => STM32.LTDC.BF_Pixel_Alpha_X_Constant_Alpha); STM32.LTDC.Reload_Config (True); DSIHOST.DSI_Wrapper_Enable; Display.Update_Layers; end Initialize_Layer; ----------------- -- Initialized -- ----------------- overriding function Initialized (Display : Frame_Buffer; Layer : Positive) return Boolean is LCD_Layer : constant STM32.LTDC.LCD_Layer := (if Layer = 1 then STM32.LTDC.Layer1 else STM32.LTDC.Layer2); use type STM32.DMA2D_Bitmap.DMA2D_Bitmap_Buffer; begin return Display.Buffers (LCD_Layer) /= STM32.DMA2D_Bitmap.Null_Buffer; end Initialized; ------------------ -- Update_Layer -- ------------------ overriding procedure Update_Layer (Display : in out Frame_Buffer; Layer : Positive; Copy_Back : Boolean := False) is pragma Unreferenced (Layer, Copy_Back); begin Display.Update_Layers; end Update_Layer; ------------------- -- Update_Layers -- ------------------- overriding procedure Update_Layers (Display : in out Frame_Buffer) is pragma Unreferenced (Display); begin STM32.DMA2D.DMA2D_Wait_Transfer; Sync.Do_Refresh; Sync.Wait; end Update_Layers; -------------------- -- Get_Color_Mode -- -------------------- overriding function Get_Color_Mode (Display : Frame_Buffer; Layer : Positive) return HAL.Framebuffer.FB_Color_Mode is LCD_Layer : constant STM32.LTDC.LCD_Layer := (if Layer = 1 then STM32.LTDC.Layer1 else STM32.LTDC.Layer2); begin return Display.Buffers (LCD_Layer).Color_Mode; end Get_Color_Mode; ----------------------- -- Get_Hidden_Buffer -- ----------------------- overriding function Get_Hidden_Buffer (Display : Frame_Buffer; Layer : Positive) return HAL.Bitmap.Bitmap_Buffer'Class is LCD_Layer : constant STM32.LTDC.LCD_Layer := (if Layer = 1 then STM32.LTDC.Layer1 else STM32.LTDC.Layer2); begin return Display.Buffers (LCD_Layer); end Get_Hidden_Buffer; -------------------- -- Get_Pixel_Size -- -------------------- overriding function Get_Pixel_Size (Display : Frame_Buffer; Layer : Positive) return Positive is LCD_Layer : constant STM32.LTDC.LCD_Layer := (if Layer = 1 then STM32.LTDC.Layer1 else STM32.LTDC.Layer2); begin return HAL.Bitmap.Bits_Per_Pixel (Display.Buffers (LCD_Layer).Color_Mode) / 8; end Get_Pixel_Size; end Framebuffer_OTM8009A;
27.235612
78
0.553655
2f94b27cc4125c35c5b83030a89ca1a178e4b65f
4,137
ads
Ada
tools-src/gnu/gcc/gcc/ada/a-timoau.ads
modern-tomato/tomato
96f09fab4929c6ddde5c9113f1b2476ad37133c4
[ "FSFAP" ]
80
2015-01-02T10:14:04.000Z
2021-06-07T06:29:49.000Z
tools-src/gnu/gcc/gcc/ada/a-timoau.ads
modern-tomato/tomato
96f09fab4929c6ddde5c9113f1b2476ad37133c4
[ "FSFAP" ]
9
2015-05-14T11:03:12.000Z
2018-01-04T07:12:58.000Z
tools-src/gnu/gcc/gcc/ada/a-timoau.ads
modern-tomato/tomato
96f09fab4929c6ddde5c9113f1b2476ad37133c4
[ "FSFAP" ]
69
2015-01-02T10:45:56.000Z
2021-09-06T07:52:13.000Z
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- A D A . T E X T _ I O . M O D U L A R _ A U X -- -- -- -- S p e c -- -- -- -- $Revision$ -- -- -- Copyright (C) 1992-2001 Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 2, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT 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 distributed with GNAT; see file COPYING. If not, write -- -- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, -- -- MA 02111-1307, USA. -- -- -- -- As a special exception, if other files instantiate generics from this -- -- unit, or you link this unit with other files to produce an executable, -- -- this unit does not by itself cause the resulting executable to be -- -- covered by the GNU General Public License. This exception does not -- -- however invalidate any other reasons why the executable file might be -- -- covered by the GNU Public License. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- This package contains the routines for Ada.Text_IO.Modular_IO that are -- shared among separate instantiations of this package. The routines in -- this package are identical semantically to those in Modular_IO itself, -- except that the generic parameter Num has been replaced by Unsigned or -- Long_Long_Unsigned, and the default parameters have been removed because -- they are supplied explicitly by the calls from within the generic template. with System.Unsigned_Types; private package Ada.Text_IO.Modular_Aux is package U renames System.Unsigned_Types; procedure Get_Uns (File : File_Type; Item : out U.Unsigned; Width : Field); procedure Get_LLU (File : File_Type; Item : out U.Long_Long_Unsigned; Width : Field); procedure Put_Uns (File : File_Type; Item : U.Unsigned; Width : Field; Base : Number_Base); procedure Put_LLU (File : File_Type; Item : U.Long_Long_Unsigned; Width : Field; Base : Number_Base); procedure Gets_Uns (From : String; Item : out U.Unsigned; Last : out Positive); procedure Gets_LLU (From : String; Item : out U.Long_Long_Unsigned; Last : out Positive); procedure Puts_Uns (To : out String; Item : U.Unsigned; Base : Number_Base); procedure Puts_LLU (To : out String; Item : U.Long_Long_Unsigned; Base : Number_Base); end Ada.Text_IO.Modular_Aux;
44.967391
79
0.492628
29deb10e350faaa1e27c7ba4ccf6b797b85bd341
2,534
adb
Ada
src/fmt-generic_float_argument.adb
likai3g/afmt
fa7439a69bfde35e746c92ab57307d6a509dabc7
[ "MIT" ]
null
null
null
src/fmt-generic_float_argument.adb
likai3g/afmt
fa7439a69bfde35e746c92ab57307d6a509dabc7
[ "MIT" ]
null
null
null
src/fmt-generic_float_argument.adb
likai3g/afmt
fa7439a69bfde35e746c92ab57307d6a509dabc7
[ "MIT" ]
null
null
null
with Ada.Text_IO; package body Fmt.Generic_Float_Argument is package FIO is new Ada.Text_IO.Float_IO(Float_Type); -- IEEE754 浮点格式 -- 浮点由三部分构成(符号位, 指数, 小数部分) -- 指数的二进制位数称为k -- 小数的二进制位数称为M -- -- -- 单精度(32位) -- bit 31 : 符号位 (Sign) -- bit 30 - bit 23 : 指数部分(Exponent), 长度为8, 记为k -- bit 22 - bit 0 : 尾数部分(Mantissa), 长度为23, 记为M -- 指数部分不含符号位(1..254)表示-126 .. 127), 0和255有特殊含义 -- 因此对实际的指数值,需要统一加上一个偏置值(bias)进行表示 -- 单精度中这个偏置值为127 (2 << (k-2) - 1) -- 当指数部分非特殊值时, 基数的整数部分隐含为1 -- -- 特殊浮点数 -- -- NaN : 指数部分全为1且尾数部分非0 -- 无穷大: 当指数部分全为1且尾数部分全0 -- 非格化值: 当指数部分全为0时, 只含整数部分 -- -- 双精度浮点数(64位) -- k=11,M=52 overriding procedure Parse (Self : in out Float_Argument_Type; Edit : String) is procedure Conf (K, V : String) is begin if K'Length /= 1 then return; end if; case K(K'First) is when 'w' => if (for all ch of V => ch in '0' .. '9') then Self.Width := Natural'Value(V); end if; when 'a' => if (for all ch of V => ch in '0' .. '9') then Self.Aft := Natural'Value(V); end if; when 'e' => if (for all ch of V => ch in '0' .. '9') then Self.Exp := Natural'Value(V); if Self.Exp /= 0 then Self.Exp := Self.Exp + 2; end if; end if; when 'f' => if (for all ch of V => ch in '0' .. '9') then Self.Fore := Natural'Value(V); end if; when others => null; end case; end Conf; begin Parse_KV_Edit(Edit, Conf'Access); end Parse; overriding function Get_Length (Self : in out Float_Argument_Type) return Natural is begin return Self.Fore + Self.Aft + Self.Exp; end Get_Length; overriding procedure Put ( Self : in out Float_Argument_Type; Edit : String; To : in out String) is begin FIO.Put(To, Self.Value, Ada.Text_IO.Field(Self.Aft), Ada.Text_IO.Field(Self.Exp)); end Put; function To_Argument (X : Float_Type) return Argument_Type'Class is begin return Float_Argument_Type'(Value => X, others => <>); end To_Argument; function "&" (Args : Arguments; X : Float_Type) return Arguments is begin return Args & To_Argument(X); end "&"; end Fmt.Generic_Float_Argument;
26.123711
88
0.521705
59ef1f8d0a3f2a01b6fbf93edd890708f0026eac
120
ads
Ada
src/equipment_menu.ads
Fabien-Chouteau/motherlode
a97e3f41d189b9725592873b4ae547850ee3a51c
[ "MIT" ]
2
2020-08-24T15:01:37.000Z
2020-10-16T22:37:07.000Z
src/equipment_menu.ads
Fabien-Chouteau/motherlode
a97e3f41d189b9725592873b4ae547850ee3a51c
[ "MIT" ]
null
null
null
src/equipment_menu.ads
Fabien-Chouteau/motherlode
a97e3f41d189b9725592873b4ae547850ee3a51c
[ "MIT" ]
1
2021-01-19T12:00:35.000Z
2021-01-19T12:00:35.000Z
-- Motherlode -- Copyright (c) 2020 Fabien Chouteau package Equipment_Menu is procedure Run; end Equipment_Menu;
15
38
0.75
a1d1bd5bed143ac52725e8a0548b04d34e2ae0e5
2,373
adb
Ada
examples/common/tlv.adb
ekoeppen/STM32_Generic_Ada_Drivers
4ff29c3026c4b24280baf22a5b81ea9969375466
[ "MIT" ]
1
2021-04-06T07:57:56.000Z
2021-04-06T07:57:56.000Z
examples/common/tlv.adb
ekoeppen/STM32_Generic_Ada_Drivers
4ff29c3026c4b24280baf22a5b81ea9969375466
[ "MIT" ]
null
null
null
examples/common/tlv.adb
ekoeppen/STM32_Generic_Ada_Drivers
4ff29c3026c4b24280baf22a5b81ea9969375466
[ "MIT" ]
2
2018-05-29T13:59:31.000Z
2019-02-03T19:48:08.000Z
with System; package body TLV is type Base_Type is (Base_Integer, Base_Float, Base_String, Base_Sequence) with Size => 2; for Base_Type use ( Base_Integer => 0, Base_Float => 1, Base_String => 2, Base_Sequence => 3); type Tag_Value_Type is new Integer range 0 .. 63 with Size => 6; type Tag_Specifier (As_Value : Boolean := False) is record case As_Value is when True => Val : Byte; when False => Base : UInt2; Value : UInt6; end case; end record with Unchecked_Union, Size => 8, Bit_Order => System.Low_Order_First; for Tag_Specifier use record Base at 0 range 6 .. 7; Value at 0 range 0 .. 5; end record; procedure Encode (Tag : Tag_Type; Value : Integer; Buffer : in out Buffer_Type; Position : in out Buffer_Size_Type) is begin Buffer (Position) := Tag'Enum_Rep; Buffer (Position + 1) := 1; Buffer (Position + 2) := 0; Position := Position + 6; end Encode; procedure Encode (Tag : Tag_Type; Value : String; Buffer : in out Buffer_Type; Position : in out Buffer_Size_Type) is begin Buffer (Position) := Tag'Enum_Rep; Buffer (Position + 1) := 1; Position := Position + 2; for C of Value loop Buffer (Position) := Character'Pos (C); Position := Position + 1; end loop; end Encode; procedure Encode (Tag : Tag_Type; Value : Short_Float; Buffer : in out Buffer_Type; Position : in out Buffer_Size_Type) is begin Buffer (Position) := Tag'Enum_Rep; Buffer (Position + 1) := 1; Buffer (Position + 2) := 0; Position := Position + 6; end Encode; procedure Start_Sequence ( Tag : Tag_Type; Buffer : in out Buffer_Type; Length_Position : out Buffer_Size_Type; Position : in out Buffer_Size_Type) is begin Buffer (Position) := Tag'Enum_Rep; Length_Position := Position + 1; Position := Position + 2; end Start_Sequence; procedure End_Sequence ( Buffer : in out Buffer_Type; Length_Position : in Buffer_Size_Type; Position : in out Buffer_Size_Type) is begin Buffer (Length_Position) := Byte (Position - Length_Position - 1); end End_Sequence; end TLV;
28.590361
75
0.600084
295be3e1ed124ae24700b238c8eb8e8eca9aa97b
12,016
ads
Ada
src/fonts/geste_fonts-freesans5pt7b.ads
Fabien-Chouteau/GESTE
5ac814906fdb49d880db60cbb17279cbbb777336
[ "BSD-3-Clause" ]
13
2018-07-31T12:11:46.000Z
2021-11-19T14:16:46.000Z
src/fonts/geste_fonts-freesans5pt7b.ads
gregkrsak/GESTE
5ac814906fdb49d880db60cbb17279cbbb777336
[ "BSD-3-Clause" ]
1
2018-10-22T21:41:59.000Z
2018-10-22T21:41:59.000Z
src/fonts/geste_fonts-freesans5pt7b.ads
gregkrsak/GESTE
5ac814906fdb49d880db60cbb17279cbbb777336
[ "BSD-3-Clause" ]
4
2020-07-03T10:03:13.000Z
2022-02-10T03:35:07.000Z
package GESTE_Fonts.FreeSans5pt7b is Font : constant Bitmap_Font_Ref; private FreeSans5pt7bBitmaps : aliased constant Font_Bitmap := ( 16#00#, 16#00#, 16#00#, 16#01#, 16#00#, 16#40#, 16#10#, 16#04#, 16#01#, 16#00#, 16#40#, 16#00#, 16#04#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#A0#, 16#28#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0A#, 16#07#, 16#81#, 16#40#, 16#F8#, 16#14#, 16#05#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#80#, 16#70#, 16#2A#, 16#0A#, 16#01#, 16#C0#, 16#28#, 16#2A#, 16#07#, 16#80#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#64#, 16#25#, 16#09#, 16#81#, 16#A0#, 16#13#, 16#05#, 16#22#, 16#30#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#30#, 16#12#, 16#03#, 16#01#, 16#C0#, 16#5C#, 16#12#, 16#07#, 16#40#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#80#, 16#20#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#80#, 16#40#, 16#10#, 16#04#, 16#01#, 16#00#, 16#40#, 16#10#, 16#04#, 16#01#, 16#00#, 16#00#, 16#00#, 16#00#, 16#02#, 16#00#, 16#40#, 16#10#, 16#04#, 16#00#, 16#80#, 16#20#, 16#10#, 16#04#, 16#01#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#00#, 16#60#, 16#18#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#80#, 16#78#, 16#08#, 16#02#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#04#, 16#01#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#04#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#80#, 16#40#, 16#10#, 16#04#, 16#01#, 16#00#, 16#80#, 16#20#, 16#08#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#70#, 16#12#, 16#08#, 16#82#, 16#20#, 16#88#, 16#12#, 16#07#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#20#, 16#18#, 16#02#, 16#00#, 16#80#, 16#20#, 16#08#, 16#02#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#70#, 16#12#, 16#00#, 16#80#, 16#60#, 16#20#, 16#10#, 16#0F#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#70#, 16#22#, 16#00#, 16#80#, 16#C0#, 16#08#, 16#22#, 16#07#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#10#, 16#04#, 16#03#, 16#01#, 16#40#, 16#90#, 16#3E#, 16#01#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#78#, 16#10#, 16#07#, 16#01#, 16#20#, 16#08#, 16#22#, 16#07#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#70#, 16#12#, 16#0B#, 16#03#, 16#20#, 16#88#, 16#12#, 16#07#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F8#, 16#02#, 16#01#, 16#00#, 16#80#, 16#20#, 16#08#, 16#04#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#70#, 16#12#, 16#04#, 16#80#, 16#C0#, 16#C8#, 16#22#, 16#07#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#70#, 16#12#, 16#08#, 16#81#, 16#20#, 16#78#, 16#12#, 16#07#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#04#, 16#00#, 16#00#, 16#00#, 16#00#, 16#04#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#04#, 16#00#, 16#00#, 16#00#, 16#00#, 16#04#, 16#01#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#E0#, 16#C0#, 16#0C#, 16#00#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#C0#, 16#08#, 16#0C#, 16#04#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#C0#, 16#48#, 16#02#, 16#00#, 16#80#, 16#40#, 16#20#, 16#00#, 16#02#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#78#, 16#21#, 16#93#, 16#29#, 16#26#, 16#4A#, 16#94#, 16#96#, 16#C6#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#40#, 16#30#, 16#0A#, 16#02#, 16#81#, 16#20#, 16#7C#, 16#11#, 16#08#, 16#40#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#44#, 16#11#, 16#07#, 16#81#, 16#10#, 16#44#, 16#11#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#44#, 16#10#, 16#08#, 16#02#, 16#00#, 16#40#, 16#11#, 16#83#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#44#, 16#11#, 16#04#, 16#21#, 16#08#, 16#44#, 16#11#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#F0#, 16#40#, 16#10#, 16#07#, 16#C1#, 16#00#, 16#40#, 16#10#, 16#07#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#F0#, 16#40#, 16#10#, 16#07#, 16#81#, 16#00#, 16#40#, 16#10#, 16#04#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#42#, 16#10#, 16#08#, 16#02#, 16#38#, 16#42#, 16#10#, 16#83#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#10#, 16#44#, 16#11#, 16#07#, 16#C1#, 16#10#, 16#44#, 16#11#, 16#04#, 16#40#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#00#, 16#40#, 16#10#, 16#04#, 16#01#, 16#00#, 16#40#, 16#10#, 16#04#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#40#, 16#10#, 16#04#, 16#01#, 16#00#, 16#40#, 16#10#, 16#24#, 16#07#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#10#, 16#48#, 16#14#, 16#07#, 16#01#, 16#40#, 16#48#, 16#11#, 16#04#, 16#40#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#00#, 16#40#, 16#10#, 16#04#, 16#01#, 16#00#, 16#40#, 16#10#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#0C#, 16#63#, 16#19#, 16#46#, 16#51#, 16#94#, 16#59#, 16#16#, 16#44#, 16#90#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#08#, 16#62#, 16#18#, 16#85#, 16#21#, 16#48#, 16#4A#, 16#11#, 16#84#, 16#60#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#46#, 16#10#, 16#88#, 16#22#, 16#08#, 16#42#, 16#11#, 16#83#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#44#, 16#11#, 16#04#, 16#41#, 16#E0#, 16#40#, 16#10#, 16#04#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#46#, 16#10#, 16#88#, 16#22#, 16#08#, 16#42#, 16#11#, 16#83#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#F0#, 16#44#, 16#11#, 16#04#, 16#41#, 16#E0#, 16#44#, 16#11#, 16#04#, 16#40#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#E0#, 16#44#, 16#10#, 16#04#, 16#00#, 16#E0#, 16#04#, 16#11#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#F0#, 16#10#, 16#04#, 16#01#, 16#00#, 16#40#, 16#10#, 16#04#, 16#01#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#10#, 16#44#, 16#11#, 16#04#, 16#41#, 16#10#, 16#44#, 16#11#, 16#03#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#02#, 16#10#, 16#44#, 16#11#, 16#04#, 16#80#, 16#A0#, 16#28#, 16#0C#, 16#01#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#02#, 16#22#, 16#4C#, 16#93#, 16#25#, 16#51#, 16#54#, 16#53#, 16#08#, 16#C2#, 16#20#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#10#, 16#48#, 16#0A#, 16#03#, 16#00#, 16#C0#, 16#28#, 16#12#, 16#0C#, 16#40#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#10#, 16#44#, 16#0A#, 16#02#, 16#80#, 16#40#, 16#10#, 16#04#, 16#01#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#F0#, 16#08#, 16#02#, 16#01#, 16#00#, 16#80#, 16#60#, 16#10#, 16#0F#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#80#, 16#40#, 16#10#, 16#04#, 16#01#, 16#00#, 16#40#, 16#10#, 16#04#, 16#01#, 16#00#, 16#00#, 16#00#, 16#00#, 16#02#, 16#00#, 16#80#, 16#20#, 16#04#, 16#01#, 16#00#, 16#40#, 16#10#, 16#02#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#00#, 16#40#, 16#10#, 16#04#, 16#01#, 16#00#, 16#40#, 16#10#, 16#04#, 16#01#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#20#, 16#18#, 16#05#, 16#00#, 16#40#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#01#, 16#20#, 16#78#, 16#22#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#00#, 16#40#, 16#10#, 16#07#, 16#81#, 16#20#, 16#48#, 16#12#, 16#07#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#02#, 16#20#, 16#80#, 16#22#, 16#07#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#20#, 16#08#, 16#02#, 16#07#, 16#83#, 16#20#, 16#88#, 16#32#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#02#, 16#20#, 16#F8#, 16#22#, 16#07#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#80#, 16#40#, 16#10#, 16#0E#, 16#01#, 16#00#, 16#40#, 16#10#, 16#04#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#82#, 16#20#, 16#88#, 16#22#, 16#07#, 16#82#, 16#20#, 16#00#, 16#00#, 16#00#, 16#01#, 16#00#, 16#40#, 16#10#, 16#07#, 16#01#, 16#20#, 16#48#, 16#12#, 16#04#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#00#, 16#00#, 16#00#, 16#04#, 16#01#, 16#00#, 16#40#, 16#10#, 16#04#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#00#, 16#00#, 16#00#, 16#04#, 16#01#, 16#00#, 16#40#, 16#10#, 16#04#, 16#01#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#00#, 16#40#, 16#10#, 16#05#, 16#01#, 16#80#, 16#60#, 16#14#, 16#04#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#02#, 16#00#, 16#80#, 16#20#, 16#08#, 16#02#, 16#00#, 16#80#, 16#20#, 16#08#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#61#, 16#24#, 16#51#, 16#14#, 16#45#, 16#10#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#01#, 16#20#, 16#48#, 16#12#, 16#04#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#02#, 16#20#, 16#88#, 16#22#, 16#07#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#81#, 16#20#, 16#48#, 16#12#, 16#07#, 16#81#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#83#, 16#20#, 16#88#, 16#32#, 16#07#, 16#80#, 16#20#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#06#, 16#01#, 16#00#, 16#40#, 16#10#, 16#04#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#02#, 16#40#, 16#70#, 16#22#, 16#07#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#10#, 16#0E#, 16#01#, 16#00#, 16#40#, 16#10#, 16#06#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#04#, 16#81#, 16#20#, 16#48#, 16#12#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#08#, 16#81#, 16#40#, 16#50#, 16#18#, 16#02#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#09#, 16#22#, 16#A8#, 16#6C#, 16#1B#, 16#06#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#05#, 16#01#, 16#40#, 16#20#, 16#14#, 16#09#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#09#, 16#01#, 16#40#, 16#50#, 16#18#, 16#02#, 16#00#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#00#, 16#40#, 16#20#, 16#10#, 16#0F#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#80#, 16#40#, 16#10#, 16#04#, 16#01#, 16#00#, 16#40#, 16#10#, 16#04#, 16#01#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#00#, 16#40#, 16#10#, 16#04#, 16#01#, 16#00#, 16#40#, 16#10#, 16#04#, 16#01#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#00#, 16#40#, 16#10#, 16#04#, 16#00#, 16#80#, 16#20#, 16#10#, 16#04#, 16#01#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#04#, 16#82#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#); Font_D : aliased constant Bitmap_Font := ( Bytes_Per_Glyph => 15, Glyph_Width => 10, Glyph_Height => 12, Data => FreeSans5pt7bBitmaps'Access); Font : constant Bitmap_Font_Ref := Font_D'Access; end GESTE_Fonts.FreeSans5pt7b;
69.456647
73
0.493093
3154f7e0a9948d25dd063b5ef17027976c4740a1
110
ada
Ada
Task/Rendezvous/Ada/rendezvous-1.ada
mullikine/RosettaCodeData
4f0027c6ce83daa36118ee8b67915a13cd23ab67
[ "Info-ZIP" ]
1
2018-11-09T22:08:38.000Z
2018-11-09T22:08:38.000Z
Task/Rendezvous/Ada/rendezvous-1.ada
mullikine/RosettaCodeData
4f0027c6ce83daa36118ee8b67915a13cd23ab67
[ "Info-ZIP" ]
null
null
null
Task/Rendezvous/Ada/rendezvous-1.ada
mullikine/RosettaCodeData
4f0027c6ce83daa36118ee8b67915a13cd23ab67
[ "Info-ZIP" ]
1
2018-11-09T22:08:40.000Z
2018-11-09T22:08:40.000Z
select Server.Wake_Up (Parameters); or delay 5.0; -- No response, try something else ... end select;
15.714286
37
0.663636
299043ccdf23f3dbc6cc6f37cc3cc1e3ba469d4f
4,898
ads
Ada
source/amf/uml/amf-uml-artifacts-collections.ads
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
24
2016-11-29T06:59:41.000Z
2021-08-30T11:55:16.000Z
source/amf/uml/amf-uml-artifacts-collections.ads
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
2
2019-01-16T05:15:20.000Z
2019-02-03T10:03:32.000Z
source/amf/uml/amf-uml-artifacts-collections.ads
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
4
2017-07-18T07:11:05.000Z
2020-06-21T03:02:25.000Z
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2011-2012, Vadim Godunko <[email protected]> -- -- 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 Vadim Godunko, IE 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. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ -- This file is generated, don't edit it. ------------------------------------------------------------------------------ with AMF.Generic_Collections; package AMF.UML.Artifacts.Collections is pragma Preelaborate; package UML_Artifact_Collections is new AMF.Generic_Collections (UML_Artifact, UML_Artifact_Access); type Set_Of_UML_Artifact is new UML_Artifact_Collections.Set with null record; Empty_Set_Of_UML_Artifact : constant Set_Of_UML_Artifact; type Ordered_Set_Of_UML_Artifact is new UML_Artifact_Collections.Ordered_Set with null record; Empty_Ordered_Set_Of_UML_Artifact : constant Ordered_Set_Of_UML_Artifact; type Bag_Of_UML_Artifact is new UML_Artifact_Collections.Bag with null record; Empty_Bag_Of_UML_Artifact : constant Bag_Of_UML_Artifact; type Sequence_Of_UML_Artifact is new UML_Artifact_Collections.Sequence with null record; Empty_Sequence_Of_UML_Artifact : constant Sequence_Of_UML_Artifact; private Empty_Set_Of_UML_Artifact : constant Set_Of_UML_Artifact := (UML_Artifact_Collections.Set with null record); Empty_Ordered_Set_Of_UML_Artifact : constant Ordered_Set_Of_UML_Artifact := (UML_Artifact_Collections.Ordered_Set with null record); Empty_Bag_Of_UML_Artifact : constant Bag_Of_UML_Artifact := (UML_Artifact_Collections.Bag with null record); Empty_Sequence_Of_UML_Artifact : constant Sequence_Of_UML_Artifact := (UML_Artifact_Collections.Sequence with null record); end AMF.UML.Artifacts.Collections;
53.23913
78
0.506125
29bd7a0dba593be3fd9e0bc5d5e26425d7b48f11
3,942
adb
Ada
middleware/src/neopixel/neopixel.adb
shakram02/Ada_Drivers_Library
a407ca7ddbc2d9756647016c2f8fd8ef24a239ff
[ "BSD-3-Clause" ]
192
2016-06-01T18:32:04.000Z
2022-03-26T22:52:31.000Z
middleware/src/neopixel/neopixel.adb
shakram02/Ada_Drivers_Library
a407ca7ddbc2d9756647016c2f8fd8ef24a239ff
[ "BSD-3-Clause" ]
239
2016-05-26T20:02:01.000Z
2022-03-31T09:46:56.000Z
middleware/src/neopixel/neopixel.adb
shakram02/Ada_Drivers_Library
a407ca7ddbc2d9756647016c2f8fd8ef24a239ff
[ "BSD-3-Clause" ]
142
2016-06-05T08:12:20.000Z
2022-03-24T17:37:17.000Z
------------------------------------------------------------------------------ -- -- -- Copyright (C) 2019, AdaCore -- -- -- -- 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 copyright holder 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. -- -- -- ------------------------------------------------------------------------------ package body NeoPixel is Stride : constant array (LED_Mode) of Positive := (RGBW => 4, others => 3); ------------ -- Create -- ------------ function Create (Mode : LED_Mode; Count : Positive) return LED_Strip is begin return LED_Strip'(Mode => Mode, Count => Count, Buf_Last => Count * Stride (Mode) - 1, Buffer => (others => 0)); end Create; type Component_Indices is array (LED_Component) of Integer; Mode_Indices : constant array (LED_Mode) of Component_Indices := (RGB => (LED_Red => 0, LED_Green => 1, LED_Blue => 2, LED_White => -1), GRB => (LED_Red => 1, LED_Green => 0, LED_Blue => 2, LED_White => -1), RGBW => (LED_Red => 0, LED_Green => 1, LED_Blue => 2, LED_White => 3)); --------------- -- Set_Color -- --------------- procedure Set_Color (Strip : in out LED_Strip; Index : Natural; Color : LED_Values) is pragma Assert (Index < Strip.Count); Base : constant Natural := Index * Stride (Strip.Mode); Indices : constant Component_Indices := Mode_Indices (Strip.Mode); begin for J in LED_Red .. (if Strip.Mode = RGBW then LED_White else LED_Blue) loop Strip.Buffer (Base + Indices (J)) := Color (J); end loop; end Set_Color; ---------- -- Show -- ---------- procedure Show (Strip : LED_Strip; Write : access procedure (Buffer : UInt8_Array)) is begin Write (Strip.Buffer); end Show; end NeoPixel;
45.837209
82
0.518265
59d18562090d9a0f9f6f659b6ea4aab8c08522f6
4,104
adb
Ada
config.tests/sse_builtins/main.adb
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
24
2016-11-29T06:59:41.000Z
2021-08-30T11:55:16.000Z
config.tests/sse_builtins/main.adb
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
2
2019-01-16T05:15:20.000Z
2019-02-03T10:03:32.000Z
config.tests/sse_builtins/main.adb
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
4
2017-07-18T07:11:05.000Z
2020-06-21T03:02:25.000Z
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Localization, Internationalization, Globalization for Ada -- -- -- -- Tools Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2011, Vadim Godunko <[email protected]> -- -- 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 Vadim Godunko, IE 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. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ -- This procedure uses SSE builtins of GCC compiler, and used to check whether -- current compiler supports them. ------------------------------------------------------------------------------ with Interfaces; procedure Main is use Interfaces; type v2di is array (1 .. 2) of Unsigned_64; for v2di'Alignment use 16; pragma Machine_Attribute (v2di, "vector_type"); pragma Machine_Attribute (v2di, "may_alias"); function mm_and_si128 (A : v2di; B : v2di) return v2di; pragma Import (Intrinsic, mm_and_si128, "__builtin_ia32_pand128"); A : v2di := (0, 0); B : v2di := (0, 0); C : v2di; pragma Volatile (C); -- When C is not declared as volatile, compiler optimize out all code. begin C := mm_and_si128 (A, B); end Main;
58.628571
79
0.434454
596406c3312ec8441979d2b3c823f6097a28d598
10,308
adb
Ada
tools-src/gnu/gcc/gcc/ada/opt.adb
modern-tomato/tomato
96f09fab4929c6ddde5c9113f1b2476ad37133c4
[ "FSFAP" ]
80
2015-01-02T10:14:04.000Z
2021-06-07T06:29:49.000Z
tools-src/gnu/gcc/gcc/ada/opt.adb
modern-tomato/tomato
96f09fab4929c6ddde5c9113f1b2476ad37133c4
[ "FSFAP" ]
9
2015-05-14T11:03:12.000Z
2018-01-04T07:12:58.000Z
tools-src/gnu/gcc/gcc/ada/opt.adb
modern-tomato/tomato
96f09fab4929c6ddde5c9113f1b2476ad37133c4
[ "FSFAP" ]
69
2015-01-02T10:45:56.000Z
2021-09-06T07:52:13.000Z
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- O P T -- -- -- -- B o d y -- -- -- -- $Revision$ -- -- -- Copyright (C) 1992-2000, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 2, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT 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 distributed with GNAT; see file COPYING. If not, write -- -- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, -- -- MA 02111-1307, USA. -- -- -- -- As a special exception, if other files instantiate generics from this -- -- unit, or you link this unit with other files to produce an executable, -- -- this unit does not by itself cause the resulting executable to be -- -- covered by the GNU General Public License. This exception does not -- -- however invalidate any other reasons why the executable file might be -- -- covered by the GNU Public License. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ with Ada.Exceptions; use Ada.Exceptions; with Gnatvsn; use Gnatvsn; with System; use System; with Tree_IO; use Tree_IO; package body Opt is Tree_Version_String : String (Gnat_Version_String'Range); -- Used to store the compiler version string read from a tree file to -- check if it is the same as stored in the version ctring in Gnatvsn. -- Therefore its length is taken directly from the version string in -- Gnatvsn. If the length of the version string stored in the three is -- different, then versions are for sure different. Immediate_Errors : Boolean := True; -- This is an obsolete flag that is no longer present in opt.ads. We -- retain it here because this flag was written to the tree and there -- is no point in making trees incomaptible just for the sake of saving -- one byte of data. The value written is ignored. ---------------------------------- -- Register_Opt_Config_Switches -- ---------------------------------- procedure Register_Opt_Config_Switches is begin Ada_83_Config := Ada_83; Dynamic_Elaboration_Checks_Config := Dynamic_Elaboration_Checks; Extensions_Allowed_Config := Extensions_Allowed; External_Name_Exp_Casing_Config := External_Name_Exp_Casing; External_Name_Imp_Casing_Config := External_Name_Imp_Casing; Polling_Required_Config := Polling_Required; Use_VADS_Size_Config := Use_VADS_Size; end Register_Opt_Config_Switches; --------------------------------- -- Restore_Opt_Config_Switches -- --------------------------------- procedure Restore_Opt_Config_Switches (Save : Config_Switches_Type) is begin Ada_83 := Save.Ada_83; Ada_95 := not Ada_83; Dynamic_Elaboration_Checks := Save.Dynamic_Elaboration_Checks; Extensions_Allowed := Save.Extensions_Allowed; External_Name_Exp_Casing := Save.External_Name_Exp_Casing; External_Name_Imp_Casing := Save.External_Name_Imp_Casing; Polling_Required := Save.Polling_Required; Use_VADS_Size := Save.Use_VADS_Size; end Restore_Opt_Config_Switches; ------------------------------ -- Save_Opt_Config_Switches -- ------------------------------ procedure Save_Opt_Config_Switches (Save : out Config_Switches_Type) is begin Save.Ada_83 := Ada_83; Save.Dynamic_Elaboration_Checks := Dynamic_Elaboration_Checks; Save.Extensions_Allowed := Extensions_Allowed; Save.External_Name_Exp_Casing := External_Name_Exp_Casing; Save.External_Name_Imp_Casing := External_Name_Imp_Casing; Save.Polling_Required := Polling_Required; Save.Use_VADS_Size := Use_VADS_Size; end Save_Opt_Config_Switches; ----------------------------- -- Set_Opt_Config_Switches -- ----------------------------- procedure Set_Opt_Config_Switches (Internal_Unit : Boolean) is begin if Internal_Unit then Ada_83 := False; Ada_95 := True; Dynamic_Elaboration_Checks := False; Extensions_Allowed := True; External_Name_Exp_Casing := As_Is; External_Name_Imp_Casing := Lowercase; Use_VADS_Size := False; else Ada_83 := Ada_83_Config; Ada_95 := not Ada_83_Config; Dynamic_Elaboration_Checks := Dynamic_Elaboration_Checks_Config; Extensions_Allowed := Extensions_Allowed_Config; External_Name_Exp_Casing := External_Name_Exp_Casing_Config; External_Name_Imp_Casing := External_Name_Imp_Casing_Config; Use_VADS_Size := Use_VADS_Size_Config; end if; Polling_Required := Polling_Required_Config; end Set_Opt_Config_Switches; --------------- -- Tree_Read -- --------------- procedure Tree_Read is Tree_Version_String_Len : Nat; begin Tree_Read_Bool (Brief_Output); Tree_Read_Bool (GNAT_Mode); Tree_Read_Char (Identifier_Character_Set); Tree_Read_Int (Maximum_File_Name_Length); Tree_Read_Data (Suppress_Options'Address, Suppress_Record'Object_Size / Storage_Unit); Tree_Read_Bool (Verbose_Mode); Tree_Read_Data (Warning_Mode'Address, Warning_Mode_Type'Object_Size / Storage_Unit); Tree_Read_Bool (Ada_83_Config); Tree_Read_Bool (All_Errors_Mode); Tree_Read_Bool (Assertions_Enabled); Tree_Read_Bool (Full_List); -- Read and check version string Tree_Read_Int (Tree_Version_String_Len); if Tree_Version_String_Len = Tree_Version_String'Length then Tree_Read_Data (Tree_Version_String'Address, Tree_Version_String'Length); end if; if Tree_Version_String_Len /= Tree_Version_String'Length or else Tree_Version_String /= Gnat_Version_String then Raise_Exception (Program_Error'Identity, "Inconsistent versions of GNAT and ASIS"); end if; Tree_Read_Data (Distribution_Stub_Mode'Address, Distribution_Stub_Mode_Type'Object_Size / Storage_Unit); Tree_Read_Bool (Immediate_Errors); Tree_Read_Bool (Inline_Active); Tree_Read_Bool (Inline_Processing_Required); Tree_Read_Bool (List_Units); Tree_Read_Bool (No_Run_Time); Tree_Read_Data (Operating_Mode'Address, Operating_Mode_Type'Object_Size / Storage_Unit); Tree_Read_Bool (Software_Overflow_Checking); Tree_Read_Bool (Try_Semantics); Tree_Read_Data (Wide_Character_Encoding_Method'Address, WC_Encoding_Method'Object_Size / Storage_Unit); Tree_Read_Bool (Upper_Half_Encoding); Tree_Read_Bool (Force_ALI_Tree_File); end Tree_Read; ---------------- -- Tree_Write -- ---------------- procedure Tree_Write is begin Tree_Write_Bool (Brief_Output); Tree_Write_Bool (GNAT_Mode); Tree_Write_Char (Identifier_Character_Set); Tree_Write_Int (Maximum_File_Name_Length); Tree_Write_Data (Suppress_Options'Address, Suppress_Record'Object_Size / Storage_Unit); Tree_Write_Bool (Verbose_Mode); Tree_Write_Data (Warning_Mode'Address, Warning_Mode_Type'Object_Size / Storage_Unit); Tree_Write_Bool (Ada_83_Config); Tree_Write_Bool (All_Errors_Mode); Tree_Write_Bool (Assertions_Enabled); Tree_Write_Bool (Full_List); Tree_Write_Int (Int (Gnat_Version_String'Length)); Tree_Write_Data (Gnat_Version_String'Address, Gnat_Version_String'Length); Tree_Write_Data (Distribution_Stub_Mode'Address, Distribution_Stub_Mode_Type'Object_Size / Storage_Unit); Tree_Write_Bool (Immediate_Errors); Tree_Write_Bool (Inline_Active); Tree_Write_Bool (Inline_Processing_Required); Tree_Write_Bool (List_Units); Tree_Write_Bool (No_Run_Time); Tree_Write_Data (Operating_Mode'Address, Operating_Mode_Type'Object_Size / Storage_Unit); Tree_Write_Bool (Software_Overflow_Checking); Tree_Write_Bool (Try_Semantics); Tree_Write_Data (Wide_Character_Encoding_Method'Address, WC_Encoding_Method'Object_Size / Storage_Unit); Tree_Write_Bool (Upper_Half_Encoding); Tree_Write_Bool (Force_ALI_Tree_File); end Tree_Write; end Opt;
45.813333
79
0.584206
2f71f64083f00e233c8359b498ad7b6ec8cebfdf
18
ads
Ada
tests/nonsmoke/functional/CompileTests/experimental_ada_tests/unit_3.ads
ucd-plse/rose
17db6454e8baba0014e30a8ec23df1a11ac55a0c
[ "BSD-3-Clause" ]
488
2015-01-09T08:54:48.000Z
2022-03-30T07:15:46.000Z
tests/nonsmoke/functional/CompileTests/experimental_ada_tests/unit_3.ads
ucd-plse/rose
17db6454e8baba0014e30a8ec23df1a11ac55a0c
[ "BSD-3-Clause" ]
174
2015-01-28T18:41:32.000Z
2022-03-31T16:51:05.000Z
tests/nonsmoke/functional/CompileTests/experimental_ada_tests/unit_3.ads
ucd-plse/rose
17db6454e8baba0014e30a8ec23df1a11ac55a0c
[ "BSD-3-Clause" ]
146
2015-04-27T02:48:34.000Z
2022-03-04T07:32:53.000Z
procedure Unit_3;
9
17
0.833333
592b69166c99577adb53cee7e0667e10692a8aa1
2,764
ads
Ada
gcc-gcc-7_3_0-release/gcc/ada/a-sfecin.ads
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
7
2020-05-02T17:34:05.000Z
2021-10-17T10:15:18.000Z
gcc-gcc-7_3_0-release/gcc/ada/a-sfecin.ads
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
null
null
null
gcc-gcc-7_3_0-release/gcc/ada/a-sfecin.ads
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
2
2020-07-27T00:22:36.000Z
2021-04-01T09:41:02.000Z
------------------------------------------------------------------------------ -- -- -- GNAT LIBRARY COMPONENTS -- -- -- -- ADA.STRINGS.FIXED.EQUAL_CASE_INSENSITIVE -- -- -- -- S p e c -- -- -- -- Copyright (C) 2011, Free Software Foundation, Inc. -- -- -- -- This specification is derived from the Ada Reference Manual for use with -- -- GNAT. The copyright notice above, and the license provisions that follow -- -- apply solely to the contents of the part following the private keyword. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- This unit was originally developed by Matthew J Heaney. -- ------------------------------------------------------------------------------ with Ada.Strings.Equal_Case_Insensitive; function Ada.Strings.Fixed.Equal_Case_Insensitive (Left, Right : String) return Boolean renames Ada.Strings.Equal_Case_Insensitive; pragma Pure (Ada.Strings.Fixed.Equal_Case_Insensitive);
67.414634
78
0.430174
12b12341f40bd835b10e6d0c93bb4055770165fe
3,732
ads
Ada
demo/adainclude/s-atacco.ads
e3l6/SSMDev
2929757aab3842aefd84debb2d7c3e8b28c2b340
[ "MIT" ]
1
2020-01-20T21:26:46.000Z
2020-01-20T21:26:46.000Z
demo/adainclude/s-atacco.ads
e3l6/SSMDev
2929757aab3842aefd84debb2d7c3e8b28c2b340
[ "MIT" ]
null
null
null
demo/adainclude/s-atacco.ads
e3l6/SSMDev
2929757aab3842aefd84debb2d7c3e8b28c2b340
[ "MIT" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- S Y S T E M . A D D R E S S _ T O _ A C C E S S _ C O N V E R S I O N S -- -- -- -- S p e c -- -- -- -- Copyright (C) 1992-2012, Free Software Foundation, Inc. -- -- -- -- This specification is derived from the Ada Reference Manual for use with -- -- GNAT. The copyright notice above, and the license provisions that follow -- -- apply solely to the contents of the part following the private keyword. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- -- -- -- -- -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ generic type Object (<>) is limited private; package System.Address_To_Access_Conversions is pragma Preelaborate; pragma Compile_Time_Warning (Object'Unconstrained_Array, "Object is unconstrained array type" & ASCII.LF & "To_Pointer results may not have bounds"); type Object_Pointer is access all Object; for Object_Pointer'Size use Standard'Address_Size; pragma No_Strict_Aliasing (Object_Pointer); -- Strictly speaking, this routine should not be used to generate pointers -- to other than proper values of the proper type, but in practice, this -- is done all the time. This pragma stops the compiler from doing some -- optimizations that may cause unexpected results based on the assumption -- of no strict aliasing. function To_Pointer (Value : Address) return Object_Pointer; function To_Address (Value : Object_Pointer) return Address; pragma Import (Intrinsic, To_Pointer); pragma Import (Intrinsic, To_Address); end System.Address_To_Access_Conversions;
58.3125
78
0.451233
0b37b13c0fe949b9f7d71984d08dcfa0da867f02
7,785
ada
Ada
gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/c4/c45504d.ada
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
7
2020-05-02T17:34:05.000Z
2021-10-17T10:15:18.000Z
gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/c4/c45504d.ada
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
null
null
null
gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/c4/c45504d.ada
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
2
2020-07-27T00:22:36.000Z
2021-04-01T09:41:02.000Z
-- C45504D.ADA -- Grant of Unlimited Rights -- -- Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687, -- F08630-91-C-0015, and DCA100-97-D-0025, the U.S. Government obtained -- unlimited rights in the software and documentation contained herein. -- Unlimited rights are defined in DFAR 252.227-7013(a)(19). By making -- this public release, the Government intends to confer upon all -- recipients unlimited rights equal to those held by the Government. -- These rights include rights to use, duplicate, release or disclose the -- released technical data and computer software in whole or in part, in -- any manner and for any purpose whatsoever, and to have or permit others -- to do so. -- -- DISCLAIMER -- -- ALL MATERIALS OR INFORMATION HEREIN RELEASED, MADE AVAILABLE OR -- DISCLOSED ARE AS IS. THE GOVERNMENT MAKES NO EXPRESS OR IMPLIED -- WARRANTY AS TO ANY MATTER WHATSOEVER, INCLUDING THE CONDITIONS OF THE -- SOFTWARE, DOCUMENTATION OR OTHER INFORMATION RELEASED, MADE AVAILABLE -- OR DISCLOSED, OR THE OWNERSHIP, MERCHANTABILITY, OR FITNESS FOR A -- PARTICULAR PURPOSE OF SAID MATERIAL. --* -- CHECK THAT CONSTRAINT_ERROR IS RAISED WHEN THE SECOND -- OPERAND OF '/', 'MOD', OR 'REM' EQUALS ZERO, IF THE OPERANDS ARE OF -- PREDEFINED TYPE INTEGER. -- *** NOTE: This test has been modified since ACVC version 1.11 to -- 9X -- *** remove incompatibilities associated with the transition -- 9X -- *** to Ada 9X. -- 9X -- R.WILLIAMS 9/1/86 -- JRL 03/30/93 REMOVED NUMERIC_ERROR FROM TEST. WITH REPORT; USE REPORT; PROCEDURE C45504D IS I0 : INTEGER := IDENT_INT (0); I5 : INTEGER := IDENT_INT (5); N5 : INTEGER := IDENT_INT (-5); BEGIN TEST ( "C45504D", "CHECK THAT CONSTRAINT_ERROR " & "IS RAISED WHEN THE SECOND OPERAND OF '/', " & "'MOD', OR 'REM' EQUALS ZERO, IF THE " & "OPERANDS ARE OF PREDEFINED TYPE INTEGER" ); BEGIN IF I5 / I0 = 0 THEN FAILED ( "NO EXCEPTION RAISED BY 'I5 / I0' - 1" ); ELSE FAILED ( "NO EXCEPTION RAISED BY 'I5 / I0' - 2" ); END IF; EXCEPTION WHEN CONSTRAINT_ERROR => COMMENT ( "CONSTRAINT_ERROR RAISED BY 'I5 / I0'" ); WHEN OTHERS => FAILED ( "WRONG EXCEPTION RAISED BY 'I5 / I0'" ); END; BEGIN IF N5 / I0 = 0 THEN FAILED ( "NO EXCEPTION RAISED BY 'N5 / I0' - 1" ); ELSE FAILED ( "NO EXCEPTION RAISED BY 'N5 / I0' - 2" ); END IF; EXCEPTION WHEN CONSTRAINT_ERROR => COMMENT ( "CONSTRAINT_ERROR RAISED BY 'N5 / I0'" ); WHEN OTHERS => FAILED ( "WRONG EXCEPTION RAISED BY 'N5 / I0'" ); END; BEGIN IF I0 / I0 = 0 THEN FAILED ( "NO EXCEPTION RAISED BY 'I0 / I0' - 1" ); ELSE FAILED ( "NO EXCEPTION RAISED BY 'I0 / I0' - 2" ); END IF; EXCEPTION WHEN CONSTRAINT_ERROR => COMMENT ( "CONSTRAINT_ERROR RAISED BY 'I0 / I0'" ); WHEN OTHERS => FAILED ( "WRONG EXCEPTION RAISED BY 'I0 / I0'" ); END; BEGIN IF I5 / I0 * I0 = 0 THEN FAILED ( "NO EXCEPTION RAISED BY 'I5 / I0 * I0' - 1" ); ELSE FAILED ( "NO EXCEPTION RAISED BY 'I5 / I0 * I0' - 2" ); END IF; EXCEPTION WHEN CONSTRAINT_ERROR => COMMENT ( "CONSTRAINT_ERROR RAISED BY 'I5 / I0 * I0'" ); WHEN OTHERS => FAILED ( "WRONG EXCEPTION RAISED BY 'I5 / I0 * I0'" ); END; BEGIN IF I5 MOD I0 = 0 THEN FAILED ( "NO EXCEPTION RAISED BY 'I5 MOD I0' - 1" ); ELSE FAILED ( "NO EXCEPTION RAISED BY 'I5 MOD I0' - 2" ); END IF; EXCEPTION WHEN CONSTRAINT_ERROR => COMMENT ( "CONSTRAINT_ERROR RAISED BY 'I5 MOD I0'" ); WHEN OTHERS => FAILED ( "WRONG EXCEPTION RAISED BY 'I5 MOD I0'" ); END; BEGIN IF N5 MOD I0 = 0 THEN FAILED ( "NO EXCEPTION RAISED BY 'N5 MOD I0' - 1" ); ELSE FAILED ( "NO EXCEPTION RAISED BY 'N5 MOD I0' - 2" ); END IF; EXCEPTION WHEN CONSTRAINT_ERROR => COMMENT ( "CONSTRAINT_ERROR RAISED BY 'N5 MOD I0'" ); WHEN OTHERS => FAILED ( "WRONG EXCEPTION RAISED BY 'N5 MOD I0'" ); END; BEGIN IF I0 MOD I0 = 0 THEN FAILED ( "NO EXCEPTION RAISED BY 'I0 MOD I0' - 1" ); ELSE FAILED ( "NO EXCEPTION RAISED BY 'I0 MOD I0' - 2" ); END IF; EXCEPTION WHEN CONSTRAINT_ERROR => COMMENT ( "CONSTRAINT_ERROR RAISED BY 'I0 MOD I0'" ); WHEN OTHERS => FAILED ( "WRONG EXCEPTION RAISED BY 'I0 MOD I0'" ); END; BEGIN IF I5 MOD I0 = (I5 + I0) MOD I0 THEN FAILED ( "NO EXCEPTION RAISED BY 'I5 MOD I0 = " & "(I5 + I0) MOD I0' - 1" ); ELSE FAILED ( "NO EXCEPTION RAISED BY 'I5 MOD I0 = " & "(I5 + I0) MOD I0' - 2" ); END IF; EXCEPTION WHEN CONSTRAINT_ERROR => COMMENT ( "CONSTRAINT_ERROR RAISED BY 'I5 MOD I0 = " & "(I5 + I0) MOD I0'" ); WHEN OTHERS => FAILED ( "WRONG EXCEPTION RAISED BY 'I5 MOD I0 = " & "(I5 + I0) MOD I0'" ); END; BEGIN IF I5 REM I0 = 0 THEN FAILED ( "NO EXCEPTION RAISED BY 'I5 REM I0' - 1" ); ELSE FAILED ( "NO EXCEPTION RAISED BY 'I5 REM I0' - 2" ); END IF; EXCEPTION WHEN CONSTRAINT_ERROR => COMMENT ( "CONSTRAINT_ERROR RAISED BY 'I5 REM I0'" ); WHEN OTHERS => FAILED ( "WRONG EXCEPTION RAISED BY 'I5 REM I0'" ); END; BEGIN IF N5 REM I0 = 0 THEN FAILED ( "NO EXCEPTION RAISED BY 'N5 REM I0' - 1" ); ELSE FAILED ( "NO EXCEPTION RAISED BY 'N5 REM I0' - 2" ); END IF; EXCEPTION WHEN CONSTRAINT_ERROR => COMMENT ( "CONSTRAINT_ERROR RAISED BY 'N5 REM I0'" ); WHEN OTHERS => FAILED ( "WRONG EXCEPTION RAISED BY 'N5 REM I0'" ); END; BEGIN IF I0 REM I0 = 0 THEN FAILED ( "NO EXCEPTION RAISED BY 'I0 REM I0' - 1" ); ELSE FAILED ( "NO EXCEPTION RAISED BY 'I0 REM I0' - 2" ); END IF; EXCEPTION WHEN CONSTRAINT_ERROR => COMMENT ( "CONSTRAINT_ERROR RAISED BY 'I0 REM I0'" ); WHEN OTHERS => FAILED ( "WRONG EXCEPTION RAISED BY 'I0 REM I0'" ); END; BEGIN IF I5 REM (-I0) = I5 REM I0 THEN FAILED ( "NO EXCEPTION RAISED BY 'I5 REM (-I0) = " & "I5 REM I0' - 1" ); ELSE FAILED ( "NO EXCEPTION RAISED BY 'I5 REM (-I0) = " & "I5 REM I0' - 2" ); END IF; EXCEPTION WHEN CONSTRAINT_ERROR => COMMENT ( "CONSTRAINT_ERROR RAISED BY 'I5 REM (-I0) " & "= I5 REM I0'" ); WHEN OTHERS => FAILED ( "WRONG EXCEPTION RAISED BY 'I5 REM (-I0) = " & "I5 REM I0'" ); END; RESULT; END C45504D;
36.209302
79
0.500963
1201d062312c0d3376cdf6331622fca5300424d1
6,632
adb
Ada
src/babel-strategies.adb
stcarrez/babel
727461babd0305344427bf8a56cdae2b68d08caf
[ "Apache-2.0" ]
1
2015-08-05T14:26:52.000Z
2015-08-05T14:26:52.000Z
src/babel-strategies.adb
stcarrez/babel
727461babd0305344427bf8a56cdae2b68d08caf
[ "Apache-2.0" ]
null
null
null
src/babel-strategies.adb
stcarrez/babel
727461babd0305344427bf8a56cdae2b68d08caf
[ "Apache-2.0" ]
null
null
null
----------------------------------------------------------------------- -- babel-strategies -- Strategies to backup files -- Copyright (C) 2014 Stephane.Carrez -- Written by Stephane.Carrez ([email protected]) -- -- 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. ----------------------------------------------------------------------- with Util.Log.Loggers; with Babel.Files; with Babel.Files.Buffers; with Babel.Files.Lifecycles; with Babel.Stores; package body Babel.Strategies is Log : constant Util.Log.Loggers.Logger := Util.Log.Loggers.Create ("Babel.Strategies"); -- ------------------------------ -- Allocate a buffer to read the file content. -- ------------------------------ function Allocate_Buffer (Strategy : in Strategy_Type) return Babel.Files.Buffers.Buffer_Access is Result : Babel.Files.Buffers.Buffer_Access; begin Strategy.Buffers.Get_Buffer (Result); return Result; end Allocate_Buffer; -- ------------------------------ -- Release the buffer that was allocated by Allocate_Buffer. -- ------------------------------ procedure Release_Buffer (Strategy : in Strategy_Type; Buffer : in out Babel.Files.Buffers.Buffer_Access) is begin Babel.Files.Buffers.Release (Buffer); Buffer := null; end Release_Buffer; -- ------------------------------ -- Set the buffer pool to be used by Allocate_Buffer. -- ------------------------------ procedure Set_Buffers (Strategy : in out Strategy_Type; Buffers : in Babel.Files.Buffers.Buffer_Pool_Access) is begin Strategy.Buffers := Buffers; end Set_Buffers; -- Read the file from the read store into the local buffer. procedure Read_File (Strategy : in Strategy_Type; File : in Babel.Files.File_Type; Stream : in out Babel.Streams.Refs.Stream_Ref) is Path : constant String := Babel.Files.Get_Path (File); begin Strategy.Read_Store.Read_File (Path, Stream); end Read_File; -- Write the file from the local buffer into the write store. procedure Write_File (Strategy : in Strategy_Type; File : in Babel.Files.File_Type; Stream : in Babel.Streams.Refs.Stream_Ref) is Path : constant String := Babel.Files.Get_Path (File); begin Strategy.Write_Store.Write_File (Path, Stream, Babel.Files.Get_Mode (File)); end Write_File; -- Backup the file from the local buffer into the write store. procedure Backup_File (Strategy : in out Strategy_Type; File : in Babel.Files.File_Type; Stream : in Babel.Streams.Refs.Stream_Ref) is use type Babel.Stores.Store_Type_Access; begin Strategy.Database.Insert (File); if Strategy.Listeners /= null then if Babel.Files.Is_New (File) then Babel.Files.Lifecycles.Notify_Create (Strategy.Listeners.all, File); else Babel.Files.Lifecycles.Notify_Update (Strategy.Listeners.all, File); end if; end if; if Strategy.Write_Store /= null then Strategy.Write_File (File, Stream); end if; end Backup_File; -- Scan the directory procedure Scan (Strategy : in out Strategy_Type; Directory : in Babel.Files.Directory_Type; Container : in out Babel.Files.File_Container'Class) is Path : constant String := Babel.Files.Get_Path (Directory); begin Strategy.Read_Store.Scan (Path, Container, Strategy.Filters.all); end Scan; -- ------------------------------ -- Scan the directories which are defined in the directory queue and -- use the file container to scan the files and directories. -- ------------------------------ procedure Scan (Strategy : in out Strategy_Type; Queue : in out Babel.Files.Queues.Directory_Queue; Container : in out Babel.Files.File_Container'Class) is procedure Append_Directory (Directory : in Babel.Files.Directory_Type) is begin Babel.Files.Queues.Add_Directory (Queue, Directory); end Append_Directory; Dir : Babel.Files.Directory_Type; begin while Babel.Files.Queues.Has_Directory (Queue) loop Babel.Files.Queues.Peek_Directory (Queue, Dir); Container.Set_Directory (Dir); Strategy_Type'Class (Strategy).Scan (Dir, Container); Container.Each_Directory (Append_Directory'Access); end loop; end Scan; -- ------------------------------ -- Set the file filters that will be used when scanning the read store. -- ------------------------------ procedure Set_Filters (Strategy : in out Strategy_Type; Filters : in Babel.Filters.Filter_Type_Access) is begin Strategy.Filters := Filters; end Set_Filters; -- ------------------------------ -- Set the read and write stores that the strategy will use. -- ------------------------------ procedure Set_Stores (Strategy : in out Strategy_Type; Read : in Babel.Stores.Store_Type_Access; Write : in Babel.Stores.Store_Type_Access) is begin Strategy.Read_Store := Read; Strategy.Write_Store := Write; end Set_Stores; -- ------------------------------ -- Set the listeners to inform about changes. -- ------------------------------ procedure Set_Listeners (Strategy : in out Strategy_Type; Listeners : access Util.Listeners.List) is begin Strategy.Listeners := Listeners; end Set_Listeners; -- ------------------------------ -- Set the database for use by the strategy. -- ------------------------------ procedure Set_Database (Strategy : in out Strategy_Type; Database : in Babel.Base.Database_Access) is begin -- Strategy.Database := Database; null; end Set_Database; end Babel.Strategies;
39.951807
101
0.587153
41575863c2d3435f93caa9d0bf2af88046c93a3b
11,546
ads
Ada
src/dds-patches/dds-domainparticipantfactory.ads
alexcamposruiz/dds-requestreply
9f29d34554b5d3e9291151c6e92d2ce6cc31bb71
[ "MIT" ]
null
null
null
src/dds-patches/dds-domainparticipantfactory.ads
alexcamposruiz/dds-requestreply
9f29d34554b5d3e9291151c6e92d2ce6cc31bb71
[ "MIT" ]
null
null
null
src/dds-patches/dds-domainparticipantfactory.ads
alexcamposruiz/dds-requestreply
9f29d34554b5d3e9291151c6e92d2ce6cc31bb71
[ "MIT" ]
null
null
null
-- (c) Copyright, Real-Time Innovations, $Date:: 2012-02-16 #$ -- All rights reserved. -- -- No duplications, whole or partial, manual or electronic, may be made -- without express written permission. Any such copies, or -- revisions thereof, must display this notice unaltered. -- This code contains trade secrets of Real-Time Innovations, Inc. pragma Ada_05; with RTIDDS.Obj_Impl; with DDS.DomainParticipant; with DDS.DomainParticipantListener; private with RTIDDS.Low_Level.ndds_reda_reda_worker_impl_h; -- <module name="DDSDomainModule" actualName="Domain Module">domain</module> -- <dref>DomainParticipantFactory</dref> package DDS.DomainParticipantFactory is type Ref is new RTIDDS.Obj_Impl.Ref with private; type Ref_Access is access all Ref'Class; PARTICIPANT_QOS_DEFAULT : aliased DDS.DomainParticipantQos; -- <dref>PARTICIPANT_QOS_DEFAULT</dref> function Get_Instance return Ref_Access; -- <dref>DomainParticipantFactory_get_instance</dref> function Create_Participant (Self : not null access Ref; Domain_Id : in DDS.DomainId_T := Default_Domain; Qos : in DDS.DomainParticipantQos := PARTICIPANT_QOS_DEFAULT; A_Listener : in DDS.DomainParticipantListener.Ref_Access := null; Mask : in DDS.StatusMask := DDS.STATUS_MASK_NONE) return DDS.DomainParticipant.Ref_Access; -- <dref>DomainParticipantFactory_create_participant</dref> function Create_Participant_With_Profile (Self : not null access Ref; Domain_Id : in DDS.DomainId_T := Default_Domain; library_name : in DDS.String; profile_name : in DDS.String; A_Listener : in DDS.DomainParticipantListener.Ref_Access := null; Mask : in DDS.StatusMask := DDS.STATUS_MASK_NONE) return DDS.DomainParticipant.Ref_Access; function Create_Participant_With_Profile (Self : not null access Ref; Domain_Id : in DDS.DomainId_T := Default_Domain; library_name : in Standard.String; profile_name : in Standard.String; A_Listener : in DDS.DomainParticipantListener.Ref_Access := null; Mask : in DDS.StatusMask := DDS.STATUS_MASK_NONE) return DDS.DomainParticipant.Ref_Access; -- <dref>DomainParticipantFactory_create_participant_with_profile</dref> function Get_Or_Create_Participant (Self : not null access Ref; Domain_Id : in DDS.DomainId_T := Default_Domain; Qos : in DDS.DomainParticipantQos := DDS.DomainParticipantFactory.PARTICIPANT_QOS_DEFAULT; A_Listener : in DDS.DomainParticipantListener.Ref_Access := null; Mask : in DDS.StatusMask := STATUS_MASK_NONE)return DDS.DomainParticipant.Ref_Access; function Get_Or_Create_Participant_With_Profile (Self : not null access Ref; Domain_Id : in DDS.DomainId_T := Default_Domain; Library_Name : in DDS.String; Profile_Name : in DDS.String; A_Listener : in DDS.DomainParticipantListener.Ref_Access := null; Mask : in DDS.StatusMask := STATUS_MASK_NONE) return DDS.DomainParticipant.Ref_Access; procedure Delete_Participant (Self : not null access Ref; A_Participant : in out DDS.DomainParticipant.Ref_Access); -- <dref>DomainParticipantFactory_delete_participant</dref> function Lookup_Participant (Self : not null access Ref; Domain_Id : in DDS.DomainId_T) return DDS.DomainParticipant.Ref_Access; -- <dref>DomainParticipantFactory_lookup_participant</dref> procedure Set_Default_Participant_Qos (Self : not null access Ref; Qos : in DDS.DomainParticipantQos); -- <dref>DomainParticipantFactory_set_default_participant_qos</dref> procedure Set_Default_Participant_Qos_with_Profile (Self : not null access Ref; libraryName : in DDS.String; profile_name : in DDS.String); -- <dref>DomainParticipantFactory_set_default_participant_qos_with_profile</dref> procedure Get_Default_Participant_Qos (Self : not null access Ref; Qos : in out DDS.DomainParticipantQos); -- <dref>DomainParticipantFactory_get_default_participant_qos</dref> procedure Set_Qos (Self : not null access Ref; Qos : in DDS.DomainParticipantFactoryQos); -- <dref>DomainParticipantFactory_set_qos</dref> -- <internal> -- Sets the value for a participant factory QoS. -- The DDS_DomainParticipantFactoryQos::entity_factory can be changed. The other policies are immutable. -- Note that despite having QoS, the DDS_DomainParticipantFactory is not an DDS_Entity. -- Parameters: -- self <<in>> Cannot be NULL. -- qos <<in>> Set of policies to be applied to DDS_DomainParticipantFactory. Policies must be consistent. -- Immutable Policies Can Only Be Changed Before Calling Any Other -- Data Distribution Service Functions Except for DDS_DomainParticipantFactory_Get_Qos. -- Raises: -- One of the Standard Return Codes, DDS_RETCODE_IMMUTABLE_POLICY if immutable policy is changed, -- or DDS_RETCODE_INCONSISTENT_POLICY if Policies Are Inconsistent -- See also: -- DDS_DomainParticipantFactoryQos for rules on consistency among QoS -- </internal> procedure Load_Profiles (Self : not null access Ref); -- <dref>DomainParticipantFactory_load_profiles</dref> procedure Reload_Profiles (Self : not null access Ref); -- <dref>DomainParticipantFactory_reload_profiles</dref> procedure Unload_Profiles (Self : not null access Ref); -- <dref>DomainParticipantFactory_unload_profiles</dref> procedure Set_Default_Profile (Self : not null access Ref; library_name : DDS.String; profile_name : DDS.String); -- <dref>DomainParticipantFactory_set_default_profile</dref> procedure set_default_library (Self : not null access Ref; library_name : DDS.String); -- <dref>DomainParticipantFactory_set_default_library</dref> function get_default_library (Self : not null access Ref) return DDS.String; -- <dref>DomainParticipantFactory_get_default_library</dref> function get_default_Profile (Self : not null access Ref) return DDS.String; -- <dref>DomainParticipantFactory_get_default_profile</dref> function get_default_profile_library (Self : not null access Ref) return DDS.String; -- <dref>DomainParticipantFactory_get_default_profile_library</dref> procedure get_qos_profile_libraries (Self : not null access Ref; libSeq : not null access DDS.String_Seq.Sequence); function get_qos_profile_libraries (Self : not null access Ref) return DDS.String_Seq.Sequence; -- <dref>DomainParticipantFactory_get_qos_profile_libraries</dref> procedure get_qos_profiles (Self : not null access Ref; profSeq : not null access DDS.String_Seq.Sequence; libName : in DDS.String); function get_qos_profiles (Self : not null access Ref; libName : in DDS.String) return DDS.String_Seq.Sequence; -- <dref>DomainParticipantFactory_get_qos_profiles</dref> ----------------------------------------------------------- procedure get_participant_qos_from_profile (Self : not null access Ref; QoS : in out DDS.DomainParticipantQos; library_name : DDS.String; profile_name : DDS.String); -- <dref>DomainParticipantFactory_get_participant_qos_from_profile</dref> ------------------------------------------------------ procedure get_publisher_qos_from_profile (Self : not null access Ref; QoS : in out DDS.PublisherQos; library_name : DDS.String; profile_name : DDS.String); -- <dref>DomainParticipantFactory_get_publisher_qos_from_profile</dref> ------------------------------------------------------ procedure get_subscriber_qos_from_profile (Self : not null access Ref; QoS : in out DDS.SubscriberQos; library_name : DDS.String; profile_name : DDS.String); -- <dref>DomainParticipantFactory_get_subscriber_qos_from_profile</dref> ------------------------------------------------------ procedure get_datareader_qos_from_profile (Self : not null access Ref; QoS : in out DDS.DataReaderQos; library_name : DDS.String; profile_name : DDS.String); -- <dref>DomainParticipantFactory_get_datareader_qos_from_profile</dref> ------------------------------------------------------ procedure get_datareader_qos_from_profile_w_topic_name (Self : not null access Ref; QoS : in out DDS.DataReaderQos; library_name : DDS.String; profile_name : DDS.String; topic_name : DDS.String); -- <dref>DomainParticipantFactory_get_datareader_qos_from_profile_w_topic_name</dref> ------------------------------------------------------ procedure get_datawriter_qos_from_profile (Self : not null access Ref; QoS : in out DDS.DataWriterQos; library_name : DDS.String; profile_name : DDS.String); -- <dref>DomainParticipantFactory_get_datawriter_qos_from_profile</dref> ------------------------------------------------------ procedure get_datawriter_qos_from_profile_w_topic_name (Self : not null access Ref; QoS : in out DDS.DataWriterQos; library_name : DDS.String; profile_name : DDS.String; topic_name : DDS.String); -- <dref>DomainParticipantFactory_get_datawriter_qos_from_profile_w_topic_name</dref> ------------------------------------------------------ procedure get_topic_qos_from_profile (Self : not null access Ref; QoS : in out DDS.TopicQos; library_name : DDS.String; profile_name : DDS.String); -- <dref>DomainParticipantFactory_get_topic_qos_from_profile</dref> ------------------------------------------------------ procedure get_topic_qos_from_profile_w_topic_name (Self : not null access Ref; QoS : in out DDS.TopicQos; library_name : DDS.String; profile_name : DDS.String; topic_name : DDS.String); -- <dref>DomainParticipantFactory_get_topic_qos_from_profile_w_topic_name</dref> procedure Get_Qos (Self : not null access Ref; Qos : in out DDS.DomainParticipantFactoryQos); -- <dref>DomainParticipantFactory_get_qos</dref> procedure Finalize_Instance (Self : not null access Ref); -- <dref>DomainParticipantFactory_finalize_instance</dref> procedure Unregister_Thread (Self : not null access Ref); -- <dref>DomainParticipantFactory_unregister_thread</dref> private type Ref is new RTIDDS.Obj_Impl.Ref with null record; protected Initializeer is procedure Initialize; end Initializeer; procedure On_Thread_Started_Callback (OnStartedParam : System.Address; Worker : access RTIDDS.Low_Level.ndds_reda_reda_worker_impl_h.REDAWorker); pragma Convention (C, On_Thread_Started_Callback); procedure On_Thread_Stopped_Callback (OnStartedParam : System.Address; Worker : access RTIDDS.Low_Level.ndds_reda_reda_worker_impl_h.REDAWorker); pragma Convention (C, On_Thread_Stopped_Callback); end DDS.DomainParticipantFactory;
39.813793
113
0.674779
415ecc02ad9e1635c66ae7444db7eb6ef5965a26
1,553
ads
Ada
include/x86_64_linux_gnu_bits_stdint_intn_h.ads
bmsauer/termbox-ada
1bd00386f9eca292c19e8d335f22abbe25e86bea
[ "MIT" ]
4
2020-02-06T20:24:31.000Z
2020-09-04T18:32:24.000Z
include/x86_64_linux_gnu_bits_stdint_intn_h.ads
bmsauer/termbox-ada
1bd00386f9eca292c19e8d335f22abbe25e86bea
[ "MIT" ]
null
null
null
include/x86_64_linux_gnu_bits_stdint_intn_h.ads
bmsauer/termbox-ada
1bd00386f9eca292c19e8d335f22abbe25e86bea
[ "MIT" ]
null
null
null
pragma Ada_2005; pragma Style_Checks (Off); with Interfaces.C; use Interfaces.C; with x86_64_linux_gnu_bits_types_h; package x86_64_linux_gnu_bits_stdint_intn_h is -- Define intN_t types. -- Copyright (C) 2017-2018 Free Software Foundation, Inc. -- This file is part of the GNU C Library. -- The GNU C Library is free software; you can redistribute it and/or -- modify it under the terms of the GNU Lesser General Public -- License as published by the Free Software Foundation; either -- version 2.1 of the License, or (at your option) any later version. -- The GNU C Library 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 -- Lesser General Public License for more details. -- You should have received a copy of the GNU Lesser General Public -- License along with the GNU C Library; if not, see -- <http://www.gnu.org/licenses/>. subtype int8_t is x86_64_linux_gnu_bits_types_h.uu_int8_t; -- /usr/include/x86_64-linux-gnu/bits/stdint-intn.h:24 subtype int16_t is x86_64_linux_gnu_bits_types_h.uu_int16_t; -- /usr/include/x86_64-linux-gnu/bits/stdint-intn.h:25 subtype int32_t is x86_64_linux_gnu_bits_types_h.uu_int32_t; -- /usr/include/x86_64-linux-gnu/bits/stdint-intn.h:26 subtype int64_t is x86_64_linux_gnu_bits_types_h.uu_int64_t; -- /usr/include/x86_64-linux-gnu/bits/stdint-intn.h:27 end x86_64_linux_gnu_bits_stdint_intn_h;
47.060606
119
0.750161
41ca9df64bcf13a5b18f087b52842a4272218a77
4,474
adb
Ada
src/util-beans-objects-records.adb
Letractively/ada-util
e4c63b93635dc07c46e95f12ba02d18903b307b3
[ "Apache-2.0" ]
null
null
null
src/util-beans-objects-records.adb
Letractively/ada-util
e4c63b93635dc07c46e95f12ba02d18903b307b3
[ "Apache-2.0" ]
null
null
null
src/util-beans-objects-records.adb
Letractively/ada-util
e4c63b93635dc07c46e95f12ba02d18903b307b3
[ "Apache-2.0" ]
null
null
null
----------------------------------------------------------------------- -- Util.Beans.Objects.Records -- Generic Typed Data Representation -- Copyright (C) 2011 Stephane Carrez -- Written by Stephane Carrez ([email protected]) -- -- 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. ----------------------------------------------------------------------- package body Util.Beans.Objects.Records is use Util.Concurrent.Counters; -- ------------------------------ -- Bean Type -- ------------------------------ type Record_Bean_Type is new Bean_Type with null record; -- Get the type name function Get_Name (Type_Def : in Record_Bean_Type) return String; -- Convert the value into a boolean. function To_Boolean (Type_Def : in Record_Bean_Type; Value : in Object_Value) return Boolean; -- ------------------------------ -- Get the type name -- ------------------------------ function Get_Name (Type_Def : in Record_Bean_Type) return String is pragma Unreferenced (Type_Def); begin return "Bean_Record"; end Get_Name; -- ------------------------------ -- Convert the value into a boolean. -- ------------------------------ function To_Boolean (Type_Def : in Record_Bean_Type; Value : in Object_Value) return Boolean is pragma Unreferenced (Type_Def); begin return Value.Proxy /= null; end To_Boolean; Bn_Type : aliased Record_Bean_Type := Record_Bean_Type '(others => <>); -- ------------------------------ -- Create an object which holds a record of the type <b>Element_Type</b>. -- ------------------------------ function Create return Object is begin return Object '(Controlled with V => Object_Value '(Of_Type => TYPE_BEAN, Proxy => new Element_Proxy '(Ref_Counter => ONE, others => <>)), Type_Def => Bn_Type'Access); end Create; -- ------------------------------ -- Create an object which is initialized with the given value. -- ------------------------------ function To_Object (Value : in Element_Type) return Object is begin return Object '(Controlled with V => Object_Value '(Of_Type => TYPE_BEAN, Proxy => new Element_Proxy '(Ref_Counter => ONE, Value => Value)), Type_Def => Bn_Type'Access); end To_Object; -- ------------------------------ -- Returns the element -- ------------------------------ function To_Element (Value : in Object) return Element_Type is begin if Value.V.Of_Type /= TYPE_BEAN then raise Conversion_Error with "Object is not a bean"; end if; declare Proxy : constant Bean_Proxy_Access := Value.V.Proxy; begin if Proxy = null then raise Conversion_Error with "Object is null"; end if; if not (Proxy.all in Element_Proxy'Class) then raise Conversion_Error with "Object is not of the good type"; end if; return Element_Proxy'Class (Proxy.all).Value; end; end To_Element; -- ------------------------------ -- Returns an access to the element. -- ------------------------------ function To_Element_Access (Value : in Object) return Element_Type_Access is begin if Value.V.Of_Type /= TYPE_BEAN then return null; end if; declare Proxy : constant Bean_Proxy_Access := Value.V.Proxy; begin if Proxy = null then return null; end if; if not (Proxy.all in Element_Proxy'Class) then return null; end if; return Element_Proxy'Class (Proxy.all).Value'Access; end; end To_Element_Access; end Util.Beans.Objects.Records;
36.373984
82
0.535986
41da7b387e662ab92dcfd90891e0d39c70a63275
3,523
ads
Ada
tools/scitools/conf/understand/ada/ada12/s-pack38.ads
brucegua/moocos
575c161cfa35e220f10d042e2e5ca18773691695
[ "Apache-2.0" ]
1
2020-01-20T21:26:46.000Z
2020-01-20T21:26:46.000Z
tools/scitools/conf/understand/ada/ada12/s-pack38.ads
brucegua/moocos
575c161cfa35e220f10d042e2e5ca18773691695
[ "Apache-2.0" ]
null
null
null
tools/scitools/conf/understand/ada/ada12/s-pack38.ads
brucegua/moocos
575c161cfa35e220f10d042e2e5ca18773691695
[ "Apache-2.0" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- S Y S T E M . P A C K _ 3 8 -- -- -- -- S p e c -- -- -- -- Copyright (C) 1992-2009, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- -- -- -- -- -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- Handling of packed arrays with Component_Size = 38 package System.Pack_38 is pragma Preelaborate; Bits : constant := 38; type Bits_38 is mod 2 ** Bits; for Bits_38'Size use Bits; function Get_38 (Arr : System.Address; N : Natural) return Bits_38; -- Arr is the address of the packed array, N is the zero-based -- subscript. This element is extracted and returned. procedure Set_38 (Arr : System.Address; N : Natural; E : Bits_38); -- Arr is the address of the packed array, N is the zero-based -- subscript. This element is set to the given value. function GetU_38 (Arr : System.Address; N : Natural) return Bits_38; -- Arr is the address of the packed array, N is the zero-based -- subscript. This element is extracted and returned. This version -- is used when Arr may represent an unaligned address. procedure SetU_38 (Arr : System.Address; N : Natural; E : Bits_38); -- Arr is the address of the packed array, N is the zero-based -- subscript. This element is set to the given value. This version -- is used when Arr may represent an unaligned address end System.Pack_38;
57.754098
78
0.427477