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
1cd4ac6d4c2748253ecbdef3e00c38bf9087f2d6
3,296
ads
Ada
tools-src/gnu/gcc/gcc/ada/a-tiocst.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-tiocst.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-tiocst.ads
modern-tomato/tomato
96f09fab4929c6ddde5c9113f1b2476ad37133c4
[ "FSFAP" ]
69
2015-01-02T10:45:56.000Z
2021-09-06T07:52:13.000Z
------------------------------------------------------------------------------ -- -- -- GNAT RUNTIME COMPONENTS -- -- -- -- A D A . T E X T _ I O . C _ S T R E A M S -- -- -- -- S p e c -- -- -- -- $Revision$ -- -- -- Copyright (C) 1992,1993,1994,1995 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 provides an interface between Ada.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.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 : in File_Mode; C_Stream : in ICS.FILEs; Form : in String := ""); -- Create new file from existing stream end Ada.Text_IO.C_Streams;
57.824561
78
0.454187
100ff90ef28f000a7a6e29b13286744a8d2122b3
18,350
adb
Ada
source/zlib.adb
ytomino/zlib-ada
432310c122c25c703171f4c3883bd5c47d3bfd22
[ "Zlib", "Unlicense" ]
null
null
null
source/zlib.adb
ytomino/zlib-ada
432310c122c25c703171f4c3883bd5c47d3bfd22
[ "Zlib", "Unlicense" ]
null
null
null
source/zlib.adb
ytomino/zlib-ada
432310c122c25c703171f4c3883bd5c47d3bfd22
[ "Zlib", "Unlicense" ]
null
null
null
with Ada.Unchecked_Conversion; with System; with C.string; package body zlib is use type C.signed_int; use type C.size_t; type unsigned_char_array is array (C.size_t range <>) of aliased C.unsigned_char with Convention => C; pragma Suppress_Initialization (unsigned_char_array); -- C.unsigned_char_array is not generated in some cases Flush_Table : constant array (Boolean) of C.signed_int := (C.zlib.Z_NO_FLUSH, C.zlib.Z_FINISH); function To_String (S : not null access constant C.char) return String is Result : String (1 .. Natural (C.string.strlen (S))); for Result'Address use S.all'Address; begin return Result; end To_String; procedure Raise_Error (Result : C.signed_int); pragma No_Return (Raise_Error); procedure Raise_Error (Result : C.signed_int) is begin case Result is when C.zlib.Z_DATA_ERROR => raise Data_Error with To_String (C.zlib.zError (Result)); when C.zlib.Z_MEM_ERROR => raise Storage_Error with To_String (C.zlib.zError (Result)); when C.zlib.Z_BUF_ERROR => raise Constraint_Error with To_String (C.zlib.zError (Result)); when others => raise Use_Error with To_String (C.zlib.zError (Result)); end case; end Raise_Error; function Make_Window_Bits ( Window_Bits : zlib.Window_Bits; Header : Inflation_Header) return C.signed_int is begin case Header is when None => return -C.signed_int (Window_Bits); when Default => return C.signed_int (Window_Bits); when GZip => return C.signed_int (Window_Bits + 16); when Auto => return C.signed_int (Window_Bits + 32); end case; end Make_Window_Bits; procedure Internal_Deflate_Init ( Stream : in out zlib.Stream; Level : in Compression_Level; Method : in Compression_Method; Window_Bits : in zlib.Window_Bits; Header : in Deflation_Header; Memory_Level : in zlib.Memory_Level; Strategy : in zlib.Strategy) is function To_signed_int is new Ada.Unchecked_Conversion (Compression_Method, C.signed_int); function To_signed_int is new Ada.Unchecked_Conversion (zlib.Strategy, C.signed_int); NC_Stream : Non_Controlled_Stream renames Controlled.Reference (Stream).all; Result : C.signed_int; begin NC_Stream.Z_Stream.zalloc := null; NC_Stream.Z_Stream.zfree := null; NC_Stream.Z_Stream.opaque := C.void_ptr (System.Null_Address); Result := C.zlib.deflateInit2q ( NC_Stream.Z_Stream'Access, level => C.signed_int (Level), method => To_signed_int (Method), windowBits => Make_Window_Bits (Window_Bits, Header), memLevel => C.signed_int (Memory_Level), strategy => To_signed_int (Strategy), version => C.zlib.ZLIB_VERSION (C.zlib.ZLIB_VERSION'First)'Access, stream_size => C.zlib.z_stream'Size / System.Storage_Unit); if Result /= C.zlib.Z_OK then Raise_Error (Result); end if; NC_Stream.Finalize := C.zlib.deflateEnd'Access; NC_Stream.Is_Open := True; NC_Stream.Mode := Deflating; NC_Stream.Stream_End := False; end Internal_Deflate_Init; procedure Internal_Inflate_Init ( Stream : in out zlib.Stream; Window_Bits : in zlib.Window_Bits; Header : in Inflation_Header) is NC_Stream : Non_Controlled_Stream renames Controlled.Reference (Stream).all; Result : C.signed_int; begin NC_Stream.Z_Stream.zalloc := null; NC_Stream.Z_Stream.zfree := null; NC_Stream.Z_Stream.opaque := C.void_ptr (System.Null_Address); Result := C.zlib.inflateInit2q ( NC_Stream.Z_Stream'Access, windowBits => Make_Window_Bits (Window_Bits, Header), version => C.zlib.ZLIB_VERSION (C.zlib.ZLIB_VERSION'First)'Access, stream_size => C.zlib.z_stream'Size / System.Storage_Unit); if Result /= C.zlib.Z_OK then Raise_Error (Result); end if; NC_Stream.Finalize := C.zlib.inflateEnd'Access; NC_Stream.Is_Open := True; NC_Stream.Mode := Inflating; NC_Stream.Stream_End := False; end Internal_Inflate_Init; procedure Close ( NC_Stream : in out Non_Controlled_Stream; Raise_On_Error : Boolean) is Result : C.signed_int; begin Result := NC_Stream.Finalize (NC_Stream.Z_Stream'Access); if Result /= C.zlib.Z_OK and then Raise_On_Error then Raise_Error (Result); end if; NC_Stream.Is_Open := False; end Close; -- implementation procedure Deflate ( Stream : in out zlib.Stream; In_Item : in Ada.Streams.Stream_Element_Array; In_Last : out Ada.Streams.Stream_Element_Offset; Out_Item : out Ada.Streams.Stream_Element_Array; Out_Last : out Ada.Streams.Stream_Element_Offset; Finish : in Boolean; Finished : out Boolean) is pragma Check (Dynamic_Predicate, Check => Is_Open (Stream) or else raise Status_Error); pragma Check (Dynamic_Predicate, Check => Mode (Stream) = Deflating or else raise Mode_Error); NC_Stream : Non_Controlled_Stream renames Controlled.Reference (Stream).all; Z_Stream : constant not null access C.zlib.z_stream := NC_Stream.Z_Stream'Access; C_In_Size : constant C.size_t := In_Item'Length; C_In_Item : unsigned_char_array (0 .. C.size_t'Max (C_In_Size, 1) - 1); for C_In_Item'Address use In_Item'Address; C_Out_Size : constant C.size_t := Out_Item'Length; C_Out_Item : unsigned_char_array (0 .. C.size_t'Max (C_Out_Size, 1) - 1); for C_Out_Item'Address use Out_Item'Address; Result : C.signed_int; begin Z_Stream.next_in := C_In_Item (0)'Unchecked_Access; Z_Stream.avail_in := C.zconf.uInt (C_In_Size); Z_Stream.next_out := C_Out_Item (0)'Unchecked_Access; Z_Stream.avail_out := C.zconf.uInt (C_Out_Size); Result := C.zlib.deflate (Z_Stream, Flush_Table (Finish)); case Result is when C.zlib.Z_OK | C.zlib.Z_STREAM_END => In_Last := In_Item'First + Ada.Streams.Stream_Element_Offset (C_In_Size) - Ada.Streams.Stream_Element_Offset (Z_Stream.avail_in) - 1; Out_Last := Out_Item'First + Ada.Streams.Stream_Element_Offset (C_Out_Size) - Ada.Streams.Stream_Element_Offset (Z_Stream.avail_out) - 1; Finished := Result = C.zlib.Z_STREAM_END; if Finished then NC_Stream.Stream_End := True; end if; when others => Raise_Error (Result); end case; end Deflate; procedure Deflate ( Stream : in out zlib.Stream; In_Item : in Ada.Streams.Stream_Element_Array; In_Last : out Ada.Streams.Stream_Element_Offset; Out_Item : out Ada.Streams.Stream_Element_Array; Out_Last : out Ada.Streams.Stream_Element_Offset) is Dummy_Finished : Boolean; begin Deflate ( Stream, -- Status_Error would be raised if Stream is not open In_Item, In_Last, Out_Item, Out_Last, False, Dummy_Finished); end Deflate; procedure Deflate ( Stream : in out zlib.Stream; Out_Item : out Ada.Streams.Stream_Element_Array; Out_Last : out Ada.Streams.Stream_Element_Offset; Finish : in Boolean; Finished : out Boolean) is Dummy_In_Item : Ada.Streams.Stream_Element_Array (1 .. 0); Dummy_In_Last : Ada.Streams.Stream_Element_Offset; begin Deflate ( Stream, -- Status_Error would be raised if Stream is not open Dummy_In_Item, Dummy_In_Last, Out_Item, Out_Last, Finish, Finished); end Deflate; function Deflate_Init ( Level : Compression_Level := Default_Compression; Method : Compression_Method := Deflated; Window_Bits : zlib.Window_Bits := Default_Window_Bits; Header : Deflation_Header := Default; Memory_Level : zlib.Memory_Level := Default_Memory_Level; Strategy : zlib.Strategy := Default_Strategy) return Stream is begin return Result : Stream do Internal_Deflate_Init ( Result, Level, Method, Window_Bits, Header, Memory_Level, Strategy); end return; end Deflate_Init; procedure Deflate_Or_Inflate ( Stream : in out zlib.Stream; In_Item : in Ada.Streams.Stream_Element_Array; In_Last : out Ada.Streams.Stream_Element_Offset; Out_Item : out Ada.Streams.Stream_Element_Array; Out_Last : out Ada.Streams.Stream_Element_Offset; Finish : in Boolean; Finished : out Boolean) is pragma Check (Dynamic_Predicate, Check => Is_Open (Stream) or else raise Status_Error); NC_Stream : Non_Controlled_Stream renames Controlled.Reference (Stream).all; begin case NC_Stream.Mode is when Deflating => Deflate ( Stream, In_Item, In_Last, Out_Item, Out_Last, Finish, Finished); when Inflating => Inflate ( Stream, In_Item, In_Last, Out_Item, Out_Last, Finish, Finished); end case; end Deflate_Or_Inflate; procedure Inflate ( Stream : in out zlib.Stream; In_Item : in Ada.Streams.Stream_Element_Array; In_Last : out Ada.Streams.Stream_Element_Offset; Out_Item : out Ada.Streams.Stream_Element_Array; Out_Last : out Ada.Streams.Stream_Element_Offset; Finish : in Boolean; Finished : out Boolean) is pragma Check (Dynamic_Predicate, Check => Is_Open (Stream) or else raise Status_Error); pragma Check (Dynamic_Predicate, Check => Mode (Stream) = Inflating or else raise Mode_Error); NC_Stream : Non_Controlled_Stream renames Controlled.Reference (Stream).all; Z_Stream : constant not null access C.zlib.z_stream := NC_Stream.Z_Stream'Access; C_In_Size : constant C.size_t := In_Item'Length; C_In_Item : unsigned_char_array (0 .. C.size_t'Max (C_In_Size, 1) - 1); for C_In_Item'Address use In_Item'Address; C_Out_Size : constant C.size_t := Out_Item'Length; C_Out_Item : unsigned_char_array (0 .. C.size_t'Max (C_Out_Size, 1) - 1); for C_Out_Item'Address use Out_Item'Address; Result : C.signed_int; begin Z_Stream.next_in := C_In_Item (0)'Unchecked_Access; Z_Stream.avail_in := C.zconf.uInt (C_In_Size); Z_Stream.next_out := C_Out_Item (0)'Unchecked_Access; Z_Stream.avail_out := C.zconf.uInt (C_Out_Size); Result := C.zlib.inflate (Z_Stream, Flush_Table (Finish)); case Result is when C.zlib.Z_OK | C.zlib.Z_STREAM_END => In_Last := In_Item'First + Ada.Streams.Stream_Element_Offset (C_In_Size) - Ada.Streams.Stream_Element_Offset (Z_Stream.avail_in) - 1; Out_Last := Out_Item'First + Ada.Streams.Stream_Element_Offset (C_Out_Size) - Ada.Streams.Stream_Element_Offset (Z_Stream.avail_out) - 1; Finished := Result = C.zlib.Z_STREAM_END; if Finished then NC_Stream.Stream_End := True; end if; when others => Raise_Error (Result); end case; end Inflate; procedure Inflate ( Stream : in out zlib.Stream; In_Item : in Ada.Streams.Stream_Element_Array; In_Last : out Ada.Streams.Stream_Element_Offset; Out_Item : out Ada.Streams.Stream_Element_Array; Out_Last : out Ada.Streams.Stream_Element_Offset) is Dummy_Finished : Boolean; begin Inflate ( Stream, -- Status_Error would be raised if Stream is not open In_Item, In_Last, Out_Item, Out_Last, False, Dummy_Finished); end Inflate; procedure Inflate ( Stream : in out zlib.Stream; Out_Item : out Ada.Streams.Stream_Element_Array; Out_Last : out Ada.Streams.Stream_Element_Offset; Finish : in Boolean; Finished : out Boolean) is Dummy_In_Item : Ada.Streams.Stream_Element_Array (1 .. 0); Dummy_In_Last : Ada.Streams.Stream_Element_Offset; begin Inflate ( Stream, -- Status_Error would be raised if Stream is not open Dummy_In_Item, Dummy_In_Last, Out_Item, Out_Last, Finish, Finished); end Inflate; function Inflate_Init ( Window_Bits : zlib.Window_Bits := Default_Window_Bits; Header : Inflation_Header := Auto) return Stream is begin return Result : Stream do Internal_Inflate_Init (Result, Window_Bits, Header); end return; end Inflate_Init; procedure Close (Stream : in out zlib.Stream) is pragma Check (Dynamic_Predicate, Check => Is_Open (Stream) or else raise Status_Error); NC_Stream : Non_Controlled_Stream renames Controlled.Reference (Stream).all; begin Close (NC_Stream, Raise_On_Error => True); end Close; function Is_Open (Stream : zlib.Stream) return Boolean is NC_Stream : Non_Controlled_Stream renames Controlled.Constant_Reference (Stream).all; begin return NC_Stream.Is_Open; end Is_Open; function Mode ( Stream : zlib.Stream) return Stream_Mode is pragma Check (Dynamic_Predicate, Check => Is_Open (Stream) or else raise Status_Error); NC_Stream : Non_Controlled_Stream renames Controlled.Constant_Reference (Stream).all; begin return NC_Stream.Mode; end Mode; function Total_In ( Stream : zlib.Stream) return Ada.Streams.Stream_Element_Count is pragma Check (Dynamic_Predicate, Check => Is_Open (Stream) or else raise Status_Error); NC_Stream : Non_Controlled_Stream renames Controlled.Constant_Reference (Stream).all; begin return Ada.Streams.Stream_Element_Count (NC_Stream.Z_Stream.total_in); end Total_In; function Total_Out ( Stream : zlib.Stream) return Ada.Streams.Stream_Element_Count is pragma Check (Dynamic_Predicate, Check => Is_Open (Stream) or else raise Status_Error); NC_Stream : Non_Controlled_Stream renames Controlled.Constant_Reference (Stream).all; begin return Ada.Streams.Stream_Element_Count (NC_Stream.Z_Stream.total_out); end Total_Out; function Version return String is begin return To_String (C.zlib.zlibVersion); end Version; package body Controlled is function Constant_Reference (Object : zlib.Stream) return not null access constant Non_Controlled_Stream is begin return Stream (Object).Data'Unchecked_Access; end Constant_Reference; function Reference (Object : in out zlib.Stream) return not null access Non_Controlled_Stream is begin return Stream (Object).Variable_View.Data'Access; end Reference; overriding procedure Finalize (Object : in out Stream) is begin if Object.Data.Is_Open then Close (Object.Data, Raise_On_Error => False); end if; end Finalize; end Controlled; -- compatibility procedure Deflate_Init ( Filter : in out Filter_Type; Level : in Compression_Level := Default_Compression; Method : in Compression_Method := Deflated; Window_Bits : in zlib.Window_Bits := Default_Window_Bits; Header : in Deflation_Header := Default; Memory_Level : in zlib.Memory_Level := Default_Memory_Level; Strategy : in Strategy_Type := Default_Strategy) is pragma Check (Dynamic_Predicate, Check => not Is_Open (Filter) or else raise Status_Error); begin Internal_Deflate_Init ( Filter, Level, Method, Window_Bits, Header, Memory_Level, Strategy); end Deflate_Init; procedure Generic_Translate (Filter : in out Filter_Type) is NC_Filter : Non_Controlled_Stream renames Controlled.Reference (Filter).all; In_Item : Ada.Streams.Stream_Element_Array (1 .. 2 ** 15); In_First : Ada.Streams.Stream_Element_Offset := In_Item'Last + 1; In_Last : Ada.Streams.Stream_Element_Offset; In_Used : Ada.Streams.Stream_Element_Offset; Out_Item : Ada.Streams.Stream_Element_Array (1 .. 2 ** 15); Out_Last : Ada.Streams.Stream_Element_Offset; begin loop if In_First > In_Item'Last then Data_In (In_Item, In_Last); In_First := In_Item'First; end if; Translate ( Filter, -- Status_Error would be raised if Filter is not open In_Item (In_First .. In_Last), In_Used, Out_Item, Out_Last, In_Last < In_Item'Last); Data_Out (Out_Item (Out_Item'First .. Out_Last)); exit when NC_Filter.Stream_End; In_First := In_Used + 1; end loop; end Generic_Translate; procedure Inflate_Init ( Filter : in out Filter_Type; Window_Bits : in zlib.Window_Bits := Default_Window_Bits; Header : in Header_Type := Auto) is pragma Check (Dynamic_Predicate, Check => not Is_Open (Filter) or else raise Status_Error); begin Internal_Inflate_Init (Filter, Window_Bits, Header); end Inflate_Init; procedure Read ( Filter : in out Filter_Type; Item : out Ada.Streams.Stream_Element_Array; Last : out Ada.Streams.Stream_Element_Offset; Flush : in Flush_Mode := No_Flush) is pragma Check (Dynamic_Predicate, Check => Is_Open (Filter) or else raise Status_Error); NC_Filter : Non_Controlled_Stream renames Controlled.Reference (Filter).all; begin if NC_Filter.Stream_End then Last := Item'First - 1; else declare In_Used : Ada.Streams.Stream_Element_Offset; Out_First : Ada.Streams.Stream_Element_Offset := Item'First; Finish : Boolean := Flush; begin loop if Rest_First > Rest_Last then Read (Buffer, Rest_Last); Rest_First := Buffer'First; if NC_Filter.Mode = Deflating then Finish := Finish or else Rest_Last < Buffer'Last; end if; end if; Translate ( Filter, Buffer (Rest_First .. Rest_Last), In_Used, Item (Out_First .. Item'Last), Last, Finish); Rest_First := In_Used + 1; exit when NC_Filter.Stream_End or else Last >= Item'Last; Out_First := Last + 1; end loop; end; end if; end Read; procedure Translate ( Filter : in out Filter_Type; In_Data : in Ada.Streams.Stream_Element_Array; In_Last : out Ada.Streams.Stream_Element_Offset; Out_Data : out Ada.Streams.Stream_Element_Array; Out_Last : out Ada.Streams.Stream_Element_Offset; Flush : in Flush_Mode) is Dummy_Finished : Boolean; begin Deflate_Or_Inflate ( Filter, -- Status_Error would be raised if Filter is not open In_Data, In_Last, Out_Data, Out_Last, Flush, Dummy_Finished); end Translate; procedure Write ( Filter : in out Filter_Type; Item : in Ada.Streams.Stream_Element_Array; Flush : in Flush_Mode := No_Flush) is begin if Flush or else Item'First <= Item'Last then declare In_First : Ada.Streams.Stream_Element_Offset := Item'First; begin loop declare In_Used : Ada.Streams.Stream_Element_Offset; Out_Item : Ada.Streams.Stream_Element_Array (1 .. 2 ** 15); Out_Last : Ada.Streams.Stream_Element_Offset; Finished : Boolean; begin Deflate_Or_Inflate ( Filter, -- Status_Error would be raised if it is not open Item (In_First .. Item'Last), In_Used, Out_Item, Out_Last, Flush, Finished); Write (Out_Item (Out_Item'First .. Out_Last)); exit when Finished or else In_Used >= Item'Last; In_First := In_Used + 1; end; end loop; end; end if; end Write; end zlib;
29.407051
75
0.719455
dc7d74bc05be54303a9e226212f01562fe7378fb
285
ads
Ada
source/strings/a-sbstfu.ads
ytomino/drake
4e4bdcd8b8e23a11a29b31d3a8861fdf60090ea2
[ "MIT" ]
33
2015-04-04T09:19:36.000Z
2021-11-10T05:33:34.000Z
source/strings/a-sbstfu.ads
ytomino/drake
4e4bdcd8b8e23a11a29b31d3a8861fdf60090ea2
[ "MIT" ]
8
2017-11-14T13:05:07.000Z
2018-08-09T15:28:49.000Z
source/strings/a-sbstfu.ads
ytomino/drake
4e4bdcd8b8e23a11a29b31d3a8861fdf60090ea2
[ "MIT" ]
9
2015-02-03T17:09:53.000Z
2021-11-12T01:16:05.000Z
pragma License (Unrestricted); -- extended unit with Ada.Strings.Functions; with Ada.Strings.Generic_Bounded.Generic_Functions; package Ada.Strings.Bounded_Strings.Functions is new Generic_Functions (Strings.Functions); pragma Preelaborate (Ada.Strings.Bounded_Strings.Functions);
35.625
60
0.831579
dce2f12d8f81648a5adb51734ea7bf659c6cf134
4,564
ads
Ada
llvm-gcc-4.2-2.9/gcc/ada/switch.ads
vidkidz/crossbridge
ba0bf94aee0ce6cf7eb5be882382e52bc57ba396
[ "MIT" ]
1
2016-04-09T02:58:13.000Z
2016-04-09T02:58:13.000Z
llvm-gcc-4.2-2.9/gcc/ada/switch.ads
vidkidz/crossbridge
ba0bf94aee0ce6cf7eb5be882382e52bc57ba396
[ "MIT" ]
null
null
null
llvm-gcc-4.2-2.9/gcc/ada/switch.ads
vidkidz/crossbridge
ba0bf94aee0ce6cf7eb5be882382e52bc57ba396
[ "MIT" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- S W I T C H -- -- -- -- S p e c -- -- -- -- Copyright (C) 1992-2005 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, 51 Franklin Street, Fifth Floor, -- -- Boston, MA 02110-1301, USA. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- This package together with a child package appropriate to the client -- tool scans switches. Note that the body of the appropraite Usage package -- must be coordinated with the switches that are recognized by this package. -- These Usage packages also act as the official documentation for the -- switches that are recognized. In addition, package Debug documents -- the otherwise undocumented debug switches that are also recognized. with Types; use Types; package Switch is -- Note: The default switch character is indicated by Switch_Character, -- but regardless of what it is, a hyphen is always allowed as an -- (alternative) switch character. -- Note: In GNAT, the case of switches is not significant if -- Switches_Case_Sensitive is False. If this is the case, switch -- characters, or letters appearing in the parameter to a switch, may be -- either upper case or lower case. ----------------- -- Subprograms -- ----------------- function Is_Switch (Switch_Chars : String) return Boolean; -- Returns True iff Switch_Chars is at least two characters long, -- and the first character indicates it is a switch. function Is_Front_End_Switch (Switch_Chars : String) return Boolean; -- Returns True iff Switch_Chars represents a front-end switch, -- ie. it starts with -I or -gnat. private -- This section contains some common routines used by the tool dependent -- child packages (there is one such child package for each tool that -- uses Switches to scan switches - Compiler/gnatbind/gnatmake/. Switch_Max_Value : constant := 999_999; -- Maximum value permitted in switches that take a value procedure Scan_Nat (Switch_Chars : String; Max : Integer; Ptr : in out Integer; Result : out Nat; Switch : Character); -- Scan natural integer parameter for switch. On entry, Ptr points -- just past the switch character, on exit it points past the last -- digit of the integer value. procedure Scan_Pos (Switch_Chars : String; Max : Integer; Ptr : in out Integer; Result : out Pos; Switch : Character); -- Scan positive integer parameter for switch. On entry, Ptr points -- just past the switch character, on exit it points past the last -- digit of the integer value. procedure Bad_Switch (Switch : Character); procedure Bad_Switch (Switch : String); -- Fail with an appropriate message when a switch is not recognized end Switch;
49.075269
78
0.545355
0e340b63d5d93bfc2b4d12e3b2dd99e605c81f9d
865
ads
Ada
source/report_parsers.ads
jquorning/CELLE
0584a22bd48464c2727751fca9dbca079e217b0c
[ "blessing" ]
null
null
null
source/report_parsers.ads
jquorning/CELLE
0584a22bd48464c2727751fca9dbca079e217b0c
[ "blessing" ]
null
null
null
source/report_parsers.ads
jquorning/CELLE
0584a22bd48464c2727751fca9dbca079e217b0c
[ "blessing" ]
null
null
null
-- -- The author disclaims copyright to this source code. In place of -- a legal notice, here is a blessing: -- -- May you do good and not evil. -- May you find forgiveness for yourself and forgive others. -- May you share freely, not taking more than you give. -- package Report_Parsers is type Context_Access is private; -- (Global : in Lime.Lemon_Record) XXX function Get_Context return Context_Access; -- Get access to the parser part of then Lemon_Record -- function Get_ARG (Parser : in Context_Access) return String; function Get_CTX (Parser : in Context_Access) return String; procedure Trim_Right_Symbol (Item : in String; Pos : out Natural); -- Split Item at Pos private type Context_Record; type Context_Access is access all Context_Record; end Report_Parsers;
27.03125
68
0.689017
39a55e64df879bc549307efe4d149d9f0e36296e
22,031
adb
Ada
Validation/pyFrame3DD-master/gcc-master/gcc/ada/gnat_cuda.adb
djamal2727/Main-Bearing-Analytical-Model
2f00c2219c71be0175c6f4f8f1d4cca231d97096
[ "Apache-2.0" ]
null
null
null
Validation/pyFrame3DD-master/gcc-master/gcc/ada/gnat_cuda.adb
djamal2727/Main-Bearing-Analytical-Model
2f00c2219c71be0175c6f4f8f1d4cca231d97096
[ "Apache-2.0" ]
null
null
null
Validation/pyFrame3DD-master/gcc-master/gcc/ada/gnat_cuda.adb
djamal2727/Main-Bearing-Analytical-Model
2f00c2219c71be0175c6f4f8f1d4cca231d97096
[ "Apache-2.0" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- C U D A -- -- -- -- B o d y -- -- -- -- Copyright (C) 2010-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. 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 COPYING3. If not, go to -- -- http://www.gnu.org/licenses for a complete copy of the license. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- This package defines CUDA-specific datastructures and functions. with Atree; use Atree; with Debug; use Debug; with Elists; use Elists; with Namet; use Namet; with Nlists; use Nlists; with Nmake; use Nmake; with Rtsfind; use Rtsfind; with Sinfo; use Sinfo; with Stringt; use Stringt; with Tbuild; use Tbuild; with Uintp; use Uintp; with Sem; use Sem; with Sem_Util; use Sem_Util; with Snames; use Snames; with GNAT.HTable; package body GNAT_CUDA is -------------------------------------- -- Hash Table for CUDA_Global nodes -- -------------------------------------- type Hash_Range is range 0 .. 510; -- Size of hash table headers function Hash (F : Entity_Id) return Hash_Range; -- Hash function for hash table package CUDA_Kernels_Table is new GNAT.HTable.Simple_HTable (Header_Num => Hash_Range, Element => Elist_Id, No_Element => No_Elist, Key => Entity_Id, Hash => Hash, Equal => "="); -- The keys of this table are package entities whose bodies contain at -- least one procedure marked with aspect CUDA_Global. The values are -- Elists of the marked procedures. function Get_CUDA_Kernels (Pack_Id : Entity_Id) return Elist_Id; -- Returns an Elist of all procedures marked with pragma CUDA_Global that -- are declared within package body Pack_Body. Returns No_Elist if -- Pack_Id does not contain such procedures. procedure Set_CUDA_Kernels (Pack_Id : Entity_Id; Kernels : Elist_Id); -- Stores Kernels as the list of kernels belonging to the package entity -- Pack_Id. Pack_Id must not have a list of kernels. --------------------- -- Add_CUDA_Kernel -- --------------------- procedure Add_CUDA_Kernel (Pack_Id : Entity_Id; Kernel : Entity_Id) is Kernels : Elist_Id := Get_CUDA_Kernels (Pack_Id); begin if Kernels = No_Elist then Kernels := New_Elmt_List; Set_CUDA_Kernels (Pack_Id, Kernels); end if; Append_Elmt (Kernel, Kernels); end Add_CUDA_Kernel; ---------- -- Hash -- ---------- function Hash (F : Entity_Id) return Hash_Range is begin return Hash_Range (F mod 511); end Hash; ---------------------- -- Get_CUDA_Kernels -- ---------------------- function Get_CUDA_Kernels (Pack_Id : Entity_Id) return Elist_Id is begin return CUDA_Kernels_Table.Get (Pack_Id); end Get_CUDA_Kernels; ------------------------------------------ -- Build_And_Insert_CUDA_Initialization -- ------------------------------------------ procedure Build_And_Insert_CUDA_Initialization (N : Node_Id) is -- For the following kernel declaration: -- -- package body <Package_Name> is -- procedure <Proc_Name> (X : Integer) with CUDA_Global; -- end package; -- -- Insert the following declarations: -- -- Fat_Binary : System.Address; -- pragma Import -- (Convention => C, -- Entity => Fat_Binary, -- External_Name => "_binary_<Package_Name>_fatbin_start"); -- -- Wrapper : Fatbin_Wrapper := -- (16#466243b1#, 1, Fat_Binary'Address, System.Null_Address); -- -- Proc_Symbol_Name : Interfaces.C.Strings.Chars_Ptr := -- Interfaces.C.Strings.New_Char_Array("<Proc_Name>"); -- -- Fat_Binary_Handle : System.Address := -- CUDA.Internal.Register_Fat_Binary (Wrapper'Address); -- -- procedure Initialize_CUDA_Kernel is -- begin -- CUDA.Internal.Register_Function -- (Fat_Binary_Handle, -- <Proc_Name>'Address, -- Proc_Symbol_Name, -- Proc_Symbol_Name, -- -1, -- System.Null_Address, -- System.Null_Address, -- System.Null_Address, -- System.Null_Address, -- System.Null_Address); -- CUDA.Internal.Register_Fat_Binary_End (Fat_Binary_Handle); -- end Initialize_CUDA_Kernel; -- -- Proc_Symbol_Name is the name of the procedure marked with -- CUDA_Global. The CUDA runtime uses this in order to be able to find -- kernels in the fat binary, so it has to match the name of the -- procedure symbol compiled by GNAT_LLVM. When looking at the code -- generated by NVCC, it seems that the CUDA runtime also needs the name -- of the procedure symbol of the host. Fortuantely, the procedures are -- named the same way whether they are compiled for the host or the -- device, so we use Vector_Add_Name to specify the name of the symbol -- for both the host and the device. The meaning of the rest of the -- arguments is unknown. function Build_CUDA_Init_Proc (Init_Id : Entity_Id; CUDA_Kernels : Elist_Id; Handle_Id : Entity_Id; Pack_Decls : List_Id) return Node_Id; -- Create the declaration of Init_Id, the function that binds each -- kernel present in CUDA_Kernels with the fat binary Handle_Id and then -- tells the CUDA runtime that no new function will be bound to the fat -- binary. function Build_Fat_Binary_Declaration (Bin_Id : Entity_Id) return Node_Id; -- Create a declaration for Bin_Id, the entity that represents the fat -- binary, i.e.: -- -- Bin_Id : System.Address; function Build_Fat_Binary_Handle_Declaration (Handle_Id : Entity_Id; Wrapper_Id : Entity_Id) return Node_Id; -- Create the declaration of Handle_Id, a System.Address that will -- receive the results of passing the address of Wrapper_Id to -- CUDA.Register_Fat_Binary, i.e.: -- -- Handle_Id : System.Address := -- CUDA.Register_Fat_Binary (Wrapper_Id'Address) function Build_Fat_Binary_Wrapper_Declaration (Wrapper_Id : Entity_Id; Bin_Id : Entity_Id) return Node_Id; -- Create the declaration of the fat binary wrapper Wrapper_Id, which -- holds magic numbers and Bin_Id'Address, i.e.: -- -- Wrapper_Id : System.Address := -- (16#466243b1#, 1, Bin_Id'Address, System.Null_Address); function Build_Import_Pragma (Bin_Id : Entity_Id; Pack_Body : Node_Id) return Node_Id; -- Create a pragma that will bind the fat binary Bin_Id to its external -- symbol. N is the package body Bin_Id belongs to, i.e.: -- -- pragma Import -- (Convention => C, -- Entity => Bin_Id, -- External_Name => "_binary_<Pack_Body's name>_fatbin_start"); function Build_Kernel_Name_Declaration (Kernel : Entity_Id) return Node_Id; -- Create the declaration of a C string that contains the name of -- Kernel's symbol, i.e.: -- -- Kernel : Interfaces.C.Strings.Chars_Ptr := -- Interfaces.C.Strings.New_Char_Array("<Kernel's name>"); function Build_Register_Procedure_Call (Loc : Source_Ptr; Bin : Entity_Id; Kernel : Entity_Id; Kernel_Name : Entity_Id) return Node_Id; -- Return a call to CUDA.Internal.Register_Function that binds Kernel -- (the entity of a procedure) to the symbol described by the C string -- Kernel_Name in the fat binary Bin, using Loc as location. -------------------------- -- Build_CUDA_Init_Proc -- -------------------------- function Build_CUDA_Init_Proc (Init_Id : Entity_Id; CUDA_Kernels : Elist_Id; Handle_Id : Entity_Id; Pack_Decls : List_Id) return Node_Id is Loc : constant Source_Ptr := Sloc (Init_Id); Stmts : constant List_Id := New_List; -- List of statements that will be used by the cuda initialization -- function. New_Stmt : Node_Id; -- Temporary variable to hold the various newly-created nodes. Kernel_Elmt : Elmt_Id; Kernel_Id : Entity_Id; begin -- For each CUDA_Global function, declare a C string that holds -- its symbol's name (i.e. packagename __ functionname). -- Also create a function call to CUDA.Internal.Register_Function -- that takes the declared C string, a pointer to the function and -- the fat binary handle. Kernel_Elmt := First_Elmt (CUDA_Kernels); while Present (Kernel_Elmt) loop Kernel_Id := Node (Kernel_Elmt); New_Stmt := Build_Kernel_Name_Declaration (Kernel_Id); Append (New_Stmt, Pack_Decls); Analyze (New_Stmt); Append_To (Stmts, Build_Register_Procedure_Call (Loc, Bin => Handle_Id, Kernel => Kernel_Id, Kernel_Name => Defining_Entity (New_Stmt))); Next_Elmt (Kernel_Elmt); end loop; -- Finish the CUDA initialization function: add a call to -- register_fat_binary_end, to let the CUDA runtime know that we -- won't be registering any other symbol with the current fat binary. Append_To (Stmts, Make_Procedure_Call_Statement (Loc, Name => New_Occurrence_Of (RTE (RE_Register_Fat_Binary_End), Loc), Parameter_Associations => New_List (New_Occurrence_Of (Handle_Id, Loc)))); -- Now that we have all the declarations and calls we need, we can -- build and and return the initialization procedure. return Make_Subprogram_Body (Loc, Specification => Make_Procedure_Specification (Loc, Init_Id), Declarations => New_List, Handled_Statement_Sequence => Make_Handled_Sequence_Of_Statements (Loc, Stmts)); end Build_CUDA_Init_Proc; ---------------------------------- -- Build_Fat_Binary_Declaration -- ---------------------------------- function Build_Fat_Binary_Declaration (Bin_Id : Entity_Id) return Node_Id is begin return Make_Object_Declaration (Sloc (Bin_Id), Defining_Identifier => Bin_Id, Object_Definition => New_Occurrence_Of (RTE (RE_Address), Sloc (Bin_Id))); end Build_Fat_Binary_Declaration; ----------------------------------------- -- Build_Fat_Binary_Handle_Declaration -- ----------------------------------------- function Build_Fat_Binary_Handle_Declaration (Handle_Id : Entity_Id; Wrapper_Id : Entity_Id) return Node_Id is Loc : constant Source_Ptr := Sloc (Handle_Id); begin -- Generate: -- Handle_Id : System.Address := -- CUDA.Register_Fat_Binary (Wrapper_Id'Address); return Make_Object_Declaration (Loc, Defining_Identifier => Handle_Id, Object_Definition => New_Occurrence_Of (RTE (RE_Address), Loc), Expression => Make_Function_Call (Loc, Name => New_Occurrence_Of (RTE (RE_Register_Fat_Binary), Loc), Parameter_Associations => New_List ( Make_Attribute_Reference (Loc, Prefix => New_Occurrence_Of (Wrapper_Id, Loc), Attribute_Name => Name_Address)))); end Build_Fat_Binary_Handle_Declaration; ------------------------------------------ -- Build_Fat_Binary_Wrapper_Declaration -- ------------------------------------------ function Build_Fat_Binary_Wrapper_Declaration (Wrapper_Id : Entity_Id; Bin_Id : Entity_Id) return Node_Id is Loc : constant Source_Ptr := Sloc (Wrapper_Id); begin return Make_Object_Declaration (Loc, Defining_Identifier => Wrapper_Id, Object_Definition => New_Occurrence_Of (RTE (RE_Fatbin_Wrapper), Loc), Expression => Make_Aggregate (Loc, Expressions => New_List ( Make_Integer_Literal (Loc, UI_From_Int (16#466243b1#)), Make_Integer_Literal (Loc, UI_From_Int (1)), Make_Attribute_Reference (Loc, Prefix => New_Occurrence_Of (Bin_Id, Loc), Attribute_Name => Name_Address), New_Occurrence_Of (RTE (RE_Null_Address), Loc)))); end Build_Fat_Binary_Wrapper_Declaration; ------------------------- -- Build_Import_Pragma -- ------------------------- function Build_Import_Pragma (Bin_Id : Entity_Id; Pack_Body : Node_Id) return Node_Id is Loc : constant Source_Ptr := Sloc (Bin_Id); External_Symbol : String_Id; begin Start_String; Store_String_Chars ("_binary_" & Get_Name_String (Chars (Defining_Unit_Name (Pack_Body))) & "_fatbin_start"); External_Symbol := End_String; return Make_Pragma (Loc, Pragma_Identifier => Make_Identifier (Loc, Name_Import), Pragma_Argument_Associations => New_List ( Make_Pragma_Argument_Association (Loc, Chars => Name_Convention, Expression => Make_Identifier (Loc, Name_C)), Make_Pragma_Argument_Association (Loc, Chars => Name_Entity, Expression => New_Occurrence_Of (Bin_Id, Loc)), Make_Pragma_Argument_Association (Loc, Chars => Name_External_Name, Expression => Make_String_Literal (Loc, External_Symbol)))); end Build_Import_Pragma; ------------------------------------- -- Build_Kernel_Name_Declaration -- ------------------------------------- function Build_Kernel_Name_Declaration (Kernel : Entity_Id) return Node_Id is Loc : constant Source_Ptr := Sloc (Kernel); Package_Name : constant String := Get_Name_String (Chars (Scope (Kernel))); Symbol_Name : constant String := Get_Name_String (Chars (Kernel)); Kernel_Name : String_Id; begin Start_String; Store_String_Chars (Package_Name & "__" & Symbol_Name); Kernel_Name := End_String; return Make_Object_Declaration (Loc, Defining_Identifier => Make_Temporary (Loc, 'C'), Object_Definition => New_Occurrence_Of (RTE (RE_Chars_Ptr), Loc), Expression => Make_Function_Call (Loc, Name => New_Occurrence_Of (RTE (RE_New_Char_Array), Loc), Parameter_Associations => New_List ( Make_String_Literal (Loc, Kernel_Name)))); end Build_Kernel_Name_Declaration; ----------------------------------- -- Build_Register_Procedure_Call -- ----------------------------------- function Build_Register_Procedure_Call (Loc : Source_Ptr; Bin : Entity_Id; Kernel : Entity_Id; Kernel_Name : Entity_Id) return Node_Id is Args : constant List_Id := New_List; begin -- First argument: the handle of the fat binary. Append (New_Occurrence_Of (Bin, Loc), Args); -- Second argument: the host address of the function that is -- marked with CUDA_Global. Append_To (Args, Make_Attribute_Reference (Loc, Prefix => New_Occurrence_Of (Kernel, Loc), Attribute_Name => Name_Address)); -- Third argument, the name of the function on the host. Append (New_Occurrence_Of (Kernel_Name, Loc), Args); -- Fourth argument, the name of the function on the device. Append (New_Occurrence_Of (Kernel_Name, Loc), Args); -- Fith argument: -1. Meaning unknown - this has been copied from -- LLVM. Append (Make_Integer_Literal (Loc, UI_From_Int (-1)), Args); -- Args 6, 7, 8, 9, 10: Null pointers. Again, meaning unknown. for Arg_Count in 1 .. 5 loop Append_To (Args, New_Occurrence_Of (RTE (RE_Null_Address), Loc)); end loop; -- Build the call to CUDARegisterFunction, passing the argument -- list we just built. return Make_Procedure_Call_Statement (Loc, Name => New_Occurrence_Of (RTE (RE_Register_Function), Loc), Parameter_Associations => Args); end Build_Register_Procedure_Call; -- Local declarations Loc : constant Source_Ptr := Sloc (N); Spec_Id : constant Node_Id := Corresponding_Spec (N); -- The specification of the package we're adding a cuda init func to. Pack_Decls : constant List_Id := Declarations (N); CUDA_Node_List : constant Elist_Id := Get_CUDA_Kernels (Spec_Id); -- CUDA nodes that belong to the package. CUDA_Init_Func : Entity_Id; -- Entity of the cuda init func. Fat_Binary : Entity_Id; -- Entity of the fat binary of N. Bound to said fat binary by a pragma. Fat_Binary_Handle : Entity_Id; -- Entity of the result of passing the fat binary wrapper to. -- CUDA.Register_Fat_Binary. Fat_Binary_Wrapper : Entity_Id; -- Entity of a record that holds a bunch of magic numbers and a -- reference to Fat_Binary. New_Stmt : Node_Id; -- Node to store newly-created declarations -- Start of processing for Build_And_Insert_CUDA_Initialization begin if CUDA_Node_List = No_Elist or not Debug_Flag_Underscore_C then return; end if; Fat_Binary := Make_Temporary (Loc, 'C'); New_Stmt := Build_Fat_Binary_Declaration (Fat_Binary); Append_To (Pack_Decls, New_Stmt); Analyze (New_Stmt); New_Stmt := Build_Import_Pragma (Fat_Binary, N); Append_To (Pack_Decls, New_Stmt); Analyze (New_Stmt); Fat_Binary_Wrapper := Make_Temporary (Loc, 'C'); New_Stmt := Build_Fat_Binary_Wrapper_Declaration (Wrapper_Id => Fat_Binary_Wrapper, Bin_Id => Fat_Binary); Append_To (Pack_Decls, New_Stmt); Analyze (New_Stmt); Fat_Binary_Handle := Make_Temporary (Loc, 'C'); New_Stmt := Build_Fat_Binary_Handle_Declaration (Fat_Binary_Handle, Fat_Binary_Wrapper); Append_To (Pack_Decls, New_Stmt); Analyze (New_Stmt); CUDA_Init_Func := Make_Temporary (Loc, 'C'); New_Stmt := Build_CUDA_Init_Proc (Init_Id => CUDA_Init_Func, CUDA_Kernels => CUDA_Node_List, Handle_Id => Fat_Binary_Handle, Pack_Decls => Pack_Decls); Append_To (Pack_Decls, New_Stmt); Analyze (New_Stmt); New_Stmt := Make_Procedure_Call_Statement (Loc, Name => New_Occurrence_Of (CUDA_Init_Func, Loc)); Append_To (Pack_Decls, New_Stmt); Analyze (New_Stmt); end Build_And_Insert_CUDA_Initialization; -------------------- -- Set_CUDA_Nodes -- -------------------- procedure Set_CUDA_Kernels (Pack_Id : Entity_Id; Kernels : Elist_Id) is begin pragma Assert (Get_CUDA_Kernels (Pack_Id) = No_Elist); CUDA_Kernels_Table.Set (Pack_Id, Kernels); end Set_CUDA_Kernels; end GNAT_CUDA;
37.531516
79
0.55726
39b89b24a342e42e75404c20d5e3d9a6f89d8e1f
1,249
ads
Ada
tier-1/xcb/source/thin/xcb-xcb_access_error_t.ads
charlie5/cBound
741be08197a61ad9c72553e3302f3b669902216d
[ "0BSD" ]
2
2015-11-12T11:16:20.000Z
2021-08-24T22:32:04.000Z
tier-1/xcb/source/thin/xcb-xcb_access_error_t.ads
charlie5/cBound
741be08197a61ad9c72553e3302f3b669902216d
[ "0BSD" ]
1
2018-06-05T05:19:35.000Z
2021-11-20T01:13:23.000Z
tier-1/xcb/source/thin/xcb-xcb_access_error_t.ads
charlie5/cBound
741be08197a61ad9c72553e3302f3b669902216d
[ "0BSD" ]
null
null
null
-- This file is generated by SWIG. Please do not modify by hand. -- with xcb.xcb_request_error_t; with Interfaces.C; with Interfaces.C.Pointers; package xcb.xcb_access_error_t is -- Item -- subtype Item is xcb.xcb_request_error_t.Item; -- Item_Array -- type Item_Array is array (Interfaces.C.size_t range <>) of aliased xcb.xcb_access_error_t.Item; -- Pointer -- package C_Pointers is new Interfaces.C.Pointers (Index => Interfaces.C.size_t, Element => xcb.xcb_access_error_t.Item, Element_Array => xcb.xcb_access_error_t.Item_Array, Default_Terminator => (others => <>)); subtype Pointer is C_Pointers.Pointer; -- Pointer_Array -- type Pointer_Array is array (Interfaces.C.size_t range <>) of aliased xcb.xcb_access_error_t .Pointer; -- Pointer_Pointer -- package C_Pointer_Pointers is new Interfaces.C.Pointers (Index => Interfaces.C.size_t, Element => xcb.xcb_access_error_t.Pointer, Element_Array => xcb.xcb_access_error_t.Pointer_Array, Default_Terminator => null); subtype Pointer_Pointer is C_Pointer_Pointers.Pointer; end xcb.xcb_access_error_t;
26.574468
77
0.667734
df972c063c485af3ab70527c9383beda97367b49
3,929
adb
Ada
src/examples/bintoasc_example.adb
jhumphry/Ada_BinToAsc
b1aa44263d03c46ffe32b766ea01a7710dabbd63
[ "0BSD" ]
null
null
null
src/examples/bintoasc_example.adb
jhumphry/Ada_BinToAsc
b1aa44263d03c46ffe32b766ea01a7710dabbd63
[ "0BSD" ]
null
null
null
src/examples/bintoasc_example.adb
jhumphry/Ada_BinToAsc
b1aa44263d03c46ffe32b766ea01a7710dabbd63
[ "0BSD" ]
null
null
null
-- BinToAsc_Example -- Binary data to/from ASCII codecs example -- Copyright (c) 2015, James Humphry - see LICENSE file for details with Ada.Text_IO; use Ada.Text_IO; with String_To_Storage_Array; with Storage_Array_To_String; with Storage_Array_To_Hex_String; with RFC4648, ASCII85; use RFC4648, ASCII85; with System.Storage_Elements; procedure BinToAsc_Example is Z85_Test_Vector : constant System.Storage_Elements.Storage_Array := (16#86#, 16#4F#, 16#D2#, 16#6F#, 16#B5#, 16#59#, 16#F7#, 16#5B#); begin Put_Line("Examples of using the BinToAsc package."); New_Line; -- Demonstrate coding into Base16 Put_Line("According to RFC4648 Base16('foobar') = '666F6F626172'"); Put("According to this package Base16('foobar') = '"); Put(Base16.To_String(String_To_Storage_Array("foobar"))); Put_Line("'"); New_Line; -- Demonstrate decoding from Base16 Put_Line("According to RFC4648 Base16^{-1}('666F6F626172') = 'foobar'"); Put("According to this package Base16^{-1}('666F6F626172') = '"); Put(Storage_Array_To_String(Base16.To_Bin("666F6F626172"))); Put_Line("'"); New_Line; -- Demonstrate coding into Base32 Put_Line("According to RFC4648 Base32('foobar') = 'MZXW6YTBOI======'"); Put("According to this package Base32('foobar') = '"); Put(Base32.To_String(String_To_Storage_Array("foobar"))); Put_Line("'"); New_Line; -- Demonstrate decoding from Base32 Put_Line("According to RFC4648 Base32^{-1}('MZXW6YTBOI======') = 'foobar'"); Put("According to this package Base32^{-1}('MZXW6YTBOI======') = '"); Put(Storage_Array_To_String(Base32.To_Bin("MZXW6YTBOI======"))); Put_Line("'"); New_Line; -- Demonstrate decoding from Base32 with homoglyphs Put_Line("According to RFC4648 with homoglphs permitted Base32^{-1}('MZXW6YTB01======') = 'foobar'"); Put("According to this package with homoglphs permitted Base32^{-1}('MZXW6YTB01======') = '"); Put(Storage_Array_To_String(Base32_Allow_Homoglyphs.To_Bin("MZXW6YTB01======"))); Put_Line("'"); New_Line; -- Demonstrate coding into Base32Hex Put_Line("According to RFC4648 Base32Hex('foobar') = 'CPNMUOJ1E8======'"); Put("According to this package Base32Hex('foobar') = '"); Put(Base32Hex.To_String(String_To_Storage_Array("foobar"))); Put_Line("'"); New_Line; -- Demonstrate decoding from Base32Hex Put_Line("According to RFC4648 Base32Hex^{-1}('CPNMUOJ1E8======') = 'foobar'"); Put("According to this package Base32Hex^{-1}('CPNMUOJ1E8======') = '"); Put(Storage_Array_To_String(Base32Hex.To_Bin("CPNMUOJ1E8======"))); Put_Line("'"); New_Line; -- Demonstrate coding into Base64 Put_Line("According to RFC4648 Base64('foobar') = 'Zm9vYmFy'"); Put("According to this package Base16('foobar') = '"); Put(Base64.To_String(String_To_Storage_Array("foobar"))); Put_Line("'"); New_Line; Put_Line("According to RFC4648 Base64('foob') = 'Zm9vYg=='"); Put("According to this package Base16('foob') = '"); Put(Base64.To_String(String_To_Storage_Array("foob"))); Put_Line("'"); New_Line; -- Demonstrate decoding from Base64 Put_Line("According to RFC4648 Base64^{-1}('Zm8=') = 'fo'"); Put("According to this package Base64^{-1}('Zm8=') = '"); Put(Storage_Array_To_String(Base64.To_Bin("Zm8="))); Put_Line("'"); New_Line; -- Demonstrate coding into Z85 Put_Line("According to Z85 spec Z85(86,4F,D2,6F,B5,59,F7,5B) = 'HelloWorld'"); Put("According to this package Z85(86,4F,D2,6F,B5,59,F7,5B) = '"); Put(Z85.To_String(Z85_Test_Vector)); Put_Line("'"); New_Line; -- Demonstrate decoding from Z85 Put_Line("According to Z85 spec Z85^{-1}('HelloWorld') = '86,4F,D2,6F,B5,59,F7,5B'"); Put("According to this package Z85^{-1}('HelloWorld') = '"); Put(Storage_Array_To_Hex_String(Z85.To_Bin("HelloWorld"))); Put_Line("'"); New_Line; end BinToAsc_Example;
35.080357
104
0.675999
208987e2518e08582af0f3a62bb72eda582cf617
566
adb
Ada
mixins/src/oop_mixin_compositor.adb
gerr135/ada_gems
fc1b55e991766110581fcc340c8bc7c51ef7a49b
[ "BSD-2-Clause" ]
6
2020-11-26T20:01:50.000Z
2022-03-04T22:22:12.000Z
mixins/src/oop_mixin_compositor.adb
gerr135/ada_gems
fc1b55e991766110581fcc340c8bc7c51ef7a49b
[ "BSD-2-Clause" ]
null
null
null
mixins/src/oop_mixin_compositor.adb
gerr135/ada_gems
fc1b55e991766110581fcc340c8bc7c51ef7a49b
[ "BSD-2-Clause" ]
null
null
null
with Ada.Text_IO; use Ada.Text_IO; package body oop_mixin_compositor is overriding procedure simple(Self : Mixin) is begin Self.inner.simple; end; overriding procedure compound(Self : Mixin) is begin Self.inner.compound; end; overriding procedure redispatching(Self : Mixin) is begin oop_mixin.Derived'Class(Self.inner).redispatching; end; overriding procedure simple (Self : Mixin_Child) is begin Put_Line(" MC:simple"); end; end oop_mixin_compositor;
18.866667
58
0.644876
39d502ab3cab594752a4ce5e91d778c5a79f3bbf
590
ads
Ada
gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/pointer_variable_bounds.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/pointer_variable_bounds.ads
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
null
null
null
gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/pointer_variable_bounds.ads
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
2
2020-07-27T00:22:36.000Z
2021-04-01T09:41:02.000Z
with pointer_variable_bounds_q; use pointer_variable_bounds_q; package pointer_variable_bounds is type HALF_INTEGER is range -32768 .. 32767; subtype HALF_NATURAL is HALF_INTEGER range 0 .. 32767; MAX_COMPS : constant HALF_NATURAL := HALF_NATURAL(A_MAX_COMPS); subtype COMP_POINTER_TYPE is HALF_NATURAL range 0 .. MAX_COMPS; subtype BUNDLE_POINTER_TYPE is HALF_NATURAL range 0 .. 1; subtype C_POINTER_TYPE is HALF_NATURAL range 0 .. 1; procedure BUNDLE_DAT(BP : in BUNDLE_POINTER_TYPE); procedure SEQUENCE_DAT(BP : in BUNDLE_POINTER_TYPE); end pointer_variable_bounds;
34.705882
65
0.8
c567b04c880e66399d90bf35ce47fa244d504b1c
6,429
adb
Ada
llvm-gcc-4.2-2.9/gcc/ada/a-wtcoau.adb
vidkidz/crossbridge
ba0bf94aee0ce6cf7eb5be882382e52bc57ba396
[ "MIT" ]
1
2016-04-09T02:58:13.000Z
2016-04-09T02:58:13.000Z
llvm-gcc-4.2-2.9/gcc/ada/a-wtcoau.adb
vidkidz/crossbridge
ba0bf94aee0ce6cf7eb5be882382e52bc57ba396
[ "MIT" ]
null
null
null
llvm-gcc-4.2-2.9/gcc/ada/a-wtcoau.adb
vidkidz/crossbridge
ba0bf94aee0ce6cf7eb5be882382e52bc57ba396
[ "MIT" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- A D A . W I D E _ T E X T _ I O . C O M P L E X _ A U X -- -- -- -- B o d y -- -- -- -- Copyright (C) 1992-2005, 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, 51 Franklin Street, Fifth Floor, -- -- Boston, MA 02110-1301, 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.Wide_Text_IO.Generic_Aux; use Ada.Wide_Text_IO.Generic_Aux; with Ada.Wide_Text_IO.Float_Aux; with System.Img_Real; use System.Img_Real; package body Ada.Wide_Text_IO.Complex_Aux is package Aux renames Ada.Wide_Text_IO.Float_Aux; --------- -- Get -- --------- procedure Get (File : File_Type; ItemR : out Long_Long_Float; ItemI : out Long_Long_Float; Width : Field) is Buf : String (1 .. Field'Last); Stop : Integer := 0; Ptr : aliased Integer; Paren : Boolean := False; begin -- General note for following code, exceptions from the calls -- to Get for components of the complex value are propagated. if Width /= 0 then Load_Width (File, Width, Buf, Stop); Gets (Buf (1 .. Stop), ItemR, ItemI, Ptr); for J in Ptr + 1 .. Stop loop if not Is_Blank (Buf (J)) then raise Data_Error; end if; end loop; -- Case of width = 0 else Load_Skip (File); Ptr := 0; Load (File, Buf, Ptr, '(', Paren); Aux.Get (File, ItemR, 0); Load_Skip (File); Load (File, Buf, Ptr, ','); Aux.Get (File, ItemI, 0); if Paren then Load_Skip (File); Load (File, Buf, Ptr, ')', Paren); if not Paren then raise Data_Error; end if; end if; end if; end Get; ---------- -- Gets -- ---------- procedure Gets (From : String; ItemR : out Long_Long_Float; ItemI : out Long_Long_Float; Last : out Positive) is Paren : Boolean; Pos : Integer; begin String_Skip (From, Pos); if From (Pos) = '(' then Pos := Pos + 1; Paren := True; else Paren := False; end if; Aux.Gets (From (Pos .. From'Last), ItemR, Pos); String_Skip (From (Pos + 1 .. From'Last), Pos); if From (Pos) = ',' then Pos := Pos + 1; end if; Aux.Gets (From (Pos .. From'Last), ItemI, Pos); if Paren then String_Skip (From (Pos + 1 .. From'Last), Pos); if From (Pos) /= ')' then raise Data_Error; end if; end if; Last := Pos; end Gets; --------- -- Put -- --------- procedure Put (File : File_Type; ItemR : Long_Long_Float; ItemI : Long_Long_Float; Fore : Field; Aft : Field; Exp : Field) is begin Put (File, '('); Aux.Put (File, ItemR, Fore, Aft, Exp); Put (File, ','); Aux.Put (File, ItemI, Fore, Aft, Exp); Put (File, ')'); end Put; ---------- -- Puts -- ---------- procedure Puts (To : out String; ItemR : Long_Long_Float; ItemI : Long_Long_Float; Aft : Field; Exp : Field) is I_String : String (1 .. 3 * Field'Last); R_String : String (1 .. 3 * Field'Last); Iptr : Natural; Rptr : Natural; begin -- Both parts are initially converted with a Fore of 0 Rptr := 0; Set_Image_Real (ItemR, R_String, Rptr, 0, Aft, Exp); Iptr := 0; Set_Image_Real (ItemI, I_String, Iptr, 0, Aft, Exp); -- Check room for both parts plus parens plus comma (RM G.1.3(34)) if Rptr + Iptr + 3 > To'Length then raise Layout_Error; end if; -- If there is room, layout result according to (RM G.1.3(31-33)) To (To'First) := '('; To (To'First + 1 .. To'First + Rptr) := R_String (1 .. Rptr); To (To'First + Rptr + 1) := ','; To (To'Last) := ')'; To (To'Last - Iptr .. To'Last - 1) := I_String (1 .. Iptr); for J in To'First + Rptr + 2 .. To'Last - Iptr - 1 loop To (J) := ' '; end loop; end Puts; end Ada.Wide_Text_IO.Complex_Aux;
31.360976
78
0.467258
fb131fd359191113ff01bea9983029efcaf8e50a
6,158
ads
Ada
tools-src/gnu/gcc/gcc/ada/debug.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/debug.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/debug.ads
modern-tomato/tomato
96f09fab4929c6ddde5c9113f1b2476ad37133c4
[ "FSFAP" ]
69
2015-01-02T10:45:56.000Z
2021-09-06T07:52:13.000Z
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- D E B U G -- -- -- -- S p e c -- -- -- -- $Revision$ -- -- -- Copyright (C) 1992-1999 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. -- -- -- ------------------------------------------------------------------------------ package Debug is pragma Preelaborate (Debug); -- This package contains global flags used to control the inclusion -- of debugging code in various phases of the compiler. ------------------------- -- Dynamic Debug Flags -- ------------------------- -- Thirty six flags that can be used to active various specialized -- debugging output information. The flags are preset to False, which -- corresponds to the given output being suppressed. The individual -- flags can be turned on using the undocumented switch /dxxx where -- xxx is a string of letters for flags to be turned on. Documentation -- on the current usage of these flags is contained in the body of Debug -- rather than the spec, so that we don't have to recompile the world -- when a new debug flag is added Debug_Flag_A : Boolean := False; Debug_Flag_B : Boolean := False; Debug_Flag_C : Boolean := False; Debug_Flag_D : Boolean := False; Debug_Flag_E : Boolean := False; Debug_Flag_F : Boolean := False; Debug_Flag_G : Boolean := False; Debug_Flag_H : Boolean := False; Debug_Flag_I : Boolean := False; Debug_Flag_J : Boolean := False; Debug_Flag_K : Boolean := False; Debug_Flag_L : Boolean := False; Debug_Flag_M : Boolean := False; Debug_Flag_N : Boolean := False; Debug_Flag_O : Boolean := False; Debug_Flag_P : Boolean := False; Debug_Flag_Q : Boolean := False; Debug_Flag_R : Boolean := False; Debug_Flag_S : Boolean := False; Debug_Flag_T : Boolean := False; Debug_Flag_U : Boolean := False; Debug_Flag_V : Boolean := False; Debug_Flag_W : Boolean := False; Debug_Flag_X : Boolean := False; Debug_Flag_Y : Boolean := False; Debug_Flag_Z : Boolean := False; Debug_Flag_AA : Boolean := False; Debug_Flag_BB : Boolean := False; Debug_Flag_CC : Boolean := False; Debug_Flag_DD : Boolean := False; Debug_Flag_EE : Boolean := False; Debug_Flag_FF : Boolean := False; Debug_Flag_GG : Boolean := False; Debug_Flag_HH : Boolean := False; Debug_Flag_II : Boolean := False; Debug_Flag_JJ : Boolean := False; Debug_Flag_KK : Boolean := False; Debug_Flag_LL : Boolean := False; Debug_Flag_MM : Boolean := False; Debug_Flag_NN : Boolean := False; Debug_Flag_OO : Boolean := False; Debug_Flag_PP : Boolean := False; Debug_Flag_QQ : Boolean := False; Debug_Flag_RR : Boolean := False; Debug_Flag_SS : Boolean := False; Debug_Flag_TT : Boolean := False; Debug_Flag_UU : Boolean := False; Debug_Flag_VV : Boolean := False; Debug_Flag_WW : Boolean := False; Debug_Flag_XX : Boolean := False; Debug_Flag_YY : Boolean := False; Debug_Flag_ZZ : Boolean := False; Debug_Flag_1 : Boolean := False; Debug_Flag_2 : Boolean := False; Debug_Flag_3 : Boolean := False; Debug_Flag_4 : Boolean := False; Debug_Flag_5 : Boolean := False; Debug_Flag_6 : Boolean := False; Debug_Flag_7 : Boolean := False; Debug_Flag_8 : Boolean := False; Debug_Flag_9 : Boolean := False; function Get_Debug_Flag_K return Boolean; -- This function is called from C code to get the setting of the K flag -- (it does not work to try to access a constant object directly). procedure Set_Debug_Flag (C : Character; Val : Boolean := True); -- Where C is 0-9, A-Z, or a-z, sets the corresponding debug flag to -- the given value. In the checks off version of debug, the call to -- Set_Debug_Flag is always a null operation. end Debug;
47.736434
78
0.551965
39dd9a883e08bb114f53c192c81c9b312da8dae7
10,049
adb
Ada
source/amf/utp/amf-internals-utp_test_contexts.adb
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_test_contexts.adb
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_test_contexts.adb
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.Elements; with AMF.Internals.Helpers; with AMF.Internals.Tables.Utp_Attributes; with AMF.String_Collections; with AMF.UML.Behaviored_Classifiers; with AMF.UML.Structured_Classifiers; with AMF.Visitors.Utp_Iterators; with AMF.Visitors.Utp_Visitors; with League.Strings.Internals; with Matreshka.Internals.Strings; package body AMF.Internals.Utp_Test_Contexts is ------------------------------------ -- Get_Base_Structured_Classifier -- ------------------------------------ overriding function Get_Base_Structured_Classifier (Self : not null access constant Utp_Test_Context_Proxy) return AMF.UML.Structured_Classifiers.UML_Structured_Classifier_Access is begin return AMF.UML.Structured_Classifiers.UML_Structured_Classifier_Access (AMF.Internals.Helpers.To_Element (AMF.Internals.Tables.Utp_Attributes.Internal_Get_Base_Structured_Classifier (Self.Element))); end Get_Base_Structured_Classifier; ------------------------------------ -- Set_Base_Structured_Classifier -- ------------------------------------ overriding procedure Set_Base_Structured_Classifier (Self : not null access Utp_Test_Context_Proxy; To : AMF.UML.Structured_Classifiers.UML_Structured_Classifier_Access) is begin AMF.Internals.Tables.Utp_Attributes.Internal_Set_Base_Structured_Classifier (Self.Element, AMF.Internals.Helpers.To_Element (AMF.Elements.Element_Access (To))); end Set_Base_Structured_Classifier; ------------------------------------ -- Get_Base_Behaviored_Classifier -- ------------------------------------ overriding function Get_Base_Behaviored_Classifier (Self : not null access constant Utp_Test_Context_Proxy) return AMF.UML.Behaviored_Classifiers.UML_Behaviored_Classifier_Access is begin return AMF.UML.Behaviored_Classifiers.UML_Behaviored_Classifier_Access (AMF.Internals.Helpers.To_Element (AMF.Internals.Tables.Utp_Attributes.Internal_Get_Base_Behaviored_Classifier (Self.Element))); end Get_Base_Behaviored_Classifier; ------------------------------------ -- Set_Base_Behaviored_Classifier -- ------------------------------------ overriding procedure Set_Base_Behaviored_Classifier (Self : not null access Utp_Test_Context_Proxy; To : AMF.UML.Behaviored_Classifiers.UML_Behaviored_Classifier_Access) is begin AMF.Internals.Tables.Utp_Attributes.Internal_Set_Base_Behaviored_Classifier (Self.Element, AMF.Internals.Helpers.To_Element (AMF.Elements.Element_Access (To))); end Set_Base_Behaviored_Classifier; -------------------- -- Get_Test_Level -- -------------------- overriding function Get_Test_Level (Self : not null access constant Utp_Test_Context_Proxy) return AMF.Optional_String is begin declare use type Matreshka.Internals.Strings.Shared_String_Access; Aux : constant Matreshka.Internals.Strings.Shared_String_Access := AMF.Internals.Tables.Utp_Attributes.Internal_Get_Test_Level (Self.Element); begin if Aux = null then return (Is_Empty => True); else return (False, League.Strings.Internals.Create (Aux)); end if; end; end Get_Test_Level; -------------------- -- Set_Test_Level -- -------------------- overriding procedure Set_Test_Level (Self : not null access Utp_Test_Context_Proxy; To : AMF.Optional_String) is begin if To.Is_Empty then AMF.Internals.Tables.Utp_Attributes.Internal_Set_Test_Level (Self.Element, null); else AMF.Internals.Tables.Utp_Attributes.Internal_Set_Test_Level (Self.Element, League.Strings.Internals.Internal (To.Value)); end if; end Set_Test_Level; -------------------------------- -- Get_Compatible_SUT_Version -- -------------------------------- overriding function Get_Compatible_SUT_Version (Self : not null access constant Utp_Test_Context_Proxy) return AMF.String_Collections.Set_Of_String is begin raise Program_Error; return X : AMF.String_Collections.Set_Of_String; end Get_Compatible_SUT_Version; -------------------------------- -- Get_Compatible_SUT_Variant -- -------------------------------- overriding function Get_Compatible_SUT_Variant (Self : not null access constant Utp_Test_Context_Proxy) return AMF.String_Collections.Set_Of_String is begin raise Program_Error; return X : AMF.String_Collections.Set_Of_String; end Get_Compatible_SUT_Variant; ------------------- -- Enter_Element -- ------------------- overriding procedure Enter_Element (Self : not null access constant Utp_Test_Context_Proxy; Visitor : in out AMF.Visitors.Abstract_Visitor'Class; Control : in out AMF.Visitors.Traverse_Control) is begin if Visitor in AMF.Visitors.Utp_Visitors.Utp_Visitor'Class then AMF.Visitors.Utp_Visitors.Utp_Visitor'Class (Visitor).Enter_Test_Context (AMF.Utp.Test_Contexts.Utp_Test_Context_Access (Self), Control); end if; end Enter_Element; ------------------- -- Leave_Element -- ------------------- overriding procedure Leave_Element (Self : not null access constant Utp_Test_Context_Proxy; Visitor : in out AMF.Visitors.Abstract_Visitor'Class; Control : in out AMF.Visitors.Traverse_Control) is begin if Visitor in AMF.Visitors.Utp_Visitors.Utp_Visitor'Class then AMF.Visitors.Utp_Visitors.Utp_Visitor'Class (Visitor).Leave_Test_Context (AMF.Utp.Test_Contexts.Utp_Test_Context_Access (Self), Control); end if; end Leave_Element; ------------------- -- Visit_Element -- ------------------- overriding procedure Visit_Element (Self : not null access constant Utp_Test_Context_Proxy; Iterator : in out AMF.Visitors.Abstract_Iterator'Class; Visitor : in out AMF.Visitors.Abstract_Visitor'Class; Control : in out AMF.Visitors.Traverse_Control) is begin if Iterator in AMF.Visitors.Utp_Iterators.Utp_Iterator'Class then AMF.Visitors.Utp_Iterators.Utp_Iterator'Class (Iterator).Visit_Test_Context (Visitor, AMF.Utp.Test_Contexts.Utp_Test_Context_Access (Self), Control); end if; end Visit_Element; end AMF.Internals.Utp_Test_Contexts;
42.222689
89
0.560056
df2f157efa63d65e3382532a4a675779656cdf39
743
ads
Ada
src/arch/Ada/types-c.ads
wookey-project/ewok-legacy
c973752dac3a0ebe3f7cfca062f50744578f051b
[ "Apache-2.0" ]
null
null
null
src/arch/Ada/types-c.ads
wookey-project/ewok-legacy
c973752dac3a0ebe3f7cfca062f50744578f051b
[ "Apache-2.0" ]
null
null
null
src/arch/Ada/types-c.ads
wookey-project/ewok-legacy
c973752dac3a0ebe3f7cfca062f50744578f051b
[ "Apache-2.0" ]
null
null
null
package types.c with spark_mode => off is type t_retval is (SUCCESS, FAILURE) with size => 8; for t_retval use (SUCCESS => 0, FAILURE => 1); -- -- C string -- type c_string is array (positive range <>) of aliased character; for c_string'component_size use character'size; -- C_string length (without nul character) function len (s : c_string) return natural; -- String conversion procedure to_c (dst : out c_string; src : in string); procedure to_ada (dst : out string; src : in c_string); -- -- C buffer -- subtype c_buffer is byte_array; -- -- Boolean -- type bool is new boolean with size => 8; for bool use (true => 1, false => 0); end types.c;
18.575
67
0.615074
1051ad0703aa326a2f2359d4b6b6e24487ef0b53
549
ads
Ada
array_utils/tests/src/array_utils-test_cases.ads
jgrivera67/projects-with-amy
85447daef7ab796e24f09127ddcc6249cf38d7ca
[ "BSD-2-Clause" ]
null
null
null
array_utils/tests/src/array_utils-test_cases.ads
jgrivera67/projects-with-amy
85447daef7ab796e24f09127ddcc6249cf38d7ca
[ "BSD-2-Clause" ]
null
null
null
array_utils/tests/src/array_utils-test_cases.ads
jgrivera67/projects-with-amy
85447daef7ab796e24f09127ddcc6249cf38d7ca
[ "BSD-2-Clause" ]
null
null
null
with AUnit; with AUnit.Test_Fixtures; package Array_Utils.Test_Cases is type Test_Case is new AUnit.Test_Fixtures.Test_Fixture with null record; procedure Test_Linear_Search_Element_Found_First_Entry (T : in out Test_Case); procedure Test_Linear_Search_Element_Found_Last_Entry (T : in out Test_Case); procedure Test_Linear_Search_Element_Found_Middle_Entry (T : in out Test_Case); procedure Test_Linear_Search_Element_Not_Found (T : in out Test_Case); -- TODO: Add unit tests for Binary_Search end Array_Utils.Test_Cases;
30.5
82
0.806922
234f68dafaa288b6a133418ba5c66ca3cb95d258
2,107
ads
Ada
nehe_base_ada/example.ads
Lucretia/old_nehe_ada95
d0378c3bfce202eb01bf00b57c128735dbe8582d
[ "BSD-3-Clause" ]
null
null
null
nehe_base_ada/example.ads
Lucretia/old_nehe_ada95
d0378c3bfce202eb01bf00b57c128735dbe8582d
[ "BSD-3-Clause" ]
null
null
null
nehe_base_ada/example.ads
Lucretia/old_nehe_ada95
d0378c3bfce202eb01bf00b57c128735dbe8582d
[ "BSD-3-Clause" ]
null
null
null
--------------------------------------------------------------------------------- -- Copyright 2004-2005 © Luke A. Guest -- -- This code is to be used for tutorial purposes only. -- You may not redistribute this code in any form without my express permission. --------------------------------------------------------------------------------- with Interfaces.C; use Interfaces.C; with GL; use type GL.GLfloat; use type GL.GLbitfield; with SDL.Types; use SDL.Types; with SDL.Keysym; use SDL.Keysym; with SDL.Video; use SDL.Video; with Ada.Strings.Unbounded; use Ada.Strings.Unbounded; package Example is procedure PrintUsage; function Initialise return Boolean; procedure Uninitialise; procedure Update(Ticks : in Integer); procedure Draw; function GetTitle return String; function GetWidth return Integer; function GetHeight return Integer; function GetBitsPerPixel return Integer; procedure SetLastTickCount(Ticks : in Integer); procedure SetSurface(Surface : in SDL.Video.Surface_Ptr); function GetSurface return SDL.Video.Surface_Ptr; procedure SetKey(Key : in SDL.Keysym.Key; Down : in Boolean); procedure SetActive(Active : in Boolean); function IsActive return Boolean; procedure SetQuit(Quit : in Boolean); function Quit return Boolean; private type KeysArray is array(SDL.Keysym.K_FIRST .. SDL.Keysym.K_LAST) of Boolean; Title : String := "NeHe Base Code in Ada/SDL"; Width : Integer := 640; Height : Integer := 480; BitsPerPixel : Integer := 16; IsFullScreen : Boolean := False; Keys : KeysArray := (others => False); IsVisible : Boolean := False; LastTickCount : Integer := 0; ScreenSurface : SDL.Video.Surface_Ptr := null; AppActive : Boolean := True; AppQuit : Boolean := False; XSpeed : GL.GLfloat := 0.0; YSpeed : GL.GLfloat := 0.0; Zoom : GL.GLfloat := -6.0; end Example;
35.711864
81
0.585667
10c2a4aea38aa6338ddf8b4ac408b805a488aef2
752
ads
Ada
src/file_utils.ads
psyomn/ash
7630208f9f2dc296f75076141d591354bde02ac7
[ "Apache-2.0" ]
11
2017-04-08T17:48:19.000Z
2021-12-31T23:36:25.000Z
src/file_utils.ads
psyomn/axios
7630208f9f2dc296f75076141d591354bde02ac7
[ "Apache-2.0" ]
3
2017-03-24T04:34:15.000Z
2017-04-03T05:18:47.000Z
src/file_utils.ads
psyomn/axios
7630208f9f2dc296f75076141d591354bde02ac7
[ "Apache-2.0" ]
4
2017-05-14T11:46:37.000Z
2019-04-18T20:34:07.000Z
-- Copyright 2019 Simon Symeonidis (psyomn) -- -- 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 File_Utils is function Read (File_Name : String) return String; function Is_Dir (Path : String) return Boolean; end File_Utils;
41.777778
76
0.742021
1c86cee792569ab104efb2eb331b51ac302c2326
3,195
ads
Ada
tools/scitools/conf/understand/ada/ada12/a-etgrbu.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/a-etgrbu.ads
brucegua/moocos
575c161cfa35e220f10d042e2e5ca18773691695
[ "Apache-2.0" ]
null
null
null
tools/scitools/conf/understand/ada/ada12/a-etgrbu.ads
brucegua/moocos
575c161cfa35e220f10d042e2e5ca18773691695
[ "Apache-2.0" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- A D A . E X E C U T I O N _ T I M E . G R O U P _ B U D G E T S -- -- -- -- S p e c -- -- -- -- This specification is derived from the Ada Reference Manual for use with -- -- GNAT. In accordance with the copyright of that document, you can freely -- -- copy and modify this specification, provided that if you redistribute a -- -- modified version, any changes that you have made are clearly indicated. -- -- -- ------------------------------------------------------------------------------ -- This unit is not implemented in typical GNAT implementations that lie on -- top of operating systems, because it is infeasible to implement in such -- environments. -- If a target environment provides appropriate support for this package, -- then the Unimplemented_Unit pragma should be removed from this spec and -- an appropriate body provided. with System; package Ada.Execution_Time.Group_Budgets is pragma Preelaborate; pragma Unimplemented_Unit; type Group_Budget is tagged limited private; type Group_Budget_Handler is access protected procedure (GB : in out Group_Budget); type Task_Array is array (Positive range <>) of Ada.Task_Identification.Task_Id; Min_Handler_Ceiling : constant System.Any_Priority := System.Any_Priority'First; -- Initial value is an arbitrary choice ??? procedure Add_Task (GB : in out Group_Budget; T : Ada.Task_Identification.Task_Id); procedure Remove_Task (GB : in out Group_Budget; T : Ada.Task_Identification.Task_Id); function Is_Member (GB : Group_Budget; T : Ada.Task_Identification.Task_Id) return Boolean; function Is_A_Group_Member (T : Ada.Task_Identification.Task_Id) return Boolean; function Members (GB : Group_Budget) return Task_Array; procedure Replenish (GB : in out Group_Budget; To : Ada.Real_Time.Time_Span); procedure Add (GB : in out Group_Budget; Interval : Ada.Real_Time.Time_Span); function Budget_Has_Expired (GB : Group_Budget) return Boolean; function Budget_Remaining (GB : Group_Budget) return Ada.Real_Time.Time_Span; procedure Set_Handler (GB : in out Group_Budget; Handler : Group_Budget_Handler); function Current_Handler (GB : Group_Budget) return Group_Budget_Handler; procedure Cancel_Handler (GB : in out Group_Budget; Cancelled : out Boolean); Group_Budget_Error : exception; private type Group_Budget is tagged limited null record; end Ada.Execution_Time.Group_Budgets;
36.306818
78
0.560563
df486235b8665aefbc743791dd8dc0c89021cdf8
5,874
ads
Ada
src/orig/dds-request_reply-connext_c_requester.ads
alexcamposruiz/dds-requestreply
9f29d34554b5d3e9291151c6e92d2ce6cc31bb71
[ "MIT" ]
null
null
null
src/orig/dds-request_reply-connext_c_requester.ads
alexcamposruiz/dds-requestreply
9f29d34554b5d3e9291151c6e92d2ce6cc31bb71
[ "MIT" ]
null
null
null
src/orig/dds-request_reply-connext_c_requester.ads
alexcamposruiz/dds-requestreply
9f29d34554b5d3e9291151c6e92d2ce6cc31bb71
[ "MIT" ]
2
2020-04-06T19:34:15.000Z
2020-04-06T19:50:03.000Z
with DDS.DataReader; with DDS.DataWriter; with Interfaces.C.Extensions; with DDS.DomainParticipant; with DDS.Publisher; with DDS.Subscriber; with DDS.Request_Reply.Untypedcommon; with DDS.Request_Reply.Connext_C_Entity_Params; package DDS.Request_Reply.Connext_C_Requester is use Untypedcommon; use Connext_C_Entity_Params; DEFAULT_MAX_WAIT : constant DDS.Duration_T := DDS.To_Duration_T (1.0); type RTI_Connext_RequesterUntypedImpl is abstract new RTI_Connext_EntityUntypedImpl with null record; type RTI_Connext_RequesterUntypedImpl_Access is access all RTI_Connext_RequesterUntypedImpl; function RTI_Connext_RequesterUntypedImpl_Wait_For_Replies (Self : not null access RTI_Connext_RequesterUntypedImpl; Max_Wait : DDS.Duration_T := DEFAULT_MAX_WAIT; Min_Sample_Count : DDS.Natural := 1; Related_Request_Info : DDS.SampleIdentity_T) return DDS.ReturnCode_T; function RTI_Connext_RequesterUntypedImpl_get_request_datawriter (Self : not null access RTI_Connext_RequesterUntypedImpl) return DDS.DataWriter.Ref_Access is (DDS.DataWriter.Ref_Access (Self.Writer)); -- ========================================================================= -- ========================================================================= -- extern XMQCDllExport -- DDS_DataReader* RTI_Connext_RequesterUntypedImpl_get_request_datareader( -- RTI_Connext_RequesterUntypedImpl * self); function RTI_Connext_RequesterUntypedImpl_Get_Request_Datareader (Self : not null access RTI_Connext_RequesterUntypedImpl) return DDS.DataReader.Ref_Access is (DDS.DataReader.Ref_Access (Self.Reader)); type RTI_Connext_Requester is abstract new RTI_Connext_RequesterUntypedImpl with record null; end record; type RTI_Connext_RequesterParams is record Participant : DDS.DomainParticipant.Ref_Access; Service_Name : DDS.String; Request_Topic_Name : DDS.String; Reply_Topic_Name : DDS.String; Qos_Library_Name : DDS.String; Qos_Profile_Name : DDS.String; Datawriter_Qos : DDS.DataWriterQos; Datareader_Qos : DDS.DataReaderQos; Publisher : DDS.Publisher.Ref_Access; Subscriber : DDS.Subscriber.Ref_Access; end record; function RTI_Connext_Requester_Delete (Self : RTI_Connext_Requester)return DDS.ReturnCode_T; function RTI_Connext_Requester_Wait_For_Replies (Self : RTI_Connext_Requester; Min_Count : DDS.long; Max_Wait : DDS.Duration_T)return DDS.ReturnCode_T; function RTI_Connext_Requester_Wait_For_Replies_For_Related_Request (Self : RTI_Connext_Requester; Min_Count : DDS.long; Max_Wait : DDS.Duration_T; Related_Request_Id : DDS.SampleIdentity_T) return DDS.ReturnCode_T; function RTI_Connext_RequesterParams_To_RTI_Connext_EntityParams (Self : not null access RTI_Connext_RequesterParams; ToParams : out RTI_Connext_EntityParams) return DDS.ReturnCode_T; -- ========================================================================= -- ========================================================================= -- extern XMQCDllExport function RTI_Connext_RequesterUntypedImpl_Create (Params : RTI_Connext_RequesterParams; Request_Type_Name : DDS.String; Reply_Type_Name : DDS.String; reply_size : DDS.Integer) return RTI_Connext_RequesterUntypedImpl_Access; -- RTI_Connext_RequesterUntypedImpl_create( -- const RTI_Connext_RequesterParams * params, -- RegisterTypeFunc _request_type_fnc, -- const char * request_type_name, -- RegisterTypeFunc _reply_type_fnc, -- const char * reply_type_name, -- int reply_size); -- ========================================================================= -- ========================================================================= -- extern XMQCDllExport -- DDS_ReturnCode_t RTI_Connext_RequesterUntypedImpl_delete( -- RTI_Connext_RequesterUntypedImpl* self); -- ========================================================================= -- ========================================================================= -- extern XMQCDllExport -- DDS_ReturnCode_t RTI_Connext_RequesterUntypedImpl_wait_for_replies( -- RTI_Connext_RequesterUntypedImpl * self, -- const struct DDS_Duration_t * max_wait, -- int min_sample_count, -- const struct DDS_SampleIdentity_t* related_request_info); -- ========================================================================= -- ========================================================================= -- extern XMQCDllExport -- DDS_ReturnCode_t RTI_Connext_RequesterUntypedImpl_get_reply_loaned( -- RTI_Connext_RequesterUntypedImpl * self, -- void *** received_data, -- int * data_count, -- DDS_Boolean* is_loan, -- void* dataSeqContiguousBuffer, -- struct DDS_SampleInfoSeq* info_seq, -- DDS_Long data_seq_len, -- DDS_Long data_seq_max_len, -- DDS_Boolean ownership, -- DDS_Long max_samples, -- const struct DDS_SampleIdentity_t* related_request_id, -- RTIBool take); -- ========================================================================= -- ========================================================================= -- extern XMQCDllExport -- DDS_DataWriter* RTI_Connext_RequesterUntypedImpl_get_request_datawriter( -- RTI_Connext_RequesterUntypedImpl * self); end DDS.Request_Reply.Connext_C_Requester;
40.791667
105
0.593803
1c5e6f68aa50f0a70184dadb92a4cbd068000866
1,090
adb
Ada
AD_src/forward_ad-ad2d.adb
sciencylab/lagrangian-solver
0f77265c1105658a27a9fa316bf5f046ac233774
[ "MIT" ]
null
null
null
AD_src/forward_ad-ad2d.adb
sciencylab/lagrangian-solver
0f77265c1105658a27a9fa316bf5f046ac233774
[ "MIT" ]
null
null
null
AD_src/forward_ad-ad2d.adb
sciencylab/lagrangian-solver
0f77265c1105658a27a9fa316bf5f046ac233774
[ "MIT" ]
null
null
null
package body Forward_AD.AD2D is function "+" (A, B : in AD2D) return AD2D is begin return (X => A.X + B.X, Y => A.Y + B.Y); end "+"; function "-" (A, B : in AD2D) return AD2D is begin return (X => A.X - B.X, Y => A.Y - B.Y); end "-"; function "*" (A : in AD2D; B : in AD2D) return AD_Type is Result : AD_Type := A.X * B.X + A.Y * B.Y; begin return Result; end "*"; function "-" (A : in AD2D) return AD2D is begin return (X => -A.X, Y => -A.Y); end "-"; function To_AD2D_Vector (Pos_Vector : in Pos2D_Vector) return AD2D_Vector is Rvec : AD_Vector := Var (To_Array (Pos_Vector)); Result : AD2D_Vector (Pos_Vector'First .. Pos_Vector'Last); Idx : Int := Pos_Vector'First; begin for K in Rvec'Range loop if K mod 2 = 1 then -- K is odd Result (Idx).X := Rvec (K); else -- K is even Result (Idx).Y := Rvec (K); Idx := Idx + 1; end if; end loop; return Result; end To_AD2D_Vector; end Forward_AD.AD2D;
22.708333
79
0.522936
39e6c6e0011edb00c89efe3259e0844f6df37636
944
adb
Ada
gdb/testsuite/gdb.ada/interface/types.adb
greyblue9/binutils-gdb
05377632b124fe7600eea7f4ee0e9a35d1b0cbdc
[ "BSD-3-Clause" ]
1
2020-10-14T03:24:35.000Z
2020-10-14T03:24:35.000Z
gdb/testsuite/gdb.ada/interface/types.adb
greyblue9/binutils-gdb
05377632b124fe7600eea7f4ee0e9a35d1b0cbdc
[ "BSD-3-Clause" ]
null
null
null
gdb/testsuite/gdb.ada/interface/types.adb
greyblue9/binutils-gdb
05377632b124fe7600eea7f4ee0e9a35d1b0cbdc
[ "BSD-3-Clause" ]
null
null
null
-- Copyright 2008-2021 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 Types is function Ident (O : Object'Class) return Object'Class is begin return O; end Ident; procedure Do_Nothing (O : in out Object'Class) is begin null; end Do_Nothing; end Types;
31.466667
73
0.71822
39e11ec30cd1920587625a376a1bfdad92fd279d
53,376
ads
Ada
Build/for_development/b__swarm.ads
ForYouEyesOnly/Space-Convoy
be4904f6a02695f7c4c5c3c965f4871cd3250003
[ "MIT" ]
1
2019-09-21T09:40:34.000Z
2019-09-21T09:40:34.000Z
Build/for_development/b__swarm.ads
ForYouEyesOnly/Space-Convoy
be4904f6a02695f7c4c5c3c965f4871cd3250003
[ "MIT" ]
null
null
null
Build/for_development/b__swarm.ads
ForYouEyesOnly/Space-Convoy
be4904f6a02695f7c4c5c3c965f4871cd3250003
[ "MIT" ]
1
2019-09-25T12:29:27.000Z
2019-09-25T12:29:27.000Z
pragma Warnings (Off); pragma Ada_95; with System; with System.Parameters; with System.Secondary_Stack; package ada_main is gnat_argc : Integer; gnat_argv : System.Address; gnat_envp : System.Address; pragma Import (C, gnat_argc); pragma Import (C, gnat_argv); pragma Import (C, gnat_envp); gnat_exit_status : Integer; pragma Import (C, gnat_exit_status); GNAT_Version : constant String := "GNAT Version: Community 2018 (20180523-73)" & ASCII.NUL; pragma Export (C, GNAT_Version, "__gnat_version"); Ada_Main_Program_Name : constant String := "_ada_swarm" & ASCII.NUL; pragma Export (C, Ada_Main_Program_Name, "__gnat_ada_main_program_name"); procedure adainit; pragma Export (C, adainit, "adainit"); procedure adafinal; pragma Export (C, adafinal, "adafinal"); function main (argc : Integer; argv : System.Address; envp : System.Address) return Integer; pragma Export (C, main, "main"); type Version_32 is mod 2 ** 32; u00001 : constant Version_32 := 16#5ff99a27#; pragma Export (C, u00001, "swarmB"); u00002 : constant Version_32 := 16#050ff2f0#; pragma Export (C, u00002, "system__standard_libraryB"); u00003 : constant Version_32 := 16#0f7d71d4#; pragma Export (C, u00003, "system__standard_libraryS"); u00004 : constant Version_32 := 16#f8088b52#; pragma Export (C, u00004, "ada__exceptionsB"); u00005 : constant Version_32 := 16#16307b94#; pragma Export (C, u00005, "ada__exceptionsS"); u00006 : constant Version_32 := 16#76789da1#; pragma Export (C, u00006, "adaS"); u00007 : constant Version_32 := 16#5726abed#; pragma Export (C, u00007, "ada__exceptions__last_chance_handlerB"); u00008 : constant Version_32 := 16#41e5552e#; pragma Export (C, u00008, "ada__exceptions__last_chance_handlerS"); u00009 : constant Version_32 := 16#085b6ffb#; pragma Export (C, u00009, "systemS"); u00010 : constant Version_32 := 16#ae860117#; pragma Export (C, u00010, "system__soft_linksB"); u00011 : constant Version_32 := 16#4d58644d#; pragma Export (C, u00011, "system__soft_linksS"); u00012 : constant Version_32 := 16#bd45c2cc#; pragma Export (C, u00012, "system__secondary_stackB"); u00013 : constant Version_32 := 16#4dcf97e2#; pragma Export (C, u00013, "system__secondary_stackS"); u00014 : constant Version_32 := 16#86dbf443#; pragma Export (C, u00014, "system__parametersB"); u00015 : constant Version_32 := 16#40b73bd0#; pragma Export (C, u00015, "system__parametersS"); u00016 : constant Version_32 := 16#ced09590#; pragma Export (C, u00016, "system__storage_elementsB"); u00017 : constant Version_32 := 16#259825ff#; pragma Export (C, u00017, "system__storage_elementsS"); u00018 : constant Version_32 := 16#75bf515c#; pragma Export (C, u00018, "system__soft_links__initializeB"); u00019 : constant Version_32 := 16#5697fc2b#; pragma Export (C, u00019, "system__soft_links__initializeS"); u00020 : constant Version_32 := 16#41837d1e#; pragma Export (C, u00020, "system__stack_checkingB"); u00021 : constant Version_32 := 16#86e40413#; pragma Export (C, u00021, "system__stack_checkingS"); u00022 : constant Version_32 := 16#34742901#; pragma Export (C, u00022, "system__exception_tableB"); u00023 : constant Version_32 := 16#55f506b9#; pragma Export (C, u00023, "system__exception_tableS"); u00024 : constant Version_32 := 16#ce4af020#; pragma Export (C, u00024, "system__exceptionsB"); u00025 : constant Version_32 := 16#6038020d#; pragma Export (C, u00025, "system__exceptionsS"); u00026 : constant Version_32 := 16#80916427#; pragma Export (C, u00026, "system__exceptions__machineB"); u00027 : constant Version_32 := 16#3bad9081#; pragma Export (C, u00027, "system__exceptions__machineS"); u00028 : constant Version_32 := 16#aa0563fc#; pragma Export (C, u00028, "system__exceptions_debugB"); u00029 : constant Version_32 := 16#76d1963f#; pragma Export (C, u00029, "system__exceptions_debugS"); u00030 : constant Version_32 := 16#6c2f8802#; pragma Export (C, u00030, "system__img_intB"); u00031 : constant Version_32 := 16#0a808f39#; pragma Export (C, u00031, "system__img_intS"); u00032 : constant Version_32 := 16#39df8c17#; pragma Export (C, u00032, "system__tracebackB"); u00033 : constant Version_32 := 16#5679b13f#; pragma Export (C, u00033, "system__tracebackS"); u00034 : constant Version_32 := 16#9ed49525#; pragma Export (C, u00034, "system__traceback_entriesB"); u00035 : constant Version_32 := 16#0800998b#; pragma Export (C, u00035, "system__traceback_entriesS"); u00036 : constant Version_32 := 16#bb296fbb#; pragma Export (C, u00036, "system__traceback__symbolicB"); u00037 : constant Version_32 := 16#c84061d1#; pragma Export (C, u00037, "system__traceback__symbolicS"); u00038 : constant Version_32 := 16#701f9d88#; pragma Export (C, u00038, "ada__exceptions__tracebackB"); u00039 : constant Version_32 := 16#20245e75#; pragma Export (C, u00039, "ada__exceptions__tracebackS"); u00040 : constant Version_32 := 16#a0d3d22b#; pragma Export (C, u00040, "system__address_imageB"); u00041 : constant Version_32 := 16#a9b7f2c1#; pragma Export (C, u00041, "system__address_imageS"); u00042 : constant Version_32 := 16#8c33a517#; pragma Export (C, u00042, "system__wch_conB"); u00043 : constant Version_32 := 16#13264d29#; pragma Export (C, u00043, "system__wch_conS"); u00044 : constant Version_32 := 16#9721e840#; pragma Export (C, u00044, "system__wch_stwB"); u00045 : constant Version_32 := 16#3e376128#; pragma Export (C, u00045, "system__wch_stwS"); u00046 : constant Version_32 := 16#a831679c#; pragma Export (C, u00046, "system__wch_cnvB"); u00047 : constant Version_32 := 16#1c91f7da#; pragma Export (C, u00047, "system__wch_cnvS"); u00048 : constant Version_32 := 16#5ab55268#; pragma Export (C, u00048, "interfacesS"); u00049 : constant Version_32 := 16#ece6fdb6#; pragma Export (C, u00049, "system__wch_jisB"); u00050 : constant Version_32 := 16#9ce1eefb#; pragma Export (C, u00050, "system__wch_jisS"); u00051 : constant Version_32 := 16#64d7e8d2#; pragma Export (C, u00051, "callback_proceduresB"); u00052 : constant Version_32 := 16#0bb57c0d#; pragma Export (C, u00052, "callback_proceduresS"); u00053 : constant Version_32 := 16#adc843f0#; pragma Export (C, u00053, "ada__real_timeB"); u00054 : constant Version_32 := 16#69ea8064#; pragma Export (C, u00054, "ada__real_timeS"); u00055 : constant Version_32 := 16#c8eda0b7#; pragma Export (C, u00055, "system__taskingB"); u00056 : constant Version_32 := 16#904e70c9#; pragma Export (C, u00056, "system__taskingS"); u00057 : constant Version_32 := 16#fde20231#; pragma Export (C, u00057, "system__task_primitivesS"); u00058 : constant Version_32 := 16#4a005d03#; pragma Export (C, u00058, "system__os_interfaceB"); u00059 : constant Version_32 := 16#55598295#; pragma Export (C, u00059, "system__os_interfaceS"); u00060 : constant Version_32 := 16#769e25e6#; pragma Export (C, u00060, "interfaces__cB"); u00061 : constant Version_32 := 16#467817d8#; pragma Export (C, u00061, "interfaces__cS"); u00062 : constant Version_32 := 16#1b8990a4#; pragma Export (C, u00062, "interfaces__c__extensionsS"); u00063 : constant Version_32 := 16#54ea2fd2#; pragma Export (C, u00063, "system__os_constantsS"); u00064 : constant Version_32 := 16#9690f83e#; pragma Export (C, u00064, "system__task_primitives__operationsB"); u00065 : constant Version_32 := 16#bd0bc49c#; pragma Export (C, u00065, "system__task_primitives__operationsS"); u00066 : constant Version_32 := 16#89b55e64#; pragma Export (C, u00066, "system__interrupt_managementB"); u00067 : constant Version_32 := 16#1a73cd21#; pragma Export (C, u00067, "system__interrupt_managementS"); u00068 : constant Version_32 := 16#f65595cf#; pragma Export (C, u00068, "system__multiprocessorsB"); u00069 : constant Version_32 := 16#30f7f088#; pragma Export (C, u00069, "system__multiprocessorsS"); u00070 : constant Version_32 := 16#2b2125d3#; pragma Export (C, u00070, "system__os_primitivesB"); u00071 : constant Version_32 := 16#0fa60a0d#; pragma Export (C, u00071, "system__os_primitivesS"); u00072 : constant Version_32 := 16#e0fce7f8#; pragma Export (C, u00072, "system__task_infoB"); u00073 : constant Version_32 := 16#8841d2fa#; pragma Export (C, u00073, "system__task_infoS"); u00074 : constant Version_32 := 16#1036f432#; pragma Export (C, u00074, "system__tasking__debugB"); u00075 : constant Version_32 := 16#de1ac8b1#; pragma Export (C, u00075, "system__tasking__debugS"); u00076 : constant Version_32 := 16#fd83e873#; pragma Export (C, u00076, "system__concat_2B"); u00077 : constant Version_32 := 16#0afbb82b#; pragma Export (C, u00077, "system__concat_2S"); u00078 : constant Version_32 := 16#2b70b149#; pragma Export (C, u00078, "system__concat_3B"); u00079 : constant Version_32 := 16#032b335e#; pragma Export (C, u00079, "system__concat_3S"); u00080 : constant Version_32 := 16#4e0ce0a1#; pragma Export (C, u00080, "system__crtlS"); u00081 : constant Version_32 := 16#273384e4#; pragma Export (C, u00081, "system__img_enum_newB"); u00082 : constant Version_32 := 16#6917693b#; pragma Export (C, u00082, "system__img_enum_newS"); u00083 : constant Version_32 := 16#9dca6636#; pragma Export (C, u00083, "system__img_lliB"); u00084 : constant Version_32 := 16#19143a2a#; pragma Export (C, u00084, "system__img_lliS"); u00085 : constant Version_32 := 16#3cdd1378#; pragma Export (C, u00085, "system__unsigned_typesS"); u00086 : constant Version_32 := 16#6ec3c867#; pragma Export (C, u00086, "system__stack_usageB"); u00087 : constant Version_32 := 16#3a3ac346#; pragma Export (C, u00087, "system__stack_usageS"); u00088 : constant Version_32 := 16#d7aac20c#; pragma Export (C, u00088, "system__ioB"); u00089 : constant Version_32 := 16#961998b4#; pragma Export (C, u00089, "system__ioS"); u00090 : constant Version_32 := 16#d398a95f#; pragma Export (C, u00090, "ada__tagsB"); u00091 : constant Version_32 := 16#12a0afb8#; pragma Export (C, u00091, "ada__tagsS"); u00092 : constant Version_32 := 16#796f31f1#; pragma Export (C, u00092, "system__htableB"); u00093 : constant Version_32 := 16#8c99dc11#; pragma Export (C, u00093, "system__htableS"); u00094 : constant Version_32 := 16#089f5cd0#; pragma Export (C, u00094, "system__string_hashB"); u00095 : constant Version_32 := 16#2ec7b76f#; pragma Export (C, u00095, "system__string_hashS"); u00096 : constant Version_32 := 16#afdbf393#; pragma Export (C, u00096, "system__val_lluB"); u00097 : constant Version_32 := 16#462f440a#; pragma Export (C, u00097, "system__val_lluS"); u00098 : constant Version_32 := 16#269742a9#; pragma Export (C, u00098, "system__val_utilB"); u00099 : constant Version_32 := 16#a4fbd905#; pragma Export (C, u00099, "system__val_utilS"); u00100 : constant Version_32 := 16#ec4d5631#; pragma Export (C, u00100, "system__case_utilB"); u00101 : constant Version_32 := 16#378ed9af#; pragma Export (C, u00101, "system__case_utilS"); u00102 : constant Version_32 := 16#9e3065b2#; pragma Export (C, u00102, "exceptionsB"); u00103 : constant Version_32 := 16#bae1bad2#; pragma Export (C, u00103, "exceptionsS"); u00104 : constant Version_32 := 16#920f3e36#; pragma Export (C, u00104, "ada__task_identificationB"); u00105 : constant Version_32 := 16#a04f2339#; pragma Export (C, u00105, "ada__task_identificationS"); u00106 : constant Version_32 := 16#1d5082e5#; pragma Export (C, u00106, "system__tasking__utilitiesB"); u00107 : constant Version_32 := 16#ab3d060e#; pragma Export (C, u00107, "system__tasking__utilitiesS"); u00108 : constant Version_32 := 16#0a98af1a#; pragma Export (C, u00108, "system__tasking__initializationB"); u00109 : constant Version_32 := 16#f7885a93#; pragma Export (C, u00109, "system__tasking__initializationS"); u00110 : constant Version_32 := 16#9f1b5cb1#; pragma Export (C, u00110, "system__soft_links__taskingB"); u00111 : constant Version_32 := 16#e939497e#; pragma Export (C, u00111, "system__soft_links__taskingS"); u00112 : constant Version_32 := 16#17d21067#; pragma Export (C, u00112, "ada__exceptions__is_null_occurrenceB"); u00113 : constant Version_32 := 16#e1d7566f#; pragma Export (C, u00113, "ada__exceptions__is_null_occurrenceS"); u00114 : constant Version_32 := 16#cde2b616#; pragma Export (C, u00114, "system__tasking__task_attributesB"); u00115 : constant Version_32 := 16#4c40320c#; pragma Export (C, u00115, "system__tasking__task_attributesS"); u00116 : constant Version_32 := 16#81b9d4a8#; pragma Export (C, u00116, "system__tasking__queuingB"); u00117 : constant Version_32 := 16#c9e0262c#; pragma Export (C, u00117, "system__tasking__queuingS"); u00118 : constant Version_32 := 16#9fcf5d7f#; pragma Export (C, u00118, "system__tasking__protected_objectsB"); u00119 : constant Version_32 := 16#b15a1586#; pragma Export (C, u00119, "system__tasking__protected_objectsS"); u00120 : constant Version_32 := 16#3d3c265e#; pragma Export (C, u00120, "system__tasking__protected_objects__entriesB"); u00121 : constant Version_32 := 16#7daf93e7#; pragma Export (C, u00121, "system__tasking__protected_objects__entriesS"); u00122 : constant Version_32 := 16#100eaf58#; pragma Export (C, u00122, "system__restrictionsB"); u00123 : constant Version_32 := 16#4329b6aa#; pragma Export (C, u00123, "system__restrictionsS"); u00124 : constant Version_32 := 16#86c56e5a#; pragma Export (C, u00124, "ada__finalizationS"); u00125 : constant Version_32 := 16#10558b11#; pragma Export (C, u00125, "ada__streamsB"); u00126 : constant Version_32 := 16#67e31212#; pragma Export (C, u00126, "ada__streamsS"); u00127 : constant Version_32 := 16#92d882c5#; pragma Export (C, u00127, "ada__io_exceptionsS"); u00128 : constant Version_32 := 16#95817ed8#; pragma Export (C, u00128, "system__finalization_rootB"); u00129 : constant Version_32 := 16#47a91c6b#; pragma Export (C, u00129, "system__finalization_rootS"); u00130 : constant Version_32 := 16#927a893f#; pragma Export (C, u00130, "ada__text_ioB"); u00131 : constant Version_32 := 16#1ffab6e1#; pragma Export (C, u00131, "ada__text_ioS"); u00132 : constant Version_32 := 16#73d2d764#; pragma Export (C, u00132, "interfaces__c_streamsB"); u00133 : constant Version_32 := 16#b1330297#; pragma Export (C, u00133, "interfaces__c_streamsS"); u00134 : constant Version_32 := 16#ec083f01#; pragma Export (C, u00134, "system__file_ioB"); u00135 : constant Version_32 := 16#af2a8e9e#; pragma Export (C, u00135, "system__file_ioS"); u00136 : constant Version_32 := 16#0f8892f9#; pragma Export (C, u00136, "system__os_libB"); u00137 : constant Version_32 := 16#d8e681fb#; pragma Export (C, u00137, "system__os_libS"); u00138 : constant Version_32 := 16#2a8e89ad#; pragma Export (C, u00138, "system__stringsB"); u00139 : constant Version_32 := 16#684d436e#; pragma Export (C, u00139, "system__stringsS"); u00140 : constant Version_32 := 16#f5c4f553#; pragma Export (C, u00140, "system__file_control_blockS"); u00141 : constant Version_32 := 16#20095f7e#; pragma Export (C, u00141, "generic_sliding_statisticsB"); u00142 : constant Version_32 := 16#bb10ab49#; pragma Export (C, u00142, "generic_sliding_statisticsS"); u00143 : constant Version_32 := 16#98a387f5#; pragma Export (C, u00143, "real_typeS"); u00144 : constant Version_32 := 16#cd2959fb#; pragma Export (C, u00144, "ada__numericsS"); u00145 : constant Version_32 := 16#e5114ee9#; pragma Export (C, u00145, "ada__numerics__auxB"); u00146 : constant Version_32 := 16#9f6e24ed#; pragma Export (C, u00146, "ada__numerics__auxS"); u00147 : constant Version_32 := 16#0cccd408#; pragma Export (C, u00147, "system__fat_llfS"); u00148 : constant Version_32 := 16#6533c8fa#; pragma Export (C, u00148, "system__machine_codeS"); u00149 : constant Version_32 := 16#52f1910f#; pragma Export (C, u00149, "system__assertionsB"); u00150 : constant Version_32 := 16#c5d6436f#; pragma Export (C, u00150, "system__assertionsS"); u00151 : constant Version_32 := 16#b2a569d2#; pragma Export (C, u00151, "system__exn_llfB"); u00152 : constant Version_32 := 16#b425d427#; pragma Export (C, u00152, "system__exn_llfS"); u00153 : constant Version_32 := 16#761c7ae2#; pragma Export (C, u00153, "system__fat_lfltS"); u00154 : constant Version_32 := 16#f86a0784#; pragma Export (C, u00154, "graphics_configurationS"); u00155 : constant Version_32 := 16#a1e0f341#; pragma Export (C, u00155, "glB"); u00156 : constant Version_32 := 16#3e6953e9#; pragma Export (C, u00156, "glS"); u00157 : constant Version_32 := 16#7be628b8#; pragma Export (C, u00157, "gl__extendedS"); u00158 : constant Version_32 := 16#27986d94#; pragma Export (C, u00158, "interfaces__c__stringsB"); u00159 : constant Version_32 := 16#603c1c44#; pragma Export (C, u00159, "interfaces__c__stringsS"); u00160 : constant Version_32 := 16#ef512720#; pragma Export (C, u00160, "globe_3dB"); u00161 : constant Version_32 := 16#68f549e6#; pragma Export (C, u00161, "globe_3dS"); u00162 : constant Version_32 := 16#5b4659fa#; pragma Export (C, u00162, "ada__charactersS"); u00163 : constant Version_32 := 16#8f637df8#; pragma Export (C, u00163, "ada__characters__handlingB"); u00164 : constant Version_32 := 16#3b3f6154#; pragma Export (C, u00164, "ada__characters__handlingS"); u00165 : constant Version_32 := 16#4b7bb96a#; pragma Export (C, u00165, "ada__characters__latin_1S"); u00166 : constant Version_32 := 16#e6d4fa36#; pragma Export (C, u00166, "ada__stringsS"); u00167 : constant Version_32 := 16#96df1a3f#; pragma Export (C, u00167, "ada__strings__mapsB"); u00168 : constant Version_32 := 16#1e526bec#; pragma Export (C, u00168, "ada__strings__mapsS"); u00169 : constant Version_32 := 16#98e13b0e#; pragma Export (C, u00169, "system__bit_opsB"); u00170 : constant Version_32 := 16#0765e3a3#; pragma Export (C, u00170, "system__bit_opsS"); u00171 : constant Version_32 := 16#92f05f13#; pragma Export (C, u00171, "ada__strings__maps__constantsS"); u00172 : constant Version_32 := 16#179d7d28#; pragma Export (C, u00172, "ada__containersS"); u00173 : constant Version_32 := 16#adb6d201#; pragma Export (C, u00173, "ada__strings__fixedB"); u00174 : constant Version_32 := 16#a86b22b3#; pragma Export (C, u00174, "ada__strings__fixedS"); u00175 : constant Version_32 := 16#2eb48a6d#; pragma Export (C, u00175, "ada__strings__searchB"); u00176 : constant Version_32 := 16#c1ab8667#; pragma Export (C, u00176, "ada__strings__searchS"); u00177 : constant Version_32 := 16#9c2abfb0#; pragma Export (C, u00177, "gl__errorsB"); u00178 : constant Version_32 := 16#51391c66#; pragma Export (C, u00178, "gl__errorsS"); u00179 : constant Version_32 := 16#30237187#; pragma Export (C, u00179, "gluB"); u00180 : constant Version_32 := 16#f8141e55#; pragma Export (C, u00180, "gluS"); u00181 : constant Version_32 := 16#932a4690#; pragma Export (C, u00181, "system__concat_4B"); u00182 : constant Version_32 := 16#763f44db#; pragma Export (C, u00182, "system__concat_4S"); u00183 : constant Version_32 := 16#049d363d#; pragma Export (C, u00183, "gl__skinsB"); u00184 : constant Version_32 := 16#2584189e#; pragma Export (C, u00184, "gl__skinsS"); u00185 : constant Version_32 := 16#502e73ef#; pragma Export (C, u00185, "system__fat_fltS"); u00186 : constant Version_32 := 16#5a895de2#; pragma Export (C, u00186, "system__pool_globalB"); u00187 : constant Version_32 := 16#7141203e#; pragma Export (C, u00187, "system__pool_globalS"); u00188 : constant Version_32 := 16#2323a8af#; pragma Export (C, u00188, "system__memoryB"); u00189 : constant Version_32 := 16#512609cf#; pragma Export (C, u00189, "system__memoryS"); u00190 : constant Version_32 := 16#6d4d969a#; pragma Export (C, u00190, "system__storage_poolsB"); u00191 : constant Version_32 := 16#2bb6f156#; pragma Export (C, u00191, "system__storage_poolsS"); u00192 : constant Version_32 := 16#2e260032#; pragma Export (C, u00192, "system__storage_pools__subpoolsB"); u00193 : constant Version_32 := 16#cc5a1856#; pragma Export (C, u00193, "system__storage_pools__subpoolsS"); u00194 : constant Version_32 := 16#d96e3c40#; pragma Export (C, u00194, "system__finalization_mastersB"); u00195 : constant Version_32 := 16#53a75631#; pragma Export (C, u00195, "system__finalization_mastersS"); u00196 : constant Version_32 := 16#7268f812#; pragma Export (C, u00196, "system__img_boolB"); u00197 : constant Version_32 := 16#fd821e10#; pragma Export (C, u00197, "system__img_boolS"); u00198 : constant Version_32 := 16#84042202#; pragma Export (C, u00198, "system__storage_pools__subpools__finalizationB"); u00199 : constant Version_32 := 16#fe2f4b3a#; pragma Export (C, u00199, "system__storage_pools__subpools__finalizationS"); u00200 : constant Version_32 := 16#837026c9#; pragma Export (C, u00200, "gl__bufferB"); u00201 : constant Version_32 := 16#fcf76790#; pragma Export (C, u00201, "gl__bufferS"); u00202 : constant Version_32 := 16#039168f8#; pragma Export (C, u00202, "system__stream_attributesB"); u00203 : constant Version_32 := 16#8bc30a4e#; pragma Export (C, u00203, "system__stream_attributesS"); u00204 : constant Version_32 := 16#e6b92a39#; pragma Export (C, u00204, "gl__buffer__texture_coordsB"); u00205 : constant Version_32 := 16#ee91d95f#; pragma Export (C, u00205, "gl__buffer__texture_coordsS"); u00206 : constant Version_32 := 16#9004b2de#; pragma Export (C, u00206, "gl__buffer__generalB"); u00207 : constant Version_32 := 16#b07eab0a#; pragma Export (C, u00207, "gl__buffer__generalS"); u00208 : constant Version_32 := 16#089a501d#; pragma Export (C, u00208, "gl__geometryB"); u00209 : constant Version_32 := 16#1e8d36a3#; pragma Export (C, u00209, "gl__geometryS"); u00210 : constant Version_32 := 16#457fb2da#; pragma Export (C, u00210, "ada__strings__unboundedB"); u00211 : constant Version_32 := 16#f39c7224#; pragma Export (C, u00211, "ada__strings__unboundedS"); u00212 : constant Version_32 := 16#acee74ad#; pragma Export (C, u00212, "system__compare_array_unsigned_8B"); u00213 : constant Version_32 := 16#a1581e76#; pragma Export (C, u00213, "system__compare_array_unsigned_8S"); u00214 : constant Version_32 := 16#a8025f3c#; pragma Export (C, u00214, "system__address_operationsB"); u00215 : constant Version_32 := 16#1b57d1c8#; pragma Export (C, u00215, "system__address_operationsS"); u00216 : constant Version_32 := 16#020a3f4d#; pragma Export (C, u00216, "system__atomic_countersB"); u00217 : constant Version_32 := 16#bc074276#; pragma Export (C, u00217, "system__atomic_countersS"); u00218 : constant Version_32 := 16#59ec45db#; pragma Export (C, u00218, "gl__mathB"); u00219 : constant Version_32 := 16#a8dd0043#; pragma Export (C, u00219, "gl__mathS"); u00220 : constant Version_32 := 16#d5f9759f#; pragma Export (C, u00220, "ada__text_io__float_auxB"); u00221 : constant Version_32 := 16#48248c7b#; pragma Export (C, u00221, "ada__text_io__float_auxS"); u00222 : constant Version_32 := 16#181dc502#; pragma Export (C, u00222, "ada__text_io__generic_auxB"); u00223 : constant Version_32 := 16#16b3615d#; pragma Export (C, u00223, "ada__text_io__generic_auxS"); u00224 : constant Version_32 := 16#8aa4f090#; pragma Export (C, u00224, "system__img_realB"); u00225 : constant Version_32 := 16#cff33e19#; pragma Export (C, u00225, "system__img_realS"); u00226 : constant Version_32 := 16#1b28662b#; pragma Export (C, u00226, "system__float_controlB"); u00227 : constant Version_32 := 16#e8a72cc7#; pragma Export (C, u00227, "system__float_controlS"); u00228 : constant Version_32 := 16#3e932977#; pragma Export (C, u00228, "system__img_lluB"); u00229 : constant Version_32 := 16#751413bb#; pragma Export (C, u00229, "system__img_lluS"); u00230 : constant Version_32 := 16#ec78c2bf#; pragma Export (C, u00230, "system__img_unsB"); u00231 : constant Version_32 := 16#a3292f8f#; pragma Export (C, u00231, "system__img_unsS"); u00232 : constant Version_32 := 16#582b098c#; pragma Export (C, u00232, "system__powten_tableS"); u00233 : constant Version_32 := 16#c2ca0511#; pragma Export (C, u00233, "system__val_realB"); u00234 : constant Version_32 := 16#f67218ea#; pragma Export (C, u00234, "system__val_realS"); u00235 : constant Version_32 := 16#608e2cd1#; pragma Export (C, u00235, "system__concat_5B"); u00236 : constant Version_32 := 16#8f052cd5#; pragma Export (C, u00236, "system__concat_5S"); u00237 : constant Version_32 := 16#fafb0eca#; pragma Export (C, u00237, "gl__texturesB"); u00238 : constant Version_32 := 16#91ca1c90#; pragma Export (C, u00238, "gl__texturesS"); u00239 : constant Version_32 := 16#5c76d753#; pragma Export (C, u00239, "gl__ioB"); u00240 : constant Version_32 := 16#daf3b9dd#; pragma Export (C, u00240, "gl__ioS"); u00241 : constant Version_32 := 16#86ecf8ab#; pragma Export (C, u00241, "system__strings__stream_opsB"); u00242 : constant Version_32 := 16#ec029138#; pragma Export (C, u00242, "system__strings__stream_opsS"); u00243 : constant Version_32 := 16#db0aa7dc#; pragma Export (C, u00243, "ada__streams__stream_ioB"); u00244 : constant Version_32 := 16#55e6e4b0#; pragma Export (C, u00244, "ada__streams__stream_ioS"); u00245 : constant Version_32 := 16#5de653db#; pragma Export (C, u00245, "system__communicationB"); u00246 : constant Version_32 := 16#113b3a29#; pragma Export (C, u00246, "system__communicationS"); u00247 : constant Version_32 := 16#7f8879fc#; pragma Export (C, u00247, "gl__materialsB"); u00248 : constant Version_32 := 16#65f2b4a3#; pragma Export (C, u00248, "gl__materialsS"); u00249 : constant Version_32 := 16#33fd7c82#; pragma Export (C, u00249, "globe_3d__mathB"); u00250 : constant Version_32 := 16#e3e98860#; pragma Export (C, u00250, "globe_3d__mathS"); u00251 : constant Version_32 := 16#40c8be3a#; pragma Export (C, u00251, "globe_3d__optionsB"); u00252 : constant Version_32 := 16#dc499730#; pragma Export (C, u00252, "globe_3d__optionsS"); u00253 : constant Version_32 := 16#bd43c68c#; pragma Export (C, u00253, "globe_3d__portalsB"); u00254 : constant Version_32 := 16#345614ab#; pragma Export (C, u00254, "globe_3d__portalsS"); u00255 : constant Version_32 := 16#c861171e#; pragma Export (C, u00255, "globe_3d__texturesB"); u00256 : constant Version_32 := 16#2a1c4756#; pragma Export (C, u00256, "globe_3d__texturesS"); u00257 : constant Version_32 := 16#c164a034#; pragma Export (C, u00257, "ada__containers__hash_tablesS"); u00258 : constant Version_32 := 16#bcec81df#; pragma Export (C, u00258, "ada__containers__helpersB"); u00259 : constant Version_32 := 16#4adfc5eb#; pragma Export (C, u00259, "ada__containers__helpersS"); u00260 : constant Version_32 := 16#c24eaf4d#; pragma Export (C, u00260, "ada__containers__prime_numbersB"); u00261 : constant Version_32 := 16#6d3af8ed#; pragma Export (C, u00261, "ada__containers__prime_numbersS"); u00262 : constant Version_32 := 16#217daf40#; pragma Export (C, u00262, "ada__strings__unbounded__hashB"); u00263 : constant Version_32 := 16#f0232cad#; pragma Export (C, u00263, "ada__strings__unbounded__hashS"); u00264 : constant Version_32 := 16#fa5081d0#; pragma Export (C, u00264, "unzipB"); u00265 : constant Version_32 := 16#592613ef#; pragma Export (C, u00265, "unzipS"); u00266 : constant Version_32 := 16#8bbf26e6#; pragma Export (C, u00266, "unzip__decompressB"); u00267 : constant Version_32 := 16#ff9edbf7#; pragma Export (C, u00267, "unzip__decompressS"); u00268 : constant Version_32 := 16#bf116e3f#; pragma Export (C, u00268, "bzip2B"); u00269 : constant Version_32 := 16#951df2a7#; pragma Export (C, u00269, "bzip2S"); u00270 : constant Version_32 := 16#297a02d7#; pragma Export (C, u00270, "unzip__decompress__huffmanB"); u00271 : constant Version_32 := 16#3045b9d5#; pragma Export (C, u00271, "unzip__decompress__huffmanS"); u00272 : constant Version_32 := 16#21f15937#; pragma Export (C, u00272, "zipB"); u00273 : constant Version_32 := 16#a4865b30#; pragma Export (C, u00273, "zipS"); u00274 : constant Version_32 := 16#ebb133b2#; pragma Export (C, u00274, "zip__headersB"); u00275 : constant Version_32 := 16#17ef6cb6#; pragma Export (C, u00275, "zip__headersS"); u00276 : constant Version_32 := 16#97991e4b#; pragma Export (C, u00276, "zip_streamsB"); u00277 : constant Version_32 := 16#534a2c31#; pragma Export (C, u00277, "zip_streamsS"); u00278 : constant Version_32 := 16#b8719323#; pragma Export (C, u00278, "ada__calendarB"); u00279 : constant Version_32 := 16#41508869#; pragma Export (C, u00279, "ada__calendarS"); u00280 : constant Version_32 := 16#397e9c9f#; pragma Export (C, u00280, "zip__crcB"); u00281 : constant Version_32 := 16#06c4d47b#; pragma Export (C, u00281, "zip__crcS"); u00282 : constant Version_32 := 16#8ec48dfb#; pragma Export (C, u00282, "unzip__streamsB"); u00283 : constant Version_32 := 16#deb9bdf2#; pragma Export (C, u00283, "unzip__streamsS"); u00284 : constant Version_32 := 16#46899fd1#; pragma Export (C, u00284, "system__concat_7B"); u00285 : constant Version_32 := 16#f49c34e4#; pragma Export (C, u00285, "system__concat_7S"); u00286 : constant Version_32 := 16#a83b7c85#; pragma Export (C, u00286, "system__concat_6B"); u00287 : constant Version_32 := 16#da9c4249#; pragma Export (C, u00287, "system__concat_6S"); u00288 : constant Version_32 := 16#46b1f5ea#; pragma Export (C, u00288, "system__concat_8B"); u00289 : constant Version_32 := 16#eb5c222c#; pragma Export (C, u00289, "system__concat_8S"); u00290 : constant Version_32 := 16#de0a8573#; pragma Export (C, u00290, "gl__frustumsB"); u00291 : constant Version_32 := 16#2c4c19e2#; pragma Export (C, u00291, "gl__frustumsS"); u00292 : constant Version_32 := 16#cd53cf3b#; pragma Export (C, u00292, "gl__skinned_geometryB"); u00293 : constant Version_32 := 16#ec459e05#; pragma Export (C, u00293, "gl__skinned_geometryS"); u00294 : constant Version_32 := 16#c62d8c42#; pragma Export (C, u00294, "glut_2dB"); u00295 : constant Version_32 := 16#7eff0cd3#; pragma Export (C, u00295, "glut_2dS"); u00296 : constant Version_32 := 16#e13e5087#; pragma Export (C, u00296, "glutB"); u00297 : constant Version_32 := 16#6ee34171#; pragma Export (C, u00297, "glutS"); u00298 : constant Version_32 := 16#01a73f89#; pragma Export (C, u00298, "ada__command_lineB"); u00299 : constant Version_32 := 16#3cdef8c9#; pragma Export (C, u00299, "ada__command_lineS"); u00300 : constant Version_32 := 16#8225628b#; pragma Export (C, u00300, "ada__containers__red_black_treesS"); u00301 : constant Version_32 := 16#763b4fd7#; pragma Export (C, u00301, "graphics_frameratesB"); u00302 : constant Version_32 := 16#e379c8e5#; pragma Export (C, u00302, "graphics_frameratesS"); u00303 : constant Version_32 := 16#357666d8#; pragma Export (C, u00303, "ada__calendar__delaysB"); u00304 : constant Version_32 := 16#a808adf5#; pragma Export (C, u00304, "ada__calendar__delaysS"); u00305 : constant Version_32 := 16#9bd4ba92#; pragma Export (C, u00305, "graphics_structuresS"); u00306 : constant Version_32 := 16#f2a9860d#; pragma Export (C, u00306, "rotationsB"); u00307 : constant Version_32 := 16#f942fbb5#; pragma Export (C, u00307, "rotationsS"); u00308 : constant Version_32 := 16#621b3e02#; pragma Export (C, u00308, "matricesB"); u00309 : constant Version_32 := 16#48257de2#; pragma Export (C, u00309, "matricesS"); u00310 : constant Version_32 := 16#dd900968#; pragma Export (C, u00310, "quaternionsB"); u00311 : constant Version_32 := 16#504fbd0e#; pragma Export (C, u00311, "quaternionsS"); u00312 : constant Version_32 := 16#3315000b#; pragma Export (C, u00312, "vectors_3dB"); u00313 : constant Version_32 := 16#9351ec73#; pragma Export (C, u00313, "vectors_3dS"); u00314 : constant Version_32 := 16#fe1ffede#; pragma Export (C, u00314, "ada__strings__boundedB"); u00315 : constant Version_32 := 16#89c18940#; pragma Export (C, u00315, "ada__strings__boundedS"); u00316 : constant Version_32 := 16#7ec26662#; pragma Export (C, u00316, "ada__strings__superboundedB"); u00317 : constant Version_32 := 16#da6addee#; pragma Export (C, u00317, "ada__strings__superboundedS"); u00318 : constant Version_32 := 16#35a52d91#; pragma Export (C, u00318, "vectors_xdB"); u00319 : constant Version_32 := 16#4c943a4c#; pragma Export (C, u00319, "vectors_xdS"); u00320 : constant Version_32 := 16#15404f33#; pragma Export (C, u00320, "vectors_2d_nS"); u00321 : constant Version_32 := 16#ae860a75#; pragma Export (C, u00321, "vectors_xd_iB"); u00322 : constant Version_32 := 16#32b570f3#; pragma Export (C, u00322, "vectors_xd_iS"); u00323 : constant Version_32 := 16#99c5812a#; pragma Export (C, u00323, "graphics_dataS"); u00324 : constant Version_32 := 16#9cceee23#; pragma Export (C, u00324, "modelsB"); u00325 : constant Version_32 := 16#670c4a41#; pragma Export (C, u00325, "modelsS"); u00326 : constant Version_32 := 16#407e14ab#; pragma Export (C, u00326, "spaceship_pB"); u00327 : constant Version_32 := 16#de928fde#; pragma Export (C, u00327, "spaceship_pS"); u00328 : constant Version_32 := 16#bfd27222#; pragma Export (C, u00328, "sphere_pB"); u00329 : constant Version_32 := 16#a2350170#; pragma Export (C, u00329, "sphere_pS"); u00330 : constant Version_32 := 16#ed26937f#; pragma Export (C, u00330, "vectors_4dS"); u00331 : constant Version_32 := 16#bf77ef48#; pragma Export (C, u00331, "graphics_openglB"); u00332 : constant Version_32 := 16#380aa6a1#; pragma Export (C, u00332, "graphics_openglS"); u00333 : constant Version_32 := 16#d976e2b4#; pragma Export (C, u00333, "ada__numerics__float_randomB"); u00334 : constant Version_32 := 16#62aa8dd2#; pragma Export (C, u00334, "ada__numerics__float_randomS"); u00335 : constant Version_32 := 16#ec9cfed1#; pragma Export (C, u00335, "system__random_numbersB"); u00336 : constant Version_32 := 16#cb43df61#; pragma Export (C, u00336, "system__random_numbersS"); u00337 : constant Version_32 := 16#650caaea#; pragma Export (C, u00337, "system__random_seedB"); u00338 : constant Version_32 := 16#534b46a0#; pragma Export (C, u00338, "system__random_seedS"); u00339 : constant Version_32 := 16#1d9142a4#; pragma Export (C, u00339, "system__val_unsB"); u00340 : constant Version_32 := 16#2c75fe43#; pragma Export (C, u00340, "system__val_unsS"); u00341 : constant Version_32 := 16#ffa721d2#; pragma Export (C, u00341, "globe_3d__stars_skyB"); u00342 : constant Version_32 := 16#60803aec#; pragma Export (C, u00342, "globe_3d__stars_skyS"); u00343 : constant Version_32 := 16#9df65f1b#; pragma Export (C, u00343, "graphics_setupB"); u00344 : constant Version_32 := 16#ae3cfa3a#; pragma Export (C, u00344, "graphics_setupS"); u00345 : constant Version_32 := 16#03e83d1c#; pragma Export (C, u00345, "ada__numerics__elementary_functionsB"); u00346 : constant Version_32 := 16#edc89b7f#; pragma Export (C, u00346, "ada__numerics__elementary_functionsS"); u00347 : constant Version_32 := 16#748f0b17#; pragma Export (C, u00347, "glut__devicesB"); u00348 : constant Version_32 := 16#c8f38135#; pragma Export (C, u00348, "glut__devicesS"); u00349 : constant Version_32 := 16#da9d8aa7#; pragma Export (C, u00349, "glut__windowsB"); u00350 : constant Version_32 := 16#75e2ce49#; pragma Export (C, u00350, "glut__windowsS"); u00351 : constant Version_32 := 16#1a19ed33#; pragma Export (C, u00351, "actorsB"); u00352 : constant Version_32 := 16#9c19e623#; pragma Export (C, u00352, "actorsS"); u00353 : constant Version_32 := 16#d317e11b#; pragma Export (C, u00353, "game_controlB"); u00354 : constant Version_32 := 16#5097ee25#; pragma Export (C, u00354, "game_controlS"); u00355 : constant Version_32 := 16#c48063ce#; pragma Export (C, u00355, "globe_3d__software_anti_aliasingB"); u00356 : constant Version_32 := 16#41a04269#; pragma Export (C, u00356, "globe_3d__software_anti_aliasingS"); u00357 : constant Version_32 := 16#ecc4ed1f#; pragma Export (C, u00357, "keyboardB"); u00358 : constant Version_32 := 16#e8d894be#; pragma Export (C, u00358, "keyboardS"); u00359 : constant Version_32 := 16#339eba20#; pragma Export (C, u00359, "screenshotsB"); u00360 : constant Version_32 := 16#fb6ddf6f#; pragma Export (C, u00360, "screenshotsS"); u00361 : constant Version_32 := 16#4e9834aa#; pragma Export (C, u00361, "swarm_configurationB"); u00362 : constant Version_32 := 16#58067b51#; pragma Export (C, u00362, "swarm_configurationS"); u00363 : constant Version_32 := 16#844fe575#; pragma Export (C, u00363, "swarm_configurationsB"); u00364 : constant Version_32 := 16#bf53612f#; pragma Export (C, u00364, "swarm_configurationsS"); u00365 : constant Version_32 := 16#eea673f9#; pragma Export (C, u00365, "swarm_structures_baseS"); u00366 : constant Version_32 := 16#118d926e#; pragma Export (C, u00366, "generic_protectedB"); u00367 : constant Version_32 := 16#dac5157f#; pragma Export (C, u00367, "generic_protectedS"); u00368 : constant Version_32 := 16#cc990476#; pragma Export (C, u00368, "system__tasking__protected_objects__operationsB"); u00369 : constant Version_32 := 16#ba36ad85#; pragma Export (C, u00369, "system__tasking__protected_objects__operationsS"); u00370 : constant Version_32 := 16#2db45322#; pragma Export (C, u00370, "system__tasking__entry_callsB"); u00371 : constant Version_32 := 16#c7180c67#; pragma Export (C, u00371, "system__tasking__entry_callsS"); u00372 : constant Version_32 := 16#624cb93c#; pragma Export (C, u00372, "system__tasking__rendezvousB"); u00373 : constant Version_32 := 16#f242aaf9#; pragma Export (C, u00373, "system__tasking__rendezvousS"); u00374 : constant Version_32 := 16#e582cfb0#; pragma Export (C, u00374, "swarm_controlB"); u00375 : constant Version_32 := 16#23efe8fe#; pragma Export (C, u00375, "swarm_controlS"); u00376 : constant Version_32 := 16#84d70551#; pragma Export (C, u00376, "swarm_dataS"); u00377 : constant Version_32 := 16#a3e1fbc0#; pragma Export (C, u00377, "swarm_structuresB"); u00378 : constant Version_32 := 16#87aa0ec8#; pragma Export (C, u00378, "swarm_structuresS"); u00379 : constant Version_32 := 16#5aabc651#; pragma Export (C, u00379, "barrier_typeB"); u00380 : constant Version_32 := 16#94192802#; pragma Export (C, u00380, "barrier_typeS"); u00381 : constant Version_32 := 16#98ccd1c1#; pragma Export (C, u00381, "generic_realtime_bufferB"); u00382 : constant Version_32 := 16#a4c755fe#; pragma Export (C, u00382, "generic_realtime_bufferS"); u00383 : constant Version_32 := 16#710eed06#; pragma Export (C, u00383, "vehicle_message_typeS"); u00384 : constant Version_32 := 16#5da508ef#; pragma Export (C, u00384, "vehicle_task_typeB"); u00385 : constant Version_32 := 16#d9636149#; pragma Export (C, u00385, "vehicle_task_typeS"); u00386 : constant Version_32 := 16#82b6184f#; pragma Export (C, u00386, "system__tasking__stagesB"); u00387 : constant Version_32 := 16#1b9f5506#; pragma Export (C, u00387, "system__tasking__stagesS"); u00388 : constant Version_32 := 16#b00860db#; pragma Export (C, u00388, "vehicle_interfaceB"); u00389 : constant Version_32 := 16#72d0071b#; pragma Export (C, u00389, "vehicle_interfaceS"); u00390 : constant Version_32 := 16#d51f6d70#; pragma Export (C, u00390, "system__tasking__async_delaysB"); u00391 : constant Version_32 := 16#5faa1c14#; pragma Export (C, u00391, "system__tasking__async_delaysS"); u00392 : constant Version_32 := 16#969cb1f9#; pragma Export (C, u00392, "system__interrupt_management__operationsB"); u00393 : constant Version_32 := 16#19b909c9#; pragma Export (C, u00393, "system__interrupt_management__operationsS"); u00394 : constant Version_32 := 16#a6d7988d#; pragma Export (C, u00394, "vectors_3d_lfB"); u00395 : constant Version_32 := 16#abff4c19#; pragma Export (C, u00395, "vectors_3d_lfS"); u00396 : constant Version_32 := 16#1e27852c#; pragma Export (C, u00396, "vectors_conversionsB"); u00397 : constant Version_32 := 16#923ddf49#; pragma Export (C, u00397, "vectors_conversionsS"); u00398 : constant Version_32 := 16#cdecf3e0#; pragma Export (C, u00398, "vectors_2dS"); u00399 : constant Version_32 := 16#3b68dc9f#; pragma Export (C, u00399, "vectors_2d_iS"); u00400 : constant Version_32 := 16#e9217b79#; pragma Export (C, u00400, "vectors_2d_pS"); u00401 : constant Version_32 := 16#878e5819#; pragma Export (C, u00401, "swarm_control_concurrent_genericB"); u00402 : constant Version_32 := 16#7d3a30dd#; pragma Export (C, u00402, "swarm_control_concurrent_genericS"); -- BEGIN ELABORATION ORDER -- ada%s -- ada.characters%s -- ada.characters.latin_1%s -- interfaces%s -- system%s -- system.address_operations%s -- system.address_operations%b -- system.atomic_counters%s -- system.atomic_counters%b -- system.exn_llf%s -- system.exn_llf%b -- system.float_control%s -- system.float_control%b -- system.img_bool%s -- system.img_bool%b -- system.img_enum_new%s -- system.img_enum_new%b -- system.img_int%s -- system.img_int%b -- system.img_lli%s -- system.img_lli%b -- system.io%s -- system.io%b -- system.machine_code%s -- system.os_primitives%s -- system.os_primitives%b -- system.parameters%s -- system.parameters%b -- system.crtl%s -- interfaces.c_streams%s -- interfaces.c_streams%b -- system.powten_table%s -- system.restrictions%s -- system.restrictions%b -- system.storage_elements%s -- system.storage_elements%b -- system.stack_checking%s -- system.stack_checking%b -- system.stack_usage%s -- system.stack_usage%b -- system.string_hash%s -- system.string_hash%b -- system.htable%s -- system.htable%b -- system.strings%s -- system.strings%b -- system.task_info%s -- system.task_info%b -- system.traceback_entries%s -- system.traceback_entries%b -- system.unsigned_types%s -- system.img_llu%s -- system.img_llu%b -- system.img_uns%s -- system.img_uns%b -- system.wch_con%s -- system.wch_con%b -- system.wch_jis%s -- system.wch_jis%b -- system.wch_cnv%s -- system.wch_cnv%b -- system.compare_array_unsigned_8%s -- system.compare_array_unsigned_8%b -- system.concat_2%s -- system.concat_2%b -- system.concat_3%s -- system.concat_3%b -- system.concat_4%s -- system.concat_4%b -- system.concat_5%s -- system.concat_5%b -- system.concat_6%s -- system.concat_6%b -- system.concat_7%s -- system.concat_7%b -- system.concat_8%s -- system.concat_8%b -- system.traceback%s -- system.traceback%b -- system.wch_stw%s -- system.standard_library%s -- system.exceptions_debug%s -- system.exceptions_debug%b -- ada.exceptions%s -- system.wch_stw%b -- ada.exceptions.traceback%s -- system.secondary_stack%s -- system.address_image%s -- system.soft_links%s -- system.exception_table%s -- system.exception_table%b -- system.exceptions%s -- system.exceptions%b -- ada.exceptions.last_chance_handler%s -- system.memory%s -- system.memory%b -- ada.exceptions.traceback%b -- system.traceback.symbolic%s -- system.traceback.symbolic%b -- system.exceptions.machine%s -- system.exceptions.machine%b -- system.secondary_stack%b -- system.address_image%b -- system.soft_links.initialize%s -- system.soft_links.initialize%b -- system.soft_links%b -- ada.exceptions.last_chance_handler%b -- system.standard_library%b -- ada.exceptions%b -- ada.command_line%s -- ada.command_line%b -- ada.containers%s -- ada.containers.prime_numbers%s -- ada.containers.prime_numbers%b -- ada.exceptions.is_null_occurrence%s -- ada.exceptions.is_null_occurrence%b -- ada.io_exceptions%s -- ada.numerics%s -- ada.strings%s -- interfaces.c%s -- interfaces.c%b -- interfaces.c.extensions%s -- interfaces.c.strings%s -- interfaces.c.strings%b -- system.case_util%s -- system.case_util%b -- system.fat_flt%s -- system.fat_lflt%s -- system.fat_llf%s -- ada.numerics.aux%s -- ada.numerics.aux%b -- ada.numerics.elementary_functions%s -- ada.numerics.elementary_functions%b -- system.img_real%s -- system.img_real%b -- system.multiprocessors%s -- system.multiprocessors%b -- system.os_constants%s -- system.os_interface%s -- system.os_interface%b -- system.interrupt_management%s -- system.interrupt_management%b -- system.os_lib%s -- system.os_lib%b -- system.task_primitives%s -- system.tasking%s -- system.task_primitives.operations%s -- system.tasking.debug%s -- system.tasking%b -- system.task_primitives.operations%b -- system.tasking.debug%b -- system.val_util%s -- system.val_util%b -- system.val_llu%s -- system.val_llu%b -- ada.tags%s -- ada.tags%b -- ada.streams%s -- ada.streams%b -- system.communication%s -- system.communication%b -- system.file_control_block%s -- system.finalization_root%s -- system.finalization_root%b -- ada.finalization%s -- ada.containers.helpers%s -- ada.containers.helpers%b -- ada.containers.hash_tables%s -- ada.containers.red_black_trees%s -- system.file_io%s -- system.file_io%b -- ada.streams.stream_io%s -- ada.streams.stream_io%b -- system.storage_pools%s -- system.storage_pools%b -- system.finalization_masters%s -- system.finalization_masters%b -- system.storage_pools.subpools%s -- system.storage_pools.subpools.finalization%s -- system.storage_pools.subpools%b -- system.storage_pools.subpools.finalization%b -- system.stream_attributes%s -- system.stream_attributes%b -- system.val_real%s -- system.val_real%b -- system.val_uns%s -- system.val_uns%b -- ada.calendar%s -- ada.calendar%b -- ada.calendar.delays%s -- ada.calendar.delays%b -- ada.real_time%s -- ada.real_time%b -- ada.text_io%s -- ada.text_io%b -- ada.text_io.generic_aux%s -- ada.text_io.generic_aux%b -- ada.text_io.float_aux%s -- ada.text_io.float_aux%b -- system.assertions%s -- system.assertions%b -- system.bit_ops%s -- system.bit_ops%b -- ada.strings.maps%s -- ada.strings.maps%b -- ada.strings.maps.constants%s -- ada.characters.handling%s -- ada.characters.handling%b -- ada.strings.search%s -- ada.strings.search%b -- ada.strings.fixed%s -- ada.strings.fixed%b -- ada.strings.superbounded%s -- ada.strings.superbounded%b -- ada.strings.bounded%s -- ada.strings.bounded%b -- ada.strings.unbounded%s -- ada.strings.unbounded%b -- ada.strings.unbounded.hash%s -- ada.strings.unbounded.hash%b -- system.interrupt_management.operations%s -- system.interrupt_management.operations%b -- system.pool_global%s -- system.pool_global%b -- system.random_seed%s -- system.random_seed%b -- system.random_numbers%s -- system.random_numbers%b -- ada.numerics.float_random%s -- ada.numerics.float_random%b -- system.soft_links.tasking%s -- system.soft_links.tasking%b -- system.strings.stream_ops%s -- system.strings.stream_ops%b -- system.tasking.initialization%s -- system.tasking.task_attributes%s -- system.tasking.initialization%b -- system.tasking.task_attributes%b -- system.tasking.protected_objects%s -- system.tasking.protected_objects%b -- system.tasking.protected_objects.entries%s -- system.tasking.protected_objects.entries%b -- system.tasking.queuing%s -- system.tasking.queuing%b -- system.tasking.utilities%s -- system.tasking.utilities%b -- ada.task_identification%s -- ada.task_identification%b -- system.tasking.entry_calls%s -- system.tasking.rendezvous%s -- system.tasking.protected_objects.operations%s -- system.tasking.protected_objects.operations%b -- system.tasking.entry_calls%b -- system.tasking.rendezvous%b -- system.tasking.stages%s -- system.tasking.stages%b -- system.tasking.async_delays%s -- system.tasking.async_delays%b -- barrier_type%s -- barrier_type%b -- bzip2%s -- bzip2%b -- exceptions%s -- exceptions%b -- generic_protected%s -- generic_protected%b -- generic_realtime_buffer%s -- generic_realtime_buffer%b -- gl%s -- gl.extended%s -- gl%b -- gl.buffer%s -- gl.buffer%b -- gl.io%s -- gl.io%b -- gl.materials%s -- gl.materials%b -- gl.math%s -- gl.math%b -- gl.geometry%s -- gl.geometry%b -- gl.frustums%s -- gl.frustums%b -- glu%s -- glu%b -- gl.errors%s -- gl.errors%b -- gl.buffer.general%s -- gl.buffer.general%b -- gl.textures%s -- gl.textures%b -- gl.buffer.texture_coords%s -- gl.buffer.texture_coords%b -- gl.skins%s -- gl.skins%b -- gl.skinned_geometry%s -- gl.skinned_geometry%b -- glut%s -- glut%b -- glut_2d%s -- glut_2d%b -- real_type%s -- generic_sliding_statistics%s -- generic_sliding_statistics%b -- graphics_framerates%s -- graphics_framerates%b -- matrices%s -- matrices%b -- quaternions%s -- quaternions%b -- screenshots%s -- screenshots%b -- vectors_xd%s -- vectors_xd%b -- vectors_2d%s -- vectors_3d%s -- vectors_3d%b -- rotations%s -- rotations%b -- vectors_3d_lf%s -- vectors_3d_lf%b -- vectors_4d%s -- vectors_xd_i%s -- vectors_xd_i%b -- vectors_2d_i%s -- vectors_2d_n%s -- vectors_2d_p%s -- vectors_conversions%s -- vectors_conversions%b -- zip_streams%s -- zip%s -- zip_streams%b -- zip.headers%s -- zip.headers%b -- zip%b -- zip.crc%s -- zip.crc%b -- unzip%s -- unzip.decompress%s -- unzip.decompress.huffman%s -- unzip.decompress.huffman%b -- unzip%b -- unzip.decompress%b -- unzip.streams%s -- unzip.streams%b -- globe_3d%s -- globe_3d.textures%s -- globe_3d.portals%s -- globe_3d.options%s -- globe_3d.options%b -- globe_3d.math%s -- globe_3d.math%b -- globe_3d.textures%b -- globe_3d%b -- globe_3d.portals%b -- globe_3d.software_anti_aliasing%s -- globe_3d.software_anti_aliasing%b -- globe_3d.stars_sky%s -- globe_3d.stars_sky%b -- glut.devices%s -- game_control%s -- game_control%b -- actors%s -- actors%b -- glut.windows%s -- glut.windows%b -- glut.devices%b -- graphics_structures%s -- graphics_configuration%s -- keyboard%s -- keyboard%b -- spaceship_p%s -- spaceship_p%b -- sphere_p%s -- sphere_p%b -- models%s -- models%b -- graphics_data%s -- graphics_setup%s -- graphics_setup%b -- graphics_opengl%s -- graphics_opengl%b -- swarm_structures_base%s -- swarm_configurations%s -- swarm_configurations%b -- swarm_configuration%s -- swarm_configuration%b -- vehicle_task_type%s -- vehicle_message_type%s -- swarm_structures%s -- swarm_structures%b -- swarm_data%s -- swarm_control%s -- swarm_control%b -- vehicle_interface%s -- vehicle_interface%b -- vehicle_task_type%b -- swarm_control_concurrent_generic%s -- swarm_control_concurrent_generic%b -- callback_procedures%s -- callback_procedures%b -- swarm%b -- END ELABORATION ORDER end ada_main;
42.666667
80
0.692034
0e96d2ca9cd83286894a345ee241717bac6fb1d6
998
adb
Ada
gdb/testsuite/gdb.ada/array_return/p.adb
greyblue9/binutils-gdb
05377632b124fe7600eea7f4ee0e9a35d1b0cbdc
[ "BSD-3-Clause" ]
1
2020-10-14T03:24:35.000Z
2020-10-14T03:24:35.000Z
gdb/testsuite/gdb.ada/array_return/p.adb
greyblue9/binutils-gdb
05377632b124fe7600eea7f4ee0e9a35d1b0cbdc
[ "BSD-3-Clause" ]
null
null
null
gdb/testsuite/gdb.ada/array_return/p.adb
greyblue9/binutils-gdb
05377632b124fe7600eea7f4ee0e9a35d1b0cbdc
[ "BSD-3-Clause" ]
null
null
null
-- Copyright 2006-2021 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 P is Small : Data_Small; Large : Data_Large; Vector : Small_Float_Vector; begin Small := Create_Small; Large := Create_Large; Vector := Create_Small_Float_Vector; Small (1) := Large (1); Small (2) := Integer (Vector (1)); end P;
34.413793
73
0.714429
10afb9f92d45f6270d8866d0d712a804aed74d8f
28,320
adb
Ada
awa/plugins/awa-tags/src/model/awa-tags-models.adb
Letractively/ada-awa
3c82a4d29ed6c1209a2ac7d5fe123c142f3cffbe
[ "Apache-2.0" ]
null
null
null
awa/plugins/awa-tags/src/model/awa-tags-models.adb
Letractively/ada-awa
3c82a4d29ed6c1209a2ac7d5fe123c142f3cffbe
[ "Apache-2.0" ]
null
null
null
awa/plugins/awa-tags/src/model/awa-tags-models.adb
Letractively/ada-awa
3c82a4d29ed6c1209a2ac7d5fe123c142f3cffbe
[ "Apache-2.0" ]
null
null
null
----------------------------------------------------------------------- -- AWA.Tags.Models -- AWA.Tags.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) 2013 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.Tags.Models is use type ADO.Objects.Object_Record_Access; use type ADO.Objects.Object_Ref; use type ADO.Objects.Object_Record; function Tag_Key (Id : in ADO.Identifier) return ADO.Objects.Object_Key is Result : ADO.Objects.Object_Key (Of_Type => ADO.Objects.KEY_INTEGER, Of_Class => TAG_DEF'Access); begin ADO.Objects.Set_Value (Result, Id); return Result; end Tag_Key; function Tag_Key (Id : in String) return ADO.Objects.Object_Key is Result : ADO.Objects.Object_Key (Of_Type => ADO.Objects.KEY_INTEGER, Of_Class => TAG_DEF'Access); begin ADO.Objects.Set_Value (Result, Id); return Result; end Tag_Key; function "=" (Left, Right : Tag_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 Tag_Ref'Class; Impl : out Tag_Access) is Result : ADO.Objects.Object_Record_Access; begin Object.Prepare_Modify (Result); Impl := Tag_Impl (Result.all)'Access; end Set_Field; -- Internal method to allocate the Object_Record instance procedure Allocate (Object : in out Tag_Ref) is Impl : Tag_Access; begin Impl := new Tag_Impl; ADO.Objects.Set_Object (Object, Impl.all'Access); end Allocate; -- ---------------------------------------- -- Data object: Tag -- ---------------------------------------- procedure Set_Id (Object : in out Tag_Ref; Value : in ADO.Identifier) is Impl : Tag_Access; begin Set_Field (Object, Impl); ADO.Objects.Set_Field_Key_Value (Impl.all, 1, Value); end Set_Id; function Get_Id (Object : in Tag_Ref) return ADO.Identifier is Impl : constant Tag_Access := Tag_Impl (Object.Get_Object.all)'Access; begin return Impl.Get_Key_Value; end Get_Id; procedure Set_Name (Object : in out Tag_Ref; Value : in String) is Impl : Tag_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 Tag_Ref; Value : in Ada.Strings.Unbounded.Unbounded_String) is Impl : Tag_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 Tag_Ref) return String is begin return Ada.Strings.Unbounded.To_String (Object.Get_Name); end Get_Name; function Get_Name (Object : in Tag_Ref) return Ada.Strings.Unbounded.Unbounded_String is Impl : constant Tag_Access := Tag_Impl (Object.Get_Load_Object.all)'Access; begin return Impl.Name; end Get_Name; -- Copy of the object. procedure Copy (Object : in Tag_Ref; Into : in out Tag_Ref) is Result : Tag_Ref; begin if not Object.Is_Null then declare Impl : constant Tag_Access := Tag_Impl (Object.Get_Load_Object.all)'Access; Copy : constant Tag_Access := new Tag_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 Tag_Ref; Session : in out ADO.Sessions.Session'Class; Query : in ADO.SQL.Query'Class; Found : out Boolean) is Impl : constant Tag_Access := new Tag_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 Tag_Ref; Session : in out ADO.Sessions.Session'Class; Id : in ADO.Identifier) is Impl : constant Tag_Access := new Tag_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 Tag_Ref; Session : in out ADO.Sessions.Session'Class; Id : in ADO.Identifier; Found : out Boolean) is Impl : constant Tag_Access := new Tag_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 Tag_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 Tag_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 Tag_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 Tag_Impl) is type Tag_Impl_Ptr is access all Tag_Impl; procedure Unchecked_Free is new Ada.Unchecked_Deallocation (Tag_Impl, Tag_Impl_Ptr); pragma Warnings (Off, "*redundant conversion*"); Ptr : Tag_Impl_Ptr := Tag_Impl (Object.all)'Access; pragma Warnings (On, "*redundant conversion*"); begin Unchecked_Free (Ptr); end Destroy; procedure Find (Object : in out Tag_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, TAG_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 Tag_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 Tag_Impl; Session : in out ADO.Sessions.Master_Session'Class) is Stmt : ADO.Statements.Update_Statement := Session.Create_Statement (TAG_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, -- 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 Tag_Impl; Session : in out ADO.Sessions.Master_Session'Class) is Query : ADO.Statements.Insert_Statement := Session.Create_Statement (TAG_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, -- 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 Tag_Impl; Session : in out ADO.Sessions.Master_Session'Class) is Stmt : ADO.Statements.Delete_Statement := Session.Create_Statement (TAG_DEF'Access); begin Stmt.Set_Filter (Filter => "id = ?"); Stmt.Add_Param (Value => Object.Get_Key); Stmt.Execute; end Delete; function Get_Value (From : in Tag_Ref; Name : in String) return Util.Beans.Objects.Object is Obj : constant ADO.Objects.Object_Record_Access := From.Get_Load_Object; Impl : access Tag_Impl; begin if Obj = null then return Util.Beans.Objects.Null_Object; end if; Impl := Tag_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; procedure List (Object : in out Tag_Vector; Session : in out ADO.Sessions.Session'Class; Query : in ADO.SQL.Query'Class) is Stmt : ADO.Statements.Query_Statement := Session.Create_Statement (Query, TAG_DEF'Access); begin Stmt.Execute; Tag_Vectors.Clear (Object); while Stmt.Has_Elements loop declare Item : Tag_Ref; Impl : constant Tag_Access := new Tag_Impl; begin Impl.Load (Stmt, Session); ADO.Objects.Set_Object (Item, Impl.all'Access); Object.Append (Item); end; Stmt.Next; end loop; end List; -- ------------------------------ -- Load the object from current iterator position -- ------------------------------ procedure Load (Object : in out Tag_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; function Tagged_Entity_Key (Id : in ADO.Identifier) return ADO.Objects.Object_Key is Result : ADO.Objects.Object_Key (Of_Type => ADO.Objects.KEY_INTEGER, Of_Class => TAGGED_ENTITY_DEF'Access); begin ADO.Objects.Set_Value (Result, Id); return Result; end Tagged_Entity_Key; function Tagged_Entity_Key (Id : in String) return ADO.Objects.Object_Key is Result : ADO.Objects.Object_Key (Of_Type => ADO.Objects.KEY_INTEGER, Of_Class => TAGGED_ENTITY_DEF'Access); begin ADO.Objects.Set_Value (Result, Id); return Result; end Tagged_Entity_Key; function "=" (Left, Right : Tagged_Entity_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 Tagged_Entity_Ref'Class; Impl : out Tagged_Entity_Access) is Result : ADO.Objects.Object_Record_Access; begin Object.Prepare_Modify (Result); Impl := Tagged_Entity_Impl (Result.all)'Access; end Set_Field; -- Internal method to allocate the Object_Record instance procedure Allocate (Object : in out Tagged_Entity_Ref) is Impl : Tagged_Entity_Access; begin Impl := new Tagged_Entity_Impl; Impl.For_Entity_Id := ADO.NO_IDENTIFIER; Impl.Entity_Type := 0; ADO.Objects.Set_Object (Object, Impl.all'Access); end Allocate; -- ---------------------------------------- -- Data object: Tagged_Entity -- ---------------------------------------- procedure Set_Id (Object : in out Tagged_Entity_Ref; Value : in ADO.Identifier) is Impl : Tagged_Entity_Access; begin Set_Field (Object, Impl); ADO.Objects.Set_Field_Key_Value (Impl.all, 1, Value); end Set_Id; function Get_Id (Object : in Tagged_Entity_Ref) return ADO.Identifier is Impl : constant Tagged_Entity_Access := Tagged_Entity_Impl (Object.Get_Object.all)'Access; begin return Impl.Get_Key_Value; end Get_Id; procedure Set_For_Entity_Id (Object : in out Tagged_Entity_Ref; Value : in ADO.Identifier) is Impl : Tagged_Entity_Access; begin Set_Field (Object, Impl); ADO.Objects.Set_Field_Identifier (Impl.all, 2, Impl.For_Entity_Id, Value); end Set_For_Entity_Id; function Get_For_Entity_Id (Object : in Tagged_Entity_Ref) return ADO.Identifier is Impl : constant Tagged_Entity_Access := Tagged_Entity_Impl (Object.Get_Load_Object.all)'Access; begin return Impl.For_Entity_Id; end Get_For_Entity_Id; procedure Set_Entity_Type (Object : in out Tagged_Entity_Ref; Value : in ADO.Entity_Type) is Impl : Tagged_Entity_Access; begin Set_Field (Object, Impl); ADO.Objects.Set_Field_Entity_Type (Impl.all, 3, Impl.Entity_Type, Value); end Set_Entity_Type; function Get_Entity_Type (Object : in Tagged_Entity_Ref) return ADO.Entity_Type is Impl : constant Tagged_Entity_Access := Tagged_Entity_Impl (Object.Get_Load_Object.all)'Access; begin return Impl.Entity_Type; end Get_Entity_Type; procedure Set_Tag (Object : in out Tagged_Entity_Ref; Value : in AWA.Tags.Models.Tag_Ref'Class) is Impl : Tagged_Entity_Access; begin Set_Field (Object, Impl); ADO.Objects.Set_Field_Object (Impl.all, 4, Impl.Tag, Value); end Set_Tag; function Get_Tag (Object : in Tagged_Entity_Ref) return AWA.Tags.Models.Tag_Ref'Class is Impl : constant Tagged_Entity_Access := Tagged_Entity_Impl (Object.Get_Load_Object.all)'Access; begin return Impl.Tag; end Get_Tag; -- Copy of the object. procedure Copy (Object : in Tagged_Entity_Ref; Into : in out Tagged_Entity_Ref) is Result : Tagged_Entity_Ref; begin if not Object.Is_Null then declare Impl : constant Tagged_Entity_Access := Tagged_Entity_Impl (Object.Get_Load_Object.all)'Access; Copy : constant Tagged_Entity_Access := new Tagged_Entity_Impl; begin ADO.Objects.Set_Object (Result, Copy.all'Access); Copy.Copy (Impl.all); Copy.For_Entity_Id := Impl.For_Entity_Id; Copy.Entity_Type := Impl.Entity_Type; Copy.Tag := Impl.Tag; end; end if; Into := Result; end Copy; procedure Find (Object : in out Tagged_Entity_Ref; Session : in out ADO.Sessions.Session'Class; Query : in ADO.SQL.Query'Class; Found : out Boolean) is Impl : constant Tagged_Entity_Access := new Tagged_Entity_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 Tagged_Entity_Ref; Session : in out ADO.Sessions.Session'Class; Id : in ADO.Identifier) is Impl : constant Tagged_Entity_Access := new Tagged_Entity_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 Tagged_Entity_Ref; Session : in out ADO.Sessions.Session'Class; Id : in ADO.Identifier; Found : out Boolean) is Impl : constant Tagged_Entity_Access := new Tagged_Entity_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 Tagged_Entity_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 Tagged_Entity_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 Tagged_Entity_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 Tagged_Entity_Impl) is type Tagged_Entity_Impl_Ptr is access all Tagged_Entity_Impl; procedure Unchecked_Free is new Ada.Unchecked_Deallocation (Tagged_Entity_Impl, Tagged_Entity_Impl_Ptr); pragma Warnings (Off, "*redundant conversion*"); Ptr : Tagged_Entity_Impl_Ptr := Tagged_Entity_Impl (Object.all)'Access; pragma Warnings (On, "*redundant conversion*"); begin Unchecked_Free (Ptr); end Destroy; procedure Find (Object : in out Tagged_Entity_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, TAGGED_ENTITY_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 Tagged_Entity_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 Tagged_Entity_Impl; Session : in out ADO.Sessions.Master_Session'Class) is Stmt : ADO.Statements.Update_Statement := Session.Create_Statement (TAGGED_ENTITY_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, -- for_entity_id Value => Object.For_Entity_Id); Object.Clear_Modified (2); end if; if Object.Is_Modified (3) then Stmt.Save_Field (Name => COL_2_2_NAME, -- entity_type Value => Object.Entity_Type); Object.Clear_Modified (3); end if; if Object.Is_Modified (4) then Stmt.Save_Field (Name => COL_3_2_NAME, -- tag_id Value => Object.Tag); Object.Clear_Modified (4); 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 Tagged_Entity_Impl; Session : in out ADO.Sessions.Master_Session'Class) is Query : ADO.Statements.Insert_Statement := Session.Create_Statement (TAGGED_ENTITY_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, -- for_entity_id Value => Object.For_Entity_Id); Query.Save_Field (Name => COL_2_2_NAME, -- entity_type Value => Object.Entity_Type); Query.Save_Field (Name => COL_3_2_NAME, -- tag_id Value => Object.Tag); 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 Tagged_Entity_Impl; Session : in out ADO.Sessions.Master_Session'Class) is Stmt : ADO.Statements.Delete_Statement := Session.Create_Statement (TAGGED_ENTITY_DEF'Access); begin Stmt.Set_Filter (Filter => "id = ?"); Stmt.Add_Param (Value => Object.Get_Key); Stmt.Execute; end Delete; function Get_Value (From : in Tagged_Entity_Ref; Name : in String) return Util.Beans.Objects.Object is Obj : constant ADO.Objects.Object_Record_Access := From.Get_Load_Object; Impl : access Tagged_Entity_Impl; begin if Obj = null then return Util.Beans.Objects.Null_Object; end if; Impl := Tagged_Entity_Impl (Obj.all)'Access; if Name = "id" then return ADO.Objects.To_Object (Impl.Get_Key); elsif Name = "for_entity_id" then return Util.Beans.Objects.To_Object (Long_Long_Integer (Impl.For_Entity_Id)); elsif Name = "entity_type" then return Util.Beans.Objects.To_Object (Long_Long_Integer (Impl.Entity_Type)); end if; return Util.Beans.Objects.Null_Object; end Get_Value; procedure List (Object : in out Tagged_Entity_Vector; Session : in out ADO.Sessions.Session'Class; Query : in ADO.SQL.Query'Class) is Stmt : ADO.Statements.Query_Statement := Session.Create_Statement (Query, TAGGED_ENTITY_DEF'Access); begin Stmt.Execute; Tagged_Entity_Vectors.Clear (Object); while Stmt.Has_Elements loop declare Item : Tagged_Entity_Ref; Impl : constant Tagged_Entity_Access := new Tagged_Entity_Impl; begin Impl.Load (Stmt, Session); ADO.Objects.Set_Object (Item, Impl.all'Access); Object.Append (Item); end; Stmt.Next; end loop; end List; -- ------------------------------ -- Load the object from current iterator position -- ------------------------------ procedure Load (Object : in out Tagged_Entity_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.For_Entity_Id := Stmt.Get_Identifier (1); Object.Entity_Type := ADO.Entity_Type (Stmt.Get_Integer (2)); if not Stmt.Is_Null (3) then Object.Tag.Set_Key_Value (Stmt.Get_Identifier (3), Session); end if; ADO.Objects.Set_Created (Object); end Load; -- -------------------- -- Get the bean attribute identified by the given name. -- -------------------- overriding function Get_Value (From : in Tag_Info; Name : in String) return Util.Beans.Objects.Object is begin if Name = "tag" then return Util.Beans.Objects.To_Object (From.Tag); end if; if Name = "count" then return Util.Beans.Objects.To_Object (Long_Long_Integer (From.Count)); end if; return Util.Beans.Objects.Null_Object; end Get_Value; -- -------------------- -- Run the query controlled by <b>Context</b> and append the list in <b>Object</b>. -- -------------------- procedure List (Object : in out Tag_Info_List_Bean'Class; Session : in out ADO.Sessions.Session'Class; Context : in out ADO.Queries.Context'Class) is begin List (Object.List, Session, Context); end List; -- -------------------- -- The tag information. -- -------------------- procedure List (Object : in out Tag_Info_Vector; Session : in out ADO.Sessions.Session'Class; Context : in out ADO.Queries.Context'Class) is procedure Read (Into : in out Tag_Info); Stmt : ADO.Statements.Query_Statement := Session.Create_Statement (Context); Pos : Natural := 0; procedure Read (Into : in out Tag_Info) is begin Into.Tag := Stmt.Get_Unbounded_String (0); Into.Count := Stmt.Get_Natural (1); end Read; begin Stmt.Execute; Tag_Info_Vectors.Clear (Object); while Stmt.Has_Elements loop Object.Insert_Space (Before => Pos); Object.Update_Element (Index => Pos, Process => Read'Access); Pos := Pos + 1; Stmt.Next; end loop; end List; end AWA.Tags.Models;
35.223881
88
0.589866
cbe671f583bc0678d9e96a9e25918844bead7db5
4,363
adb
Ada
src/apass.adb
wiremoons/apass
a73f116d22ef41b87caf5fc238f47c0a6798a560
[ "MIT" ]
3
2021-02-05T13:12:39.000Z
2022-03-30T03:54:44.000Z
src/apass.adb
wiremoons/apass
a73f116d22ef41b87caf5fc238f47c0a6798a560
[ "MIT" ]
null
null
null
src/apass.adb
wiremoons/apass
a73f116d22ef41b87caf5fc238f47c0a6798a560
[ "MIT" ]
null
null
null
------------------------------------------------------------------------------- -- BUILD FILE : apass -- -- Description : A CLI password generator written in Ada. -- -- Author : Simon Rowe <[email protected]> -- -- License : MIT Open Source. -- ------------------------------------------------------------------------------- with Ada.Text_IO; use Ada.Text_IO; with Ada.Strings.Unbounded; use Ada.Strings.Unbounded; with Ada.Command_Line; use Ada.Command_Line; -- use local packages with Password_Manager; with Cmd_Flags; procedure Apass is -------------------------- -- MAIN -------------------------- Full_Password_Str : Unbounded_String := Null_Unbounded_String; Total_Passwords : Integer := 3; Number_Of_Words : constant Integer := 3; begin -- print info on how to compile a 'release' version pragma Debug (Put_Line (Standard_Error, "[DEBUG] build a 'release' version with: gprclean && gprbuild -XBUILD=release")); -- Check if any command line options were used and if they are they will be executed -- and then the program can exit here if Cmd_Flags.Command_Line_Flags_Exist then Set_Exit_Status (Success); pragma Debug (Put_Line (Standard_Error, "[DEBUG] exit with 'success'.")); return; -- exit as flags found and executed else -- Set_Exit_Status (Failure); -- failed as no database found -- pragma Debug (Put_Line (Standard_Error, "[DEBUG] exit with 'failure'.")); Put_Line ("Program 'apass' running..."); Put_Line ("Total words available to construct passwords: " & Password_Manager.Total_Words); Put_Line ("Number of suggested passwords per group:" & Integer'Image (Total_Passwords)); Put_Line ("Number of words to use per password string:" & Integer'Image (Number_Of_Words)); New_Line (1); -- output of mixed lowercase with two punctuation marks and two random numbers surrounding the string while Total_Passwords > 0 loop Full_Password_Str := To_Unbounded_String (Password_Manager.Get_Random_Number); --Full_Password_Str := Full_Password_Str & To_Unbounded_String (Password_Manager.Get_Random_Mark); Append (Full_Password_Str, To_Unbounded_String (Password_Manager.Get_Random_Mark)); Append (Full_Password_Str, To_Unbounded_String (Password_Manager.Basic_Password (Number_Of_Words))); Append (Full_Password_Str, To_Unbounded_String (Password_Manager.Get_Random_Mark)); Append (Full_Password_Str, To_Unbounded_String (Password_Manager.Get_Random_Number)); Password_Manager.Print_Password (To_String (Full_Password_Str)); Total_Passwords := Total_Passwords - 1; end loop; Put_Line (" "); New_Line (1); Total_Passwords := 3; -- output of mixed lowercase with two punctuation marks and two random numbers surrounding the string while Total_Passwords > 0 loop Full_Password_Str := To_Unbounded_String (Password_Manager.Basic_Password (Number_Of_Words)); Append (Full_Password_Str, To_Unbounded_String (Password_Manager.Get_Random_Mark)); Append (Full_Password_Str, To_Unbounded_String (Password_Manager.Get_Random_Number)); Password_Manager.Print_Password (To_String (Full_Password_Str)); Total_Passwords := Total_Passwords - 1; end loop; Put_Line (" "); New_Line (1); Total_Passwords := 3; -- output of mixed lowercase with two punctuation marks and two random numbers surrounding the string while Total_Passwords > 0 loop Full_Password_Str := To_Unbounded_String (Password_Manager.Capitilised_Password (Number_Of_Words)); Append (Full_Password_Str, To_Unbounded_String (Password_Manager.Get_Random_Mark)); Append (Full_Password_Str, To_Unbounded_String (Password_Manager.Get_Random_Number)); Password_Manager.Print_Password (To_String (Full_Password_Str)); Total_Passwords := Total_Passwords - 1; end loop; Put_Line (" "); end if; Set_Exit_Status (Success); pragma Debug (Put_Line (Standard_Error, "[DEBUG] exit with 'success'.")); return; -- exit as flags found and executed end Apass;
47.945055
113
0.653449
c5cf8d14855c531823c6a7233d030053025842ff
11,840
ads
Ada
source/league/league-characters.ads
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
24
2016-11-29T06:59:41.000Z
2021-08-30T11:55:16.000Z
source/league/league-characters.ads
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
2
2019-01-16T05:15:20.000Z
2019-02-03T10:03:32.000Z
source/league/league-characters.ads
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 -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2010-2015, 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 package provides abstraction for Unicode characters (code points). -- Some operations in this package and its children packages depends from the -- current or explicitly specified locale. -- -- Universal_Character provides the gateway to Unicode Character Database. ------------------------------------------------------------------------------ private with Matreshka.Internals.Unicode; package League.Characters is pragma Preelaborate; pragma Remote_Types; type General_Category_Values is (Uppercase_Letter, Lowercase_Letter, Titlecase_Letter, Modifier_Letter, Other_Letter, Nonspacing_Mark, Spacing_Mark, Enclosing_Mark, Decimal_Number, Letter_Number, Other_Number, Connector_Punctuation, Dash_Punctuation, Open_Punctuation, Close_Punctuation, Initial_Punctuation, Final_Punctuation, Other_Punctuation, Math_Symbol, Currency_Symbol, Modifier_Symbol, Other_Symbol, Space_Separator, Line_Separator, Paragraph_Separator, Control, Format, Surrogate, Private_Use, Unassigned); -- subtype Cased_Letter is General_Category_Values -- range Uppercase_Letter .. Titlecase_Letter; -- -- subtype Letter is General_Category_Values -- range Uppercase_Letter .. Other_Letter; -- -- subtype Mark is General_Category_Values -- range Nonspacing_Mark .. Enclosing_Mark; -- -- subtype Number is General_Category_Values -- range Decimal_Number .. Other_Number; -- -- subtype Punctuation is General_Category_Values -- range Connector_Punctuation .. Other_Punctuation; -- -- subtype Symbol is General_Category_Values -- range Math_Symbol .. Other_Symbol; -- -- subtype Separator is General_Category_Values -- range Space_Separator .. Paragraph_Separator; -- -- subtype Other is General_Category_Values -- range Control .. Unassigned; type East_Asian_Width_Values is (Ambiguous, Fullwidth, Halfwidth, Neutral, Narrow, Wide); type Universal_Character is tagged private; pragma Preelaborable_Initialization (Universal_Character); function To_Wide_Wide_Character (Self : Universal_Character'Class) return Wide_Wide_Character; function To_Universal_Character (Self : Wide_Wide_Character) return Universal_Character; function Is_Valid (Self : Universal_Character'Class) return Boolean; -- Returns True when code point of the specified character is inside valid -- code point range and it is not a surrogate code point. function General_Category (Self : Universal_Character'Class) return General_Category_Values; -- Returns general category of the specified character. function Is_Noncharacter_Code_Point (Self : Universal_Character'Class) return Boolean; -- Code points permanently reserved for internal use. function Is_Digit (Self : Universal_Character'Class) return Boolean; -- Returns True when character's general catewgory is one of Number -- categories: -- -- - Decimal_Number -- - Letter_Number -- - Other_Number function Is_Punctuation (Self : Universal_Character'Class) return Boolean; -- Returns True when character's general catewgory is one of Punctuation -- categories: -- -- - Connector_Punctuation -- - Dash_Punctuation -- - Open_Punctuation -- - Close_Punctuation -- - Initial_Punctuation -- - Final_Punctuation -- - Other_Punctuation function Is_ID_Start (Self : Universal_Character'Class) return Boolean; -- Returns True when character is start character of identifier: -- -- "Character having the Unicode General_Category of uppercase letters -- (Lu), lowercase letters (Ll), titlecase letters (Lt), modifier letters -- (Lm), other letters (Lo), letter numbers (Nl), minus Pattern_Syntax and -- Pattern_White_Space code points, plus stability extensions. Note that -- “other letters” includes ideographs." function Is_ID_Continue (Self : Universal_Character'Class) return Boolean; -- Returns True when character is continue of identifier: -- -- "All of the start character of identifier characters, plus characters -- having the Unicode General_Category of nonspacing marks (Mn), spacing -- combining marks (Mc), decimal number (Nd), connector punctuations (Pc), -- plus stability extensions, minus Pattern_Syntax and Pattern_White_Space -- code points." function Is_White_Space (Self : Universal_Character'Class) return Boolean; -- Returns True when character is white space: -- -- "Spaces, separator characters and other control characters which should -- be treated by programming languages as "white space" for the purpose of -- parsing elements. See also Line_Break, Grapheme_Cluster_Break, -- Sentence_Break, and Word_Break, which classify space characters and -- related controls somewhat differently for particular text segmentation -- contexts." function East_Asian_Width (Self : Universal_Character'Class) return East_Asian_Width_Values; -- Returns value of East Asian Width property of specified character. function Lowercase (Self : Universal_Character'Class) return Boolean; -- Returns True when character is lowercase letter. function Uppercase (Self : Universal_Character'Class) return Boolean; -- Returns True when character is uppercase letter. function Simple_Uppercase_Mapping (Self : Universal_Character'Class) return Universal_Character; -- Returns simple uppercase mapping for the specified character. function Simple_Lowercase_Mapping (Self : Universal_Character'Class) return Universal_Character; -- Returns simple lowercase mapping for the specified character. function Simple_Titlecase_Mapping (Self : Universal_Character'Class) return Universal_Character; -- Returns simple titlecase mapping for the specified character. function Simple_Casefold_Mapping (Self : Universal_Character'Class) return Universal_Character; -- Returns simple casefold mapping for the specified character. overriding function "=" (Left : Universal_Character; Right : Universal_Character) return Boolean; not overriding function "<" (Left : Universal_Character; Right : Universal_Character) return Boolean; not overriding function "<=" (Left : Universal_Character; Right : Universal_Character) return Boolean; not overriding function ">" (Left : Universal_Character; Right : Universal_Character) return Boolean; not overriding function ">=" (Left : Universal_Character; Right : Universal_Character) return Boolean; not overriding function "=" (Left : Universal_Character; Right : Wide_Wide_Character) return Boolean; not overriding function "<" (Left : Universal_Character; Right : Wide_Wide_Character) return Boolean; not overriding function "<=" (Left : Universal_Character; Right : Wide_Wide_Character) return Boolean; not overriding function ">" (Left : Universal_Character; Right : Wide_Wide_Character) return Boolean; not overriding function ">=" (Left : Universal_Character; Right : Wide_Wide_Character) return Boolean; not overriding function "=" (Left : Wide_Wide_Character; Right : Universal_Character) return Boolean; not overriding function "<" (Left : Wide_Wide_Character; Right : Universal_Character) return Boolean; not overriding function "<=" (Left : Wide_Wide_Character; Right : Universal_Character) return Boolean; not overriding function ">" (Left : Wide_Wide_Character; Right : Universal_Character) return Boolean; not overriding function ">=" (Left : Wide_Wide_Character; Right : Universal_Character) return Boolean; -- Subprograms to compare characters in code point order. private Invalid : constant Matreshka.Internals.Unicode.Code_Unit_32 := Matreshka.Internals.Unicode.Code_Unit_32'Last; -- Invalid code point to be used to represent uninitialized -- Universal_Character object. ------------------------- -- Universal_Character -- ------------------------- type Universal_Character is tagged record Code : Matreshka.Internals.Unicode.Code_Unit_32 := Invalid; end record; pragma Inline ("<"); pragma Inline ("<="); pragma Inline ("="); pragma Inline (">"); pragma Inline (">="); pragma Inline (To_Wide_Wide_Character); end League.Characters;
43.690037
78
0.632348
10bc65ae24792d7bddee9bd2587f5359937fe491
1,981
adb
Ada
3-mid/physics/interface/applet/demo/hello/3D/launch_hello_physics_interface_3d_demo.adb
charlie5/lace
e9b7dc751d500ff3f559617a6fc3089ace9dc134
[ "0BSD" ]
20
2015-11-04T09:23:59.000Z
2022-01-14T10:21:42.000Z
3-mid/physics/interface/applet/demo/hello/3D/launch_hello_physics_interface_3d_demo.adb
charlie5/lace-alire
9ace9682cf4daac7adb9f980c2868d6225b8111c
[ "0BSD" ]
2
2015-11-04T17:05:56.000Z
2015-12-08T03:16:13.000Z
3-mid/physics/interface/applet/demo/hello/3D/launch_hello_physics_interface_3d_demo.adb
charlie5/lace-alire
9ace9682cf4daac7adb9f980c2868d6225b8111c
[ "0BSD" ]
1
2015-12-07T12:53:52.000Z
2015-12-07T12:53:52.000Z
with physics.Space, physics.Shape, physics.Object, physics.Forge, ada.Text_IO; procedure launch_hello_physics_interface_3D_Demo -- -- Drops a ball onto a box. -- is use physics.Math, physics.Forge, ada.Text_IO; the_Space : constant physics.Space .view := new_Space (physics.Bullet); the_Sphere : constant physics.Shape .view := the_Space.new_sphere_Shape; the_Box : constant physics.Shape .view := the_Space.new_box_Shape (half_Extents => (1.0, 1.0, 1.0)); the_Ball : constant physics.Object.view := the_Space.new_Object (of_Shape => the_Sphere, of_Mass => 1.0, Friction => 0.5, Restitution => 0.5, at_Site => (0.0, 10.0, 0.0), is_Kinematic => False); the_Ground : constant physics.Object.view := the_Space.new_Object (of_Shape => the_Box, of_Mass => 0.0, Friction => 0.5, Restitution => 0.5, at_Site => (0.0, -1.5, 0.0), is_Kinematic => False); begin the_Space.add (the_Ball); the_Space.add (the_Ground); for i in 1 .. 150 loop the_Space.evolve (by => 1.0/60.0); put_Line ( "Sites ~ Ball => " & Image (the_Ball .Site) & " Ground => " & Image (the_Ground.Site)); end loop; end launch_hello_physics_interface_3D_Demo;
41.270833
106
0.40636
20bcd29f1d03633848b0b8c1adac224a1aa24935
92
adb
Ada
tests/typing/bad/testfile-arith-5.adb
xuedong/mini-ada
59a8b966cf50ba22a3b5a7cb449f671e4da32e44
[ "MIT" ]
null
null
null
tests/typing/bad/testfile-arith-5.adb
xuedong/mini-ada
59a8b966cf50ba22a3b5a7cb449f671e4da32e44
[ "MIT" ]
1
2019-03-10T19:13:21.000Z
2019-03-10T19:19:46.000Z
tests/typing/bad/testfile-arith-5.adb
xuedong/mini-ada
59a8b966cf50ba22a3b5a7cb449f671e4da32e44
[ "MIT" ]
null
null
null
with Ada.Text_IO; use Ada.Text_IO; procedure Test is X : Integer; begin X := 1 - 'a'; end;
23
55
0.663043
1c3357443423681772cb74249d34a3e8d52c6298
14,783
adb
Ada
src/Sudoku/sudoku_tools_9.adb
leomlr/sudoku_ada-jewl
db5f87d41657e17d4e3cffe138a0c0527652c9ec
[ "MIT" ]
null
null
null
src/Sudoku/sudoku_tools_9.adb
leomlr/sudoku_ada-jewl
db5f87d41657e17d4e3cffe138a0c0527652c9ec
[ "MIT" ]
null
null
null
src/Sudoku/sudoku_tools_9.adb
leomlr/sudoku_ada-jewl
db5f87d41657e17d4e3cffe138a0c0527652c9ec
[ "MIT" ]
null
null
null
with JEWL.IO; with ada.Integer_Text_IO; -- Tell compiler to use i/o library with Ada.Strings.Fixed; use ada.Integer_Text_IO; -- Use library routines w/o fully qualified names Package Body sudoku_tools_9 Is -- Function: Show a grid in console. Procedure showGrid (grid: in Matrix_Type) Is Begin Ada.Text_IO.Put_Line("Current Matrix:"); for i in 1..LOOP_LENGTH loop for j in 1..LOOP_LENGTH loop if (grid(i,j) > 64 and grid(i,j) < 72) or (grid(i,j) > 96 and grid(i,j) < 104) then Ada.Text_IO.Put(" " & Character'Val(grid(i,j))); else Ada.Text_IO.Put(Integer'Image(grid(i,j))); end if; if j = BOXES_SIZE or j = 2*BOXES_SIZE or j = 3*BOXES_SIZE then Ada.Text_IO.Put(" "); end if; end loop; if i = BOXES_SIZE or i = 2*BOXES_SIZE or i = 3*BOXES_SIZE then Ada.Text_IO.new_line; end if; Ada.Text_IO.new_line; end loop; Ada.Text_IO.new_line; End showGrid; -- Function: Get grid Line. Function getLine (grid: Matrix_Type; index: in Integer) return List_Type Is list: List_Type; Begin for i in 1..LOOP_LENGTH loop list(i) := grid(index, i); end loop; return list; End getLine; -- Function: Get grid column. Function getColumn (grid: Matrix_Type; index: in Integer) return List_Type Is list: List_Type; Begin for i in 1..LOOP_LENGTH loop list(i) := grid(i, index); end loop; return list; End getColumn; -- Function: Get grid block. Function getBlock (grid: in Matrix_Type; index_i: in Integer; index_j: in Integer) return List_Type Is list: List_Type; index: Integer; start_i: Integer; start_j: Integer; Begin --revoir la formule des getblok pour le 16 index := 1; start_i := (index_i-1)*BOXES_SIZE + 1; start_j := (index_j-1)*BOXES_SIZE + 1; for i in start_i..(start_i + 2) loop for j in start_j..(start_j + 2) loop list(index) := grid(i, j); index := index + 1; end loop; end loop; return list; End getBlock; -- Function: Check a list. Function isValidList (list: in List_Type) return Boolean Is Begin for i in 1..LOOP_LENGTH loop for j in 1..LOOP_LENGTH loop if not (i = j) then if list(i) = list(j) then return False; end if; end if; end loop; end loop; return True; End isValidList; -- Function: Validate a grid; Function isValidGrid (grid: in Matrix_Type) return Boolean Is listToCheck: List_Type; Begin -- Checking Lines for i in 1..LOOP_LENGTH loop listToCheck := getLine(grid, i); if not isValidList(listToCheck) then return False; else Ada.Text_IO.Put_Line("Line " & Integer'Image(i) & " is Ok !"); end if; end loop; -- Checking Columns for i in 1..LOOP_LENGTH loop listToCheck := getColumn(grid, i); if not isValidList(listToCheck) then return False; else Ada.Text_IO.Put_Line("Column " & Integer'Image(i) & " is Ok !"); end if; end loop; -- Checking Blocks for i in 1..BOXES_SIZE loop for j in 1..BOXES_SIZE loop listToCheck := getBlock(grid, i, j); if not isValidList(listToCheck) then return False; else Ada.Text_IO.Put_Line("Block (" & Integer'Image(i) & "," & Integer'Image(j) & ") is Ok !"); end if; end loop; end loop; -- Return True (grid is correct) return True; End isValidGrid; Procedure createGrid (window: in Frame_Type; grid_blocks: out Grid_Block_Type) Is panels: Grid_Panel_Type; Begin for i in 1..BOXES_SIZE loop for j in 1..BOXES_SIZE loop panels(i, j) := Panel (window, (20+(j-1)*BLOCK_WIDTH, 20+(i-1)*BLOCK_WIDTH), BLOCK_WIDTH, BLOCK_WIDTH); -- changer la formule createBlock(panels(i, j), grid_blocks(i, j)); end loop; end loop; End createGrid; Procedure createBlock (panel: in Panel_Type; block: out Block_Editbox_Type) Is Begin for i in 1..BOXES_SIZE loop for j in 1..BOXES_SIZE loop block(i, j) := Editbox (panel, (10+(j-1)*30, 10+(i-1)*30), 20, 20, " 0", False, Font ("Montserrat", 10)); -- changer la formule de recup end loop; end loop; End createBlock; Function getGrid (grid_blocks: in Grid_Block_Type; grid: out Matrix_Type; saving: in Boolean) return Boolean Is block: Block_Editbox_Type; editbox: Editbox_Type; value: Integer; x_index: Integer; y_index: Integer; Begin for i in 1..BOXES_SIZE loop for j in 1..BOXES_SIZE loop for k in 1..BOXES_SIZE loop block := grid_blocks(i, k); for l in 1..BOXES_SIZE loop editbox := block(j, l); x_index := (i-1)*BOXES_SIZE+j; y_index := (k-1)*BOXES_SIZE+l; if isNumeric(Get_Text(editbox)) then value := Integer'Value(Get_Text(editbox)); if not saving then if value /= 0 then grid(x_index, y_index) := value; else return False; end if; else grid(x_index, y_index) := value; end if; else if LOOP_LENGTH = 16 then for i in 1..10 loop value := Character'Pos(Get_Text(editbox)(i)); if value /= 32 then if Get_Text(editbox)'Length > i then if Character'Pos(Get_Text(editbox)(i+1)) /= 32 then return False; end if; end if; exit; end if; end loop; if (value > 64 and value < 72) or (value > 96 and value < 104) then grid(x_index, y_index) := value; else return False; end if; else return False; end if; end if; end loop; end loop; end loop; end loop; return True; End getGrid; Procedure setGrid (grid_blocks: in out Grid_Block_Type; grid: in Matrix_Type; base_filename: in out Unbounded_String) Is block: Block_Editbox_Type; editbox: Editbox_Type; value: Integer; base_grid: Matrix_Type; base_loaded: Boolean := True; Begin if base_filename /= "" then base_loaded := loadBaseMatrix(base_filename, base_grid); end if; if base_loaded then for i in 1..BOXES_SIZE loop for j in 1..BOXES_SIZE loop for k in 1..BOXES_SIZE loop block := grid_blocks(i, k); for l in 1..BOXES_SIZE loop value := grid((i-1)*BOXES_SIZE+j, (k-1)*BOXES_SIZE+l); editbox := block(j, l); if (value > 64 and value < 72) or (value > 96 and value < 104) then Set_Text(editbox, " " & Character'Val(value)); else Set_Text(editbox, Integer'Image(value)); end if; if value /= 0 then if base_filename /= "" then if base_grid((i-1)*BOXES_SIZE+j, (k-1)*BOXES_SIZE+l) /= 0 then Disable(editbox); else Enable(editbox); end if; else Disable(editbox); end if; else Enable(editbox); end if; end loop; end loop; end loop; end loop; end if; End setGrid; Function loadBaseMatrix(base_filename: in out Unbounded_String; grid: out Matrix_Type) return Boolean Is file: Ada.Text_IO.File_Type; open_error: Boolean := False; Begin Begin Ada.Text_IO.Open(file, Ada.Text_IO.IN_FILE, To_String(base_filename)); Exception when others => Ada.Text_IO.Put_Line("Text_IO FileOpeningError: File not found."); open_error := True; End; if not open_error then if fillGrid(readFile(file), grid, base_filename) then Ada.Text_IO.Close(file); return True; end if; end if; return False; End loadBaseMatrix; Function readFile (file: in Ada.Text_IO.File_Type) return Vector Is lines: Vector := Empty_Vector; Begin while not Ada.Text_IO.End_Of_File(file) loop lines.Append(Ada.Text_IO.Get_Line(file)); end loop; return lines; End readFile; Function saveGrid (grid: in Matrix_Type; filename: in String; base_filename: in out Unbounded_String) return Boolean Is file: Ada.Text_IO.File_Type; line: Unbounded_String; Begin Ada.Text_IO.Create(file, Ada.Text_IO.Out_File, filename & ".txt"); Ada.Text_IO.Put_Line(To_String(base_filename)); JEWL.IO.Put_Line(file, To_String(base_filename)); for i in 1..LOOP_LENGTH loop line := To_Unbounded_String(""); for j in 1..LOOP_LENGTH loop if (grid(i,j) > 64 and grid(i,j) < 72) or (grid(i,j) > 96 and grid(i,j) < 104) then line := line & Character'Val(grid(i,j)); else line := line & Integer'Image(grid (i, j))(2); end if; if j /= LOOP_LENGTH then line := line & " "; end if; end loop; JEWL.IO.Put_Line(file, To_String(line)); end loop; Ada.Text_IO.Close(file); return True; End saveGrid; Function split (line: in String; list: out List_Type) return Boolean Is subs : Slice_Set; seps : constant String := " "; index: Integer; value: Integer; item: String (1..1); Begin Ada.Text_IO.Put_Line(line); Create (S => subs, From => line, Separators => seps, Mode => Multiple); for i in 1 .. Slice_Count(subs) loop item := Slice (subs, i); index := Integer'Value(Slice_Number'Image(i)); if isNumeric(item) then value := Integer'Value(item); list(index) := value; else value := Character'Pos(item(1)); if (value > 64 and value < 72) or (value > 96 and value < 104) then list(index) := value; else return False; end if; end if; end loop; return True; End split; Function fillGrid (lines: in vector; grid: out Matrix_Type; base_filename: in out Unbounded_String) return Boolean Is list: List_Type; len: Integer := Integer'Value(Count_Type'Image(lines.Length)); Begin if (len = LOOP_LENGTH + 1) or (len = LOOP_LENGTH + 2) then if (Ada.Strings.Fixed.Index(lines(1), ".txt", 1) > 0) then base_filename := To_Unbounded_String(lines(1)); Ada.Text_IO.Put_Line(To_String(base_filename)); else return False; end if; for i in 1..LOOP_LENGTH loop if split(lines(i+1), list) then for j in 1..LOOP_LENGTH loop grid(i, j) := list(j); end loop; else return False; end if; end loop; else return False; end if; return True; End fillGrid; Function isNumeric (value: in String) return Boolean Is dummy : Float; Begin dummy := Float'Value(value); return True; Exception when others => return False; End isNumeric; End sudoku_tools_9;
41.293296
156
0.441453
dcea4981530e74df795fc8d16a4897089d13cc76
135,793
adb
Ada
Vivado_HLS_Tutorial/Interface_Synthesis/lab4/axi_interfaces_prj/solution2/.autopilot/db/axi_interfaces.sched.adb
williambong/Vivado
68efafbc44b65c0bb047dbafc0ff7f1b56ee36bb
[ "MIT" ]
null
null
null
Vivado_HLS_Tutorial/Interface_Synthesis/lab4/axi_interfaces_prj/solution2/.autopilot/db/axi_interfaces.sched.adb
williambong/Vivado
68efafbc44b65c0bb047dbafc0ff7f1b56ee36bb
[ "MIT" ]
null
null
null
Vivado_HLS_Tutorial/Interface_Synthesis/lab4/axi_interfaces_prj/solution2/.autopilot/db/axi_interfaces.sched.adb
williambong/Vivado
68efafbc44b65c0bb047dbafc0ff7f1b56ee36bb
[ "MIT" ]
null
null
null
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> <!DOCTYPE boost_serialization> <boost_serialization signature="serialization::archive" version="11"> <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>axi_interfaces</name> <ret_bitwidth>0</ret_bitwidth> <ports class_id="2" tracking_level="0" version="0"> <count>16</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>d_o_0</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>d_o[0]</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <direction>1</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>d_o_1</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>d_o[1]</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</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>d_o_2</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>d_o[2]</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</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="_4"> <Value> <Obj> <type>1</type> <id>4</id> <name>d_o_3</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>d_o[3]</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</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="_5"> <Value> <Obj> <type>1</type> <id>5</id> <name>d_o_4</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>d_o[4]</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</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="_6"> <Value> <Obj> <type>1</type> <id>6</id> <name>d_o_5</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>d_o[5]</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</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>d_o_6</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>d_o[6]</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</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>d_o_7</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>d_o[7]</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</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>d_i_0</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>d_i[0]</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</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="_10"> <Value> <Obj> <type>1</type> <id>10</id> <name>d_i_1</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>d_i[1]</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</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="_11"> <Value> <Obj> <type>1</type> <id>11</id> <name>d_i_2</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>d_i[2]</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</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="_12"> <Value> <Obj> <type>1</type> <id>12</id> <name>d_i_3</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>d_i[3]</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</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="_13"> <Value> <Obj> <type>1</type> <id>13</id> <name>d_i_4</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>d_i[4]</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</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="_14"> <Value> <Obj> <type>1</type> <id>14</id> <name>d_i_5</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>d_i[5]</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</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="_15"> <Value> <Obj> <type>1</type> <id>15</id> <name>d_i_6</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>d_i[6]</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</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="_16"> <Value> <Obj> <type>1</type> <id>16</id> <name>d_i_7</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>d_i[7]</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</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>68</count> <item_version>0</item_version> <item class_id="9" tracking_level="1" version="0" object_id="_17"> <Value> <Obj> <type>0</type> <id>42</id> <name></name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>64</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item class_id="10" tracking_level="0" version="0"> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</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>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>64</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>137</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_18"> <Value> <Obj> <type>0</type> <id>44</id> <name>do_init</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>6</count> <item_version>0</item_version> <item>252</item> <item>253</item> <item>255</item> <item>256</item> <item>257</item> <item>258</item> </oprand_edges> <opcode>phi</opcode> </item> <item class_id_reference="9" object_id="_19"> <Value> <Obj> <type>0</type> <id>45</id> <name>i1</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>64</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>64</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>6</count> <item_version>0</item_version> <item>260</item> <item>261</item> <item>262</item> <item>263</item> <item>264</item> <item>265</item> </oprand_edges> <opcode>phi</opcode> </item> <item class_id_reference="9" object_id="_20"> <Value> <Obj> <type>0</type> <id>46</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>3</count> <item_version>0</item_version> <item>266</item> <item>267</item> <item>268</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_21"> <Value> <Obj> <type>0</type> <id>65</id> <name></name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>64</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>64</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>250</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_22"> <Value> <Obj> <type>0</type> <id>67</id> <name>i1_cast</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>64</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>64</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>138</item> </oprand_edges> <opcode>zext</opcode> </item> <item class_id_reference="9" object_id="_23"> <Value> <Obj> <type>0</type> <id>72</id> <name>acc_0_load</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>139</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_24"> <Value> <Obj> <type>0</type> <id>73</id> <name>d_i_0_read</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>141</item> <item>142</item> </oprand_edges> <opcode>read</opcode> </item> <item class_id_reference="9" object_id="_25"> <Value> <Obj> <type>0</type> <id>74</id> <name>tmp_2</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>143</item> </oprand_edges> <opcode>sext</opcode> </item> <item class_id_reference="9" object_id="_26"> <Value> <Obj> <type>0</type> <id>75</id> <name>tmp_3</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>66</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>144</item> <item>145</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_27"> <Value> <Obj> <type>0</type> <id>76</id> <name></name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>66</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>146</item> <item>147</item> <item>520</item> </oprand_edges> <opcode>store</opcode> </item> <item class_id_reference="9" object_id="_28"> <Value> <Obj> <type>0</type> <id>77</id> <name>tmp_1</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>148</item> </oprand_edges> <opcode>trunc</opcode> </item> <item class_id_reference="9" object_id="_29"> <Value> <Obj> <type>0</type> <id>78</id> <name></name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>67</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>150</item> <item>151</item> <item>152</item> </oprand_edges> <opcode>write</opcode> </item> <item class_id_reference="9" object_id="_30"> <Value> <Obj> <type>0</type> <id>80</id> <name>acc_1_load</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>153</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_31"> <Value> <Obj> <type>0</type> <id>81</id> <name>d_i_1_read</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>154</item> <item>155</item> </oprand_edges> <opcode>read</opcode> </item> <item class_id_reference="9" object_id="_32"> <Value> <Obj> <type>0</type> <id>82</id> <name>tmp_2_1</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>156</item> </oprand_edges> <opcode>sext</opcode> </item> <item class_id_reference="9" object_id="_33"> <Value> <Obj> <type>0</type> <id>83</id> <name>tmp_3_1</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>66</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>157</item> <item>158</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_34"> <Value> <Obj> <type>0</type> <id>84</id> <name></name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>66</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>159</item> <item>160</item> <item>519</item> </oprand_edges> <opcode>store</opcode> </item> <item class_id_reference="9" object_id="_35"> <Value> <Obj> <type>0</type> <id>85</id> <name>tmp_4</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>161</item> </oprand_edges> <opcode>trunc</opcode> </item> <item class_id_reference="9" object_id="_36"> <Value> <Obj> <type>0</type> <id>86</id> <name></name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>67</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>162</item> <item>163</item> <item>164</item> </oprand_edges> <opcode>write</opcode> </item> <item class_id_reference="9" object_id="_37"> <Value> <Obj> <type>0</type> <id>87</id> <name>acc_2_load</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>165</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_38"> <Value> <Obj> <type>0</type> <id>88</id> <name>d_i_2_read</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>166</item> <item>167</item> </oprand_edges> <opcode>read</opcode> </item> <item class_id_reference="9" object_id="_39"> <Value> <Obj> <type>0</type> <id>89</id> <name>tmp_2_2</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>168</item> </oprand_edges> <opcode>sext</opcode> </item> <item class_id_reference="9" object_id="_40"> <Value> <Obj> <type>0</type> <id>90</id> <name>tmp_3_2</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>66</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>169</item> <item>170</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_41"> <Value> <Obj> <type>0</type> <id>91</id> <name></name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>66</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>518</item> </oprand_edges> <opcode>store</opcode> </item> <item class_id_reference="9" object_id="_42"> <Value> <Obj> <type>0</type> <id>92</id> <name>tmp_5</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>173</item> </oprand_edges> <opcode>trunc</opcode> </item> <item class_id_reference="9" object_id="_43"> <Value> <Obj> <type>0</type> <id>93</id> <name></name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>67</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>174</item> <item>175</item> <item>176</item> </oprand_edges> <opcode>write</opcode> </item> <item class_id_reference="9" object_id="_44"> <Value> <Obj> <type>0</type> <id>94</id> <name>acc_3_load</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>177</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_45"> <Value> <Obj> <type>0</type> <id>95</id> <name>d_i_3_read</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>178</item> <item>179</item> </oprand_edges> <opcode>read</opcode> </item> <item class_id_reference="9" object_id="_46"> <Value> <Obj> <type>0</type> <id>96</id> <name>tmp_2_3</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>180</item> </oprand_edges> <opcode>sext</opcode> </item> <item class_id_reference="9" object_id="_47"> <Value> <Obj> <type>0</type> <id>97</id> <name>tmp_3_3</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>66</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>181</item> <item>182</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_48"> <Value> <Obj> <type>0</type> <id>98</id> <name></name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>66</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>183</item> <item>184</item> <item>517</item> </oprand_edges> <opcode>store</opcode> </item> <item class_id_reference="9" object_id="_49"> <Value> <Obj> <type>0</type> <id>99</id> <name>tmp_6</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>185</item> </oprand_edges> <opcode>trunc</opcode> </item> <item class_id_reference="9" object_id="_50"> <Value> <Obj> <type>0</type> <id>100</id> <name></name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>67</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>186</item> <item>187</item> <item>188</item> </oprand_edges> <opcode>write</opcode> </item> <item class_id_reference="9" object_id="_51"> <Value> <Obj> <type>0</type> <id>101</id> <name>acc_4_load</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>189</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_52"> <Value> <Obj> <type>0</type> <id>102</id> <name>d_i_4_read</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>190</item> <item>191</item> </oprand_edges> <opcode>read</opcode> </item> <item class_id_reference="9" object_id="_53"> <Value> <Obj> <type>0</type> <id>103</id> <name>tmp_2_4</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>192</item> </oprand_edges> <opcode>sext</opcode> </item> <item class_id_reference="9" object_id="_54"> <Value> <Obj> <type>0</type> <id>104</id> <name>tmp_3_4</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>66</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>193</item> <item>194</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_55"> <Value> <Obj> <type>0</type> <id>105</id> <name></name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>66</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>195</item> <item>196</item> <item>516</item> </oprand_edges> <opcode>store</opcode> </item> <item class_id_reference="9" object_id="_56"> <Value> <Obj> <type>0</type> <id>106</id> <name>tmp_7</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>197</item> </oprand_edges> <opcode>trunc</opcode> </item> <item class_id_reference="9" object_id="_57"> <Value> <Obj> <type>0</type> <id>107</id> <name></name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>67</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>198</item> <item>199</item> <item>200</item> </oprand_edges> <opcode>write</opcode> </item> <item class_id_reference="9" object_id="_58"> <Value> <Obj> <type>0</type> <id>108</id> <name>acc_5_load</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>201</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_59"> <Value> <Obj> <type>0</type> <id>109</id> <name>d_i_5_read</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>202</item> <item>203</item> </oprand_edges> <opcode>read</opcode> </item> <item class_id_reference="9" object_id="_60"> <Value> <Obj> <type>0</type> <id>110</id> <name>tmp_2_5</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>204</item> </oprand_edges> <opcode>sext</opcode> </item> <item class_id_reference="9" object_id="_61"> <Value> <Obj> <type>0</type> <id>111</id> <name>tmp_3_5</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>66</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>205</item> <item>206</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_62"> <Value> <Obj> <type>0</type> <id>112</id> <name></name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>66</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>207</item> <item>208</item> <item>515</item> </oprand_edges> <opcode>store</opcode> </item> <item class_id_reference="9" object_id="_63"> <Value> <Obj> <type>0</type> <id>113</id> <name>tmp_8</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>209</item> </oprand_edges> <opcode>trunc</opcode> </item> <item class_id_reference="9" object_id="_64"> <Value> <Obj> <type>0</type> <id>114</id> <name></name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>67</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>210</item> <item>211</item> <item>212</item> </oprand_edges> <opcode>write</opcode> </item> <item class_id_reference="9" object_id="_65"> <Value> <Obj> <type>0</type> <id>115</id> <name>acc_6_load</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>213</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_66"> <Value> <Obj> <type>0</type> <id>116</id> <name>d_i_6_read</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>214</item> <item>215</item> </oprand_edges> <opcode>read</opcode> </item> <item class_id_reference="9" object_id="_67"> <Value> <Obj> <type>0</type> <id>117</id> <name>tmp_2_6</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>216</item> </oprand_edges> <opcode>sext</opcode> </item> <item class_id_reference="9" object_id="_68"> <Value> <Obj> <type>0</type> <id>118</id> <name>tmp_3_6</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>66</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>217</item> <item>218</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_69"> <Value> <Obj> <type>0</type> <id>119</id> <name></name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>66</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>219</item> <item>220</item> <item>514</item> </oprand_edges> <opcode>store</opcode> </item> <item class_id_reference="9" object_id="_70"> <Value> <Obj> <type>0</type> <id>120</id> <name>tmp_9</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>221</item> </oprand_edges> <opcode>trunc</opcode> </item> <item class_id_reference="9" object_id="_71"> <Value> <Obj> <type>0</type> <id>121</id> <name></name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>67</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>222</item> <item>223</item> <item>224</item> </oprand_edges> <opcode>write</opcode> </item> <item class_id_reference="9" object_id="_72"> <Value> <Obj> <type>0</type> <id>122</id> <name>acc_7_load</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>225</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_73"> <Value> <Obj> <type>0</type> <id>123</id> <name>d_i_7_read</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>226</item> <item>227</item> </oprand_edges> <opcode>read</opcode> </item> <item class_id_reference="9" object_id="_74"> <Value> <Obj> <type>0</type> <id>124</id> <name>tmp_2_7</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>228</item> </oprand_edges> <opcode>sext</opcode> </item> <item class_id_reference="9" object_id="_75"> <Value> <Obj> <type>0</type> <id>125</id> <name>tmp_3_7</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>66</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>229</item> <item>230</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_76"> <Value> <Obj> <type>0</type> <id>126</id> <name></name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>66</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>231</item> <item>232</item> <item>513</item> </oprand_edges> <opcode>store</opcode> </item> <item class_id_reference="9" object_id="_77"> <Value> <Obj> <type>0</type> <id>127</id> <name>tmp_10</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>233</item> </oprand_edges> <opcode>trunc</opcode> </item> <item class_id_reference="9" object_id="_78"> <Value> <Obj> <type>0</type> <id>128</id> <name></name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>67</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>234</item> <item>235</item> <item>236</item> </oprand_edges> <opcode>write</opcode> </item> <item class_id_reference="9" object_id="_79"> <Value> <Obj> <type>0</type> <id>129</id> <name>i_1_7</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>64</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>64</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>238</item> <item>239</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_80"> <Value> <Obj> <type>0</type> <id>130</id> <name>tmp_11</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>64</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>64</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>240</item> </oprand_edges> <opcode>trunc</opcode> </item> <item class_id_reference="9" object_id="_81"> <Value> <Obj> <type>0</type> <id>131</id> <name>exitcond</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>64</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>64</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>241</item> <item>243</item> </oprand_edges> <opcode>icmp</opcode> </item> <item class_id_reference="9" object_id="_82"> <Value> <Obj> <type>0</type> <id>132</id> <name></name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>64</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>64</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>244</item> <item>245</item> <item>246</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_83"> <Value> <Obj> <type>0</type> <id>134</id> <name></name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>69</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>248</item> </oprand_edges> <opcode>return</opcode> </item> <item class_id_reference="9" object_id="_84"> <Value> <Obj> <type>0</type> <id>135</id> <name></name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>69</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>249</item> </oprand_edges> <opcode>br</opcode> </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="_85"> <Value> <Obj> <type>2</type> <id>237</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>6</bitwidth> </Value> <const_type>0</const_type> <content>8</content> </item> <item class_id_reference="16" object_id="_86"> <Value> <Obj> <type>2</type> <id>242</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>6</bitwidth> </Value> <const_type>0</const_type> <content>32</content> </item> <item class_id_reference="16" object_id="_87"> <Value> <Obj> <type>2</type> <id>251</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="_88"> <Value> <Obj> <type>2</type> <id>254</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="_89"> <Value> <Obj> <type>2</type> <id>259</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>5</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> </consts> <blocks class_id="17" tracking_level="0" version="0"> <count>5</count> <item_version>0</item_version> <item class_id="18" tracking_level="1" version="0" object_id="_90"> <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="_91"> <Obj> <type>3</type> <id>47</id> <name>rewind_header</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>44</item> <item>45</item> <item>46</item> </node_objs> </item> <item class_id_reference="18" object_id="_92"> <Obj> <type>3</type> <id>66</id> <name>rewind_init</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>65</item> </node_objs> </item> <item class_id_reference="18" object_id="_93"> <Obj> <type>3</type> <id>133</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>61</count> <item_version>0</item_version> <item>67</item> <item>72</item> <item>73</item> <item>74</item> <item>75</item> <item>76</item> <item>77</item> <item>78</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> <item>99</item> <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> <item>111</item> <item>112</item> <item>113</item> <item>114</item> <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> </node_objs> </item> <item class_id_reference="18" object_id="_94"> <Obj> <type>3</type> <id>136</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>2</count> <item_version>0</item_version> <item>134</item> <item>135</item> </node_objs> </item> </blocks> <edges class_id="19" tracking_level="0" version="0"> <count>122</count> <item_version>0</item_version> <item class_id="20" tracking_level="1" version="0" object_id="_95"> <id>137</id> <edge_type>2</edge_type> <source_obj>47</source_obj> <sink_obj>42</sink_obj> </item> <item class_id_reference="20" object_id="_96"> <id>138</id> <edge_type>1</edge_type> <source_obj>45</source_obj> <sink_obj>67</sink_obj> </item> <item class_id_reference="20" object_id="_97"> <id>139</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>72</sink_obj> </item> <item class_id_reference="20" object_id="_98"> <id>142</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>73</sink_obj> </item> <item class_id_reference="20" object_id="_99"> <id>143</id> <edge_type>1</edge_type> <source_obj>73</source_obj> <sink_obj>74</sink_obj> </item> <item class_id_reference="20" object_id="_100"> <id>144</id> <edge_type>1</edge_type> <source_obj>74</source_obj> <sink_obj>75</sink_obj> </item> <item class_id_reference="20" object_id="_101"> <id>145</id> <edge_type>1</edge_type> <source_obj>72</source_obj> <sink_obj>75</sink_obj> </item> <item class_id_reference="20" object_id="_102"> <id>146</id> <edge_type>1</edge_type> <source_obj>75</source_obj> <sink_obj>76</sink_obj> </item> <item class_id_reference="20" object_id="_103"> <id>147</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>76</sink_obj> </item> <item class_id_reference="20" object_id="_104"> <id>148</id> <edge_type>1</edge_type> <source_obj>75</source_obj> <sink_obj>77</sink_obj> </item> <item class_id_reference="20" object_id="_105"> <id>151</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>78</sink_obj> </item> <item class_id_reference="20" object_id="_106"> <id>152</id> <edge_type>1</edge_type> <source_obj>77</source_obj> <sink_obj>78</sink_obj> </item> <item class_id_reference="20" object_id="_107"> <id>153</id> <edge_type>1</edge_type> <source_obj>18</source_obj> <sink_obj>80</sink_obj> </item> <item class_id_reference="20" object_id="_108"> <id>155</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>81</sink_obj> </item> <item class_id_reference="20" object_id="_109"> <id>156</id> <edge_type>1</edge_type> <source_obj>81</source_obj> <sink_obj>82</sink_obj> </item> <item class_id_reference="20" object_id="_110"> <id>157</id> <edge_type>1</edge_type> <source_obj>82</source_obj> <sink_obj>83</sink_obj> </item> <item class_id_reference="20" object_id="_111"> <id>158</id> <edge_type>1</edge_type> <source_obj>80</source_obj> <sink_obj>83</sink_obj> </item> <item class_id_reference="20" object_id="_112"> <id>159</id> <edge_type>1</edge_type> <source_obj>83</source_obj> <sink_obj>84</sink_obj> </item> <item class_id_reference="20" object_id="_113"> <id>160</id> <edge_type>1</edge_type> <source_obj>18</source_obj> <sink_obj>84</sink_obj> </item> <item class_id_reference="20" object_id="_114"> <id>161</id> <edge_type>1</edge_type> <source_obj>83</source_obj> <sink_obj>85</sink_obj> </item> <item class_id_reference="20" object_id="_115"> <id>163</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>86</sink_obj> </item> <item class_id_reference="20" object_id="_116"> <id>164</id> <edge_type>1</edge_type> <source_obj>85</source_obj> <sink_obj>86</sink_obj> </item> <item class_id_reference="20" object_id="_117"> <id>165</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>87</sink_obj> </item> <item class_id_reference="20" object_id="_118"> <id>167</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>88</sink_obj> </item> <item class_id_reference="20" object_id="_119"> <id>168</id> <edge_type>1</edge_type> <source_obj>88</source_obj> <sink_obj>89</sink_obj> </item> <item class_id_reference="20" object_id="_120"> <id>169</id> <edge_type>1</edge_type> <source_obj>89</source_obj> <sink_obj>90</sink_obj> </item> <item class_id_reference="20" object_id="_121"> <id>170</id> <edge_type>1</edge_type> <source_obj>87</source_obj> <sink_obj>90</sink_obj> </item> <item class_id_reference="20" object_id="_122"> <id>171</id> <edge_type>1</edge_type> <source_obj>90</source_obj> <sink_obj>91</sink_obj> </item> <item class_id_reference="20" object_id="_123"> <id>172</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>91</sink_obj> </item> <item class_id_reference="20" object_id="_124"> <id>173</id> <edge_type>1</edge_type> <source_obj>90</source_obj> <sink_obj>92</sink_obj> </item> <item class_id_reference="20" object_id="_125"> <id>175</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>93</sink_obj> </item> <item class_id_reference="20" object_id="_126"> <id>176</id> <edge_type>1</edge_type> <source_obj>92</source_obj> <sink_obj>93</sink_obj> </item> <item class_id_reference="20" object_id="_127"> <id>177</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>94</sink_obj> </item> <item class_id_reference="20" object_id="_128"> <id>179</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>95</sink_obj> </item> <item class_id_reference="20" object_id="_129"> <id>180</id> <edge_type>1</edge_type> <source_obj>95</source_obj> <sink_obj>96</sink_obj> </item> <item class_id_reference="20" object_id="_130"> <id>181</id> <edge_type>1</edge_type> <source_obj>96</source_obj> <sink_obj>97</sink_obj> </item> <item class_id_reference="20" object_id="_131"> <id>182</id> <edge_type>1</edge_type> <source_obj>94</source_obj> <sink_obj>97</sink_obj> </item> <item class_id_reference="20" object_id="_132"> <id>183</id> <edge_type>1</edge_type> <source_obj>97</source_obj> <sink_obj>98</sink_obj> </item> <item class_id_reference="20" object_id="_133"> <id>184</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>98</sink_obj> </item> <item class_id_reference="20" object_id="_134"> <id>185</id> <edge_type>1</edge_type> <source_obj>97</source_obj> <sink_obj>99</sink_obj> </item> <item class_id_reference="20" object_id="_135"> <id>187</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>100</sink_obj> </item> <item class_id_reference="20" object_id="_136"> <id>188</id> <edge_type>1</edge_type> <source_obj>99</source_obj> <sink_obj>100</sink_obj> </item> <item class_id_reference="20" object_id="_137"> <id>189</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>101</sink_obj> </item> <item class_id_reference="20" object_id="_138"> <id>191</id> <edge_type>1</edge_type> <source_obj>13</source_obj> <sink_obj>102</sink_obj> </item> <item class_id_reference="20" object_id="_139"> <id>192</id> <edge_type>1</edge_type> <source_obj>102</source_obj> <sink_obj>103</sink_obj> </item> <item class_id_reference="20" object_id="_140"> <id>193</id> <edge_type>1</edge_type> <source_obj>103</source_obj> <sink_obj>104</sink_obj> </item> <item class_id_reference="20" object_id="_141"> <id>194</id> <edge_type>1</edge_type> <source_obj>101</source_obj> <sink_obj>104</sink_obj> </item> <item class_id_reference="20" object_id="_142"> <id>195</id> <edge_type>1</edge_type> <source_obj>104</source_obj> <sink_obj>105</sink_obj> </item> <item class_id_reference="20" object_id="_143"> <id>196</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>105</sink_obj> </item> <item class_id_reference="20" object_id="_144"> <id>197</id> <edge_type>1</edge_type> <source_obj>104</source_obj> <sink_obj>106</sink_obj> </item> <item class_id_reference="20" object_id="_145"> <id>199</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>107</sink_obj> </item> <item class_id_reference="20" object_id="_146"> <id>200</id> <edge_type>1</edge_type> <source_obj>106</source_obj> <sink_obj>107</sink_obj> </item> <item class_id_reference="20" object_id="_147"> <id>201</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>108</sink_obj> </item> <item class_id_reference="20" object_id="_148"> <id>203</id> <edge_type>1</edge_type> <source_obj>14</source_obj> <sink_obj>109</sink_obj> </item> <item class_id_reference="20" object_id="_149"> <id>204</id> <edge_type>1</edge_type> <source_obj>109</source_obj> <sink_obj>110</sink_obj> </item> <item class_id_reference="20" object_id="_150"> <id>205</id> <edge_type>1</edge_type> <source_obj>110</source_obj> <sink_obj>111</sink_obj> </item> <item class_id_reference="20" object_id="_151"> <id>206</id> <edge_type>1</edge_type> <source_obj>108</source_obj> <sink_obj>111</sink_obj> </item> <item class_id_reference="20" object_id="_152"> <id>207</id> <edge_type>1</edge_type> <source_obj>111</source_obj> <sink_obj>112</sink_obj> </item> <item class_id_reference="20" object_id="_153"> <id>208</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>112</sink_obj> </item> <item class_id_reference="20" object_id="_154"> <id>209</id> <edge_type>1</edge_type> <source_obj>111</source_obj> <sink_obj>113</sink_obj> </item> <item class_id_reference="20" object_id="_155"> <id>211</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>114</sink_obj> </item> <item class_id_reference="20" object_id="_156"> <id>212</id> <edge_type>1</edge_type> <source_obj>113</source_obj> <sink_obj>114</sink_obj> </item> <item class_id_reference="20" object_id="_157"> <id>213</id> <edge_type>1</edge_type> <source_obj>23</source_obj> <sink_obj>115</sink_obj> </item> <item class_id_reference="20" object_id="_158"> <id>215</id> <edge_type>1</edge_type> <source_obj>15</source_obj> <sink_obj>116</sink_obj> </item> <item class_id_reference="20" object_id="_159"> <id>216</id> <edge_type>1</edge_type> <source_obj>116</source_obj> <sink_obj>117</sink_obj> </item> <item class_id_reference="20" object_id="_160"> <id>217</id> <edge_type>1</edge_type> <source_obj>117</source_obj> <sink_obj>118</sink_obj> </item> <item class_id_reference="20" object_id="_161"> <id>218</id> <edge_type>1</edge_type> <source_obj>115</source_obj> <sink_obj>118</sink_obj> </item> <item class_id_reference="20" object_id="_162"> <id>219</id> <edge_type>1</edge_type> <source_obj>118</source_obj> <sink_obj>119</sink_obj> </item> <item class_id_reference="20" object_id="_163"> <id>220</id> <edge_type>1</edge_type> <source_obj>23</source_obj> <sink_obj>119</sink_obj> </item> <item class_id_reference="20" object_id="_164"> <id>221</id> <edge_type>1</edge_type> <source_obj>118</source_obj> <sink_obj>120</sink_obj> </item> <item class_id_reference="20" object_id="_165"> <id>223</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>121</sink_obj> </item> <item class_id_reference="20" object_id="_166"> <id>224</id> <edge_type>1</edge_type> <source_obj>120</source_obj> <sink_obj>121</sink_obj> </item> <item class_id_reference="20" object_id="_167"> <id>225</id> <edge_type>1</edge_type> <source_obj>24</source_obj> <sink_obj>122</sink_obj> </item> <item class_id_reference="20" object_id="_168"> <id>227</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>123</sink_obj> </item> <item class_id_reference="20" object_id="_169"> <id>228</id> <edge_type>1</edge_type> <source_obj>123</source_obj> <sink_obj>124</sink_obj> </item> <item class_id_reference="20" object_id="_170"> <id>229</id> <edge_type>1</edge_type> <source_obj>124</source_obj> <sink_obj>125</sink_obj> </item> <item class_id_reference="20" object_id="_171"> <id>230</id> <edge_type>1</edge_type> <source_obj>122</source_obj> <sink_obj>125</sink_obj> </item> <item class_id_reference="20" object_id="_172"> <id>231</id> <edge_type>1</edge_type> <source_obj>125</source_obj> <sink_obj>126</sink_obj> </item> <item class_id_reference="20" object_id="_173"> <id>232</id> <edge_type>1</edge_type> <source_obj>24</source_obj> <sink_obj>126</sink_obj> </item> <item class_id_reference="20" object_id="_174"> <id>233</id> <edge_type>1</edge_type> <source_obj>125</source_obj> <sink_obj>127</sink_obj> </item> <item class_id_reference="20" object_id="_175"> <id>235</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>128</sink_obj> </item> <item class_id_reference="20" object_id="_176"> <id>236</id> <edge_type>1</edge_type> <source_obj>127</source_obj> <sink_obj>128</sink_obj> </item> <item class_id_reference="20" object_id="_177"> <id>238</id> <edge_type>1</edge_type> <source_obj>237</source_obj> <sink_obj>129</sink_obj> </item> <item class_id_reference="20" object_id="_178"> <id>239</id> <edge_type>1</edge_type> <source_obj>67</source_obj> <sink_obj>129</sink_obj> </item> <item class_id_reference="20" object_id="_179"> <id>240</id> <edge_type>1</edge_type> <source_obj>129</source_obj> <sink_obj>130</sink_obj> </item> <item class_id_reference="20" object_id="_180"> <id>241</id> <edge_type>1</edge_type> <source_obj>129</source_obj> <sink_obj>131</sink_obj> </item> <item class_id_reference="20" object_id="_181"> <id>243</id> <edge_type>1</edge_type> <source_obj>242</source_obj> <sink_obj>131</sink_obj> </item> <item class_id_reference="20" object_id="_182"> <id>244</id> <edge_type>1</edge_type> <source_obj>131</source_obj> <sink_obj>132</sink_obj> </item> <item class_id_reference="20" object_id="_183"> <id>245</id> <edge_type>2</edge_type> <source_obj>47</source_obj> <sink_obj>132</sink_obj> </item> <item class_id_reference="20" object_id="_184"> <id>246</id> <edge_type>2</edge_type> <source_obj>136</source_obj> <sink_obj>132</sink_obj> </item> <item class_id_reference="20" object_id="_185"> <id>249</id> <edge_type>2</edge_type> <source_obj>47</source_obj> <sink_obj>135</sink_obj> </item> <item class_id_reference="20" object_id="_186"> <id>250</id> <edge_type>2</edge_type> <source_obj>133</source_obj> <sink_obj>65</sink_obj> </item> <item class_id_reference="20" object_id="_187"> <id>252</id> <edge_type>1</edge_type> <source_obj>251</source_obj> <sink_obj>44</sink_obj> </item> <item class_id_reference="20" object_id="_188"> <id>253</id> <edge_type>2</edge_type> <source_obj>43</source_obj> <sink_obj>44</sink_obj> </item> <item class_id_reference="20" object_id="_189"> <id>255</id> <edge_type>1</edge_type> <source_obj>254</source_obj> <sink_obj>44</sink_obj> </item> <item class_id_reference="20" object_id="_190"> <id>256</id> <edge_type>2</edge_type> <source_obj>133</source_obj> <sink_obj>44</sink_obj> </item> <item class_id_reference="20" object_id="_191"> <id>257</id> <edge_type>1</edge_type> <source_obj>251</source_obj> <sink_obj>44</sink_obj> </item> <item class_id_reference="20" object_id="_192"> <id>258</id> <edge_type>2</edge_type> <source_obj>136</source_obj> <sink_obj>44</sink_obj> </item> <item class_id_reference="20" object_id="_193"> <id>260</id> <edge_type>1</edge_type> <source_obj>259</source_obj> <sink_obj>45</sink_obj> </item> <item class_id_reference="20" object_id="_194"> <id>261</id> <edge_type>2</edge_type> <source_obj>43</source_obj> <sink_obj>45</sink_obj> </item> <item class_id_reference="20" object_id="_195"> <id>262</id> <edge_type>1</edge_type> <source_obj>130</source_obj> <sink_obj>45</sink_obj> </item> <item class_id_reference="20" object_id="_196"> <id>263</id> <edge_type>2</edge_type> <source_obj>133</source_obj> <sink_obj>45</sink_obj> </item> <item class_id_reference="20" object_id="_197"> <id>264</id> <edge_type>1</edge_type> <source_obj>259</source_obj> <sink_obj>45</sink_obj> </item> <item class_id_reference="20" object_id="_198"> <id>265</id> <edge_type>2</edge_type> <source_obj>136</source_obj> <sink_obj>45</sink_obj> </item> <item class_id_reference="20" object_id="_199"> <id>266</id> <edge_type>1</edge_type> <source_obj>44</source_obj> <sink_obj>46</sink_obj> </item> <item class_id_reference="20" object_id="_200"> <id>267</id> <edge_type>2</edge_type> <source_obj>133</source_obj> <sink_obj>46</sink_obj> </item> <item class_id_reference="20" object_id="_201"> <id>268</id> <edge_type>2</edge_type> <source_obj>66</source_obj> <sink_obj>46</sink_obj> </item> <item class_id_reference="20" object_id="_202"> <id>506</id> <edge_type>2</edge_type> <source_obj>43</source_obj> <sink_obj>47</sink_obj> </item> <item class_id_reference="20" object_id="_203"> <id>507</id> <edge_type>2</edge_type> <source_obj>47</source_obj> <sink_obj>66</sink_obj> </item> <item class_id_reference="20" object_id="_204"> <id>508</id> <edge_type>2</edge_type> <source_obj>47</source_obj> <sink_obj>133</sink_obj> </item> <item class_id_reference="20" object_id="_205"> <id>509</id> <edge_type>2</edge_type> <source_obj>66</source_obj> <sink_obj>133</sink_obj> </item> <item class_id_reference="20" object_id="_206"> <id>510</id> <edge_type>2</edge_type> <source_obj>133</source_obj> <sink_obj>136</sink_obj> </item> <item class_id_reference="20" object_id="_207"> <id>511</id> <edge_type>2</edge_type> <source_obj>133</source_obj> <sink_obj>47</sink_obj> </item> <item class_id_reference="20" object_id="_208"> <id>512</id> <edge_type>2</edge_type> <source_obj>136</source_obj> <sink_obj>47</sink_obj> </item> <item class_id_reference="20" object_id="_209"> <id>513</id> <edge_type>4</edge_type> <source_obj>122</source_obj> <sink_obj>126</sink_obj> </item> <item class_id_reference="20" object_id="_210"> <id>514</id> <edge_type>4</edge_type> <source_obj>115</source_obj> <sink_obj>119</sink_obj> </item> <item class_id_reference="20" object_id="_211"> <id>515</id> <edge_type>4</edge_type> <source_obj>108</source_obj> <sink_obj>112</sink_obj> </item> <item class_id_reference="20" object_id="_212"> <id>516</id> <edge_type>4</edge_type> <source_obj>101</source_obj> <sink_obj>105</sink_obj> </item> <item class_id_reference="20" object_id="_213"> <id>517</id> <edge_type>4</edge_type> <source_obj>94</source_obj> <sink_obj>98</sink_obj> </item> <item class_id_reference="20" object_id="_214"> <id>518</id> <edge_type>4</edge_type> <source_obj>87</source_obj> <sink_obj>91</sink_obj> </item> <item class_id_reference="20" object_id="_215"> <id>519</id> <edge_type>4</edge_type> <source_obj>80</source_obj> <sink_obj>84</sink_obj> </item> <item class_id_reference="20" object_id="_216"> <id>520</id> <edge_type>4</edge_type> <source_obj>72</source_obj> <sink_obj>76</sink_obj> </item> </edges> </cdfg> <cdfg_regions class_id="21" tracking_level="0" version="0"> <count>3</count> <item_version>0</item_version> <item class_id="22" tracking_level="1" version="0" object_id="_217"> <mId>1</mId> <mTag>axi_interfaces</mTag> <mType>0</mType> <sub_regions> <count>2</count> <item_version>0</item_version> <item>2</item> <item>3</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>4</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_218"> <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>43</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_219"> <mId>3</mId> <mTag>For_Loop</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>47</item> <item>66</item> <item>133</item> <item>136</item> </basic_blocks> <mII>1</mII> <mDepth>1</mDepth> <mMinTripCount>4</mMinTripCount> <mMaxTripCount>4</mMaxTripCount> <mMinLatency>3</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> </cdfg_regions> <fsm class_id="-1"></fsm> <res class_id="25" tracking_level="1" version="0" object_id="_220"> <dp_component_resource class_id="26" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_component_resource> <dp_expression_resource> <count>0</count> <item_version>0</item_version> </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>0</count> <item_version>0</item_version> </dp_multiplexer_resource> <dp_register_resource> <count>0</count> <item_version>0</item_version> </dp_register_resource> <dp_component_map class_id="27" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_component_map> <dp_expression_map> <count>0</count> <item_version>0</item_version> </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="28" tracking_level="0" version="0"> <count>68</count> <item_version>0</item_version> <item class_id="29" tracking_level="0" version="0"> <first>42</first> <second class_id="30" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>44</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>45</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>46</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>65</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>67</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>72</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>73</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>74</first> <second> <first>1</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>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>1</first> <second>0</second> </second> </item> <item> <first>96</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>97</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>98</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>99</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>100</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>101</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>102</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>103</first> <second> <first>1</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>111</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>112</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>113</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>114</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>115</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>116</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>117</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>118</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>119</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>120</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>121</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>122</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>123</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>124</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>125</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>126</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>127</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>128</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>129</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>130</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>131</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>132</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>134</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>135</first> <second> <first>1</first> <second>0</second> </second> </item> </node_label_latency> <bblk_ent_exit class_id="31" tracking_level="0" version="0"> <count>5</count> <item_version>0</item_version> <item class_id="32" tracking_level="0" version="0"> <first>43</first> <second class_id="33" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>47</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>66</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>133</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>136</first> <second> <first>1</first> <second>1</second> </second> </item> </bblk_ent_exit> <regions class_id="34" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="35" tracking_level="1" version="0" object_id="_221"> <region_name>For_Loop</region_name> <basic_blocks> <count>4</count> <item_version>0</item_version> <item>47</item> <item>66</item> <item>133</item> <item>136</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="36" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_fu_nodes> <dp_fu_nodes_expression class_id="37" 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="38" 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="39" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_port_io_nodes> <port2core class_id="40" 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>
26.932368
102
0.593249
1cc7879629f95186b1ca2d28b814921f6e82d95c
6,680
ads
Ada
ayacc/ayacc_gnat_beta/lr0_machine.ads
irion7/aflex-ayacc-mirror
6c8e444ca735a1e2149beb14c5a85759d05403fe
[ "Unlicense" ]
1
2015-01-18T23:09:29.000Z
2015-01-18T23:09:29.000Z
lib/ayacc/lr0_machine.ads
alvaromb/Compilemon
de5f88f084705868d38e301d95bb4a19a46a1156
[ "MIT" ]
null
null
null
lib/ayacc/lr0_machine.ads
alvaromb/Compilemon
de5f88f084705868d38e301d95bb4a19a46a1156
[ "MIT" ]
null
null
null
-- Copyright (c) 1990 Regents of the University of California. -- All rights reserved. -- -- The primary authors of ayacc were David Taback and Deepak Tolani. -- Enhancements were made by Ronald J. Schmalz. -- -- Send requests for ayacc information to [email protected] -- Send bug reports for ayacc to [email protected] -- -- Redistribution and use in source and binary forms are permitted -- provided that the above copyright notice and this paragraph are -- duplicated in all such forms and that any documentation, -- advertising materials, and other materials related to such -- distribution and use acknowledge that the software was developed -- by the University of California, Irvine. The name of the -- University may not be used to endorse or promote products derived -- from this software without specific prior written permission. -- THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR -- IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED -- WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. -- Module : lr0_machine.ada -- Component of : ayacc -- Version : 1.2 -- Date : 11/21/86 12:30:58 -- SCCS File : disk21~/rschm/hasee/sccs/ayacc/sccs/sxlr0_machine.ada -- $Header: /dc/uc/self/tmp/gnat_ayacc_new/lr0bad/RCS/lr0_machine.ads,v 1.1 1995/02/16 17:28:09 self Exp self $ -- $Log: lr0_machine.ads,v $ -- Revision 0.1 86/04/01 15:06:19 ada -- This version fixes some minor bugs with empty grammars -- and $$ expansion. It also uses vads5.1b enhancements -- such as pragma inline. -- -- -- Revision 0.0 86/02/19 18:37:14 ada -- -- These files comprise the initial version of Ayacc -- designed and implemented by David Taback and Deepak Tolani. -- Ayacc has been compiled and tested under the Verdix Ada compiler -- version 4.06 on a vax 11/750 running Unix 4.2BSD. -- with Rule_Table, Symbol_Table, Set_Pack; use Rule_Table, Symbol_Table; package LR0_Machine is type Parse_State is range -1..5_000; Null_Parse_State : constant Parse_State := -1; type Item is record Rule_ID : Rule; Dot_Position : Natural; end record; type Transition is record Symbol : Grammar_Symbol; State_ID : Parse_State; end record; function "<" (Item_1, Item_2 : Item) return Boolean; function "<" (Trans_1, Trans_2 : Transition) return Boolean; package Parse_State_Set_Pack is new Set_Pack(Parse_State, "<"); package Item_Set_Pack is new Set_Pack(Item, "<"); package Transition_Set_Pack is new Set_Pack(Transition, "<"); package Grammar_Symbol_Set_Pack is new Set_Pack(Grammar_Symbol, "<"); subtype Parse_State_Set is Parse_State_Set_Pack.Set; subtype Item_Set is Item_Set_Pack.Set; subtype Transition_Set is Transition_Set_Pack.Set; subtype Grammar_Symbol_Set is Grammar_Symbol_Set_Pack.Set; subtype Parse_State_Iterator is Parse_State_Set_Pack.Set_Iterator; subtype Item_Iterator is Item_Set_Pack.Set_Iterator; subtype Transition_Iterator is Transition_Set_Pack.Set_Iterator; subtype Grammar_Symbol_Iterator is Grammar_Symbol_Set_Pack.Set_Iterator; procedure LR0_Initialize; -- must be called first. function First_Parse_State return Parse_State; function Last_Parse_State return Parse_State; function Get_Goto (State_ID : Parse_State; Sym : Grammar_Symbol) return Parse_State; -- Returns the predecessor states of STATE_ID and the item I. -- Must be called with PRED_SET empty! procedure Get_Pred_Set (State_ID : in Parse_State; I : in Item; Pred_Set : in out Parse_State_Set); type Transition_Type is (Terminals, Nonterminals, Grammar_Symbols); procedure Get_Transitions (State_ID : in Parse_State; Kind : in Transition_Type; Set_1 : in out Transition_Set); procedure Get_Transition_Symbols (State_ID : in Parse_State; Kind : in Transition_Type; Set_1 : in out Grammar_Symbol_Set); procedure Get_Kernel (State_ID : in Parse_State; Set_1 : in out Item_Set); procedure Closure (Set_1 : in out Item_Set); -- -- The following routines allow the user to iterate over the -- items in the kernel of a particular state. -- type Kernel_Iterator is limited private; procedure Initialize (Iterator : in out Kernel_Iterator; State_ID : in Parse_State); function More(Iterator : Kernel_Iterator) return Boolean; procedure Next(Iterator : in out Kernel_Iterator; I : out Item); -- -- The following routines allow the user to iterate over the -- nonterminal transitions of a particular state -- type Nt_Transition_Iterator is limited private; procedure Initialize (Iterator : in out Nt_Transition_Iterator; State_ID : in Parse_State); function More (Iterator : Nt_Transition_Iterator) return Boolean; procedure Next (Iterator : in out Nt_Transition_Iterator; Trans : out Transition); -- The following routines allow iteration over the Terminal transitions -- of a particular state. type T_Transition_Iterator is limited private; -- For Terminals procedure Initialize (Iterator : in out T_Transition_Iterator; State_ID : in Parse_State); function More (Iterator : T_Transition_Iterator) return Boolean; procedure Next (Iterator : in out T_Transition_Iterator; Trans : out Transition); To_Many_States : exception; No_More_Iterations : exception; State_Out_of_Bounds : exception; --RJS pragma inline(more); --DEC Ada Bug: , next); private type Item_Array_Index is range 0..5_000; -- An arbitrarily big number ----- type Item_Array; type Item_Array is array (Item_Array_Index range <>) of Item; type Item_Array_Pointer is access Item_Array; type Kernel_Iterator is record Kernel : Item_Array_Pointer; Curser : Item_Array_Index; end record; ----- type Transition_Array; -- The type declarations for storing the nonterminal transitions of -- the DFA in the states. type Transition_Array is array(Integer range <>) of Transition; type Transition_Array_Pointer is access Transition_Array; type Nt_Transition_Iterator is record Nonterm_Trans : Transition_Array_Pointer; Curser : Integer; -- Use a derived type instead ??? end record; type T_Transition_Iterator is record Term_Trans : Transition_Array_Pointer; Curser : Integer; end record; end LR0_Machine;
32.115385
112
0.706138
10d0affc51339e5967662403e26e507b7ecc7905
401
ads
Ada
src/oberon.ads
Lucretia/so
95073516f688ade01e8e01ca3691f69182a2a8a4
[ "BSD-3-Clause" ]
8
2015-06-05T11:52:50.000Z
2021-09-04T20:01:03.000Z
src/oberon.ads
Lucretia/so
95073516f688ade01e8e01ca3691f69182a2a8a4
[ "BSD-3-Clause" ]
null
null
null
src/oberon.ads
Lucretia/so
95073516f688ade01e8e01ca3691f69182a2a8a4
[ "BSD-3-Clause" ]
null
null
null
------------------------------------------------------------------------------------------------------------------------ -- See COPYING for licence information. ------------------------------------------------------------------------------------------------------------------------ -- Oberon -- This is the root package for the Oberon compiler itself. package Oberon is pragma Pure; end Oberon;
44.555556
120
0.291771
239d319678dcc31352f1728e279a1ea083e826a8
6,104
adb
Ada
Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/a-szuzti.adb
djamal2727/Main-Bearing-Analytical-Model
2f00c2219c71be0175c6f4f8f1d4cca231d97096
[ "Apache-2.0" ]
null
null
null
Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/a-szuzti.adb
djamal2727/Main-Bearing-Analytical-Model
2f00c2219c71be0175c6f4f8f1d4cca231d97096
[ "Apache-2.0" ]
null
null
null
Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/a-szuzti.adb
djamal2727/Main-Bearing-Analytical-Model
2f00c2219c71be0175c6f4f8f1d4cca231d97096
[ "Apache-2.0" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- ADA.STRINGS.WIDE_WIDE_UNBOUNDED.WIDE_WIDE_TEXT_IO -- -- -- -- B o d y -- -- -- -- Copyright (C) 1997-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 Ada.Wide_Wide_Text_IO; use Ada.Wide_Wide_Text_IO; package body Ada.Strings.Wide_Wide_Unbounded.Wide_Wide_Text_IO is -------------- -- Get_Line -- -------------- function Get_Line return Unbounded_Wide_Wide_String is Buffer : Wide_Wide_String (1 .. 1000); Last : Natural; Str1 : Wide_Wide_String_Access; Str2 : Wide_Wide_String_Access; Result : Unbounded_Wide_Wide_String; begin Get_Line (Buffer, Last); Str1 := new Wide_Wide_String'(Buffer (1 .. Last)); while Last = Buffer'Last loop Get_Line (Buffer, Last); Str2 := new Wide_Wide_String (1 .. Str1'Last + Last); Str2 (Str1'Range) := Str1.all; Str2 (Str1'Last + 1 .. Str2'Last) := Buffer (1 .. Last); Free (Str1); Str1 := Str2; end loop; Result.Reference := Str1; Result.Last := Str1'Length; return Result; end Get_Line; function Get_Line (File : Ada.Wide_Wide_Text_IO.File_Type) return Unbounded_Wide_Wide_String is Buffer : Wide_Wide_String (1 .. 1000); Last : Natural; Str1 : Wide_Wide_String_Access; Str2 : Wide_Wide_String_Access; Result : Unbounded_Wide_Wide_String; begin Get_Line (File, Buffer, Last); Str1 := new Wide_Wide_String'(Buffer (1 .. Last)); while Last = Buffer'Last loop Get_Line (File, Buffer, Last); Str2 := new Wide_Wide_String (1 .. Str1'Last + Last); Str2 (Str1'Range) := Str1.all; Str2 (Str1'Last + 1 .. Str2'Last) := Buffer (1 .. Last); Free (Str1); Str1 := Str2; end loop; Result.Reference := Str1; Result.Last := Str1'Length; return Result; end Get_Line; procedure Get_Line (Item : out Unbounded_Wide_Wide_String) is begin Get_Line (Current_Input, Item); end Get_Line; procedure Get_Line (File : Ada.Wide_Wide_Text_IO.File_Type; Item : out Unbounded_Wide_Wide_String) is begin -- We are going to read into the string that is already there and -- allocated. Hopefully it is big enough now, if not, we will extend -- it in the usual manner using Realloc_For_Chunk. -- Make sure we start with at least 80 characters if Item.Reference'Last < 80 then Realloc_For_Chunk (Item, 80); end if; -- Loop to read data, filling current string as far as possible. -- Item.Last holds the number of characters read so far. Item.Last := 0; loop Get_Line (File, Item.Reference (Item.Last + 1 .. Item.Reference'Last), Item.Last); -- If we hit the end of the line before the end of the buffer, then -- we are all done, and the result length is properly set. if Item.Last < Item.Reference'Last then return; end if; -- If not enough room, double it and keep reading Realloc_For_Chunk (Item, Item.Last); end loop; end Get_Line; --------- -- Put -- --------- procedure Put (U : Unbounded_Wide_Wide_String) is begin Put (U.Reference (1 .. U.Last)); end Put; procedure Put (File : File_Type; U : Unbounded_Wide_Wide_String) is begin Put (File, U.Reference (1 .. U.Last)); end Put; -------------- -- Put_Line -- -------------- procedure Put_Line (U : Unbounded_Wide_Wide_String) is begin Put_Line (U.Reference (1 .. U.Last)); end Put_Line; procedure Put_Line (File : File_Type; U : Unbounded_Wide_Wide_String) is begin Put_Line (File, U.Reference (1 .. U.Last)); end Put_Line; end Ada.Strings.Wide_Wide_Unbounded.Wide_Wide_Text_IO;
37.447853
79
0.515564
0e37f5ef4c50bb7a3ce3edef7c47c07b75cb40e0
5,270
ads
Ada
src/util-refs.ads
Letractively/ada-util
e4c63b93635dc07c46e95f12ba02d18903b307b3
[ "Apache-2.0" ]
null
null
null
src/util-refs.ads
Letractively/ada-util
e4c63b93635dc07c46e95f12ba02d18903b307b3
[ "Apache-2.0" ]
null
null
null
src/util-refs.ads
Letractively/ada-util
e4c63b93635dc07c46e95f12ba02d18903b307b3
[ "Apache-2.0" ]
null
null
null
----------------------------------------------------------------------- -- util-refs -- Reference Counting -- Copyright (C) 2010, 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.Finalization; with Util.Concurrent.Counters; -- The <b>Util.Refs</b> package provides support to implement object reference counting. -- -- The data type to share through reference counting has to inherit from <b>Ref_Entity</b> -- and the generic package <b>References</b> has to be instantiated. -- <pre> -- type Data is new Util.Refs.Ref_Entity with record ... end record; -- type Data_Access is access all Data; -- -- package Data_Ref is new Utils.Refs.References (Data, Data_Access); -- </pre> -- -- The reference is used as follows: -- -- <pre> -- D : Data_Ref.Ref := Data_Ref.Create; -- Allocate and get a reference -- D2 : Data_Ref.Ref := D; -- Share reference -- D.Value.all.XXXX := 0; -- Set data member XXXX -- </pre> -- -- When a reference is shared in a multi-threaded environment, the reference has to -- be protected by using the <b>References.Atomic_Ref</b> type. -- -- R : Data_Ref.Atomic_Ref; -- -- The reference is then obtained by the protected operation <b>Get</b>. -- -- D : Data_Ref.Ref := R.Get; -- package Util.Refs is -- Root of referenced objects. type Ref_Entity is abstract tagged limited private; -- Finalize the referenced object. This is called before the object is freed. procedure Finalize (Object : in out Ref_Entity) is null; generic type Element_Type (<>) is new Ref_Entity with private; type Element_Access is access all Element_Type; package Indefinite_References is type Ref is new Ada.Finalization.Controlled with private; -- Create an element and return a reference to that element. function Create (Value : in Element_Access) return Ref; -- Get the element access value. function Value (Object : in Ref'Class) return Element_Access; pragma Inline_Always (Value); -- Returns true if the reference does not contain any element. function Is_Null (Object : in Ref'Class) return Boolean; pragma Inline_Always (Is_Null); -- The <b>Atomic_Ref</b> protected type defines a reference to an -- element which can be obtained and changed atomically. The default -- Ada construct: -- -- Ref1 := Ref2; -- -- does not guarantee atomicity of the copy (assignment) and the increment -- of the reference counter (Adjust operation). To replace shared reference -- by another one, the whole assignment and Adjust have to be protected. -- This is achieved by this protected type through the <b>Get</b> and <b>Set</b> protected type Atomic_Ref is -- Get the reference function Get return Ref; -- Change the reference procedure Set (Object : in Ref); private Value : Ref; end Atomic_Ref; private type Ref is new Ada.Finalization.Controlled with record Target : Element_Access := null; end record; -- Release the reference. Invoke <b>Finalize</b> and free the storage if it was -- the last reference. overriding procedure Finalize (Obj : in out Ref); -- Update the reference counter after an assignment. overriding procedure Adjust (Obj : in out Ref); end Indefinite_References; generic type Element_Type is new Ref_Entity with private; type Element_Access is access all Element_Type; package References is package IR is new Indefinite_References (Element_Type, Element_Access); subtype Ref is IR.Ref; -- Create an element and return a reference to that element. function Create return Ref; -- The <b>Atomic_Ref</b> protected type defines a reference to an -- element which can be obtained and changed atomically. The default -- Ada construct: -- -- Ref1 := Ref2; -- -- does not guarantee atomicity of the copy (assignment) and the increment -- of the reference counter (Adjust operation). To replace shared reference -- by another one, the whole assignment and Adjust have to be protected. -- This is achieved by this protected type through the <b>Get</b> and <b>Set</b> subtype Atomic_Ref is IR.Atomic_Ref; end References; private type Ref_Entity is abstract tagged limited record Ref_Counter : Util.Concurrent.Counters.Counter; end record; end Util.Refs;
37.112676
91
0.655218
39947d978ff1bc21d1efc9f0bc0175494586e22c
1,993
ads
Ada
tests/kat/cshake_runner.ads
damaki/libkeccak
d06217e525f7927380690d6c37b485bdbe8aa96e
[ "BSD-3-Clause" ]
26
2015-09-20T17:52:38.000Z
2021-07-29T21:47:04.000Z
tests/kat/cshake_runner.ads
damaki/libkeccak
d06217e525f7927380690d6c37b485bdbe8aa96e
[ "BSD-3-Clause" ]
3
2019-03-12T16:01:36.000Z
2020-05-23T13:06:43.000Z
tests/kat/cshake_runner.ads
damaki/libkeccak
d06217e525f7927380690d6c37b485bdbe8aa96e
[ "BSD-3-Clause" ]
2
2019-04-15T18:02:19.000Z
2020-11-22T11:22:18.000Z
------------------------------------------------------------------------------- -- Copyright (c) 2019, Daniel King -- 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. -- * The name of the copyright holder may not 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 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. ------------------------------------------------------------------------------- with Keccak.Generic_CSHAKE; generic with package CSHAKE is new Keccak.Generic_CSHAKE(<>); package CSHAKE_Runner is procedure Run_Tests (File_Name : in String; Num_Passed : out Natural; Num_Failed : out Natural); end CSHAKE_Runner;
52.447368
79
0.676367
2084b4c4ce5d4dbf1e47e408a6f16c3f0fcdb288
3,701
adb
Ada
regtests/el-beans-tests.adb
Letractively/ada-el
43b155ed10b48e1cbba619fb8fd0d170da138653
[ "Apache-2.0" ]
null
null
null
regtests/el-beans-tests.adb
Letractively/ada-el
43b155ed10b48e1cbba619fb8fd0d170da138653
[ "Apache-2.0" ]
null
null
null
regtests/el-beans-tests.adb
Letractively/ada-el
43b155ed10b48e1cbba619fb8fd0d170da138653
[ "Apache-2.0" ]
null
null
null
----------------------------------------------------------------------- -- EL.Beans.Tests - Testsuite for EL.Beans -- 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 Util.Test_Caller; with Test_Bean; with Util.Beans.Objects; with EL.Contexts.Default; package body EL.Beans.Tests is use Util.Tests; use Util.Beans.Objects; use Test_Bean; package Caller is new Util.Test_Caller (Test, "EL.Beans"); procedure Add_Tests (Suite : in Util.Tests.Access_Test_Suite) is begin Caller.Add_Test (Suite, "Test EL.Beans.Add_Parameter", Test_Add_Parameter'Access); Caller.Add_Test (Suite, "Test EL.Beans.Initialize", Test_Initialize'Access); end Add_Tests; -- ------------------------------ -- Test Add_Parameter -- ------------------------------ procedure Test_Add_Parameter (T : in out Test) is P : Param_Vectors.Vector; Context : EL.Contexts.Default.Default_Context; begin -- Add a constant parameter. Add_Parameter (Container => P, Name => "firstName", Value => "my name", Context => Context); Assert_Equals (T, 1, Integer (P.Length), "Parameter was not added"); T.Assert_Equals ("firstName", P.Element (1).Name, "Invalid parameter name"); T.Assert (P.Element (1).Value.Is_Constant, "Value should be a constant"); T.Assert_Equals ("my name", Util.Beans.Objects.To_String (P.Element (1).Value.Get_Value (Context)), "Invalid value"); -- Add an expression parameter. Add_Parameter (Container => P, Name => "lastName", Value => "#{name}", Context => Context); Assert_Equals (T, 2, Integer (P.Length), "Parameter was not added"); end Test_Add_Parameter; -- ------------------------------ -- Test the Initialize procedure with a set of expressions -- ------------------------------ procedure Test_Initialize (T : in out Test) is P : Param_Vectors.Vector; Context : EL.Contexts.Default.Default_Context; User : Person_Access := Create_Person ("Joe", "Black", 42); Bean : Person_Access := Create_Person ("", "", 0); begin Context.Set_Variable ("user", User); Add_Parameter (P, "firstName", "#{user.firstName}", Context); Add_Parameter (P, "lastName", "#{user.lastName}", Context); Add_Parameter (P, "age", "#{user.age + 2}", Context); Initialize (Bean.all, P, Context); T.Assert_Equals ("Joe", Bean.First_Name, "First name not initialized"); T.Assert_Equals ("Black", Bean.Last_Name, "Last name not initialized"); Assert_Equals (T, 44, Integer (Bean.Age), "Age was not initialized"); Free (Bean); Free (User); end Test_Initialize; end EL.Beans.Tests;
41.122222
95
0.566333
cbefe3111fb17fa1c2d7a9f0d44597b144595abf
17,940
adb
Ada
gcc-gcc-7_3_0-release/gcc/ada/s-arit64.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/ada/s-arit64.adb
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
null
null
null
gcc-gcc-7_3_0-release/gcc/ada/s-arit64.adb
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
2
2020-07-27T00:22:36.000Z
2021-04-01T09:41:02.000Z
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- S Y S T E M . A R I T H _ 6 4 -- -- -- -- B o d y -- -- -- -- Copyright (C) 1992-2015, 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 Interfaces; use Interfaces; with Ada.Unchecked_Conversion; package body System.Arith_64 is pragma Suppress (Overflow_Check); pragma Suppress (Range_Check); subtype Uns64 is Unsigned_64; function To_Uns is new Ada.Unchecked_Conversion (Int64, Uns64); function To_Int is new Ada.Unchecked_Conversion (Uns64, Int64); subtype Uns32 is Unsigned_32; ----------------------- -- Local Subprograms -- ----------------------- function "+" (A, B : Uns32) return Uns64 is (Uns64 (A) + Uns64 (B)); function "+" (A : Uns64; B : Uns32) return Uns64 is (A + Uns64 (B)); -- Length doubling additions function "*" (A, B : Uns32) return Uns64 is (Uns64 (A) * Uns64 (B)); -- Length doubling multiplication function "/" (A : Uns64; B : Uns32) return Uns64 is (A / Uns64 (B)); -- Length doubling division function "&" (Hi, Lo : Uns32) return Uns64 is (Shift_Left (Uns64 (Hi), 32) or Uns64 (Lo)); -- Concatenate hi, lo values to form 64-bit result function "abs" (X : Int64) return Uns64 is (if X = Int64'First then 2**63 else Uns64 (Int64'(abs X))); -- Convert absolute value of X to unsigned. Note that we can't just use -- the expression of the Else, because it overflows for X = Int64'First. function "rem" (A : Uns64; B : Uns32) return Uns64 is (A rem Uns64 (B)); -- Length doubling remainder function Le3 (X1, X2, X3 : Uns32; Y1, Y2, Y3 : Uns32) return Boolean; -- Determines if 96 bit value X1&X2&X3 <= Y1&Y2&Y3 function Lo (A : Uns64) return Uns32 is (Uns32 (A and 16#FFFF_FFFF#)); -- Low order half of 64-bit value function Hi (A : Uns64) return Uns32 is (Uns32 (Shift_Right (A, 32))); -- High order half of 64-bit value procedure Sub3 (X1, X2, X3 : in out Uns32; Y1, Y2, Y3 : Uns32); -- Computes X1&X2&X3 := X1&X2&X3 - Y1&Y1&Y3 with mod 2**96 wrap function To_Neg_Int (A : Uns64) return Int64 with Inline; -- Convert to negative integer equivalent. If the input is in the range -- 0 .. 2 ** 63, then the corresponding negative signed integer (obtained -- by negating the given value) is returned, otherwise constraint error -- is raised. function To_Pos_Int (A : Uns64) return Int64 with Inline; -- Convert to positive integer equivalent. If the input is in the range -- 0 .. 2 ** 63-1, then the corresponding non-negative signed integer is -- returned, otherwise constraint error is raised. procedure Raise_Error with Inline; pragma No_Return (Raise_Error); -- Raise constraint error with appropriate message -------------------------- -- Add_With_Ovflo_Check -- -------------------------- function Add_With_Ovflo_Check (X, Y : Int64) return Int64 is R : constant Int64 := To_Int (To_Uns (X) + To_Uns (Y)); begin if X >= 0 then if Y < 0 or else R >= 0 then return R; end if; else -- X < 0 if Y > 0 or else R < 0 then return R; end if; end if; Raise_Error; end Add_With_Ovflo_Check; ------------------- -- Double_Divide -- ------------------- procedure Double_Divide (X, Y, Z : Int64; Q, R : out Int64; Round : Boolean) is Xu : constant Uns64 := abs X; Yu : constant Uns64 := abs Y; Yhi : constant Uns32 := Hi (Yu); Ylo : constant Uns32 := Lo (Yu); Zu : constant Uns64 := abs Z; Zhi : constant Uns32 := Hi (Zu); Zlo : constant Uns32 := Lo (Zu); T1, T2 : Uns64; Du, Qu, Ru : Uns64; Den_Pos : Boolean; begin if Yu = 0 or else Zu = 0 then Raise_Error; end if; -- Compute Y * Z. Note that if the result overflows 64 bits unsigned, -- then the rounded result is clearly zero (since the dividend is at -- most 2**63 - 1, the extra bit of precision is nice here). if Yhi /= 0 then if Zhi /= 0 then Q := 0; R := X; return; else T2 := Yhi * Zlo; end if; else T2 := (if Zhi /= 0 then Ylo * Zhi else 0); end if; T1 := Ylo * Zlo; T2 := T2 + Hi (T1); if Hi (T2) /= 0 then Q := 0; R := X; return; end if; Du := Lo (T2) & Lo (T1); -- Set final signs (RM 4.5.5(27-30)) Den_Pos := (Y < 0) = (Z < 0); -- Check overflow case of largest negative number divided by 1 if X = Int64'First and then Du = 1 and then not Den_Pos then Raise_Error; end if; -- Perform the actual division Qu := Xu / Du; Ru := Xu rem Du; -- Deal with rounding case if Round and then Ru > (Du - Uns64'(1)) / Uns64'(2) then Qu := Qu + Uns64'(1); end if; -- Case of dividend (X) sign positive if X >= 0 then R := To_Int (Ru); Q := (if Den_Pos then To_Int (Qu) else -To_Int (Qu)); -- Case of dividend (X) sign negative else R := -To_Int (Ru); Q := (if Den_Pos then -To_Int (Qu) else To_Int (Qu)); end if; end Double_Divide; --------- -- Le3 -- --------- function Le3 (X1, X2, X3 : Uns32; Y1, Y2, Y3 : Uns32) return Boolean is begin if X1 < Y1 then return True; elsif X1 > Y1 then return False; elsif X2 < Y2 then return True; elsif X2 > Y2 then return False; else return X3 <= Y3; end if; end Le3; ------------------------------- -- Multiply_With_Ovflo_Check -- ------------------------------- function Multiply_With_Ovflo_Check (X, Y : Int64) return Int64 is Xu : constant Uns64 := abs X; Xhi : constant Uns32 := Hi (Xu); Xlo : constant Uns32 := Lo (Xu); Yu : constant Uns64 := abs Y; Yhi : constant Uns32 := Hi (Yu); Ylo : constant Uns32 := Lo (Yu); T1, T2 : Uns64; begin if Xhi /= 0 then if Yhi /= 0 then Raise_Error; else T2 := Xhi * Ylo; end if; elsif Yhi /= 0 then T2 := Xlo * Yhi; else -- Yhi = Xhi = 0 T2 := 0; end if; -- Here we have T2 set to the contribution to the upper half of the -- result from the upper halves of the input values. T1 := Xlo * Ylo; T2 := T2 + Hi (T1); if Hi (T2) /= 0 then Raise_Error; end if; T2 := Lo (T2) & Lo (T1); if X >= 0 then if Y >= 0 then return To_Pos_Int (T2); else return To_Neg_Int (T2); end if; else -- X < 0 if Y < 0 then return To_Pos_Int (T2); else return To_Neg_Int (T2); end if; end if; end Multiply_With_Ovflo_Check; ----------------- -- Raise_Error -- ----------------- procedure Raise_Error is begin raise Constraint_Error with "64-bit arithmetic overflow"; end Raise_Error; ------------------- -- Scaled_Divide -- ------------------- procedure Scaled_Divide (X, Y, Z : Int64; Q, R : out Int64; Round : Boolean) is Xu : constant Uns64 := abs X; Xhi : constant Uns32 := Hi (Xu); Xlo : constant Uns32 := Lo (Xu); Yu : constant Uns64 := abs Y; Yhi : constant Uns32 := Hi (Yu); Ylo : constant Uns32 := Lo (Yu); Zu : Uns64 := abs Z; Zhi : Uns32 := Hi (Zu); Zlo : Uns32 := Lo (Zu); D : array (1 .. 4) of Uns32; -- The dividend, four digits (D(1) is high order) Qd : array (1 .. 2) of Uns32; -- The quotient digits, two digits (Qd(1) is high order) S1, S2, S3 : Uns32; -- Value to subtract, three digits (S1 is high order) Qu : Uns64; Ru : Uns64; -- Unsigned quotient and remainder Scale : Natural; -- Scaling factor used for multiple-precision divide. Dividend and -- Divisor are multiplied by 2 ** Scale, and the final remainder is -- divided by the scaling factor. The reason for this scaling is to -- allow more accurate estimation of quotient digits. T1, T2, T3 : Uns64; -- Temporary values begin -- First do the multiplication, giving the four digit dividend T1 := Xlo * Ylo; D (4) := Lo (T1); D (3) := Hi (T1); if Yhi /= 0 then T1 := Xlo * Yhi; T2 := D (3) + Lo (T1); D (3) := Lo (T2); D (2) := Hi (T1) + Hi (T2); if Xhi /= 0 then T1 := Xhi * Ylo; T2 := D (3) + Lo (T1); D (3) := Lo (T2); T3 := D (2) + Hi (T1); T3 := T3 + Hi (T2); D (2) := Lo (T3); D (1) := Hi (T3); T1 := (D (1) & D (2)) + Uns64'(Xhi * Yhi); D (1) := Hi (T1); D (2) := Lo (T1); else D (1) := 0; end if; else if Xhi /= 0 then T1 := Xhi * Ylo; T2 := D (3) + Lo (T1); D (3) := Lo (T2); D (2) := Hi (T1) + Hi (T2); else D (2) := 0; end if; D (1) := 0; end if; -- Now it is time for the dreaded multiple precision division. First an -- easy case, check for the simple case of a one digit divisor. if Zhi = 0 then if D (1) /= 0 or else D (2) >= Zlo then Raise_Error; -- Here we are dividing at most three digits by one digit else T1 := D (2) & D (3); T2 := Lo (T1 rem Zlo) & D (4); Qu := Lo (T1 / Zlo) & Lo (T2 / Zlo); Ru := T2 rem Zlo; end if; -- If divisor is double digit and too large, raise error elsif (D (1) & D (2)) >= Zu then Raise_Error; -- This is the complex case where we definitely have a double digit -- divisor and a dividend of at least three digits. We use the classical -- multiple division algorithm (see section (4.3.1) of Knuth's "The Art -- of Computer Programming", Vol. 2 for a description (algorithm D). else -- First normalize the divisor so that it has the leading bit on. -- We do this by finding the appropriate left shift amount. Scale := 0; if (Zhi and 16#FFFF0000#) = 0 then Scale := 16; Zu := Shift_Left (Zu, 16); end if; if (Hi (Zu) and 16#FF00_0000#) = 0 then Scale := Scale + 8; Zu := Shift_Left (Zu, 8); end if; if (Hi (Zu) and 16#F000_0000#) = 0 then Scale := Scale + 4; Zu := Shift_Left (Zu, 4); end if; if (Hi (Zu) and 16#C000_0000#) = 0 then Scale := Scale + 2; Zu := Shift_Left (Zu, 2); end if; if (Hi (Zu) and 16#8000_0000#) = 0 then Scale := Scale + 1; Zu := Shift_Left (Zu, 1); end if; Zhi := Hi (Zu); Zlo := Lo (Zu); -- Note that when we scale up the dividend, it still fits in four -- digits, since we already tested for overflow, and scaling does -- not change the invariant that (D (1) & D (2)) >= Zu. T1 := Shift_Left (D (1) & D (2), Scale); D (1) := Hi (T1); T2 := Shift_Left (0 & D (3), Scale); D (2) := Lo (T1) or Hi (T2); T3 := Shift_Left (0 & D (4), Scale); D (3) := Lo (T2) or Hi (T3); D (4) := Lo (T3); -- Loop to compute quotient digits, runs twice for Qd(1) and Qd(2) for J in 0 .. 1 loop -- Compute next quotient digit. We have to divide three digits by -- two digits. We estimate the quotient by dividing the leading -- two digits by the leading digit. Given the scaling we did above -- which ensured the first bit of the divisor is set, this gives -- an estimate of the quotient that is at most two too high. Qd (J + 1) := (if D (J + 1) = Zhi then 2 ** 32 - 1 else Lo ((D (J + 1) & D (J + 2)) / Zhi)); -- Compute amount to subtract T1 := Qd (J + 1) * Zlo; T2 := Qd (J + 1) * Zhi; S3 := Lo (T1); T1 := Hi (T1) + Lo (T2); S2 := Lo (T1); S1 := Hi (T1) + Hi (T2); -- Adjust quotient digit if it was too high loop exit when Le3 (S1, S2, S3, D (J + 1), D (J + 2), D (J + 3)); Qd (J + 1) := Qd (J + 1) - 1; Sub3 (S1, S2, S3, 0, Zhi, Zlo); end loop; -- Now subtract S1&S2&S3 from D1&D2&D3 ready for next step Sub3 (D (J + 1), D (J + 2), D (J + 3), S1, S2, S3); end loop; -- The two quotient digits are now set, and the remainder of the -- scaled division is in D3&D4. To get the remainder for the -- original unscaled division, we rescale this dividend. -- We rescale the divisor as well, to make the proper comparison -- for rounding below. Qu := Qd (1) & Qd (2); Ru := Shift_Right (D (3) & D (4), Scale); Zu := Shift_Right (Zu, Scale); end if; -- Deal with rounding case if Round and then Ru > (Zu - Uns64'(1)) / Uns64'(2) then Qu := Qu + Uns64 (1); end if; -- Set final signs (RM 4.5.5(27-30)) -- Case of dividend (X * Y) sign positive if (X >= 0 and then Y >= 0) or else (X < 0 and then Y < 0) then R := To_Pos_Int (Ru); Q := (if Z > 0 then To_Pos_Int (Qu) else To_Neg_Int (Qu)); -- Case of dividend (X * Y) sign negative else R := To_Neg_Int (Ru); Q := (if Z > 0 then To_Neg_Int (Qu) else To_Pos_Int (Qu)); end if; end Scaled_Divide; ---------- -- Sub3 -- ---------- procedure Sub3 (X1, X2, X3 : in out Uns32; Y1, Y2, Y3 : Uns32) is begin if Y3 > X3 then if X2 = 0 then X1 := X1 - 1; end if; X2 := X2 - 1; end if; X3 := X3 - Y3; if Y2 > X2 then X1 := X1 - 1; end if; X2 := X2 - Y2; X1 := X1 - Y1; end Sub3; ------------------------------- -- Subtract_With_Ovflo_Check -- ------------------------------- function Subtract_With_Ovflo_Check (X, Y : Int64) return Int64 is R : constant Int64 := To_Int (To_Uns (X) - To_Uns (Y)); begin if X >= 0 then if Y > 0 or else R >= 0 then return R; end if; else -- X < 0 if Y <= 0 or else R < 0 then return R; end if; end if; Raise_Error; end Subtract_With_Ovflo_Check; ---------------- -- To_Neg_Int -- ---------------- function To_Neg_Int (A : Uns64) return Int64 is R : constant Int64 := (if A = 2**63 then Int64'First else -To_Int (A)); -- Note that we can't just use the expression of the Else, because it -- overflows for A = 2**63. begin if R <= 0 then return R; else Raise_Error; end if; end To_Neg_Int; ---------------- -- To_Pos_Int -- ---------------- function To_Pos_Int (A : Uns64) return Int64 is R : constant Int64 := To_Int (A); begin if R >= 0 then return R; else Raise_Error; end if; end To_Pos_Int; end System.Arith_64;
29.60396
79
0.477313
10fdc8956947ca50a420aa791759d97f22ac50fc
2,054
ads
Ada
src/annotation_processor/implementation/yaml-transformator-annotation-concatenation.ads
robdaemon/AdaYaml
2cb52c5e7eee3a2d9951945d5ddb4eeddc088f6e
[ "MIT" ]
32
2017-08-02T16:45:34.000Z
2021-08-18T20:12:57.000Z
src/annotation_processor/implementation/yaml-transformator-annotation-concatenation.ads
robdaemon/AdaYaml
2cb52c5e7eee3a2d9951945d5ddb4eeddc088f6e
[ "MIT" ]
15
2017-09-13T09:43:38.000Z
2022-01-20T23:21:47.000Z
src/annotation_processor/implementation/yaml-transformator-annotation-concatenation.ads
robdaemon/AdaYaml
2cb52c5e7eee3a2d9951945d5ddb4eeddc088f6e
[ "MIT" ]
5
2017-09-19T16:54:22.000Z
2020-04-09T07:17:02.000Z
-- part of AdaYaml, (c) 2017 Felix Krause -- released under the terms of the MIT license, see the file "copying.txt" private with Text.Builder; private with Yaml.Events.Store; package Yaml.Transformator.Annotation.Concatenation is type Instance is limited new Transformator.Instance with private; overriding procedure Put (Object : in out Instance; E : Event); overriding function Has_Next (Object : Instance) return Boolean; overriding function Next (Object : in out Instance) return Event; function New_Concatenation (Pool : Text.Pool.Reference; Node_Context : Node_Context_Type; Processor_Context : Events.Context.Reference; Swallows_Previous : out Boolean) return not null Pointer; private type State_Type is not null access procedure (Object : in out Instance; E : Event); procedure Initial (Object : in out Instance; E : Event); procedure After_Annotation_Start (Object : in out Instance; E : Event); procedure After_Annotation_End (Object : in out Instance; E : Event); procedure After_List_Start (Object : in out Instance; E : Event); procedure In_Sequence (Object : in out Instance; E : Event); procedure After_Sequence (Object : in out Instance; E : Event); procedure After_String (Object : in out Instance; E : Event); procedure After_List_End (Object : in out Instance; E : Event); type Builder_Pointer is access Text.Builder.Reference; type Instance is limited new Transformator.Instance with record Node_Properties : Properties; Builder : Builder_Pointer; Context : Events.Context.Reference; Pool : Text.Pool.Reference; Depth : Natural := 0; State : State_Type := Initial'Access; Current_Exists : Boolean := False; Current : Event; Current_Aliased : Events.Store.Optional_Stream_Reference; end record; end Yaml.Transformator.Annotation.Concatenation;
42.791667
76
0.676728
39c703cc03cd0c5a01d742d38329e52947e47ce6
1,602
adb
Ada
source/lexer/webidl-string_sources.adb
reznikmm/webidl
744bbdc9e3dfbe690d37b6dc5d7d82233b919cd4
[ "MIT" ]
null
null
null
source/lexer/webidl-string_sources.adb
reznikmm/webidl
744bbdc9e3dfbe690d37b6dc5d7d82233b919cd4
[ "MIT" ]
null
null
null
source/lexer/webidl-string_sources.adb
reznikmm/webidl
744bbdc9e3dfbe690d37b6dc5d7d82233b919cd4
[ "MIT" ]
null
null
null
-- SPDX-FileCopyrightText: 2010-2021 Max Reznik <[email protected]> -- -- SPDX-License-Identifier: MIT ------------------------------------------------------------- with Ada.Characters.Wide_Wide_Latin_1; package body WebIDL.String_Sources is -------------- -- Get_Next -- -------------- overriding function Get_Next (Self : not null access String_Source) return WebIDL.Abstract_Sources.Code_Unit_32 is begin if Self.Cursor.Has_Element then return Result : WebIDL.Abstract_Sources.Code_Unit_32 do Result := Wide_Wide_Character'Pos (Self.Cursor.Element); Self.Cursor.Next; end return; elsif Self.Index < Self.Vector.Length then Self.Index := Self.Index + 1; Self.Line := Self.Vector (Self.Index); Self.Cursor.First (Self.Line); return Wide_Wide_Character'Pos (Ada.Characters.Wide_Wide_Latin_1.LF); elsif Self.Index = Self.Vector.Length then Self.Index := Self.Index + 1; return Wide_Wide_Character'Pos (Ada.Characters.Wide_Wide_Latin_1.LF); else return WebIDL.Abstract_Sources.End_Of_Input; end if; end Get_Next; ----------------------- -- Set_String_Vector -- ----------------------- procedure Set_String_Vector (Self : out String_Source; Value : League.String_Vectors.Universal_String_Vector) is begin Self.Vector := Value; Self.Index := 1; Self.Line := Value (Self.Index); Self.Cursor.First (Self.Line); end Set_String_Vector; end WebIDL.String_Sources;
29.127273
78
0.602996
4a097cedf513d4ec25927a096493c5b288bb6f22
1,097
adb
Ada
src/hardware/hardware-drivetrain.adb
kisom/rover-mk1
5d7495893a7305387508755c0d5f2758660f6bf5
[ "MIT" ]
null
null
null
src/hardware/hardware-drivetrain.adb
kisom/rover-mk1
5d7495893a7305387508755c0d5f2758660f6bf5
[ "MIT" ]
null
null
null
src/hardware/hardware-drivetrain.adb
kisom/rover-mk1
5d7495893a7305387508755c0d5f2758660f6bf5
[ "MIT" ]
null
null
null
with AVR.MCU; package body Hardware.DriveTrain is procedure Init is begin MCU.DDRB_Bits (Pin_Right) := DD_Output; MCU.DDRB_Bits (Pin_Left) := DD_Output; PWM.Connect (Pin_Right, Motor_Right); PWM.Connect (Pin_Left, Motor_Left); PWM.Set (Motor_Right, Rotate_Stop); PWM.Set (Motor_Left, Rotate_Stop); end Init; procedure Forward is begin PWM.Set (Motor_Right, Rotate_Backward); PWM.Set (Motor_Left, Rotate_Forward); end Forward; procedure Backward is begin PWM.Set (Motor_Left, Rotate_Backward); PWM.Set (Motor_Right, Rotate_Forward); end Backward; procedure Rotate_Left is begin PWM.Set (Motor_Left, Rotate_Backward); PWM.Set (Motor_Right, Rotate_Backward); end Rotate_Left; procedure Rotate_Right is begin PWM.Set (Motor_Left, Rotate_Forward); PWM.Set (Motor_Right, Rotate_Forward); end Rotate_Right; procedure Stop is begin PWM.Set (Motor_Left, Rotate_Stop); PWM.Set (Motor_Right, Rotate_Stop); end Stop; end Hardware.DriveTrain;
22.854167
45
0.677302
1c9171216028f3338278a71bcadf74aff8dc958d
770
ads
Ada
gdb/testsuite/gdb.ada/cond_lang/mixed.ads
greyblue9/binutils-gdb
05377632b124fe7600eea7f4ee0e9a35d1b0cbdc
[ "BSD-3-Clause" ]
1
2020-10-14T03:24:35.000Z
2020-10-14T03:24:35.000Z
gdb/testsuite/gdb.ada/cond_lang/mixed.ads
greyblue9/binutils-gdb
05377632b124fe7600eea7f4ee0e9a35d1b0cbdc
[ "BSD-3-Clause" ]
null
null
null
gdb/testsuite/gdb.ada/cond_lang/mixed.ads
greyblue9/binutils-gdb
05377632b124fe7600eea7f4ee0e9a35d1b0cbdc
[ "BSD-3-Clause" ]
null
null
null
-- Copyright 2010-2021 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 Mixed is procedure Start_Test; end Mixed;
36.666667
73
0.738961
10c6380af9de50f673c70f18f9d238d37b343d44
16,108
adb
Ada
tools/ada-larl/ada_larl.adb
reznikmm/gela
20134f1d154fb763812e73860c6f4b04f353df79
[ "MIT" ]
null
null
null
tools/ada-larl/ada_larl.adb
reznikmm/gela
20134f1d154fb763812e73860c6f4b04f353df79
[ "MIT" ]
null
null
null
tools/ada-larl/ada_larl.adb
reznikmm/gela
20134f1d154fb763812e73860c6f4b04f353df79
[ "MIT" ]
1
2019-10-16T09:05:27.000Z
2019-10-16T09:05:27.000Z
-- SPDX-FileCopyrightText: 2019 Max Reznik <[email protected]> -- -- SPDX-License-Identifier: MIT ------------------------------------------------------------- with Ada.Command_Line; with Ada.Text_IO; with Anagram.Grammars; with Anagram.Grammars.Reader; with Anagram.Grammars_Convertors; with Anagram.Grammars.Rule_Templates; with Anagram.Grammars_Debug; with Anagram.Grammars.LR_Tables; with Anagram.Grammars.LR.LALR; with Anagram.Grammars.Constructors; with Anagram.Grammars.Conflicts; with Writers; use Writers; with League.String_Vectors; with League.Strings; procedure Ada_LARL is use type Anagram.Grammars.Rule_Count; use type Anagram.Grammars.LR.State_Count; procedure Put_Proc_Decl (Output : in out Writer; Suffix : Wide_Wide_String); procedure Put_Piece (Piece : in out Writer; From : Anagram.Grammars.Production_Index; To : Anagram.Grammars.Production_Index); procedure Put_Rule (Output : in out Writer; Prod : Anagram.Grammars.Production; Rule : Anagram.Grammars.Rule); function Image (X : Integer) return Wide_Wide_String; procedure Print_Go_To; procedure Print_Action; File : constant String := Ada.Command_Line.Argument (1); G : constant Anagram.Grammars.Grammar := Anagram.Grammars.Reader.Read (File); Plain : constant Anagram.Grammars.Grammar := Anagram.Grammars_Convertors.Convert (G, Left => False); AG : constant Anagram.Grammars.Grammar := Anagram.Grammars.Constructors.To_Augmented (Plain); Table : constant Anagram.Grammars.LR_Tables.Table_Access := Anagram.Grammars.LR.LALR.Build (Input => AG, Right_Nulled => False); Resolver : Anagram.Grammars.Conflicts.Resolver; Output : Writer; ----------- -- Image -- ----------- function Image (X : Integer) return Wide_Wide_String is Img : constant Wide_Wide_String := Integer'Wide_Wide_Image (X); begin return Img (2 .. Img'Last); end Image; ------------------ -- Print_Action -- ------------------ procedure Print_Action is use type Anagram.Grammars.Production_Count; use type Anagram.Grammars.Part_Count; type Action_Code is mod 2 ** 16; Count : Natural; Code : Action_Code; begin Output.P (" type Action_Code is mod 2 ** 16;"); Output.P (" for Action_Code'Size use 16;"); Output.P; Output.P (" Action_Table : constant array"); Output.N (" (State_Index range 1 .. "); Output.N (Natural (Anagram.Grammars.LR_Tables.Last_State (Table.all))); Output.P (","); Output.N (" Anagram.Grammars.Terminal_Count range 0 .. "); Output.N (Natural (Plain.Last_Terminal)); Output.P (") of Action_Code :="); for State in 1 .. Anagram.Grammars.LR_Tables.Last_State (Table.all) loop if State = 1 then Output.N (" ("); else Output.P (","); Output.N (" "); end if; Output.N (Natural (State)); Output.P (" =>"); Output.N (" ("); Count := 0; for T in 0 .. Plain.Last_Terminal loop declare use Anagram.Grammars.LR_Tables; S : constant Anagram.Grammars.LR.State_Count := Shift (Table.all, State, T); R : constant Reduce_Iterator := Reduce (Table.all, State, T); begin if S /= 0 then Code := Action_Code (S) + 16#80_00#; elsif not Is_Empty (R) then Code := Action_Code (Production (R)); else Code := 0; end if; if Code /= 0 then Output.N (Natural (T)); Output.N (" => "); Output.N (Natural (Code)); Count := Count + 1; if Count < 4 then Output.N (", "); else Count := 0; Output.P (","); Output.N (" "); end if; end if; end; end loop; Output.N ("others => 0)"); end loop; Output.P (");"); Output.P; Output.P (" type Production_Record is record"); Output.P (" NT : Anagram.Grammars.Non_Terminal_Index;"); Output.P (" Parts : Natural;"); Output.P (" end record;"); Output.P; Output.N (" Prods : constant array (Action_Code range 1 .. "); Output.N (Natural (Plain.Last_Production)); Output.P (") of"); Output.P (" Production_Record :="); Count := 0; for J in 1 .. Plain.Last_Production loop if J = 1 then Output.N (" ("); elsif Count > 5 then Count := 0; Output.P (","); Output.N (" "); else Output.N (", "); end if; Output.N ("("); Output.N (Natural (Plain.Production (J).Parent)); Output.N (", "); Output.N (Natural (Plain.Production (J).Last - Plain.Production (J).First + 1)); Output.N (")"); Count := Count + 1; end loop; Output.P (");"); Output.P; Output.P (" procedure Next_Action"); Output.P (" (State : Anagram.Grammars.LR_Parsers.State_Index;"); Output.P (" Token : Anagram.Grammars.Terminal_Count;"); Output.P (" Value : out Anagram.Grammars.LR_Parsers.Action)"); Output.P (" is"); Output.P (" Code : constant Action_Code := " & "Action_Table (State, Token);"); Output.P (" begin"); Output.P (" if (Code and 16#80_00#) /= 0 then"); Output.P (" Value := (Kind => Shift, " & "State => State_Index (Code and 16#7F_FF#));"); Output.P (" elsif Code /= 0 then"); Output.P (" Value := (Kind => Reduce,"); Output.P (" Prod => " & "Anagram.Grammars.Production_Index (Code),"); Output.P (" NT => Prods (Code).NT,"); Output.P (" Parts => Prods (Code).Parts);"); for State in 1 .. Anagram.Grammars.LR_Tables.Last_State (Table.all) loop if Anagram.Grammars.LR_Tables.Finish (Table.all, State) then Output.N (" elsif State = "); Output.N (Natural (State)); Output.P (" then"); Output.P (" Value := (Kind => Finish);"); end if; end loop; Output.P (" else"); Output.P (" Value := (Kind => Error);"); Output.P (" end if;"); Output.P (" end Next_Action;"); Output.P; end Print_Action; ----------------- -- Print_Go_To -- ----------------- procedure Print_Go_To is Count : Natural; begin Output.P (" Go_To_Table : constant array"); Output.N (" (Anagram.Grammars.LR_Parsers.State_Index range 1 .. "); Output.N (Natural (Anagram.Grammars.LR_Tables.Last_State (Table.all))); Output.P (","); Output.N (" Anagram.Grammars.Non_Terminal_Index range 1 .. "); Output.N (Natural (Plain.Last_Non_Terminal)); Output.P (") of State_Index :="); for State in 1 .. Anagram.Grammars.LR_Tables.Last_State (Table.all) loop if State = 1 then Output.N (" ("); else Output.P (","); Output.N (" "); end if; Output.N (Natural (State)); Output.P (" =>"); Output.N (" ("); Count := 0; for NT in 1 .. Plain.Last_Non_Terminal loop declare use Anagram.Grammars.LR; Next : constant State_Count := Anagram.Grammars.LR_Tables.Shift (Table.all, State, NT); begin if Next /= 0 then Output.N (Natural (NT)); Output.N (" => "); Output.N (Natural (Next)); Count := Count + 1; if Count < 4 then Output.N (", "); else Count := 0; Output.P (","); Output.N (" "); end if; end if; end; end loop; Output.N ("others => 0)"); end loop; Output.P (");"); Output.P; Output.P (" function Go_To"); Output.P (" (State : Anagram.Grammars.LR_Parsers.State_Index;"); Output.P (" NT : Anagram.Grammars.Non_Terminal_Index)"); Output.P (" return Anagram.Grammars.LR_Parsers.State_Index"); Output.P (" is"); Output.P (" begin"); Output.P (" return Go_To_Table (State, NT);"); Output.P (" end Go_To;"); Output.P; end Print_Go_To; -------------- -- Put_Rule -- -------------- procedure Put_Rule (Output : in out Writer; Prod : Anagram.Grammars.Production; Rule : Anagram.Grammars.Rule) is use Anagram.Grammars.Rule_Templates; use type League.Strings.Universal_String; Template : constant Rule_Template := Create (Rule.Text); Args : League.String_Vectors.Universal_String_Vector; Value : League.Strings.Universal_String; begin for J in 1 .. Template.Count loop Value.Clear; if Plain.Non_Terminal (Prod.Parent).Name = Template.Part_Name (J) then Value.Append ("Nodes (1)"); else declare Index : Positive := 1; begin for Part of Plain.Part (Prod.First .. Prod.Last) loop if Part.Name = Template.Part_Name (J) then Value.Append ("Nodes ("); Value.Append (Image (Index)); Value.Append (")"); end if; Index := Index + 1; end loop; if Value.Is_Empty then if Template.Has_Default (J) then Value := Template.Default (J); else Ada.Text_IO.Put_Line ("Wrong part " & Template.Part_Name (J).To_UTF_8_String & " in rule for production " & Plain.Non_Terminal (Prod.Parent).Name.To_UTF_8_String & "." & Prod.Name.To_UTF_8_String); Ada.Text_IO.Put_Line (Rule.Text.To_UTF_8_String); raise Constraint_Error; end if; end if; end; end if; Args.Append (Value); end loop; Output.P (Template.Substitute (Args)); end Put_Rule; procedure Put_Proc_Decl (Output : in out Writer; Suffix : Wide_Wide_String) is begin Output.N ("procedure Program.Parsers.On_Reduce"); Output.P (Suffix); Output.P (" (Self : access Parse_Context;"); Output.P (" Prod : Anagram.Grammars.Production_Index;"); Output.N (" Nodes : in out " & "Program.Parsers.Nodes.Node_Array)"); end Put_Proc_Decl; procedure Put_Piece (Piece : in out Writer; From : Anagram.Grammars.Production_Index; To : Anagram.Grammars.Production_Index) is Suffix : Wide_Wide_String := Anagram.Grammars.Production_Index'Wide_Wide_Image (From); begin Suffix (1) := '_'; Piece.P ("with Anagram.Grammars;"); Piece.P ("with Program.Parsers.Nodes;"); Piece.N ("private "); Put_Proc_Decl (Piece, Suffix); Piece.P (";"); Piece.N ("pragma Preelaborate (Program.Parsers.On_Reduce"); Piece.N (Suffix); Piece.P (");"); Piece.P; -- Piece.P ("pragma Warnings (""U"");"); Piece.P ("with Program.Parsers.Nodes;"); Piece.P ("use Program.Parsers.Nodes;"); Piece.P ("pragma Style_Checks (""N"");"); Put_Proc_Decl (Piece, Suffix); Piece.P (" is"); Piece.P ("begin"); Piece.P (" case Prod is"); for Prod of Plain.Production (From .. To) loop Piece.N (" when"); Piece.N (Anagram.Grammars.Production_Index'Wide_Wide_Image (Prod.Index)); Piece.P (" =>"); for Rule of Plain.Rule (Prod.First_Rule .. Prod.Last_Rule) loop Put_Rule (Piece, Prod, Rule); end loop; if Prod.First_Rule > Prod.Last_Rule then Piece.P (" null;"); end if; end loop; Piece.P (" when others =>"); Piece.P (" raise Constraint_Error;"); Piece.P (" end case;"); Piece.N ("end Program.Parsers.On_Reduce"); Piece.N (Suffix); Piece.P (";"); end Put_Piece; use type Anagram.Grammars.Production_Count; Piece_Length : constant Anagram.Grammars.Production_Count := 500; Piece : Writer; begin Resolver.Resolve (AG, Table.all); Output.P ("with Anagram.Grammars;"); Output.P ("with Anagram.Grammars.LR_Parsers;"); Output.P; Output.P ("package Program.Parsers.Data is"); Output.P (" pragma Preelaborate;"); Output.P; Output.P (" procedure Next_Action"); Output.P (" (State : Anagram.Grammars.LR_Parsers.State_Index;"); Output.P (" Token : Anagram.Grammars.Terminal_Count;"); Output.P (" Value : out Anagram.Grammars.LR_Parsers.Action);"); Output.P; Output.P (" function Go_To"); Output.P (" (State : Anagram.Grammars.LR_Parsers.State_Index;"); Output.P (" NT : Anagram.Grammars.Non_Terminal_Index)"); Output.P (" return Anagram.Grammars.LR_Parsers.State_Index;"); Output.P; Output.P ("end Program.Parsers.Data;"); Output.P; Output.P ("package body Program.Parsers.Data is"); Output.P (" use Anagram.Grammars.LR_Parsers;"); Output.P; Print_Go_To; Print_Action; Output.P ("end Program.Parsers.Data;"); Output.P; Output.P ("with Anagram.Grammars;"); Output.P ("with Program.Parsers.Nodes;"); Output.N ("private "); Put_Proc_Decl (Output, ""); Output.P (";"); Output.P ("pragma Preelaborate (Program.Parsers.On_Reduce);"); Output.P; for Piece_Index in 0 .. (Plain.Last_Production - 1) / Piece_Length loop declare From : constant Anagram.Grammars.Production_Index := Piece_Index * Piece_Length + 1; begin Output.N ("with Program.Parsers.On_Reduce_"); Output.N (Natural (From)); Output.P (";"); end; end loop; Put_Proc_Decl (Output, ""); Output.P (" is"); Output.P ("begin"); Output.P (" case Prod is"); for Piece_Index in 0 .. (Plain.Last_Production - 1) / Piece_Length loop declare From : constant Anagram.Grammars.Production_Index := Piece_Index * Piece_Length + 1; To : constant Anagram.Grammars.Production_Index := Anagram.Grammars.Production_Index'Min (Plain.Last_Production, (Piece_Index + 1) * Piece_Length); begin Output.N (" when "); Output.N (Natural (From)); Output.N (" .. "); Output.N (Natural (To)); Output.P (" =>"); Output.N (" On_Reduce_"); Output.N (Natural (From)); Output.P (" (Self, Prod, Nodes);"); Put_Piece (Piece => Piece, From => From, To => To); end; end loop; Output.P (" when others =>"); Output.P (" raise Constraint_Error;"); Output.P (" end case;"); Output.P ("end Program.Parsers.On_Reduce;"); Ada.Text_IO.Put_Line (Output.Text.To_UTF_8_String); Ada.Text_IO.Put_Line (Piece.Text.To_UTF_8_String); Anagram.Grammars_Debug.Print_Conflicts (AG, Table.all); if Ada.Command_Line.Argument_Count > 1 then Anagram.Grammars_Debug.Print (G); end if; end Ada_LARL;
32.410463
79
0.527812
18545d605b53f17bb442f1500e98d9e31e387eaf
2,214
adb
Ada
src/latin_utils/latin_utils-inflections_package-tackon_record_io.adb
finleyexp/whitakers-words
9c07fe7e96ac15dc3262b82a37f6ea69947f458b
[ "FTL" ]
204
2015-06-12T21:22:55.000Z
2022-03-28T10:50:16.000Z
src/latin_utils/latin_utils-inflections_package-tackon_record_io.adb
finleyexp/whitakers-words
9c07fe7e96ac15dc3262b82a37f6ea69947f458b
[ "FTL" ]
98
2015-06-15T22:17:04.000Z
2021-10-01T18:17:55.000Z
src/latin_utils/latin_utils-inflections_package-tackon_record_io.adb
finleyexp/whitakers-words
9c07fe7e96ac15dc3262b82a37f6ea69947f458b
[ "FTL" ]
50
2015-06-16T22:42:24.000Z
2021-12-29T16:53:08.000Z
-- WORDS, a Latin dictionary, by Colonel William Whitaker (USAF, Retired) -- -- Copyright William A. Whitaker (1936–2010) -- -- This is a free program, which means it is proper to copy it and pass -- it on to your friends. Consider it a developmental item for which -- there is no charge. However, just for form, it is Copyrighted -- (c). Permission is hereby freely given for any and all use of program -- and data. You can sell it as your own, but at least tell me. -- -- This version is distributed without obligation, but the developer -- would appreciate comments and suggestions. -- -- All parts of the WORDS system, source code and data files, are made freely -- available to anyone who wishes to use them, for whatever purpose. separate (Latin_Utils.Inflections_Package) package body Tackon_Record_IO is --------------------------------------------------------------------------- procedure Get (File : in File_Type; Item : out Tackon_Record) is pragma Unreferenced (File); begin Item := Null_Tackon_Record; end Get; --------------------------------------------------------------------------- procedure Get (Item : out Tackon_Record) is begin Item := Null_Tackon_Record; end Get; --------------------------------------------------------------------------- procedure Put (File : in File_Type; Item : in Tackon_Record) is begin null; end Put; --------------------------------------------------------------------------- procedure Put (Item : in Tackon_Record) is begin null; end Put; --------------------------------------------------------------------------- procedure Get (Source : in String; Target : out Tackon_Record; Last : out Integer ) is begin Target := Null_Tackon_Record; Last := Source'First - 1; end Get; --------------------------------------------------------------------------- procedure Put (Target : out String; Item : in Tackon_Record) is pragma Unreferenced (Item); begin Target := (others => ' '); end Put; --------------------------------------------------------------------------- end Tackon_Record_IO;
29.52
78
0.506775
10146c5a4018752380fb85530f491f30594cfc55
3,492
ads
Ada
gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/debug10_pkg.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/debug10_pkg.ads
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
null
null
null
gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/debug10_pkg.ads
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
2
2020-07-27T00:22:36.000Z
2021-04-01T09:41:02.000Z
with Unchecked_Conversion; package Debug10_Pkg is type Node_Id is range 0 .. 99_999_999; Empty : constant Node_Id := 0; subtype Entity_Id is Node_Id; type Union_Id is new Integer; function My_Is_Entity_Name (N : Node_Id) return Boolean; function My_Scalar_Range (Id : Entity_Id) return Node_Id; function My_Test (N : Node_Id) return Boolean; type Node_Kind is (N_Unused_At_Start, N_Unused_At_End); type Entity_Kind is ( E_Void, E_Component, E_Constant, E_Discriminant, E_Loop_Parameter, E_Variable, E_Out_Parameter, E_In_Out_Parameter, E_In_Parameter, E_Generic_In_Out_Parameter, E_Generic_In_Parameter, E_Named_Integer, E_Named_Real, E_Enumeration_Type, E_Enumeration_Subtype, E_Signed_Integer_Type, E_Signed_Integer_Subtype, E_Modular_Integer_Type, E_Modular_Integer_Subtype, E_Ordinary_Fixed_Point_Type, E_Ordinary_Fixed_Point_Subtype, E_Decimal_Fixed_Point_Type, E_Decimal_Fixed_Point_Subtype, E_Floating_Point_Type, E_Floating_Point_Subtype, E_Access_Type, E_Access_Subtype, E_Access_Attribute_Type, E_Allocator_Type, E_General_Access_Type, E_Access_Subprogram_Type, E_Anonymous_Access_Subprogram_Type, E_Access_Protected_Subprogram_Type, E_Anonymous_Access_Protected_Subprogram_Type, E_Anonymous_Access_Type, E_Array_Type, E_Array_Subtype, E_String_Literal_Subtype, E_Class_Wide_Type, E_Class_Wide_Subtype, E_Record_Type, E_Record_Subtype, E_Record_Type_With_Private, E_Record_Subtype_With_Private, E_Private_Type, E_Private_Subtype, E_Limited_Private_Type, E_Limited_Private_Subtype, E_Incomplete_Type, E_Incomplete_Subtype, E_Task_Type, E_Task_Subtype, E_Protected_Type, E_Protected_Subtype, E_Exception_Type, E_Subprogram_Type, E_Enumeration_Literal, E_Function, E_Operator, E_Procedure, E_Abstract_State, E_Entry, E_Entry_Family, E_Block, E_Entry_Index_Parameter, E_Exception, E_Generic_Function, E_Generic_Procedure, E_Generic_Package, E_Label, E_Loop, E_Return_Statement, E_Package, E_Package_Body, E_Protected_Object, E_Protected_Body, E_Task_Body, E_Subprogram_Body ); subtype Access_Kind is Entity_Kind range E_Access_Type .. E_Anonymous_Access_Type; subtype Array_Kind is Entity_Kind range E_Array_Type .. E_String_Literal_Subtype; subtype Object_Kind is Entity_Kind range E_Component .. E_Generic_In_Parameter; subtype Record_Kind is Entity_Kind range E_Class_Wide_Type .. E_Record_Subtype_With_Private; subtype Scalar_Kind is Entity_Kind range E_Enumeration_Type .. E_Floating_Point_Subtype; subtype Type_Kind is Entity_Kind range E_Enumeration_Type .. E_Subprogram_Type; type Node_Record (Is_Extension : Boolean := False) is record Flag16 : Boolean; Nkind : Node_Kind; end record; function N_To_E is new Unchecked_Conversion (Node_Kind, Entity_Kind); type Arr is array (Node_Id) of Node_Record; Nodes : Arr; end Debug10_Pkg;
25.122302
72
0.681558
1862f314d9e9b40be8cc96ba62119d040f9340cd
5,755
ads
Ada
ada-containers-indefinite_hashed_maps.ads
mgrojo/adalib
dc1355a5b65c2843e702ac76252addb2caf3c56b
[ "BSD-3-Clause" ]
15
2018-07-08T07:09:19.000Z
2021-11-21T09:58:55.000Z
ada-containers-indefinite_hashed_maps.ads
mgrojo/adalib
dc1355a5b65c2843e702ac76252addb2caf3c56b
[ "BSD-3-Clause" ]
4
2019-11-17T20:04:33.000Z
2021-08-29T21:24:55.000Z
ada-containers-indefinite_hashed_maps.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 --------------------------------------------------------------------------- with Ada.Iterator_Interfaces; generic type Key_Type (<>) is private; type Element_Type (<>) is private; with function Hash (Key : Key_Type) return Hash_Type; with function Equivalent_Keys (Left, Right : Key_Type) return Boolean; with function "=" (Left, Right : Element_Type) return Boolean is <>; package Ada.Containers.Indefinite_Hashed_Maps is pragma Preelaborate(Indefinite_Hashed_Maps); pragma Remote_Types(Indefinite_Hashed_Maps); type Map is tagged private with Constant_Indexing => Constant_Reference, Variable_Indexing => Reference, Default_Iterator => Iterate, Iterator_Element => Element_Type; pragma Preelaborable_Initialization(Map); type Cursor is private; pragma Preelaborable_Initialization(Cursor); Empty_Map : constant Map; No_Element : constant Cursor; function Has_Element (Position : Cursor) return Boolean; package Map_Iterator_Interfaces is new Ada.Iterator_Interfaces (Cursor, Has_Element); function "=" (Left, Right : Map) return Boolean; function Capacity (Container : Map) return Count_Type; procedure Reserve_Capacity (Container : in out Map; Capacity : in Count_Type); function Length (Container : Map) return Count_Type; function Is_Empty (Container : Map) return Boolean; procedure Clear (Container : in out Map); function Key (Position : Cursor) return Key_Type; function Element (Position : Cursor) return Element_Type; procedure Replace_Element (Container : in out Map; Position : in Cursor; New_Item : in Element_Type); procedure Query_Element (Position : in Cursor; Process : not null access procedure (Key : in Key_Type; Element : in Element_Type)); procedure Update_Element (Container : in out Map; Position : in Cursor; Process : not null access procedure (Key : in Key_Type; Element : in out Element_Type)); type Constant_Reference_Type (Element : not null access constant Element_Type) is private with Implicit_Dereference => Element; type Reference_Type (Element : not null access Element_Type) is private with Implicit_Dereference => Element; function Constant_Reference (Container : aliased in Map; Position : in Cursor) return Constant_Reference_Type; function Reference (Container : aliased in out Map; Position : in Cursor) return Reference_Type; function Constant_Reference (Container : aliased in Map; Key : in Key_Type) return Constant_Reference_Type; function Reference (Container : aliased in out Map; Key : in Key_Type) return Reference_Type; procedure Assign (Target : in out Map; Source : in Map); function Copy (Source : Map; Capacity : Count_Type := 0) return Map; procedure Move (Target : in out Map; Source : in out Map); procedure Insert (Container : in out Map; Key : in Key_Type; New_Item : in Element_Type; Position : out Cursor; Inserted : out Boolean); procedure Insert (Container : in out Map; Key : in Key_Type; New_Item : in Element_Type); procedure Include (Container : in out Map; Key : in Key_Type; New_Item : in Element_Type); procedure Replace (Container : in out Map; Key : in Key_Type; New_Item : in Element_Type); procedure Exclude (Container : in out Map; Key : in Key_Type); procedure Delete (Container : in out Map; Key : in Key_Type); procedure Delete (Container : in out Map; Position : in out Cursor); function First (Container : Map) return Cursor; function Next (Position : Cursor) return Cursor; procedure Next (Position : in out Cursor); function Find (Container : Map; Key : Key_Type) return Cursor; function Element (Container : Map; Key : Key_Type) return Element_Type; function Contains (Container : Map; Key : Key_Type) return Boolean; function Equivalent_Keys (Left, Right : Cursor) return Boolean; function Equivalent_Keys (Left : Cursor; Right : Key_Type) return Boolean; function Equivalent_Keys (Left : Key_Type; Right : Cursor) return Boolean; procedure Iterate (Container : in Map; Process : not null access procedure (Position : in Cursor)); function Iterate (Container : in Map) return Map_Iterator_Interfaces.Forward_Iterator'Class; private -- not specified by the language end Ada.Containers.Indefinite_Hashed_Maps;
33.074713
75
0.595656
c5a0eadf29f512a476dc375116cac69e696e9520
6,245
ads
Ada
gcc-gcc-7_3_0-release/gcc/ada/s-secsta.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/s-secsta.ads
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
null
null
null
gcc-gcc-7_3_0-release/gcc/ada/s-secsta.ads
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
2
2020-07-27T00:22:36.000Z
2021-04-01T09:41:02.000Z
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- S Y S T E M . S E C O N D A R Y _ S T A C K -- -- -- -- S p e c -- -- -- -- Copyright (C) 1992-2016, 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 Compiler_Unit_Warning; with System.Storage_Elements; package System.Secondary_Stack is package SSE renames System.Storage_Elements; Default_Secondary_Stack_Size : Natural := 10 * 1024; -- Default size of a secondary stack. May be modified by binder -D switch -- which causes the binder to generate an appropriate assignment in the -- binder generated file. function Minimum_Secondary_Stack_Size return Natural; -- The minimum size of the secondary stack so that the internal -- requirements of the stack are met. procedure SS_Init (Stk : in out Address; Size : Natural := Default_Secondary_Stack_Size); -- Initialize the secondary stack with a main stack of the given Size. -- -- If System.Parameters.Sec_Stack_Percentage equals Dynamic, Stk is really -- an OUT parameter that will be allocated on the heap. Then all further -- allocations which do not overflow the main stack will not generate -- dynamic (de)allocation calls. If the main Stack overflows, a new -- chuck of at least the same size will be allocated and linked to the -- previous chunk. -- -- Otherwise (Sec_Stack_Percentage between 0 and 100), Stk is an IN -- parameter that is already pointing to a Stack_Id. The secondary stack -- in this case is fixed, and any attempt to allocate more than the initial -- size will result in a Storage_Error being raised. -- -- Note: the reason that Stk is passed is that SS_Init is called before -- the proper interface is established to obtain the address of the -- stack using System.Soft_Links.Get_Sec_Stack_Addr. procedure SS_Allocate (Addr : out Address; Storage_Size : SSE.Storage_Count); -- Allocate enough space for a 'Storage_Size' bytes object with Maximum -- alignment. The address of the allocated space is returned in Addr. procedure SS_Free (Stk : in out Address); -- Release the memory allocated for the Secondary Stack. That is -- to say, all the allocated chunks. Upon return, Stk will be set -- to System.Null_Address. type Mark_Id is private; -- Type used to mark the stack for mark/release processing function SS_Mark return Mark_Id; -- Return the Mark corresponding to the current state of the stack procedure SS_Release (M : Mark_Id); -- Restore the state of the stack corresponding to the mark M. If an -- additional chunk have been allocated, it will never be freed during a -- ??? missing comment here function SS_Get_Max return Long_Long_Integer; -- Return maximum used space in storage units for the current secondary -- stack. For a dynamically allocated secondary stack, the returned -- result is always -1. For a statically allocated secondary stack, -- the returned value shows the largest amount of space allocated so -- far during execution of the program to the current secondary stack, -- i.e. the secondary stack for the current task. generic with procedure Put_Line (S : String); procedure SS_Info; -- Debugging procedure used to print out secondary Stack allocation -- information. This procedure is generic in order to avoid a direct -- dependance on a particular IO package. private SS_Pool : Integer; -- Unused entity that is just present to ease the sharing of the pool -- mechanism for specific allocation/deallocation in the compiler type SS_Ptr is new SSE.Integer_Address; -- Stack pointer value for secondary stack type Mark_Id is record Sstk : System.Address; Sptr : SS_Ptr; end record; -- A mark value contains the address of the secondary stack structure, -- as returned by System.Soft_Links.Get_Sec_Stack_Addr, and a stack -- pointer value corresponding to the point of the mark call. end System.Secondary_Stack;
50.362903
79
0.589111
234963a93c35fe39cac9418ce3174e064c327eb9
920
ada
Ada
Task/Bitwise-operations/Ada/bitwise-operations.ada
djgoku/RosettaCodeData
91df62d46142e921b3eacdb52b0316c39ee236bc
[ "Info-ZIP" ]
null
null
null
Task/Bitwise-operations/Ada/bitwise-operations.ada
djgoku/RosettaCodeData
91df62d46142e921b3eacdb52b0316c39ee236bc
[ "Info-ZIP" ]
null
null
null
Task/Bitwise-operations/Ada/bitwise-operations.ada
djgoku/RosettaCodeData
91df62d46142e921b3eacdb52b0316c39ee236bc
[ "Info-ZIP" ]
null
null
null
with Ada.Text_Io; use Ada.Text_Io; with Interfaces; use Interfaces; procedure Bitwise is subtype Byte is Unsigned_8; package Byte_Io is new Ada.Text_Io.Modular_Io(Byte); A : Byte := 255; B : Byte := 170; X : Byte := 128; N : Natural := 1; begin Put_Line("A and B = "); Byte_Io.Put(Item => A and B, Base => 2); Put_Line("A or B = "); Byte_IO.Put(Item => A or B, Base => 2); Put_Line("A xor B = "); Byte_Io.Put(Item => A xor B, Base => 2); Put_Line("Not A = "); Byte_IO.Put(Item => not A, Base => 2); New_Line(2); Put_Line(Unsigned_8'Image(Shift_Left(X, N))); -- Left shift Put_Line(Unsigned_8'Image(Shift_Right(X, N))); -- Right shift Put_Line(Unsigned_8'Image(Shift_Right_Arithmetic(X, N))); -- Right Shift Arithmetic Put_Line(Unsigned_8'Image(Rotate_Left(X, N))); -- Left rotate Put_Line(Unsigned_8'Image(Rotate_Right(X, N))); -- Right rotate end bitwise;
36.8
86
0.641304
fb2ff9102384b572d612f4170bc6a962604a5707
7,130
ads
Ada
3-mid/impact/source/3d/collision/dispatch/impact-d3-collision-algorithm-activating-convex_convex.ads
charlie5/lace
e9b7dc751d500ff3f559617a6fc3089ace9dc134
[ "0BSD" ]
20
2015-11-04T09:23:59.000Z
2022-01-14T10:21:42.000Z
3-mid/impact/source/3d/collision/dispatch/impact-d3-collision-algorithm-activating-convex_convex.ads
charlie5/lace
e9b7dc751d500ff3f559617a6fc3089ace9dc134
[ "0BSD" ]
2
2015-11-04T17:05:56.000Z
2015-12-08T03:16:13.000Z
3-mid/impact/source/3d/collision/dispatch/impact-d3-collision-algorithm-activating-convex_convex.ads
charlie5/lace
e9b7dc751d500ff3f559617a6fc3089ace9dc134
[ "0BSD" ]
1
2015-12-07T12:53:52.000Z
2015-12-07T12:53:52.000Z
-- #include "impact.d3.collision.Algorithm.activating.h" -- #include "BulletCollision/NarrowPhaseCollision/impact.d3.collision.Detector.discrete.gjk_pair.h" -- #include "BulletCollision/NarrowPhaseCollision/impact.d3.Manifold.h" -- #include "BulletCollision/BroadphaseCollision/impact.d3.collision.Proxy.h" -- #include "BulletCollision/NarrowPhaseCollision/impact.d3.collision.simplex_Solver.voronoi.h" -- #include "btCollisionCreateFunc.h" -- #include "impact.d3.Dispatcher.collision.h" -- #include "LinearMath/impact.d3.TransformUtil.h" //for btConvexSeparatingDistanceUtil -- -- class impact.d3.collision.convex_penetration_depth_Solver; with impact.d3.collision.Algorithm.activating, impact.d3.collision.simplex_Solver, impact.d3.collision.convex_penetration_depth_Solver, impact.d3.Manifold, impact.d3.collision.create_Func, impact.d3.transform_Util; with impact.d3.collision.Algorithm; with impact.d3.Object; with impact.d3.Dispatcher; with impact.d3.collision.manifold_Result; package impact.d3.collision.Algorithm.activating.convex_convex -- -- The convexConvexAlgorithm collision algorithm implements time of impact, convex closest points and penetration depth calculations between two convex objects. -- -- Multiple contact points are calculated by perturbing the orientation of the smallest object orthogonal to the separating normal. -- This idea was described by Gino van den Bergen in this forum topic http://www.bulletphysics.com/Bullet/phpBB3/viewtopic.php?f=4&t=288&p=888#p888 -- is use impact.d3.transform_Util, Math; USE_SEPDISTANCE_UTIL2 : constant Boolean := True; -- -- Enabling USE_SEPDISTANCE_UTIL2 requires 100% reliable distance computation. However, when using large size ratios GJK can be imprecise -- so the distance is not conservative. In that case, enabling this USE_SEPDISTANCE_UTIL2 would result in failing/missing collisions. -- Either improve GJK for large size ratios (testing a 100 units versus a 0.1 unit object) or only enable the util -- for certain pairs that have a small size ratio type Item is new impact.d3.collision.Algorithm.activating.item with private; --- CreateFunc -- type CreateFunc is new create_Func.item with record m_pdSolver : access impact.d3.collision.convex_penetration_depth_Solver.item'Class; m_simplexSolver : access impact.d3.collision.simplex_Solver.item'Class; m_numPerturbationIterations : Integer; m_minimumPointsPerturbationThreshold : Integer; end record; function to_CreateFunc (simplexSolver : access impact.d3.collision.simplex_Solver.item'Class; pdSolver : access impact.d3.collision.convex_penetration_depth_Solver.item'Class) return CreateFunc; function new_CreateFunc (simplexSolver : access impact.d3.collision.simplex_Solver.item'Class; pdSolver : access impact.d3.collision.convex_penetration_depth_Solver.item'Class) return access CreateFunc'Class; overriding procedure destruct (Self : in out CreateFunc); overriding function CreateCollisionAlgorithm (Self : in CreateFunc; info : in AlgorithmConstructionInfo; body0, body1 : access impact.d3.Object.item'Class) return impact.d3.Dispatcher.Algorithm_view; -- struct CreateFunc :public impact.d3.collision.AlgorithmCreateFunc -- { -- -- -- virtual impact.d3.collision.Algorithm* CreateCollisionAlgorithm(impact.d3.collision.AlgorithmConstructionInfo& ci, impact.d3.Object* body0,impact.d3.Object* body1) -- { -- void* mem = ci.m_dispatcher1->allocateCollisionAlgorithm(sizeof(impact.d3.collision.Algorithm.activating.convex_convex)); -- return new(mem) impact.d3.collision.Algorithm.activating.convex_convex(ci.m_manifold,ci,body0,body1,m_simplexSolver,m_pdSolver,m_numPerturbationIterations,m_minimumPointsPerturbationThreshold); -- } -- }; --- impact.d3.collision.Algorithm.activating.convex_convex -- function to_convex_convex_Algorithm (mf : access impact.d3.Manifold.item'Class; ci : in AlgorithmConstructionInfo; body0, body1 : access impact.d3.Object.item'Class; simplexSolver : access impact.d3.collision.simplex_Solver.item'Class; pdSolver : access impact.d3.collision.convex_penetration_depth_Solver.item'Class; numPerturbationIterations : in Integer; minimumPointsPerturbationThreshold : in Integer) return impact.d3.collision.Algorithm.activating.convex_convex.item; overriding procedure destruct (Self : in out Item); overriding procedure processCollision (Self : in out Item; body0, body1 : access impact.d3.Object.item'Class; dispatchInfo : in impact.d3.Dispatcher.DispatcherInfo; resultOut : out impact.d3.collision.manifold_Result.item); overriding function calculateTimeOfImpact (Self : in Item; body0, body1 : access impact.d3.Object.item'Class; dispatchInfo : in impact.d3.Dispatcher.DispatcherInfo; resultOut : access impact.d3.collision.manifold_Result.item) return math.Real; overriding procedure getAllContactManifolds (Self : in out Item; manifoldArray : out impact.d3.collision.Algorithm.btManifoldArray); procedure setLowLevelOfDetail (Self : in out Item; useLowLevel : in Boolean); function getManifold (Self : in Item) return access impact.d3.Manifold.item'Class; private type Item is new impact.d3.collision.Algorithm.activating.item with record m_sepDistance : btConvexSeparatingDistanceUtil; -- Used by USE_SEPDISTANCE_UTIL2. m_simplexSolver : access impact.d3.collision.simplex_Solver.item'Class; m_pdSolver : access impact.d3.collision.convex_penetration_depth_Solver.item'Class; m_ownManifold : Boolean; m_manifoldPtr : access impact.d3.Manifold.item'Class; m_lowLevelOfDetail : Boolean; m_numPerturbationIterations : Integer; m_minimumPointsPerturbationThreshold : Integer; -- todo: cache separating vector to speedup collision detection end record; end impact.d3.collision.Algorithm.activating.convex_convex;
45.705128
221
0.656662
dfafeb696ae243443834e458b8150302b72b687c
1,324
ads
Ada
src/servlet-routes-servlets-rest.ads
jquorning/ada-servlet
97db5fcdd59e01441c717b95a9e081aa7d6a7bbe
[ "Apache-2.0" ]
6
2018-01-04T07:19:46.000Z
2020-12-27T14:49:44.000Z
src/servlet-routes-servlets-rest.ads
jquorning/ada-servlet
97db5fcdd59e01441c717b95a9e081aa7d6a7bbe
[ "Apache-2.0" ]
9
2020-12-20T15:29:18.000Z
2022-02-04T20:13:58.000Z
src/servlet-routes-servlets-rest.ads
jquorning/ada-servlet
97db5fcdd59e01441c717b95a9e081aa7d6a7bbe
[ "Apache-2.0" ]
2
2021-01-06T08:32:38.000Z
2022-01-24T23:46:36.000Z
----------------------------------------------------------------------- -- servlet-reoutes-servlets-rest -- Route for the REST API -- 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 Servlet.Rest; package Servlet.Routes.Servlets.Rest is type Descriptor_Array is array (Servlet.Rest.Method_Type) of Servlet.Rest.Descriptor_Access; -- The route has one descriptor for each REST method. type API_Route_Type is new Servlet.Routes.Servlets.Servlet_Route_Type with record Descriptors : Descriptor_Array; end record; type API_Route_Type_Access is access all API_Route_Type'Class; end Servlet.Routes.Servlets.Rest;
42.709677
95
0.674471
1022c3573fce1d7e13c0dfe3d371adf1ed8b17fa
3,748
ads
Ada
source/web/soap/web_services-soap-payloads.ads
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
24
2016-11-29T06:59:41.000Z
2021-08-30T11:55:16.000Z
source/web/soap/web_services-soap-payloads.ads
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
2
2019-01-16T05:15:20.000Z
2019-02-03T10:03:32.000Z
source/web/soap/web_services-soap-payloads.ads
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
4
2017-07-18T07:11:05.000Z
2020-06-21T03:02:25.000Z
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Web 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$ ------------------------------------------------------------------------------ -- Abstract base for actual payload of SOAP message, incapsulated in the SOAP -- Body. ------------------------------------------------------------------------------ package Web_Services.SOAP.Payloads is pragma Preelaborate; type Abstract_SOAP_Payload is abstract tagged limited null record; type SOAP_Payload_Access is access all Abstract_SOAP_Payload'Class; end Web_Services.SOAP.Payloads;
65.754386
78
0.413287
10afb6a2a2bc2cd8061d6a87a2f1de8bc251d0db
1,641
adb
Ada
tests/tk-button-button_options_test_data.adb
thindil/tashy2
43fcbadb33c0062b2c8d6138a8238441dec5fd80
[ "Apache-2.0" ]
2
2020-12-09T07:27:07.000Z
2021-10-19T13:31:54.000Z
tests/tk-button-button_options_test_data.adb
thindil/tashy2
43fcbadb33c0062b2c8d6138a8238441dec5fd80
[ "Apache-2.0" ]
null
null
null
tests/tk-button-button_options_test_data.adb
thindil/tashy2
43fcbadb33c0062b2c8d6138a8238441dec5fd80
[ "Apache-2.0" ]
null
null
null
-- This package is intended to set up and tear down the test environment. -- Once created by GNATtest, this package will never be overwritten -- automatically. Contents of this package can be modified in any way -- except for sections surrounded by a 'read only' marker. with Ada.Environment_Variables; use Ada.Environment_Variables; with Tcl.Info; use Tcl.Info; package body Tk.Button.Button_Options_Test_Data is Local_Button_Options: aliased GNATtest_Generated.GNATtest_Standard.Tk.Button .Button_Options; procedure Set_Up(Gnattest_T: in out Test_Button_Options) is begin GNATtest_Generated.GNATtest_Standard.Tk.Widget.Widget_Options_Test_Data .Widget_Options_Tests .Set_Up (GNATtest_Generated.GNATtest_Standard.Tk.Widget .Widget_Options_Test_Data .Widget_Options_Tests .Test_Widget_Options (Gnattest_T)); Gnattest_T.Fixture := Local_Button_Options'Access; end Set_Up; procedure Tear_Down(Gnattest_T: in out Test_Button_Options) is Button: Tk_Button; begin GNATtest_Generated.GNATtest_Standard.Tk.Widget.Widget_Options_Test_Data .Widget_Options_Tests .Tear_Down (GNATtest_Generated.GNATtest_Standard.Tk.Widget .Widget_Options_Test_Data .Widget_Options_Tests .Test_Widget_Options (Gnattest_T)); if Value("DISPLAY", "")'Length = 0 then return; end if; Button := Get_Widget(".mybutton"); if Button /= Null_Widget then Destroy(Button); end if; end Tear_Down; end Tk.Button.Button_Options_Test_Data;
34.914894
79
0.710542
fb1a899fd5fb3c88bb5d29495117553acef89f6a
1,655
ads
Ada
tier-1/xcb/source/thin/xcb-xcb_glx_delete_queries_arb_request_t.ads
charlie5/cBound
741be08197a61ad9c72553e3302f3b669902216d
[ "0BSD" ]
2
2015-11-12T11:16:20.000Z
2021-08-24T22:32:04.000Z
tier-1/xcb/source/thin/xcb-xcb_glx_delete_queries_arb_request_t.ads
charlie5/cBound
741be08197a61ad9c72553e3302f3b669902216d
[ "0BSD" ]
1
2018-06-05T05:19:35.000Z
2021-11-20T01:13:23.000Z
tier-1/xcb/source/thin/xcb-xcb_glx_delete_queries_arb_request_t.ads
charlie5/cBound
741be08197a61ad9c72553e3302f3b669902216d
[ "0BSD" ]
null
null
null
-- This file is generated by SWIG. Please do not modify by hand. -- with Interfaces; with Interfaces.C; with Interfaces.C.Pointers; package xcb.xcb_glx_delete_queries_arb_request_t is -- Item -- type Item is record major_opcode : aliased Interfaces.Unsigned_8; minor_opcode : aliased Interfaces.Unsigned_8; length : aliased Interfaces.Unsigned_16; context_tag : aliased xcb.xcb_glx_context_tag_t; n : aliased Interfaces.Integer_32; end record; -- Item_Array -- type Item_Array is array (Interfaces.C .size_t range <>) of aliased xcb.xcb_glx_delete_queries_arb_request_t .Item; -- Pointer -- package C_Pointers is new Interfaces.C.Pointers (Index => Interfaces.C.size_t, Element => xcb.xcb_glx_delete_queries_arb_request_t.Item, Element_Array => xcb.xcb_glx_delete_queries_arb_request_t.Item_Array, Default_Terminator => (others => <>)); subtype Pointer is C_Pointers.Pointer; -- Pointer_Array -- type Pointer_Array is array (Interfaces.C .size_t range <>) of aliased xcb.xcb_glx_delete_queries_arb_request_t .Pointer; -- Pointer_Pointer -- package C_Pointer_Pointers is new Interfaces.C.Pointers (Index => Interfaces.C.size_t, Element => xcb.xcb_glx_delete_queries_arb_request_t.Pointer, Element_Array => xcb.xcb_glx_delete_queries_arb_request_t.Pointer_Array, Default_Terminator => null); subtype Pointer_Pointer is C_Pointer_Pointers.Pointer; end xcb.xcb_glx_delete_queries_arb_request_t;
29.035088
79
0.685196
1caf84471b939b7d0f97d907af68608e63655987
1,832
ads
Ada
src/skill-internal-parts.ads
skill-lang/adaCommon
b27bccb8fa1c8b299ab98a82741a648183e41d3c
[ "BSD-3-Clause" ]
null
null
null
src/skill-internal-parts.ads
skill-lang/adaCommon
b27bccb8fa1c8b299ab98a82741a648183e41d3c
[ "BSD-3-Clause" ]
null
null
null
src/skill-internal-parts.ads
skill-lang/adaCommon
b27bccb8fa1c8b299ab98a82741a648183e41d3c
[ "BSD-3-Clause" ]
null
null
null
-- ___ _ ___ _ _ -- -- / __| |/ (_) | | Common SKilL implementation -- -- \__ \ ' <| | | |__ file partitioning info -- -- |___/_|\_\_|_|____| by: Timm Felden -- -- -- pragma Ada_2012; with Ada.Containers.Vectors; with Skill.Types; with Skill.Containers.Vectors; -- documentation can be found in java common package Skill.Internal.Parts is type Block is record BPO : Skill.Types.Skill_ID_T; Static_Count : Skill.Types.Skill_ID_T; Dynamic_Count : Skill.Types.Skill_ID_T; end record; package Blocks_P is new Skill.Containers.Vectors (Natural, Block); subtype Blocks is Blocks_P.Vector; type Chunk_T is abstract tagged record First : Skill.Types.v64; Last : Skill.Types.v64; Count : Skill.Types.Skill_ID_T; end record; type Chunk is access Chunk_T'Class; procedure Free (This : access Chunk_T) is abstract; type Simple_Chunk is new Chunk_T with record BPO : Skill.Types.Skill_ID_T; end record; type Simple_Chunk_X is not null access all Simple_Chunk; function To_Simple (This : access Chunk_T'Class) return Simple_Chunk_X; type Bulk_Chunk is new Chunk_T with record -- The Number of Blocks, Starting From The First That Have To Be Updated Block_Count : Natural; end record; type Bulk_Chunk_X is not null access all Bulk_Chunk; function To_Bulk (This : access Chunk_T'Class) return Bulk_Chunk_X; package Chunks is new Ada.Containers.Vectors (Natural, Chunk); procedure Free (This : access Simple_Chunk); procedure Free (This : access Bulk_Chunk); end Skill.Internal.Parts;
34.566038
80
0.614629
23ca44aad7cd10800b1af922832707457038a0a9
6,164
ads
Ada
gcc-gcc-7_3_0-release/gcc/ada/s-linux-alpha.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/s-linux-alpha.ads
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
null
null
null
gcc-gcc-7_3_0-release/gcc/ada/s-linux-alpha.ads
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
2
2020-07-27T00:22:36.000Z
2021-04-01T09:41:02.000Z
------------------------------------------------------------------------------ -- -- -- GNU ADA RUN-TIME LIBRARY (GNARL) COMPONENTS -- -- -- -- S Y S T E M . L I N U X -- -- -- -- S p e c -- -- -- -- Copyright (C) 2009-2014, 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/>. -- -- -- -- -- ------------------------------------------------------------------------------ -- This is the alpha version of this package -- This package encapsulates cpu specific differences between implementations -- of GNU/Linux, in order to share s-osinte-linux.ads. -- PLEASE DO NOT add any with-clauses to this package or remove the pragma -- Preelaborate. This package is designed to be a bottom-level (leaf) package. with Interfaces.C; package System.Linux is pragma Preelaborate; ---------- -- Time -- ---------- subtype long is Interfaces.C.long; subtype suseconds_t is Interfaces.C.long; subtype time_t is Interfaces.C.long; subtype clockid_t is Interfaces.C.int; type timespec is record tv_sec : time_t; tv_nsec : long; end record; pragma Convention (C, timespec); type timeval is record tv_sec : time_t; tv_usec : suseconds_t; end record; pragma Convention (C, timeval); ----------- -- Errno -- ----------- EAGAIN : constant := 35; EINTR : constant := 4; EINVAL : constant := 22; ENOMEM : constant := 12; EPERM : constant := 1; ETIMEDOUT : constant := 60; ------------- -- Signals -- ------------- SIGHUP : constant := 1; -- hangup SIGINT : constant := 2; -- interrupt (rubout) SIGQUIT : constant := 3; -- quit (ASCD FS) SIGILL : constant := 4; -- illegal instruction (not reset) SIGTRAP : constant := 5; -- trace trap (not reset) SIGIOT : constant := 6; -- IOT instruction SIGABRT : constant := 6; -- used by abort, replace SIGIOT in the future SIGFPE : constant := 8; -- floating point exception SIGKILL : constant := 9; -- kill (cannot be caught or ignored) SIGBUS : constant := 10; -- bus error SIGSEGV : constant := 11; -- segmentation violation SIGPIPE : constant := 13; -- write on a pipe with no one to read it SIGALRM : constant := 14; -- alarm clock SIGTERM : constant := 15; -- software termination signal from kill SIGURG : constant := 16; -- urgent condition on IO channel SIGSTOP : constant := 17; -- stop (cannot be caught or ignored) SIGTSTP : constant := 18; -- user stop requested from tty SIGCONT : constant := 19; -- stopped process has been continued SIGCLD : constant := 20; -- alias for SIGCHLD SIGCHLD : constant := 20; -- child status change SIGTTIN : constant := 21; -- background tty read attempted SIGTTOU : constant := 22; -- background tty write attempted SIGIO : constant := 23; -- I/O now possible (4.2 BSD) SIGPOLL : constant := 23; -- pollable event occurred SIGXCPU : constant := 24; -- CPU time limit exceeded SIGXFSZ : constant := 25; -- filesize limit exceeded SIGVTALRM : constant := 26; -- virtual timer expired SIGPROF : constant := 27; -- profiling timer expired SIGWINCH : constant := 28; -- window size change SIGPWR : constant := 29; -- power-fail restart SIGUSR1 : constant := 30; -- user defined signal 1 SIGUSR2 : constant := 31; -- user defined signal 2 SIGLTHRRES : constant := 32; -- GNU/LinuxThreads restart signal SIGLTHRCAN : constant := 33; -- GNU/LinuxThreads cancel signal SIGLTHRDBG : constant := 34; -- GNU/LinuxThreads debugger signal SIGADAABORT : constant := SIGABRT; -- Change this if you want to use another signal for task abort. -- SIGTERM might be a good one. SIGUNUSED : constant := 0; SIGSTKFLT : constant := 0; SIGLOST : constant := 0; -- These don't exist for Linux/Alpha. The constants are present -- so that we can continue to use a-intnam-linux.ads. -- struct_sigaction offsets sa_handler_pos : constant := 0; sa_mask_pos : constant := Standard'Address_Size / 8; sa_flags_pos : constant := 128 + sa_mask_pos; SA_SIGINFO : constant := 16#40#; SA_ONSTACK : constant := 16#01#; end System.Linux;
45.323529
79
0.520117
c5e962cf3d3e2c95ad124db939d21ac7e1a15a55
296
ads
Ada
gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/specs/pack12.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/specs/pack12.ads
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
null
null
null
gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/specs/pack12.ads
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
2
2020-07-27T00:22:36.000Z
2021-04-01T09:41:02.000Z
-- { dg-do compile } -- { dg-options "-O2" } package Pack12 is type Rec1 is record B : Boolean; N : Natural; end record; type Rec2 is record B : Boolean; R : Rec1; end record; pragma Pack (Rec2); type Rec3 is tagged record R : Rec2; end record; end Pack12;
13.454545
28
0.591216
1cec16bb447dc0a2707206ca77fe45ebc31d2de4
2,829
adb
Ada
examples/OpenMV2/src/main.adb
shakram02/Ada_Drivers_Library
a407ca7ddbc2d9756647016c2f8fd8ef24a239ff
[ "BSD-3-Clause" ]
192
2016-06-01T18:32:04.000Z
2022-03-26T22:52:31.000Z
examples/OpenMV2/src/main.adb
shakram02/Ada_Drivers_Library
a407ca7ddbc2d9756647016c2f8fd8ef24a239ff
[ "BSD-3-Clause" ]
239
2016-05-26T20:02:01.000Z
2022-03-31T09:46:56.000Z
examples/OpenMV2/src/main.adb
shakram02/Ada_Drivers_Library
a407ca7ddbc2d9756647016c2f8fd8ef24a239ff
[ "BSD-3-Clause" ]
142
2016-06-05T08:12:20.000Z
2022-03-24T17:37:17.000Z
------------------------------------------------------------------------------ -- -- -- Copyright (C) 2015-2016, 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. -- -- -- ------------------------------------------------------------------------------ with OpenMV; with OpenMV.LCD_Shield; with OpenMV.Sensor; with Last_Chance_Handler; pragma Unreferenced (Last_Chance_Handler); procedure Main is begin OpenMV.Initialize_LEDs; OpenMV.Set_RGB_LED (OpenMV.Off); OpenMV.LCD_Shield.Initialize; OpenMV.Sensor.Initialize; loop -- Take a snapshot... OpenMV.Sensor.Snapshot (OpenMV.LCD_Shield.Bitmap); -- ...and display it. OpenMV.LCD_Shield.Display; end loop; end Main;
52.388889
78
0.538706
102ed909cc6d073771410434490e82782359a07e
33,102
ads
Ada
SVD2ada/svd/stm32_svd-ltdc.ads
JCGobbi/Nucleo-STM32H743ZI
bb0b5a66e9ac8b3dbe381f9909df5ed5d77dad1c
[ "BSD-3-Clause" ]
null
null
null
SVD2ada/svd/stm32_svd-ltdc.ads
JCGobbi/Nucleo-STM32H743ZI
bb0b5a66e9ac8b3dbe381f9909df5ed5d77dad1c
[ "BSD-3-Clause" ]
null
null
null
SVD2ada/svd/stm32_svd-ltdc.ads
JCGobbi/Nucleo-STM32H743ZI
bb0b5a66e9ac8b3dbe381f9909df5ed5d77dad1c
[ "BSD-3-Clause" ]
null
null
null
pragma Style_Checks (Off); -- This spec has been automatically generated from STM32H743x.svd pragma Restrictions (No_Elaboration_Code); with HAL; with System; package STM32_SVD.LTDC is pragma Preelaborate; --------------- -- Registers -- --------------- subtype SSCR_VSH_Field is HAL.UInt11; subtype SSCR_HSW_Field is HAL.UInt10; -- Synchronization Size Configuration Register type SSCR_Register is record -- Vertical Synchronization Height (in units of horizontal scan line) VSH : SSCR_VSH_Field := 16#0#; -- unspecified Reserved_11_15 : HAL.UInt5 := 16#0#; -- Horizontal Synchronization Width (in units of pixel clock period) HSW : SSCR_HSW_Field := 16#0#; -- unspecified Reserved_26_31 : HAL.UInt6 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for SSCR_Register use record VSH at 0 range 0 .. 10; Reserved_11_15 at 0 range 11 .. 15; HSW at 0 range 16 .. 25; Reserved_26_31 at 0 range 26 .. 31; end record; subtype BPCR_AVBP_Field is HAL.UInt11; subtype BPCR_AHBP_Field is HAL.UInt12; -- Back Porch Configuration Register type BPCR_Register is record -- Accumulated Vertical back porch (in units of horizontal scan line) AVBP : BPCR_AVBP_Field := 16#0#; -- unspecified Reserved_11_15 : HAL.UInt5 := 16#0#; -- Accumulated Horizontal back porch (in units of pixel clock period) AHBP : BPCR_AHBP_Field := 16#0#; -- unspecified Reserved_28_31 : HAL.UInt4 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for BPCR_Register use record AVBP at 0 range 0 .. 10; Reserved_11_15 at 0 range 11 .. 15; AHBP at 0 range 16 .. 27; Reserved_28_31 at 0 range 28 .. 31; end record; subtype AWCR_AAH_Field is HAL.UInt11; subtype AWCR_AAV_Field is HAL.UInt12; -- Active Width Configuration Register type AWCR_Register is record -- Accumulated Active Height (in units of horizontal scan line) AAH : AWCR_AAH_Field := 16#0#; -- unspecified Reserved_11_15 : HAL.UInt5 := 16#0#; -- AAV AAV : AWCR_AAV_Field := 16#0#; -- unspecified Reserved_28_31 : HAL.UInt4 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for AWCR_Register use record AAH at 0 range 0 .. 10; Reserved_11_15 at 0 range 11 .. 15; AAV at 0 range 16 .. 27; Reserved_28_31 at 0 range 28 .. 31; end record; subtype TWCR_TOTALH_Field is HAL.UInt11; subtype TWCR_TOTALW_Field is HAL.UInt12; -- Total Width Configuration Register type TWCR_Register is record -- Total Height (in units of horizontal scan line) TOTALH : TWCR_TOTALH_Field := 16#0#; -- unspecified Reserved_11_15 : HAL.UInt5 := 16#0#; -- Total Width (in units of pixel clock period) TOTALW : TWCR_TOTALW_Field := 16#0#; -- unspecified Reserved_28_31 : HAL.UInt4 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for TWCR_Register use record TOTALH at 0 range 0 .. 10; Reserved_11_15 at 0 range 11 .. 15; TOTALW at 0 range 16 .. 27; Reserved_28_31 at 0 range 28 .. 31; end record; subtype GCR_DBW_Field is HAL.UInt3; subtype GCR_DGW_Field is HAL.UInt3; subtype GCR_DRW_Field is HAL.UInt3; -- Global Control Register type GCR_Register is record -- LCD-TFT controller enable bit LTDCEN : Boolean := False; -- unspecified Reserved_1_3 : HAL.UInt3 := 16#0#; -- Read-only. Dither Blue Width DBW : GCR_DBW_Field := 16#2#; -- unspecified Reserved_7_7 : HAL.Bit := 16#0#; -- Read-only. Dither Green Width DGW : GCR_DGW_Field := 16#2#; -- unspecified Reserved_11_11 : HAL.Bit := 16#0#; -- Read-only. Dither Red Width DRW : GCR_DRW_Field := 16#2#; -- unspecified Reserved_15_15 : HAL.Bit := 16#0#; -- Dither Enable DEN : Boolean := False; -- unspecified Reserved_17_27 : HAL.UInt11 := 16#0#; -- Pixel Clock Polarity PCPOL : Boolean := False; -- Data Enable Polarity DEPOL : Boolean := False; -- Vertical Synchronization Polarity VSPOL : Boolean := False; -- Horizontal Synchronization Polarity HSPOL : Boolean := False; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for GCR_Register use record LTDCEN at 0 range 0 .. 0; Reserved_1_3 at 0 range 1 .. 3; DBW at 0 range 4 .. 6; Reserved_7_7 at 0 range 7 .. 7; DGW at 0 range 8 .. 10; Reserved_11_11 at 0 range 11 .. 11; DRW at 0 range 12 .. 14; Reserved_15_15 at 0 range 15 .. 15; DEN at 0 range 16 .. 16; Reserved_17_27 at 0 range 17 .. 27; PCPOL at 0 range 28 .. 28; DEPOL at 0 range 29 .. 29; VSPOL at 0 range 30 .. 30; HSPOL at 0 range 31 .. 31; end record; -- Shadow Reload Configuration Register type SRCR_Register is record -- Immediate Reload IMR : Boolean := False; -- Vertical Blanking Reload VBR : Boolean := False; -- unspecified Reserved_2_31 : HAL.UInt30 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for SRCR_Register use record IMR at 0 range 0 .. 0; VBR at 0 range 1 .. 1; Reserved_2_31 at 0 range 2 .. 31; end record; subtype BCCR_BCBLUE_Field is HAL.UInt8; subtype BCCR_BCGREEN_Field is HAL.UInt8; subtype BCCR_BCRED_Field is HAL.UInt8; -- Background Color Configuration Register type BCCR_Register is record -- Background Color Blue value BCBLUE : BCCR_BCBLUE_Field := 16#0#; -- Background Color Green value BCGREEN : BCCR_BCGREEN_Field := 16#0#; -- Background Color Red value BCRED : BCCR_BCRED_Field := 16#0#; -- unspecified Reserved_24_31 : HAL.UInt8 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for BCCR_Register use record BCBLUE at 0 range 0 .. 7; BCGREEN at 0 range 8 .. 15; BCRED at 0 range 16 .. 23; Reserved_24_31 at 0 range 24 .. 31; end record; -- Interrupt Enable Register type IER_Register is record -- Line Interrupt Enable LIE : Boolean := False; -- FIFO Underrun Interrupt Enable FUIE : Boolean := False; -- Transfer Error Interrupt Enable TERRIE : Boolean := False; -- Register Reload interrupt enable RRIE : Boolean := False; -- unspecified Reserved_4_31 : HAL.UInt28 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for IER_Register use record LIE at 0 range 0 .. 0; FUIE at 0 range 1 .. 1; TERRIE at 0 range 2 .. 2; RRIE at 0 range 3 .. 3; Reserved_4_31 at 0 range 4 .. 31; end record; -- Interrupt Status Register type ISR_Register is record -- Read-only. Line Interrupt flag LIF : Boolean; -- Read-only. FIFO Underrun Interrupt flag FUIF : Boolean; -- Read-only. Transfer Error interrupt flag TERRIF : Boolean; -- Read-only. Register Reload Interrupt Flag RRIF : Boolean; -- unspecified Reserved_4_31 : HAL.UInt28; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for ISR_Register use record LIF at 0 range 0 .. 0; FUIF at 0 range 1 .. 1; TERRIF at 0 range 2 .. 2; RRIF at 0 range 3 .. 3; Reserved_4_31 at 0 range 4 .. 31; end record; -- Interrupt Clear Register type ICR_Register is record -- Write-only. Clears the Line Interrupt Flag CLIF : Boolean := False; -- Write-only. Clears the FIFO Underrun Interrupt flag CFUIF : Boolean := False; -- Write-only. Clears the Transfer Error Interrupt Flag CTERRIF : Boolean := False; -- Write-only. Clears Register Reload Interrupt Flag CRRIF : Boolean := False; -- unspecified Reserved_4_31 : HAL.UInt28 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for ICR_Register use record CLIF at 0 range 0 .. 0; CFUIF at 0 range 1 .. 1; CTERRIF at 0 range 2 .. 2; CRRIF at 0 range 3 .. 3; Reserved_4_31 at 0 range 4 .. 31; end record; subtype LIPCR_LIPOS_Field is HAL.UInt11; -- Line Interrupt Position Configuration Register type LIPCR_Register is record -- Line Interrupt Position LIPOS : LIPCR_LIPOS_Field := 16#0#; -- unspecified Reserved_11_31 : HAL.UInt21 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for LIPCR_Register use record LIPOS at 0 range 0 .. 10; Reserved_11_31 at 0 range 11 .. 31; end record; subtype CPSR_CYPOS_Field is HAL.UInt16; subtype CPSR_CXPOS_Field is HAL.UInt16; -- Current Position Status Register type CPSR_Register is record -- Read-only. Current Y Position CYPOS : CPSR_CYPOS_Field; -- Read-only. Current X Position CXPOS : CPSR_CXPOS_Field; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for CPSR_Register use record CYPOS at 0 range 0 .. 15; CXPOS at 0 range 16 .. 31; end record; -- Current Display Status Register type CDSR_Register is record -- Read-only. Vertical Data Enable display Status VDES : Boolean; -- Read-only. Horizontal Data Enable display Status HDES : Boolean; -- Read-only. Vertical Synchronization display Status VSYNCS : Boolean; -- Read-only. Horizontal Synchronization display Status HSYNCS : Boolean; -- unspecified Reserved_4_31 : HAL.UInt28; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for CDSR_Register use record VDES at 0 range 0 .. 0; HDES at 0 range 1 .. 1; VSYNCS at 0 range 2 .. 2; HSYNCS at 0 range 3 .. 3; Reserved_4_31 at 0 range 4 .. 31; end record; -- Layerx Control Register type L1CR_Register is record -- Layer Enable LEN : Boolean := False; -- Color Keying Enable COLKEN : Boolean := False; -- unspecified Reserved_2_3 : HAL.UInt2 := 16#0#; -- Color Look-Up Table Enable CLUTEN : Boolean := False; -- unspecified Reserved_5_31 : HAL.UInt27 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for L1CR_Register use record LEN at 0 range 0 .. 0; COLKEN at 0 range 1 .. 1; Reserved_2_3 at 0 range 2 .. 3; CLUTEN at 0 range 4 .. 4; Reserved_5_31 at 0 range 5 .. 31; end record; subtype L1WHPCR_WHSTPOS_Field is HAL.UInt12; subtype L1WHPCR_WHSPPOS_Field is HAL.UInt12; -- Layerx Window Horizontal Position Configuration Register type L1WHPCR_Register is record -- Window Horizontal Start Position WHSTPOS : L1WHPCR_WHSTPOS_Field := 16#0#; -- unspecified Reserved_12_15 : HAL.UInt4 := 16#0#; -- Window Horizontal Stop Position WHSPPOS : L1WHPCR_WHSPPOS_Field := 16#0#; -- unspecified Reserved_28_31 : HAL.UInt4 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for L1WHPCR_Register use record WHSTPOS at 0 range 0 .. 11; Reserved_12_15 at 0 range 12 .. 15; WHSPPOS at 0 range 16 .. 27; Reserved_28_31 at 0 range 28 .. 31; end record; subtype L1WVPCR_WVSTPOS_Field is HAL.UInt11; subtype L1WVPCR_WVSPPOS_Field is HAL.UInt11; -- Layerx Window Vertical Position Configuration Register type L1WVPCR_Register is record -- Window Vertical Start Position WVSTPOS : L1WVPCR_WVSTPOS_Field := 16#0#; -- unspecified Reserved_11_15 : HAL.UInt5 := 16#0#; -- Window Vertical Stop Position WVSPPOS : L1WVPCR_WVSPPOS_Field := 16#0#; -- unspecified Reserved_27_31 : HAL.UInt5 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for L1WVPCR_Register use record WVSTPOS at 0 range 0 .. 10; Reserved_11_15 at 0 range 11 .. 15; WVSPPOS at 0 range 16 .. 26; Reserved_27_31 at 0 range 27 .. 31; end record; subtype L1CKCR_CKBLUE_Field is HAL.UInt8; subtype L1CKCR_CKGREEN_Field is HAL.UInt8; subtype L1CKCR_CKRED_Field is HAL.UInt8; -- Layerx Color Keying Configuration Register type L1CKCR_Register is record -- Color Key Blue value CKBLUE : L1CKCR_CKBLUE_Field := 16#0#; -- Color Key Green value CKGREEN : L1CKCR_CKGREEN_Field := 16#0#; -- Color Key Red value CKRED : L1CKCR_CKRED_Field := 16#0#; -- unspecified Reserved_24_31 : HAL.UInt8 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for L1CKCR_Register use record CKBLUE at 0 range 0 .. 7; CKGREEN at 0 range 8 .. 15; CKRED at 0 range 16 .. 23; Reserved_24_31 at 0 range 24 .. 31; end record; subtype L1PFCR_PF_Field is HAL.UInt3; -- Layerx Pixel Format Configuration Register type L1PFCR_Register is record -- Pixel Format PF : L1PFCR_PF_Field := 16#0#; -- unspecified Reserved_3_31 : HAL.UInt29 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for L1PFCR_Register use record PF at 0 range 0 .. 2; Reserved_3_31 at 0 range 3 .. 31; end record; subtype L1CACR_CONSTA_Field is HAL.UInt8; -- Layerx Constant Alpha Configuration Register type L1CACR_Register is record -- Constant Alpha CONSTA : L1CACR_CONSTA_Field := 16#0#; -- unspecified Reserved_8_31 : HAL.UInt24 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for L1CACR_Register use record CONSTA at 0 range 0 .. 7; Reserved_8_31 at 0 range 8 .. 31; end record; subtype L1DCCR_DCBLUE_Field is HAL.UInt8; subtype L1DCCR_DCGREEN_Field is HAL.UInt8; subtype L1DCCR_DCRED_Field is HAL.UInt8; subtype L1DCCR_DCALPHA_Field is HAL.UInt8; -- Layerx Default Color Configuration Register type L1DCCR_Register is record -- Default Color Blue DCBLUE : L1DCCR_DCBLUE_Field := 16#0#; -- Default Color Green DCGREEN : L1DCCR_DCGREEN_Field := 16#0#; -- Default Color Red DCRED : L1DCCR_DCRED_Field := 16#0#; -- Default Color Alpha DCALPHA : L1DCCR_DCALPHA_Field := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for L1DCCR_Register use record DCBLUE at 0 range 0 .. 7; DCGREEN at 0 range 8 .. 15; DCRED at 0 range 16 .. 23; DCALPHA at 0 range 24 .. 31; end record; subtype L1BFCR_BF2_Field is HAL.UInt3; subtype L1BFCR_BF1_Field is HAL.UInt3; -- Layerx Blending Factors Configuration Register type L1BFCR_Register is record -- Blending Factor 2 BF2 : L1BFCR_BF2_Field := 16#7#; -- unspecified Reserved_3_7 : HAL.UInt5 := 16#0#; -- Blending Factor 1 BF1 : L1BFCR_BF1_Field := 16#6#; -- unspecified Reserved_11_31 : HAL.UInt21 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for L1BFCR_Register use record BF2 at 0 range 0 .. 2; Reserved_3_7 at 0 range 3 .. 7; BF1 at 0 range 8 .. 10; Reserved_11_31 at 0 range 11 .. 31; end record; subtype L1CFBLR_CFBLL_Field is HAL.UInt13; subtype L1CFBLR_CFBP_Field is HAL.UInt13; -- Layerx Color Frame Buffer Length Register type L1CFBLR_Register is record -- Color Frame Buffer Line Length CFBLL : L1CFBLR_CFBLL_Field := 16#0#; -- unspecified Reserved_13_15 : HAL.UInt3 := 16#0#; -- Color Frame Buffer Pitch in bytes CFBP : L1CFBLR_CFBP_Field := 16#0#; -- unspecified Reserved_29_31 : HAL.UInt3 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for L1CFBLR_Register use record CFBLL at 0 range 0 .. 12; Reserved_13_15 at 0 range 13 .. 15; CFBP at 0 range 16 .. 28; Reserved_29_31 at 0 range 29 .. 31; end record; subtype L1CFBLNR_CFBLNBR_Field is HAL.UInt11; -- Layerx ColorFrame Buffer Line Number Register type L1CFBLNR_Register is record -- Frame Buffer Line Number CFBLNBR : L1CFBLNR_CFBLNBR_Field := 16#0#; -- unspecified Reserved_11_31 : HAL.UInt21 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for L1CFBLNR_Register use record CFBLNBR at 0 range 0 .. 10; Reserved_11_31 at 0 range 11 .. 31; end record; subtype L1CLUTWR_BLUE_Field is HAL.UInt8; subtype L1CLUTWR_GREEN_Field is HAL.UInt8; subtype L1CLUTWR_RED_Field is HAL.UInt8; subtype L1CLUTWR_CLUTADD_Field is HAL.UInt8; -- Layerx CLUT Write Register type L1CLUTWR_Register is record -- Write-only. Blue value BLUE : L1CLUTWR_BLUE_Field := 16#0#; -- Write-only. Green value GREEN : L1CLUTWR_GREEN_Field := 16#0#; -- Write-only. Red value RED : L1CLUTWR_RED_Field := 16#0#; -- Write-only. CLUT Address CLUTADD : L1CLUTWR_CLUTADD_Field := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for L1CLUTWR_Register use record BLUE at 0 range 0 .. 7; GREEN at 0 range 8 .. 15; RED at 0 range 16 .. 23; CLUTADD at 0 range 24 .. 31; end record; -- Layerx Control Register type L2CR_Register is record -- Layer Enable LEN : Boolean := False; -- Color Keying Enable COLKEN : Boolean := False; -- unspecified Reserved_2_3 : HAL.UInt2 := 16#0#; -- Color Look-Up Table Enable CLUTEN : Boolean := False; -- unspecified Reserved_5_31 : HAL.UInt27 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for L2CR_Register use record LEN at 0 range 0 .. 0; COLKEN at 0 range 1 .. 1; Reserved_2_3 at 0 range 2 .. 3; CLUTEN at 0 range 4 .. 4; Reserved_5_31 at 0 range 5 .. 31; end record; subtype L2WHPCR_WHSTPOS_Field is HAL.UInt12; subtype L2WHPCR_WHSPPOS_Field is HAL.UInt12; -- Layerx Window Horizontal Position Configuration Register type L2WHPCR_Register is record -- Window Horizontal Start Position WHSTPOS : L2WHPCR_WHSTPOS_Field := 16#0#; -- unspecified Reserved_12_15 : HAL.UInt4 := 16#0#; -- Window Horizontal Stop Position WHSPPOS : L2WHPCR_WHSPPOS_Field := 16#0#; -- unspecified Reserved_28_31 : HAL.UInt4 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for L2WHPCR_Register use record WHSTPOS at 0 range 0 .. 11; Reserved_12_15 at 0 range 12 .. 15; WHSPPOS at 0 range 16 .. 27; Reserved_28_31 at 0 range 28 .. 31; end record; subtype L2WVPCR_WVSTPOS_Field is HAL.UInt11; subtype L2WVPCR_WVSPPOS_Field is HAL.UInt11; -- Layerx Window Vertical Position Configuration Register type L2WVPCR_Register is record -- Window Vertical Start Position WVSTPOS : L2WVPCR_WVSTPOS_Field := 16#0#; -- unspecified Reserved_11_15 : HAL.UInt5 := 16#0#; -- Window Vertical Stop Position WVSPPOS : L2WVPCR_WVSPPOS_Field := 16#0#; -- unspecified Reserved_27_31 : HAL.UInt5 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for L2WVPCR_Register use record WVSTPOS at 0 range 0 .. 10; Reserved_11_15 at 0 range 11 .. 15; WVSPPOS at 0 range 16 .. 26; Reserved_27_31 at 0 range 27 .. 31; end record; subtype L2CKCR_CKBLUE_Field is HAL.UInt8; subtype L2CKCR_CKGREEN_Field is HAL.UInt8; subtype L2CKCR_CKRED_Field is HAL.UInt8; -- Layerx Color Keying Configuration Register type L2CKCR_Register is record -- Color Key Blue value CKBLUE : L2CKCR_CKBLUE_Field := 16#0#; -- Color Key Green value CKGREEN : L2CKCR_CKGREEN_Field := 16#0#; -- Color Key Red value CKRED : L2CKCR_CKRED_Field := 16#0#; -- unspecified Reserved_24_31 : HAL.UInt8 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for L2CKCR_Register use record CKBLUE at 0 range 0 .. 7; CKGREEN at 0 range 8 .. 15; CKRED at 0 range 16 .. 23; Reserved_24_31 at 0 range 24 .. 31; end record; subtype L2PFCR_PF_Field is HAL.UInt3; -- Layerx Pixel Format Configuration Register type L2PFCR_Register is record -- Pixel Format PF : L2PFCR_PF_Field := 16#0#; -- unspecified Reserved_3_31 : HAL.UInt29 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for L2PFCR_Register use record PF at 0 range 0 .. 2; Reserved_3_31 at 0 range 3 .. 31; end record; subtype L2CACR_CONSTA_Field is HAL.UInt8; -- Layerx Constant Alpha Configuration Register type L2CACR_Register is record -- Constant Alpha CONSTA : L2CACR_CONSTA_Field := 16#0#; -- unspecified Reserved_8_31 : HAL.UInt24 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for L2CACR_Register use record CONSTA at 0 range 0 .. 7; Reserved_8_31 at 0 range 8 .. 31; end record; subtype L2DCCR_DCBLUE_Field is HAL.UInt8; subtype L2DCCR_DCGREEN_Field is HAL.UInt8; subtype L2DCCR_DCRED_Field is HAL.UInt8; subtype L2DCCR_DCALPHA_Field is HAL.UInt8; -- Layerx Default Color Configuration Register type L2DCCR_Register is record -- Default Color Blue DCBLUE : L2DCCR_DCBLUE_Field := 16#0#; -- Default Color Green DCGREEN : L2DCCR_DCGREEN_Field := 16#0#; -- Default Color Red DCRED : L2DCCR_DCRED_Field := 16#0#; -- Default Color Alpha DCALPHA : L2DCCR_DCALPHA_Field := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for L2DCCR_Register use record DCBLUE at 0 range 0 .. 7; DCGREEN at 0 range 8 .. 15; DCRED at 0 range 16 .. 23; DCALPHA at 0 range 24 .. 31; end record; subtype L2BFCR_BF2_Field is HAL.UInt3; subtype L2BFCR_BF1_Field is HAL.UInt3; -- Layerx Blending Factors Configuration Register type L2BFCR_Register is record -- Blending Factor 2 BF2 : L2BFCR_BF2_Field := 16#7#; -- unspecified Reserved_3_7 : HAL.UInt5 := 16#0#; -- Blending Factor 1 BF1 : L2BFCR_BF1_Field := 16#6#; -- unspecified Reserved_11_31 : HAL.UInt21 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for L2BFCR_Register use record BF2 at 0 range 0 .. 2; Reserved_3_7 at 0 range 3 .. 7; BF1 at 0 range 8 .. 10; Reserved_11_31 at 0 range 11 .. 31; end record; subtype L2CFBLR_CFBLL_Field is HAL.UInt13; subtype L2CFBLR_CFBP_Field is HAL.UInt13; -- Layerx Color Frame Buffer Length Register type L2CFBLR_Register is record -- Color Frame Buffer Line Length CFBLL : L2CFBLR_CFBLL_Field := 16#0#; -- unspecified Reserved_13_15 : HAL.UInt3 := 16#0#; -- Color Frame Buffer Pitch in bytes CFBP : L2CFBLR_CFBP_Field := 16#0#; -- unspecified Reserved_29_31 : HAL.UInt3 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for L2CFBLR_Register use record CFBLL at 0 range 0 .. 12; Reserved_13_15 at 0 range 13 .. 15; CFBP at 0 range 16 .. 28; Reserved_29_31 at 0 range 29 .. 31; end record; subtype L2CFBLNR_CFBLNBR_Field is HAL.UInt11; -- Layerx ColorFrame Buffer Line Number Register type L2CFBLNR_Register is record -- Frame Buffer Line Number CFBLNBR : L2CFBLNR_CFBLNBR_Field := 16#0#; -- unspecified Reserved_11_31 : HAL.UInt21 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for L2CFBLNR_Register use record CFBLNBR at 0 range 0 .. 10; Reserved_11_31 at 0 range 11 .. 31; end record; subtype L2CLUTWR_BLUE_Field is HAL.UInt8; subtype L2CLUTWR_GREEN_Field is HAL.UInt8; subtype L2CLUTWR_RED_Field is HAL.UInt8; subtype L2CLUTWR_CLUTADD_Field is HAL.UInt8; -- Layerx CLUT Write Register type L2CLUTWR_Register is record -- Write-only. Blue value BLUE : L2CLUTWR_BLUE_Field := 16#0#; -- Write-only. Green value GREEN : L2CLUTWR_GREEN_Field := 16#0#; -- Write-only. Red value RED : L2CLUTWR_RED_Field := 16#0#; -- Write-only. CLUT Address CLUTADD : L2CLUTWR_CLUTADD_Field := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for L2CLUTWR_Register use record BLUE at 0 range 0 .. 7; GREEN at 0 range 8 .. 15; RED at 0 range 16 .. 23; CLUTADD at 0 range 24 .. 31; end record; ----------------- -- Peripherals -- ----------------- -- LCD-TFT Controller type LTDC_Peripheral is record -- Synchronization Size Configuration Register SSCR : aliased SSCR_Register; -- Back Porch Configuration Register BPCR : aliased BPCR_Register; -- Active Width Configuration Register AWCR : aliased AWCR_Register; -- Total Width Configuration Register TWCR : aliased TWCR_Register; -- Global Control Register GCR : aliased GCR_Register; -- Shadow Reload Configuration Register SRCR : aliased SRCR_Register; -- Background Color Configuration Register BCCR : aliased BCCR_Register; -- Interrupt Enable Register IER : aliased IER_Register; -- Interrupt Status Register ISR : aliased ISR_Register; -- Interrupt Clear Register ICR : aliased ICR_Register; -- Line Interrupt Position Configuration Register LIPCR : aliased LIPCR_Register; -- Current Position Status Register CPSR : aliased CPSR_Register; -- Current Display Status Register CDSR : aliased CDSR_Register; -- Layerx Control Register L1CR : aliased L1CR_Register; -- Layerx Window Horizontal Position Configuration Register L1WHPCR : aliased L1WHPCR_Register; -- Layerx Window Vertical Position Configuration Register L1WVPCR : aliased L1WVPCR_Register; -- Layerx Color Keying Configuration Register L1CKCR : aliased L1CKCR_Register; -- Layerx Pixel Format Configuration Register L1PFCR : aliased L1PFCR_Register; -- Layerx Constant Alpha Configuration Register L1CACR : aliased L1CACR_Register; -- Layerx Default Color Configuration Register L1DCCR : aliased L1DCCR_Register; -- Layerx Blending Factors Configuration Register L1BFCR : aliased L1BFCR_Register; -- Layerx Color Frame Buffer Address Register L1CFBAR : aliased HAL.UInt32; -- Layerx Color Frame Buffer Length Register L1CFBLR : aliased L1CFBLR_Register; -- Layerx ColorFrame Buffer Line Number Register L1CFBLNR : aliased L1CFBLNR_Register; -- Layerx CLUT Write Register L1CLUTWR : aliased L1CLUTWR_Register; -- Layerx Control Register L2CR : aliased L2CR_Register; -- Layerx Window Horizontal Position Configuration Register L2WHPCR : aliased L2WHPCR_Register; -- Layerx Window Vertical Position Configuration Register L2WVPCR : aliased L2WVPCR_Register; -- Layerx Color Keying Configuration Register L2CKCR : aliased L2CKCR_Register; -- Layerx Pixel Format Configuration Register L2PFCR : aliased L2PFCR_Register; -- Layerx Constant Alpha Configuration Register L2CACR : aliased L2CACR_Register; -- Layerx Default Color Configuration Register L2DCCR : aliased L2DCCR_Register; -- Layerx Blending Factors Configuration Register L2BFCR : aliased L2BFCR_Register; -- Layerx Color Frame Buffer Address Register L2CFBAR : aliased HAL.UInt32; -- Layerx Color Frame Buffer Length Register L2CFBLR : aliased L2CFBLR_Register; -- Layerx ColorFrame Buffer Line Number Register L2CFBLNR : aliased L2CFBLNR_Register; -- Layerx CLUT Write Register L2CLUTWR : aliased L2CLUTWR_Register; end record with Volatile; for LTDC_Peripheral use record SSCR at 16#8# range 0 .. 31; BPCR at 16#C# range 0 .. 31; AWCR at 16#10# range 0 .. 31; TWCR at 16#14# range 0 .. 31; GCR at 16#18# range 0 .. 31; SRCR at 16#24# range 0 .. 31; BCCR at 16#2C# range 0 .. 31; IER at 16#34# range 0 .. 31; ISR at 16#38# range 0 .. 31; ICR at 16#3C# range 0 .. 31; LIPCR at 16#40# range 0 .. 31; CPSR at 16#44# range 0 .. 31; CDSR at 16#48# range 0 .. 31; L1CR at 16#84# range 0 .. 31; L1WHPCR at 16#88# range 0 .. 31; L1WVPCR at 16#8C# range 0 .. 31; L1CKCR at 16#90# range 0 .. 31; L1PFCR at 16#94# range 0 .. 31; L1CACR at 16#98# range 0 .. 31; L1DCCR at 16#9C# range 0 .. 31; L1BFCR at 16#A0# range 0 .. 31; L1CFBAR at 16#AC# range 0 .. 31; L1CFBLR at 16#B0# range 0 .. 31; L1CFBLNR at 16#B4# range 0 .. 31; L1CLUTWR at 16#C4# range 0 .. 31; L2CR at 16#104# range 0 .. 31; L2WHPCR at 16#108# range 0 .. 31; L2WVPCR at 16#10C# range 0 .. 31; L2CKCR at 16#110# range 0 .. 31; L2PFCR at 16#114# range 0 .. 31; L2CACR at 16#118# range 0 .. 31; L2DCCR at 16#11C# range 0 .. 31; L2BFCR at 16#120# range 0 .. 31; L2CFBAR at 16#12C# range 0 .. 31; L2CFBLR at 16#130# range 0 .. 31; L2CFBLNR at 16#134# range 0 .. 31; L2CLUTWR at 16#144# range 0 .. 31; end record; -- LCD-TFT Controller LTDC_Periph : aliased LTDC_Peripheral with Import, Address => LTDC_Base; end STM32_SVD.LTDC;
34.267081
76
0.612591
10291937c2c211cdc9b1c95485598bafda56e15f
7,293
ads
Ada
arch/ARM/NXP/svd/lpc55s6x/nxp_svd-flexcomm.ads
morbos/Ada_Drivers_Library
a4ab26799be60997c38735f4056160c4af597ef7
[ "BSD-3-Clause" ]
2
2018-05-16T03:56:39.000Z
2019-07-31T13:53:56.000Z
arch/ARM/NXP/svd/lpc55s6x/nxp_svd-flexcomm.ads
morbos/Ada_Drivers_Library
a4ab26799be60997c38735f4056160c4af597ef7
[ "BSD-3-Clause" ]
null
null
null
arch/ARM/NXP/svd/lpc55s6x/nxp_svd-flexcomm.ads
morbos/Ada_Drivers_Library
a4ab26799be60997c38735f4056160c4af597ef7
[ "BSD-3-Clause" ]
null
null
null
-- Copyright 2016-2019 NXP -- All rights reserved.SPDX-License-Identifier: BSD-3-Clause -- This spec has been automatically generated from LPC55S6x.svd pragma Restrictions (No_Elaboration_Code); pragma Ada_2012; pragma Style_Checks (Off); with HAL; with System; package NXP_SVD.FLEXCOMM is pragma Preelaborate; --------------- -- Registers -- --------------- -- Peripheral Select. This field is writable by software. type PSELID_PERSEL_Field is ( -- No peripheral selected. No_Periph_Selected, -- USART function selected. Usart, -- SPI function selected. Spi, -- I2C function selected. I2C, -- I2S transmit function selected. I2S_Transmit, -- I2S receive function selected. I2S_Receive) with Size => 3; for PSELID_PERSEL_Field use (No_Periph_Selected => 0, Usart => 1, Spi => 2, I2C => 3, I2S_Transmit => 4, I2S_Receive => 5); -- Lock the peripheral select. This field is writable by software. type PSELID_LOCK_Field is ( -- Peripheral select can be changed by software. Unlocked, -- Peripheral select is locked and cannot be changed until this Flexcomm -- or the entire device is reset. Locked) with Size => 1; for PSELID_LOCK_Field use (Unlocked => 0, Locked => 1); -- USART present indicator. This field is Read-only. type PSELID_USARTPRESENT_Field is ( -- This Flexcomm does not include the USART function. Not_Present, -- This Flexcomm includes the USART function. Present) with Size => 1; for PSELID_USARTPRESENT_Field use (Not_Present => 0, Present => 1); -- SPI present indicator. This field is Read-only. type PSELID_SPIPRESENT_Field is ( -- This Flexcomm does not include the SPI function. Not_Present, -- This Flexcomm includes the SPI function. Present) with Size => 1; for PSELID_SPIPRESENT_Field use (Not_Present => 0, Present => 1); -- I2C present indicator. This field is Read-only. type PSELID_I2CPRESENT_Field is ( -- This Flexcomm does not include the I2C function. Not_Present, -- This Flexcomm includes the I2C function. Present) with Size => 1; for PSELID_I2CPRESENT_Field use (Not_Present => 0, Present => 1); -- I 2S present indicator. This field is Read-only. type PSELID_I2SPRESENT_Field is ( -- This Flexcomm does not include the I2S function. Not_Present, -- This Flexcomm includes the I2S function. Present) with Size => 1; for PSELID_I2SPRESENT_Field use (Not_Present => 0, Present => 1); subtype PSELID_ID_Field is HAL.UInt20; -- Peripheral Select and Flexcomm ID register. type PSELID_Register is record -- Peripheral Select. This field is writable by software. PERSEL : PSELID_PERSEL_Field := NXP_SVD.FLEXCOMM.No_Periph_Selected; -- Lock the peripheral select. This field is writable by software. LOCK : PSELID_LOCK_Field := NXP_SVD.FLEXCOMM.Unlocked; -- Read-only. USART present indicator. This field is Read-only. USARTPRESENT : PSELID_USARTPRESENT_Field := NXP_SVD.FLEXCOMM.Not_Present; -- Read-only. SPI present indicator. This field is Read-only. SPIPRESENT : PSELID_SPIPRESENT_Field := NXP_SVD.FLEXCOMM.Not_Present; -- Read-only. I2C present indicator. This field is Read-only. I2CPRESENT : PSELID_I2CPRESENT_Field := NXP_SVD.FLEXCOMM.Not_Present; -- Read-only. I 2S present indicator. This field is Read-only. I2SPRESENT : PSELID_I2SPRESENT_Field := NXP_SVD.FLEXCOMM.Not_Present; -- unspecified Reserved_8_11 : HAL.UInt4 := 16#0#; -- Read-only. Flexcomm ID. ID : PSELID_ID_Field := 16#101#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for PSELID_Register use record PERSEL at 0 range 0 .. 2; LOCK at 0 range 3 .. 3; USARTPRESENT at 0 range 4 .. 4; SPIPRESENT at 0 range 5 .. 5; I2CPRESENT at 0 range 6 .. 6; I2SPRESENT at 0 range 7 .. 7; Reserved_8_11 at 0 range 8 .. 11; ID at 0 range 12 .. 31; end record; subtype PID_APERTURE_Field is HAL.UInt8; subtype PID_MINOR_REV_Field is HAL.UInt4; subtype PID_MAJOR_REV_Field is HAL.UInt4; subtype PID_ID_Field is HAL.UInt16; -- Peripheral identification register. type PID_Register is record -- Read-only. size aperture for the register port on the bus (APB or -- AHB). APERTURE : PID_APERTURE_Field; -- Read-only. Minor revision of module implementation. MINOR_REV : PID_MINOR_REV_Field; -- Read-only. Major revision of module implementation. MAJOR_REV : PID_MAJOR_REV_Field; -- Read-only. Module identifier for the selected function. ID : PID_ID_Field; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for PID_Register use record APERTURE at 0 range 0 .. 7; MINOR_REV at 0 range 8 .. 11; MAJOR_REV at 0 range 12 .. 15; ID at 0 range 16 .. 31; end record; ----------------- -- Peripherals -- ----------------- -- Flexcomm serial communication type FLEXCOMM_Peripheral is record -- Peripheral Select and Flexcomm ID register. PSELID : aliased PSELID_Register; -- Peripheral identification register. PID : aliased PID_Register; end record with Volatile; for FLEXCOMM_Peripheral use record PSELID at 16#FF8# range 0 .. 31; PID at 16#FFC# range 0 .. 31; end record; -- Flexcomm serial communication FLEXCOMM0_Periph : aliased FLEXCOMM_Peripheral with Import, Address => System'To_Address (16#40086000#); -- Flexcomm serial communication FLEXCOMM1_Periph : aliased FLEXCOMM_Peripheral with Import, Address => System'To_Address (16#40087000#); -- Flexcomm serial communication FLEXCOMM2_Periph : aliased FLEXCOMM_Peripheral with Import, Address => System'To_Address (16#40088000#); -- Flexcomm serial communication FLEXCOMM3_Periph : aliased FLEXCOMM_Peripheral with Import, Address => System'To_Address (16#40089000#); -- Flexcomm serial communication FLEXCOMM4_Periph : aliased FLEXCOMM_Peripheral with Import, Address => System'To_Address (16#4008A000#); -- Flexcomm serial communication FLEXCOMM5_Periph : aliased FLEXCOMM_Peripheral with Import, Address => System'To_Address (16#40096000#); -- Flexcomm serial communication FLEXCOMM6_Periph : aliased FLEXCOMM_Peripheral with Import, Address => System'To_Address (16#40097000#); -- Flexcomm serial communication FLEXCOMM7_Periph : aliased FLEXCOMM_Peripheral with Import, Address => System'To_Address (16#40098000#); -- Flexcomm serial communication FLEXCOMM8_Periph : aliased FLEXCOMM_Peripheral with Import, Address => System'To_Address (16#4009F000#); end NXP_SVD.FLEXCOMM;
32.413333
79
0.652406
dfe5020b88ba0df643a29143c36feb79a62789f7
11,132
adb
Ada
ADL/drivers/stm32f334/stm32-hrpwm.adb
JCGobbi/Nucleo-STM32F334R8
2a0b1b4b2664c92773703ac5e95dcb71979d051c
[ "BSD-3-Clause" ]
null
null
null
ADL/drivers/stm32f334/stm32-hrpwm.adb
JCGobbi/Nucleo-STM32F334R8
2a0b1b4b2664c92773703ac5e95dcb71979d051c
[ "BSD-3-Clause" ]
null
null
null
ADL/drivers/stm32f334/stm32-hrpwm.adb
JCGobbi/Nucleo-STM32F334R8
2a0b1b4b2664c92773703ac5e95dcb71979d051c
[ "BSD-3-Clause" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- Copyright (C) 2015-2017, 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. -- -- -- ------------------------------------------------------------------------------ with STM32.Device; use STM32.Device; package body STM32.HRPWM is procedure Configure_PWM_GPIO (Output : GPIO_Point; PWM_AF : GPIO_Alternate_Function; AF_Speed : Pin_Output_Speeds); --------------------------- -- Configure_PWM_HRTimer -- --------------------------- procedure Configure_PWM_HRTimer (Generator : not null access HRTimer_Channel; Frequency : Hertz) is Computed_Prescaler : HRTimer_Prescaler; Computed_Period : UInt32; begin Enable_Clock (Generator.all); Compute_Prescaler_And_Period (Generator.all, Requested_Frequency => Frequency, Prescaler => Computed_Prescaler, Period => Computed_Period); Configure (Generator.all, Prescaler => Computed_Prescaler, Period => UInt16 (Computed_Period)); Set_Register_Preload (Generator.all, True); end Configure_PWM_HRTimer; -------------------------- -- Attach_HRPWM_Channel -- -------------------------- procedure Attach_HRPWM_Channel (This : in out HRPWM_Modulator; Generator : not null access HRTimer_Channel; Compare : HRTimer_Compare_Number; Point : GPIO_Point; PWM_AF : GPIO_Alternate_Function; Polarity : Channel_Output_Polarity := High; Idle_State : Boolean; AF_Speed : Pin_Output_Speeds := Speed_100MHz) is begin This.Generator := Generator; This.Compare := Compare; Enable_Clock (Point); Configure_PWM_GPIO (Point, PWM_AF, AF_Speed); Configure_Channel_Output (This.Generator.all, Mode => Continuous, State => Disable, Compare => This.Compare, Pulse => 0, Output => Output_1, Polarity => Polarity, Idle_State => Idle_State); Set_Compare_Value (This.Generator.all, This.Compare, UInt16 (0)); Disable (This.Generator.all); end Attach_HRPWM_Channel; -------------------------- -- Attach_HRPWM_Channel -- -------------------------- procedure Attach_HRPWM_Channel (This : in out HRPWM_Modulator; Generator : not null access HRTimer_Channel; Compare : HRTimer_Compare_Number; Point : GPIO_Point; Complementary_Point : GPIO_Point; PWM_AF : GPIO_Alternate_Function; Polarity : Channel_Output_Polarity; Idle_State : Boolean; Complementary_Polarity : Channel_Output_Polarity; Complementary_Idle_State : Boolean; AF_Speed : Pin_Output_Speeds := Speed_100MHz) is begin This.Generator := Generator; This.Compare := Compare; Enable_Clock (Point); Enable_Clock (Complementary_Point); Configure_PWM_GPIO (Point, PWM_AF, AF_Speed); Configure_PWM_GPIO (Complementary_Point, PWM_AF, AF_Speed); Configure_Channel_Output (This.Generator.all, Mode => Continuous, State => Disable, Compare => This.Compare, Pulse => 0, Polarity => Polarity, Idle_State => Idle_State, Complementary_Polarity => Complementary_Polarity, Complementary_Idle_State => Complementary_Idle_State); Set_Compare_Value (This.Generator.all, This.Compare, UInt16 (0)); Disable (This.Generator.all); end Attach_HRPWM_Channel; ------------------- -- Enable_Output -- ------------------- procedure Enable_Output (This : in out HRPWM_Modulator) is begin Set_Channel_Output (This.Generator.all, Output_1, True); end Enable_Output; --------------------------------- -- Enable_Complementary_Output -- --------------------------------- procedure Enable_Complementary_Output (This : in out HRPWM_Modulator) is begin Set_Channel_Output (This.Generator.all, Output_2, True); end Enable_Complementary_Output; -------------------- -- Output_Enabled -- -------------------- function Output_Enabled (This : HRPWM_Modulator) return Boolean is begin return Channel_Output_Enabled (This.Generator.all, Output_1); end Output_Enabled; ---------------------------------- -- Complementary_Output_Enabled -- ---------------------------------- function Complementary_Output_Enabled (This : HRPWM_Modulator) return Boolean is begin return Channel_Output_Enabled (This.Generator.all, Output_2); end Complementary_Output_Enabled; -------------------- -- Disable_Output -- -------------------- procedure Disable_Output (This : in out HRPWM_Modulator) is begin Set_Channel_Output (This.Generator.all, Output_1, False); end Disable_Output; ---------------------------------- -- Disable_Complementary_Output -- ---------------------------------- procedure Disable_Complementary_Output (This : in out HRPWM_Modulator) is begin Set_Channel_Output (This.Generator.all, Output_2, False); end Disable_Complementary_Output; ------------------ -- Set_Polarity -- ------------------ procedure Set_Polarity (This : in HRPWM_Modulator; Polarity : Channel_Output_Polarity) is begin Set_Channel_Output_Polarity (This.Generator.all, Output_1, Polarity); end Set_Polarity; -------------------------------- -- Set_Complementary_Polarity -- -------------------------------- procedure Set_Complementary_Polarity (This : in HRPWM_Modulator; Polarity : Channel_Output_Polarity) is begin Set_Channel_Output_Polarity (This.Generator.all, Output_2, Polarity); end Set_Complementary_Polarity; ------------------------ -- Configure_PWM_GPIO -- ------------------------ procedure Configure_PWM_GPIO (Output : GPIO_Point; PWM_AF : GPIO_Alternate_Function; AF_Speed : Pin_Output_Speeds) is begin Output.Configure_IO ((Mode_AF, AF => PWM_AF, Resistors => Floating, AF_Output_Type => Push_Pull, AF_Speed => AF_Speed)); end Configure_PWM_GPIO; -------------------- -- Set_Duty_Cycle -- -------------------- procedure Set_Duty_Cycle (This : in out HRPWM_Modulator; Value : Percentage) is Pulse : UInt16; begin This.Duty_Cycle := Value; if Value = 0 then Set_Compare_Value (This.Generator.all, This.Compare, UInt16'(0)); else -- for a Value of 0, the computation of Pulse wraps around, so we -- only compute it when not zero Pulse := (Current_Period (This.Generator.all) + 1) * UInt16 (Value) / 100 - 1; Set_Compare_Value (This.Generator.all, This.Compare, Pulse); end if; end Set_Duty_Cycle; ------------------------ -- Current_Duty_Cycle -- ------------------------ function Current_Duty_Cycle (This : HRPWM_Modulator) return Percentage is begin return This.Duty_Cycle; end Current_Duty_Cycle; ----------------------------- -- Microseconds_Per_Period -- ----------------------------- function Microseconds_Per_Period (This : HRPWM_Modulator) return Microseconds is Result : UInt32; Counter_Frequency : UInt32; Hardware_Frequency : UInt32; Period : constant UInt16 := Current_Period (This.Generator.all) + 1; Prescalar : constant UInt16 := Current_Prescaler (This.Generator.all) + 1; begin Hardware_Frequency := Get_Clock_Frequency (This.Generator.all); Counter_Frequency := (Hardware_Frequency / UInt32 (Prescalar)) / UInt32 (Period); Result := 1_000_000 / Counter_Frequency; return Result; end Microseconds_Per_Period; ------------------- -- Set_Duty_Time -- ------------------- procedure Set_Duty_Time (This : in out HRPWM_Modulator; Value : Microseconds) is Pulse : UInt16; Period : constant UInt32 := UInt32 (Current_Period (This.Generator.all)) + 1; uS_Per_Period : constant UInt32 := Microseconds_Per_Period (This); begin if Value = 0 then Set_Compare_Value (This.Generator.all, This.Compare, UInt16'(0)); else -- for a Value of 0, the computation of Pulse wraps around, so we -- only compute it when not zero Pulse := UInt16 ((Period * Value) / uS_Per_Period) - 1; Set_Compare_Value (This.Generator.all, This.Compare, Pulse); end if; end Set_Duty_Time; end STM32.HRPWM;
34.896552
90
0.55866
1869a14357c14d0ab37d2aa97f2214494be35aba
5,362
ads
Ada
source/amf/uml/amf-standard_profile_l2-entities-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-standard_profile_l2-entities-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-standard_profile_l2-entities-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.Standard_Profile_L2.Entities.Collections is pragma Preelaborate; package Standard_Profile_L2_Entity_Collections is new AMF.Generic_Collections (Standard_Profile_L2_Entity, Standard_Profile_L2_Entity_Access); type Set_Of_Standard_Profile_L2_Entity is new Standard_Profile_L2_Entity_Collections.Set with null record; Empty_Set_Of_Standard_Profile_L2_Entity : constant Set_Of_Standard_Profile_L2_Entity; type Ordered_Set_Of_Standard_Profile_L2_Entity is new Standard_Profile_L2_Entity_Collections.Ordered_Set with null record; Empty_Ordered_Set_Of_Standard_Profile_L2_Entity : constant Ordered_Set_Of_Standard_Profile_L2_Entity; type Bag_Of_Standard_Profile_L2_Entity is new Standard_Profile_L2_Entity_Collections.Bag with null record; Empty_Bag_Of_Standard_Profile_L2_Entity : constant Bag_Of_Standard_Profile_L2_Entity; type Sequence_Of_Standard_Profile_L2_Entity is new Standard_Profile_L2_Entity_Collections.Sequence with null record; Empty_Sequence_Of_Standard_Profile_L2_Entity : constant Sequence_Of_Standard_Profile_L2_Entity; private Empty_Set_Of_Standard_Profile_L2_Entity : constant Set_Of_Standard_Profile_L2_Entity := (Standard_Profile_L2_Entity_Collections.Set with null record); Empty_Ordered_Set_Of_Standard_Profile_L2_Entity : constant Ordered_Set_Of_Standard_Profile_L2_Entity := (Standard_Profile_L2_Entity_Collections.Ordered_Set with null record); Empty_Bag_Of_Standard_Profile_L2_Entity : constant Bag_Of_Standard_Profile_L2_Entity := (Standard_Profile_L2_Entity_Collections.Bag with null record); Empty_Sequence_Of_Standard_Profile_L2_Entity : constant Sequence_Of_Standard_Profile_L2_Entity := (Standard_Profile_L2_Entity_Collections.Sequence with null record); end AMF.Standard_Profile_L2.Entities.Collections;
58.282609
104
0.548862
397cdfe937ef109002d2154391d682aa85b915e8
3,373
adb
Ada
Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnarl/s-tasinf__mingw.adb
djamal2727/Main-Bearing-Analytical-Model
2f00c2219c71be0175c6f4f8f1d4cca231d97096
[ "Apache-2.0" ]
null
null
null
Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnarl/s-tasinf__mingw.adb
djamal2727/Main-Bearing-Analytical-Model
2f00c2219c71be0175c6f4f8f1d4cca231d97096
[ "Apache-2.0" ]
null
null
null
Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnarl/s-tasinf__mingw.adb
djamal2727/Main-Bearing-Analytical-Model
2f00c2219c71be0175c6f4f8f1d4cca231d97096
[ "Apache-2.0" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- S Y S T E M . T A S K _ I N F O -- -- -- -- B o d y -- -- -- -- Copyright (C) 2007-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 is the Windows (native) version of this module with System.OS_Interface; pragma Unreferenced (System.OS_Interface); -- System.OS_Interface is not used today, but the protocol between the -- run-time and the binder is that any tasking application uses -- System.OS_Interface, so notify the binder with this "with" clause. package body System.Task_Info is N_CPU : Natural := 0; pragma Atomic (N_CPU); -- Cache CPU number. Use pragma Atomic to avoid a race condition when -- setting N_CPU in Number_Of_Processors below. -------------------------- -- Number_Of_Processors -- -------------------------- function Number_Of_Processors return Positive is begin if N_CPU = 0 then declare SI : aliased Win32.SYSTEM_INFO; begin Win32.GetSystemInfo (SI'Access); N_CPU := Positive (SI.dwNumberOfProcessors); end; end if; return N_CPU; end Number_Of_Processors; end System.Task_Info;
51.106061
78
0.449155
10e77cf9ddae739fb2721cc714c36457b90f3eb3
1,974
adb
Ada
benchmark/benchmark_s_date.adb
skill-lang/skillAdaTestSuite
279ea0c0cd489c2e39d7532a3b68c564497101e2
[ "BSD-3-Clause" ]
1
2019-02-09T22:04:10.000Z
2019-02-09T22:04:10.000Z
benchmark/benchmark_s_date.adb
skill-lang/skillAdaTestSuite
279ea0c0cd489c2e39d7532a3b68c564497101e2
[ "BSD-3-Clause" ]
null
null
null
benchmark/benchmark_s_date.adb
skill-lang/skillAdaTestSuite
279ea0c0cd489c2e39d7532a3b68c564497101e2
[ "BSD-3-Clause" ]
null
null
null
with Ada.Streams.Stream_IO; with Ada.Text_IO; with Ada.Unchecked_Deallocation; with Ada.Containers.Vectors; package body Benchmark_S_Date is package Skill renames Date.Api; use Date; use Skill; type State_Type is access Skill_State; State : State_Type; procedure Create (N : Integer; File_Name : String) is begin State := new Skill_State; Skill.Create (State); for I in 1 .. i64 (N) loop New_Date (State, I); end loop; end Create; procedure Write (N : Integer; File_Name : String) is package ASS_IO renames Ada.Streams.Stream_IO; File : ASS_IO.File_Type; Stream : ASS_IO.Stream_Access; procedure Free is new Ada.Unchecked_Deallocation (Date_Type_Array, Date_Type_Accesses); Objects : Date_Type_Accesses := Skill.Get_Dates (State); begin ASS_IO.Create (File, ASS_IO.Out_File, File_Name); Stream := ASS_IO.Stream (File); for I in Objects'Range loop Date_Type'Write (Stream, Objects (I).all); end loop; ASS_IO.Close (File); Free (Objects); end Write; procedure Read (N : Integer; File_Name : String) is package ASS_IO renames Ada.Streams.Stream_IO; File : ASS_IO.File_Type; Stream : ASS_IO.Stream_Access; package Vector is new Ada.Containers.Vectors (Positive, Date_Type); Storage_Pool : Vector.Vector; begin ASS_IO.Open (File, ASS_IO.In_File, File_Name); Stream := ASS_IO.Stream (File); while not ASS_IO.End_Of_File (File) loop declare X : Date_Type; begin Date_Type'Read (Stream, X); Storage_Pool.Append (X); end; end loop; ASS_IO.Close (File); end Read; procedure Reset (N : Integer; File_Name : String) is procedure Free is new Ada.Unchecked_Deallocation (Skill_State, State_Type); begin Skill.Close (State); Free (State); end Reset; end Benchmark_S_Date;
25.636364
93
0.649949
20ca7ef81ac688ceef60fc47c456b0d2a87aa2c1
975
ads
Ada
src/gdb/gdb-8.3/gdb/testsuite/gdb.ada/pckd_neg/pck.ads
alrooney/unum-sdk
bbccb10b0cd3500feccbbef22e27ea111c3d18eb
[ "Apache-2.0" ]
31
2018-08-01T21:25:24.000Z
2022-02-14T07:52:34.000Z
src/gdb/gdb-8.3/gdb/testsuite/gdb.ada/pckd_neg/pck.ads
alrooney/unum-sdk
bbccb10b0cd3500feccbbef22e27ea111c3d18eb
[ "Apache-2.0" ]
40
2018-12-03T19:48:52.000Z
2021-03-10T06:34:26.000Z
src/gdb/gdb-8.3/gdb/testsuite/gdb.ada/pckd_neg/pck.ads
alrooney/unum-sdk
bbccb10b0cd3500feccbbef22e27ea111c3d18eb
[ "Apache-2.0" ]
20
2018-11-16T21:19:22.000Z
2021-10-18T23:08:24.000Z
-- Copyright (C) 2015-2019 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 Pck is type Signed_Small is new Integer range - (2 ** 5) .. (2 ** 5 - 1); type Signed_Simple_Array is array (1 .. 4) of Signed_Small; pragma Pack (Signed_Simple_Array); procedure Update_Signed_Small (S : in out Signed_Small); end Pck;
42.391304
73
0.724103
10f413eebe41c814c01aa75b874732344cad6d9e
2,760
ads
Ada
boards/MicroBit/src/microbit-accelerometer.ads
ekoeppen/Ada_Drivers_Library
4b295a4ee8e89df17c460bd35ab270a3a0a68a3b
[ "BSD-3-Clause" ]
null
null
null
boards/MicroBit/src/microbit-accelerometer.ads
ekoeppen/Ada_Drivers_Library
4b295a4ee8e89df17c460bd35ab270a3a0a68a3b
[ "BSD-3-Clause" ]
null
null
null
boards/MicroBit/src/microbit-accelerometer.ads
ekoeppen/Ada_Drivers_Library
4b295a4ee8e89df17c460bd35ab270a3a0a68a3b
[ "BSD-3-Clause" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- Copyright (C) 2018, 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. -- -- -- ------------------------------------------------------------------------------ with MMA8653; package MicroBit.Accelerometer is function Initialized return Boolean; -- Return True if the Accelerometer is initialized and ready to use procedure Initialize with Post => Initialized; -- Initialize the accelerometer using the micro:bit I2C port function Data return MMA8653.All_Axes_Data with Pre => Initialized; end MicroBit.Accelerometer;
58.723404
78
0.538043
18e2a0886a3afedc99fae69e85dcb8232c781e54
32,149
ads
Ada
legacy-core/src/test/resources/dm/TST-ForeignKeyChanges.ads
greifentor/archimedes-legacy
32eac85cba6e82b2c2001b339cb6af20b11799b9
[ "Apache-2.0" ]
null
null
null
legacy-core/src/test/resources/dm/TST-ForeignKeyChanges.ads
greifentor/archimedes-legacy
32eac85cba6e82b2c2001b339cb6af20b11799b9
[ "Apache-2.0" ]
27
2021-03-11T13:09:39.000Z
2021-11-19T07:14:13.000Z
legacy-core/src/test/resources/dm/TST-ForeignKeyChanges.ads
greifentor/archimedes-legacy
32eac85cba6e82b2c2001b339cb6af20b11799b9
[ "Apache-2.0" ]
null
null
null
<Diagramm> <AdditionalSQLCode> <SQLCode> <AdditionalSQLCodePostChanging></AdditionalSQLCodePostChanging> <AdditionalSQLCodePostReducing></AdditionalSQLCodePostReducing> <AdditionalSQLCodePreChanging></AdditionalSQLCodePreChanging> <AdditionalSQLCodePreExtending></AdditionalSQLCodePreExtending> </SQLCode> </AdditionalSQLCode> <Colors> <Anzahl>23</Anzahl> <Color0> <B>255</B> <G>0</G> <Name>blau</Name> <R>0</R> </Color0> <Color1> <B>221</B> <G>212</G> <Name>blaugrau</Name> <R>175</R> </Color1> <Color10> <B>192</B> <G>192</G> <Name>hellgrau</Name> <R>192</R> </Color10> <Color11> <B>255</B> <G>0</G> <Name>kamesinrot</Name> <R>255</R> </Color11> <Color12> <B>0</B> <G>200</G> <Name>orange</Name> <R>255</R> </Color12> <Color13> <B>255</B> <G>247</G> <Name>pastell-blau</Name> <R>211</R> </Color13> <Color14> <B>186</B> <G>245</G> <Name>pastell-gelb</Name> <R>255</R> </Color14> <Color15> <B>234</B> <G>255</G> <Name>pastell-gr&amp;uuml;n</Name> <R>211</R> </Color15> <Color16> <B>255</B> <G>211</G> <Name>pastell-lila</Name> <R>244</R> </Color16> <Color17> <B>191</B> <G>165</G> <Name>pastell-rot</Name> <R>244</R> </Color17> <Color18> <B>175</B> <G>175</G> <Name>pink</Name> <R>255</R> </Color18> <Color19> <B>0</B> <G>0</G> <Name>rot</Name> <R>255</R> </Color19> <Color2> <B>61</B> <G>125</G> <Name>braun</Name> <R>170</R> </Color2> <Color20> <B>0</B> <G>0</G> <Name>schwarz</Name> <R>0</R> </Color20> <Color21> <B>255</B> <G>255</G> <Name>t&amp;uuml;rkis</Name> <R>0</R> </Color21> <Color22> <B>255</B> <G>255</G> <Name>wei&amp;szlig;</Name> <R>255</R> </Color22> <Color3> <B>64</B> <G>64</G> <Name>dunkelgrau</Name> <R>64</R> </Color3> <Color4> <B>84</B> <G>132</G> <Name>dunkelgr&amp;uuml;n</Name> <R>94</R> </Color4> <Color5> <B>0</B> <G>255</G> <Name>gelb</Name> <R>255</R> </Color5> <Color6> <B>0</B> <G>225</G> <Name>goldgelb</Name> <R>255</R> </Color6> <Color7> <B>128</B> <G>128</G> <Name>grau</Name> <R>128</R> </Color7> <Color8> <B>0</B> <G>255</G> <Name>gr&amp;uuml;n</Name> <R>0</R> </Color8> <Color9> <B>255</B> <G>212</G> <Name>hellblau</Name> <R>191</R> </Color9> </Colors> <ComplexIndices> <IndexCount>0</IndexCount> </ComplexIndices> <DataSource> <Import> <DBName></DBName> <Description></Description> <Domains>false</Domains> <Driver></Driver> <Name></Name> <Referenzen>false</Referenzen> <User></User> </Import> </DataSource> <DatabaseConnections> <Count>2</Count> <DatabaseConnection0> <DBExecMode>POSTGRESQL</DBExecMode> <Driver>org.postgresql.Driver</Driver> <Name>Test-DB (Postgre)</Name> <Quote>"</Quote> <SetDomains>false</SetDomains> <SetNotNull>true</SetNotNull> <SetReferences>true</SetReferences> <URL>jdbc:postgresql://mykene/TEST_OLI_ISIS_2</URL> <UserName>op1</UserName> </DatabaseConnection0> <DatabaseConnection1> <DBExecMode>HSQL</DBExecMode> <Driver>org.hsqldb.jdbcDriver</Driver> <Name>Test-DB (HSQL)</Name> <Quote>"</Quote> <SetDomains>false</SetDomains> <SetNotNull>true</SetNotNull> <SetReferences>true</SetReferences> <URL>jdbc:hsqldb:unittests/db/tst</URL> <UserName>sa</UserName> </DatabaseConnection1> </DatabaseConnections> <DefaultComment> <Anzahl>0</Anzahl> </DefaultComment> <Domains> <Anzahl>4</Anzahl> <Domain0> <Datatype>-5</Datatype> <History></History> <Initialwert>NULL</Initialwert> <Kommentar></Kommentar> <Length>0</Length> <NKS>0</NKS> <Name>Ident</Name> <Parameters></Parameters> </Domain0> <Domain1> <Datatype>12</Datatype> <History></History> <Initialwert>NULL</Initialwert> <Kommentar></Kommentar> <Length>500</Length> <NKS>0</NKS> <Name>LongName</Name> <Parameters></Parameters> </Domain1> <Domain2> <Datatype>12</Datatype> <History></History> <Initialwert>NULL</Initialwert> <Kommentar></Kommentar> <Length>200</Length> <NKS>0</NKS> <Name>Name</Name> <Parameters></Parameters> </Domain2> <Domain3> <Datatype>2</Datatype> <History></History> <Initialwert>NULL</Initialwert> <Kommentar></Kommentar> <Length>8</Length> <NKS>2</NKS> <Name>Price</Name> <Parameters></Parameters> </Domain3> </Domains> <Factories> <Object>archimedes.legacy.scheme.DefaultObjectFactory</Object> </Factories> <Pages> <PerColumn>5</PerColumn> <PerRow>10</PerRow> </Pages> <Parameter> <AdditionalSQLScriptListener></AdditionalSQLScriptListener> <Applicationname></Applicationname> <AufgehobeneAusblenden>false</AufgehobeneAusblenden> <Autor>&amp;lt;null&amp;gt;</Autor> <Basepackagename></Basepackagename> <CodeFactoryClassName></CodeFactoryClassName> <Codebasispfad>.\</Codebasispfad> <DBVersionDBVersionColumn></DBVersionDBVersionColumn> <DBVersionDescriptionColumn></DBVersionDescriptionColumn> <DBVersionTablename></DBVersionTablename> <History></History> <Kommentar>&amp;lt;null&amp;gt;</Kommentar> <Name>TST</Name> <Optionen> <Anzahl>0</Anzahl> </Optionen> <PflichtfelderMarkieren>false</PflichtfelderMarkieren> <ReferenzierteSpaltenAnzeigen>true</ReferenzierteSpaltenAnzeigen> <RelationColorExternalTables>hellgrau</RelationColorExternalTables> <RelationColorRegular>schwarz</RelationColorRegular> <SchemaName>TST</SchemaName> <Schriftgroessen> <Tabelleninhalte>12</Tabelleninhalte> <Ueberschriften>24</Ueberschriften> <Untertitel>12</Untertitel> </Schriftgroessen> <Scripte> <AfterWrite>&amp;lt;null&amp;gt;</AfterWrite> </Scripte> <TechnischeFelderAusgrauen>false</TechnischeFelderAusgrauen> <TransienteFelderAusgrauen>false</TransienteFelderAusgrauen> <UdschebtiBaseClassName></UdschebtiBaseClassName> <Version>1</Version> <Versionsdatum>08.12.2015</Versionsdatum> <Versionskommentar>&amp;lt;null&amp;gt;</Versionskommentar> </Parameter> <Sequences> <Count>0</Count> </Sequences> <Stereotype> <Anzahl>0</Anzahl> </Stereotype> <Tabellen> <Anzahl>2</Anzahl> <Tabelle0> <Aufgehoben>false</Aufgehoben> <Codegenerator> <AuswahlMembers> <Anzahl>0</Anzahl> </AuswahlMembers> <CompareMembers> <Anzahl>0</Anzahl> </CompareMembers> <Equalsmembers> <Anzahl>0</Anzahl> </Equalsmembers> <HashCodeMembers> <Anzahl>0</Anzahl> </HashCodeMembers> <NReferenzen> <Anzahl>0</Anzahl> </NReferenzen> <OrderMembers> <Anzahl>0</Anzahl> </OrderMembers> <ToComboStringMembers> <Anzahl>0</Anzahl> </ToComboStringMembers> <ToStringMembers> <Anzahl>0</Anzahl> </ToStringMembers> </Codegenerator> <ExternalTable>false</ExternalTable> <Farben> <Hintergrund>wei&amp;szlig;</Hintergrund> <Schrift>schwarz</Schrift> </Farben> <FirstGenerationDone>false</FirstGenerationDone> <History>@changed OLI - Added.$BR$@changed OLI - Added column: Id.</History> <InDevelopment>false</InDevelopment> <Kommentar></Kommentar> <NMRelation>false</NMRelation> <Name>Author</Name> <Options> <Count>0</Count> </Options> <Panels> <Anzahl>1</Anzahl> <Panel0> <PanelClass></PanelClass> <PanelNumber>0</PanelNumber> <TabMnemonic>1</TabMnemonic> <TabTitle>1.Daten</TabTitle> <TabToolTipText>Hier k&ouml;nnen Sie die Daten des Objekt warten</TabToolTipText> </Panel0> </Panels> <Spalten> <Anzahl>4</Anzahl> <Codegenerator> <ActiveInApplication>false</ActiveInApplication> <AdditionalCreateConstraints></AdditionalCreateConstraints> <Codegeneratoroptionen></Codegeneratoroptionen> <Codeverzeichnis>.</Codeverzeichnis> <Codieren>true</Codieren> <DynamicCode>true</DynamicCode> <Inherited>false</Inherited> <Kontextname></Kontextname> <UniqueFormula></UniqueFormula> </Codegenerator> <Spalte0> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>true</CanBeReferenced> <Disabled>false</Disabled> <Domain>Ident</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History>@changed OLI - Added.</History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar></Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>Author</Name> <NotNull>false</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>true</PrimaryKey> <RemovedStateField>false</RemovedStateField> <SequenceForKeyGeneration></SequenceForKeyGeneration> <SuppressForeignKeyConstraints>false</SuppressForeignKeyConstraints> <TechnicalField>false</TechnicalField> <Transient>false</Transient> <Unique>false</Unique> </Spalte0> <Spalte1> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>false</CanBeReferenced> <Disabled>false</Disabled> <Domain>Name</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History>@changed OLI - Added.</History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue>'n/a'</IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar></Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>Address</Name> <NotNull>true</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>false</PrimaryKey> <RemovedStateField>false</RemovedStateField> <SequenceForKeyGeneration></SequenceForKeyGeneration> <SuppressForeignKeyConstraints>false</SuppressForeignKeyConstraints> <TechnicalField>false</TechnicalField> <Transient>false</Transient> <Unique>false</Unique> </Spalte1> <Spalte2> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>false</CanBeReferenced> <Disabled>false</Disabled> <Domain>Ident</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History>@changed OLI - Added.</History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar></Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>AuthorId</Name> <NotNull>false</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>false</PrimaryKey> <RemovedStateField>false</RemovedStateField> <SequenceForKeyGeneration></SequenceForKeyGeneration> <SuppressForeignKeyConstraints>false</SuppressForeignKeyConstraints> <TechnicalField>false</TechnicalField> <Transient>false</Transient> <Unique>true</Unique> </Spalte2> <Spalte3> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>false</CanBeReferenced> <Disabled>false</Disabled> <Domain>Name</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History>@changed OLI - Added.</History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar></Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>Name</Name> <NotNull>true</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>false</PrimaryKey> <RemovedStateField>false</RemovedStateField> <SequenceForKeyGeneration></SequenceForKeyGeneration> <SuppressForeignKeyConstraints>false</SuppressForeignKeyConstraints> <TechnicalField>false</TechnicalField> <Transient>false</Transient> <Unique>false</Unique> </Spalte3> </Spalten> <Stereotype> <Anzahl>0</Anzahl> </Stereotype> <Views> <Anzahl>1</Anzahl> <View0> <Name>Main</Name> <X>150</X> <Y>150</Y> </View0> </Views> </Tabelle0> <Tabelle1> <Aufgehoben>false</Aufgehoben> <Codegenerator> <AuswahlMembers> <Anzahl>0</Anzahl> </AuswahlMembers> <CompareMembers> <Anzahl>0</Anzahl> </CompareMembers> <Equalsmembers> <Anzahl>0</Anzahl> </Equalsmembers> <HashCodeMembers> <Anzahl>0</Anzahl> </HashCodeMembers> <NReferenzen> <Anzahl>0</Anzahl> </NReferenzen> <OrderMembers> <Anzahl>0</Anzahl> </OrderMembers> <ToComboStringMembers> <Anzahl>0</Anzahl> </ToComboStringMembers> <ToStringMembers> <Anzahl>0</Anzahl> </ToStringMembers> </Codegenerator> <ExternalTable>false</ExternalTable> <Farben> <Hintergrund>wei&amp;szlig;</Hintergrund> <Schrift>schwarz</Schrift> </Farben> <FirstGenerationDone>false</FirstGenerationDone> <History>@changed OLI - Added.</History> <InDevelopment>false</InDevelopment> <Kommentar></Kommentar> <NMRelation>false</NMRelation> <Name>Book</Name> <Options> <Count>0</Count> </Options> <Panels> <Anzahl>1</Anzahl> <Panel0> <PanelClass></PanelClass> <PanelNumber>0</PanelNumber> <TabMnemonic>1</TabMnemonic> <TabTitle>1.Daten</TabTitle> <TabToolTipText>Hier k&ouml;nnen Sie die Daten des Objekt warten</TabToolTipText> </Panel0> </Panels> <Spalten> <Anzahl>3</Anzahl> <Codegenerator> <ActiveInApplication>false</ActiveInApplication> <AdditionalCreateConstraints></AdditionalCreateConstraints> <Codegeneratoroptionen></Codegeneratoroptionen> <Codeverzeichnis>.</Codeverzeichnis> <Codieren>true</Codieren> <DynamicCode>true</DynamicCode> <Inherited>false</Inherited> <Kontextname></Kontextname> <UniqueFormula></UniqueFormula> </Codegenerator> <Spalte0> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>true</CanBeReferenced> <Disabled>false</Disabled> <Domain>Ident</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History>@changed OLI - Added.</History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar></Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>Book</Name> <NotNull>false</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>true</PrimaryKey> <RemovedStateField>false</RemovedStateField> <SequenceForKeyGeneration></SequenceForKeyGeneration> <SuppressForeignKeyConstraints>false</SuppressForeignKeyConstraints> <TechnicalField>false</TechnicalField> <Transient>false</Transient> <Unique>false</Unique> </Spalte0> <Spalte1> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>false</CanBeReferenced> <Disabled>false</Disabled> <Domain>Ident</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>true</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History>@changed OLI - Added.</History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar></Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>Author</Name> <NotNull>true</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>false</PrimaryKey> <Referenz> <Direction0>UP</Direction0> <Direction1>DOWN</Direction1> <Offset0>50</Offset0> <Offset1>50</Offset1> <Spalte>Author</Spalte> <Tabelle>Author</Tabelle> <Views> <Anzahl>1</Anzahl> <View0> <Direction0>UP</Direction0> <Direction1>DOWN</Direction1> <Name>Main</Name> <Offset0>50</Offset0> <Offset1>50</Offset1> <Points> <Anzahl>0</Anzahl> </Points> </View0> </Views> </Referenz> <RemovedStateField>false</RemovedStateField> <SequenceForKeyGeneration></SequenceForKeyGeneration> <SuppressForeignKeyConstraints>false</SuppressForeignKeyConstraints> <TechnicalField>false</TechnicalField> <Transient>false</Transient> <Unique>false</Unique> </Spalte1> <Spalte2> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>false</CanBeReferenced> <Disabled>false</Disabled> <Domain>LongName</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History>@changed OLI - Added.</History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar></Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>Title</Name> <NotNull>false</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>false</PrimaryKey> <RemovedStateField>false</RemovedStateField> <SequenceForKeyGeneration></SequenceForKeyGeneration> <SuppressForeignKeyConstraints>false</SuppressForeignKeyConstraints> <TechnicalField>false</TechnicalField> <Transient>false</Transient> <Unique>false</Unique> </Spalte2> </Spalten> <Stereotype> <Anzahl>0</Anzahl> </Stereotype> <Views> <Anzahl>1</Anzahl> <View0> <Name>Main</Name> <X>150</X> <Y>375</Y> </View0> </Views> </Tabelle1> </Tabellen> <Views> <Anzahl>1</Anzahl> <View0> <Beschreibung>Diese Sicht beinhaltet alle Tabellen des Schemas</Beschreibung> <Name>Main</Name> <ReferenzierteSpaltenAnzeigen>true</ReferenzierteSpaltenAnzeigen> <Tabelle0>Author</Tabelle0> <Tabellenanzahl>1</Tabellenanzahl> <TechnischeSpaltenVerstecken>false</TechnischeSpaltenVerstecken> </View0> </Views> </Diagramm>
41.269576
102
0.462938
df3a0a6cc5a903ac026cf26f0952a97340101a52
1,512
ads
Ada
orka/src/orka/interface/orka-inputs-joysticks-gamepads.ads
onox/orka
9edf99559a16ffa96dfdb208322f4d18efbcbac6
[ "Apache-2.0" ]
52
2016-07-30T23:00:28.000Z
2022-02-05T11:54:55.000Z
orka/src/orka/interface/orka-inputs-joysticks-gamepads.ads
onox/orka
9edf99559a16ffa96dfdb208322f4d18efbcbac6
[ "Apache-2.0" ]
79
2016-08-01T18:36:48.000Z
2022-02-27T12:14:20.000Z
orka/src/orka/interface/orka-inputs-joysticks-gamepads.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) 2019 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. package Orka.Inputs.Joysticks.Gamepads is pragma Preelaborate; type Button is (Right_Pad_Down, Right_Pad_Right, Right_Pad_Left, Right_Pad_Up, Left_Shoulder, Right_Shoulder, Center_Left, Center_Right, Center_Logo, Left_Stick, Right_Stick, Left_Pad_Up, Left_Pad_Right, Left_Pad_Down, Left_Pad_Left); type Axis is (Left_Stick_X, Left_Stick_Y, Right_Stick_X, Right_Stick_Y, Left_Trigger, Right_Trigger); function Value (Index : Button_Index) return Button; function Value (Index : Axis_Index) return Axis; function Index (Value : Button) return Button_Index; function Index (Value : Axis) return Axis_Index; procedure Normalize_Axes (Axes : in out Axis_Positions); end Orka.Inputs.Joysticks.Gamepads;
28
76
0.697751
10c8c7f44d5c0410810759596cbbf732c002bb42
6,901
adb
Ada
src/ewok-sanitize.adb
mfkiwl/ewok-kernel-security-OS
ca8e2a0b5cedbc94df957be1fac6d7d4b2ceb687
[ "Apache-2.0" ]
65
2018-09-26T09:10:11.000Z
2022-01-30T21:17:37.000Z
src/ewok-sanitize.adb
mfkiwl/ewok-kernel-security-OS
ca8e2a0b5cedbc94df957be1fac6d7d4b2ceb687
[ "Apache-2.0" ]
22
2019-04-07T15:15:54.000Z
2020-10-15T12:45:54.000Z
src/ewok-sanitize.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.layout; use ewok.layout; with ewok.tasks; use ewok.tasks; with ewok.devices_shared; use ewok.devices_shared; with ewok.devices; with ewok.exported.dma; use type ewok.exported.dma.t_dma_shm_access; package body ewok.sanitize with spark_mode => off is function is_word_in_data_region (ptr : system_address; task_id : ewok.tasks_shared.t_task_id; mode : ewok.tasks_shared.t_task_mode) return boolean is user_task : ewok.tasks.t_task renames ewok.tasks.tasks_list(task_id); begin if ptr >= user_task.data_start and ptr + 4 <= user_task.data_end then return true; end if; -- ISR mode is a special case because the stack is therefore -- mutualized (thus only one ISR can be executed at the same time) if mode = TASK_MODE_ISRTHREAD and ptr >= STACK_BOTTOM_TASK_ISR and ptr < STACK_TOP_TASK_ISR then return true; end if; return false; end is_word_in_data_region; function is_word_in_txt_region (ptr : system_address; task_id : ewok.tasks_shared.t_task_id) return boolean is user_task : ewok.tasks.t_task renames ewok.tasks.tasks_list(task_id); begin if ptr >= user_task.txt_start and ptr + 4 <= user_task.txt_end then return true; else return false; end if; end is_word_in_txt_region; function is_word_in_allocated_device (ptr : system_address; task_id : ewok.tasks_shared.t_task_id) return boolean is dev_id : ewok.devices_shared.t_device_id; dev_size : unsigned_32; dev_addr : system_address; user_task : ewok.tasks.t_task renames ewok.tasks.tasks_list(task_id); begin for i in user_task.devices'range loop dev_id := user_task.devices(i).device_id; if dev_id /= ID_DEV_UNUSED then dev_addr := ewok.devices.get_device_addr (dev_id); dev_size := ewok.devices.get_device_size (dev_id); if ptr >= dev_addr and ptr + 4 >= dev_addr and ptr + 4 < dev_addr + dev_size then return true; end if; end if; end loop; return false; end is_word_in_allocated_device; function is_word_in_any_region (ptr : system_address; task_id : ewok.tasks_shared.t_task_id; mode : ewok.tasks_shared.t_task_mode) return boolean is begin return is_word_in_data_region (ptr, task_id, mode) or is_word_in_txt_region (ptr, task_id); end is_word_in_any_region; function is_range_in_devices_region (ptr : system_address; size : unsigned_32; task_id : ewok.tasks_shared.t_task_id) return boolean is user_device_size : unsigned_32; user_device_addr : unsigned_32; dev_id : t_device_id; user_task : ewok.tasks.t_task renames ewok.tasks.tasks_list(task_id); begin for i in user_task.devices'range loop dev_id := user_task.devices(i).device_id; if dev_id /= ID_DEV_UNUSED then user_device_size := ewok.devices.get_device_size (dev_id); user_device_addr := ewok.devices.get_device_addr (dev_id); if ptr >= user_device_addr and ptr + size <= user_device_addr + user_device_size then return true; end if; end if; end loop; return false; end is_range_in_devices_region; function is_range_in_data_region (ptr : system_address; size : unsigned_32; task_id : ewok.tasks_shared.t_task_id; mode : ewok.tasks_shared.t_task_mode) return boolean is user_task : ewok.tasks.t_task renames ewok.tasks.tasks_list(task_id); begin if ptr >= user_task.data_start and ptr + size >= ptr and ptr + size <= user_task.data_end then return true; end if; if mode = TASK_MODE_ISRTHREAD and ptr >= STACK_BOTTOM_TASK_ISR and ptr + size >= ptr and ptr + size < STACK_TOP_TASK_ISR then return true; end if; return false; end is_range_in_data_region; function is_range_in_txt_region (ptr : system_address; size : unsigned_32; task_id : ewok.tasks_shared.t_task_id) return boolean is user_task : ewok.tasks.t_task renames ewok.tasks.tasks_list(task_id); begin if ptr >= user_task.txt_start and ptr + size >= ptr and ptr + size <= user_task.txt_end then return true; else return false; end if; end is_range_in_txt_region; function is_range_in_any_region (ptr : system_address; size : unsigned_32; task_id : ewok.tasks_shared.t_task_id; mode : ewok.tasks_shared.t_task_mode) return boolean is begin return is_range_in_data_region (ptr, size, task_id, mode) or is_range_in_txt_region (ptr, size, task_id); end is_range_in_any_region; function is_range_in_dma_shm (ptr : system_address; size : unsigned_32; dma_access : ewok.exported.dma.t_dma_shm_access; task_id : ewok.tasks_shared.t_task_id) return boolean is user_task : ewok.tasks.t_task renames ewok.tasks.tasks_list(task_id); begin for i in 1 .. user_task.num_dma_shms loop if user_task.dma_shm(i).access_type = dma_access and ptr >= user_task.dma_shm(i).base and ptr + size >= ptr and ptr + size <= (user_task.dma_shm(i).base + user_task.dma_shm(i).size) then return true; end if; end loop; return false; end is_range_in_dma_shm; end ewok.sanitize;
28.634855
79
0.614114
39b439185d32973b00abf93d25503fb52166501c
1,173
ads
Ada
Read Only/gdb-6.8/gdb/testsuite/gdb.ada/frame_args/pck.ads
samyvic/OS-Project
1622bc1641876584964effd91d65ef02e92728e1
[ "Apache-2.0" ]
null
null
null
Read Only/gdb-6.8/gdb/testsuite/gdb.ada/frame_args/pck.ads
samyvic/OS-Project
1622bc1641876584964effd91d65ef02e92728e1
[ "Apache-2.0" ]
null
null
null
Read Only/gdb-6.8/gdb/testsuite/gdb.ada/frame_args/pck.ads
samyvic/OS-Project
1622bc1641876584964effd91d65ef02e92728e1
[ "Apache-2.0" ]
null
null
null
-- Copyright 2007, 2008 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 System; package Pck is type Struct is record A : Integer; B : Integer; end record; type Arr is array (1 .. 3) of Integer; procedure Call_Me (Int : Integer; Flt : Float; Bln : Boolean; Ary : Arr; -- Non scalar Chr : Character; Sad : System.Address; Rec : Struct); -- Non scalar end Pck;
30.868421
73
0.621483
10f0d816384e5f5428660a2471072f47c0fe03f2
3,523
ads
Ada
tools/scitools/conf/understand/ada/ada12/s-pack56.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-pack56.ads
brucegua/moocos
575c161cfa35e220f10d042e2e5ca18773691695
[ "Apache-2.0" ]
null
null
null
tools/scitools/conf/understand/ada/ada12/s-pack56.ads
brucegua/moocos
575c161cfa35e220f10d042e2e5ca18773691695
[ "Apache-2.0" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- S Y S T E M . P A C K _ 5 6 -- -- -- -- 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 = 56 package System.Pack_56 is pragma Preelaborate; Bits : constant := 56; type Bits_56 is mod 2 ** Bits; for Bits_56'Size use Bits; function Get_56 (Arr : System.Address; N : Natural) return Bits_56; -- Arr is the address of the packed array, N is the zero-based -- subscript. This element is extracted and returned. procedure Set_56 (Arr : System.Address; N : Natural; E : Bits_56); -- Arr is the address of the packed array, N is the zero-based -- subscript. This element is set to the given value. function GetU_56 (Arr : System.Address; N : Natural) return Bits_56; -- 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_56 (Arr : System.Address; N : Natural; E : Bits_56); -- 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_56;
57.754098
78
0.427477
4a11379849be2dbc833eb3778b52c296930572b6
6,114
adb
Ada
Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/s-osprim__x32.adb
djamal2727/Main-Bearing-Analytical-Model
2f00c2219c71be0175c6f4f8f1d4cca231d97096
[ "Apache-2.0" ]
null
null
null
Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/s-osprim__x32.adb
djamal2727/Main-Bearing-Analytical-Model
2f00c2219c71be0175c6f4f8f1d4cca231d97096
[ "Apache-2.0" ]
null
null
null
Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/s-osprim__x32.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 . O S _ P R I M I T I V E S -- -- -- -- B o d y -- -- -- -- Copyright (C) 2013-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 version is for Linux/x32 package body System.OS_Primitives is -- ??? These definitions are duplicated from System.OS_Interface -- because we don't want to depend on any package. Consider removing -- these declarations in System.OS_Interface and move these ones in -- the spec. type time_t is new Long_Long_Integer; type timespec is record tv_sec : time_t; tv_nsec : Long_Long_Integer; end record; pragma Convention (C, timespec); function nanosleep (rqtp, rmtp : not null access timespec) return Integer; pragma Import (C, nanosleep, "nanosleep"); ----------- -- Clock -- ----------- function Clock return Duration is type timeval is array (1 .. 2) of Long_Long_Integer; procedure timeval_to_duration (T : not null access timeval; sec : not null access Long_Integer; usec : not null access Long_Integer); pragma Import (C, timeval_to_duration, "__gnat_timeval_to_duration"); Micro : constant := 10**6; sec : aliased Long_Integer; usec : aliased Long_Integer; TV : aliased timeval; Result : Integer; pragma Unreferenced (Result); function gettimeofday (Tv : access timeval; Tz : System.Address := System.Null_Address) return Integer; pragma Import (C, gettimeofday, "gettimeofday"); begin -- The return codes for gettimeofday are as follows (from man pages): -- EPERM settimeofday is called by someone other than the superuser -- EINVAL Timezone (or something else) is invalid -- EFAULT One of tv or tz pointed outside accessible address space -- None of these codes signal a potential clock skew, hence the return -- value is never checked. Result := gettimeofday (TV'Access, System.Null_Address); timeval_to_duration (TV'Access, sec'Access, usec'Access); return Duration (sec) + Duration (usec) / Micro; end Clock; ----------------- -- To_Timespec -- ----------------- function To_Timespec (D : Duration) return timespec; function To_Timespec (D : Duration) return timespec is S : time_t; F : Duration; begin S := time_t (Long_Long_Integer (D)); F := D - Duration (S); -- If F has negative value due to a round-up, adjust for positive F -- value. if F < 0.0 then S := S - 1; F := F + 1.0; end if; return timespec'(tv_sec => S, tv_nsec => Long_Long_Integer (F * 10#1#E9)); end To_Timespec; ----------------- -- Timed_Delay -- ----------------- procedure Timed_Delay (Time : Duration; Mode : Integer) is Request : aliased timespec; Remaind : aliased timespec; Rel_Time : Duration; Abs_Time : Duration; Base_Time : constant Duration := Clock; Check_Time : Duration := Base_Time; Result : Integer; pragma Unreferenced (Result); begin if Mode = Relative then Rel_Time := Time; Abs_Time := Time + Check_Time; else Rel_Time := Time - Check_Time; Abs_Time := Time; end if; if Rel_Time > 0.0 then loop Request := To_Timespec (Rel_Time); Result := nanosleep (Request'Access, Remaind'Access); Check_Time := Clock; exit when Abs_Time <= Check_Time or else Check_Time < Base_Time; Rel_Time := Abs_Time - Check_Time; end loop; end if; end Timed_Delay; ---------------- -- Initialize -- ---------------- procedure Initialize is begin null; end Initialize; end System.OS_Primitives;
36.392857
78
0.506052
1845f9e6169f962f044c8250c58821dcc67d5f49
4,507
ada
Ada
gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/c6/c64109c.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/c6/c64109c.ada
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
null
null
null
gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/c6/c64109c.ada
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
2
2020-07-27T00:22:36.000Z
2021-04-01T09:41:02.000Z
-- C64109C.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 ARRAYS THAT ARE COMPONENTS OF RECORDS ARE PASSED CORRECTLY -- TO SUBPROGRAMS. SPECIFICALLY, -- (C) CHECK RECORDS HAVING A DISCRIMINANT, WITH MORE THAN ONE ARRAY -- COMPONENT, WHERE THE BOUNDS OF THE ARRAY DEPEND ON THE -- DISCRIMINANT. -- CPP 8/20/84 WITH REPORT; USE REPORT; PROCEDURE C64109C IS BEGIN TEST ("C64109C", "CHECK THAT ARRAYS WHICH ARE COMPONENTS OF " & "RECORDS ARE PASSED CORRECTLY TO SUBPROGRAMS - " & "RECORDS WITH DISCRIMINANTS"); DECLARE -- (C) SUBTYPE SUBINT IS INTEGER RANGE 1..6; TYPE ARRAY_TYPE IS ARRAY (SUBINT RANGE <>) OF INTEGER; TYPE RECORD_TYPE (BOUND : INTEGER) IS RECORD B : BOOLEAN; A : ARRAY_TYPE (1..BOUND); AA : ARRAY_TYPE (BOUND..6); END RECORD; REC : RECORD_TYPE (BOUND => IDENT_INT(4)) := (BOUND => 4, B => TRUE, A => (1..IDENT_INT(4) => 6), AA => (4..6 => 8)); BOOL : BOOLEAN; PROCEDURE P1 (ARR : ARRAY_TYPE) IS BEGIN IF ARR /= (6, 6, 6, 6) THEN FAILED ("IN PARAM NOT PASSED CORRECTLY"); END IF; IF ARR'FIRST /= 1 OR ARR'LAST /= IDENT_INT(4) THEN FAILED ("WRONG BOUNDS - IN PARAMETER"); END IF; END P1; FUNCTION F1 (ARR : ARRAY_TYPE) RETURN BOOLEAN IS BEGIN IF ARR /= (6, 6, 6, 6) THEN FAILED ("IN PARAM NOT PASSED CORRECTLY TO FN"); END IF; IF ARR'FIRST /= 1 OR ARR'LAST /= IDENT_INT(4) THEN FAILED ("WRONG BOUNDS - IN PARAMETER FOR FN"); END IF; RETURN TRUE; END F1; PROCEDURE P2 (ARR : IN OUT ARRAY_TYPE) IS BEGIN IF ARR /= (8, 8, 8) THEN FAILED ("IN OUT PARAM NOT PASSED CORRECTLY"); END IF; IF ARR'FIRST /= 4 OR ARR'LAST /= IDENT_INT(6) THEN FAILED ("WRONG BOUNDS - IN OUT PARAMETER"); END IF; ARR := (ARR'RANGE => 10); END P2; PROCEDURE P3 (ARR : OUT ARRAY_TYPE) IS BEGIN IF ARR'FIRST /= 1 OR ARR'LAST /= IDENT_INT(4) THEN FAILED ("WRONG BOUNDS - OUT PARAMETER"); END IF; ARR := (ARR'RANGE => 4); END P3; BEGIN -- (C) P1 (REC.A); IF REC.A /= (6, 6, 6, 6) THEN FAILED ("IN PARAM CHANGED BY PROCEDURE"); END IF; BOOL := F1 (REC.A); IF REC.A /= (6, 6, 6, 6) THEN FAILED ("IN PARAM CHANGED BY FUNCTION"); END IF; P2 (REC.AA); IF REC.AA /= (10, 10, 10) THEN FAILED ("IN OUT PARAM NOT RETURNED CORRECTLY"); END IF; P3 (REC.A); IF REC.A /= (4, 4, 4, 4) THEN FAILED ("OUT PARAM NOT RETURNED CORRECTLY"); END IF; END; -- (C) RESULT; END C64109C;
35.210938
79
0.517195
39f3c84f3ae5ded67929e8b2555654a8e9c91e1c
582,646
adb
Ada
honeybee_proj/HBD/.autopilot/db/checkAxis_0.sched.adb
AnthonyKenny98/HoneyBee
5b1859fe8c50cb5bd709f53780c4e5ce7160b987
[ "MIT" ]
null
null
null
honeybee_proj/HBD/.autopilot/db/checkAxis_0.sched.adb
AnthonyKenny98/HoneyBee
5b1859fe8c50cb5bd709f53780c4e5ce7160b987
[ "MIT" ]
null
null
null
honeybee_proj/HBD/.autopilot/db/checkAxis_0.sched.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>checkAxis_0</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.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.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.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.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.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.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>242</count> <item_version>0</item_version> <item class_id="9" tracking_level="1" version="0" object_id="_7"> <Value> <Obj> <type>0</type> <id>7</id> <name>edge_p2_z_read</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>34</lineNumber> <contextFuncName>paramT</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>3</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>checkAxis</second> </first> <second>93</second> </item> <item> <first> <first>src/honeybee.c</first> <second>lineIntersectsPlane</second> </first> <second>73</second> </item> <item> <first> <first>src/honeybee.c</first> <second>paramT</second> </first> <second>34</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>255</item> <item>256</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>8</id> <name>edge_p2_y_read</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>34</lineNumber> <contextFuncName>paramT</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>93</second> </item> <item> <first> <first>src/honeybee.c</first> <second>lineIntersectsPlane</second> </first> <second>73</second> </item> <item> <first> <first>src/honeybee.c</first> <second>paramT</second> </first> <second>34</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>257</item> <item>258</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>9</id> <name>edge_p2_x_read</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>34</lineNumber> <contextFuncName>paramT</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>93</second> </item> <item> <first> <first>src/honeybee.c</first> <second>lineIntersectsPlane</second> </first> <second>73</second> </item> <item> <first> <first>src/honeybee.c</first> <second>paramT</second> </first> <second>34</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>259</item> <item>260</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>10</id> <name>edge_p1_z_read</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>34</lineNumber> <contextFuncName>paramT</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>93</second> </item> <item> <first> <first>src/honeybee.c</first> <second>lineIntersectsPlane</second> </first> <second>73</second> </item> <item> <first> <first>src/honeybee.c</first> <second>paramT</second> </first> <second>34</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>261</item> <item>262</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>11</id> <name>edge_p1_y_read</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>34</lineNumber> <contextFuncName>paramT</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>93</second> </item> <item> <first> <first>src/honeybee.c</first> <second>lineIntersectsPlane</second> </first> <second>73</second> </item> <item> <first> <first>src/honeybee.c</first> <second>paramT</second> </first> <second>34</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>263</item> <item>264</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>12</id> <name>edge_p1_x_read</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>34</lineNumber> <contextFuncName>paramT</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>93</second> </item> <item> <first> <first>src/honeybee.c</first> <second>lineIntersectsPlane</second> </first> <second>73</second> </item> <item> <first> <first>src/honeybee.c</first> <second>paramT</second> </first> <second>34</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>265</item> <item>266</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>13</id> <name>tmp_19_i_i</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>34</lineNumber> <contextFuncName>paramT</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>93</second> </item> <item> <first> <first>src/honeybee.c</first> <second>lineIntersectsPlane</second> </first> <second>73</second> </item> <item> <first> <first>src/honeybee.c</first> <second>paramT</second> </first> <second>34</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>267</item> <item>268</item> </oprand_edges> <opcode>fsub</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>14</id> <name>tmp_21_i_i</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>34</lineNumber> <contextFuncName>paramT</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>93</second> </item> <item> <first> <first>src/honeybee.c</first> <second>lineIntersectsPlane</second> </first> <second>73</second> </item> <item> <first> <first>src/honeybee.c</first> <second>paramT</second> </first> <second>34</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>269</item> <item>270</item> </oprand_edges> <opcode>fsub</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>15</id> <name>tmp_24_i_i</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>34</lineNumber> <contextFuncName>paramT</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>93</second> </item> <item> <first> <first>src/honeybee.c</first> <second>lineIntersectsPlane</second> </first> <second>73</second> </item> <item> <first> <first>src/honeybee.c</first> <second>paramT</second> </first> <second>34</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>271</item> <item>272</item> </oprand_edges> <opcode>fsub</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>16</id> <name>bitcast_ln49</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>273</item> </oprand_edges> <opcode>bitcast</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="_17"> <Value> <Obj> <type>0</type> <id>17</id> <name>trunc_ln49</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>23</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>274</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>17</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_18"> <Value> <Obj> <type>0</type> <id>18</id> <name>bitcast_ln49_9</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>275</item> </oprand_edges> <opcode>bitcast</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="_19"> <Value> <Obj> <type>0</type> <id>19</id> <name>trunc_ln49_9</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>23</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>276</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>19</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_20"> <Value> <Obj> <type>0</type> <id>20</id> <name>icmp_ln49_19</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</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>277</item> <item>279</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>2.02</m_delay> <m_topoIndex>20</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_21"> <Value> <Obj> <type>0</type> <id>21</id> <name>icmp_ln49_20</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</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>280</item> <item>281</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>2.02</m_delay> <m_topoIndex>21</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_22"> <Value> <Obj> <type>0</type> <id>22</id> <name>tmp_s</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</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>282</item> <item>283</item> </oprand_edges> <opcode>fcmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>4.19</m_delay> <m_topoIndex>10</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_23"> <Value> <Obj> <type>0</type> <id>23</id> <name>tmp_51</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</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>284</item> <item>285</item> </oprand_edges> <opcode>fcmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>4.19</m_delay> <m_topoIndex>11</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_24"> <Value> <Obj> <type>0</type> <id>24</id> <name>bitcast_ln50</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>50</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>50</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>286</item> </oprand_edges> <opcode>bitcast</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="_25"> <Value> <Obj> <type>0</type> <id>25</id> <name>trunc_ln50</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>50</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>50</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>23</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>287</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>23</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_26"> <Value> <Obj> <type>0</type> <id>26</id> <name>bitcast_ln50_7</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>50</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>50</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>288</item> </oprand_edges> <opcode>bitcast</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="_27"> <Value> <Obj> <type>0</type> <id>27</id> <name>trunc_ln50_7</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>50</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>50</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>23</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>289</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>25</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_28"> <Value> <Obj> <type>0</type> <id>28</id> <name>icmp_ln50_15</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>50</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>50</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>290</item> <item>291</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>2.02</m_delay> <m_topoIndex>26</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_29"> <Value> <Obj> <type>0</type> <id>29</id> <name>icmp_ln50_16</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>50</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>50</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>292</item> <item>293</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>2.02</m_delay> <m_topoIndex>27</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_30"> <Value> <Obj> <type>0</type> <id>30</id> <name>tmp_52</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>50</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>50</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>294</item> <item>295</item> </oprand_edges> <opcode>fcmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>4.19</m_delay> <m_topoIndex>12</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_31"> <Value> <Obj> <type>0</type> <id>31</id> <name>tmp_53</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>50</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>50</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>296</item> <item>297</item> </oprand_edges> <opcode>fcmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>4.19</m_delay> <m_topoIndex>13</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_32"> <Value> <Obj> <type>0</type> <id>32</id> <name>bitcast_ln51</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>51</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>298</item> </oprand_edges> <opcode>bitcast</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="_33"> <Value> <Obj> <type>0</type> <id>33</id> <name>trunc_ln51</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>51</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>23</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>299</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>29</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_34"> <Value> <Obj> <type>0</type> <id>34</id> <name>bitcast_ln51_11</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>51</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>300</item> </oprand_edges> <opcode>bitcast</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="_35"> <Value> <Obj> <type>0</type> <id>35</id> <name>trunc_ln51_11</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>51</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>23</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>301</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>31</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_36"> <Value> <Obj> <type>0</type> <id>36</id> <name>icmp_ln51_23</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>51</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>51</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>302</item> <item>303</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>2.02</m_delay> <m_topoIndex>32</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_37"> <Value> <Obj> <type>0</type> <id>37</id> <name>icmp_ln51_24</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>51</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>51</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>304</item> <item>305</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>2.02</m_delay> <m_topoIndex>33</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_38"> <Value> <Obj> <type>0</type> <id>38</id> <name>tmp_54</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>51</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>51</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>306</item> <item>307</item> </oprand_edges> <opcode>fcmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>4.19</m_delay> <m_topoIndex>14</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_39"> <Value> <Obj> <type>0</type> <id>39</id> <name>tmp_55</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>51</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>51</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>308</item> <item>309</item> </oprand_edges> <opcode>fcmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>4.19</m_delay> <m_topoIndex>15</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_40"> <Value> <Obj> <type>0</type> <id>40</id> <name>_ln92</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>92</lineNumber> <contextFuncName>checkAxis</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>checkAxis</second> </first> <second>92</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>310</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>34</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_41"> <Value> <Obj> <type>0</type> <id>42</id> <name>collisions_0</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>collisions</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>312</item> <item>313</item> <item>314</item> <item>315</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>35</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_42"> <Value> <Obj> <type>0</type> <id>43</id> <name>j_assign</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>i</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>317</item> <item>318</item> <item>319</item> <item>320</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>36</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_43"> <Value> <Obj> <type>0</type> <id>44</id> <name>zext_ln92</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>92</lineNumber> <contextFuncName>checkAxis</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>checkAxis</second> </first> <second>92</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>321</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>37</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_44"> <Value> <Obj> <type>0</type> <id>45</id> <name>icmp_ln92</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>92</lineNumber> <contextFuncName>checkAxis</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>checkAxis</second> </first> <second>92</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>322</item> <item>324</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.98</m_delay> <m_topoIndex>38</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_45"> <Value> <Obj> <type>0</type> <id>47</id> <name>i</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>92</lineNumber> <contextFuncName>checkAxis</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>checkAxis</second> </first> <second>92</second> </item> </second> </item> </inlineStackInfo> <originalName>i</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>325</item> <item>327</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.76</m_delay> <m_topoIndex>39</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_46"> <Value> <Obj> <type>0</type> <id>48</id> <name>_ln92</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>92</lineNumber> <contextFuncName>checkAxis</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>checkAxis</second> </first> <second>92</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>328</item> <item>329</item> <item>330</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>40</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_47"> <Value> <Obj> <type>0</type> <id>50</id> <name>R_z</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>93</lineNumber> <contextFuncName>checkAxis</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>checkAxis</second> </first> <second>93</second> </item> </second> </item> </inlineStackInfo> <originalName>plane</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>331</item> </oprand_edges> <opcode>sitofp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>8.08</m_delay> <m_topoIndex>41</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_48"> <Value> <Obj> <type>0</type> <id>51</id> <name>PR_z</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>14</lineNumber> <contextFuncName>vector</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>93</second> </item> <item> <first> <first>src/honeybee.c</first> <second>lineIntersectsPlane</second> </first> <second>63</second> </item> <item> <first> <first>src/honeybee.c</first> <second>vector</second> </first> <second>14</second> </item> </second> </item> </inlineStackInfo> <originalName>agg.result.z</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>332</item> <item>333</item> </oprand_edges> <opcode>fsub</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>64</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_49"> <Value> <Obj> <type>0</type> <id>52</id> <name>tmp_i_i</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>22</lineNumber> <contextFuncName>crossProduct</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>93</second> </item> <item> <first> <first>src/honeybee.c</first> <second>crossProduct</second> </first> <second>22</second> </item> <item> <first> <first>src/honeybee.c</first> <second>lineIntersectsPlane</second> </first> <second>67</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>334</item> <item>336</item> </oprand_edges> <opcode>fmul</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>8.43</m_delay> <m_topoIndex>65</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_50"> <Value> <Obj> <type>0</type> <id>53</id> <name>bitcast_ln22</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>22</lineNumber> <contextFuncName>crossProduct</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>93</second> </item> <item> <first> <first>src/honeybee.c</first> <second>crossProduct</second> </first> <second>22</second> </item> <item> <first> <first>src/honeybee.c</first> <second>lineIntersectsPlane</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>337</item> </oprand_edges> <opcode>bitcast</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="_51"> <Value> <Obj> <type>0</type> <id>54</id> <name>xor_ln22</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>22</lineNumber> <contextFuncName>crossProduct</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>93</second> </item> <item> <first> <first>src/honeybee.c</first> <second>crossProduct</second> </first> <second>22</second> </item> <item> <first> <first>src/honeybee.c</first> <second>lineIntersectsPlane</second> </first> <second>67</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>338</item> <item>340</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.80</m_delay> <m_topoIndex>67</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_52"> <Value> <Obj> <type>0</type> <id>55</id> <name>bitcast_ln22_3</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>22</lineNumber> <contextFuncName>crossProduct</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>93</second> </item> <item> <first> <first>src/honeybee.c</first> <second>crossProduct</second> </first> <second>22</second> </item> <item> <first> <first>src/honeybee.c</first> <second>lineIntersectsPlane</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>341</item> </oprand_edges> <opcode>bitcast</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="_53"> <Value> <Obj> <type>0</type> <id>56</id> <name>norm_y</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>22</lineNumber> <contextFuncName>crossProduct</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>93</second> </item> <item> <first> <first>src/honeybee.c</first> <second>crossProduct</second> </first> <second>22</second> </item> <item> <first> <first>src/honeybee.c</first> <second>lineIntersectsPlane</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName>agg.result.x</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>342</item> <item>343</item> </oprand_edges> <opcode>fsub</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>69</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_54"> <Value> <Obj> <type>0</type> <id>57</id> <name>tmp_i9_i</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>30</lineNumber> <contextFuncName>dotProduct</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>93</second> </item> <item> <first> <first>src/honeybee.c</first> <second>dotProduct</second> </first> <second>30</second> </item> <item> <first> <first>src/honeybee.c</first> <second>lineIntersectsPlane</second> </first> <second>70</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>344</item> <item>345</item> </oprand_edges> <opcode>fmul</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>8.43</m_delay> <m_topoIndex>70</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_55"> <Value> <Obj> <type>0</type> <id>58</id> <name>tmp_28_i_i</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>30</lineNumber> <contextFuncName>dotProduct</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>93</second> </item> <item> <first> <first>src/honeybee.c</first> <second>dotProduct</second> </first> <second>30</second> </item> <item> <first> <first>src/honeybee.c</first> <second>lineIntersectsPlane</second> </first> <second>70</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>346</item> <item>347</item> </oprand_edges> <opcode>fadd</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>73</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_56"> <Value> <Obj> <type>0</type> <id>59</id> <name>dot</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>30</lineNumber> <contextFuncName>dotProduct</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>93</second> </item> <item> <first> <first>src/honeybee.c</first> <second>dotProduct</second> </first> <second>30</second> </item> <item> <first> <first>src/honeybee.c</first> <second>lineIntersectsPlane</second> </first> <second>70</second> </item> </second> </item> </inlineStackInfo> <originalName>dot</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>348</item> <item>349</item> </oprand_edges> <opcode>fadd</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>77</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_57"> <Value> <Obj> <type>0</type> <id>60</id> <name>tmp_i11_i</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>34</lineNumber> <contextFuncName>paramT</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>93</second> </item> <item> <first> <first>src/honeybee.c</first> <second>lineIntersectsPlane</second> </first> <second>73</second> </item> <item> <first> <first>src/honeybee.c</first> <second>paramT</second> </first> <second>34</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>350</item> <item>351</item> </oprand_edges> <opcode>fmul</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>8.43</m_delay> <m_topoIndex>71</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_58"> <Value> <Obj> <type>0</type> <id>61</id> <name>tmp_i12_i</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>34</lineNumber> <contextFuncName>paramT</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>93</second> </item> <item> <first> <first>src/honeybee.c</first> <second>lineIntersectsPlane</second> </first> <second>73</second> </item> <item> <first> <first>src/honeybee.c</first> <second>paramT</second> </first> <second>34</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>352</item> <item>353</item> </oprand_edges> <opcode>fmul</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>8.43</m_delay> <m_topoIndex>72</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_59"> <Value> <Obj> <type>0</type> <id>62</id> <name>tmp_15_i_i</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>34</lineNumber> <contextFuncName>paramT</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>93</second> </item> <item> <first> <first>src/honeybee.c</first> <second>lineIntersectsPlane</second> </first> <second>73</second> </item> <item> <first> <first>src/honeybee.c</first> <second>paramT</second> </first> <second>34</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>354</item> <item>355</item> </oprand_edges> <opcode>fadd</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>74</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_60"> <Value> <Obj> <type>0</type> <id>63</id> <name>tmp_17_i_i</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>34</lineNumber> <contextFuncName>paramT</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>93</second> </item> <item> <first> <first>src/honeybee.c</first> <second>lineIntersectsPlane</second> </first> <second>73</second> </item> <item> <first> <first>src/honeybee.c</first> <second>paramT</second> </first> <second>34</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>356</item> <item>357</item> </oprand_edges> <opcode>fadd</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>78</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_61"> <Value> <Obj> <type>0</type> <id>64</id> <name>tmp_18_i_i</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>34</lineNumber> <contextFuncName>paramT</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>93</second> </item> <item> <first> <first>src/honeybee.c</first> <second>lineIntersectsPlane</second> </first> <second>73</second> </item> <item> <first> <first>src/honeybee.c</first> <second>paramT</second> </first> <second>34</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>358</item> <item>359</item> </oprand_edges> <opcode>fsub</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>80</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_62"> <Value> <Obj> <type>0</type> <id>65</id> <name>tmp_20_i_i</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>34</lineNumber> <contextFuncName>paramT</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>93</second> </item> <item> <first> <first>src/honeybee.c</first> <second>lineIntersectsPlane</second> </first> <second>73</second> </item> <item> <first> <first>src/honeybee.c</first> <second>paramT</second> </first> <second>34</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>360</item> <item>361</item> </oprand_edges> <opcode>fmul</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>8.43</m_delay> <m_topoIndex>75</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_63"> <Value> <Obj> <type>0</type> <id>66</id> <name>tmp_22_i_i</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>34</lineNumber> <contextFuncName>paramT</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>93</second> </item> <item> <first> <first>src/honeybee.c</first> <second>lineIntersectsPlane</second> </first> <second>73</second> </item> <item> <first> <first>src/honeybee.c</first> <second>paramT</second> </first> <second>34</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>362</item> <item>363</item> </oprand_edges> <opcode>fmul</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>8.43</m_delay> <m_topoIndex>76</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_64"> <Value> <Obj> <type>0</type> <id>67</id> <name>tmp_23_i_i</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>34</lineNumber> <contextFuncName>paramT</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>93</second> </item> <item> <first> <first>src/honeybee.c</first> <second>lineIntersectsPlane</second> </first> <second>73</second> </item> <item> <first> <first>src/honeybee.c</first> <second>paramT</second> </first> <second>34</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>364</item> <item>365</item> </oprand_edges> <opcode>fadd</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>79</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_65"> <Value> <Obj> <type>0</type> <id>68</id> <name>tmp_26_i_i</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>34</lineNumber> <contextFuncName>paramT</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>93</second> </item> <item> <first> <first>src/honeybee.c</first> <second>lineIntersectsPlane</second> </first> <second>73</second> </item> <item> <first> <first>src/honeybee.c</first> <second>paramT</second> </first> <second>34</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>366</item> <item>367</item> </oprand_edges> <opcode>fadd</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>81</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_66"> <Value> <Obj> <type>0</type> <id>69</id> <name>T</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>34</lineNumber> <contextFuncName>paramT</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>93</second> </item> <item> <first> <first>src/honeybee.c</first> <second>lineIntersectsPlane</second> </first> <second>73</second> </item> <item> <first> <first>src/honeybee.c</first> <second>paramT</second> </first> <second>34</second> </item> </second> </item> </inlineStackInfo> <originalName>T</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>368</item> <item>369</item> </oprand_edges> <opcode>fdiv</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>7.19</m_delay> <m_topoIndex>82</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_67"> <Value> <Obj> <type>0</type> <id>70</id> <name>tmp_i14_i</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>40</lineNumber> <contextFuncName>pointOfIntersection</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>93</second> </item> <item> <first> <first>src/honeybee.c</first> <second>lineIntersectsPlane</second> </first> <second>76</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOfIntersection</second> </first> <second>40</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>370</item> <item>371</item> </oprand_edges> <opcode>fmul</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>8.43</m_delay> <m_topoIndex>83</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_68"> <Value> <Obj> <type>0</type> <id>71</id> <name>POI_x</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>40</lineNumber> <contextFuncName>pointOfIntersection</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>93</second> </item> <item> <first> <first>src/honeybee.c</first> <second>lineIntersectsPlane</second> </first> <second>76</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOfIntersection</second> </first> <second>40</second> </item> </second> </item> </inlineStackInfo> <originalName>agg.result.x</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>372</item> <item>373</item> </oprand_edges> <opcode>fadd</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>86</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_69"> <Value> <Obj> <type>0</type> <id>72</id> <name>tmp_12_i_i</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>40</lineNumber> <contextFuncName>pointOfIntersection</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>93</second> </item> <item> <first> <first>src/honeybee.c</first> <second>lineIntersectsPlane</second> </first> <second>76</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOfIntersection</second> </first> <second>40</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>374</item> <item>375</item> </oprand_edges> <opcode>fmul</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>8.43</m_delay> <m_topoIndex>84</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_70"> <Value> <Obj> <type>0</type> <id>73</id> <name>POI_z</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>40</lineNumber> <contextFuncName>pointOfIntersection</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>93</second> </item> <item> <first> <first>src/honeybee.c</first> <second>lineIntersectsPlane</second> </first> <second>76</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOfIntersection</second> </first> <second>40</second> </item> </second> </item> </inlineStackInfo> <originalName>agg.result.y</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>376</item> <item>377</item> </oprand_edges> <opcode>fadd</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>87</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_71"> <Value> <Obj> <type>0</type> <id>74</id> <name>tmp_14_i_i</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>40</lineNumber> <contextFuncName>pointOfIntersection</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>93</second> </item> <item> <first> <first>src/honeybee.c</first> <second>lineIntersectsPlane</second> </first> <second>76</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOfIntersection</second> </first> <second>40</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>378</item> <item>379</item> </oprand_edges> <opcode>fmul</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>8.43</m_delay> <m_topoIndex>85</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_72"> <Value> <Obj> <type>0</type> <id>75</id> <name>POI_y_1</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>40</lineNumber> <contextFuncName>pointOfIntersection</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>93</second> </item> <item> <first> <first>src/honeybee.c</first> <second>lineIntersectsPlane</second> </first> <second>76</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOfIntersection</second> </first> <second>40</second> </item> </second> </item> </inlineStackInfo> <originalName>agg.result.z</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>380</item> <item>381</item> </oprand_edges> <opcode>fadd</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>88</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_73"> <Value> <Obj> <type>0</type> <id>76</id> <name>tmp</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</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>383</item> <item>384</item> <item>386</item> <item>388</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>42</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_74"> <Value> <Obj> <type>0</type> <id>77</id> <name>tmp_56</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</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>389</item> <item>390</item> <item>391</item> <item>392</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="_75"> <Value> <Obj> <type>0</type> <id>78</id> <name>icmp_ln49</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</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>393</item> <item>395</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.31</m_delay> <m_topoIndex>44</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_76"> <Value> <Obj> <type>0</type> <id>79</id> <name>or_ln49</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</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>396</item> <item>397</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>45</m_topoIndex> <m_clusterGroupNumber>1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_77"> <Value> <Obj> <type>0</type> <id>80</id> <name>icmp_ln49_21</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</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>398</item> <item>399</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.31</m_delay> <m_topoIndex>46</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_78"> <Value> <Obj> <type>0</type> <id>81</id> <name>or_ln49_9</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</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>400</item> <item>401</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>47</m_topoIndex> <m_clusterGroupNumber>1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_79"> <Value> <Obj> <type>0</type> <id>82</id> <name>and_ln49</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</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>402</item> <item>403</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.80</m_delay> <m_topoIndex>48</m_topoIndex> <m_clusterGroupNumber>1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_80"> <Value> <Obj> <type>0</type> <id>83</id> <name>and_ln49_15</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</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>404</item> <item>405</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>89</m_topoIndex> <m_clusterGroupNumber>2</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_81"> <Value> <Obj> <type>0</type> <id>84</id> <name>p_a</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</second> </item> </second> </item> </inlineStackInfo> <originalName>_a</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>406</item> <item>407</item> <item>408</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.80</m_delay> <m_topoIndex>90</m_topoIndex> <m_clusterGroupNumber>2</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_82"> <Value> <Obj> <type>0</type> <id>85</id> <name>bitcast_ln49_10</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>409</item> </oprand_edges> <opcode>bitcast</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="_83"> <Value> <Obj> <type>0</type> <id>86</id> <name>tmp_57</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</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>410</item> <item>411</item> <item>412</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>102</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_84"> <Value> <Obj> <type>0</type> <id>87</id> <name>trunc_ln49_10</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>23</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>414</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>103</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_85"> <Value> <Obj> <type>0</type> <id>88</id> <name>p_Val2_12</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</second> </item> </second> </item> </inlineStackInfo> <originalName>val</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>415</item> </oprand_edges> <opcode>bitcast</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="_86"> <Value> <Obj> <type>0</type> <id>89</id> <name>tmp_V</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>416</item> <item>417</item> <item>418</item> <item>419</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>105</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_87"> <Value> <Obj> <type>0</type> <id>90</id> <name>tmp_V_7</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>23</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>420</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>106</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_88"> <Value> <Obj> <type>0</type> <id>91</id> <name>icmp_ln49_22</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</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>421</item> <item>422</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.31</m_delay> <m_topoIndex>107</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_89"> <Value> <Obj> <type>0</type> <id>92</id> <name>icmp_ln49_23</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</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>423</item> <item>424</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>2.02</m_delay> <m_topoIndex>108</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_90"> <Value> <Obj> <type>0</type> <id>93</id> <name>or_ln49_10</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</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>425</item> <item>426</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>153</m_topoIndex> <m_clusterGroupNumber>3</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_91"> <Value> <Obj> <type>0</type> <id>94</id> <name>icmp_ln49_24</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</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>427</item> <item>428</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.31</m_delay> <m_topoIndex>109</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_92"> <Value> <Obj> <type>0</type> <id>95</id> <name>icmp_ln49_25</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</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>429</item> <item>430</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>2.02</m_delay> <m_topoIndex>154</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_93"> <Value> <Obj> <type>0</type> <id>96</id> <name>or_ln49_11</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</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>431</item> <item>432</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>155</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_94"> <Value> <Obj> <type>0</type> <id>97</id> <name>and_ln49_16</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</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>433</item> <item>434</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>156</m_topoIndex> <m_clusterGroupNumber>3</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_95"> <Value> <Obj> <type>0</type> <id>98</id> <name>tmp_58</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</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>435</item> <item>436</item> </oprand_edges> <opcode>fcmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>4.19</m_delay> <m_topoIndex>110</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_96"> <Value> <Obj> <type>0</type> <id>99</id> <name>and_ln49_17</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</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>437</item> <item>438</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>157</m_topoIndex> <m_clusterGroupNumber>3</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_97"> <Value> <Obj> <type>0</type> <id>100</id> <name>and_ln49_18</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</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>439</item> <item>440</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>91</m_topoIndex> <m_clusterGroupNumber>4</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_98"> <Value> <Obj> <type>0</type> <id>101</id> <name>p_a_11</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</second> </item> </second> </item> </inlineStackInfo> <originalName>_a</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>441</item> <item>442</item> <item>443</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.80</m_delay> <m_topoIndex>92</m_topoIndex> <m_clusterGroupNumber>4</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_99"> <Value> <Obj> <type>0</type> <id>102</id> <name>bitcast_ln49_12</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>444</item> </oprand_edges> <opcode>bitcast</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="_100"> <Value> <Obj> <type>0</type> <id>103</id> <name>tmp_59</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</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>445</item> <item>446</item> <item>447</item> <item>448</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>112</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_101"> <Value> <Obj> <type>0</type> <id>104</id> <name>trunc_ln49_12</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>23</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>449</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>113</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_102"> <Value> <Obj> <type>0</type> <id>105</id> <name>icmp_ln49_26</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</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>450</item> <item>451</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.31</m_delay> <m_topoIndex>114</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_103"> <Value> <Obj> <type>0</type> <id>106</id> <name>icmp_ln49_27</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</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>452</item> <item>453</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>2.02</m_delay> <m_topoIndex>115</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_104"> <Value> <Obj> <type>0</type> <id>107</id> <name>or_ln49_12</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</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>454</item> <item>455</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>158</m_topoIndex> <m_clusterGroupNumber>5</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_105"> <Value> <Obj> <type>0</type> <id>108</id> <name>and_ln49_19</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</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>456</item> <item>457</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>159</m_topoIndex> <m_clusterGroupNumber>5</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_106"> <Value> <Obj> <type>0</type> <id>109</id> <name>tmp_60</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</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>458</item> <item>459</item> </oprand_edges> <opcode>fcmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>4.19</m_delay> <m_topoIndex>116</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_107"> <Value> <Obj> <type>0</type> <id>110</id> <name>and_ln49_20</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</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>460</item> <item>461</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.80</m_delay> <m_topoIndex>160</m_topoIndex> <m_clusterGroupNumber>5</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_108"> <Value> <Obj> <type>0</type> <id>111</id> <name>tmp_61</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>50</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>50</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>462</item> <item>463</item> <item>464</item> <item>465</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="_109"> <Value> <Obj> <type>0</type> <id>112</id> <name>tmp_62</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>50</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>50</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>466</item> <item>467</item> <item>468</item> <item>469</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="_110"> <Value> <Obj> <type>0</type> <id>113</id> <name>icmp_ln50</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>50</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>50</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>470</item> <item>471</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.31</m_delay> <m_topoIndex>51</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_111"> <Value> <Obj> <type>0</type> <id>114</id> <name>or_ln50</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>50</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>50</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>472</item> <item>473</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>52</m_topoIndex> <m_clusterGroupNumber>6</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_112"> <Value> <Obj> <type>0</type> <id>115</id> <name>icmp_ln50_17</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>50</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>50</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>474</item> <item>475</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.31</m_delay> <m_topoIndex>53</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_113"> <Value> <Obj> <type>0</type> <id>116</id> <name>or_ln50_11</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>50</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>50</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>476</item> <item>477</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>54</m_topoIndex> <m_clusterGroupNumber>6</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_114"> <Value> <Obj> <type>0</type> <id>117</id> <name>and_ln50</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>50</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>50</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>478</item> <item>479</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.80</m_delay> <m_topoIndex>55</m_topoIndex> <m_clusterGroupNumber>6</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_115"> <Value> <Obj> <type>0</type> <id>118</id> <name>and_ln50_9</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>50</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>50</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>480</item> <item>481</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>93</m_topoIndex> <m_clusterGroupNumber>7</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_116"> <Value> <Obj> <type>0</type> <id>119</id> <name>p_a_12</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>50</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>50</second> </item> </second> </item> </inlineStackInfo> <originalName>_a</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>482</item> <item>483</item> <item>484</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.80</m_delay> <m_topoIndex>94</m_topoIndex> <m_clusterGroupNumber>7</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_117"> <Value> <Obj> <type>0</type> <id>120</id> <name>bitcast_ln50_8</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>50</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>50</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>485</item> </oprand_edges> <opcode>bitcast</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="_118"> <Value> <Obj> <type>0</type> <id>121</id> <name>tmp_63</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>50</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>50</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>486</item> <item>487</item> <item>488</item> <item>489</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>118</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_119"> <Value> <Obj> <type>0</type> <id>122</id> <name>trunc_ln50_8</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>50</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>50</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>23</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>490</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>119</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_120"> <Value> <Obj> <type>0</type> <id>123</id> <name>bitcast_ln50_9</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>50</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>50</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>491</item> </oprand_edges> <opcode>bitcast</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="_121"> <Value> <Obj> <type>0</type> <id>124</id> <name>tmp_64</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>50</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>50</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>492</item> <item>493</item> <item>494</item> <item>495</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>121</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_122"> <Value> <Obj> <type>0</type> <id>125</id> <name>trunc_ln50_9</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>50</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>50</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>23</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>496</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>122</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_123"> <Value> <Obj> <type>0</type> <id>126</id> <name>icmp_ln50_18</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>50</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>50</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>497</item> <item>498</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.31</m_delay> <m_topoIndex>123</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_124"> <Value> <Obj> <type>0</type> <id>127</id> <name>icmp_ln50_19</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>50</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>50</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>499</item> <item>500</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>2.02</m_delay> <m_topoIndex>124</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_125"> <Value> <Obj> <type>0</type> <id>128</id> <name>or_ln50_12</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>50</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>50</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>501</item> <item>502</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>161</m_topoIndex> <m_clusterGroupNumber>8</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_126"> <Value> <Obj> <type>0</type> <id>129</id> <name>icmp_ln50_20</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>50</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>50</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>503</item> <item>504</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.31</m_delay> <m_topoIndex>125</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_127"> <Value> <Obj> <type>0</type> <id>130</id> <name>icmp_ln50_21</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>50</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>50</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>505</item> <item>506</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>2.02</m_delay> <m_topoIndex>126</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_128"> <Value> <Obj> <type>0</type> <id>131</id> <name>or_ln50_13</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>50</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>50</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>507</item> <item>508</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>127</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_129"> <Value> <Obj> <type>0</type> <id>132</id> <name>and_ln50_10</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>50</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>50</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>509</item> <item>510</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>162</m_topoIndex> <m_clusterGroupNumber>8</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_130"> <Value> <Obj> <type>0</type> <id>133</id> <name>tmp_66</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>50</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>50</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>511</item> <item>512</item> </oprand_edges> <opcode>fcmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>4.19</m_delay> <m_topoIndex>128</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_131"> <Value> <Obj> <type>0</type> <id>134</id> <name>and_ln50_11</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>50</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>50</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>513</item> <item>514</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.80</m_delay> <m_topoIndex>163</m_topoIndex> <m_clusterGroupNumber>8</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_132"> <Value> <Obj> <type>0</type> <id>135</id> <name>xor_ln50</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>50</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>50</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>515</item> <item>517</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.00</m_delay> <m_topoIndex>164</m_topoIndex> <m_clusterGroupNumber>9</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_133"> <Value> <Obj> <type>0</type> <id>136</id> <name>and_ln50_12</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>50</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>50</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>518</item> <item>519</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>95</m_topoIndex> <m_clusterGroupNumber>10</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_134"> <Value> <Obj> <type>0</type> <id>137</id> <name>p_a_13</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>50</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>50</second> </item> </second> </item> </inlineStackInfo> <originalName>_a</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>520</item> <item>521</item> <item>522</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.80</m_delay> <m_topoIndex>96</m_topoIndex> <m_clusterGroupNumber>10</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_135"> <Value> <Obj> <type>0</type> <id>138</id> <name>tmp_67</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>51</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>51</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>523</item> <item>524</item> <item>525</item> <item>526</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="_136"> <Value> <Obj> <type>0</type> <id>139</id> <name>tmp_68</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>51</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>51</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>527</item> <item>528</item> <item>529</item> <item>530</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>57</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_137"> <Value> <Obj> <type>0</type> <id>140</id> <name>icmp_ln51</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>51</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>51</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>531</item> <item>532</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.31</m_delay> <m_topoIndex>58</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_138"> <Value> <Obj> <type>0</type> <id>141</id> <name>or_ln51</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>51</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>51</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>533</item> <item>534</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>59</m_topoIndex> <m_clusterGroupNumber>11</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_139"> <Value> <Obj> <type>0</type> <id>142</id> <name>icmp_ln51_25</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>51</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>51</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>535</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>1.31</m_delay> <m_topoIndex>60</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_140"> <Value> <Obj> <type>0</type> <id>143</id> <name>or_ln51_13</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>51</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>51</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>537</item> <item>538</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>61</m_topoIndex> <m_clusterGroupNumber>11</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_141"> <Value> <Obj> <type>0</type> <id>144</id> <name>and_ln51</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>51</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>51</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>539</item> <item>540</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.80</m_delay> <m_topoIndex>62</m_topoIndex> <m_clusterGroupNumber>11</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_142"> <Value> <Obj> <type>0</type> <id>145</id> <name>and_ln51_25</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>51</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>51</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>541</item> <item>542</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>97</m_topoIndex> <m_clusterGroupNumber>12</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_143"> <Value> <Obj> <type>0</type> <id>146</id> <name>p_a_14</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>51</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName>_a</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>543</item> <item>544</item> <item>545</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.80</m_delay> <m_topoIndex>98</m_topoIndex> <m_clusterGroupNumber>12</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_144"> <Value> <Obj> <type>0</type> <id>147</id> <name>and_ln51_26</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>51</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>51</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>546</item> <item>547</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>99</m_topoIndex> <m_clusterGroupNumber>13</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_145"> <Value> <Obj> <type>0</type> <id>148</id> <name>p_a_15</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>51</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName>_a</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>548</item> <item>549</item> <item>550</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.80</m_delay> <m_topoIndex>100</m_topoIndex> <m_clusterGroupNumber>13</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_146"> <Value> <Obj> <type>0</type> <id>149</id> <name>bitcast_ln51_12</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>51</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>551</item> </oprand_edges> <opcode>bitcast</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="_147"> <Value> <Obj> <type>0</type> <id>150</id> <name>tmp_69</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>51</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>51</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>552</item> <item>553</item> <item>554</item> <item>555</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="_148"> <Value> <Obj> <type>0</type> <id>151</id> <name>trunc_ln51_12</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>51</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>23</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>556</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="_149"> <Value> <Obj> <type>0</type> <id>152</id> <name>p_Val2_s</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>51</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName>val</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>557</item> </oprand_edges> <opcode>bitcast</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>165</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_150"> <Value> <Obj> <type>0</type> <id>153</id> <name>tmp_V_8</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>51</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>558</item> <item>559</item> <item>560</item> <item>561</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>166</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_151"> <Value> <Obj> <type>0</type> <id>154</id> <name>tmp_V_9</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>51</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>23</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>562</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>167</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_152"> <Value> <Obj> <type>0</type> <id>155</id> <name>icmp_ln51_26</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>51</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>51</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>563</item> <item>564</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.31</m_delay> <m_topoIndex>132</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_153"> <Value> <Obj> <type>0</type> <id>156</id> <name>icmp_ln51_27</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>51</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>51</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>565</item> <item>566</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>2.02</m_delay> <m_topoIndex>133</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_154"> <Value> <Obj> <type>0</type> <id>157</id> <name>or_ln51_14</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>51</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>51</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>567</item> <item>568</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>168</m_topoIndex> <m_clusterGroupNumber>14</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_155"> <Value> <Obj> <type>0</type> <id>158</id> <name>icmp_ln51_28</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>51</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>51</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>569</item> <item>570</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.31</m_delay> <m_topoIndex>169</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_156"> <Value> <Obj> <type>0</type> <id>159</id> <name>icmp_ln51_29</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>51</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>51</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>571</item> <item>572</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>2.02</m_delay> <m_topoIndex>170</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_157"> <Value> <Obj> <type>0</type> <id>160</id> <name>or_ln51_15</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>51</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>51</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>573</item> <item>574</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>171</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_158"> <Value> <Obj> <type>0</type> <id>161</id> <name>and_ln51_27</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>51</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>51</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>575</item> <item>576</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>172</m_topoIndex> <m_clusterGroupNumber>14</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_159"> <Value> <Obj> <type>0</type> <id>162</id> <name>tmp_70</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>51</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>51</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>577</item> <item>578</item> </oprand_edges> <opcode>fcmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>4.19</m_delay> <m_topoIndex>134</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_160"> <Value> <Obj> <type>0</type> <id>163</id> <name>and_ln51_28</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>51</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>51</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>579</item> <item>580</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>173</m_topoIndex> <m_clusterGroupNumber>14</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_161"> <Value> <Obj> <type>0</type> <id>164</id> <name>and_ln49_21</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</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>581</item> <item>582</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.80</m_delay> <m_topoIndex>174</m_topoIndex> <m_clusterGroupNumber>3</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_162"> <Value> <Obj> <type>0</type> <id>165</id> <name>xor_ln49</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</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>583</item> <item>584</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.80</m_delay> <m_topoIndex>175</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_163"> <Value> <Obj> <type>0</type> <id>166</id> <name>or_ln50_14</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>50</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>50</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>585</item> <item>586</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>176</m_topoIndex> <m_clusterGroupNumber>9</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_164"> <Value> <Obj> <type>0</type> <id>167</id> <name>or_ln50_15</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>50</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>50</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>587</item> <item>588</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>177</m_topoIndex> <m_clusterGroupNumber>9</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_165"> <Value> <Obj> <type>0</type> <id>168</id> <name>bitcast_ln51_14</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>51</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>589</item> </oprand_edges> <opcode>bitcast</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>135</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_166"> <Value> <Obj> <type>0</type> <id>169</id> <name>tmp_71</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>51</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>51</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>590</item> <item>591</item> <item>592</item> <item>593</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>136</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_167"> <Value> <Obj> <type>0</type> <id>170</id> <name>trunc_ln51_14</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>51</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>23</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>594</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>137</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_168"> <Value> <Obj> <type>0</type> <id>171</id> <name>icmp_ln51_30</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>51</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>51</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>595</item> <item>596</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.31</m_delay> <m_topoIndex>138</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_169"> <Value> <Obj> <type>0</type> <id>172</id> <name>icmp_ln51_31</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>51</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>51</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>597</item> <item>598</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>2.02</m_delay> <m_topoIndex>139</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_170"> <Value> <Obj> <type>0</type> <id>173</id> <name>or_ln51_16</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>51</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>51</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>599</item> <item>600</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>178</m_topoIndex> <m_clusterGroupNumber>15</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_171"> <Value> <Obj> <type>0</type> <id>174</id> <name>and_ln51_29</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>51</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>51</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>601</item> <item>602</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>179</m_topoIndex> <m_clusterGroupNumber>15</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_172"> <Value> <Obj> <type>0</type> <id>175</id> <name>tmp_72</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>51</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>51</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>603</item> <item>604</item> </oprand_edges> <opcode>fcmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>4.19</m_delay> <m_topoIndex>140</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_173"> <Value> <Obj> <type>0</type> <id>176</id> <name>and_ln51_30</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>51</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>51</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>605</item> <item>606</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>180</m_topoIndex> <m_clusterGroupNumber>15</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_174"> <Value> <Obj> <type>0</type> <id>177</id> <name>and_ln51_31</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>51</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>51</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>607</item> <item>608</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.80</m_delay> <m_topoIndex>181</m_topoIndex> <m_clusterGroupNumber>14</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_175"> <Value> <Obj> <type>0</type> <id>178</id> <name>bitcast_ln51_15</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>51</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>609</item> </oprand_edges> <opcode>bitcast</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>141</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_176"> <Value> <Obj> <type>0</type> <id>179</id> <name>tmp_73</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>51</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>51</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>610</item> <item>611</item> <item>612</item> <item>613</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>142</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_177"> <Value> <Obj> <type>0</type> <id>180</id> <name>trunc_ln51_15</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>51</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>23</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>614</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>143</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_178"> <Value> <Obj> <type>0</type> <id>181</id> <name>icmp_ln51_32</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>51</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>51</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>615</item> <item>616</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.31</m_delay> <m_topoIndex>144</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_179"> <Value> <Obj> <type>0</type> <id>182</id> <name>icmp_ln51_33</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>51</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>51</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>617</item> <item>618</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>2.02</m_delay> <m_topoIndex>145</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_180"> <Value> <Obj> <type>0</type> <id>183</id> <name>or_ln51_17</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>51</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>51</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>619</item> <item>620</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>182</m_topoIndex> <m_clusterGroupNumber>16</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_181"> <Value> <Obj> <type>0</type> <id>184</id> <name>and_ln51_32</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>51</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>51</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>621</item> <item>622</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>183</m_topoIndex> <m_clusterGroupNumber>16</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_182"> <Value> <Obj> <type>0</type> <id>185</id> <name>tmp_74</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>51</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>51</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>623</item> <item>624</item> </oprand_edges> <opcode>fcmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>4.19</m_delay> <m_topoIndex>146</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_183"> <Value> <Obj> <type>0</type> <id>186</id> <name>and_ln51_33</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>51</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>51</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>625</item> <item>626</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.80</m_delay> <m_topoIndex>184</m_topoIndex> <m_clusterGroupNumber>16</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_184"> <Value> <Obj> <type>0</type> <id>187</id> <name>and_ln51_34</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>51</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>51</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>627</item> <item>628</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.80</m_delay> <m_topoIndex>185</m_topoIndex> <m_clusterGroupNumber>15</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_185"> <Value> <Obj> <type>0</type> <id>188</id> <name>or_ln51_18</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>51</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>51</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>629</item> <item>630</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>186</m_topoIndex> <m_clusterGroupNumber>9</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_186"> <Value> <Obj> <type>0</type> <id>189</id> <name>and_ln51_35</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>51</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>51</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>631</item> <item>632</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>187</m_topoIndex> <m_clusterGroupNumber>9</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_187"> <Value> <Obj> <type>0</type> <id>190</id> <name>and_ln51_36</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>51</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>108</second> </item> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>51</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>633</item> <item>634</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.80</m_delay> <m_topoIndex>188</m_topoIndex> <m_clusterGroupNumber>9</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_188"> <Value> <Obj> <type>0</type> <id>191</id> <name>p_Result_s</name> <fileName>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/src/hls/utils/x_hls_utils.h</fileName> <fileDirectory>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</fileDirectory> <lineNumber>316</lineNumber> <contextFuncName>fp_struct</contextFuncName> <inlineStackInfo> <count>2</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>checkAxis</second> </first> <second>109</second> </item> </second> </item> <item> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</first> <second> <count>4</count> <item_version>0</item_version> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first> <second>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</second> </first> <second>13</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first> <second>generic_cast_IEEE754&amp;lt;int, float&amp;gt;</second> </first> <second>117</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first> <second>__hls_fptosi_float_i32</second> </first> <second>51</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/src/hls/utils/x_hls_utils.h</first> <second>fp_struct</second> </first> <second>316</second> </item> </second> </item> </inlineStackInfo> <originalName>__Result__</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>636</item> <item>637</item> <item>639</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>189</m_topoIndex> <m_clusterGroupNumber>17</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_189"> <Value> <Obj> <type>0</type> <id>192</id> <name>mantissa_V</name> <fileName>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</fileName> <fileDirectory>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</fileDirectory> <lineNumber>15</lineNumber> <contextFuncName>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</contextFuncName> <inlineStackInfo> <count>2</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>checkAxis</second> </first> <second>109</second> </item> </second> </item> <item> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first> <second>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</second> </first> <second>15</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first> <second>generic_cast_IEEE754&amp;lt;int, float&amp;gt;</second> </first> <second>117</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first> <second>__hls_fptosi_float_i32</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName>mantissa.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>25</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>641</item> <item>642</item> <item>643</item> <item>645</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>190</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_190"> <Value> <Obj> <type>0</type> <id>193</id> <name>zext_ln682</name> <fileName>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</fileName> <fileDirectory>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</fileDirectory> <lineNumber>15</lineNumber> <contextFuncName>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</contextFuncName> <inlineStackInfo> <count>2</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>checkAxis</second> </first> <second>109</second> </item> </second> </item> <item> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first> <second>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</second> </first> <second>15</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first> <second>generic_cast_IEEE754&amp;lt;int, float&amp;gt;</second> </first> <second>117</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first> <second>__hls_fptosi_float_i32</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>79</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>646</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>191</m_topoIndex> <m_clusterGroupNumber>18</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_191"> <Value> <Obj> <type>0</type> <id>194</id> <name>zext_ln339</name> <fileName>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/src/hls/utils/x_hls_utils.h</fileName> <fileDirectory>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</fileDirectory> <lineNumber>339</lineNumber> <contextFuncName>expv</contextFuncName> <inlineStackInfo> <count>2</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>checkAxis</second> </first> <second>109</second> </item> </second> </item> <item> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</first> <second> <count>4</count> <item_version>0</item_version> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first> <second>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</second> </first> <second>18</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first> <second>generic_cast_IEEE754&amp;lt;int, float&amp;gt;</second> </first> <second>117</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first> <second>__hls_fptosi_float_i32</second> </first> <second>51</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/src/hls/utils/x_hls_utils.h</first> <second>expv</second> </first> <second>339</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>647</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>147</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_192"> <Value> <Obj> <type>0</type> <id>195</id> <name>add_ln339</name> <fileName>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/src/hls/utils/x_hls_utils.h</fileName> <fileDirectory>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</fileDirectory> <lineNumber>339</lineNumber> <contextFuncName>expv</contextFuncName> <inlineStackInfo> <count>2</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>checkAxis</second> </first> <second>109</second> </item> </second> </item> <item> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</first> <second> <count>4</count> <item_version>0</item_version> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first> <second>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</second> </first> <second>18</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first> <second>generic_cast_IEEE754&amp;lt;int, float&amp;gt;</second> </first> <second>117</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first> <second>__hls_fptosi_float_i32</second> </first> <second>51</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/src/hls/utils/x_hls_utils.h</first> <second>expv</second> </first> <second>339</second> </item> </second> </item> </inlineStackInfo> <originalName>sh</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>649</item> <item>650</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.30</m_delay> <m_topoIndex>148</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_193"> <Value> <Obj> <type>0</type> <id>196</id> <name>isNeg</name> <fileName>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</fileName> <fileDirectory>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</fileDirectory> <lineNumber>18</lineNumber> <contextFuncName>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</contextFuncName> <inlineStackInfo> <count>2</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>checkAxis</second> </first> <second>109</second> </item> </second> </item> <item> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first> <second>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</second> </first> <second>18</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first> <second>generic_cast_IEEE754&amp;lt;int, float&amp;gt;</second> </first> <second>117</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first> <second>__hls_fptosi_float_i32</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName>isNeg</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>652</item> <item>653</item> <item>655</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>149</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_194"> <Value> <Obj> <type>0</type> <id>197</id> <name>sub_ln1311</name> <fileName>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</fileName> <fileDirectory>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</fileDirectory> <lineNumber>18</lineNumber> <contextFuncName>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</contextFuncName> <inlineStackInfo> <count>2</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>checkAxis</second> </first> <second>109</second> </item> </second> </item> <item> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first> <second>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</second> </first> <second>18</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first> <second>generic_cast_IEEE754&amp;lt;int, float&amp;gt;</second> </first> <second>117</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first> <second>__hls_fptosi_float_i32</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>657</item> <item>658</item> </oprand_edges> <opcode>sub</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.30</m_delay> <m_topoIndex>150</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_195"> <Value> <Obj> <type>0</type> <id>198</id> <name>sext_ln1311</name> <fileName>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</fileName> <fileDirectory>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</fileDirectory> <lineNumber>18</lineNumber> <contextFuncName>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</contextFuncName> <inlineStackInfo> <count>2</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>checkAxis</second> </first> <second>109</second> </item> </second> </item> <item> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first> <second>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</second> </first> <second>18</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first> <second>generic_cast_IEEE754&amp;lt;int, float&amp;gt;</second> </first> <second>117</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first> <second>__hls_fptosi_float_i32</second> </first> <second>51</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>659</item> </oprand_edges> <opcode>sext</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>151</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_196"> <Value> <Obj> <type>0</type> <id>199</id> <name>ush</name> <fileName>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</fileName> <fileDirectory>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</fileDirectory> <lineNumber>18</lineNumber> <contextFuncName>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</contextFuncName> <inlineStackInfo> <count>2</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>checkAxis</second> </first> <second>109</second> </item> </second> </item> <item> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first> <second>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</second> </first> <second>18</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first> <second>generic_cast_IEEE754&amp;lt;int, float&amp;gt;</second> </first> <second>117</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first> <second>__hls_fptosi_float_i32</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName>sh</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>660</item> <item>661</item> <item>662</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.72</m_delay> <m_topoIndex>152</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_197"> <Value> <Obj> <type>0</type> <id>200</id> <name>sext_ln1311_7</name> <fileName>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</fileName> <fileDirectory>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</fileDirectory> <lineNumber>18</lineNumber> <contextFuncName>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</contextFuncName> <inlineStackInfo> <count>2</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>checkAxis</second> </first> <second>109</second> </item> </second> </item> <item> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first> <second>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</second> </first> <second>18</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first> <second>generic_cast_IEEE754&amp;lt;int, float&amp;gt;</second> </first> <second>117</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first> <second>__hls_fptosi_float_i32</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>663</item> </oprand_edges> <opcode>sext</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>192</m_topoIndex> <m_clusterGroupNumber>18</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_198"> <Value> <Obj> <type>0</type> <id>201</id> <name>sext_ln1311_10</name> <fileName>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</fileName> <fileDirectory>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</fileDirectory> <lineNumber>18</lineNumber> <contextFuncName>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</contextFuncName> <inlineStackInfo> <count>2</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>checkAxis</second> </first> <second>109</second> </item> </second> </item> <item> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first> <second>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</second> </first> <second>18</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first> <second>generic_cast_IEEE754&amp;lt;int, float&amp;gt;</second> </first> <second>117</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first> <second>__hls_fptosi_float_i32</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>25</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>664</item> </oprand_edges> <opcode>sext</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>193</m_topoIndex> <m_clusterGroupNumber>18</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_199"> <Value> <Obj> <type>0</type> <id>202</id> <name>zext_ln1287</name> <fileName>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</fileName> <fileDirectory>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</fileDirectory> <lineNumber>18</lineNumber> <contextFuncName>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</contextFuncName> <inlineStackInfo> <count>2</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>checkAxis</second> </first> <second>109</second> </item> </second> </item> <item> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first> <second>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</second> </first> <second>18</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first> <second>generic_cast_IEEE754&amp;lt;int, float&amp;gt;</second> </first> <second>117</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first> <second>__hls_fptosi_float_i32</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>79</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>665</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>194</m_topoIndex> <m_clusterGroupNumber>18</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_200"> <Value> <Obj> <type>0</type> <id>203</id> <name>r_V</name> <fileName>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</fileName> <fileDirectory>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</fileDirectory> <lineNumber>18</lineNumber> <contextFuncName>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</contextFuncName> <inlineStackInfo> <count>2</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>checkAxis</second> </first> <second>109</second> </item> </second> </item> <item> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first> <second>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</second> </first> <second>18</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first> <second>generic_cast_IEEE754&amp;lt;int, float&amp;gt;</second> </first> <second>117</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first> <second>__hls_fptosi_float_i32</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName>r.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>25</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>666</item> <item>667</item> </oprand_edges> <opcode>lshr</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>195</m_topoIndex> <m_clusterGroupNumber>18</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_201"> <Value> <Obj> <type>0</type> <id>204</id> <name>r_V_7</name> <fileName>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</fileName> <fileDirectory>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</fileDirectory> <lineNumber>18</lineNumber> <contextFuncName>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</contextFuncName> <inlineStackInfo> <count>2</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>checkAxis</second> </first> <second>109</second> </item> </second> </item> <item> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first> <second>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</second> </first> <second>18</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first> <second>generic_cast_IEEE754&amp;lt;int, float&amp;gt;</second> </first> <second>117</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first> <second>__hls_fptosi_float_i32</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName>r.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>79</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>668</item> <item>669</item> </oprand_edges> <opcode>shl</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>196</m_topoIndex> <m_clusterGroupNumber>18</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_202"> <Value> <Obj> <type>0</type> <id>205</id> <name>tmp_77</name> <fileName>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</fileName> <fileDirectory>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</fileDirectory> <lineNumber>21</lineNumber> <contextFuncName>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</contextFuncName> <inlineStackInfo> <count>2</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>checkAxis</second> </first> <second>109</second> </item> </second> </item> <item> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first> <second>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</second> </first> <second>21</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first> <second>generic_cast_IEEE754&amp;lt;int, float&amp;gt;</second> </first> <second>117</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first> <second>__hls_fptosi_float_i32</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>671</item> <item>672</item> <item>674</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>197</m_topoIndex> <m_clusterGroupNumber>18</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_203"> <Value> <Obj> <type>0</type> <id>206</id> <name>zext_ln662</name> <fileName>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</fileName> <fileDirectory>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</fileDirectory> <lineNumber>21</lineNumber> <contextFuncName>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</contextFuncName> <inlineStackInfo> <count>2</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>checkAxis</second> </first> <second>109</second> </item> </second> </item> <item> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first> <second>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</second> </first> <second>21</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first> <second>generic_cast_IEEE754&amp;lt;int, float&amp;gt;</second> </first> <second>117</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first> <second>__hls_fptosi_float_i32</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>675</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>198</m_topoIndex> <m_clusterGroupNumber>18</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_204"> <Value> <Obj> <type>0</type> <id>207</id> <name>tmp_65</name> <fileName>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</fileName> <fileDirectory>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</fileDirectory> <lineNumber>21</lineNumber> <contextFuncName>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</contextFuncName> <inlineStackInfo> <count>2</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>checkAxis</second> </first> <second>109</second> </item> </second> </item> <item> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first> <second>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</second> </first> <second>21</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first> <second>generic_cast_IEEE754&amp;lt;int, float&amp;gt;</second> </first> <second>117</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first> <second>__hls_fptosi_float_i32</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>677</item> <item>678</item> <item>679</item> <item>681</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>199</m_topoIndex> <m_clusterGroupNumber>18</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_205"> <Value> <Obj> <type>0</type> <id>208</id> <name>p_Val2_15</name> <fileName>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</fileName> <fileDirectory>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</fileDirectory> <lineNumber>18</lineNumber> <contextFuncName>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</contextFuncName> <inlineStackInfo> <count>2</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>checkAxis</second> </first> <second>109</second> </item> </second> </item> <item> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first> <second>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</second> </first> <second>18</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first> <second>generic_cast_IEEE754&amp;lt;int, float&amp;gt;</second> </first> <second>117</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first> <second>__hls_fptosi_float_i32</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName>__Val2__</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>682</item> <item>683</item> <item>684</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>2.96</m_delay> <m_topoIndex>200</m_topoIndex> <m_clusterGroupNumber>18</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_206"> <Value> <Obj> <type>0</type> <id>209</id> <name>result_V_2</name> <fileName>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</fileName> <fileDirectory>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</contextFuncName> <inlineStackInfo> <count>2</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>checkAxis</second> </first> <second>109</second> </item> </second> </item> <item> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first> <second>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</second> </first> <second>59</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first> <second>generic_cast_IEEE754&amp;lt;int, float&amp;gt;</second> </first> <second>117</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first> <second>__hls_fptosi_float_i32</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName>result.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>686</item> <item>687</item> </oprand_edges> <opcode>sub</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.89</m_delay> <m_topoIndex>201</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_207"> <Value> <Obj> <type>0</type> <id>210</id> <name>p_Val2_16</name> <fileName>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</fileName> <fileDirectory>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</contextFuncName> <inlineStackInfo> <count>2</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>checkAxis</second> </first> <second>109</second> </item> </second> </item> <item> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first> <second>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</second> </first> <second>59</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first> <second>generic_cast_IEEE754&amp;lt;int, float&amp;gt;</second> </first> <second>117</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first> <second>__hls_fptosi_float_i32</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName>__Val2__</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>688</item> <item>689</item> <item>690</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>202</m_topoIndex> <m_clusterGroupNumber>17</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_208"> <Value> <Obj> <type>0</type> <id>211</id> <name>p_Result_3</name> <fileName>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/src/hls/utils/x_hls_utils.h</fileName> <fileDirectory>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</fileDirectory> <lineNumber>316</lineNumber> <contextFuncName>fp_struct</contextFuncName> <inlineStackInfo> <count>2</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>checkAxis</second> </first> <second>109</second> </item> </second> </item> <item> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</first> <second> <count>4</count> <item_version>0</item_version> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first> <second>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</second> </first> <second>13</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first> <second>generic_cast_IEEE754&amp;lt;int, float&amp;gt;</second> </first> <second>117</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first> <second>__hls_fptosi_float_i32</second> </first> <second>51</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/src/hls/utils/x_hls_utils.h</first> <second>fp_struct</second> </first> <second>316</second> </item> </second> </item> </inlineStackInfo> <originalName>__Result__</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>691</item> <item>692</item> <item>693</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>203</m_topoIndex> <m_clusterGroupNumber>17</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_209"> <Value> <Obj> <type>0</type> <id>212</id> <name>mantissa_V_3</name> <fileName>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</fileName> <fileDirectory>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</fileDirectory> <lineNumber>15</lineNumber> <contextFuncName>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</contextFuncName> <inlineStackInfo> <count>2</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>checkAxis</second> </first> <second>109</second> </item> </second> </item> <item> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first> <second>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</second> </first> <second>15</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first> <second>generic_cast_IEEE754&amp;lt;int, float&amp;gt;</second> </first> <second>117</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first> <second>__hls_fptosi_float_i32</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName>mantissa.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>25</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>694</item> <item>695</item> <item>696</item> <item>697</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>204</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_210"> <Value> <Obj> <type>0</type> <id>213</id> <name>zext_ln682_3</name> <fileName>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</fileName> <fileDirectory>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</fileDirectory> <lineNumber>15</lineNumber> <contextFuncName>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</contextFuncName> <inlineStackInfo> <count>2</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>checkAxis</second> </first> <second>109</second> </item> </second> </item> <item> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first> <second>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</second> </first> <second>15</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first> <second>generic_cast_IEEE754&amp;lt;int, float&amp;gt;</second> </first> <second>117</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first> <second>__hls_fptosi_float_i32</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>79</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>698</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>205</m_topoIndex> <m_clusterGroupNumber>19</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_211"> <Value> <Obj> <type>0</type> <id>214</id> <name>zext_ln339_3</name> <fileName>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/src/hls/utils/x_hls_utils.h</fileName> <fileDirectory>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</fileDirectory> <lineNumber>339</lineNumber> <contextFuncName>expv</contextFuncName> <inlineStackInfo> <count>2</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>checkAxis</second> </first> <second>109</second> </item> </second> </item> <item> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</first> <second> <count>4</count> <item_version>0</item_version> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first> <second>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</second> </first> <second>18</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first> <second>generic_cast_IEEE754&amp;lt;int, float&amp;gt;</second> </first> <second>117</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first> <second>__hls_fptosi_float_i32</second> </first> <second>51</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/src/hls/utils/x_hls_utils.h</first> <second>expv</second> </first> <second>339</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>699</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>206</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_212"> <Value> <Obj> <type>0</type> <id>215</id> <name>add_ln339_3</name> <fileName>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/src/hls/utils/x_hls_utils.h</fileName> <fileDirectory>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</fileDirectory> <lineNumber>339</lineNumber> <contextFuncName>expv</contextFuncName> <inlineStackInfo> <count>2</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>checkAxis</second> </first> <second>109</second> </item> </second> </item> <item> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</first> <second> <count>4</count> <item_version>0</item_version> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first> <second>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</second> </first> <second>18</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first> <second>generic_cast_IEEE754&amp;lt;int, float&amp;gt;</second> </first> <second>117</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first> <second>__hls_fptosi_float_i32</second> </first> <second>51</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/src/hls/utils/x_hls_utils.h</first> <second>expv</second> </first> <second>339</second> </item> </second> </item> </inlineStackInfo> <originalName>sh</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>700</item> <item>701</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.30</m_delay> <m_topoIndex>207</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_213"> <Value> <Obj> <type>0</type> <id>216</id> <name>isNeg_3</name> <fileName>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</fileName> <fileDirectory>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</fileDirectory> <lineNumber>18</lineNumber> <contextFuncName>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</contextFuncName> <inlineStackInfo> <count>2</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>checkAxis</second> </first> <second>109</second> </item> </second> </item> <item> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first> <second>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</second> </first> <second>18</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first> <second>generic_cast_IEEE754&amp;lt;int, float&amp;gt;</second> </first> <second>117</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first> <second>__hls_fptosi_float_i32</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName>isNeg</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>702</item> <item>703</item> <item>704</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>208</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_214"> <Value> <Obj> <type>0</type> <id>217</id> <name>sub_ln1311_3</name> <fileName>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</fileName> <fileDirectory>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</fileDirectory> <lineNumber>18</lineNumber> <contextFuncName>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</contextFuncName> <inlineStackInfo> <count>2</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>checkAxis</second> </first> <second>109</second> </item> </second> </item> <item> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first> <second>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</second> </first> <second>18</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first> <second>generic_cast_IEEE754&amp;lt;int, float&amp;gt;</second> </first> <second>117</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first> <second>__hls_fptosi_float_i32</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>705</item> <item>706</item> </oprand_edges> <opcode>sub</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.30</m_delay> <m_topoIndex>209</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_215"> <Value> <Obj> <type>0</type> <id>218</id> <name>sext_ln1311_8</name> <fileName>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</fileName> <fileDirectory>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</fileDirectory> <lineNumber>18</lineNumber> <contextFuncName>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</contextFuncName> <inlineStackInfo> <count>2</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>checkAxis</second> </first> <second>109</second> </item> </second> </item> <item> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first> <second>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</second> </first> <second>18</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first> <second>generic_cast_IEEE754&amp;lt;int, float&amp;gt;</second> </first> <second>117</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first> <second>__hls_fptosi_float_i32</second> </first> <second>51</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>707</item> </oprand_edges> <opcode>sext</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>210</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_216"> <Value> <Obj> <type>0</type> <id>219</id> <name>ush_3</name> <fileName>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</fileName> <fileDirectory>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</fileDirectory> <lineNumber>18</lineNumber> <contextFuncName>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</contextFuncName> <inlineStackInfo> <count>2</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>checkAxis</second> </first> <second>109</second> </item> </second> </item> <item> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first> <second>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</second> </first> <second>18</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first> <second>generic_cast_IEEE754&amp;lt;int, float&amp;gt;</second> </first> <second>117</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first> <second>__hls_fptosi_float_i32</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName>sh</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>708</item> <item>709</item> <item>710</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.72</m_delay> <m_topoIndex>211</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_217"> <Value> <Obj> <type>0</type> <id>220</id> <name>sext_ln1311_9</name> <fileName>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</fileName> <fileDirectory>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</fileDirectory> <lineNumber>18</lineNumber> <contextFuncName>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</contextFuncName> <inlineStackInfo> <count>2</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>checkAxis</second> </first> <second>109</second> </item> </second> </item> <item> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first> <second>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</second> </first> <second>18</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first> <second>generic_cast_IEEE754&amp;lt;int, float&amp;gt;</second> </first> <second>117</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first> <second>__hls_fptosi_float_i32</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>711</item> </oprand_edges> <opcode>sext</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>212</m_topoIndex> <m_clusterGroupNumber>19</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_218"> <Value> <Obj> <type>0</type> <id>221</id> <name>sext_ln1311_11</name> <fileName>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</fileName> <fileDirectory>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</fileDirectory> <lineNumber>18</lineNumber> <contextFuncName>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</contextFuncName> <inlineStackInfo> <count>2</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>checkAxis</second> </first> <second>109</second> </item> </second> </item> <item> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first> <second>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</second> </first> <second>18</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first> <second>generic_cast_IEEE754&amp;lt;int, float&amp;gt;</second> </first> <second>117</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first> <second>__hls_fptosi_float_i32</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>25</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>712</item> </oprand_edges> <opcode>sext</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>213</m_topoIndex> <m_clusterGroupNumber>19</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_219"> <Value> <Obj> <type>0</type> <id>222</id> <name>zext_ln1287_3</name> <fileName>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</fileName> <fileDirectory>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</fileDirectory> <lineNumber>18</lineNumber> <contextFuncName>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</contextFuncName> <inlineStackInfo> <count>2</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>checkAxis</second> </first> <second>109</second> </item> </second> </item> <item> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first> <second>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</second> </first> <second>18</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first> <second>generic_cast_IEEE754&amp;lt;int, float&amp;gt;</second> </first> <second>117</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first> <second>__hls_fptosi_float_i32</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>79</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>713</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>214</m_topoIndex> <m_clusterGroupNumber>19</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_220"> <Value> <Obj> <type>0</type> <id>223</id> <name>r_V_8</name> <fileName>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</fileName> <fileDirectory>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</fileDirectory> <lineNumber>18</lineNumber> <contextFuncName>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</contextFuncName> <inlineStackInfo> <count>2</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>checkAxis</second> </first> <second>109</second> </item> </second> </item> <item> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first> <second>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</second> </first> <second>18</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first> <second>generic_cast_IEEE754&amp;lt;int, float&amp;gt;</second> </first> <second>117</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first> <second>__hls_fptosi_float_i32</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName>r.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>25</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>714</item> <item>715</item> </oprand_edges> <opcode>lshr</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>215</m_topoIndex> <m_clusterGroupNumber>19</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_221"> <Value> <Obj> <type>0</type> <id>224</id> <name>r_V_9</name> <fileName>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</fileName> <fileDirectory>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</fileDirectory> <lineNumber>18</lineNumber> <contextFuncName>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</contextFuncName> <inlineStackInfo> <count>2</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>checkAxis</second> </first> <second>109</second> </item> </second> </item> <item> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first> <second>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</second> </first> <second>18</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first> <second>generic_cast_IEEE754&amp;lt;int, float&amp;gt;</second> </first> <second>117</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first> <second>__hls_fptosi_float_i32</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName>r.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>79</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>716</item> <item>717</item> </oprand_edges> <opcode>shl</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>216</m_topoIndex> <m_clusterGroupNumber>19</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_222"> <Value> <Obj> <type>0</type> <id>225</id> <name>tmp_80</name> <fileName>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</fileName> <fileDirectory>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</fileDirectory> <lineNumber>21</lineNumber> <contextFuncName>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</contextFuncName> <inlineStackInfo> <count>2</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>checkAxis</second> </first> <second>109</second> </item> </second> </item> <item> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first> <second>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</second> </first> <second>21</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first> <second>generic_cast_IEEE754&amp;lt;int, float&amp;gt;</second> </first> <second>117</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first> <second>__hls_fptosi_float_i32</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>718</item> <item>719</item> <item>720</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>217</m_topoIndex> <m_clusterGroupNumber>19</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_223"> <Value> <Obj> <type>0</type> <id>226</id> <name>zext_ln662_3</name> <fileName>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</fileName> <fileDirectory>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</fileDirectory> <lineNumber>21</lineNumber> <contextFuncName>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</contextFuncName> <inlineStackInfo> <count>2</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>checkAxis</second> </first> <second>109</second> </item> </second> </item> <item> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first> <second>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</second> </first> <second>21</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first> <second>generic_cast_IEEE754&amp;lt;int, float&amp;gt;</second> </first> <second>117</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first> <second>__hls_fptosi_float_i32</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>55</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>721</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>218</m_topoIndex> <m_clusterGroupNumber>19</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_224"> <Value> <Obj> <type>0</type> <id>227</id> <name>tmp_75</name> <fileName>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</fileName> <fileDirectory>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</fileDirectory> <lineNumber>21</lineNumber> <contextFuncName>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</contextFuncName> <inlineStackInfo> <count>2</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>checkAxis</second> </first> <second>109</second> </item> </second> </item> <item> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first> <second>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</second> </first> <second>21</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first> <second>generic_cast_IEEE754&amp;lt;int, float&amp;gt;</second> </first> <second>117</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first> <second>__hls_fptosi_float_i32</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>55</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>723</item> <item>724</item> <item>725</item> <item>727</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>219</m_topoIndex> <m_clusterGroupNumber>19</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_225"> <Value> <Obj> <type>0</type> <id>228</id> <name>select_ln1312</name> <fileName>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</fileName> <fileDirectory>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</fileDirectory> <lineNumber>18</lineNumber> <contextFuncName>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</contextFuncName> <inlineStackInfo> <count>2</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>checkAxis</second> </first> <second>109</second> </item> </second> </item> <item> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first> <second>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</second> </first> <second>18</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first> <second>generic_cast_IEEE754&amp;lt;int, float&amp;gt;</second> </first> <second>117</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first> <second>__hls_fptosi_float_i32</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>55</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>728</item> <item>729</item> <item>730</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>2.96</m_delay> <m_topoIndex>220</m_topoIndex> <m_clusterGroupNumber>19</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_226"> <Value> <Obj> <type>0</type> <id>229</id> <name>trunc_ln82</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>82</lineNumber> <contextFuncName>shiftAmount</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>109</second> </item> <item> <first> <first>src/honeybee.c</first> <second>shiftAmount</second> </first> <second>82</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>28</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>731</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>221</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_227"> <Value> <Obj> <type>0</type> <id>230</id> <name>sub_ln82</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>82</lineNumber> <contextFuncName>shiftAmount</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>109</second> </item> <item> <first> <first>src/honeybee.c</first> <second>shiftAmount</second> </first> <second>82</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>28</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>733</item> <item>734</item> </oprand_edges> <opcode>sub</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.79</m_delay> <m_topoIndex>222</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_228"> <Value> <Obj> <type>0</type> <id>231</id> <name>trunc_ln82_5</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>82</lineNumber> <contextFuncName>shiftAmount</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>109</second> </item> <item> <first> <first>src/honeybee.c</first> <second>shiftAmount</second> </first> <second>82</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>735</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>227</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_229"> <Value> <Obj> <type>0</type> <id>232</id> <name>shl_ln</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>82</lineNumber> <contextFuncName>shiftAmount</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>109</second> </item> <item> <first> <first>src/honeybee.c</first> <second>shiftAmount</second> </first> <second>82</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>737</item> <item>738</item> <item>740</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>228</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_230"> <Value> <Obj> <type>0</type> <id>233</id> <name>zext_ln82</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>82</lineNumber> <contextFuncName>shiftAmount</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>109</second> </item> <item> <first> <first>src/honeybee.c</first> <second>shiftAmount</second> </first> <second>82</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>741</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>229</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_231"> <Value> <Obj> <type>0</type> <id>234</id> <name>trunc_ln82_6</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>82</lineNumber> <contextFuncName>shiftAmount</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>109</second> </item> <item> <first> <first>src/honeybee.c</first> <second>shiftAmount</second> </first> <second>82</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>28</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>742</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>223</m_topoIndex> <m_clusterGroupNumber>17</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_232"> <Value> <Obj> <type>0</type> <id>235</id> <name>select_ln59</name> <fileName>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</fileName> <fileDirectory>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</contextFuncName> <inlineStackInfo> <count>2</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>checkAxis</second> </first> <second>109</second> </item> </second> </item> <item> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first> <second>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</second> </first> <second>59</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first> <second>generic_cast_IEEE754&amp;lt;int, float&amp;gt;</second> </first> <second>117</second> </item> <item> <first> <first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first> <second>__hls_fptosi_float_i32</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>28</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>743</item> <item>744</item> <item>745</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>224</m_topoIndex> <m_clusterGroupNumber>17</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_233"> <Value> <Obj> <type>0</type> <id>236</id> <name>shl_ln82_4</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>82</lineNumber> <contextFuncName>shiftAmount</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>109</second> </item> <item> <first> <first>src/honeybee.c</first> <second>shiftAmount</second> </first> <second>82</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>747</item> <item>748</item> <item>750</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>225</m_topoIndex> <m_clusterGroupNumber>17</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_234"> <Value> <Obj> <type>0</type> <id>237</id> <name>add_ln82</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>82</lineNumber> <contextFuncName>shiftAmount</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>109</second> </item> <item> <first> <first>src/honeybee.c</first> <second>shiftAmount</second> </first> <second>82</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>751</item> <item>752</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.89</m_delay> <m_topoIndex>226</m_topoIndex> <m_clusterGroupNumber>17</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_235"> <Value> <Obj> <type>0</type> <id>238</id> <name>add_ln82_7</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>82</lineNumber> <contextFuncName>shiftAmount</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>109</second> </item> <item> <first> <first>src/honeybee.c</first> <second>shiftAmount</second> </first> <second>82</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>753</item> <item>754</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.89</m_delay> <m_topoIndex>230</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_236"> <Value> <Obj> <type>0</type> <id>239</id> <name>zext_ln109</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>109</lineNumber> <contextFuncName>checkAxis</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>checkAxis</second> </first> <second>109</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>755</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>231</m_topoIndex> <m_clusterGroupNumber>20</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_237"> <Value> <Obj> <type>0</type> <id>240</id> <name>shl_ln109</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>109</lineNumber> <contextFuncName>checkAxis</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>checkAxis</second> </first> <second>109</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>757</item> <item>758</item> </oprand_edges> <opcode>shl</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>232</m_topoIndex> <m_clusterGroupNumber>20</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_238"> <Value> <Obj> <type>0</type> <id>241</id> <name>add_ln82_8</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>82</lineNumber> <contextFuncName>shiftAmount</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>110</second> </item> <item> <first> <first>src/honeybee.c</first> <second>shiftAmount</second> </first> <second>82</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>760</item> <item>761</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.76</m_delay> <m_topoIndex>233</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_239"> <Value> <Obj> <type>0</type> <id>242</id> <name>tmp_76</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>82</lineNumber> <contextFuncName>shiftAmount</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>110</second> </item> <item> <first> <first>src/honeybee.c</first> <second>shiftAmount</second> </first> <second>82</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>763</item> <item>764</item> <item>765</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>234</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_240"> <Value> <Obj> <type>0</type> <id>243</id> <name>sext_ln82</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>82</lineNumber> <contextFuncName>shiftAmount</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>110</second> </item> <item> <first> <first>src/honeybee.c</first> <second>shiftAmount</second> </first> <second>82</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>766</item> </oprand_edges> <opcode>sext</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>235</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_241"> <Value> <Obj> <type>0</type> <id>244</id> <name>add_ln82_9</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>82</lineNumber> <contextFuncName>shiftAmount</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>110</second> </item> <item> <first> <first>src/honeybee.c</first> <second>shiftAmount</second> </first> <second>82</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>767</item> <item>768</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.89</m_delay> <m_topoIndex>236</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_242"> <Value> <Obj> <type>0</type> <id>245</id> <name>zext_ln110</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>110</lineNumber> <contextFuncName>checkAxis</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>checkAxis</second> </first> <second>110</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>769</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>237</m_topoIndex> <m_clusterGroupNumber>20</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_243"> <Value> <Obj> <type>0</type> <id>246</id> <name>shl_ln110</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>110</lineNumber> <contextFuncName>checkAxis</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>checkAxis</second> </first> <second>110</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>770</item> <item>771</item> </oprand_edges> <opcode>shl</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>238</m_topoIndex> <m_clusterGroupNumber>20</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_244"> <Value> <Obj> <type>0</type> <id>247</id> <name>or_ln110</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>110</lineNumber> <contextFuncName>checkAxis</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>checkAxis</second> </first> <second>110</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>772</item> <item>773</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>239</m_topoIndex> <m_clusterGroupNumber>20</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_245"> <Value> <Obj> <type>0</type> <id>248</id> <name>collisions</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>110</lineNumber> <contextFuncName>checkAxis</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>checkAxis</second> </first> <second>110</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>774</item> <item>775</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>240</m_topoIndex> <m_clusterGroupNumber>20</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_246"> <Value> <Obj> <type>0</type> <id>249</id> <name>collisions_3</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>108</lineNumber> <contextFuncName>checkAxis</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>checkAxis</second> </first> <second>108</second> </item> </second> </item> </inlineStackInfo> <originalName>collisions</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>776</item> <item>777</item> <item>778</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>2.93</m_delay> <m_topoIndex>241</m_topoIndex> <m_clusterGroupNumber>20</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_247"> <Value> <Obj> <type>0</type> <id>250</id> <name>_ln92</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>92</lineNumber> <contextFuncName>checkAxis</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>checkAxis</second> </first> <second>92</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>779</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>242</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_248"> <Value> <Obj> <type>0</type> <id>252</id> <name>_ln127</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>127</lineNumber> <contextFuncName>checkAxis</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>checkAxis</second> </first> <second>127</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>780</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>63</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> </nodes> <consts class_id="15" tracking_level="0" version="0"> <count>25</count> <item_version>0</item_version> <item class_id="16" tracking_level="1" version="0" object_id="_249"> <Value> <Obj> <type>2</type> <id>278</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>23</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_250"> <Value> <Obj> <type>2</type> <id>311</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>0</content> </item> <item class_id_reference="16" object_id="_251"> <Value> <Obj> <type>2</type> <id>316</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>3</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_252"> <Value> <Obj> <type>2</type> <id>323</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>3</bitwidth> </Value> <const_type>0</const_type> <content>4</content> </item> <item class_id_reference="16" object_id="_253"> <Value> <Obj> <type>2</type> <id>326</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>3</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_254"> <Value> <Obj> <type>2</type> <id>335</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>1</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_255"> <Value> <Obj> <type>2</type> <id>339</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>2147483648</content> </item> <item class_id_reference="16" object_id="_256"> <Value> <Obj> <type>2</type> <id>385</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> <item class_id_reference="16" object_id="_257"> <Value> <Obj> <type>2</type> <id>387</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>30</content> </item> <item class_id_reference="16" object_id="_258"> <Value> <Obj> <type>2</type> <id>394</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>8</bitwidth> </Value> <const_type>0</const_type> <content>255</content> </item> <item class_id_reference="16" object_id="_259"> <Value> <Obj> <type>2</type> <id>516</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="_260"> <Value> <Obj> <type>2</type> <id>638</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>31</content> </item> <item class_id_reference="16" object_id="_261"> <Value> <Obj> <type>2</type> <id>644</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="_262"> <Value> <Obj> <type>2</type> <id>648</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>9</bitwidth> </Value> <const_type>0</const_type> <content>385</content> </item> <item class_id_reference="16" object_id="_263"> <Value> <Obj> <type>2</type> <id>654</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="_264"> <Value> <Obj> <type>2</type> <id>656</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>8</bitwidth> </Value> <const_type>0</const_type> <content>127</content> </item> <item class_id_reference="16" object_id="_265"> <Value> <Obj> <type>2</type> <id>673</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>24</content> </item> <item class_id_reference="16" object_id="_266"> <Value> <Obj> <type>2</type> <id>680</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>55</content> </item> <item class_id_reference="16" object_id="_267"> <Value> <Obj> <type>2</type> <id>685</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>0</content> </item> <item class_id_reference="16" object_id="_268"> <Value> <Obj> <type>2</type> <id>726</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>78</content> </item> <item class_id_reference="16" object_id="_269"> <Value> <Obj> <type>2</type> <id>732</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>28</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_270"> <Value> <Obj> <type>2</type> <id>739</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="_271"> <Value> <Obj> <type>2</type> <id>749</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>4</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_272"> <Value> <Obj> <type>2</type> <id>756</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="_273"> <Value> <Obj> <type>2</type> <id>759</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>3</bitwidth> </Value> <const_type>0</const_type> <content>7</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="_274"> <Obj> <type>3</type> <id>41</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>34</count> <item_version>0</item_version> <item>7</item> <item>8</item> <item>9</item> <item>10</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>29</item> <item>30</item> <item>31</item> <item>32</item> <item>33</item> <item>34</item> <item>35</item> <item>36</item> <item>37</item> <item>38</item> <item>39</item> <item>40</item> </node_objs> </item> <item class_id_reference="18" object_id="_275"> <Obj> <type>3</type> <id>49</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>6</count> <item_version>0</item_version> <item>42</item> <item>43</item> <item>44</item> <item>45</item> <item>47</item> <item>48</item> </node_objs> </item> <item class_id_reference="18" object_id="_276"> <Obj> <type>3</type> <id>251</id> <name>_ifconv</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>201</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> <item>57</item> <item>58</item> <item>59</item> <item>60</item> <item>61</item> <item>62</item> <item>63</item> <item>64</item> <item>65</item> <item>66</item> <item>67</item> <item>68</item> <item>69</item> <item>70</item> <item>71</item> <item>72</item> <item>73</item> <item>74</item> <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> <item>99</item> <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> <item>111</item> <item>112</item> <item>113</item> <item>114</item> <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> <item>208</item> <item>209</item> <item>210</item> <item>211</item> <item>212</item> <item>213</item> <item>214</item> <item>215</item> <item>216</item> <item>217</item> <item>218</item> <item>219</item> <item>220</item> <item>221</item> <item>222</item> <item>223</item> <item>224</item> <item>225</item> <item>226</item> <item>227</item> <item>228</item> <item>229</item> <item>230</item> <item>231</item> <item>232</item> <item>233</item> <item>234</item> <item>235</item> <item>236</item> <item>237</item> <item>238</item> <item>239</item> <item>240</item> <item>241</item> <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>250</item> </node_objs> </item> <item class_id_reference="18" object_id="_277"> <Obj> <type>3</type> <id>253</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>252</item> </node_objs> </item> </blocks> <edges class_id="19" tracking_level="0" version="0"> <count>461</count> <item_version>0</item_version> <item class_id="20" tracking_level="1" version="0" object_id="_278"> <id>256</id> <edge_type>1</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="_279"> <id>258</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>8</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_280"> <id>260</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>9</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_281"> <id>262</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>10</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_282"> <id>264</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>11</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_283"> <id>266</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>12</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_284"> <id>267</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>13</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_285"> <id>268</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>13</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_286"> <id>269</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>14</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_287"> <id>270</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>14</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_288"> <id>271</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>15</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_289"> <id>272</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>15</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_290"> <id>273</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>16</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>16</source_obj> <sink_obj>17</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_292"> <id>275</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>18</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_293"> <id>276</id> <edge_type>1</edge_type> <source_obj>18</source_obj> <sink_obj>19</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_294"> <id>277</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>20</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_295"> <id>279</id> <edge_type>1</edge_type> <source_obj>278</source_obj> <sink_obj>20</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_296"> <id>280</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="_297"> <id>281</id> <edge_type>1</edge_type> <source_obj>278</source_obj> <sink_obj>21</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_298"> <id>282</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>22</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_299"> <id>283</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>22</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_300"> <id>284</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>23</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_301"> <id>285</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>23</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_302"> <id>286</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_303"> <id>287</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="_304"> <id>288</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>26</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_305"> <id>289</id> <edge_type>1</edge_type> <source_obj>26</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_306"> <id>290</id> <edge_type>1</edge_type> <source_obj>25</source_obj> <sink_obj>28</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_307"> <id>291</id> <edge_type>1</edge_type> <source_obj>278</source_obj> <sink_obj>28</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_308"> <id>292</id> <edge_type>1</edge_type> <source_obj>27</source_obj> <sink_obj>29</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_309"> <id>293</id> <edge_type>1</edge_type> <source_obj>278</source_obj> <sink_obj>29</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_310"> <id>294</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_311"> <id>295</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_312"> <id>296</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>31</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_313"> <id>297</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>31</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_314"> <id>298</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>32</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_315"> <id>299</id> <edge_type>1</edge_type> <source_obj>32</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_316"> <id>300</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>34</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_317"> <id>301</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="_318"> <id>302</id> <edge_type>1</edge_type> <source_obj>33</source_obj> <sink_obj>36</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_319"> <id>303</id> <edge_type>1</edge_type> <source_obj>278</source_obj> <sink_obj>36</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_320"> <id>304</id> <edge_type>1</edge_type> <source_obj>35</source_obj> <sink_obj>37</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_321"> <id>305</id> <edge_type>1</edge_type> <source_obj>278</source_obj> <sink_obj>37</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_322"> <id>306</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>38</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_323"> <id>307</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>38</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_324"> <id>308</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>39</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_325"> <id>309</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>39</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_326"> <id>310</id> <edge_type>2</edge_type> <source_obj>49</source_obj> <sink_obj>40</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_327"> <id>312</id> <edge_type>1</edge_type> <source_obj>311</source_obj> <sink_obj>42</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_328"> <id>313</id> <edge_type>2</edge_type> <source_obj>41</source_obj> <sink_obj>42</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_329"> <id>314</id> <edge_type>1</edge_type> <source_obj>249</source_obj> <sink_obj>42</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_330"> <id>315</id> <edge_type>2</edge_type> <source_obj>251</source_obj> <sink_obj>42</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_331"> <id>317</id> <edge_type>1</edge_type> <source_obj>316</source_obj> <sink_obj>43</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_332"> <id>318</id> <edge_type>2</edge_type> <source_obj>41</source_obj> <sink_obj>43</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_333"> <id>319</id> <edge_type>1</edge_type> <source_obj>47</source_obj> <sink_obj>43</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_334"> <id>320</id> <edge_type>2</edge_type> <source_obj>251</source_obj> <sink_obj>43</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_335"> <id>321</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="_336"> <id>322</id> <edge_type>1</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="_337"> <id>324</id> <edge_type>1</edge_type> <source_obj>323</source_obj> <sink_obj>45</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_338"> <id>325</id> <edge_type>1</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="_339"> <id>327</id> <edge_type>1</edge_type> <source_obj>326</source_obj> <sink_obj>47</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_340"> <id>328</id> <edge_type>1</edge_type> <source_obj>45</source_obj> <sink_obj>48</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_341"> <id>329</id> <edge_type>2</edge_type> <source_obj>251</source_obj> <sink_obj>48</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_342"> <id>330</id> <edge_type>2</edge_type> <source_obj>253</source_obj> <sink_obj>48</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_343"> <id>331</id> <edge_type>1</edge_type> <source_obj>44</source_obj> <sink_obj>50</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_344"> <id>332</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="_345"> <id>333</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="_346"> <id>334</id> <edge_type>1</edge_type> <source_obj>51</source_obj> <sink_obj>52</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_347"> <id>336</id> <edge_type>1</edge_type> <source_obj>335</source_obj> <sink_obj>52</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_348"> <id>337</id> <edge_type>1</edge_type> <source_obj>51</source_obj> <sink_obj>53</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_349"> <id>338</id> <edge_type>1</edge_type> <source_obj>53</source_obj> <sink_obj>54</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_350"> <id>340</id> <edge_type>1</edge_type> <source_obj>339</source_obj> <sink_obj>54</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_351"> <id>341</id> <edge_type>1</edge_type> <source_obj>54</source_obj> <sink_obj>55</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_352"> <id>342</id> <edge_type>1</edge_type> <source_obj>52</source_obj> <sink_obj>56</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_353"> <id>343</id> <edge_type>1</edge_type> <source_obj>55</source_obj> <sink_obj>56</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_354"> <id>344</id> <edge_type>1</edge_type> <source_obj>56</source_obj> <sink_obj>57</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_355"> <id>345</id> <edge_type>1</edge_type> <source_obj>335</source_obj> <sink_obj>57</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_356"> <id>346</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="_357"> <id>347</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="_358"> <id>348</id> <edge_type>1</edge_type> <source_obj>58</source_obj> <sink_obj>59</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_359"> <id>349</id> <edge_type>1</edge_type> <source_obj>50</source_obj> <sink_obj>59</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_360"> <id>350</id> <edge_type>1</edge_type> <source_obj>56</source_obj> <sink_obj>60</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_361"> <id>351</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>60</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_362"> <id>352</id> <edge_type>1</edge_type> <source_obj>56</source_obj> <sink_obj>61</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_363"> <id>353</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>61</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_364"> <id>354</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="_365"> <id>355</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="_366"> <id>356</id> <edge_type>1</edge_type> <source_obj>62</source_obj> <sink_obj>63</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_367"> <id>357</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>63</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_368"> <id>358</id> <edge_type>1</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="_369"> <id>359</id> <edge_type>1</edge_type> <source_obj>63</source_obj> <sink_obj>64</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_370"> <id>360</id> <edge_type>1</edge_type> <source_obj>13</source_obj> <sink_obj>65</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_371"> <id>361</id> <edge_type>1</edge_type> <source_obj>56</source_obj> <sink_obj>65</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_372"> <id>362</id> <edge_type>1</edge_type> <source_obj>14</source_obj> <sink_obj>66</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_373"> <id>363</id> <edge_type>1</edge_type> <source_obj>56</source_obj> <sink_obj>66</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_374"> <id>364</id> <edge_type>1</edge_type> <source_obj>65</source_obj> <sink_obj>67</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_375"> <id>365</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="_376"> <id>366</id> <edge_type>1</edge_type> <source_obj>67</source_obj> <sink_obj>68</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_377"> <id>367</id> <edge_type>1</edge_type> <source_obj>15</source_obj> <sink_obj>68</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_378"> <id>368</id> <edge_type>1</edge_type> <source_obj>64</source_obj> <sink_obj>69</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_379"> <id>369</id> <edge_type>1</edge_type> <source_obj>68</source_obj> <sink_obj>69</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_380"> <id>370</id> <edge_type>1</edge_type> <source_obj>13</source_obj> <sink_obj>70</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_381"> <id>371</id> <edge_type>1</edge_type> <source_obj>69</source_obj> <sink_obj>70</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_382"> <id>372</id> <edge_type>1</edge_type> <source_obj>70</source_obj> <sink_obj>71</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_383"> <id>373</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>71</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_384"> <id>374</id> <edge_type>1</edge_type> <source_obj>14</source_obj> <sink_obj>72</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_385"> <id>375</id> <edge_type>1</edge_type> <source_obj>69</source_obj> <sink_obj>72</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_386"> <id>376</id> <edge_type>1</edge_type> <source_obj>72</source_obj> <sink_obj>73</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_387"> <id>377</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>73</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_388"> <id>378</id> <edge_type>1</edge_type> <source_obj>15</source_obj> <sink_obj>74</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_389"> <id>379</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="_390"> <id>380</id> <edge_type>1</edge_type> <source_obj>74</source_obj> <sink_obj>75</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_391"> <id>381</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>75</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_392"> <id>384</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>76</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_393"> <id>386</id> <edge_type>1</edge_type> <source_obj>385</source_obj> <sink_obj>76</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_394"> <id>388</id> <edge_type>1</edge_type> <source_obj>387</source_obj> <sink_obj>76</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_395"> <id>390</id> <edge_type>1</edge_type> <source_obj>18</source_obj> <sink_obj>77</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_396"> <id>391</id> <edge_type>1</edge_type> <source_obj>385</source_obj> <sink_obj>77</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_397"> <id>392</id> <edge_type>1</edge_type> <source_obj>387</source_obj> <sink_obj>77</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_398"> <id>393</id> <edge_type>1</edge_type> <source_obj>76</source_obj> <sink_obj>78</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_399"> <id>395</id> <edge_type>1</edge_type> <source_obj>394</source_obj> <sink_obj>78</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_400"> <id>396</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>79</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_401"> <id>397</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="_402"> <id>398</id> <edge_type>1</edge_type> <source_obj>77</source_obj> <sink_obj>80</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_403"> <id>399</id> <edge_type>1</edge_type> <source_obj>394</source_obj> <sink_obj>80</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_404"> <id>400</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>81</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_405"> <id>401</id> <edge_type>1</edge_type> <source_obj>80</source_obj> <sink_obj>81</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_406"> <id>402</id> <edge_type>1</edge_type> <source_obj>79</source_obj> <sink_obj>82</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_407"> <id>403</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="_408"> <id>404</id> <edge_type>1</edge_type> <source_obj>82</source_obj> <sink_obj>83</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_409"> <id>405</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>83</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_410"> <id>406</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="_411"> <id>407</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>84</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_412"> <id>408</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>84</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_413"> <id>409</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="_414"> <id>411</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="_415"> <id>412</id> <edge_type>1</edge_type> <source_obj>385</source_obj> <sink_obj>86</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_416"> <id>413</id> <edge_type>1</edge_type> <source_obj>387</source_obj> <sink_obj>86</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_417"> <id>414</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="_418"> <id>415</id> <edge_type>1</edge_type> <source_obj>71</source_obj> <sink_obj>88</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_419"> <id>417</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="_420"> <id>418</id> <edge_type>1</edge_type> <source_obj>385</source_obj> <sink_obj>89</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_421"> <id>419</id> <edge_type>1</edge_type> <source_obj>387</source_obj> <sink_obj>89</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_422"> <id>420</id> <edge_type>1</edge_type> <source_obj>88</source_obj> <sink_obj>90</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_423"> <id>421</id> <edge_type>1</edge_type> <source_obj>86</source_obj> <sink_obj>91</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_424"> <id>422</id> <edge_type>1</edge_type> <source_obj>394</source_obj> <sink_obj>91</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_425"> <id>423</id> <edge_type>1</edge_type> <source_obj>87</source_obj> <sink_obj>92</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_426"> <id>424</id> <edge_type>1</edge_type> <source_obj>278</source_obj> <sink_obj>92</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_427"> <id>425</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="_428"> <id>426</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="_429"> <id>427</id> <edge_type>1</edge_type> <source_obj>89</source_obj> <sink_obj>94</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_430"> <id>428</id> <edge_type>1</edge_type> <source_obj>394</source_obj> <sink_obj>94</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_431"> <id>429</id> <edge_type>1</edge_type> <source_obj>90</source_obj> <sink_obj>95</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_432"> <id>430</id> <edge_type>1</edge_type> <source_obj>278</source_obj> <sink_obj>95</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_433"> <id>431</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="_434"> <id>432</id> <edge_type>1</edge_type> <source_obj>94</source_obj> <sink_obj>96</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_435"> <id>433</id> <edge_type>1</edge_type> <source_obj>93</source_obj> <sink_obj>97</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_436"> <id>434</id> <edge_type>1</edge_type> <source_obj>96</source_obj> <sink_obj>97</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_437"> <id>435</id> <edge_type>1</edge_type> <source_obj>84</source_obj> <sink_obj>98</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_438"> <id>436</id> <edge_type>1</edge_type> <source_obj>71</source_obj> <sink_obj>98</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_439"> <id>437</id> <edge_type>1</edge_type> <source_obj>97</source_obj> <sink_obj>99</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_440"> <id>438</id> <edge_type>1</edge_type> <source_obj>98</source_obj> <sink_obj>99</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_441"> <id>439</id> <edge_type>1</edge_type> <source_obj>82</source_obj> <sink_obj>100</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_442"> <id>440</id> <edge_type>1</edge_type> <source_obj>23</source_obj> <sink_obj>100</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_443"> <id>441</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="_444"> <id>442</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>101</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_445"> <id>443</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>101</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_446"> <id>444</id> <edge_type>1</edge_type> <source_obj>101</source_obj> <sink_obj>102</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_447"> <id>446</id> <edge_type>1</edge_type> <source_obj>102</source_obj> <sink_obj>103</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_448"> <id>447</id> <edge_type>1</edge_type> <source_obj>385</source_obj> <sink_obj>103</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_449"> <id>448</id> <edge_type>1</edge_type> <source_obj>387</source_obj> <sink_obj>103</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_450"> <id>449</id> <edge_type>1</edge_type> <source_obj>102</source_obj> <sink_obj>104</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_451"> <id>450</id> <edge_type>1</edge_type> <source_obj>103</source_obj> <sink_obj>105</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_452"> <id>451</id> <edge_type>1</edge_type> <source_obj>394</source_obj> <sink_obj>105</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_453"> <id>452</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="_454"> <id>453</id> <edge_type>1</edge_type> <source_obj>278</source_obj> <sink_obj>106</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_455"> <id>454</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="_456"> <id>455</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="_457"> <id>456</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="_458"> <id>457</id> <edge_type>1</edge_type> <source_obj>96</source_obj> <sink_obj>108</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_459"> <id>458</id> <edge_type>1</edge_type> <source_obj>101</source_obj> <sink_obj>109</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_460"> <id>459</id> <edge_type>1</edge_type> <source_obj>71</source_obj> <sink_obj>109</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_461"> <id>460</id> <edge_type>1</edge_type> <source_obj>108</source_obj> <sink_obj>110</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_462"> <id>461</id> <edge_type>1</edge_type> <source_obj>109</source_obj> <sink_obj>110</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_463"> <id>463</id> <edge_type>1</edge_type> <source_obj>24</source_obj> <sink_obj>111</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_464"> <id>464</id> <edge_type>1</edge_type> <source_obj>385</source_obj> <sink_obj>111</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_465"> <id>465</id> <edge_type>1</edge_type> <source_obj>387</source_obj> <sink_obj>111</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_466"> <id>467</id> <edge_type>1</edge_type> <source_obj>26</source_obj> <sink_obj>112</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_467"> <id>468</id> <edge_type>1</edge_type> <source_obj>385</source_obj> <sink_obj>112</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_468"> <id>469</id> <edge_type>1</edge_type> <source_obj>387</source_obj> <sink_obj>112</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_469"> <id>470</id> <edge_type>1</edge_type> <source_obj>111</source_obj> <sink_obj>113</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_470"> <id>471</id> <edge_type>1</edge_type> <source_obj>394</source_obj> <sink_obj>113</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_471"> <id>472</id> <edge_type>1</edge_type> <source_obj>28</source_obj> <sink_obj>114</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_472"> <id>473</id> <edge_type>1</edge_type> <source_obj>113</source_obj> <sink_obj>114</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_473"> <id>474</id> <edge_type>1</edge_type> <source_obj>112</source_obj> <sink_obj>115</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_474"> <id>475</id> <edge_type>1</edge_type> <source_obj>394</source_obj> <sink_obj>115</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_475"> <id>476</id> <edge_type>1</edge_type> <source_obj>29</source_obj> <sink_obj>116</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_476"> <id>477</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="_477"> <id>478</id> <edge_type>1</edge_type> <source_obj>114</source_obj> <sink_obj>117</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_478"> <id>479</id> <edge_type>1</edge_type> <source_obj>116</source_obj> <sink_obj>117</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_479"> <id>480</id> <edge_type>1</edge_type> <source_obj>117</source_obj> <sink_obj>118</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_480"> <id>481</id> <edge_type>1</edge_type> <source_obj>30</source_obj> <sink_obj>118</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_481"> <id>482</id> <edge_type>1</edge_type> <source_obj>118</source_obj> <sink_obj>119</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_482"> <id>483</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>119</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_483"> <id>484</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>119</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_484"> <id>485</id> <edge_type>1</edge_type> <source_obj>119</source_obj> <sink_obj>120</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_485"> <id>487</id> <edge_type>1</edge_type> <source_obj>120</source_obj> <sink_obj>121</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_486"> <id>488</id> <edge_type>1</edge_type> <source_obj>385</source_obj> <sink_obj>121</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_487"> <id>489</id> <edge_type>1</edge_type> <source_obj>387</source_obj> <sink_obj>121</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_488"> <id>490</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="_489"> <id>491</id> <edge_type>1</edge_type> <source_obj>75</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_490"> <id>493</id> <edge_type>1</edge_type> <source_obj>123</source_obj> <sink_obj>124</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_491"> <id>494</id> <edge_type>1</edge_type> <source_obj>385</source_obj> <sink_obj>124</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_492"> <id>495</id> <edge_type>1</edge_type> <source_obj>387</source_obj> <sink_obj>124</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_493"> <id>496</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="_494"> <id>497</id> <edge_type>1</edge_type> <source_obj>121</source_obj> <sink_obj>126</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_495"> <id>498</id> <edge_type>1</edge_type> <source_obj>394</source_obj> <sink_obj>126</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_496"> <id>499</id> <edge_type>1</edge_type> <source_obj>122</source_obj> <sink_obj>127</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_497"> <id>500</id> <edge_type>1</edge_type> <source_obj>278</source_obj> <sink_obj>127</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_498"> <id>501</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="_499"> <id>502</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="_500"> <id>503</id> <edge_type>1</edge_type> <source_obj>124</source_obj> <sink_obj>129</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_501"> <id>504</id> <edge_type>1</edge_type> <source_obj>394</source_obj> <sink_obj>129</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_502"> <id>505</id> <edge_type>1</edge_type> <source_obj>125</source_obj> <sink_obj>130</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_503"> <id>506</id> <edge_type>1</edge_type> <source_obj>278</source_obj> <sink_obj>130</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_504"> <id>507</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="_505"> <id>508</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="_506"> <id>509</id> <edge_type>1</edge_type> <source_obj>128</source_obj> <sink_obj>132</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_507"> <id>510</id> <edge_type>1</edge_type> <source_obj>131</source_obj> <sink_obj>132</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_508"> <id>511</id> <edge_type>1</edge_type> <source_obj>119</source_obj> <sink_obj>133</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_509"> <id>512</id> <edge_type>1</edge_type> <source_obj>75</source_obj> <sink_obj>133</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_510"> <id>513</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="_511"> <id>514</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="_512"> <id>515</id> <edge_type>1</edge_type> <source_obj>134</source_obj> <sink_obj>135</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_513"> <id>517</id> <edge_type>1</edge_type> <source_obj>516</source_obj> <sink_obj>135</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_514"> <id>518</id> <edge_type>1</edge_type> <source_obj>117</source_obj> <sink_obj>136</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_515"> <id>519</id> <edge_type>1</edge_type> <source_obj>31</source_obj> <sink_obj>136</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_516"> <id>520</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="_517"> <id>521</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>137</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_518"> <id>522</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>137</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_519"> <id>524</id> <edge_type>1</edge_type> <source_obj>32</source_obj> <sink_obj>138</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_520"> <id>525</id> <edge_type>1</edge_type> <source_obj>385</source_obj> <sink_obj>138</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_521"> <id>526</id> <edge_type>1</edge_type> <source_obj>387</source_obj> <sink_obj>138</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_522"> <id>528</id> <edge_type>1</edge_type> <source_obj>34</source_obj> <sink_obj>139</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_523"> <id>529</id> <edge_type>1</edge_type> <source_obj>385</source_obj> <sink_obj>139</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_524"> <id>530</id> <edge_type>1</edge_type> <source_obj>387</source_obj> <sink_obj>139</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_525"> <id>531</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="_526"> <id>532</id> <edge_type>1</edge_type> <source_obj>394</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_527"> <id>533</id> <edge_type>1</edge_type> <source_obj>36</source_obj> <sink_obj>141</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_528"> <id>534</id> <edge_type>1</edge_type> <source_obj>140</source_obj> <sink_obj>141</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_529"> <id>535</id> <edge_type>1</edge_type> <source_obj>139</source_obj> <sink_obj>142</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_530"> <id>536</id> <edge_type>1</edge_type> <source_obj>394</source_obj> <sink_obj>142</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_531"> <id>537</id> <edge_type>1</edge_type> <source_obj>37</source_obj> <sink_obj>143</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_532"> <id>538</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="_533"> <id>539</id> <edge_type>1</edge_type> <source_obj>141</source_obj> <sink_obj>144</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_534"> <id>540</id> <edge_type>1</edge_type> <source_obj>143</source_obj> <sink_obj>144</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_535"> <id>541</id> <edge_type>1</edge_type> <source_obj>144</source_obj> <sink_obj>145</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_536"> <id>542</id> <edge_type>1</edge_type> <source_obj>38</source_obj> <sink_obj>145</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_537"> <id>543</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="_538"> <id>544</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>146</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_539"> <id>545</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>146</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_540"> <id>546</id> <edge_type>1</edge_type> <source_obj>144</source_obj> <sink_obj>147</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_541"> <id>547</id> <edge_type>1</edge_type> <source_obj>39</source_obj> <sink_obj>147</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_542"> <id>548</id> <edge_type>1</edge_type> <source_obj>147</source_obj> <sink_obj>148</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_543"> <id>549</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>148</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_544"> <id>550</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>148</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_545"> <id>551</id> <edge_type>1</edge_type> <source_obj>148</source_obj> <sink_obj>149</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_546"> <id>553</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="_547"> <id>554</id> <edge_type>1</edge_type> <source_obj>385</source_obj> <sink_obj>150</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_548"> <id>555</id> <edge_type>1</edge_type> <source_obj>387</source_obj> <sink_obj>150</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_549"> <id>556</id> <edge_type>1</edge_type> <source_obj>149</source_obj> <sink_obj>151</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_550"> <id>557</id> <edge_type>1</edge_type> <source_obj>73</source_obj> <sink_obj>152</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_551"> <id>559</id> <edge_type>1</edge_type> <source_obj>152</source_obj> <sink_obj>153</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_552"> <id>560</id> <edge_type>1</edge_type> <source_obj>385</source_obj> <sink_obj>153</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_553"> <id>561</id> <edge_type>1</edge_type> <source_obj>387</source_obj> <sink_obj>153</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_554"> <id>562</id> <edge_type>1</edge_type> <source_obj>152</source_obj> <sink_obj>154</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_555"> <id>563</id> <edge_type>1</edge_type> <source_obj>150</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_556"> <id>564</id> <edge_type>1</edge_type> <source_obj>394</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_557"> <id>565</id> <edge_type>1</edge_type> <source_obj>151</source_obj> <sink_obj>156</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_558"> <id>566</id> <edge_type>1</edge_type> <source_obj>278</source_obj> <sink_obj>156</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_559"> <id>567</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="_560"> <id>568</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="_561"> <id>569</id> <edge_type>1</edge_type> <source_obj>153</source_obj> <sink_obj>158</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_562"> <id>570</id> <edge_type>1</edge_type> <source_obj>394</source_obj> <sink_obj>158</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_563"> <id>571</id> <edge_type>1</edge_type> <source_obj>154</source_obj> <sink_obj>159</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_564"> <id>572</id> <edge_type>1</edge_type> <source_obj>278</source_obj> <sink_obj>159</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_565"> <id>573</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="_566"> <id>574</id> <edge_type>1</edge_type> <source_obj>158</source_obj> <sink_obj>160</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_567"> <id>575</id> <edge_type>1</edge_type> <source_obj>157</source_obj> <sink_obj>161</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_568"> <id>576</id> <edge_type>1</edge_type> <source_obj>160</source_obj> <sink_obj>161</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_569"> <id>577</id> <edge_type>1</edge_type> <source_obj>148</source_obj> <sink_obj>162</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_570"> <id>578</id> <edge_type>1</edge_type> <source_obj>73</source_obj> <sink_obj>162</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_571"> <id>579</id> <edge_type>1</edge_type> <source_obj>161</source_obj> <sink_obj>163</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_572"> <id>580</id> <edge_type>1</edge_type> <source_obj>162</source_obj> <sink_obj>163</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_573"> <id>581</id> <edge_type>1</edge_type> <source_obj>99</source_obj> <sink_obj>164</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_574"> <id>582</id> <edge_type>1</edge_type> <source_obj>110</source_obj> <sink_obj>164</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_575"> <id>583</id> <edge_type>1</edge_type> <source_obj>164</source_obj> <sink_obj>165</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_576"> <id>584</id> <edge_type>1</edge_type> <source_obj>516</source_obj> <sink_obj>165</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_577"> <id>585</id> <edge_type>1</edge_type> <source_obj>134</source_obj> <sink_obj>166</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_578"> <id>586</id> <edge_type>1</edge_type> <source_obj>165</source_obj> <sink_obj>166</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_579"> <id>587</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="_580"> <id>588</id> <edge_type>1</edge_type> <source_obj>135</source_obj> <sink_obj>167</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_581"> <id>589</id> <edge_type>1</edge_type> <source_obj>146</source_obj> <sink_obj>168</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_582"> <id>591</id> <edge_type>1</edge_type> <source_obj>168</source_obj> <sink_obj>169</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_583"> <id>592</id> <edge_type>1</edge_type> <source_obj>385</source_obj> <sink_obj>169</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_584"> <id>593</id> <edge_type>1</edge_type> <source_obj>387</source_obj> <sink_obj>169</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_585"> <id>594</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="_586"> <id>595</id> <edge_type>1</edge_type> <source_obj>169</source_obj> <sink_obj>171</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_587"> <id>596</id> <edge_type>1</edge_type> <source_obj>394</source_obj> <sink_obj>171</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_588"> <id>597</id> <edge_type>1</edge_type> <source_obj>170</source_obj> <sink_obj>172</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_589"> <id>598</id> <edge_type>1</edge_type> <source_obj>278</source_obj> <sink_obj>172</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_590"> <id>599</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="_591"> <id>600</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="_592"> <id>601</id> <edge_type>1</edge_type> <source_obj>173</source_obj> <sink_obj>174</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_593"> <id>602</id> <edge_type>1</edge_type> <source_obj>160</source_obj> <sink_obj>174</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_594"> <id>603</id> <edge_type>1</edge_type> <source_obj>146</source_obj> <sink_obj>175</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_595"> <id>604</id> <edge_type>1</edge_type> <source_obj>73</source_obj> <sink_obj>175</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_596"> <id>605</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="_597"> <id>606</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="_598"> <id>607</id> <edge_type>1</edge_type> <source_obj>163</source_obj> <sink_obj>177</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_599"> <id>608</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="_600"> <id>609</id> <edge_type>1</edge_type> <source_obj>137</source_obj> <sink_obj>178</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_601"> <id>611</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="_602"> <id>612</id> <edge_type>1</edge_type> <source_obj>385</source_obj> <sink_obj>179</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_603"> <id>613</id> <edge_type>1</edge_type> <source_obj>387</source_obj> <sink_obj>179</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_604"> <id>614</id> <edge_type>1</edge_type> <source_obj>178</source_obj> <sink_obj>180</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_605"> <id>615</id> <edge_type>1</edge_type> <source_obj>179</source_obj> <sink_obj>181</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_606"> <id>616</id> <edge_type>1</edge_type> <source_obj>394</source_obj> <sink_obj>181</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_607"> <id>617</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="_608"> <id>618</id> <edge_type>1</edge_type> <source_obj>278</source_obj> <sink_obj>182</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_609"> <id>619</id> <edge_type>1</edge_type> <source_obj>182</source_obj> <sink_obj>183</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_610"> <id>620</id> <edge_type>1</edge_type> <source_obj>181</source_obj> <sink_obj>183</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_611"> <id>621</id> <edge_type>1</edge_type> <source_obj>183</source_obj> <sink_obj>184</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_612"> <id>622</id> <edge_type>1</edge_type> <source_obj>131</source_obj> <sink_obj>184</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_613"> <id>623</id> <edge_type>1</edge_type> <source_obj>137</source_obj> <sink_obj>185</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_614"> <id>624</id> <edge_type>1</edge_type> <source_obj>75</source_obj> <sink_obj>185</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_615"> <id>625</id> <edge_type>1</edge_type> <source_obj>184</source_obj> <sink_obj>186</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_616"> <id>626</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="_617"> <id>627</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="_618"> <id>628</id> <edge_type>1</edge_type> <source_obj>186</source_obj> <sink_obj>187</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_619"> <id>629</id> <edge_type>1</edge_type> <source_obj>167</source_obj> <sink_obj>188</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_620"> <id>630</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="_621"> <id>631</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="_622"> <id>632</id> <edge_type>1</edge_type> <source_obj>166</source_obj> <sink_obj>189</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_623"> <id>633</id> <edge_type>1</edge_type> <source_obj>189</source_obj> <sink_obj>190</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_624"> <id>634</id> <edge_type>1</edge_type> <source_obj>177</source_obj> <sink_obj>190</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_625"> <id>637</id> <edge_type>1</edge_type> <source_obj>88</source_obj> <sink_obj>191</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_626"> <id>639</id> <edge_type>1</edge_type> <source_obj>638</source_obj> <sink_obj>191</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_627"> <id>642</id> <edge_type>1</edge_type> <source_obj>516</source_obj> <sink_obj>192</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_628"> <id>643</id> <edge_type>1</edge_type> <source_obj>90</source_obj> <sink_obj>192</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_629"> <id>645</id> <edge_type>1</edge_type> <source_obj>644</source_obj> <sink_obj>192</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_630"> <id>646</id> <edge_type>1</edge_type> <source_obj>192</source_obj> <sink_obj>193</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_631"> <id>647</id> <edge_type>1</edge_type> <source_obj>89</source_obj> <sink_obj>194</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_632"> <id>649</id> <edge_type>1</edge_type> <source_obj>648</source_obj> <sink_obj>195</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_633"> <id>650</id> <edge_type>1</edge_type> <source_obj>194</source_obj> <sink_obj>195</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_634"> <id>653</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="_635"> <id>655</id> <edge_type>1</edge_type> <source_obj>654</source_obj> <sink_obj>196</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_636"> <id>657</id> <edge_type>1</edge_type> <source_obj>656</source_obj> <sink_obj>197</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_637"> <id>658</id> <edge_type>1</edge_type> <source_obj>89</source_obj> <sink_obj>197</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_638"> <id>659</id> <edge_type>1</edge_type> <source_obj>197</source_obj> <sink_obj>198</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_639"> <id>660</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="_640"> <id>661</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="_641"> <id>662</id> <edge_type>1</edge_type> <source_obj>195</source_obj> <sink_obj>199</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_642"> <id>663</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="_643"> <id>664</id> <edge_type>1</edge_type> <source_obj>199</source_obj> <sink_obj>201</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_644"> <id>665</id> <edge_type>1</edge_type> <source_obj>200</source_obj> <sink_obj>202</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_645"> <id>666</id> <edge_type>1</edge_type> <source_obj>192</source_obj> <sink_obj>203</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_646"> <id>667</id> <edge_type>1</edge_type> <source_obj>201</source_obj> <sink_obj>203</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_647"> <id>668</id> <edge_type>1</edge_type> <source_obj>193</source_obj> <sink_obj>204</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_648"> <id>669</id> <edge_type>1</edge_type> <source_obj>202</source_obj> <sink_obj>204</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_649"> <id>672</id> <edge_type>1</edge_type> <source_obj>203</source_obj> <sink_obj>205</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_650"> <id>674</id> <edge_type>1</edge_type> <source_obj>673</source_obj> <sink_obj>205</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_651"> <id>675</id> <edge_type>1</edge_type> <source_obj>205</source_obj> <sink_obj>206</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_652"> <id>678</id> <edge_type>1</edge_type> <source_obj>204</source_obj> <sink_obj>207</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_653"> <id>679</id> <edge_type>1</edge_type> <source_obj>673</source_obj> <sink_obj>207</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_654"> <id>681</id> <edge_type>1</edge_type> <source_obj>680</source_obj> <sink_obj>207</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_655"> <id>682</id> <edge_type>1</edge_type> <source_obj>196</source_obj> <sink_obj>208</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_656"> <id>683</id> <edge_type>1</edge_type> <source_obj>206</source_obj> <sink_obj>208</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_657"> <id>684</id> <edge_type>1</edge_type> <source_obj>207</source_obj> <sink_obj>208</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_658"> <id>686</id> <edge_type>1</edge_type> <source_obj>685</source_obj> <sink_obj>209</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_659"> <id>687</id> <edge_type>1</edge_type> <source_obj>208</source_obj> <sink_obj>209</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_660"> <id>688</id> <edge_type>1</edge_type> <source_obj>191</source_obj> <sink_obj>210</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_661"> <id>689</id> <edge_type>1</edge_type> <source_obj>209</source_obj> <sink_obj>210</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_662"> <id>690</id> <edge_type>1</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="_663"> <id>692</id> <edge_type>1</edge_type> <source_obj>152</source_obj> <sink_obj>211</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_664"> <id>693</id> <edge_type>1</edge_type> <source_obj>638</source_obj> <sink_obj>211</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_665"> <id>695</id> <edge_type>1</edge_type> <source_obj>516</source_obj> <sink_obj>212</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_666"> <id>696</id> <edge_type>1</edge_type> <source_obj>154</source_obj> <sink_obj>212</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_667"> <id>697</id> <edge_type>1</edge_type> <source_obj>644</source_obj> <sink_obj>212</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_668"> <id>698</id> <edge_type>1</edge_type> <source_obj>212</source_obj> <sink_obj>213</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_669"> <id>699</id> <edge_type>1</edge_type> <source_obj>153</source_obj> <sink_obj>214</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_670"> <id>700</id> <edge_type>1</edge_type> <source_obj>648</source_obj> <sink_obj>215</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_671"> <id>701</id> <edge_type>1</edge_type> <source_obj>214</source_obj> <sink_obj>215</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_672"> <id>703</id> <edge_type>1</edge_type> <source_obj>215</source_obj> <sink_obj>216</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_673"> <id>704</id> <edge_type>1</edge_type> <source_obj>654</source_obj> <sink_obj>216</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_674"> <id>705</id> <edge_type>1</edge_type> <source_obj>656</source_obj> <sink_obj>217</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_675"> <id>706</id> <edge_type>1</edge_type> <source_obj>153</source_obj> <sink_obj>217</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_676"> <id>707</id> <edge_type>1</edge_type> <source_obj>217</source_obj> <sink_obj>218</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_677"> <id>708</id> <edge_type>1</edge_type> <source_obj>216</source_obj> <sink_obj>219</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_678"> <id>709</id> <edge_type>1</edge_type> <source_obj>218</source_obj> <sink_obj>219</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_679"> <id>710</id> <edge_type>1</edge_type> <source_obj>215</source_obj> <sink_obj>219</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_680"> <id>711</id> <edge_type>1</edge_type> <source_obj>219</source_obj> <sink_obj>220</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_681"> <id>712</id> <edge_type>1</edge_type> <source_obj>219</source_obj> <sink_obj>221</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_682"> <id>713</id> <edge_type>1</edge_type> <source_obj>220</source_obj> <sink_obj>222</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_683"> <id>714</id> <edge_type>1</edge_type> <source_obj>212</source_obj> <sink_obj>223</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_684"> <id>715</id> <edge_type>1</edge_type> <source_obj>221</source_obj> <sink_obj>223</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_685"> <id>716</id> <edge_type>1</edge_type> <source_obj>213</source_obj> <sink_obj>224</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_686"> <id>717</id> <edge_type>1</edge_type> <source_obj>222</source_obj> <sink_obj>224</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_687"> <id>719</id> <edge_type>1</edge_type> <source_obj>223</source_obj> <sink_obj>225</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_688"> <id>720</id> <edge_type>1</edge_type> <source_obj>673</source_obj> <sink_obj>225</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_689"> <id>721</id> <edge_type>1</edge_type> <source_obj>225</source_obj> <sink_obj>226</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_690"> <id>724</id> <edge_type>1</edge_type> <source_obj>224</source_obj> <sink_obj>227</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_691"> <id>725</id> <edge_type>1</edge_type> <source_obj>673</source_obj> <sink_obj>227</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_692"> <id>727</id> <edge_type>1</edge_type> <source_obj>726</source_obj> <sink_obj>227</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_693"> <id>728</id> <edge_type>1</edge_type> <source_obj>216</source_obj> <sink_obj>228</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_694"> <id>729</id> <edge_type>1</edge_type> <source_obj>226</source_obj> <sink_obj>228</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_695"> <id>730</id> <edge_type>1</edge_type> <source_obj>227</source_obj> <sink_obj>228</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_696"> <id>731</id> <edge_type>1</edge_type> <source_obj>228</source_obj> <sink_obj>229</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_697"> <id>733</id> <edge_type>1</edge_type> <source_obj>732</source_obj> <sink_obj>230</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_698"> <id>734</id> <edge_type>1</edge_type> <source_obj>229</source_obj> <sink_obj>230</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_699"> <id>735</id> <edge_type>1</edge_type> <source_obj>43</source_obj> <sink_obj>231</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_700"> <id>738</id> <edge_type>1</edge_type> <source_obj>231</source_obj> <sink_obj>232</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_701"> <id>740</id> <edge_type>1</edge_type> <source_obj>739</source_obj> <sink_obj>232</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_702"> <id>741</id> <edge_type>1</edge_type> <source_obj>232</source_obj> <sink_obj>233</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_703"> <id>742</id> <edge_type>1</edge_type> <source_obj>228</source_obj> <sink_obj>234</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_704"> <id>743</id> <edge_type>1</edge_type> <source_obj>211</source_obj> <sink_obj>235</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_705"> <id>744</id> <edge_type>1</edge_type> <source_obj>230</source_obj> <sink_obj>235</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_706"> <id>745</id> <edge_type>1</edge_type> <source_obj>234</source_obj> <sink_obj>235</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_707"> <id>748</id> <edge_type>1</edge_type> <source_obj>235</source_obj> <sink_obj>236</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_708"> <id>750</id> <edge_type>1</edge_type> <source_obj>749</source_obj> <sink_obj>236</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_709"> <id>751</id> <edge_type>1</edge_type> <source_obj>210</source_obj> <sink_obj>237</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_710"> <id>752</id> <edge_type>1</edge_type> <source_obj>236</source_obj> <sink_obj>237</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_711"> <id>753</id> <edge_type>1</edge_type> <source_obj>237</source_obj> <sink_obj>238</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_712"> <id>754</id> <edge_type>1</edge_type> <source_obj>233</source_obj> <sink_obj>238</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_713"> <id>755</id> <edge_type>1</edge_type> <source_obj>238</source_obj> <sink_obj>239</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_714"> <id>757</id> <edge_type>1</edge_type> <source_obj>756</source_obj> <sink_obj>240</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_715"> <id>758</id> <edge_type>1</edge_type> <source_obj>239</source_obj> <sink_obj>240</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_716"> <id>760</id> <edge_type>1</edge_type> <source_obj>759</source_obj> <sink_obj>241</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_717"> <id>761</id> <edge_type>1</edge_type> <source_obj>43</source_obj> <sink_obj>241</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_718"> <id>764</id> <edge_type>1</edge_type> <source_obj>241</source_obj> <sink_obj>242</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_719"> <id>765</id> <edge_type>1</edge_type> <source_obj>739</source_obj> <sink_obj>242</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_720"> <id>766</id> <edge_type>1</edge_type> <source_obj>242</source_obj> <sink_obj>243</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_721"> <id>767</id> <edge_type>1</edge_type> <source_obj>237</source_obj> <sink_obj>244</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_722"> <id>768</id> <edge_type>1</edge_type> <source_obj>243</source_obj> <sink_obj>244</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_723"> <id>769</id> <edge_type>1</edge_type> <source_obj>244</source_obj> <sink_obj>245</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_724"> <id>770</id> <edge_type>1</edge_type> <source_obj>756</source_obj> <sink_obj>246</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_725"> <id>771</id> <edge_type>1</edge_type> <source_obj>245</source_obj> <sink_obj>246</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_726"> <id>772</id> <edge_type>1</edge_type> <source_obj>42</source_obj> <sink_obj>247</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_727"> <id>773</id> <edge_type>1</edge_type> <source_obj>246</source_obj> <sink_obj>247</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_728"> <id>774</id> <edge_type>1</edge_type> <source_obj>247</source_obj> <sink_obj>248</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_729"> <id>775</id> <edge_type>1</edge_type> <source_obj>240</source_obj> <sink_obj>248</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_730"> <id>776</id> <edge_type>1</edge_type> <source_obj>190</source_obj> <sink_obj>249</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_731"> <id>777</id> <edge_type>1</edge_type> <source_obj>248</source_obj> <sink_obj>249</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_732"> <id>778</id> <edge_type>1</edge_type> <source_obj>42</source_obj> <sink_obj>249</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_733"> <id>779</id> <edge_type>2</edge_type> <source_obj>49</source_obj> <sink_obj>250</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_734"> <id>780</id> <edge_type>1</edge_type> <source_obj>42</source_obj> <sink_obj>252</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_735"> <id>787</id> <edge_type>2</edge_type> <source_obj>41</source_obj> <sink_obj>49</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_736"> <id>788</id> <edge_type>2</edge_type> <source_obj>49</source_obj> <sink_obj>253</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_737"> <id>789</id> <edge_type>2</edge_type> <source_obj>49</source_obj> <sink_obj>251</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_738"> <id>790</id> <edge_type>2</edge_type> <source_obj>251</source_obj> <sink_obj>49</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="_739"> <mId>1</mId> <mTag>checkAxis.0</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>212</mMinLatency> <mMaxLatency>212</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_740"> <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>41</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>3</mMinLatency> <mMaxLatency>3</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_741"> <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>49</item> <item>251</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>4</mMinTripCount> <mMaxTripCount>4</mMaxTripCount> <mMinLatency>208</mMinLatency> <mMaxLatency>208</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_742"> <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>253</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="-1"></fsm> <res class_id="-1"></res> <node_label_latency class_id="26" tracking_level="0" version="0"> <count>242</count> <item_version>0</item_version> <item class_id="27" tracking_level="0" version="0"> <first>7</first> <second class_id="28" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>8</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>9</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>10</first> <second> <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>3</second> </second> </item> <item> <first>14</first> <second> <first>0</first> <second>3</second> </second> </item> <item> <first>15</first> <second> <first>0</first> <second>3</second> </second> </item> <item> <first>16</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>17</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>18</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>19</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>20</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>21</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>22</first> <second> <first>2</first> <second>1</second> </second> </item> <item> <first>23</first> <second> <first>2</first> <second>1</second> </second> </item> <item> <first>24</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>25</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>26</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>27</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>28</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>29</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>30</first> <second> <first>2</first> <second>1</second> </second> </item> <item> <first>31</first> <second> <first>2</first> <second>1</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>36</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>2</first> <second>1</second> </second> </item> <item> <first>39</first> <second> <first>2</first> <second>1</second> </second> </item> <item> <first>40</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>42</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>43</first> <second> <first>4</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>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>3</second> </second> </item> <item> <first>51</first> <second> <first>8</first> <second>3</second> </second> </item> <item> <first>52</first> <second> <first>12</first> <second>2</second> </second> </item> <item> <first>53</first> <second> <first>14</first> <second>0</second> </second> </item> <item> <first>54</first> <second> <first>14</first> <second>0</second> </second> </item> <item> <first>55</first> <second> <first>15</first> <second>0</second> </second> </item> <item> <first>56</first> <second> <first>15</first> <second>3</second> </second> </item> <item> <first>57</first> <second> <first>19</first> <second>2</second> </second> </item> <item> <first>58</first> <second> <first>22</first> <second>3</second> </second> </item> <item> <first>59</first> <second> <first>26</first> <second>3</second> </second> </item> <item> <first>60</first> <second> <first>19</first> <second>2</second> </second> </item> <item> <first>61</first> <second> <first>19</first> <second>2</second> </second> </item> <item> <first>62</first> <second> <first>22</first> <second>3</second> </second> </item> <item> <first>63</first> <second> <first>26</first> <second>3</second> </second> </item> <item> <first>64</first> <second> <first>30</first> <second>3</second> </second> </item> <item> <first>65</first> <second> <first>23</first> <second>2</second> </second> </item> <item> <first>66</first> <second> <first>23</first> <second>2</second> </second> </item> <item> <first>67</first> <second> <first>26</first> <second>3</second> </second> </item> <item> <first>68</first> <second> <first>30</first> <second>3</second> </second> </item> <item> <first>69</first> <second> <first>34</first> <second>11</second> </second> </item> <item> <first>70</first> <second> <first>46</first> <second>2</second> </second> </item> <item> <first>71</first> <second> <first>49</first> <second>3</second> </second> </item> <item> <first>72</first> <second> <first>46</first> <second>2</second> </second> </item> <item> <first>73</first> <second> <first>49</first> <second>3</second> </second> </item> <item> <first>74</first> <second> <first>46</first> <second>2</second> </second> </item> <item> <first>75</first> <second> <first>49</first> <second>3</second> </second> </item> <item> <first>76</first> <second> <first>4</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>4</first> <second>0</second> </second> </item> <item> <first>79</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>80</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>81</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>82</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>83</first> <second> <first>49</first> <second>0</second> </second> </item> <item> <first>84</first> <second> <first>49</first> <second>0</second> </second> </item> <item> <first>85</first> <second> <first>53</first> <second>0</second> </second> </item> <item> <first>86</first> <second> <first>53</first> <second>0</second> </second> </item> <item> <first>87</first> <second> <first>53</first> <second>0</second> </second> </item> <item> <first>88</first> <second> <first>53</first> <second>0</second> </second> </item> <item> <first>89</first> <second> <first>53</first> <second>0</second> </second> </item> <item> <first>90</first> <second> <first>53</first> <second>0</second> </second> </item> <item> <first>91</first> <second> <first>53</first> <second>0</second> </second> </item> <item> <first>92</first> <second> <first>53</first> <second>0</second> </second> </item> <item> <first>93</first> <second> <first>54</first> <second>0</second> </second> </item> <item> <first>94</first> <second> <first>53</first> <second>0</second> </second> </item> <item> <first>95</first> <second> <first>54</first> <second>0</second> </second> </item> <item> <first>96</first> <second> <first>54</first> <second>0</second> </second> </item> <item> <first>97</first> <second> <first>54</first> <second>0</second> </second> </item> <item> <first>98</first> <second> <first>53</first> <second>1</second> </second> </item> <item> <first>99</first> <second> <first>54</first> <second>0</second> </second> </item> <item> <first>100</first> <second> <first>49</first> <second>0</second> </second> </item> <item> <first>101</first> <second> <first>49</first> <second>0</second> </second> </item> <item> <first>102</first> <second> <first>53</first> <second>0</second> </second> </item> <item> <first>103</first> <second> <first>53</first> <second>0</second> </second> </item> <item> <first>104</first> <second> <first>53</first> <second>0</second> </second> </item> <item> <first>105</first> <second> <first>53</first> <second>0</second> </second> </item> <item> <first>106</first> <second> <first>53</first> <second>0</second> </second> </item> <item> <first>107</first> <second> <first>54</first> <second>0</second> </second> </item> <item> <first>108</first> <second> <first>54</first> <second>0</second> </second> </item> <item> <first>109</first> <second> <first>53</first> <second>1</second> </second> </item> <item> <first>110</first> <second> <first>54</first> <second>0</second> </second> </item> <item> <first>111</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>112</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>113</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>114</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>115</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>116</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>117</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>118</first> <second> <first>49</first> <second>0</second> </second> </item> <item> <first>119</first> <second> <first>49</first> <second>0</second> </second> </item> <item> <first>120</first> <second> <first>53</first> <second>0</second> </second> </item> <item> <first>121</first> <second> <first>53</first> <second>0</second> </second> </item> <item> <first>122</first> <second> <first>53</first> <second>0</second> </second> </item> <item> <first>123</first> <second> <first>53</first> <second>0</second> </second> </item> <item> <first>124</first> <second> <first>53</first> <second>0</second> </second> </item> <item> <first>125</first> <second> <first>53</first> <second>0</second> </second> </item> <item> <first>126</first> <second> <first>53</first> <second>0</second> </second> </item> <item> <first>127</first> <second> <first>53</first> <second>0</second> </second> </item> <item> <first>128</first> <second> <first>54</first> <second>0</second> </second> </item> <item> <first>129</first> <second> <first>53</first> <second>0</second> </second> </item> <item> <first>130</first> <second> <first>53</first> <second>0</second> </second> </item> <item> <first>131</first> <second> <first>53</first> <second>0</second> </second> </item> <item> <first>132</first> <second> <first>54</first> <second>0</second> </second> </item> <item> <first>133</first> <second> <first>53</first> <second>1</second> </second> </item> <item> <first>134</first> <second> <first>54</first> <second>0</second> </second> </item> <item> <first>135</first> <second> <first>54</first> <second>0</second> </second> </item> <item> <first>136</first> <second> <first>49</first> <second>0</second> </second> </item> <item> <first>137</first> <second> <first>49</first> <second>0</second> </second> </item> <item> <first>138</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>139</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>140</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>141</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>142</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>143</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>144</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>145</first> <second> <first>49</first> <second>0</second> </second> </item> <item> <first>146</first> <second> <first>49</first> <second>0</second> </second> </item> <item> <first>147</first> <second> <first>49</first> <second>0</second> </second> </item> <item> <first>148</first> <second> <first>49</first> <second>0</second> </second> </item> <item> <first>149</first> <second> <first>53</first> <second>0</second> </second> </item> <item> <first>150</first> <second> <first>53</first> <second>0</second> </second> </item> <item> <first>151</first> <second> <first>53</first> <second>0</second> </second> </item> <item> <first>152</first> <second> <first>54</first> <second>0</second> </second> </item> <item> <first>153</first> <second> <first>54</first> <second>0</second> </second> </item> <item> <first>154</first> <second> <first>54</first> <second>0</second> </second> </item> <item> <first>155</first> <second> <first>53</first> <second>0</second> </second> </item> <item> <first>156</first> <second> <first>53</first> <second>0</second> </second> </item> <item> <first>157</first> <second> <first>54</first> <second>0</second> </second> </item> <item> <first>158</first> <second> <first>54</first> <second>0</second> </second> </item> <item> <first>159</first> <second> <first>54</first> <second>0</second> </second> </item> <item> <first>160</first> <second> <first>54</first> <second>0</second> </second> </item> <item> <first>161</first> <second> <first>54</first> <second>0</second> </second> </item> <item> <first>162</first> <second> <first>53</first> <second>1</second> </second> </item> <item> <first>163</first> <second> <first>54</first> <second>0</second> </second> </item> <item> <first>164</first> <second> <first>54</first> <second>0</second> </second> </item> <item> <first>165</first> <second> <first>54</first> <second>0</second> </second> </item> <item> <first>166</first> <second> <first>54</first> <second>0</second> </second> </item> <item> <first>167</first> <second> <first>54</first> <second>0</second> </second> </item> <item> <first>168</first> <second> <first>53</first> <second>0</second> </second> </item> <item> <first>169</first> <second> <first>53</first> <second>0</second> </second> </item> <item> <first>170</first> <second> <first>53</first> <second>0</second> </second> </item> <item> <first>171</first> <second> <first>53</first> <second>0</second> </second> </item> <item> <first>172</first> <second> <first>53</first> <second>0</second> </second> </item> <item> <first>173</first> <second> <first>54</first> <second>0</second> </second> </item> <item> <first>174</first> <second> <first>54</first> <second>0</second> </second> </item> <item> <first>175</first> <second> <first>53</first> <second>1</second> </second> </item> <item> <first>176</first> <second> <first>54</first> <second>0</second> </second> </item> <item> <first>177</first> <second> <first>54</first> <second>0</second> </second> </item> <item> <first>178</first> <second> <first>53</first> <second>0</second> </second> </item> <item> <first>179</first> <second> <first>53</first> <second>0</second> </second> </item> <item> <first>180</first> <second> <first>53</first> <second>0</second> </second> </item> <item> <first>181</first> <second> <first>53</first> <second>0</second> </second> </item> <item> <first>182</first> <second> <first>53</first> <second>0</second> </second> </item> <item> <first>183</first> <second> <first>54</first> <second>0</second> </second> </item> <item> <first>184</first> <second> <first>54</first> <second>0</second> </second> </item> <item> <first>185</first> <second> <first>53</first> <second>1</second> </second> </item> <item> <first>186</first> <second> <first>54</first> <second>0</second> </second> </item> <item> <first>187</first> <second> <first>54</first> <second>0</second> </second> </item> <item> <first>188</first> <second> <first>54</first> <second>0</second> </second> </item> <item> <first>189</first> <second> <first>54</first> <second>0</second> </second> </item> <item> <first>190</first> <second> <first>54</first> <second>0</second> </second> </item> <item> <first>191</first> <second> <first>54</first> <second>0</second> </second> </item> <item> <first>192</first> <second> <first>54</first> <second>0</second> </second> </item> <item> <first>193</first> <second> <first>54</first> <second>0</second> </second> </item> <item> <first>194</first> <second> <first>53</first> <second>0</second> </second> </item> <item> <first>195</first> <second> <first>53</first> <second>0</second> </second> </item> <item> <first>196</first> <second> <first>53</first> <second>0</second> </second> </item> <item> <first>197</first> <second> <first>53</first> <second>0</second> </second> </item> <item> <first>198</first> <second> <first>53</first> <second>0</second> </second> </item> <item> <first>199</first> <second> <first>53</first> <second>0</second> </second> </item> <item> <first>200</first> <second> <first>54</first> <second>0</second> </second> </item> <item> <first>201</first> <second> <first>54</first> <second>0</second> </second> </item> <item> <first>202</first> <second> <first>54</first> <second>0</second> </second> </item> <item> <first>203</first> <second> <first>54</first> <second>0</second> </second> </item> <item> <first>204</first> <second> <first>54</first> <second>0</second> </second> </item> <item> <first>205</first> <second> <first>54</first> <second>0</second> </second> </item> <item> <first>206</first> <second> <first>54</first> <second>0</second> </second> </item> <item> <first>207</first> <second> <first>54</first> <second>0</second> </second> </item> <item> <first>208</first> <second> <first>54</first> <second>0</second> </second> </item> <item> <first>209</first> <second> <first>54</first> <second>0</second> </second> </item> <item> <first>210</first> <second> <first>54</first> <second>0</second> </second> </item> <item> <first>211</first> <second> <first>54</first> <second>0</second> </second> </item> <item> <first>212</first> <second> <first>54</first> <second>0</second> </second> </item> <item> <first>213</first> <second> <first>54</first> <second>0</second> </second> </item> <item> <first>214</first> <second> <first>54</first> <second>0</second> </second> </item> <item> <first>215</first> <second> <first>54</first> <second>0</second> </second> </item> <item> <first>216</first> <second> <first>54</first> <second>0</second> </second> </item> <item> <first>217</first> <second> <first>54</first> <second>0</second> </second> </item> <item> <first>218</first> <second> <first>54</first> <second>0</second> </second> </item> <item> <first>219</first> <second> <first>54</first> <second>0</second> </second> </item> <item> <first>220</first> <second> <first>54</first> <second>0</second> </second> </item> <item> <first>221</first> <second> <first>54</first> <second>0</second> </second> </item> <item> <first>222</first> <second> <first>54</first> <second>0</second> </second> </item> <item> <first>223</first> <second> <first>54</first> <second>0</second> </second> </item> <item> <first>224</first> <second> <first>54</first> <second>0</second> </second> </item> <item> <first>225</first> <second> <first>54</first> <second>0</second> </second> </item> <item> <first>226</first> <second> <first>54</first> <second>0</second> </second> </item> <item> <first>227</first> <second> <first>54</first> <second>0</second> </second> </item> <item> <first>228</first> <second> <first>54</first> <second>0</second> </second> </item> <item> <first>229</first> <second> <first>54</first> <second>0</second> </second> </item> <item> <first>230</first> <second> <first>54</first> <second>0</second> </second> </item> <item> <first>231</first> <second> <first>55</first> <second>0</second> </second> </item> <item> <first>232</first> <second> <first>55</first> <second>0</second> </second> </item> <item> <first>233</first> <second> <first>55</first> <second>0</second> </second> </item> <item> <first>234</first> <second> <first>54</first> <second>0</second> </second> </item> <item> <first>235</first> <second> <first>54</first> <second>0</second> </second> </item> <item> <first>236</first> <second> <first>54</first> <second>0</second> </second> </item> <item> <first>237</first> <second> <first>54</first> <second>0</second> </second> </item> <item> <first>238</first> <second> <first>55</first> <second>0</second> </second> </item> <item> <first>239</first> <second> <first>55</first> <second>0</second> </second> </item> <item> <first>240</first> <second> <first>55</first> <second>0</second> </second> </item> <item> <first>241</first> <second> <first>55</first> <second>0</second> </second> </item> <item> <first>242</first> <second> <first>55</first> <second>0</second> </second> </item> <item> <first>243</first> <second> <first>55</first> <second>0</second> </second> </item> <item> <first>244</first> <second> <first>55</first> <second>0</second> </second> </item> <item> <first>245</first> <second> <first>55</first> <second>0</second> </second> </item> <item> <first>246</first> <second> <first>55</first> <second>0</second> </second> </item> <item> <first>247</first> <second> <first>55</first> <second>0</second> </second> </item> <item> <first>248</first> <second> <first>55</first> <second>0</second> </second> </item> <item> <first>249</first> <second> <first>55</first> <second>0</second> </second> </item> <item> <first>250</first> <second> <first>55</first> <second>0</second> </second> </item> <item> <first>252</first> <second> <first>4</first> <second>0</second> </second> </item> </node_label_latency> <bblk_ent_exit class_id="29" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="30" tracking_level="0" version="0"> <first>41</first> <second class_id="31" tracking_level="0" version="0"> <first>0</first> <second>3</second> </second> </item> <item> <first>49</first> <second> <first>4</first> <second>4</second> </second> </item> <item> <first>251</first> <second> <first>4</first> <second>55</second> </second> </item> <item> <first>253</first> <second> <first>4</first> <second>4</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.109128
142
0.588565
23e57a74cc2ea00ffdc428b06e56c96bd95ff7d3
351
ads
Ada
gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/oconst2.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/oconst2.ads
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
null
null
null
gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/oconst2.ads
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
2
2020-07-27T00:22:36.000Z
2021-04-01T09:41:02.000Z
package OCONST2 is type u8 is mod 2**8; type Base is record i1 : Integer; end Record; type R is record u : u8; b : Base; end record; for R use record u at 0 range 0 .. 7; b at 1 range 0 .. 31; -- aligned SImode bitfield end record; My_R : constant R := (u=>1, b=>(i1=>2)); procedure check (arg : R); end;
14.625
53
0.566952
23369b9ecc176ff48948bfc0ce7f5da43fca4c0d
196
ads
Ada
generated/natools-s_expressions-printers-pretty-config-token_opt.ads
faelys/natools
947c004e6f69ca144942c6af40e102d089223cf8
[ "0BSD" ]
null
null
null
generated/natools-s_expressions-printers-pretty-config-token_opt.ads
faelys/natools
947c004e6f69ca144942c6af40e102d089223cf8
[ "0BSD" ]
null
null
null
generated/natools-s_expressions-printers-pretty-config-token_opt.ads
faelys/natools
947c004e6f69ca144942c6af40e102d089223cf8
[ "0BSD" ]
null
null
null
package Natools.S_Expressions.Printers.Pretty.Config.Token_Opt is pragma Preelaborate; function Hash (S : String) return Natural; end Natools.S_Expressions.Printers.Pretty.Config.Token_Opt;
39.2
65
0.816327
183df43b779d209f488a17271781795b60e6024d
944
ada
Ada
Task/Image-noise/Ada/image-noise-2.ada
mullikine/RosettaCodeData
4f0027c6ce83daa36118ee8b67915a13cd23ab67
[ "Info-ZIP" ]
1
2018-11-09T22:08:38.000Z
2018-11-09T22:08:38.000Z
Task/Image-noise/Ada/image-noise-2.ada
mullikine/RosettaCodeData
4f0027c6ce83daa36118ee8b67915a13cd23ab67
[ "Info-ZIP" ]
null
null
null
Task/Image-noise/Ada/image-noise-2.ada
mullikine/RosettaCodeData
4f0027c6ce83daa36118ee8b67915a13cd23ab67
[ "Info-ZIP" ]
1
2018-11-09T22:08:40.000Z
2018-11-09T22:08:40.000Z
with Ada.Numerics.Discrete_Random; package body Noise is type Color is (Black, White); package Color_Random is new Ada.Numerics.Discrete_Random (Color); Color_Gen : Color_Random.Generator; function Create_Image (Width, Height : Natural) return Lumen.Image.Descriptor is Result : Lumen.Image.Descriptor; begin Color_Random.Reset (Color_Gen); Result.Width := Width; Result.Height := Height; Result.Complete := True; Result.Values := new Lumen.Image.Pixel_Matrix (1 .. Width, 1 .. Height); for X in 1 .. Width loop for Y in 1 .. Height loop if Color_Random.Random (Color_Gen) = Black then Result.Values (X, Y) := (R => 0, G => 0, B => 0, A => 0); else Result.Values (X, Y) := (R => 255, G => 255, B => 255, A => 0); end if; end loop; end loop; return Result; end Create_Image; end Noise;
32.551724
83
0.591102
39ef9d612debff51b642b4284f4be9ef08a1482d
899
adb
Ada
source/gaws_program.adb
jquorning/Gauss
742b93651cd97e417b9eacba7a3416be581f9c23
[ "blessing" ]
4
2019-02-17T16:11:41.000Z
2019-03-28T00:06:12.000Z
source/gaws_program.adb
jquorning/GAWS
742b93651cd97e417b9eacba7a3416be581f9c23
[ "blessing" ]
null
null
null
source/gaws_program.adb
jquorning/GAWS
742b93651cd97e417b9eacba7a3416be581f9c23
[ "blessing" ]
null
null
null
-- -- The author disclaims copyright to this source code. In place of -- a legal notice, here is a blessing: -- -- May you do good and not evil. -- May you find forgiveness for yourself and forgive others. -- May you share freely, not taking more than you give. -- with Ada.Command_Line; with Command_Line; with Options; -- with Exceptions; with Program; with GAWS_IO; procedure GAWS_Program is Parse_Success : Boolean; begin Command_Line.Parse (Parse_Success); if not Options.Be_Quiet then GAWS_IO.Put_Version; GAWS_IO.Put_Blessing; end if; if not Parse_Success then Ada.Command_Line.Set_Exit_Status (Ada.Command_Line.Failure); return; end if; if Options.Show_Version then GAWS_IO.Put_Version; return; end if; if not Options.Be_Quiet then GAWS_IO.Put_Hints; end if; Program.Run; end GAWS_Program;
18.729167
68
0.695217
39c85ad5845f66b646ae0a87b817fcc8f649039f
100
ada
Ada
PrimeTime.ada
SmashedSquirrel/AdaPrimes
99be648b09d73306fdcf59e64d470655584053c7
[ "MIT" ]
null
null
null
PrimeTime.ada
SmashedSquirrel/AdaPrimes
99be648b09d73306fdcf59e64d470655584053c7
[ "MIT" ]
null
null
null
PrimeTime.ada
SmashedSquirrel/AdaPrimes
99be648b09d73306fdcf59e64d470655584053c7
[ "MIT" ]
null
null
null
with Interface_Pkg; procedure Main_Proc is begin Interface_Pkg.Find_Prime; end Main_Proc;
12.5
27
0.77
fb3de07305d6c1f676682b6e0d84e32ec9e342b1
2,490
ads
Ada
source/libgela/gela-containers.ads
faelys/gela-asis
48a3bee90eda9f0c9d958b4e3c80a5a9b1c65253
[ "BSD-3-Clause" ]
4
2016-02-05T15:51:56.000Z
2022-03-25T20:38:32.000Z
source/libgela/gela-containers.ads
faelys/gela-asis
48a3bee90eda9f0c9d958b4e3c80a5a9b1c65253
[ "BSD-3-Clause" ]
null
null
null
source/libgela/gela-containers.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: package Gela.Containers is pragma Pure (Containers); end Gela.Containers; ------------------------------------------------------------------------------ -- Copyright (c) 2006, 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. ------------------------------------------------------------------------------
56.590909
79
0.576305
dfb9ec0b40994bc1e76fcfb8c74341ecd4330ee0
3,106
ads
Ada
parsers-generic_source-get_token.ads
jrcarter/Ada_GUI
65a829c55dec91fd48a0b72f88d76137768bf4fb
[ "BSD-3-Clause" ]
19
2018-03-18T18:07:14.000Z
2022-03-30T03:10:12.000Z
parsers-generic_source-get_token.ads
jrcarter/Ada_GUI
65a829c55dec91fd48a0b72f88d76137768bf4fb
[ "BSD-3-Clause" ]
4
2021-08-23T12:52:06.000Z
2022-03-31T10:48:43.000Z
parsers-generic_source-get_token.ads
jrcarter/Ada_GUI
65a829c55dec91fd48a0b72f88d76137768bf4fb
[ "BSD-3-Clause" ]
null
null
null
-- -- -- procedure Copyright (c) Dmitry A. Kazakov -- -- Parsers.Generic_Source.Get_Token Luebeck -- -- Interface Summer, 2005 -- -- -- -- Last revision : 11:37 13 Oct 2007 -- -- -- -- 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. -- --____________________________________________________________________-- -- -- Get_Token -- Get a token in the source -- -- Code - The source code -- Folder - The table of tokens to match the source against -- Token - The token matched -- Got_It - Set to false if no token was matched -- -- This generic procedure matches the tokens from the table Folder -- against Code. When a token there is matched the value associated -- with it is set into Token and Got_It is set to True. The source -- cursor is then advanced behind the token matched. The longest -- possible token is always matched. When no token matches the source -- Got_It is set to False. The procedure is generic. The parameter is -- an instance of the package Tables. Note that Folder can be any -- descendant of the table type defined in Tables. This includes the -- case-insensitive tables provided by Tables.Names. -- with Tables; generic with package Tokens is new Tables (<>); procedure Parsers.Generic_Source.Get_Token ( Code : in out Source_Type; Folder : Tokens.Table'Class; Token : out Tokens.Tag; Got_It : out Boolean );
56.472727
73
0.578236
dcdb23690ebf812e1701d29c7018617e3bd25bfb
4,755
adb
Ada
gcc-gcc-7_3_0-release/gcc/ada/g-shshco.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/ada/g-shshco.adb
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
null
null
null
gcc-gcc-7_3_0-release/gcc/ada/g-shshco.adb
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
2
2020-07-27T00:22:36.000Z
2021-04-01T09:41:02.000Z
------------------------------------------------------------------------------ -- -- -- GNAT LIBRARY COMPONENTS -- -- -- -- G N A T . S E C U R E _ H A S H E S . S H A 2 _ C O M M O N -- -- -- -- B o d y -- -- -- -- Copyright (C) 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. -- -- -- -- 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 GNAT.Secure_Hashes.SHA2_Common is --------------- -- Transform -- --------------- procedure Transform (H_St : in out Hash_State.State; M_St : in out Message_State) is use System; subtype Word is Hash_State.Word; use type Hash_State.Word; function Ch (X, Y, Z : Word) return Word; function Maj (X, Y, Z : Word) return Word; pragma Inline (Ch, Maj); -- Elementary functions from FIPS PUB 180-3 -------- -- Ch -- -------- function Ch (X, Y, Z : Word) return Word is begin return (X and Y) xor ((not X) and Z); end Ch; --------- -- Maj -- --------- function Maj (X, Y, Z : Word) return Word is begin return (X and Y) xor (X and Z) xor (Y and Z); end Maj; type Words is array (Natural range <>) of Word; X : Words (0 .. 15); for X'Address use M_St.Buffer'Address; pragma Import (Ada, X); W : Words (0 .. Rounds - 1); A, B, C, D, E, F, G, H, T1, T2 : Word; -- Start of processing for Transform begin if Default_Bit_Order /= High_Order_First then for J in X'Range loop Hash_State.Swap (X (J)'Address); end loop; end if; -- 1. Prepare message schedule W (0 .. 15) := X; for T in 16 .. Rounds - 1 loop W (T) := S1 (W (T - 2)) + W (T - 7) + S0 (W (T - 15)) + W (T - 16); end loop; -- 2. Initialize working variables A := H_St (0); B := H_St (1); C := H_St (2); D := H_St (3); E := H_St (4); F := H_St (5); G := H_St (6); H := H_St (7); -- 3. Perform transformation rounds for T in 0 .. Rounds - 1 loop T1 := H + Sigma1 (E) + Ch (E, F, G) + K (T) + W (T); T2 := Sigma0 (A) + Maj (A, B, C); H := G; G := F; F := E; E := D + T1; D := C; C := B; B := A; A := T1 + T2; end loop; -- 4. Update hash state H_St (0) := A + H_St (0); H_St (1) := B + H_St (1); H_St (2) := C + H_St (2); H_St (3) := D + H_St (3); H_St (4) := E + H_St (4); H_St (5) := F + H_St (5); H_St (6) := G + H_St (6); H_St (7) := H + H_St (7); end Transform; end GNAT.Secure_Hashes.SHA2_Common;
34.963235
78
0.40715
20f0302a51b175eb269b294acdd5c896d5136c48
1,222
ads
Ada
source/streams/machine-apple-darwin/s-naioso.ads
ytomino/drake
4e4bdcd8b8e23a11a29b31d3a8861fdf60090ea2
[ "MIT" ]
33
2015-04-04T09:19:36.000Z
2021-11-10T05:33:34.000Z
source/streams/machine-apple-darwin/s-naioso.ads
ytomino/drake
4e4bdcd8b8e23a11a29b31d3a8861fdf60090ea2
[ "MIT" ]
8
2017-11-14T13:05:07.000Z
2018-08-09T15:28:49.000Z
source/streams/machine-apple-darwin/s-naioso.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 Darwin (or FreeBSD) with C.netdb; with C.sys.socket; package System.Native_IO.Sockets is pragma Preelaborate; type Port_Number is range 0 .. 16#ffff#; subtype Socket_Address is C.sys.socket.struct_sockaddr; procedure Close_Socket (Handle : Handle_Type; Raise_On_Error : Boolean); -- Close_Ordinary without Name -- client subtype End_Point is C.netdb.struct_addrinfo_ptr; function Resolve (Host_Name : String; Service : String) return End_Point; function Resolve (Host_Name : String; Port : Port_Number) return End_Point; procedure Connect (Handle : aliased out Handle_Type; Peer : End_Point); procedure Finalize (Item : End_Point); -- server subtype Listener is Handle_Type; Invalid_Listener : Listener renames Invalid_Handle; procedure Listen (Server : aliased out Listener; Port : Port_Number); procedure Accept_Socket ( Server : Listener; Handle : aliased out Handle_Type; Remote_Address : out Socket_Address); procedure Close_Listener (Server : Listener; Raise_On_Error : Boolean) renames Close_Socket; end System.Native_IO.Sockets;
26.565217
75
0.726678
232e29b8a97b47f07b30185bdf916f6231d17396
1,768
ads
Ada
Formatted_Output-orig/formatted_output-float_output.ads
VitalijBondarenko/Formatted_Output_NG
91fbdba8b2c720d9769a52f2b2152c14236adaa0
[ "MIT" ]
1
2019-01-08T14:03:48.000Z
2019-01-08T14:03:48.000Z
Formatted_Output-orig/formatted_output-float_output.ads
VitalijBondarenko/Formatted_Output_NG
91fbdba8b2c720d9769a52f2b2152c14236adaa0
[ "MIT" ]
null
null
null
Formatted_Output-orig/formatted_output-float_output.ads
VitalijBondarenko/Formatted_Output_NG
91fbdba8b2c720d9769a52f2b2152c14236adaa0
[ "MIT" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- File: -- -- formatted_output-float_output.ads -- -- -- -- Description: -- -- Formatted_Output.Float_Output generic package specification, -- -- contains prototypes of functions that supports formatted output of -- -- floating point types -- -- -- -- Author: -- -- Eugene Nonko, [email protected] -- -- -- -- Revision history: -- -- 28/01/99 - original -- -- -- ------------------------------------------------------------------------------ generic type Item_Type is digits <>; package Formatted_Output.Float_Output is function "&" (Fmt : Format_Type; Value : Item_Type) return Format_Type; -- Replaces leftmost formatting sequence in Fmt with formatted -- Value image, then returns Fmt. Raises exception Format_Error -- when invalid formatting sequence is found or no formatting -- sequence found at all end Formatted_Output.Float_Output;
57.032258
78
0.315611
fb88df2e68a069b8564710cfb19400c8c09a5c20
29,469
adb
Ada
src/ui/ships-ui-cargo.adb
thindil/steamsky
d5d7fea622f7994c91017c4cd7ba5e188153556c
[ "TCL", "MIT" ]
80
2017-04-08T23:14:07.000Z
2022-02-10T22:30:51.000Z
src/ui/ships-ui-cargo.adb
thindil/steamsky
d5d7fea622f7994c91017c4cd7ba5e188153556c
[ "TCL", "MIT" ]
89
2017-06-24T08:18:26.000Z
2021-11-12T04:37:36.000Z
src/ui/ships-ui-cargo.adb
thindil/steamsky
d5d7fea622f7994c91017c4cd7ba5e188153556c
[ "TCL", "MIT" ]
9
2018-04-14T16:37:25.000Z
2020-03-21T14:33:49.000Z
-- Copyright (c) 2020-2021 Bartek thindil Jasicki <[email protected]> -- -- 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 Ada.Containers.Generic_Array_Sort; with GNAT.String_Split; use GNAT.String_Split; with Tcl.Ada; use Tcl.Ada; with Tcl.Tk.Ada; use Tcl.Tk.Ada; with Tcl.Tk.Ada.Busy; with Tcl.Tk.Ada.Grid; with Tcl.Tk.Ada.Widgets; use Tcl.Tk.Ada.Widgets; with Tcl.Tk.Ada.Widgets.Canvas; use Tcl.Tk.Ada.Widgets.Canvas; with Tcl.Tk.Ada.Widgets.Menu; use Tcl.Tk.Ada.Widgets.Menu; with Tcl.Tk.Ada.Widgets.Toplevel; use Tcl.Tk.Ada.Widgets.Toplevel; with Tcl.Tk.Ada.Widgets.Toplevel.MainWindow; use Tcl.Tk.Ada.Widgets.Toplevel.MainWindow; with Tcl.Tk.Ada.Widgets.TtkButton; use Tcl.Tk.Ada.Widgets.TtkButton; with Tcl.Tk.Ada.Widgets.TtkEntry.TtkComboBox; use Tcl.Tk.Ada.Widgets.TtkEntry.TtkComboBox; with Tcl.Tk.Ada.Widgets.TtkEntry.TtkSpinBox; use Tcl.Tk.Ada.Widgets.TtkEntry.TtkSpinBox; with Tcl.Tk.Ada.Widgets.TtkFrame; use Tcl.Tk.Ada.Widgets.TtkFrame; with Tcl.Tk.Ada.Widgets.TtkLabel; use Tcl.Tk.Ada.Widgets.TtkLabel; with Tcl.Tk.Ada.Widgets.TtkScrollbar; use Tcl.Tk.Ada.Widgets.TtkScrollbar; with Tcl.Tk.Ada.Winfo; use Tcl.Tk.Ada.Winfo; with Config; use Config; with CoreUI; use CoreUI; with Crew.Inventory; use Crew.Inventory; with Dialogs; use Dialogs; with Maps.UI; use Maps.UI; with Messages; use Messages; with Missions; use Missions; with Ships.Cargo; use Ships.Cargo; with Stories; use Stories; with Table; use Table; with Utils.UI; use Utils.UI; package body Ships.UI.Cargo is -- ****iv* SUCargo/SUCargo.CargoTable -- FUNCTION -- Table with info about the player ship cargo -- SOURCE CargoTable: Table_Widget (5); -- **** -- ****iv* SUCargo/SUCargo.Cargo_Indexes -- FUNCTION -- Indexes of the player ship cargo -- SOURCE Cargo_Indexes: Positive_Container.Vector; -- **** -- ****o* SUCargo/SUCargo.Show_Cargo_Command -- FUNCTION -- Show the cargo of the player ship -- PARAMETERS -- ClientData - Custom data send to the command. Unused -- Interp - Tcl interpreter in which command was executed. -- Argc - Number of arguments passed to the command. -- Argv - Values of arguments passed to the command. -- RESULT -- This function always return TCL_OK -- COMMANDS -- ShowCargo ?page? -- Optional paramater page is the number of the page of cargo list to show -- SOURCE function Show_Cargo_Command (ClientData: Integer; Interp: Tcl.Tcl_Interp; Argc: Interfaces.C.int; Argv: CArgv.Chars_Ptr_Ptr) return Interfaces.C.int with Convention => C; -- **** function Show_Cargo_Command (ClientData: Integer; Interp: Tcl.Tcl_Interp; Argc: Interfaces.C.int; Argv: CArgv.Chars_Ptr_Ptr) return Interfaces.C.int is pragma Unreferenced(ClientData); ShipCanvas: constant Tk_Canvas := Get_Widget(Main_Paned & ".shipinfoframe.cargo.canvas", Interp); CargoInfoFrame: constant Ttk_Frame := Get_Widget(ShipCanvas & ".frame", Interp); Tokens: Slice_Set; Rows: Natural := 0; ItemType, ProtoIndex: Unbounded_String; ItemsTypes: Unbounded_String := To_Unbounded_String("All"); TypeBox: constant Ttk_ComboBox := Get_Widget(CargoInfoFrame & ".selecttype.combo", Interp); ItemsType: constant String := Get(TypeBox); Page: constant Positive := (if Argc = 2 then Positive'Value(CArgv.Arg(Argv, 1)) else 1); Start_Row: constant Positive := ((Page - 1) * Game_Settings.Lists_Limit) + 1; Current_Row: Positive := 1; Free_Space_Label: constant Ttk_Label := Get_Widget(CargoInfoFrame & ".freespace", Interp); begin Create(Tokens, Tcl.Tk.Ada.Grid.Grid_Size(CargoInfoFrame), " "); Rows := Natural'Value(Slice(Tokens, 2)); Delete_Widgets(3, Rows - 1, CargoInfoFrame); CargoTable := CreateTable (Widget_Image(CargoInfoFrame), (To_Unbounded_String("Name"), To_Unbounded_String("Durability"), To_Unbounded_String("Type"), To_Unbounded_String("Amount"), To_Unbounded_String("Weight")), Get_Widget(Main_Paned & ".shipinfoframe.cargo.scrolly"), "SortShipCargo", "Press mouse button to sort the cargo."); if Cargo_Indexes.Length /= Player_Ship.Cargo.Length then Cargo_Indexes.Clear; for I in Player_Ship.Cargo.Iterate loop Cargo_Indexes.Append(Inventory_Container.To_Index(I)); end loop; end if; configure (Free_Space_Label, "-text {Free cargo space:" & Integer'Image(FreeCargo(0)) & " kg}"); Load_Cargo_Loop : for I of Cargo_Indexes loop if Current_Row < Start_Row then Current_Row := Current_Row + 1; goto End_Of_Loop; end if; ProtoIndex := Player_Ship.Cargo(I).ProtoIndex; ItemType := (if Items_List(ProtoIndex).ShowType /= Null_Unbounded_String then Items_List(ProtoIndex).ShowType else Items_List(ProtoIndex).IType); if Index(ItemsTypes, "{" & To_String(ItemType) & "}") = 0 then Append(ItemsTypes, " {" & To_String(ItemType) & "}"); end if; if ItemsType /= "All" and then To_String(ItemType) /= ItemsType then goto End_Of_Loop; end if; AddButton (CargoTable, GetItemName(Player_Ship.Cargo(I)), "Show available item's options", "ShowCargoMenu" & Positive'Image(I), 1); AddProgressBar (CargoTable, Player_Ship.Cargo(I).Durability, Default_Item_Durability, "The current durability of the selected crew member", "ShowCargoMenu" & Positive'Image(I), 2); AddButton (CargoTable, To_String(ItemType), "The type of the selected item", "ShowCargoMenu" & Positive'Image(I), 3); AddButton (CargoTable, Positive'Image(Player_Ship.Cargo(I).Amount), "The amount of the selected item", "ShowCargoMenu" & Positive'Image(I), 4); AddButton (CargoTable, Positive'Image (Player_Ship.Cargo(I).Amount * Items_List(ProtoIndex).Weight) & " kg", "The total weight of the selected item", "ShowCargoMenu" & Positive'Image(I), 5, True); exit Load_Cargo_Loop when CargoTable.Row = Game_Settings.Lists_Limit + 1; <<End_Of_Loop>> end loop Load_Cargo_Loop; if Page > 1 then AddPagination (CargoTable, "ShowCargo" & Positive'Image(Page - 1), (if CargoTable.Row < Game_Settings.Lists_Limit + 1 then "" else "ShowCargo" & Positive'Image(Page + 1))); elsif CargoTable.Row = Game_Settings.Lists_Limit + 1 then AddPagination(CargoTable, "", "ShowCargo" & Positive'Image(Page + 1)); end if; UpdateTable(CargoTable); configure(TypeBox, "-values [list " & To_String(ItemsTypes) & "]"); Tcl_Eval(Get_Context, "update"); configure (ShipCanvas, "-scrollregion [list " & BBox(ShipCanvas, "all") & "]"); Xview_Move_To(ShipCanvas, "0.0"); Yview_Move_To(ShipCanvas, "0.0"); return TCL_OK; end Show_Cargo_Command; -- ****it* SUCargo/SUCargo.Cargo_Sort_Orders -- FUNCTION -- Sorting orders for the player ship cargo -- OPTIONS -- NAMEASC - Sort items by name ascending -- NAMEDESC - Sort items by name descending -- DURABILITYASC - Sort items by durability ascending -- DURABILITYDESC - Sort items by durability descending -- TYPEASC - Sort items by type ascending -- TYPEDESC - Sort items by type descending -- AMOUNTASC - Sort items by amount ascending -- AMOUNTDESC - Sort items by amount descending -- WEIGHTASC - Sort items by total weight ascending -- WEIGHTDESC - Sort items by total weight descending -- NONE - No sorting items (default) -- HISTORY -- 6.4 - Added -- SOURCE type Cargo_Sort_Orders is (NAMEASC, NAMEDESC, DURABILITYASC, DURABILITYDESC, TYPEASC, TYPEDESC, AMOUNTASC, AMOUNTDESC, WEIGHTASC, WEIGHTDESC, NONE) with Default_Value => NONE; -- **** -- ****id* SUCargo/SUCargo.Default_Cargo_Sort_Order -- FUNCTION -- Default sorting order for items in the player's ship cargo -- HISTORY -- 6.4 - Added -- SOURCE Default_Cargo_Sort_Order: constant Cargo_Sort_Orders := NONE; -- **** -- ****iv* SUCargo/SUCargo.Cargo_Sort_Order -- FUNCTION -- The current sorting order of items in the player's ship cargo -- SOURCE Cargo_Sort_Order: Cargo_Sort_Orders := Default_Cargo_Sort_Order; -- **** -- ****o* SUCargo/SUCargo.Sort_Cargo_Command -- FUNCTION -- Sort the player's ship's cargo list -- PARAMETERS -- ClientData - Custom data send to the command. -- Interp - Tcl interpreter in which command was executed. -- Argc - Number of arguments passed to the command. Unused -- Argv - Values of arguments passed to the command. -- RESULT -- This function always return TCL_OK -- COMMANDS -- SortShipCargo x -- X is X axis coordinate where the player clicked the mouse button -- SOURCE function Sort_Cargo_Command (ClientData: Integer; Interp: Tcl.Tcl_Interp; Argc: Interfaces.C.int; Argv: CArgv.Chars_Ptr_Ptr) return Interfaces.C.int with Convention => C; -- **** function Sort_Cargo_Command (ClientData: Integer; Interp: Tcl.Tcl_Interp; Argc: Interfaces.C.int; Argv: CArgv.Chars_Ptr_Ptr) return Interfaces.C.int is pragma Unreferenced(Argc); Column: constant Positive := (if CArgv.Arg(Argv, 1) = "-1" then Positive'Last else Get_Column_Number (CargoTable, Natural'Value(CArgv.Arg(Argv, 1)))); type Local_Cargo_Data is record Name: Unbounded_String; Damage: Float; Item_Type: Unbounded_String; Amount: Positive; Weight: Positive; Id: Positive; end record; type Cargo_Array is array(Positive range <>) of Local_Cargo_Data; Local_Cargo: Cargo_Array(1 .. Positive(Player_Ship.Cargo.Length)); function "<"(Left, Right: Local_Cargo_Data) return Boolean is begin if Cargo_Sort_Order = NAMEASC and then Left.Name < Right.Name then return True; end if; if Cargo_Sort_Order = NAMEDESC and then Left.Name > Right.Name then return True; end if; if Cargo_Sort_Order = DURABILITYASC and then Left.Damage < Right.Damage then return True; end if; if Cargo_Sort_Order = DURABILITYDESC and then Left.Damage > Right.Damage then return True; end if; if Cargo_Sort_Order = TYPEASC and then Left.Item_Type < Right.Item_Type then return True; end if; if Cargo_Sort_Order = TYPEDESC and then Left.Item_Type > Right.Item_Type then return True; end if; if Cargo_Sort_Order = AMOUNTASC and then Left.Amount < Right.Amount then return True; end if; if Cargo_Sort_Order = AMOUNTDESC and then Left.Amount > Right.Amount then return True; end if; if Cargo_Sort_Order = WEIGHTASC and then Left.Weight < Right.Weight then return True; end if; if Cargo_Sort_Order = WEIGHTDESC and then Left.Weight > Right.Weight then return True; end if; return False; end "<"; procedure Sort_Cargo is new Ada.Containers.Generic_Array_Sort (Index_Type => Positive, Element_Type => Local_Cargo_Data, Array_Type => Cargo_Array); begin case Column is when 1 => if Cargo_Sort_Order = NAMEASC then Cargo_Sort_Order := NAMEDESC; else Cargo_Sort_Order := NAMEASC; end if; when 2 => if Cargo_Sort_Order = DURABILITYASC then Cargo_Sort_Order := DURABILITYDESC; else Cargo_Sort_Order := DURABILITYASC; end if; when 3 => if Cargo_Sort_Order = TYPEASC then Cargo_Sort_Order := TYPEDESC; else Cargo_Sort_Order := TYPEASC; end if; when 4 => if Cargo_Sort_Order = AMOUNTASC then Cargo_Sort_Order := AMOUNTDESC; else Cargo_Sort_Order := AMOUNTASC; end if; when 5 => if Cargo_Sort_Order = WEIGHTASC then Cargo_Sort_Order := WEIGHTDESC; else Cargo_Sort_Order := WEIGHTASC; end if; when others => null; end case; if Cargo_Sort_Order = NONE then return Show_Cargo_Command (ClientData, Interp, 1, CArgv.Empty & "ShowCargo"); end if; for I in Player_Ship.Cargo.Iterate loop Local_Cargo(Inventory_Container.To_Index(I)) := (Name => To_Unbounded_String (GetItemName(Player_Ship.Cargo(I), False, False)), Damage => Float(Player_Ship.Cargo(I).Durability) / Float(Default_Item_Durability), Item_Type => (if Items_List(Player_Ship.Cargo(I).ProtoIndex).ShowType /= Null_Unbounded_String then Items_List(Player_Ship.Cargo(I).ProtoIndex).ShowType else Items_List(Player_Ship.Cargo(I).ProtoIndex).IType), Amount => Player_Ship.Cargo(I).Amount, Weight => Player_Ship.Cargo(I).Amount * Items_List(Player_Ship.Cargo(I).ProtoIndex).Weight, Id => Inventory_Container.To_Index(I)); end loop; Sort_Cargo(Local_Cargo); Cargo_Indexes.Clear; for Item of Local_Cargo loop Cargo_Indexes.Append(Item.Id); end loop; return Show_Cargo_Command(ClientData, Interp, 1, CArgv.Empty & "ShowCargo"); end Sort_Cargo_Command; -- ****o* SUCargo/SUCargo.Show_Give_Item_Command -- FUNCTION -- Show UI to give the selected item from the ship cargo to the selected -- crew member -- PARAMETERS -- ClientData - Custom data send to the command. Unused -- Interp - Tcl interpreter in which command was executed. Unused -- Argc - Number of arguments passed to the command. Unused -- Argv - Values of arguments passed to the command. -- RESULT -- This function always return TCL_OK -- COMMANDS -- ShowGiveItem itemindex -- Itemindex is the index of the item which will be set -- SOURCE function Show_Give_Item_Command (ClientData: Integer; Interp: Tcl.Tcl_Interp; Argc: Interfaces.C.int; Argv: CArgv.Chars_Ptr_Ptr) return Interfaces.C.int with Convention => C; -- **** function Show_Give_Item_Command (ClientData: Integer; Interp: Tcl.Tcl_Interp; Argc: Interfaces.C.int; Argv: CArgv.Chars_Ptr_Ptr) return Interfaces.C.int is pragma Unreferenced(ClientData, Interp, Argc); ItemIndex: constant Positive := Positive'Value(CArgv.Arg(Argv, 1)); ItemDialog: constant Ttk_Frame := Create_Dialog (".itemdialog", "Give " & GetItemName(Player_Ship.Cargo(ItemIndex)) & " from the ship's cargo to the selected crew member", 370, 2); Button: Ttk_Button := Create (ItemDialog & ".givebutton", "-text Give -command {GiveItem " & CArgv.Arg(Argv, 1) & "}"); Label: Ttk_Label; AmountBox: constant Ttk_SpinBox := Create (ItemDialog & ".giveamount", "-width 15 -from 1 -to" & Positive'Image(Player_Ship.Cargo(ItemIndex).Amount) & " -validate key -validatecommand {CheckAmount %W" & Positive'Image(ItemIndex) & " %P} -command {ValidateAmount " & ItemDialog & ".giveamount" & Positive'Image(ItemIndex) & "}"); CrewBox: constant Ttk_ComboBox := Create(ItemDialog & ".member", "-state readonly -width 14"); MembersNames: Unbounded_String; begin Label := Create(ItemDialog & ".amountlbl", "-text {Amount:}"); Tcl.Tk.Ada.Grid.Grid(Label, "-pady {0 5}"); Set(AmountBox, "1"); Tcl.Tk.Ada.Grid.Grid(AmountBox, "-column 1 -row 1 -pady {0 5}"); Bind (AmountBox, "<Escape>", "{" & ItemDialog & ".cancelbutton invoke;break}"); Label := Create(ItemDialog & ".memberlbl", "-text {To:}"); Tcl.Tk.Ada.Grid.Grid(Label); Load_Crew_Names_Loop : for Member of Player_Ship.Crew loop Append(MembersNames, " " & Member.Name); end loop Load_Crew_Names_Loop; configure(CrewBox, "-values [list" & To_String(MembersNames) & "]"); Current(CrewBox, "0"); Tcl.Tk.Ada.Grid.Grid(CrewBox, "-column 1 -row 2"); Bind (CrewBox, "<Escape>", "{" & ItemDialog & ".cancelbutton invoke;break}"); Label := Create (ItemDialog & ".errorlbl", "-style Headerred.TLabel -wraplength 370"); Tcl.Tk.Ada.Grid.Grid(Label, "-columnspan 2 -padx 5"); Tcl.Tk.Ada.Grid.Grid_Remove(Label); Tcl.Tk.Ada.Grid.Grid(Button, "-column 0 -row 4 -padx {5 0} -pady 5"); Bind (Button, "<Escape>", "{" & ItemDialog & ".cancelbutton invoke;break}"); Button := Create (ItemDialog & ".cancelbutton", "-text Cancel -command {CloseDialog " & ItemDialog & "}"); Tcl.Tk.Ada.Grid.Grid (Button, "-column 1 -row 4 -padx {0 5} -pady 5 -sticky e"); Focus(Button); Bind(Button, "<Tab>", "{focus .itemdialog.givebutton;break}"); Bind(Button, "<Escape>", "{" & Button & " invoke;break}"); Show_Dialog(ItemDialog); return TCL_OK; end Show_Give_Item_Command; -- ****o* SUCargo/SUCargo.Give_Item_Command -- FUNCTION -- Give selected amount of the selected item from the ship's cargo to the -- selected crew member -- PARAMETERS -- ClientData - Custom data send to the command. -- Interp - Tcl interpreter in which command was executed. -- Argc - Number of arguments passed to the command. Unused -- Argv - Values of arguments passed to the command. -- RESULT -- This function always return TCL_OK -- COMMANDS -- GiveItem -- SOURCE function Give_Item_Command (ClientData: Integer; Interp: Tcl.Tcl_Interp; Argc: Interfaces.C.int; Argv: CArgv.Chars_Ptr_Ptr) return Interfaces.C.int with Convention => C; -- **** function Give_Item_Command (ClientData: Integer; Interp: Tcl.Tcl_Interp; Argc: Interfaces.C.int; Argv: CArgv.Chars_Ptr_Ptr) return Interfaces.C.int is pragma Unreferenced(Argc); MemberIndex, Amount: Positive; ItemIndex: constant Positive := Positive'Value(CArgv.Arg(Argv, 1)); Item: constant InventoryData := Player_Ship.Cargo(ItemIndex); ItemDialog: Tk_Toplevel := Get_Widget(".itemdialog", Interp); SpinBox: constant Ttk_SpinBox := Get_Widget(ItemDialog & ".giveamount"); ComboBox: constant Ttk_ComboBox := Get_Widget(ItemDialog & ".member"); begin Amount := Natural'Value(Get(SpinBox)); MemberIndex := Natural'Value(Current(ComboBox)) + 1; if FreeInventory (MemberIndex, 0 - (Items_List(Item.ProtoIndex).Weight * Amount)) < 0 then ShowMessage (Text => "No free space in " & To_String(Player_Ship.Crew(MemberIndex).Name) & "'s inventory for that amount of " & GetItemName(Item), Title => "Can't give item"); return TCL_OK; end if; AddMessage ("You gave" & Positive'Image(Amount) & " " & GetItemName(Player_Ship.Cargo(ItemIndex)) & " to " & To_String(Player_Ship.Crew(MemberIndex).Name) & ".", OtherMessage); UpdateInventory (MemberIndex => MemberIndex, Amount => Amount, ProtoIndex => Item.ProtoIndex, Durability => Item.Durability, Price => Item.Price); UpdateCargo (Ship => Player_Ship, Amount => (0 - Amount), CargoIndex => ItemIndex, Price => Item.Price); Destroy(ItemDialog); Tcl.Tk.Ada.Busy.Forget(Main_Paned); Tcl.Tk.Ada.Busy.Forget(Game_Header); UpdateHeader; Update_Messages; return Sort_Cargo_Command (ClientData, Interp, 2, CArgv.Empty & "SortShipCargo" & "-1"); end Give_Item_Command; -- ****o* SUCargo/SUCargo.Show_Drop_Item_Command -- FUNCTION -- Show UI to drop the selected item from the ship cargo -- PARAMETERS -- ClientData - Custom data send to the command. Unused -- Interp - Tcl interpreter in which command was executed. Unused -- Argc - Number of arguments passed to the command. Unused -- Argv - Values of arguments passed to the command. -- RESULT -- This function always return TCL_OK -- COMMANDS -- ShowDropItem itemindex -- Itemindex is the index of the item which will be set -- SOURCE function Show_Drop_Item_Command (ClientData: Integer; Interp: Tcl.Tcl_Interp; Argc: Interfaces.C.int; Argv: CArgv.Chars_Ptr_Ptr) return Interfaces.C.int with Convention => C; -- **** function Show_Drop_Item_Command (ClientData: Integer; Interp: Tcl.Tcl_Interp; Argc: Interfaces.C.int; Argv: CArgv.Chars_Ptr_Ptr) return Interfaces.C.int is pragma Unreferenced(ClientData, Argc, Interp); ItemIndex: constant Positive := Positive'Value(CArgv.Arg(Argv, 1)); begin ShowManipulateItem ("Drop " & GetItemName(Player_Ship.Cargo(ItemIndex)) & " from the ship's cargo", "DropItem " & CArgv.Arg(Argv, 1), "drop", ItemIndex); return TCL_OK; end Show_Drop_Item_Command; -- ****o* SUCargo/SUCargo.Drop_Item_Command -- FUNCTION -- Drop selected amount of the selected item from the ship's cargo -- PARAMETERS -- ClientData - Custom data send to the command. -- Interp - Tcl interpreter in which command was executed. -- Argc - Number of arguments passed to the command. Unused -- Argv - Values of arguments passed to the command. -- RESULT -- This function always return TCL_OK -- COMMANDS -- DropItem -- SOURCE function Drop_Item_Command (ClientData: Integer; Interp: Tcl.Tcl_Interp; Argc: Interfaces.C.int; Argv: CArgv.Chars_Ptr_Ptr) return Interfaces.C.int with Convention => C; -- **** function Drop_Item_Command (ClientData: Integer; Interp: Tcl.Tcl_Interp; Argc: Interfaces.C.int; Argv: CArgv.Chars_Ptr_Ptr) return Interfaces.C.int is pragma Unreferenced(Argc); DropAmount, DropAmount2: Natural; ItemDialog: constant Ttk_Frame := Get_Widget(".itemdialog", Interp); SpinBox: constant Ttk_SpinBox := Get_Widget(ItemDialog & ".amount", Interp); ItemIndex: constant Positive := Positive'Value(CArgv.Arg(Argv, 1)); begin DropAmount := Natural'Value(Get(SpinBox)); DropAmount2 := DropAmount; if Items_List(Player_Ship.Cargo(ItemIndex).ProtoIndex).IType = Mission_Items_Type then Check_Drop_Items_Loop : for J in 1 .. DropAmount2 loop Delete_Missions_Loop : for I in AcceptedMissions.Iterate loop if AcceptedMissions(I).MType = Deliver and AcceptedMissions(I).ItemIndex = Player_Ship.Cargo(ItemIndex).ProtoIndex then DeleteMission(Mission_Container.To_Index(I)); DropAmount := DropAmount - 1; exit Delete_Missions_Loop; end if; end loop Delete_Missions_Loop; end loop Check_Drop_Items_Loop; elsif CurrentStory.Index /= Null_Unbounded_String and then Stories_List(CurrentStory.Index).StartData(1) = Player_Ship.Cargo(ItemIndex).ProtoIndex then FinishedStories.Delete(FinishedStories.Last_Index); ClearCurrentStory; end if; if DropAmount > 0 then AddMessage ("You dropped" & Positive'Image(DropAmount) & " " & GetItemName(Player_Ship.Cargo(ItemIndex)) & ".", OtherMessage); UpdateCargo (Ship => Player_Ship, ProtoIndex => Player_Ship.Cargo.Element(ItemIndex).ProtoIndex, Amount => (0 - DropAmount), Durability => Player_Ship.Cargo.Element(ItemIndex).Durability, Price => Player_Ship.Cargo.Element(ItemIndex).Price); end if; if Close_Dialog_Command (ClientData, Interp, 2, CArgv.Empty & "CloseDialog" & ".itemdialog") = TCL_ERROR then return TCL_ERROR; end if; UpdateHeader; Update_Messages; return Sort_Cargo_Command (ClientData, Interp, 2, CArgv.Empty & "SortShipCargo" & "-1"); end Drop_Item_Command; -- ****o* SUCargo/SUCargo.Show_Cargo_Item_Info_Command -- FUNCTION -- Show detailed information about the selected item in the player ship -- cargo -- PARAMETERS -- ClientData - Custom data send to the command. Unused -- Interp - Tcl interpreter in which command was executed. -- Argc - Number of arguments passed to the command. -- Argv - Values of arguments passed to the command. -- RESULT -- This function always return TCL_OK -- COMMANDS -- ValidateMoveAmount -- SOURCE function Show_Cargo_Item_Info_Command (ClientData: Integer; Interp: Tcl.Tcl_Interp; Argc: Interfaces.C.int; Argv: CArgv.Chars_Ptr_Ptr) return Interfaces.C.int with Convention => C; -- **** function Show_Cargo_Item_Info_Command (ClientData: Integer; Interp: Tcl.Tcl_Interp; Argc: Interfaces.C.int; Argv: CArgv.Chars_Ptr_Ptr) return Interfaces.C.int is pragma Unreferenced(ClientData, Interp, Argc); begin Show_Inventory_Item_Info(".", Positive'Value(CArgv.Arg(Argv, 1)), 0); return TCL_OK; end Show_Cargo_Item_Info_Command; -- ****if* SUCargo/SUCargo.Show_Cargo_Menu_Command -- FUNCTION -- Show the menu with available the selected item options -- PARAMETERS -- ClientData - Custom data send to the command. Unused -- Interp - Tcl interpreter in which command was executed. -- Argc - Number of arguments passed to the command. Unused -- Argv - Values of arguments passed to the command. -- RESULT -- This function always return TCL_OK -- COMMANDS -- ShowCargoMenu moduleindex -- ModuleIndex is the index of the item's menu to show -- SOURCE function Show_Cargo_Menu_Command (ClientData: Integer; Interp: Tcl.Tcl_Interp; Argc: Interfaces.C.int; Argv: CArgv.Chars_Ptr_Ptr) return Interfaces.C.int with Convention => C; -- **** function Show_Cargo_Menu_Command (ClientData: Integer; Interp: Tcl.Tcl_Interp; Argc: Interfaces.C.int; Argv: CArgv.Chars_Ptr_Ptr) return Interfaces.C.int is pragma Unreferenced(ClientData, Argc); ItemMenu: Tk_Menu := Get_Widget(".cargoitemmenu", Interp); begin if (Winfo_Get(ItemMenu, "exists")) = "0" then ItemMenu := Create(".cargoitemmenu", "-tearoff false"); end if; Delete(ItemMenu, "0", "end"); Menu.Add (ItemMenu, "command", "-label {Give the item to a crew member} -command {ShowGiveItem " & CArgv.Arg(Argv, 1) & "}"); Menu.Add (ItemMenu, "command", "-label {Drop the item from the ship's cargo} -command {ShowDropItem " & CArgv.Arg(Argv, 1) & "}"); Menu.Add (ItemMenu, "command", "-label {Show more info about the item} -command {ShowCargoItemInfo " & CArgv.Arg(Argv, 1) & "}"); Tk_Popup (ItemMenu, Winfo_Get(Get_Main_Window(Interp), "pointerx"), Winfo_Get(Get_Main_Window(Interp), "pointery")); return TCL_OK; end Show_Cargo_Menu_Command; procedure AddCommands is begin Add_Command("ShowCargo", Show_Cargo_Command'Access); Add_Command("ShowCargoItemInfo", Show_Cargo_Item_Info_Command'Access); Add_Command("ShowGiveItem", Show_Give_Item_Command'Access); Add_Command("GiveItem", Give_Item_Command'Access); Add_Command("ShowDropItem", Show_Drop_Item_Command'Access); Add_Command("DropItem", Drop_Item_Command'Access); Add_Command("ShowCargoMenu", Show_Cargo_Menu_Command'Access); Add_Command("SortShipCargo", Sort_Cargo_Command'Access); end AddCommands; end Ships.UI.Cargo;
39.930894
81
0.634192
1c22fc7b381795525c540ee66817fdd539411b1b
55,013
adb
Ada
test/halide_data/pldi_camera_ready/big_apps_32_real/conv2d_b2b/collateral/conv2d_b2b/hls_target/.autopilot/db/hls_target.bind.adb
David-Durst/embeddedHaskellAetherling
34c5403e07433e572170699f3bd69c5b5c3eff2d
[ "BSD-3-Clause" ]
20
2019-03-12T20:12:31.000Z
2022-02-07T04:23:22.000Z
test/halide_data/pldi_camera_ready/big_apps_32_real/conv2d_b2b/collateral/conv2d_b2b/hls_target/.autopilot/db/hls_target.bind.adb
David-Durst/embeddedHaskellAetherling
34c5403e07433e572170699f3bd69c5b5c3eff2d
[ "BSD-3-Clause" ]
30
2019-07-22T19:25:42.000Z
2020-06-18T17:58:43.000Z
test/halide_data/pldi_camera_ready/big_apps_32_real/conv2d_b2b/collateral/conv2d_b2b/hls_target/.autopilot/db/hls_target.bind.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>hls_target</name> <ret_bitwidth>0</ret_bitwidth> <ports class_id="2" tracking_level="0" version="0"> <count>4</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>hw_input_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>hw_input.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>hw_input_V_last_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>hw_input.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>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>hw_output.V.value.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</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="_4"> <Value> <Obj> <type>1</type> <id>4</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>hw_output.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>10</count> <item_version>0</item_version> <item class_id="9" tracking_level="1" version="0" object_id="_5"> <Value> <Obj> <type>0</type> <id>11</id> <name>p_hw_input_stencil_st</name> <fileName>hls_target.cpp</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</fileDirectory> <lineNumber>50</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/big_apps_32_real/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>50</second> </item> </second> </item> </inlineStackInfo> <originalName>_hw_input_stencil_stream.V.value.V</originalName> <rtlName></rtlName> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>288</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>37</item> </oprand_edges> <opcode>alloca</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_6"> <Value> <Obj> <type>0</type> <id>15</id> <name>p_mul_stencil_update_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>FIFO_SRL</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="_7"> <Value> <Obj> <type>0</type> <id>19</id> <name>p_mul_stencil_stream_s</name> <fileName>hls_target.cpp</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</fileDirectory> <lineNumber>146</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/big_apps_32_real/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>146</second> </item> </second> </item> </inlineStackInfo> <originalName>_mul_stencil_stream.V.value.V</originalName> <rtlName></rtlName> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>128</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>39</item> </oprand_edges> <opcode>alloca</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_8"> <Value> <Obj> <type>0</type> <id>23</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/big_apps_32_real/conv2d_b2b</fileDirectory> <lineNumber>155</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/big_apps_32_real/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>155</second> </item> </second> </item> </inlineStackInfo> <originalName>_p2_mul1_stencil_stream.V.value.V</originalName> <rtlName></rtlName> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>40</item> </oprand_edges> <opcode>alloca</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_9"> <Value> <Obj> <type>0</type> <id>29</id> <name></name> <fileName>hls_target.cpp</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</fileDirectory> <lineNumber>54</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/big_apps_32_real/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>54</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>42</item> <item>43</item> <item>44</item> <item>45</item> </oprand_edges> <opcode>call</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_10"> <Value> <Obj> <type>0</type> <id>30</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>5</count> <item_version>0</item_version> <item>47</item> <item>48</item> <item>49</item> <item>283</item> <item>284</item> </oprand_edges> <opcode>call</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_11"> <Value> <Obj> <type>0</type> <id>31</id> <name></name> <fileName>hls_target.cpp</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</fileDirectory> <lineNumber>150</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/big_apps_32_real/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>150</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>51</item> <item>52</item> <item>53</item> <item>282</item> <item>285</item> </oprand_edges> <opcode>call</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_12"> <Value> <Obj> <type>0</type> <id>32</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>5</count> <item_version>0</item_version> <item>55</item> <item>56</item> <item>57</item> <item>281</item> <item>286</item> </oprand_edges> <opcode>call</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_13"> <Value> <Obj> <type>0</type> <id>33</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>6</count> <item_version>0</item_version> <item>59</item> <item>60</item> <item>61</item> <item>62</item> <item>280</item> <item>287</item> </oprand_edges> <opcode>call</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_14"> <Value> <Obj> <type>0</type> <id>34</id> <name></name> <fileName>hls_target.cpp</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/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/big_apps_32_real/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></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>6</count> <item_version>0</item_version> <item class_id="16" tracking_level="1" version="0" object_id="_15"> <Value> <Obj> <type>2</type> <id>36</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="_16"> <Value> <Obj> <type>2</type> <id>41</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> <bitwidth>0</bitwidth> </Value> <const_type>6</const_type> <content>&lt;constant:linebuffer.1&gt;</content> </item> <item class_id_reference="16" object_id="_17"> <Value> <Obj> <type>2</type> <id>46</id> <name>Loop_1_proc</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:Loop_1_proc&gt;</content> </item> <item class_id_reference="16" object_id="_18"> <Value> <Obj> <type>2</type> <id>50</id> <name>linebuffer_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>0</bitwidth> </Value> <const_type>6</const_type> <content>&lt;constant:linebuffer.2&gt;</content> </item> <item class_id_reference="16" object_id="_19"> <Value> <Obj> <type>2</type> <id>54</id> <name>Loop_2_proc</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:Loop_2_proc&gt;</content> </item> <item class_id_reference="16" object_id="_20"> <Value> <Obj> <type>2</type> <id>58</id> <name>Loop_3_proc</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:Loop_3_proc&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="_21"> <Obj> <type>3</type> <id>35</id> <name>hls_target</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>11</item> <item>15</item> <item>19</item> <item>23</item> <item>29</item> <item>30</item> <item>31</item> <item>32</item> <item>33</item> <item>34</item> </node_objs> </item> </blocks> <edges class_id="19" tracking_level="0" version="0"> <count>29</count> <item_version>0</item_version> <item class_id="20" tracking_level="1" version="0" object_id="_22"> <id>37</id> <edge_type>1</edge_type> <source_obj>36</source_obj> <sink_obj>11</sink_obj> </item> <item class_id_reference="20" object_id="_23"> <id>38</id> <edge_type>1</edge_type> <source_obj>36</source_obj> <sink_obj>15</sink_obj> </item> <item class_id_reference="20" object_id="_24"> <id>39</id> <edge_type>1</edge_type> <source_obj>36</source_obj> <sink_obj>19</sink_obj> </item> <item class_id_reference="20" object_id="_25"> <id>40</id> <edge_type>1</edge_type> <source_obj>36</source_obj> <sink_obj>23</sink_obj> </item> <item class_id_reference="20" object_id="_26"> <id>42</id> <edge_type>1</edge_type> <source_obj>41</source_obj> <sink_obj>29</sink_obj> </item> <item class_id_reference="20" object_id="_27"> <id>43</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>29</sink_obj> </item> <item class_id_reference="20" object_id="_28"> <id>44</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>29</sink_obj> </item> <item class_id_reference="20" object_id="_29"> <id>45</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>29</sink_obj> </item> <item class_id_reference="20" object_id="_30"> <id>47</id> <edge_type>1</edge_type> <source_obj>46</source_obj> <sink_obj>30</sink_obj> </item> <item class_id_reference="20" object_id="_31"> <id>48</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>30</sink_obj> </item> <item class_id_reference="20" object_id="_32"> <id>49</id> <edge_type>1</edge_type> <source_obj>15</source_obj> <sink_obj>30</sink_obj> </item> <item class_id_reference="20" object_id="_33"> <id>51</id> <edge_type>1</edge_type> <source_obj>50</source_obj> <sink_obj>31</sink_obj> </item> <item class_id_reference="20" object_id="_34"> <id>52</id> <edge_type>1</edge_type> <source_obj>15</source_obj> <sink_obj>31</sink_obj> </item> <item class_id_reference="20" object_id="_35"> <id>53</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>31</sink_obj> </item> <item class_id_reference="20" object_id="_36"> <id>55</id> <edge_type>1</edge_type> <source_obj>54</source_obj> <sink_obj>32</sink_obj> </item> <item class_id_reference="20" object_id="_37"> <id>56</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>32</sink_obj> </item> <item class_id_reference="20" object_id="_38"> <id>57</id> <edge_type>1</edge_type> <source_obj>23</source_obj> <sink_obj>32</sink_obj> </item> <item class_id_reference="20" object_id="_39"> <id>59</id> <edge_type>1</edge_type> <source_obj>58</source_obj> <sink_obj>33</sink_obj> </item> <item class_id_reference="20" object_id="_40"> <id>60</id> <edge_type>1</edge_type> <source_obj>23</source_obj> <sink_obj>33</sink_obj> </item> <item class_id_reference="20" object_id="_41"> <id>61</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>33</sink_obj> </item> <item class_id_reference="20" object_id="_42"> <id>62</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>33</sink_obj> </item> <item class_id_reference="20" object_id="_43"> <id>280</id> <edge_type>4</edge_type> <source_obj>32</source_obj> <sink_obj>33</sink_obj> </item> <item class_id_reference="20" object_id="_44"> <id>281</id> <edge_type>4</edge_type> <source_obj>31</source_obj> <sink_obj>32</sink_obj> </item> <item class_id_reference="20" object_id="_45"> <id>282</id> <edge_type>4</edge_type> <source_obj>30</source_obj> <sink_obj>31</sink_obj> </item> <item class_id_reference="20" object_id="_46"> <id>283</id> <edge_type>4</edge_type> <source_obj>29</source_obj> <sink_obj>30</sink_obj> </item> <item class_id_reference="20" object_id="_47"> <id>284</id> <edge_type>4</edge_type> <source_obj>29</source_obj> <sink_obj>30</sink_obj> </item> <item class_id_reference="20" object_id="_48"> <id>285</id> <edge_type>4</edge_type> <source_obj>30</source_obj> <sink_obj>31</sink_obj> </item> <item class_id_reference="20" object_id="_49"> <id>286</id> <edge_type>4</edge_type> <source_obj>31</source_obj> <sink_obj>32</sink_obj> </item> <item class_id_reference="20" object_id="_50"> <id>287</id> <edge_type>4</edge_type> <source_obj>32</source_obj> <sink_obj>33</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="_51"> <mId>1</mId> <mTag>hls_target</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>35</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="_52"> <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>5</count> <item_version>0</item_version> <item class_id="26" tracking_level="1" version="0" object_id="_53"> <type>0</type> <name>linebuffer_1_U0</name> <ssdmobj_id>29</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="_54"> <port class_id="29" tracking_level="1" version="0" object_id="_55"> <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="_56"> <type>0</type> <name>linebuffer_1_U0</name> <ssdmobj_id>29</ssdmobj_id> </inst> </item> <item class_id_reference="28" object_id="_57"> <port class_id_reference="29" object_id="_58"> <name>in_axi_stream_V_last_V</name> <dir>3</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_56"></inst> </item> <item class_id_reference="28" object_id="_59"> <port class_id_reference="29" object_id="_60"> <name>out_stream_V_value_V</name> <dir>0</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_56"></inst> </item> </pins> </item> <item class_id_reference="26" object_id="_61"> <type>0</type> <name>Loop_1_proc_U0</name> <ssdmobj_id>30</ssdmobj_id> <pins> <count>2</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_62"> <port class_id_reference="29" object_id="_63"> <name>p_hw_input_stencil_stream_V_value_V</name> <dir>0</dir> <type>0</type> </port> <inst class_id_reference="30" object_id="_64"> <type>0</type> <name>Loop_1_proc_U0</name> <ssdmobj_id>30</ssdmobj_id> </inst> </item> <item class_id_reference="28" object_id="_65"> <port class_id_reference="29" object_id="_66"> <name>p_mul_stencil_update_stream_V_value_V</name> <dir>0</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_64"></inst> </item> </pins> </item> <item class_id_reference="26" object_id="_67"> <type>0</type> <name>linebuffer_2_U0</name> <ssdmobj_id>31</ssdmobj_id> <pins> <count>2</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_68"> <port class_id_reference="29" object_id="_69"> <name>in_stream_V_value_V</name> <dir>0</dir> <type>0</type> </port> <inst class_id_reference="30" object_id="_70"> <type>0</type> <name>linebuffer_2_U0</name> <ssdmobj_id>31</ssdmobj_id> </inst> </item> <item class_id_reference="28" object_id="_71"> <port class_id_reference="29" object_id="_72"> <name>out_stream_V_value_V</name> <dir>0</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_70"></inst> </item> </pins> </item> <item class_id_reference="26" object_id="_73"> <type>0</type> <name>Loop_2_proc_U0</name> <ssdmobj_id>32</ssdmobj_id> <pins> <count>2</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_74"> <port class_id_reference="29" object_id="_75"> <name>p_mul_stencil_stream_V_value_V</name> <dir>0</dir> <type>0</type> </port> <inst class_id_reference="30" object_id="_76"> <type>0</type> <name>Loop_2_proc_U0</name> <ssdmobj_id>32</ssdmobj_id> </inst> </item> <item class_id_reference="28" object_id="_77"> <port class_id_reference="29" object_id="_78"> <name>p_p2_mul1_stencil_stream_V_value_V</name> <dir>0</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_76"></inst> </item> </pins> </item> <item class_id_reference="26" object_id="_79"> <type>0</type> <name>Loop_3_proc_U0</name> <ssdmobj_id>33</ssdmobj_id> <pins> <count>3</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_80"> <port class_id_reference="29" object_id="_81"> <name>p_p2_mul1_stencil_stream_V_value_V</name> <dir>0</dir> <type>0</type> </port> <inst class_id_reference="30" object_id="_82"> <type>0</type> <name>Loop_3_proc_U0</name> <ssdmobj_id>33</ssdmobj_id> </inst> </item> <item class_id_reference="28" object_id="_83"> <port class_id_reference="29" object_id="_84"> <name>hw_output_V_value_V</name> <dir>3</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_82"></inst> </item> <item class_id_reference="28" object_id="_85"> <port class_id_reference="29" object_id="_86"> <name>hw_output_V_last_V</name> <dir>3</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_82"></inst> </item> </pins> </item> </process_list> <channel_list class_id="31" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="32" tracking_level="1" version="0" object_id="_87"> <type>1</type> <name>p_hw_input_stencil_st</name> <ssdmobj_id>11</ssdmobj_id> <ctype>0</ctype> <depth>1</depth> <bitwidth>288</bitwidth> <source class_id_reference="28" object_id="_88"> <port class_id_reference="29" object_id="_89"> <name>in</name> <dir>3</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_56"></inst> </source> <sink class_id_reference="28" object_id="_90"> <port class_id_reference="29" object_id="_91"> <name>out</name> <dir>3</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_64"></inst> </sink> </item> <item class_id_reference="32" object_id="_92"> <type>1</type> <name>p_mul_stencil_update_1</name> <ssdmobj_id>15</ssdmobj_id> <ctype>0</ctype> <depth>1</depth> <bitwidth>32</bitwidth> <source class_id_reference="28" object_id="_93"> <port class_id_reference="29" object_id="_94"> <name>in</name> <dir>3</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_64"></inst> </source> <sink class_id_reference="28" object_id="_95"> <port class_id_reference="29" object_id="_96"> <name>out</name> <dir>3</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_70"></inst> </sink> </item> <item class_id_reference="32" object_id="_97"> <type>1</type> <name>p_mul_stencil_stream_s</name> <ssdmobj_id>19</ssdmobj_id> <ctype>0</ctype> <depth>1</depth> <bitwidth>128</bitwidth> <source class_id_reference="28" object_id="_98"> <port class_id_reference="29" object_id="_99"> <name>in</name> <dir>3</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_70"></inst> </source> <sink class_id_reference="28" object_id="_100"> <port class_id_reference="29" object_id="_101"> <name>out</name> <dir>3</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_76"></inst> </sink> </item> <item class_id_reference="32" object_id="_102"> <type>1</type> <name>p_p2_mul1_stencil_str</name> <ssdmobj_id>23</ssdmobj_id> <ctype>0</ctype> <depth>1</depth> <bitwidth>32</bitwidth> <source class_id_reference="28" object_id="_103"> <port class_id_reference="29" object_id="_104"> <name>in</name> <dir>3</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_76"></inst> </source> <sink class_id_reference="28" object_id="_105"> <port class_id_reference="29" object_id="_106"> <name>out</name> <dir>3</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_82"></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="34" tracking_level="1" version="0" object_id="_107"> <states class_id="35" tracking_level="0" version="0"> <count>10</count> <item_version>0</item_version> <item class_id="36" tracking_level="1" version="0" object_id="_108"> <id>1</id> <operations class_id="37" tracking_level="0" version="0"> <count>5</count> <item_version>0</item_version> <item class_id="38" tracking_level="1" version="0" object_id="_109"> <id>11</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_110"> <id>15</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_111"> <id>19</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_112"> <id>23</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_113"> <id>29</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="36" object_id="_114"> <id>2</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="38" object_id="_115"> <id>29</id> <stage>1</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="36" object_id="_116"> <id>3</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="38" object_id="_117"> <id>30</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="36" object_id="_118"> <id>4</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="38" object_id="_119"> <id>30</id> <stage>1</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="36" object_id="_120"> <id>5</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="38" object_id="_121"> <id>31</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="36" object_id="_122"> <id>6</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="38" object_id="_123"> <id>31</id> <stage>1</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="36" object_id="_124"> <id>7</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="38" object_id="_125"> <id>32</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="36" object_id="_126"> <id>8</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="38" object_id="_127"> <id>32</id> <stage>1</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="36" object_id="_128"> <id>9</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="38" object_id="_129"> <id>33</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="36" object_id="_130"> <id>10</id> <operations> <count>22</count> <item_version>0</item_version> <item class_id_reference="38" object_id="_131"> <id>5</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_132"> <id>6</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_133"> <id>7</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_134"> <id>8</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_135"> <id>9</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_136"> <id>10</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_137"> <id>12</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_138"> <id>13</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_139"> <id>14</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_140"> <id>16</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_141"> <id>17</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_142"> <id>18</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_143"> <id>20</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_144"> <id>21</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_145"> <id>22</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_146"> <id>24</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_147"> <id>25</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_148"> <id>26</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_149"> <id>27</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_150"> <id>28</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_151"> <id>33</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="38" object_id="_152"> <id>34</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> </states> <transitions class_id="39" tracking_level="0" version="0"> <count>9</count> <item_version>0</item_version> <item class_id="40" tracking_level="1" version="0" object_id="_153"> <inState>1</inState> <outState>2</outState> <condition class_id="41" tracking_level="0" version="0"> <id>0</id> <sop class_id="42" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="43" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="40" object_id="_154"> <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> <item class_id_reference="40" object_id="_155"> <inState>3</inState> <outState>4</outState> <condition> <id>2</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="40" object_id="_156"> <inState>4</inState> <outState>5</outState> <condition> <id>3</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="40" object_id="_157"> <inState>5</inState> <outState>6</outState> <condition> <id>4</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="40" object_id="_158"> <inState>6</inState> <outState>7</outState> <condition> <id>5</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="40" object_id="_159"> <inState>7</inState> <outState>8</outState> <condition> <id>6</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="40" object_id="_160"> <inState>8</inState> <outState>9</outState> <condition> <id>7</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="40" object_id="_161"> <inState>9</inState> <outState>10</outState> <condition> <id>8</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="-1"></res> <node_label_latency class_id="45" tracking_level="0" version="0"> <count>10</count> <item_version>0</item_version> <item class_id="46" tracking_level="0" version="0"> <first>11</first> <second class_id="47" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>15</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>23</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>29</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>30</first> <second> <first>2</first> <second>1</second> </second> </item> <item> <first>31</first> <second> <first>4</first> <second>1</second> </second> </item> <item> <first>32</first> <second> <first>6</first> <second>1</second> </second> </item> <item> <first>33</first> <second> <first>8</first> <second>1</second> </second> </item> <item> <first>34</first> <second> <first>9</first> <second>0</second> </second> </item> </node_label_latency> <bblk_ent_exit class_id="48" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="49" tracking_level="0" version="0"> <first>35</first> <second class_id="50" tracking_level="0" version="0"> <first>0</first> <second>9</second> </second> </item> </bblk_ent_exit> <regions class_id="51" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="52" tracking_level="1" version="0" object_id="_162"> <region_name>hls_target</region_name> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>35</item> </basic_blocks> <nodes> <count>30</count> <item_version>0</item_version> <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> <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>29</item> <item>30</item> <item>31</item> <item>32</item> <item>33</item> <item>34</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="53" tracking_level="0" version="0"> <count>9</count> <item_version>0</item_version> <item class_id="54" tracking_level="0" version="0"> <first>60</first> <second> <count>1</count> <item_version>0</item_version> <item>11</item> </second> </item> <item> <first>64</first> <second> <count>1</count> <item_version>0</item_version> <item>15</item> </second> </item> <item> <first>68</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>72</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> <item> <first>76</first> <second> <count>2</count> <item_version>0</item_version> <item>32</item> <item>32</item> </second> </item> <item> <first>82</first> <second> <count>2</count> <item_version>0</item_version> <item>33</item> <item>33</item> </second> </item> <item> <first>91</first> <second> <count>2</count> <item_version>0</item_version> <item>29</item> <item>29</item> </second> </item> <item> <first>100</first> <second> <count>2</count> <item_version>0</item_version> <item>30</item> <item>30</item> </second> </item> <item> <first>106</first> <second> <count>2</count> <item_version>0</item_version> <item>31</item> <item>31</item> </second> </item> </dp_fu_nodes> <dp_fu_nodes_expression class_id="56" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="57" tracking_level="0" version="0"> <first>p_hw_input_stencil_st_fu_60</first> <second> <count>1</count> <item_version>0</item_version> <item>11</item> </second> </item> <item> <first>p_mul_stencil_stream_s_fu_68</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>p_mul_stencil_update_1_fu_64</first> <second> <count>1</count> <item_version>0</item_version> <item>15</item> </second> </item> <item> <first>p_p2_mul1_stencil_str_fu_72</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> </dp_fu_nodes_expression> <dp_fu_nodes_module> <count>5</count> <item_version>0</item_version> <item> <first>grp_Loop_1_proc_fu_100</first> <second> <count>2</count> <item_version>0</item_version> <item>30</item> <item>30</item> </second> </item> <item> <first>grp_Loop_2_proc_fu_76</first> <second> <count>2</count> <item_version>0</item_version> <item>32</item> <item>32</item> </second> </item> <item> <first>grp_Loop_3_proc_fu_82</first> <second> <count>2</count> <item_version>0</item_version> <item>33</item> <item>33</item> </second> </item> <item> <first>grp_linebuffer_1_fu_91</first> <second> <count>2</count> <item_version>0</item_version> <item>29</item> <item>29</item> </second> </item> <item> <first>grp_linebuffer_2_fu_106</first> <second> <count>2</count> <item_version>0</item_version> <item>31</item> <item>31</item> </second> </item> </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="58" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_mem_port_nodes> <dp_reg_nodes> <count>4</count> <item_version>0</item_version> <item> <first>112</first> <second> <count>1</count> <item_version>0</item_version> <item>11</item> </second> </item> <item> <first>118</first> <second> <count>1</count> <item_version>0</item_version> <item>15</item> </second> </item> <item> <first>124</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>130</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> </dp_reg_nodes> <dp_regname_nodes> <count>4</count> <item_version>0</item_version> <item> <first>p_hw_input_stencil_st_reg_112</first> <second> <count>1</count> <item_version>0</item_version> <item>11</item> </second> </item> <item> <first>p_mul_stencil_stream_s_reg_124</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>p_mul_stencil_update_1_reg_118</first> <second> <count>1</count> <item_version>0</item_version> <item>15</item> </second> </item> <item> <first>p_p2_mul1_stencil_str_reg_130</first> <second> <count>1</count> <item_version>0</item_version> <item>23</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="59" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="60" tracking_level="0" version="0"> <first>hw_input_V_last_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>call</first> <second> <count>1</count> <item_version>0</item_version> <item>29</item> </second> </item> </second> </item> <item> <first>hw_input_V_value_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>call</first> <second> <count>1</count> <item_version>0</item_version> <item>29</item> </second> </item> </second> </item> <item> <first>hw_output_V_last_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>call</first> <second> <count>1</count> <item_version>0</item_version> <item>33</item> </second> </item> </second> </item> <item> <first>hw_output_V_value_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>call</first> <second> <count>1</count> <item_version>0</item_version> <item>33</item> </second> </item> </second> </item> </dp_port_io_nodes> <port2core class_id="61" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </port2core> <node2core> <count>4</count> <item_version>0</item_version> <item class_id="62" tracking_level="0" version="0"> <first>11</first> <second>FIFO_SRL</second> </item> <item> <first>15</first> <second>FIFO_SRL</second> </item> <item> <first>19</first> <second>FIFO_SRL</second> </item> <item> <first>23</first> <second>FIFO_SRL</second> </item> </node2core> </syndb> </boost_serialization>
26.901222
138
0.594569
107bdf8458ae1592b3e86173eccd644dc7ec94fb
2,663
adb
Ada
mat/src/events/mat-events.adb
stcarrez/mat
fb242feb5662b8130680cd06e50da7ef40b95bd7
[ "Apache-2.0" ]
7
2015-01-18T23:04:30.000Z
2021-04-06T14:07:56.000Z
mat/src/events/mat-events.adb
stcarrez/mat
fb242feb5662b8130680cd06e50da7ef40b95bd7
[ "Apache-2.0" ]
null
null
null
mat/src/events/mat-events.adb
stcarrez/mat
fb242feb5662b8130680cd06e50da7ef40b95bd7
[ "Apache-2.0" ]
null
null
null
----------------------------------------------------------------------- -- gprofiler-events - Profiler Events Description -- 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 Ada.Text_IO; package body MAT.Events is procedure Dump (Value : in Event_Data; Attr : in Attribute); procedure Dump (Value : in Event_Data; Attr : in Attribute) is use type Ada.Text_IO.Positive_Count; begin Ada.Text_IO.Put (" " & Attr.Name.all); Ada.Text_IO.Set_Col (30); case Value.Kind is when T_UINT8 => Ada.Text_IO.Put (MAT.Types.Uint8'Image (Value.U8)); when T_UINT16 => Ada.Text_IO.Put (MAT.Types.Uint16'Image (Value.U16)); when T_UINT32 | T_SIZE_T => Ada.Text_IO.Put (MAT.Types.Uint32'Image (Value.U32)); when T_POINTER => Ada.Text_IO.Put (MAT.Types.Hex_Image (Value.U32, 8)); when T_UINT64 => Ada.Text_IO.Put (MAT.Types.Uint64'Image (Value.U64)); when T_PROBE => Ada.Text_IO.Put_Line ("Th " & MAT.Types.Target_Thread_Ref'Image (Value.Probe.Thread)); Ada.Text_IO.Set_Col (29); for I in 1 .. Value.Probe.Cur_Depth loop exit when I > Value.Probe.Frame'Last; if Ada.Text_IO.Col > 80 - 14 then Ada.Text_IO.Set_Col (29); end if; Ada.Text_IO.Put (" {" & MAT.Types.Hex_Image (Unsigned_32 (Value.Probe.Frame (I)), 8) & "}"); end loop; when others => null; end case; Ada.Text_IO.New_Line; end Dump; procedure Dump (Table : in Event_Data_Table; Def : in Event_Description) is begin Ada.Text_IO.Put_Line (Ada.Strings.Unbounded.To_String (Def.Name) & ":"); for I in 1 .. Def.Nb_Attributes loop Dump (Table (I), Def.Def (I)); end loop; end Dump; end MAT.Events;
35.986486
98
0.569283
0efaf137e49cc5f2549d850021d3e43ade6f4f23
45
ads
Ada
src/clic.ads
reznikmm/clic
bdad50254ccf1063067044f7440dea62f3f2d242
[ "MIT" ]
9
2021-08-30T16:11:30.000Z
2021-11-06T22:41:17.000Z
src/clic.ads
reznikmm/clic
bdad50254ccf1063067044f7440dea62f3f2d242
[ "MIT" ]
8
2021-09-05T09:20:31.000Z
2022-03-09T10:07:52.000Z
src/clic.ads
reznikmm/clic
bdad50254ccf1063067044f7440dea62f3f2d242
[ "MIT" ]
2
2021-09-16T14:17:20.000Z
2021-09-21T09:11:23.000Z
package CLIC with Preelaborate is end CLIC;
7.5
17
0.8
1cb652bd267c8d4344abaf4e238538194f772f3a
716
ads
Ada
ada-strings-bounded-hash.ads
mgrojo/adalib
dc1355a5b65c2843e702ac76252addb2caf3c56b
[ "BSD-3-Clause" ]
15
2018-07-08T07:09:19.000Z
2021-11-21T09:58:55.000Z
ada-strings-bounded-hash.ads
mgrojo/adalib
dc1355a5b65c2843e702ac76252addb2caf3c56b
[ "BSD-3-Clause" ]
4
2019-11-17T20:04:33.000Z
2021-08-29T21:24:55.000Z
ada-strings-bounded-hash.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 --------------------------------------------------------------------------- with Ada.Containers; generic with package Bounded is new Ada.Strings.Bounded.Generic_Bounded_Length (<>); function Ada.Strings.Bounded.Hash (Key : in Bounded.Bounded_String) return Containers.Hash_Type; pragma Preelaborate (Hash);
37.684211
75
0.650838
1c467c0f30137fddc01c90ba31d3c172f7b818f7
3,729
adb
Ada
source/webdriver-remote-sessions.adb
reznikmm/webdriver
e0247b4c3cffcfa10e9b0afa8cdc6e3f3fb8c179
[ "MIT" ]
2
2020-02-18T08:02:35.000Z
2021-03-06T09:30:40.000Z
source/webdriver-remote-sessions.adb
reznikmm/webdriver
e0247b4c3cffcfa10e9b0afa8cdc6e3f3fb8c179
[ "MIT" ]
null
null
null
source/webdriver-remote-sessions.adb
reznikmm/webdriver
e0247b4c3cffcfa10e9b0afa8cdc6e3f3fb8c179
[ "MIT" ]
null
null
null
-- Copyright (c) 2017 Maxim Reznik <[email protected]> -- -- SPDX-License-Identifier: MIT -- License-Filename: LICENSE ------------------------------------------------------------- with League.JSON.Values; with League.String_Vectors; separate (WebDriver.Remote) package body Sessions is function "+" (Text : Wide_Wide_String) return League.Strings.Universal_String renames League.Strings.To_Universal_String; function To_String (Strategy : WebDriver.Location_Strategy) return League.Strings.Universal_String; type Element_Access is access all Elements.Element; ------------------ -- Find_Element -- ------------------ overriding function Find_Element (Self : access Session; Strategy : WebDriver.Location_Strategy; Selector : League.Strings.Universal_String) return WebDriver.Elements.Element_Access is Result : constant not null Element_Access := new Elements.Element; Command : WebDriver.Remote.Command; Response : WebDriver.Remote.Response; Using : constant League.JSON.Values.JSON_Value := League.JSON.Values.To_JSON_Value (To_String (Strategy)); Value : constant League.JSON.Values.JSON_Value := League.JSON.Values.To_JSON_Value (Selector); Element : League.JSON.Objects.JSON_Object; begin Command.Method := Post; Command.Path.Append ("/session/"); Command.Path.Append (Self.Session_Id); Command.Path.Append ("/element"); Command.Parameters.Insert (+"using", Using); Command.Parameters.Insert (+"value", Value); Response := Self.Executor.Execute (Command); Element := Response.Value (+"value").To_Object; Result.Session_Id := Self.Session_Id; Result.Element_Id := Element (+"ELEMENT").To_String; Result.Executor := Self.Executor; return WebDriver.Elements.Element_Access (Result); end Find_Element; --------------------- -- Get_Current_URL -- --------------------- overriding function Get_Current_URL (Self : access Session) return League.Strings.Universal_String is Command : WebDriver.Remote.Command; Response : WebDriver.Remote.Response; begin Command.Method := Get; Command.Path.Append ("/session/"); Command.Path.Append (Self.Session_Id); Command.Path.Append ("/url"); Response := Self.Executor.Execute (Command); return Response.Value (+"value").To_String; end Get_Current_URL; -------- -- Go -- -------- overriding procedure Go (Self : access Session; URL : League.Strings.Universal_String) is Command : WebDriver.Remote.Command; Response : WebDriver.Remote.Response; Value : constant League.JSON.Values.JSON_Value := League.JSON.Values.To_JSON_Value (URL); pragma Unreferenced (Response); begin Command.Method := Post; Command.Path.Append ("/session/"); Command.Path.Append (Self.Session_Id); Command.Path.Append ("/url"); Command.Parameters.Insert (+"url", Value); Command.Session_Id := Self.Session_Id; Response := Self.Executor.Execute (Command); end Go; --------------- -- To_String -- --------------- function To_String (Strategy : WebDriver.Location_Strategy) return League.Strings.Universal_String is Image : constant Wide_Wide_String := WebDriver.Location_Strategy'Wide_Wide_Image (Strategy); Text : constant League.Strings.Universal_String := +Image; List : constant League.String_Vectors.Universal_String_Vector := Text.To_Lowercase.Split ('_'); begin return List.Join (" "); end To_String; end Sessions;
31.871795
75
0.639582
cbf28f200ea05951787d46538a31be20713fb9ab
883
ads
Ada
stm32f0/stm32gd-vectors.ads
ekoeppen/STM32_Generic_Ada_Drivers
4ff29c3026c4b24280baf22a5b81ea9969375466
[ "MIT" ]
1
2021-04-06T07:57:56.000Z
2021-04-06T07:57:56.000Z
stm32f0/stm32gd-vectors.ads
ekoeppen/STM32_Generic_Ada_Drivers
4ff29c3026c4b24280baf22a5b81ea9969375466
[ "MIT" ]
null
null
null
stm32f0/stm32gd-vectors.ads
ekoeppen/STM32_Generic_Ada_Drivers
4ff29c3026c4b24280baf22a5b81ea9969375466
[ "MIT" ]
2
2018-05-29T13:59:31.000Z
2019-02-03T19:48:08.000Z
with System; package STM32GD.Vectors is pragma Preelaborate; procedure Default_Handler; type IRQ_Vectors is record HardFault_Handler : System.Address; MemManage_Handler : System.Address; BusFault_Handler : System.Address; UsageFault_Handler : System.Address; Reserved_1C : System.Address; Reserved_20 : System.Address; Reserved_24 : System.Address; Reserved_28 : System.Address; SVCall_Handler : System.Address; DebugMonitor_Handler : System.Address; Reserved_34 : System.Address; PendSV_Handler : System.Address; SysTick_Handler : System.Address; WWDG_Handler : System.Address; PVD_Handler : System.Address; FLASH_Handler : System.Address; RTC_Handler : System.Address; end record; end STM32GD.Vectors;
28.483871
47
0.654587
20407ab7a6b74beb9abfa9dfd2e78f6adf58ea52
2,963
adb
Ada
boards/stm32_common/stm32f769disco/framebuffer_otm8009a.adb
shakram02/Ada_Drivers_Library
a407ca7ddbc2d9756647016c2f8fd8ef24a239ff
[ "BSD-3-Clause" ]
192
2016-06-01T18:32:04.000Z
2022-03-26T22:52:31.000Z
boards/stm32_common/stm32f769disco/framebuffer_otm8009a.adb
shakram02/Ada_Drivers_Library
a407ca7ddbc2d9756647016c2f8fd8ef24a239ff
[ "BSD-3-Clause" ]
239
2016-05-26T20:02:01.000Z
2022-03-31T09:46:56.000Z
boards/stm32_common/stm32f769disco/framebuffer_otm8009a.adb
shakram02/Ada_Drivers_Library
a407ca7ddbc2d9756647016c2f8fd8ef24a239ff
[ "BSD-3-Clause" ]
142
2016-06-05T08:12:20.000Z
2022-03-24T17:37:17.000Z
------------------------------------------------------------------------------ -- -- -- Copyright (C) 2015-2017, 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 Framebuffer_OTM8009A is procedure Initialize (Display : in out Frame_Buffer; Orientation : HAL.Framebuffer.Display_Orientation := Default; Mode : HAL.Framebuffer.Wait_Mode := Interrupt) is begin Display.Initialize (Orientation, Mode, Reset_Point => DSI_RESET, PLLSAI_N => PLLSAIN, PLLSAI_R => PLLSAIR, DivR => PLLSAI_DIVR, PLL_N_Div => PLL_N_Div, PLL_IN_Div => PLL_IN_Div, PLL_OUT_Div => PLL_OUT_Div); end Initialize; end Framebuffer_OTM8009A;
56.980769
78
0.525818
20aa2361da7253e4ec18728053a576093ad67927
2,740
ads
Ada
Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/a-suhcin.ads
djamal2727/Main-Bearing-Analytical-Model
2f00c2219c71be0175c6f4f8f1d4cca231d97096
[ "Apache-2.0" ]
null
null
null
Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/a-suhcin.ads
djamal2727/Main-Bearing-Analytical-Model
2f00c2219c71be0175c6f4f8f1d4cca231d97096
[ "Apache-2.0" ]
null
null
null
Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/a-suhcin.ads
djamal2727/Main-Bearing-Analytical-Model
2f00c2219c71be0175c6f4f8f1d4cca231d97096
[ "Apache-2.0" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- GNAT LIBRARY COMPONENTS -- -- -- -- ADA.STRINGS.UNBOUNDED.HASH_CASE_INSENSITIVE -- -- -- -- S p e c -- -- -- -- Copyright (C) 2011-2020, 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.Containers; function Ada.Strings.Unbounded.Hash_Case_Insensitive (Key : Unbounded.Unbounded_String) return Containers.Hash_Type; pragma Preelaborate (Ada.Strings.Unbounded.Hash_Case_Insensitive);
66.829268
78
0.429562
dfd14dc65cfcf8902aacfa9549539e12f641dbe2
1,231
adb
Ada
source/containers/a-concom.adb
ytomino/drake
4e4bdcd8b8e23a11a29b31d3a8861fdf60090ea2
[ "MIT" ]
33
2015-04-04T09:19:36.000Z
2021-11-10T05:33:34.000Z
source/containers/a-concom.adb
ytomino/drake
4e4bdcd8b8e23a11a29b31d3a8861fdf60090ea2
[ "MIT" ]
8
2017-11-14T13:05:07.000Z
2018-08-09T15:28:49.000Z
source/containers/a-concom.adb
ytomino/drake
4e4bdcd8b8e23a11a29b31d3a8861fdf60090ea2
[ "MIT" ]
9
2015-02-03T17:09:53.000Z
2021-11-12T01:16:05.000Z
package body Ada.Containers.Composites is function LE (Left, Right : Element_Type) return Boolean is begin return not (Right < Left); end LE; function GT (Left, Right : Element_Type) return Boolean is begin return Right < Left; end GT; function GE (Left, Right : Element_Type) return Boolean is begin return not (Left < Right); end GE; function Compare (Left, Right : Element_Type) return Integer is begin if Left < Right then return -1; elsif Right < Left then return 1; else return 0; end if; end Compare; function Composite (A : A_Type) return R_Type is begin return F2 (F1 (A)); end Composite; function XXR_Bind_1st (A2 : A2_Type) return R_Type is begin return F (A1, A2); end XXR_Bind_1st; function XXR_Bind_2nd (A1 : A1_Type) return R_Type is begin return F (A1, A2); end XXR_Bind_2nd; function XR_Not (A1 : A1_Type) return Boolean is begin return not F (A1); end XR_Not; procedure XZ_Inout_1st (A1 : in out A1_Type; A2 : out A2_Type) is pragma Unmodified (A1); begin P (A1, A2); end XZ_Inout_1st; end Ada.Containers.Composites;
21.982143
68
0.633631
fb87d5da4b1291bb94a02b8cfeb3be1b461e2c8d
2,428
ads
Ada
bb-runtimes/examples/sam4s-xplained/tetris/leds.ads
JCGobbi/Nucleo-STM32F334R8
2a0b1b4b2664c92773703ac5e95dcb71979d051c
[ "BSD-3-Clause" ]
null
null
null
bb-runtimes/examples/sam4s-xplained/tetris/leds.ads
JCGobbi/Nucleo-STM32F334R8
2a0b1b4b2664c92773703ac5e95dcb71979d051c
[ "BSD-3-Clause" ]
null
null
null
bb-runtimes/examples/sam4s-xplained/tetris/leds.ads
JCGobbi/Nucleo-STM32F334R8
2a0b1b4b2664c92773703ac5e95dcb71979d051c
[ "BSD-3-Clause" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- GNAT EXAMPLE -- -- -- -- Copyright (C) 2013-2014, 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. -- -- -- ------------------------------------------------------------------------------ package Leds is procedure Init; function Button1_Pressed return Boolean; function Button2_Pressed return Boolean; function Button3_Pressed return Boolean; function Button_Pressed return Boolean; procedure Set_Led (On : Boolean); procedure Set_Led1 (On : Boolean); procedure Set_Led2 (On : Boolean); procedure Set_Led3 (On : Boolean); end Leds;
59.219512
78
0.452224
fb6981f4f3e2fae2d423508180ca61ba0ec8126a
450
adb
Ada
gyak/gyak3/szummazas.adb
balintsoos/LearnAda
9d2fc76209f6e15b4fa91b4b39107ae6cc7e7114
[ "MIT" ]
null
null
null
gyak/gyak3/szummazas.adb
balintsoos/LearnAda
9d2fc76209f6e15b4fa91b4b39107ae6cc7e7114
[ "MIT" ]
null
null
null
gyak/gyak3/szummazas.adb
balintsoos/LearnAda
9d2fc76209f6e15b4fa91b4b39107ae6cc7e7114
[ "MIT" ]
1
2021-07-16T16:15:11.000Z
2021-07-16T16:15:11.000Z
with Ada.Text_IO; use Ada.Text_IO; procedure Szummazas is type Index is new Integer; type Elem is new Integer; type Tomb is array (Index range <>) of Elem; function Szumma ( T: Tomb ) return Elem is S: Elem := 0; begin for I in T'Range loop S := S + T(I); end loop; return S; end Szumma; begin Put_Line( Elem'Image( Szumma((3,2,5,7,1)) ) ); end Szummazas;
18.75
51
0.553333
237fd2ec061bd68c687664406de5316031c4d7ba
10,657
adb
Ada
source/amf/mof/cmof/amf-internals-cmof_opaque_expressions.adb
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
24
2016-11-29T06:59:41.000Z
2021-08-30T11:55:16.000Z
source/amf/mof/cmof/amf-internals-cmof_opaque_expressions.adb
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
2
2019-01-16T05:15:20.000Z
2019-02-03T10:03:32.000Z
source/amf/mof/cmof/amf-internals-cmof_opaque_expressions.adb
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$ ------------------------------------------------------------------------------ with AMF.Internals.Tables.CMOF_Attributes; with AMF.String_Collections.Internals; with AMF.Visitors.CMOF_Iterators; with AMF.Visitors.CMOF_Visitors; package body AMF.Internals.CMOF_Opaque_Expressions is use AMF.Internals.Tables.CMOF_Attributes; ------------------- -- Enter_Element -- ------------------- overriding procedure Enter_Element (Self : not null access constant CMOF_Opaque_Expression_Proxy; Visitor : in out AMF.Visitors.Abstract_Visitor'Class; Control : in out AMF.Visitors.Traverse_Control) is begin if Visitor in AMF.Visitors.CMOF_Visitors.CMOF_Visitor'Class then AMF.Visitors.CMOF_Visitors.CMOF_Visitor'Class (Visitor).Enter_Opaque_Expression (AMF.CMOF.Opaque_Expressions.CMOF_Opaque_Expression_Access (Self), Control); end if; end Enter_Element; ------------------- -- Leave_Element -- ------------------- overriding procedure Leave_Element (Self : not null access constant CMOF_Opaque_Expression_Proxy; Visitor : in out AMF.Visitors.Abstract_Visitor'Class; Control : in out AMF.Visitors.Traverse_Control) is begin if Visitor in AMF.Visitors.CMOF_Visitors.CMOF_Visitor'Class then AMF.Visitors.CMOF_Visitors.CMOF_Visitor'Class (Visitor).Leave_Opaque_Expression (AMF.CMOF.Opaque_Expressions.CMOF_Opaque_Expression_Access (Self), Control); end if; end Leave_Element; ------------------- -- Visit_Element -- ------------------- overriding procedure Visit_Element (Self : not null access constant CMOF_Opaque_Expression_Proxy; Iterator : in out AMF.Visitors.Abstract_Iterator'Class; Visitor : in out AMF.Visitors.Abstract_Visitor'Class; Control : in out AMF.Visitors.Traverse_Control) is begin if Iterator in AMF.Visitors.CMOF_Iterators.CMOF_Iterator'Class then AMF.Visitors.CMOF_Iterators.CMOF_Iterator'Class (Iterator).Visit_Opaque_Expression (Visitor, AMF.CMOF.Opaque_Expressions.CMOF_Opaque_Expression_Access (Self), Control); end if; end Visit_Element; ------------------------ -- All_Owned_Elements -- ------------------------ overriding function All_Owned_Elements (Self : not null access constant CMOF_Opaque_Expression_Proxy) return AMF.CMOF.Elements.Collections.Set_Of_CMOF_Element is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "All_Owned_Elements unimplemented"); raise Program_Error; return All_Owned_Elements (Self); end All_Owned_Elements; ------------------------ -- Get_Qualified_Name -- ------------------------ overriding function Get_Qualified_Name (Self : not null access constant CMOF_Opaque_Expression_Proxy) return Optional_String is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "Get_Qualified_Name unimplemented"); raise Program_Error; return Get_Qualified_Name (Self); end Get_Qualified_Name; ----------------------------- -- Is_Distinguishable_From -- ----------------------------- overriding function Is_Distinguishable_From (Self : not null access constant CMOF_Opaque_Expression_Proxy; N : AMF.CMOF.Named_Elements.CMOF_Named_Element_Access; Ns : AMF.CMOF.Namespaces.CMOF_Namespace_Access) return Boolean is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "Is_Distinguishable_From unimplemented"); raise Program_Error; return Is_Distinguishable_From (Self, N, Ns); end Is_Distinguishable_From; ------------------- -- Is_Computable -- ------------------- overriding function Is_Computable (Self : not null access constant CMOF_Opaque_Expression_Proxy) return Boolean is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "Is_Computable unimplemented"); raise Program_Error; return Is_Computable (Self); end Is_Computable; ------------------- -- Integer_Value -- ------------------- overriding function Integer_Value (Self : not null access constant CMOF_Opaque_Expression_Proxy) return Integer is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "Integer_Value unimplemented"); raise Program_Error; return Integer_Value (Self); end Integer_Value; ------------------- -- Boolean_Value -- ------------------- overriding function Boolean_Value (Self : not null access constant CMOF_Opaque_Expression_Proxy) return Boolean is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "Boolean_Value unimplemented"); raise Program_Error; return Boolean_Value (Self); end Boolean_Value; ------------------ -- String_Value -- ------------------ overriding function String_Value (Self : not null access constant CMOF_Opaque_Expression_Proxy) return League.Strings.Universal_String is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "String_Value unimplemented"); raise Program_Error; return String_Value (Self); end String_Value; --------------------- -- Unlimited_Value -- --------------------- overriding function Unlimited_Value (Self : not null access constant CMOF_Opaque_Expression_Proxy) return Unlimited_Natural is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "Unlimited_Value unimplemented"); raise Program_Error; return Unlimited_Value (Self); end Unlimited_Value; ------------- -- Is_Null -- ------------- overriding function Is_Null (Self : not null access constant CMOF_Opaque_Expression_Proxy) return Boolean is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "Is_Null unimplemented"); raise Program_Error; return Is_Null (Self); end Is_Null; -------------- -- Get_Body -- -------------- overriding function Get_Body (Self : not null access constant CMOF_Opaque_Expression_Proxy) return AMF.String_Collections.Sequence_Of_String is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "Get_Body unimplemented"); return AMF.String_Collections.Internals.Wrap (Internal_Get_Body (Self.Element)); end Get_Body; ------------------ -- Get_Language -- ------------------ overriding function Get_Language (Self : not null access constant CMOF_Opaque_Expression_Proxy) return AMF.String_Collections.Ordered_Set_Of_String is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "Get_Language unimplemented"); return AMF.String_Collections.Internals.Wrap (Internal_Get_Language (Self.Element)); end Get_Language; end AMF.Internals.CMOF_Opaque_Expressions;
39.47037
91
0.57474
fb62d4f79c6eb2747040703e761b3ef0dae00b83
12,717
adb
Ada
support/MinGW/lib/gcc/mingw32/9.2.0/adainclude/g-diopit.adb
orb-zhuchen/Orb
6da2404b949ac28bde786e08bf4debe4a27cd3a0
[ "CNRI-Python-GPL-Compatible", "MIT" ]
null
null
null
support/MinGW/lib/gcc/mingw32/9.2.0/adainclude/g-diopit.adb
orb-zhuchen/Orb
6da2404b949ac28bde786e08bf4debe4a27cd3a0
[ "CNRI-Python-GPL-Compatible", "MIT" ]
null
null
null
support/MinGW/lib/gcc/mingw32/9.2.0/adainclude/g-diopit.adb
orb-zhuchen/Orb
6da2404b949ac28bde786e08bf4debe4a27cd3a0
[ "CNRI-Python-GPL-Compatible", "MIT" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- G N A T . D I R E C T O R Y _ O P E R A T I O N S . I T E R A T I O N -- -- -- -- B o d y -- -- -- -- Copyright (C) 2001-2019, 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. -- -- -- ------------------------------------------------------------------------------ with Ada.Characters.Handling; with Ada.Strings.Fixed; with Ada.Strings.Maps; with GNAT.OS_Lib; with GNAT.Regexp; package body GNAT.Directory_Operations.Iteration is use Ada; ---------- -- Find -- ---------- procedure Find (Root_Directory : Dir_Name_Str; File_Pattern : String) is File_Regexp : constant Regexp.Regexp := Regexp.Compile (File_Pattern); Index : Natural := 0; Quit : Boolean; procedure Read_Directory (Directory : Dir_Name_Str); -- Open Directory and read all entries. This routine is called -- recursively for each sub-directories. function Make_Pathname (Dir, File : String) return String; -- Returns the pathname for File by adding Dir as prefix ------------------- -- Make_Pathname -- ------------------- function Make_Pathname (Dir, File : String) return String is begin if Dir (Dir'Last) = '/' or else Dir (Dir'Last) = '\' then return Dir & File; else return Dir & Dir_Separator & File; end if; end Make_Pathname; -------------------- -- Read_Directory -- -------------------- procedure Read_Directory (Directory : Dir_Name_Str) is Buffer : String (1 .. 2_048); Last : Natural; Dir : Dir_Type; pragma Warnings (Off, Dir); begin Open (Dir, Directory); loop Read (Dir, Buffer, Last); exit when Last = 0; declare Dir_Entry : constant String := Buffer (1 .. Last); Pathname : constant String := Make_Pathname (Directory, Dir_Entry); begin if Regexp.Match (Dir_Entry, File_Regexp) then Index := Index + 1; begin Action (Pathname, Index, Quit); exception when others => Close (Dir); raise; end; exit when Quit; end if; -- Recursively call for sub-directories, except for . and .. if not (Dir_Entry = "." or else Dir_Entry = "..") and then OS_Lib.Is_Directory (Pathname) then Read_Directory (Pathname); exit when Quit; end if; end; end loop; Close (Dir); end Read_Directory; begin Quit := False; Read_Directory (Root_Directory); end Find; ----------------------- -- Wildcard_Iterator -- ----------------------- procedure Wildcard_Iterator (Path : Path_Name) is Index : Natural := 0; procedure Read (Directory : String; File_Pattern : String; Suffix_Pattern : String); -- Read entries in Directory and call user's callback if the entry match -- File_Pattern and Suffix_Pattern is empty; otherwise go down one more -- directory level by calling Next_Level routine below. procedure Next_Level (Current_Path : String; Suffix_Path : String); -- Extract next File_Pattern from Suffix_Path and call Read routine -- above. ---------------- -- Next_Level -- ---------------- procedure Next_Level (Current_Path : String; Suffix_Path : String) is DS : Natural; SP : String renames Suffix_Path; begin if SP'Length > 2 and then SP (SP'First) = '.' and then Strings.Maps.Is_In (SP (SP'First + 1), Dir_Seps) then -- Starting with "./" DS := Strings.Fixed.Index (SP (SP'First + 2 .. SP'Last), Dir_Seps); if DS = 0 then -- We have "./" Read (Current_Path & ".", "*", ""); else -- We have "./dir" Read (Current_Path & ".", SP (SP'First + 2 .. DS - 1), SP (DS .. SP'Last)); end if; elsif SP'Length > 3 and then SP (SP'First .. SP'First + 1) = ".." and then Strings.Maps.Is_In (SP (SP'First + 2), Dir_Seps) then -- Starting with "../" DS := Strings.Fixed.Index (SP (SP'First + 3 .. SP'Last), Dir_Seps); if DS = 0 then -- We have "../" Read (Current_Path & "..", "*", ""); else -- We have "../dir" Read (Current_Path & "..", SP (SP'First + 3 .. DS - 1), SP (DS .. SP'Last)); end if; elsif Current_Path = "" and then SP'Length > 1 and then Characters.Handling.Is_Letter (SP (SP'First)) and then SP (SP'First + 1) = ':' then -- Starting with "<drive>:" if SP'Length > 2 and then Strings.Maps.Is_In (SP (SP'First + 2), Dir_Seps) then -- Starting with "<drive>:\" DS := Strings.Fixed.Index (SP (SP'First + 3 .. SP'Last), Dir_Seps); if DS = 0 then -- We have "<drive>:\dir" Read (SP (SP'First .. SP'First + 2), SP (SP'First + 3 .. SP'Last), ""); else -- We have "<drive>:\dir\kkk" Read (SP (SP'First .. SP'First + 2), SP (SP'First + 3 .. DS - 1), SP (DS .. SP'Last)); end if; else -- Starting with "<drive>:" and the drive letter not followed -- by a directory separator. The proper semantic on Windows is -- to read the content of the current selected directory on -- this drive. For example, if drive C current selected -- directory is c:\temp the suffix pattern "c:m*" is -- equivalent to c:\temp\m*. DS := Strings.Fixed.Index (SP (SP'First + 2 .. SP'Last), Dir_Seps); if DS = 0 then -- We have "<drive>:dir" Read (SP, "", ""); else -- We have "<drive>:dir/kkk" Read (SP (SP'First .. DS - 1), "", SP (DS .. SP'Last)); end if; end if; elsif Strings.Maps.Is_In (SP (SP'First), Dir_Seps) then -- Starting with a / DS := Strings.Fixed.Index (SP (SP'First + 1 .. SP'Last), Dir_Seps); if DS = 0 then -- We have "/dir" Read (Current_Path, SP (SP'First + 1 .. SP'Last), ""); else -- We have "/dir/kkk" Read (Current_Path, SP (SP'First + 1 .. DS - 1), SP (DS .. SP'Last)); end if; else -- Starting with a name DS := Strings.Fixed.Index (SP, Dir_Seps); if DS = 0 then -- We have "dir" Read (Current_Path & '.', SP, ""); else -- We have "dir/kkk" Read (Current_Path & '.', SP (SP'First .. DS - 1), SP (DS .. SP'Last)); end if; end if; end Next_Level; ---------- -- Read -- ---------- Quit : Boolean := False; -- Global state to be able to exit all recursive calls procedure Read (Directory : String; File_Pattern : String; Suffix_Pattern : String) is File_Regexp : constant Regexp.Regexp := Regexp.Compile (File_Pattern, Glob => True); Dir : Dir_Type; pragma Warnings (Off, Dir); Buffer : String (1 .. 2_048); Last : Natural; begin if OS_Lib.Is_Directory (Directory & Dir_Separator) then Open (Dir, Directory & Dir_Separator); Dir_Iterator : loop Read (Dir, Buffer, Last); exit Dir_Iterator when Last = 0; declare Dir_Entry : constant String := Buffer (1 .. Last); Pathname : constant String := Directory & Dir_Separator & Dir_Entry; begin -- Handle "." and ".." only if explicit use in the -- File_Pattern. if not ((Dir_Entry = "." and then File_Pattern /= ".") or else (Dir_Entry = ".." and then File_Pattern /= "..")) then if Regexp.Match (Dir_Entry, File_Regexp) then if Suffix_Pattern = "" then -- No more matching needed, call user's callback Index := Index + 1; begin Action (Pathname, Index, Quit); exception when others => Close (Dir); raise; end; else -- Down one level Next_Level (Directory & Dir_Separator & Dir_Entry, Suffix_Pattern); end if; end if; end if; end; -- Exit if Quit set by call to Action, either at this level -- or at some lower recursive call to Next_Level. exit Dir_Iterator when Quit; end loop Dir_Iterator; Close (Dir); end if; end Read; -- Start of processing for Wildcard_Iterator begin if Path = "" then return; end if; Next_Level ("", Path); end Wildcard_Iterator; end GNAT.Directory_Operations.Iteration;
32.032746
79
0.421798
cbcfe45297a9fc069e816d886245443865d83762
1,338
ads
Ada
tools-src/gnu/gcc/gcc/ada/a-sfwtio.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-sfwtio.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-sfwtio.ads
modern-tomato/tomato
96f09fab4929c6ddde5c9113f1b2476ad37133c4
[ "FSFAP" ]
69
2015-01-02T10:45:56.000Z
2021-09-06T07:52:13.000Z
------------------------------------------------------------------------------ -- -- -- GNAT RUNTIME COMPONENTS -- -- -- -- A D A . S H O R T _ F L O A T _ W I D E _ T E X T _ I O -- -- -- -- S p e c -- -- -- -- $Revision$ -- -- -- This specification is adapted from the Ada Reference Manual for use with -- -- GNAT. In accordance with the copyright of that document, you can freely -- -- copy and modify this specification, provided that if you redistribute a -- -- modified version, any changes that you have made are clearly indicated. -- -- -- ------------------------------------------------------------------------------ with Ada.Wide_Text_IO; package Ada.Short_Float_Wide_Text_IO is new Ada.Wide_Text_IO.Float_IO (Short_Float);
60.818182
78
0.29148
1c8b4150af5556716a3e768f78c3522e7d8bd74f
9,765
adb
Ada
bb-runtimes/runtimes/ravenscar-full-stm32f3x4/gnat/s-putima.adb
JCGobbi/Nucleo-STM32F334R8
2a0b1b4b2664c92773703ac5e95dcb71979d051c
[ "BSD-3-Clause" ]
null
null
null
bb-runtimes/runtimes/ravenscar-full-stm32f3x4/gnat/s-putima.adb
JCGobbi/Nucleo-STM32F334R8
2a0b1b4b2664c92773703ac5e95dcb71979d051c
[ "BSD-3-Clause" ]
null
null
null
bb-runtimes/runtimes/ravenscar-full-stm32f3x4/gnat/s-putima.adb
JCGobbi/Nucleo-STM32F334R8
2a0b1b4b2664c92773703ac5e95dcb71979d051c
[ "BSD-3-Clause" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- SYSTEM.PUT_IMAGES -- -- -- -- B o d y -- -- -- -- 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. -- -- -- ------------------------------------------------------------------------------ with Ada.Strings.Text_Buffers.Utils; use Ada.Strings.Text_Buffers; use Ada.Strings.Text_Buffers.Utils; with Unchecked_Conversion; package body System.Put_Images is generic type Integer_Type is range <>; type Unsigned_Type is mod <>; Base : Unsigned_Type; package Generic_Integer_Images is pragma Assert (Integer_Type'Size = Unsigned_Type'Size); pragma Assert (Base in 2 .. 36); procedure Put_Image (S : in out Sink'Class; X : Integer_Type); procedure Put_Image (S : in out Sink'Class; X : Unsigned_Type); private subtype Digit is Unsigned_Type range 0 .. Base - 1; end Generic_Integer_Images; package body Generic_Integer_Images is A : constant := Character'Pos ('a'); Z : constant := Character'Pos ('0'); function Digit_To_Character (X : Digit) return Character is (Character'Val (if X < 10 then X + Z else X + A - 10)); procedure Put_Digits (S : in out Sink'Class; X : Unsigned_Type); -- Put just the digits of X, without any leading minus sign or space. procedure Put_Digits (S : in out Sink'Class; X : Unsigned_Type) is begin if X >= Base then Put_Digits (S, X / Base); -- recurse Put_7bit (S, Digit_To_Character (X mod Base)); else Put_7bit (S, Digit_To_Character (X)); end if; end Put_Digits; procedure Put_Image (S : in out Sink'Class; X : Integer_Type) is begin -- Put the space or the minus sign, then pass the absolute value to -- Put_Digits. if X >= 0 then Put_7bit (S, ' '); Put_Digits (S, Unsigned_Type (X)); else Put_7bit (S, '-'); Put_Digits (S, -Unsigned_Type'Mod (X)); -- Convert to Unsigned_Type before negating, to avoid overflow -- on Integer_Type'First. end if; end Put_Image; procedure Put_Image (S : in out Sink'Class; X : Unsigned_Type) is begin Put_7bit (S, ' '); Put_Digits (S, X); end Put_Image; end Generic_Integer_Images; package Integer_Images is new Generic_Integer_Images (Integer, Unsigned, Base => 10); package LL_Integer_Images is new Generic_Integer_Images (Long_Long_Integer, Long_Long_Unsigned, Base => 10); package LLL_Integer_Images is new Generic_Integer_Images (Long_Long_Long_Integer, Long_Long_Long_Unsigned, Base => 10); procedure Put_Image_Integer (S : in out Sink'Class; X : Integer) renames Integer_Images.Put_Image; procedure Put_Image_Long_Long_Integer (S : in out Sink'Class; X : Long_Long_Integer) renames LL_Integer_Images.Put_Image; procedure Put_Image_Long_Long_Long_Integer (S : in out Sink'Class; X : Long_Long_Long_Integer) renames LLL_Integer_Images.Put_Image; procedure Put_Image_Unsigned (S : in out Sink'Class; X : Unsigned) renames Integer_Images.Put_Image; procedure Put_Image_Long_Long_Unsigned (S : in out Sink'Class; X : Long_Long_Unsigned) renames LL_Integer_Images.Put_Image; procedure Put_Image_Long_Long_Long_Unsigned (S : in out Sink'Class; X : Long_Long_Long_Unsigned) renames LLL_Integer_Images.Put_Image; type Signed_Address is range -2**(Standard'Address_Size - 1) .. 2**(Standard'Address_Size - 1) - 1; type Unsigned_Address is mod 2**Standard'Address_Size; package Hex is new Generic_Integer_Images (Signed_Address, Unsigned_Address, Base => 16); generic type Designated (<>) is private; type Pointer is access all Designated; procedure Put_Image_Pointer (S : in out Sink'Class; X : Pointer; Type_Kind : String); procedure Put_Image_Pointer (S : in out Sink'Class; X : Pointer; Type_Kind : String) is function Cast is new Unchecked_Conversion (System.Address, Unsigned_Address); begin if X = null then Put_UTF_8 (S, "null"); else Put_UTF_8 (S, "("); Put_UTF_8 (S, Type_Kind); Hex.Put_Image (S, Cast (X.all'Address)); Put_UTF_8 (S, ")"); end if; end Put_Image_Pointer; procedure Thin_Instance is new Put_Image_Pointer (Byte, Thin_Pointer); procedure Put_Image_Thin_Pointer (S : in out Sink'Class; X : Thin_Pointer) is begin Thin_Instance (S, X, "access"); end Put_Image_Thin_Pointer; procedure Fat_Instance is new Put_Image_Pointer (Byte_String, Fat_Pointer); procedure Put_Image_Fat_Pointer (S : in out Sink'Class; X : Fat_Pointer) is begin Fat_Instance (S, X, "access"); end Put_Image_Fat_Pointer; procedure Put_Image_Access_Subp (S : in out Sink'Class; X : Thin_Pointer) is begin Thin_Instance (S, X, "access subprogram"); end Put_Image_Access_Subp; procedure Put_Image_Access_Prot_Subp (S : in out Sink'Class; X : Thin_Pointer) is begin Thin_Instance (S, X, "access protected subprogram"); end Put_Image_Access_Prot_Subp; procedure Put_Image_String (S : in out Sink'Class; X : String) is begin Put_UTF_8 (S, """"); for C of X loop if C = '"' then Put_UTF_8 (S, """"); end if; Put_Character (S, C); end loop; Put_UTF_8 (S, """"); end Put_Image_String; procedure Put_Image_Wide_String (S : in out Sink'Class; X : Wide_String) is begin Put_UTF_8 (S, """"); for C of X loop if C = '"' then Put_UTF_8 (S, """"); end if; Put_Wide_Character (S, C); end loop; Put_UTF_8 (S, """"); end Put_Image_Wide_String; procedure Put_Image_Wide_Wide_String (S : in out Sink'Class; X : Wide_Wide_String) is begin Put_UTF_8 (S, """"); for C of X loop if C = '"' then Put_UTF_8 (S, """"); end if; Put_Wide_Wide_Character (S, C); end loop; Put_UTF_8 (S, """"); end Put_Image_Wide_Wide_String; procedure Array_Before (S : in out Sink'Class) is begin New_Line (S); Put_7bit (S, '['); Increase_Indent (S, 1); end Array_Before; procedure Array_Between (S : in out Sink'Class) is begin Put_7bit (S, ','); New_Line (S); end Array_Between; procedure Array_After (S : in out Sink'Class) is begin Decrease_Indent (S, 1); Put_7bit (S, ']'); end Array_After; procedure Simple_Array_Between (S : in out Sink'Class) is begin Put_7bit (S, ','); if Column (S) > 60 then New_Line (S); else Put_7bit (S, ' '); end if; end Simple_Array_Between; procedure Record_Before (S : in out Sink'Class) is begin New_Line (S); Put_7bit (S, '('); Increase_Indent (S, 1); end Record_Before; procedure Record_Between (S : in out Sink'Class) is begin Put_7bit (S, ','); New_Line (S); end Record_Between; procedure Record_After (S : in out Sink'Class) is begin Decrease_Indent (S, 1); Put_7bit (S, ')'); end Record_After; procedure Put_Arrow (S : in out Sink'Class) is begin Put_UTF_8 (S, " => "); end Put_Arrow; procedure Put_Image_Unknown (S : in out Sink'Class; Type_Name : String) is begin Put_UTF_8 (S, "{"); Put (S, Type_Name); Put_UTF_8 (S, " object}"); end Put_Image_Unknown; end System.Put_Images;
35.509091
79
0.55064
2031bca999a0b3fcb76aedd52a6f57efba0178f4
871
adb
Ada
gdb-7.3/gdb/testsuite/gdb.ada/ptype_field/foo.adb
vidkidz/crossbridge
ba0bf94aee0ce6cf7eb5be882382e52bc57ba396
[ "MIT" ]
1
2016-04-09T02:58:13.000Z
2016-04-09T02:58:13.000Z
gdb-7.3/gdb/testsuite/gdb.ada/ptype_field/foo.adb
vidkidz/crossbridge
ba0bf94aee0ce6cf7eb5be882382e52bc57ba396
[ "MIT" ]
null
null
null
gdb-7.3/gdb/testsuite/gdb.ada/ptype_field/foo.adb
vidkidz/crossbridge
ba0bf94aee0ce6cf7eb5be882382e52bc57ba396
[ "MIT" ]
null
null
null
-- Copyright 2008, 2009, 2010, 2011 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 My_Circle : Circle := (Pos => (1, 2), Radius => 3); begin Do_Nothing (My_Circle); -- STOP end Foo;
37.869565
73
0.716418
23542effc1bae2f0fcd557063aeec3e9436cad02
773
ads
Ada
gnu/src/gdb/gdb/testsuite/gdb.ada/bp_reset/io.ads
ghsecuritylab/ellcc-mirror
b03a4afac74d50cf0987554b8c0cd8209bcb92a2
[ "BSD-2-Clause" ]
null
null
null
gnu/src/gdb/gdb/testsuite/gdb.ada/bp_reset/io.ads
ghsecuritylab/ellcc-mirror
b03a4afac74d50cf0987554b8c0cd8209bcb92a2
[ "BSD-2-Clause" ]
null
null
null
gnu/src/gdb/gdb/testsuite/gdb.ada/bp_reset/io.ads
ghsecuritylab/ellcc-mirror
b03a4afac74d50cf0987554b8c0cd8209bcb92a2
[ "BSD-2-Clause" ]
null
null
null
-- Copyright 2012-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 IO is procedure Put_Line (S : String); end IO;
40.684211
73
0.734799