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
|
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
049a821404c212b0b8e50d3d4890136b1c764926 | 3,457 | adb | Ada | bb-runtimes/examples/clock/clock.adb | JCGobbi/Nucleo-STM32F334R8 | 2a0b1b4b2664c92773703ac5e95dcb71979d051c | [
"BSD-3-Clause"
] | null | null | null | bb-runtimes/examples/clock/clock.adb | JCGobbi/Nucleo-STM32F334R8 | 2a0b1b4b2664c92773703ac5e95dcb71979d051c | [
"BSD-3-Clause"
] | null | null | null | bb-runtimes/examples/clock/clock.adb | JCGobbi/Nucleo-STM32F334R8 | 2a0b1b4b2664c92773703ac5e95dcb71979d051c | [
"BSD-3-Clause"
] | null | null | null | ------------------------------------------------------------------------------
-- --
-- GNAT EXAMPLE --
-- --
-- Copyright (C) 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 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.Text_IO; use Ada.Text_IO;
with Ada.Real_Time; use Ada.Real_Time;
procedure Clock is
procedure Disp_Digit (N : Natural) is
begin
Put (Character'Val (Character'Pos ('0') + N));
end Disp_Digit;
procedure Disp_2digits (N : Natural)
is
begin
Disp_Digit (N / 10);
Disp_Digit (N mod 10);
end Disp_2digits;
procedure Disp_Hours (N : Natural) is
begin
if N > 10 then
Disp_Hours (N / 10);
else
Disp_Digit (N);
end if;
end Disp_Hours;
T0 : Time := Clock;
Clk : Time := T0;
One_Sec : constant Time_Span := Milliseconds (1_000);
Sec : Natural := 0;
Min : Natural := 0;
Hour : Natural := 0;
begin
Put_Line ("Start of test");
loop
-- Disp clock.
New_Line;
Disp_Hours (Hour);
Put (':');
Disp_2digits (Min);
Put (':');
Disp_2digits (Sec);
Clk := Clk + One_Sec;
delay until Clk;
if abs (Clk - Clock) > One_Sec then
Put (" DRIFT!");
end if;
Sec := Sec + 1;
if Sec = 60 then
Sec := 0;
Min := Min + 1;
if Min = 60 then
Min := 0;
Hour := Hour + 1;
end if;
end if;
end loop;
end Clock;
| 38.411111 | 78 | 0.472086 |
1eb3a8e7a5e895ae491e4a7b073848c92211af54 | 3,698 | ada | Ada | gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/ce/ce3801b.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/ce/ce3801b.ada | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | null | null | null | gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/ce/ce3801b.ada | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | 2 | 2020-07-27T00:22:36.000Z | 2021-04-01T09:41:02.000Z | -- CE3801B.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.
--*
-- OBJECTIVE:
-- CHECK THAT EACH FIXED_IO OPERATION RAISES STATUS_ERROR
-- WHEN CALLED WITH A FILE PARAMETER DESIGNATING AN UN-OPEN FILE.
-- HISTORY:
-- DWC 09/11/87 CREATED ORIGINAL TEST.
WITH REPORT;
USE REPORT;
WITH TEXT_IO;
USE TEXT_IO;
PROCEDURE CE3801B IS
BEGIN
TEST ("CE3801B", "CHECK THAT EACH FIXED_IO " &
"OPERATION RAISES STATUS_ERROR WHEN CALLED " &
"WITH A FILE PARAMETER DESIGNATING AN " &
"UN-OPEN FILE");
DECLARE
TYPE FIX IS DELTA 0.1 RANGE 1.0 .. 10.0;
PACKAGE FIX_IO IS NEW FIXED_IO (FIX);
USE FIX_IO;
X : FIX := FIX'LAST;
FT : FILE_TYPE;
BEGIN
BEGIN
GET (FT, X);
FAILED ("STATUS_ERROR NOT RAISED - GET FIXED_IO - 1");
EXCEPTION
WHEN STATUS_ERROR =>
NULL;
WHEN OTHERS =>
FAILED ("WRONG EXCEPTION RAISED - GET " &
"FIXED_IO - 1");
END;
BEGIN
PUT (FT, X);
FAILED ("STATUS_ERROR NOT RAISED - PUT FIXED_IO - 1");
EXCEPTION
WHEN STATUS_ERROR =>
NULL;
WHEN OTHERS =>
FAILED ("WRONG EXCEPTION RAISED - PUT " &
"FIXED_IO - 1");
END;
BEGIN
CREATE (FT, OUT_FILE); -- THIS IS JUST AN ATTEMPT TO
CLOSE (FT); -- CREATE A FILE. OBJECTIVE
EXCEPTION -- IS MET EITHER WAY.
WHEN USE_ERROR =>
NULL;
END;
BEGIN
GET (FT, X);
FAILED ("STATUS_ERROR NOT RAISED - GET FIXED_IO - 2");
EXCEPTION
WHEN STATUS_ERROR =>
NULL;
WHEN OTHERS =>
FAILED ("WRONG EXCEPTION RAISED - GET " &
"FIXED_IO - 2");
END;
BEGIN
PUT (FT, X);
FAILED ("STATUS_ERROR NOT RAISED - PUT FIXED_IO - 2");
EXCEPTION
WHEN STATUS_ERROR =>
NULL;
WHEN OTHERS =>
FAILED ("WRONG EXCEPTION RAISED - PUT " &
"FIXED_IO - 2");
END;
END;
RESULT;
END CE3801B;
| 33.926606 | 79 | 0.518659 |
04e58b9d0bef6fc007686956e5b8c6223326e646 | 43,963 | ads | Ada | src/hershey_fonts/giza-hershey_fonts-cyrilc_1.ads | Fabien-Chouteau/Giza | 9f6c167666dbba8f0e5f0ba3e33825c0b3f399bd | [
"BSD-3-Clause"
] | 7 | 2017-10-18T02:40:24.000Z | 2020-12-19T22:41:19.000Z | src/hershey_fonts/giza-hershey_fonts-cyrilc_1.ads | Fabien-Chouteau/Giza | 9f6c167666dbba8f0e5f0ba3e33825c0b3f399bd | [
"BSD-3-Clause"
] | null | null | null | src/hershey_fonts/giza-hershey_fonts-cyrilc_1.ads | Fabien-Chouteau/Giza | 9f6c167666dbba8f0e5f0ba3e33825c0b3f399bd | [
"BSD-3-Clause"
] | 2 | 2019-05-06T08:30:26.000Z | 2020-11-22T11:27:27.000Z | package Giza.Hershey_Fonts.Cyrilc_1 is
Font : constant Giza.Font.Ref_Const;
private
Glyph_0 : aliased constant Glyph :=
(Number_Of_Vectors => 0,
Width => 16,
Height => 0,
Y_Offset => 0,
X_Offset => -8,
Vects => (others => (Raise_Pen)));
Glyph_1 : aliased constant Glyph :=
(Number_Of_Vectors => 15,
Width => 10,
Height => 21,
Y_Offset => -12,
X_Offset => -5,
Vects => (Raise_Pen,
(0, -12),
(-1, -10),
(0, 2),
(1, -10),
(0, -12),
Raise_Pen,
(0, -10),
(0, -4),
Raise_Pen,
(0, 7),
(-1, 8),
(0, 9),
(1, 8),
(0, 7)));
Glyph_2 : aliased constant Glyph :=
(Number_Of_Vectors => 14,
Width => 10,
Height => 18,
Y_Offset => -5,
X_Offset => -5,
Vects => (Raise_Pen,
(0, -5),
(-1, -4),
(0, -3),
(1, -4),
(0, -5),
Raise_Pen,
(0, 9),
(-1, 8),
(0, 7),
(1, 8),
(1, 10),
(0, 12),
(-1, 13)));
Glyph_3 : aliased constant Glyph :=
(Number_Of_Vectors => 12,
Width => 21,
Height => 28,
Y_Offset => -12,
X_Offset => -10,
Vects => (Raise_Pen,
(1, -12),
(-6, 16),
Raise_Pen,
(7, -12),
(0, 16),
Raise_Pen,
(-6, -1),
(8, -1),
Raise_Pen,
(-7, 5),
(7, 5)));
Glyph_4 : aliased constant Glyph :=
(Number_Of_Vectors => 42,
Width => 20,
Height => 29,
Y_Offset => -16,
X_Offset => -10,
Vects => (Raise_Pen,
(-2, -16),
(-2, 13),
Raise_Pen,
(2, -16),
(2, 13),
Raise_Pen,
(6, -9),
(5, -8),
(6, -7),
(7, -8),
(7, -9),
(5, -11),
(2, -12),
(-2, -12),
(-5, -11),
(-7, -9),
(-7, -7),
(-6, -5),
(-5, -4),
(-3, -3),
(3, -1),
(5, 0),
(7, 2),
Raise_Pen,
(-7, -7),
(-5, -5),
(-3, -4),
(3, -2),
(5, -1),
(6, 0),
(7, 2),
(7, 6),
(5, 8),
(2, 9),
(-2, 9),
(-5, 8),
(-7, 6),
(-7, 5),
(-6, 4),
(-5, 5),
(-6, 6)));
Glyph_5 : aliased constant Glyph :=
(Number_Of_Vectors => 32,
Width => 24,
Height => 21,
Y_Offset => -12,
X_Offset => -12,
Vects => (Raise_Pen,
(9, -12),
(-9, 9),
Raise_Pen,
(-4, -12),
(-2, -10),
(-2, -8),
(-3, -6),
(-5, -5),
(-7, -5),
(-9, -7),
(-9, -9),
(-8, -11),
(-6, -12),
(-4, -12),
(-2, -11),
(1, -10),
(4, -10),
(7, -11),
(9, -12),
Raise_Pen,
(5, 2),
(3, 3),
(2, 5),
(2, 7),
(4, 9),
(6, 9),
(8, 8),
(9, 6),
(9, 4),
(7, 2),
(5, 2)));
Glyph_6 : aliased constant Glyph :=
(Number_Of_Vectors => 49,
Width => 25,
Height => 21,
Y_Offset => -12,
X_Offset => -12,
Vects => (Raise_Pen,
(9, -4),
(8, -3),
(9, -2),
(10, -3),
(10, -4),
(9, -5),
(8, -5),
(7, -4),
(6, -2),
(4, 3),
(2, 6),
(0, 8),
(-2, 9),
(-5, 9),
(-8, 8),
(-9, 6),
(-9, 3),
(-8, 1),
(-2, -3),
(0, -5),
(1, -7),
(1, -9),
(0, -11),
(-2, -12),
(-4, -11),
(-5, -9),
(-5, -7),
(-4, -4),
(-2, -1),
(3, 6),
(5, 8),
(8, 9),
(9, 9),
(10, 8),
(10, 7),
Raise_Pen,
(-5, 9),
(-7, 8),
(-8, 6),
(-8, 3),
(-7, 1),
(-5, -1),
Raise_Pen,
(-5, -7),
(-4, -5),
(4, 6),
(6, 8),
(8, 9)));
Glyph_7 : aliased constant Glyph :=
(Number_Of_Vectors => 8,
Width => 10,
Height => 6,
Y_Offset => -12,
X_Offset => -5,
Vects => (Raise_Pen,
(0, -10),
(-1, -11),
(0, -12),
(1, -11),
(1, -9),
(0, -7),
(-1, -6)));
Glyph_8 : aliased constant Glyph :=
(Number_Of_Vectors => 20,
Width => 14,
Height => 32,
Y_Offset => -16,
X_Offset => -7,
Vects => (Raise_Pen,
(4, -16),
(2, -14),
(0, -11),
(-2, -7),
(-3, -2),
(-3, 2),
(-2, 7),
(0, 11),
(2, 14),
(4, 16),
Raise_Pen,
(2, -14),
(0, -10),
(-1, -7),
(-2, -2),
(-2, 2),
(-1, 7),
(0, 10),
(2, 14)));
Glyph_9 : aliased constant Glyph :=
(Number_Of_Vectors => 20,
Width => 14,
Height => 32,
Y_Offset => -16,
X_Offset => -7,
Vects => (Raise_Pen,
(-4, -16),
(-2, -14),
(0, -11),
(2, -7),
(3, -2),
(3, 2),
(2, 7),
(0, 11),
(-2, 14),
(-4, 16),
Raise_Pen,
(-2, -14),
(0, -10),
(1, -7),
(2, -2),
(2, 2),
(1, 7),
(0, 10),
(-2, 14)));
Glyph_10 : aliased constant Glyph :=
(Number_Of_Vectors => 9,
Width => 16,
Height => 12,
Y_Offset => -12,
X_Offset => -8,
Vects => (Raise_Pen,
(0, -12),
(0, 0),
Raise_Pen,
(-5, -9),
(5, -3),
Raise_Pen,
(5, -9),
(-5, -3)));
Glyph_11 : aliased constant Glyph :=
(Number_Of_Vectors => 6,
Width => 26,
Height => 18,
Y_Offset => -9,
X_Offset => -13,
Vects => (Raise_Pen,
(0, -9),
(0, 9),
Raise_Pen,
(-9, 0),
(9, 0)));
Glyph_12 : aliased constant Glyph :=
(Number_Of_Vectors => 8,
Width => 10,
Height => 6,
Y_Offset => 7,
X_Offset => -5,
Vects => (Raise_Pen,
(0, 9),
(-1, 8),
(0, 7),
(1, 8),
(1, 10),
(0, 12),
(-1, 13)));
Glyph_13 : aliased constant Glyph :=
(Number_Of_Vectors => 3,
Width => 26,
Height => 0,
Y_Offset => 0,
X_Offset => -13,
Vects => (Raise_Pen,
(-9, 0),
(9, 0)));
Glyph_14 : aliased constant Glyph :=
(Number_Of_Vectors => 6,
Width => 10,
Height => 2,
Y_Offset => 7,
X_Offset => -5,
Vects => (Raise_Pen,
(0, 7),
(-1, 8),
(0, 9),
(1, 8),
(0, 7)));
Glyph_15 : aliased constant Glyph :=
(Number_Of_Vectors => 3,
Width => 22,
Height => 32,
Y_Offset => -16,
X_Offset => -11,
Vects => (Raise_Pen,
(9, -16),
(-9, 16)));
Glyph_16 : aliased constant Glyph :=
(Number_Of_Vectors => 40,
Width => 20,
Height => 21,
Y_Offset => -12,
X_Offset => -10,
Vects => (Raise_Pen,
(-1, -12),
(-4, -11),
(-6, -8),
(-7, -3),
(-7, 0),
(-6, 5),
(-4, 8),
(-1, 9),
(1, 9),
(4, 8),
(6, 5),
(7, 0),
(7, -3),
(6, -8),
(4, -11),
(1, -12),
(-1, -12),
Raise_Pen,
(-1, -12),
(-3, -11),
(-4, -10),
(-5, -8),
(-6, -3),
(-6, 0),
(-5, 5),
(-4, 7),
(-3, 8),
(-1, 9),
Raise_Pen,
(1, 9),
(3, 8),
(4, 7),
(5, 5),
(6, 0),
(6, -3),
(5, -8),
(4, -10),
(3, -11),
(1, -12)));
Glyph_17 : aliased constant Glyph :=
(Number_Of_Vectors => 11,
Width => 20,
Height => 21,
Y_Offset => -12,
X_Offset => -10,
Vects => (Raise_Pen,
(-4, -8),
(-2, -9),
(1, -12),
(1, 9),
Raise_Pen,
(0, -11),
(0, 9),
Raise_Pen,
(-4, 9),
(5, 9)));
Glyph_18 : aliased constant Glyph :=
(Number_Of_Vectors => 45,
Width => 20,
Height => 21,
Y_Offset => -12,
X_Offset => -10,
Vects => (Raise_Pen,
(-6, -8),
(-5, -7),
(-6, -6),
(-7, -7),
(-7, -8),
(-6, -10),
(-5, -11),
(-2, -12),
(2, -12),
(5, -11),
(6, -10),
(7, -8),
(7, -6),
(6, -4),
(3, -2),
(-2, 0),
(-4, 1),
(-6, 3),
(-7, 6),
(-7, 9),
Raise_Pen,
(2, -12),
(4, -11),
(5, -10),
(6, -8),
(6, -6),
(5, -4),
(2, -2),
(-2, 0),
Raise_Pen,
(-7, 7),
(-6, 6),
(-4, 6),
(1, 8),
(4, 8),
(6, 7),
(7, 6),
Raise_Pen,
(-4, 6),
(1, 9),
(5, 9),
(6, 8),
(7, 6),
(7, 4)));
Glyph_19 : aliased constant Glyph :=
(Number_Of_Vectors => 47,
Width => 20,
Height => 21,
Y_Offset => -12,
X_Offset => -10,
Vects => (Raise_Pen,
(-6, -8),
(-5, -7),
(-6, -6),
(-7, -7),
(-7, -8),
(-6, -10),
(-5, -11),
(-2, -12),
(2, -12),
(5, -11),
(6, -9),
(6, -6),
(5, -4),
(2, -3),
(-1, -3),
Raise_Pen,
(2, -12),
(4, -11),
(5, -9),
(5, -6),
(4, -4),
(2, -3),
Raise_Pen,
(2, -3),
(4, -2),
(6, 0),
(7, 2),
(7, 5),
(6, 7),
(5, 8),
(2, 9),
(-2, 9),
(-5, 8),
(-6, 7),
(-7, 5),
(-7, 4),
(-6, 3),
(-5, 4),
(-6, 5),
Raise_Pen,
(5, -1),
(6, 2),
(6, 5),
(5, 7),
(4, 8),
(2, 9)));
Glyph_20 : aliased constant Glyph :=
(Number_Of_Vectors => 13,
Width => 20,
Height => 21,
Y_Offset => -12,
X_Offset => -10,
Vects => (Raise_Pen,
(2, -10),
(2, 9),
Raise_Pen,
(3, -12),
(3, 9),
Raise_Pen,
(3, -12),
(-8, 3),
(8, 3),
Raise_Pen,
(-1, 9),
(6, 9)));
Glyph_21 : aliased constant Glyph :=
(Number_Of_Vectors => 39,
Width => 20,
Height => 21,
Y_Offset => -12,
X_Offset => -10,
Vects => (Raise_Pen,
(-5, -12),
(-7, -2),
Raise_Pen,
(-7, -2),
(-5, -4),
(-2, -5),
(1, -5),
(4, -4),
(6, -2),
(7, 1),
(7, 3),
(6, 6),
(4, 8),
(1, 9),
(-2, 9),
(-5, 8),
(-6, 7),
(-7, 5),
(-7, 4),
(-6, 3),
(-5, 4),
(-6, 5),
Raise_Pen,
(1, -5),
(3, -4),
(5, -2),
(6, 1),
(6, 3),
(5, 6),
(3, 8),
(1, 9),
Raise_Pen,
(-5, -12),
(5, -12),
Raise_Pen,
(-5, -11),
(0, -11),
(5, -12)));
Glyph_22 : aliased constant Glyph :=
(Number_Of_Vectors => 48,
Width => 20,
Height => 21,
Y_Offset => -12,
X_Offset => -10,
Vects => (Raise_Pen,
(5, -9),
(4, -8),
(5, -7),
(6, -8),
(6, -9),
(5, -11),
(3, -12),
(0, -12),
(-3, -11),
(-5, -9),
(-6, -7),
(-7, -3),
(-7, 3),
(-6, 6),
(-4, 8),
(-1, 9),
(1, 9),
(4, 8),
(6, 6),
(7, 3),
(7, 2),
(6, -1),
(4, -3),
(1, -4),
(0, -4),
(-3, -3),
(-5, -1),
(-6, 2),
Raise_Pen,
(0, -12),
(-2, -11),
(-4, -9),
(-5, -7),
(-6, -3),
(-6, 3),
(-5, 6),
(-3, 8),
(-1, 9),
Raise_Pen,
(1, 9),
(3, 8),
(5, 6),
(6, 3),
(6, 2),
(5, -1),
(3, -3),
(1, -4)));
Glyph_23 : aliased constant Glyph :=
(Number_Of_Vectors => 31,
Width => 20,
Height => 21,
Y_Offset => -12,
X_Offset => -10,
Vects => (Raise_Pen,
(-7, -12),
(-7, -6),
Raise_Pen,
(-7, -8),
(-6, -10),
(-4, -12),
(-2, -12),
(3, -9),
(5, -9),
(6, -10),
(7, -12),
Raise_Pen,
(-6, -10),
(-4, -11),
(-2, -11),
(3, -9),
Raise_Pen,
(7, -12),
(7, -9),
(6, -6),
(2, -1),
(1, 1),
(0, 4),
(0, 9),
Raise_Pen,
(6, -6),
(1, -1),
(0, 1),
(-1, 4),
(-1, 9)));
Glyph_24 : aliased constant Glyph :=
(Number_Of_Vectors => 63,
Width => 20,
Height => 21,
Y_Offset => -12,
X_Offset => -10,
Vects => (Raise_Pen,
(-2, -12),
(-5, -11),
(-6, -9),
(-6, -6),
(-5, -4),
(-2, -3),
(2, -3),
(5, -4),
(6, -6),
(6, -9),
(5, -11),
(2, -12),
(-2, -12),
Raise_Pen,
(-2, -12),
(-4, -11),
(-5, -9),
(-5, -6),
(-4, -4),
(-2, -3),
Raise_Pen,
(2, -3),
(4, -4),
(5, -6),
(5, -9),
(4, -11),
(2, -12),
Raise_Pen,
(-2, -3),
(-5, -2),
(-6, -1),
(-7, 1),
(-7, 5),
(-6, 7),
(-5, 8),
(-2, 9),
(2, 9),
(5, 8),
(6, 7),
(7, 5),
(7, 1),
(6, -1),
(5, -2),
(2, -3),
Raise_Pen,
(-2, -3),
(-4, -2),
(-5, -1),
(-6, 1),
(-6, 5),
(-5, 7),
(-4, 8),
(-2, 9),
Raise_Pen,
(2, 9),
(4, 8),
(5, 7),
(6, 5),
(6, 1),
(5, -1),
(4, -2),
(2, -3)));
Glyph_25 : aliased constant Glyph :=
(Number_Of_Vectors => 48,
Width => 20,
Height => 21,
Y_Offset => -12,
X_Offset => -10,
Vects => (Raise_Pen,
(6, -5),
(5, -2),
(3, 0),
(0, 1),
(-1, 1),
(-4, 0),
(-6, -2),
(-7, -5),
(-7, -6),
(-6, -9),
(-4, -11),
(-1, -12),
(1, -12),
(4, -11),
(6, -9),
(7, -6),
(7, 0),
(6, 4),
(5, 6),
(3, 8),
(0, 9),
(-3, 9),
(-5, 8),
(-6, 6),
(-6, 5),
(-5, 4),
(-4, 5),
(-5, 6),
Raise_Pen,
(-1, 1),
(-3, 0),
(-5, -2),
(-6, -5),
(-6, -6),
(-5, -9),
(-3, -11),
(-1, -12),
Raise_Pen,
(1, -12),
(3, -11),
(5, -9),
(6, -6),
(6, 0),
(5, 4),
(4, 6),
(2, 8),
(0, 9)));
Glyph_26 : aliased constant Glyph :=
(Number_Of_Vectors => 12,
Width => 10,
Height => 14,
Y_Offset => -5,
X_Offset => -5,
Vects => (Raise_Pen,
(0, -5),
(-1, -4),
(0, -3),
(1, -4),
(0, -5),
Raise_Pen,
(0, 7),
(-1, 8),
(0, 9),
(1, 8),
(0, 7)));
Glyph_27 : aliased constant Glyph :=
(Number_Of_Vectors => 14,
Width => 10,
Height => 18,
Y_Offset => -5,
X_Offset => -5,
Vects => (Raise_Pen,
(0, -5),
(-1, -4),
(0, -3),
(1, -4),
(0, -5),
Raise_Pen,
(0, 9),
(-1, 8),
(0, 7),
(1, 8),
(1, 10),
(0, 12),
(-1, 13)));
Glyph_28 : aliased constant Glyph :=
(Number_Of_Vectors => 4,
Width => 24,
Height => 18,
Y_Offset => -9,
X_Offset => -12,
Vects => (Raise_Pen,
(8, -9),
(-8, 0),
(8, 9)));
Glyph_29 : aliased constant Glyph :=
(Number_Of_Vectors => 6,
Width => 26,
Height => 6,
Y_Offset => -3,
X_Offset => -13,
Vects => (Raise_Pen,
(-9, -3),
(9, -3),
Raise_Pen,
(-9, 3),
(9, 3)));
Glyph_30 : aliased constant Glyph :=
(Number_Of_Vectors => 4,
Width => 24,
Height => 18,
Y_Offset => -9,
X_Offset => -12,
Vects => (Raise_Pen,
(-8, -9),
(8, 0),
(-8, 9)));
Glyph_31 : aliased constant Glyph :=
(Number_Of_Vectors => 32,
Width => 18,
Height => 21,
Y_Offset => -12,
X_Offset => -9,
Vects => (Raise_Pen,
(-5, -8),
(-4, -7),
(-5, -6),
(-6, -7),
(-6, -8),
(-5, -10),
(-4, -11),
(-2, -12),
(1, -12),
(4, -11),
(5, -10),
(6, -8),
(6, -6),
(5, -4),
(4, -3),
(0, -1),
(0, 2),
Raise_Pen,
(1, -12),
(3, -11),
(4, -10),
(5, -8),
(5, -6),
(4, -4),
(2, -2),
Raise_Pen,
(0, 7),
(-1, 8),
(0, 9),
(1, 8),
(0, 7)));
Glyph_32 : aliased constant Glyph :=
(Number_Of_Vectors => 56,
Width => 27,
Height => 21,
Y_Offset => -12,
X_Offset => -13,
Vects => (Raise_Pen,
(5, -4),
(4, -6),
(2, -7),
(-1, -7),
(-3, -6),
(-4, -5),
(-5, -2),
(-5, 1),
(-4, 3),
(-2, 4),
(1, 4),
(3, 3),
(4, 1),
Raise_Pen,
(-1, -7),
(-3, -5),
(-4, -2),
(-4, 1),
(-3, 3),
(-2, 4),
Raise_Pen,
(5, -7),
(4, 1),
(4, 3),
(6, 4),
(8, 4),
(10, 2),
(11, -1),
(11, -3),
(10, -6),
(9, -8),
(7, -10),
(5, -11),
(2, -12),
(-1, -12),
(-4, -11),
(-6, -10),
(-8, -8),
(-9, -6),
(-10, -3),
(-10, 0),
(-9, 3),
(-8, 5),
(-6, 7),
(-4, 8),
(-1, 9),
(2, 9),
(5, 8),
(7, 7),
(8, 6),
Raise_Pen,
(6, -7),
(5, 1),
(5, 3),
(6, 4)));
Glyph_33 : aliased constant Glyph :=
(Number_Of_Vectors => 18,
Width => 20,
Height => 21,
Y_Offset => -12,
X_Offset => -10,
Vects => (Raise_Pen,
(0, -12),
(-7, 9),
Raise_Pen,
(0, -12),
(7, 9),
Raise_Pen,
(0, -9),
(6, 9),
Raise_Pen,
(-5, 3),
(4, 3),
Raise_Pen,
(-9, 9),
(-3, 9),
Raise_Pen,
(3, 9),
(9, 9)));
Glyph_34 : aliased constant Glyph :=
(Number_Of_Vectors => 31,
Width => 22,
Height => 21,
Y_Offset => -12,
X_Offset => -11,
Vects => (Raise_Pen,
(-6, -12),
(-6, 9),
Raise_Pen,
(-5, -12),
(-5, 9),
Raise_Pen,
(-9, -12),
(7, -12),
(7, -6),
(6, -12),
Raise_Pen,
(-5, -2),
(3, -2),
(6, -1),
(7, 0),
(8, 2),
(8, 5),
(7, 7),
(6, 8),
(3, 9),
(-9, 9),
Raise_Pen,
(3, -2),
(5, -1),
(6, 0),
(7, 2),
(7, 5),
(6, 7),
(5, 8),
(3, 9)));
Glyph_35 : aliased constant Glyph :=
(Number_Of_Vectors => 45,
Width => 22,
Height => 21,
Y_Offset => -12,
X_Offset => -11,
Vects => (Raise_Pen,
(-6, -12),
(-6, 9),
Raise_Pen,
(-5, -12),
(-5, 9),
Raise_Pen,
(-9, -12),
(3, -12),
(6, -11),
(7, -10),
(8, -8),
(8, -6),
(7, -4),
(6, -3),
(3, -2),
Raise_Pen,
(3, -12),
(5, -11),
(6, -10),
(7, -8),
(7, -6),
(6, -4),
(5, -3),
(3, -2),
Raise_Pen,
(-5, -2),
(3, -2),
(6, -1),
(7, 0),
(8, 2),
(8, 5),
(7, 7),
(6, 8),
(3, 9),
(-9, 9),
Raise_Pen,
(3, -2),
(5, -1),
(6, 0),
(7, 2),
(7, 5),
(6, 7),
(5, 8),
(3, 9)));
Glyph_36 : aliased constant Glyph :=
(Number_Of_Vectors => 14,
Width => 18,
Height => 21,
Y_Offset => -12,
X_Offset => -9,
Vects => (Raise_Pen,
(-4, -12),
(-4, 9),
Raise_Pen,
(-3, -12),
(-3, 9),
Raise_Pen,
(-7, -12),
(8, -12),
(8, -6),
(7, -12),
Raise_Pen,
(-7, 9),
(0, 9)));
Glyph_37 : aliased constant Glyph :=
(Number_Of_Vectors => 31,
Width => 24,
Height => 28,
Y_Offset => -12,
X_Offset => -12,
Vects => (Raise_Pen,
(-4, -12),
(-4, -6),
(-5, 2),
(-6, 6),
(-7, 8),
(-8, 9),
Raise_Pen,
(6, -12),
(6, 9),
Raise_Pen,
(7, -12),
(7, 9),
Raise_Pen,
(-7, -12),
(10, -12),
Raise_Pen,
(-11, 9),
(10, 9),
Raise_Pen,
(-11, 9),
(-11, 16),
Raise_Pen,
(-10, 9),
(-11, 16),
Raise_Pen,
(9, 9),
(10, 16),
Raise_Pen,
(10, 9),
(10, 16)));
Glyph_38 : aliased constant Glyph :=
(Number_Of_Vectors => 22,
Width => 21,
Height => 21,
Y_Offset => -12,
X_Offset => -11,
Vects => (Raise_Pen,
(-6, -12),
(-6, 9),
Raise_Pen,
(-5, -12),
(-5, 9),
Raise_Pen,
(1, -6),
(1, 2),
Raise_Pen,
(-9, -12),
(7, -12),
(7, -6),
(6, -12),
Raise_Pen,
(-5, -2),
(1, -2),
Raise_Pen,
(-9, 9),
(7, 9),
(7, 3),
(6, 9)));
Glyph_39 : aliased constant Glyph :=
(Number_Of_Vectors => 71,
Width => 31,
Height => 21,
Y_Offset => -12,
X_Offset => -15,
Vects => (Raise_Pen,
(0, -12),
(0, 9),
Raise_Pen,
(1, -12),
(1, 9),
Raise_Pen,
(-3, -12),
(4, -12),
Raise_Pen,
(-11, -11),
(-10, -10),
(-11, -9),
(-12, -10),
(-12, -11),
(-11, -12),
(-10, -12),
(-9, -11),
(-8, -9),
(-7, -5),
(-6, -3),
(-4, -2),
(5, -2),
(7, -3),
(8, -5),
(9, -9),
(10, -11),
(11, -12),
(12, -12),
(13, -11),
(13, -10),
(12, -9),
(11, -10),
(12, -11),
Raise_Pen,
(-4, -2),
(-6, -1),
(-7, 1),
(-8, 6),
(-9, 8),
(-10, 9),
Raise_Pen,
(-4, -2),
(-5, -1),
(-6, 1),
(-7, 6),
(-8, 8),
(-9, 9),
(-11, 9),
(-12, 8),
(-13, 6),
Raise_Pen,
(5, -2),
(7, -1),
(8, 1),
(9, 6),
(10, 8),
(11, 9),
Raise_Pen,
(5, -2),
(6, -1),
(7, 1),
(8, 6),
(9, 8),
(10, 9),
(12, 9),
(13, 8),
(14, 6),
Raise_Pen,
(-3, 9),
(4, 9)));
Glyph_40 : aliased constant Glyph :=
(Number_Of_Vectors => 45,
Width => 20,
Height => 21,
Y_Offset => -12,
X_Offset => -10,
Vects => (Raise_Pen,
(-6, -9),
(-7, -12),
(-7, -6),
(-6, -9),
(-4, -11),
(-2, -12),
(2, -12),
(5, -11),
(6, -9),
(6, -6),
(5, -4),
(2, -3),
(-1, -3),
Raise_Pen,
(2, -12),
(4, -11),
(5, -9),
(5, -6),
(4, -4),
(2, -3),
Raise_Pen,
(2, -3),
(4, -2),
(6, 0),
(7, 2),
(7, 5),
(6, 7),
(5, 8),
(2, 9),
(-3, 9),
(-5, 8),
(-6, 7),
(-7, 5),
(-7, 4),
(-6, 3),
(-5, 4),
(-6, 5),
Raise_Pen,
(5, -1),
(6, 2),
(6, 5),
(5, 7),
(4, 8),
(2, 9)));
Glyph_41 : aliased constant Glyph :=
(Number_Of_Vectors => 27,
Width => 24,
Height => 21,
Y_Offset => -12,
X_Offset => -12,
Vects => (Raise_Pen,
(-7, -12),
(-7, 9),
Raise_Pen,
(-6, -12),
(-6, 9),
Raise_Pen,
(6, -12),
(6, 9),
Raise_Pen,
(7, -12),
(7, 9),
Raise_Pen,
(-10, -12),
(-3, -12),
Raise_Pen,
(3, -12),
(10, -12),
Raise_Pen,
(6, -10),
(-6, 7),
Raise_Pen,
(-10, 9),
(-3, 9),
Raise_Pen,
(3, 9),
(10, 9)));
Glyph_42 : aliased constant Glyph :=
(Number_Of_Vectors => 37,
Width => 24,
Height => 28,
Y_Offset => -19,
X_Offset => -12,
Vects => (Raise_Pen,
(-7, -12),
(-7, 9),
Raise_Pen,
(-6, -12),
(-6, 9),
Raise_Pen,
(6, -12),
(6, 9),
Raise_Pen,
(7, -12),
(7, 9),
Raise_Pen,
(-10, -12),
(-3, -12),
Raise_Pen,
(3, -12),
(10, -12),
Raise_Pen,
(6, -10),
(-6, 7),
Raise_Pen,
(-10, 9),
(-3, 9),
Raise_Pen,
(3, 9),
(10, 9),
Raise_Pen,
(-4, -18),
(-4, -19),
(-5, -19),
(-5, -18),
(-4, -16),
(-2, -15),
(2, -15),
(4, -16),
(5, -18)));
Glyph_43 : aliased constant Glyph :=
(Number_Of_Vectors => 43,
Width => 24,
Height => 21,
Y_Offset => -12,
X_Offset => -12,
Vects => (Raise_Pen,
(-7, -12),
(-7, 9),
Raise_Pen,
(-6, -12),
(-6, 9),
Raise_Pen,
(-10, -12),
(-3, -12),
Raise_Pen,
(-6, -2),
(1, -2),
(3, -3),
(4, -5),
(5, -9),
(6, -11),
(7, -12),
(8, -12),
(9, -11),
(9, -10),
(8, -9),
(7, -10),
(8, -11),
Raise_Pen,
(1, -2),
(3, -1),
(4, 1),
(5, 6),
(6, 8),
(7, 9),
Raise_Pen,
(1, -2),
(2, -1),
(3, 1),
(4, 6),
(5, 8),
(6, 9),
(8, 9),
(9, 8),
(10, 6),
Raise_Pen,
(-10, 9),
(-3, 9)));
Glyph_44 : aliased constant Glyph :=
(Number_Of_Vectors => 25,
Width => 25,
Height => 21,
Y_Offset => -12,
X_Offset => -13,
Vects => (Raise_Pen,
(-5, -12),
(-5, -6),
(-6, 2),
(-7, 6),
(-8, 8),
(-9, 9),
(-10, 9),
(-11, 8),
(-11, 7),
(-10, 6),
(-9, 7),
(-10, 8),
Raise_Pen,
(6, -12),
(6, 9),
Raise_Pen,
(7, -12),
(7, 9),
Raise_Pen,
(-8, -12),
(10, -12),
Raise_Pen,
(3, 9),
(10, 9)));
Glyph_45 : aliased constant Glyph :=
(Number_Of_Vectors => 30,
Width => 25,
Height => 21,
Y_Offset => -12,
X_Offset => -12,
Vects => (Raise_Pen,
(-7, -12),
(-7, 9),
Raise_Pen,
(-6, -12),
(0, 6),
Raise_Pen,
(-7, -12),
(0, 9),
Raise_Pen,
(7, -12),
(0, 9),
Raise_Pen,
(7, -12),
(7, 9),
Raise_Pen,
(8, -12),
(8, 9),
Raise_Pen,
(-10, -12),
(-6, -12),
Raise_Pen,
(7, -12),
(11, -12),
Raise_Pen,
(-10, 9),
(-4, 9),
Raise_Pen,
(4, 9),
(11, 9)));
Glyph_46 : aliased constant Glyph :=
(Number_Of_Vectors => 27,
Width => 24,
Height => 21,
Y_Offset => -12,
X_Offset => -12,
Vects => (Raise_Pen,
(-7, -12),
(-7, 9),
Raise_Pen,
(-6, -12),
(-6, 9),
Raise_Pen,
(6, -12),
(6, 9),
Raise_Pen,
(7, -12),
(7, 9),
Raise_Pen,
(-10, -12),
(-3, -12),
Raise_Pen,
(3, -12),
(10, -12),
Raise_Pen,
(-6, -2),
(6, -2),
Raise_Pen,
(-10, 9),
(-3, 9),
Raise_Pen,
(3, 9),
(10, 9)));
Glyph_47 : aliased constant Glyph :=
(Number_Of_Vectors => 44,
Width => 22,
Height => 21,
Y_Offset => -12,
X_Offset => -11,
Vects => (Raise_Pen,
(-1, -12),
(-4, -11),
(-6, -9),
(-7, -7),
(-8, -3),
(-8, 0),
(-7, 4),
(-6, 6),
(-4, 8),
(-1, 9),
(1, 9),
(4, 8),
(6, 6),
(7, 4),
(8, 0),
(8, -3),
(7, -7),
(6, -9),
(4, -11),
(1, -12),
(-1, -12),
Raise_Pen,
(-1, -12),
(-3, -11),
(-5, -9),
(-6, -7),
(-7, -3),
(-7, 0),
(-6, 4),
(-5, 6),
(-3, 8),
(-1, 9),
Raise_Pen,
(1, 9),
(3, 8),
(5, 6),
(6, 4),
(7, 0),
(7, -3),
(6, -7),
(5, -9),
(3, -11),
(1, -12)));
Glyph_48 : aliased constant Glyph :=
(Number_Of_Vectors => 21,
Width => 24,
Height => 21,
Y_Offset => -12,
X_Offset => -12,
Vects => (Raise_Pen,
(-7, -12),
(-7, 9),
Raise_Pen,
(-6, -12),
(-6, 9),
Raise_Pen,
(6, -12),
(6, 9),
Raise_Pen,
(7, -12),
(7, 9),
Raise_Pen,
(-10, -12),
(10, -12),
Raise_Pen,
(-10, 9),
(-3, 9),
Raise_Pen,
(3, 9),
(10, 9)));
Glyph_49 : aliased constant Glyph :=
(Number_Of_Vectors => 29,
Width => 22,
Height => 21,
Y_Offset => -12,
X_Offset => -11,
Vects => (Raise_Pen,
(-6, -12),
(-6, 9),
Raise_Pen,
(-5, -12),
(-5, 9),
Raise_Pen,
(-9, -12),
(3, -12),
(6, -11),
(7, -10),
(8, -8),
(8, -5),
(7, -3),
(6, -2),
(3, -1),
(-5, -1),
Raise_Pen,
(3, -12),
(5, -11),
(6, -10),
(7, -8),
(7, -5),
(6, -3),
(5, -2),
(3, -1),
Raise_Pen,
(-9, 9),
(-2, 9)));
Glyph_50 : aliased constant Glyph :=
(Number_Of_Vectors => 32,
Width => 21,
Height => 21,
Y_Offset => -12,
X_Offset => -11,
Vects => (Raise_Pen,
(6, -9),
(7, -6),
(7, -12),
(6, -9),
(4, -11),
(1, -12),
(-1, -12),
(-4, -11),
(-6, -9),
(-7, -7),
(-8, -4),
(-8, 1),
(-7, 4),
(-6, 6),
(-4, 8),
(-1, 9),
(1, 9),
(4, 8),
(6, 6),
(7, 4),
Raise_Pen,
(-1, -12),
(-3, -11),
(-5, -9),
(-6, -7),
(-7, -4),
(-7, 1),
(-6, 4),
(-5, 6),
(-3, 8),
(-1, 9)));
Glyph_51 : aliased constant Glyph :=
(Number_Of_Vectors => 16,
Width => 19,
Height => 21,
Y_Offset => -12,
X_Offset => -9,
Vects => (Raise_Pen,
(0, -12),
(0, 9),
Raise_Pen,
(1, -12),
(1, 9),
Raise_Pen,
(-6, -12),
(-7, -6),
(-7, -12),
(8, -12),
(8, -6),
(7, -12),
Raise_Pen,
(-3, 9),
(4, 9)));
Glyph_52 : aliased constant Glyph :=
(Number_Of_Vectors => 24,
Width => 21,
Height => 21,
Y_Offset => -12,
X_Offset => -10,
Vects => (Raise_Pen,
(-7, -12),
(0, 4),
Raise_Pen,
(-6, -12),
(1, 4),
Raise_Pen,
(8, -12),
(1, 4),
(-1, 7),
(-2, 8),
(-4, 9),
(-5, 9),
(-6, 8),
(-6, 7),
(-5, 6),
(-4, 7),
(-5, 8),
Raise_Pen,
(-9, -12),
(-3, -12),
Raise_Pen,
(4, -12),
(10, -12)));
Glyph_53 : aliased constant Glyph :=
(Number_Of_Vectors => 48,
Width => 25,
Height => 21,
Y_Offset => -12,
X_Offset => -12,
Vects => (Raise_Pen,
(0, -12),
(0, 9),
Raise_Pen,
(1, -12),
(1, 9),
Raise_Pen,
(-3, -12),
(4, -12),
Raise_Pen,
(-2, -9),
(-6, -8),
(-8, -6),
(-9, -3),
(-9, 0),
(-8, 3),
(-6, 5),
(-2, 6),
(3, 6),
(7, 5),
(9, 3),
(10, 0),
(10, -3),
(9, -6),
(7, -8),
(3, -9),
(-2, -9),
Raise_Pen,
(-2, -9),
(-5, -8),
(-7, -6),
(-8, -3),
(-8, 0),
(-7, 3),
(-5, 5),
(-2, 6),
Raise_Pen,
(3, 6),
(6, 5),
(8, 3),
(9, 0),
(9, -3),
(8, -6),
(6, -8),
(3, -9),
Raise_Pen,
(-3, 9),
(4, 9)));
Glyph_54 : aliased constant Glyph :=
(Number_Of_Vectors => 21,
Width => 20,
Height => 21,
Y_Offset => -12,
X_Offset => -10,
Vects => (Raise_Pen,
(-7, -12),
(6, 9),
Raise_Pen,
(-6, -12),
(7, 9),
Raise_Pen,
(7, -12),
(-7, 9),
Raise_Pen,
(-9, -12),
(-3, -12),
Raise_Pen,
(3, -12),
(9, -12),
Raise_Pen,
(-9, 9),
(-3, 9),
Raise_Pen,
(3, 9),
(9, 9)));
Glyph_55 : aliased constant Glyph :=
(Number_Of_Vectors => 27,
Width => 24,
Height => 28,
Y_Offset => -12,
X_Offset => -12,
Vects => (Raise_Pen,
(-7, -12),
(-7, 9),
Raise_Pen,
(-6, -12),
(-6, 9),
Raise_Pen,
(6, -12),
(6, 9),
Raise_Pen,
(7, -12),
(7, 9),
Raise_Pen,
(-10, -12),
(-3, -12),
Raise_Pen,
(3, -12),
(10, -12),
Raise_Pen,
(-10, 9),
(10, 9),
Raise_Pen,
(9, 9),
(10, 16),
Raise_Pen,
(10, 9),
(10, 16)));
Glyph_56 : aliased constant Glyph :=
(Number_Of_Vectors => 28,
Width => 23,
Height => 21,
Y_Offset => -12,
X_Offset => -12,
Vects => (Raise_Pen,
(-7, -12),
(-7, -1),
(-6, 1),
(-3, 2),
(0, 2),
(3, 1),
(5, -1),
Raise_Pen,
(-6, -12),
(-6, -1),
(-5, 1),
(-3, 2),
Raise_Pen,
(5, -12),
(5, 9),
Raise_Pen,
(6, -12),
(6, 9),
Raise_Pen,
(-10, -12),
(-3, -12),
Raise_Pen,
(2, -12),
(9, -12),
Raise_Pen,
(2, 9),
(9, 9)));
Glyph_57 : aliased constant Glyph :=
(Number_Of_Vectors => 30,
Width => 33,
Height => 21,
Y_Offset => -12,
X_Offset => -16,
Vects => (Raise_Pen,
(-11, -12),
(-11, 9),
Raise_Pen,
(-10, -12),
(-10, 9),
Raise_Pen,
(0, -12),
(0, 9),
Raise_Pen,
(1, -12),
(1, 9),
Raise_Pen,
(11, -12),
(11, 9),
Raise_Pen,
(12, -12),
(12, 9),
Raise_Pen,
(-14, -12),
(-7, -12),
Raise_Pen,
(-3, -12),
(4, -12),
Raise_Pen,
(8, -12),
(15, -12),
Raise_Pen,
(-14, 9),
(15, 9)));
Glyph_58 : aliased constant Glyph :=
(Number_Of_Vectors => 36,
Width => 33,
Height => 28,
Y_Offset => -12,
X_Offset => -16,
Vects => (Raise_Pen,
(-11, -12),
(-11, 9),
Raise_Pen,
(-10, -12),
(-10, 9),
Raise_Pen,
(0, -12),
(0, 9),
Raise_Pen,
(1, -12),
(1, 9),
Raise_Pen,
(11, -12),
(11, 9),
Raise_Pen,
(12, -12),
(12, 9),
Raise_Pen,
(-14, -12),
(-7, -12),
Raise_Pen,
(-3, -12),
(4, -12),
Raise_Pen,
(8, -12),
(15, -12),
Raise_Pen,
(-14, 9),
(15, 9),
Raise_Pen,
(14, 9),
(15, 16),
Raise_Pen,
(15, 9),
(15, 16)));
Glyph_59 : aliased constant Glyph :=
(Number_Of_Vectors => 12,
Width => 14,
Height => 32,
Y_Offset => -16,
X_Offset => -7,
Vects => (Raise_Pen,
(-3, -16),
(-3, 16),
Raise_Pen,
(-2, -16),
(-2, 16),
Raise_Pen,
(-3, -16),
(4, -16),
Raise_Pen,
(-3, 16),
(4, 16)));
Glyph_60 : aliased constant Glyph :=
(Number_Of_Vectors => 3,
Width => 14,
Height => 24,
Y_Offset => -12,
X_Offset => -7,
Vects => (Raise_Pen,
(-7, -12),
(7, 12)));
Glyph_61 : aliased constant Glyph :=
(Number_Of_Vectors => 12,
Width => 14,
Height => 32,
Y_Offset => -16,
X_Offset => -7,
Vects => (Raise_Pen,
(2, -16),
(2, 16),
Raise_Pen,
(3, -16),
(3, 16),
Raise_Pen,
(-4, -16),
(3, -16),
Raise_Pen,
(-4, 16),
(3, 16)));
Glyph_62 : aliased constant Glyph :=
(Number_Of_Vectors => 11,
Width => 16,
Height => 18,
Y_Offset => -9,
X_Offset => -8,
Vects => (Raise_Pen,
(-2, -6),
(0, -9),
(2, -6),
Raise_Pen,
(-5, -3),
(0, -8),
(5, -3),
Raise_Pen,
(0, -8),
(0, 9)));
Glyph_63 : aliased constant Glyph :=
(Number_Of_Vectors => 3,
Width => 16,
Height => 0,
Y_Offset => 11,
X_Offset => -8,
Vects => (Raise_Pen,
(-8, 11),
(8, 11)));
Glyph_64 : aliased constant Glyph :=
(Number_Of_Vectors => 8,
Width => 10,
Height => 6,
Y_Offset => -12,
X_Offset => -5,
Vects => (Raise_Pen,
(1, -12),
(0, -11),
(-1, -9),
(-1, -7),
(0, -6),
(1, -7),
(0, -8)));
Glyph_65 : aliased constant Glyph :=
(Number_Of_Vectors => 39,
Width => 20,
Height => 14,
Y_Offset => -5,
X_Offset => -9,
Vects => (Raise_Pen,
(-4, -3),
(-4, -2),
(-5, -2),
(-5, -3),
(-4, -4),
(-2, -5),
(2, -5),
(4, -4),
(5, -3),
(6, -1),
(6, 6),
(7, 8),
(8, 9),
Raise_Pen,
(5, -3),
(5, 6),
(6, 8),
(8, 9),
(9, 9),
Raise_Pen,
(5, -1),
(4, 0),
(-2, 1),
(-5, 2),
(-6, 4),
(-6, 6),
(-5, 8),
(-2, 9),
(1, 9),
(3, 8),
(5, 6),
Raise_Pen,
(-2, 1),
(-4, 2),
(-5, 4),
(-5, 6),
(-4, 8),
(-2, 9)));
Glyph_66 : aliased constant Glyph :=
(Number_Of_Vectors => 48,
Width => 20,
Height => 21,
Y_Offset => -12,
X_Offset => -10,
Vects => (Raise_Pen,
(6, -12),
(5, -11),
(-1, -9),
(-4, -7),
(-6, -4),
(-7, -1),
(-7, 3),
(-6, 6),
(-4, 8),
(-1, 9),
(1, 9),
(4, 8),
(6, 6),
(7, 3),
(7, 1),
(6, -2),
(4, -4),
(1, -5),
(-1, -5),
(-4, -4),
(-6, -2),
(-7, 1),
Raise_Pen,
(6, -12),
(5, -10),
(3, -9),
(-1, -8),
(-4, -6),
(-6, -4),
Raise_Pen,
(-1, -5),
(-3, -4),
(-5, -2),
(-6, 1),
(-6, 3),
(-5, 6),
(-3, 8),
(-1, 9),
Raise_Pen,
(1, 9),
(3, 8),
(5, 6),
(6, 3),
(6, 1),
(5, -2),
(3, -4),
(1, -5)));
Glyph_67 : aliased constant Glyph :=
(Number_Of_Vectors => 37,
Width => 20,
Height => 14,
Y_Offset => -5,
X_Offset => -10,
Vects => (Raise_Pen,
(-5, -5),
(-5, 9),
Raise_Pen,
(-4, -5),
(-4, 9),
Raise_Pen,
(-8, -5),
(3, -5),
(6, -4),
(7, -2),
(7, -1),
(6, 1),
(3, 2),
Raise_Pen,
(3, -5),
(5, -4),
(6, -2),
(6, -1),
(5, 1),
(3, 2),
Raise_Pen,
(-4, 2),
(3, 2),
(6, 3),
(7, 5),
(7, 6),
(6, 8),
(3, 9),
(-8, 9),
Raise_Pen,
(3, 2),
(5, 3),
(6, 5),
(6, 6),
(5, 8),
(3, 9)));
Glyph_68 : aliased constant Glyph :=
(Number_Of_Vectors => 14,
Width => 18,
Height => 14,
Y_Offset => -5,
X_Offset => -10,
Vects => (Raise_Pen,
(-5, -5),
(-5, 9),
Raise_Pen,
(-4, -5),
(-4, 9),
Raise_Pen,
(-8, -5),
(6, -5),
(6, 0),
(5, -5),
Raise_Pen,
(-8, 9),
(-1, 9)));
Glyph_69 : aliased constant Glyph :=
(Number_Of_Vectors => 22,
Width => 23,
Height => 19,
Y_Offset => -5,
X_Offset => -12,
Vects => (Raise_Pen,
(-4, -5),
(-4, -1),
(-5, 5),
(-6, 8),
(-7, 9),
Raise_Pen,
(5, -5),
(5, 9),
Raise_Pen,
(6, -5),
(6, 9),
Raise_Pen,
(-7, -5),
(9, -5),
Raise_Pen,
(-9, 9),
(-10, 14),
(-10, 9),
(9, 9),
(9, 14),
(8, 9)));
Glyph_70 : aliased constant Glyph :=
(Number_Of_Vectors => 31,
Width => 19,
Height => 14,
Y_Offset => -5,
X_Offset => -10,
Vects => (Raise_Pen,
(-6, 1),
(6, 1),
(6, -1),
(5, -3),
(4, -4),
(2, -5),
(-1, -5),
(-4, -4),
(-6, -2),
(-7, 1),
(-7, 3),
(-6, 6),
(-4, 8),
(-1, 9),
(1, 9),
(4, 8),
(6, 6),
Raise_Pen,
(5, 1),
(5, -2),
(4, -4),
Raise_Pen,
(-1, -5),
(-3, -4),
(-5, -2),
(-6, 1),
(-6, 3),
(-5, 6),
(-3, 8),
(-1, 9)));
Glyph_71 : aliased constant Glyph :=
(Number_Of_Vectors => 59,
Width => 27,
Height => 14,
Y_Offset => -5,
X_Offset => -13,
Vects => (Raise_Pen,
(0, -5),
(0, 9),
Raise_Pen,
(1, -5),
(1, 9),
Raise_Pen,
(-3, -5),
(4, -5),
Raise_Pen,
(-8, -4),
(-9, -3),
(-10, -4),
(-9, -5),
(-8, -5),
(-7, -4),
(-5, 0),
(-4, 1),
(-2, 2),
(3, 2),
(5, 1),
(6, 0),
(8, -4),
(9, -5),
(10, -5),
(11, -4),
(10, -3),
(9, -4),
Raise_Pen,
(-2, 2),
(-4, 3),
(-5, 4),
(-7, 8),
(-8, 9),
Raise_Pen,
(-2, 2),
(-4, 4),
(-6, 8),
(-7, 9),
(-9, 9),
(-10, 8),
(-11, 6),
Raise_Pen,
(3, 2),
(5, 3),
(6, 4),
(8, 8),
(9, 9),
Raise_Pen,
(3, 2),
(5, 4),
(7, 8),
(8, 9),
(10, 9),
(11, 8),
(12, 6),
Raise_Pen,
(-3, 9),
(4, 9)));
Glyph_72 : aliased constant Glyph :=
(Number_Of_Vectors => 42,
Width => 18,
Height => 14,
Y_Offset => -5,
X_Offset => -9,
Vects => (Raise_Pen,
(-5, -3),
(-6, -5),
(-6, -1),
(-5, -3),
(-4, -4),
(-2, -5),
(2, -5),
(5, -4),
(6, -2),
(6, -1),
(5, 1),
(2, 2),
Raise_Pen,
(2, -5),
(4, -4),
(5, -2),
(5, -1),
(4, 1),
(2, 2),
Raise_Pen,
(-1, 2),
(2, 2),
(5, 3),
(6, 5),
(6, 6),
(5, 8),
(2, 9),
(-2, 9),
(-5, 8),
(-6, 6),
(-6, 5),
(-5, 4),
(-4, 5),
(-5, 6),
Raise_Pen,
(2, 2),
(4, 3),
(5, 5),
(5, 6),
(4, 8),
(2, 9)));
Glyph_73 : aliased constant Glyph :=
(Number_Of_Vectors => 27,
Width => 22,
Height => 14,
Y_Offset => -5,
X_Offset => -11,
Vects => (Raise_Pen,
(-6, -5),
(-6, 9),
Raise_Pen,
(-5, -5),
(-5, 9),
Raise_Pen,
(5, -5),
(5, 9),
Raise_Pen,
(6, -5),
(6, 9),
Raise_Pen,
(-9, -5),
(-2, -5),
Raise_Pen,
(2, -5),
(9, -5),
Raise_Pen,
(-9, 9),
(-2, 9),
Raise_Pen,
(2, 9),
(9, 9),
Raise_Pen,
(5, -4),
(-5, 8)));
Glyph_74 : aliased constant Glyph :=
(Number_Of_Vectors => 37,
Width => 22,
Height => 21,
Y_Offset => -12,
X_Offset => -11,
Vects => (Raise_Pen,
(-6, -5),
(-6, 9),
Raise_Pen,
(-5, -5),
(-5, 9),
Raise_Pen,
(5, -5),
(5, 9),
Raise_Pen,
(6, -5),
(6, 9),
Raise_Pen,
(-9, -5),
(-2, -5),
Raise_Pen,
(2, -5),
(9, -5),
Raise_Pen,
(-9, 9),
(-2, 9),
Raise_Pen,
(2, 9),
(9, 9),
Raise_Pen,
(5, -4),
(-5, 8),
Raise_Pen,
(-3, -11),
(-3, -12),
(-4, -12),
(-4, -11),
(-3, -9),
(-1, -8),
(1, -8),
(3, -9),
(4, -11)));
Glyph_75 : aliased constant Glyph :=
(Number_Of_Vectors => 38,
Width => 20,
Height => 14,
Y_Offset => -5,
X_Offset => -10,
Vects => (Raise_Pen,
(-5, -5),
(-5, 9),
Raise_Pen,
(-4, -5),
(-4, 9),
Raise_Pen,
(-8, -5),
(-1, -5),
Raise_Pen,
(-4, 2),
(-2, 2),
(1, 1),
(2, 0),
(4, -4),
(5, -5),
(6, -5),
(7, -4),
(6, -3),
(5, -4),
Raise_Pen,
(-2, 2),
(1, 3),
(2, 4),
(4, 8),
(5, 9),
Raise_Pen,
(-2, 2),
(0, 3),
(1, 4),
(3, 8),
(4, 9),
(6, 9),
(7, 8),
(8, 6),
Raise_Pen,
(-8, 9),
(-1, 9)));
Glyph_76 : aliased constant Glyph :=
(Number_Of_Vectors => 22,
Width => 22,
Height => 14,
Y_Offset => -5,
X_Offset => -11,
Vects => (Raise_Pen,
(-4, -5),
(-4, -1),
(-5, 5),
(-6, 8),
(-7, 9),
(-8, 9),
(-9, 8),
(-8, 7),
(-7, 8),
Raise_Pen,
(5, -5),
(5, 9),
Raise_Pen,
(6, -5),
(6, 9),
Raise_Pen,
(-7, -5),
(9, -5),
Raise_Pen,
(2, 9),
(9, 9)));
Glyph_77 : aliased constant Glyph :=
(Number_Of_Vectors => 30,
Width => 23,
Height => 14,
Y_Offset => -5,
X_Offset => -11,
Vects => (Raise_Pen,
(-6, -5),
(-6, 9),
Raise_Pen,
(-6, -5),
(0, 9),
Raise_Pen,
(-5, -5),
(0, 7),
Raise_Pen,
(6, -5),
(0, 9),
Raise_Pen,
(6, -5),
(6, 9),
Raise_Pen,
(7, -5),
(7, 9),
Raise_Pen,
(-9, -5),
(-5, -5),
Raise_Pen,
(6, -5),
(10, -5),
Raise_Pen,
(-9, 9),
(-3, 9),
Raise_Pen,
(3, 9),
(10, 9)));
Glyph_78 : aliased constant Glyph :=
(Number_Of_Vectors => 27,
Width => 22,
Height => 14,
Y_Offset => -5,
X_Offset => -11,
Vects => (Raise_Pen,
(-6, -5),
(-6, 9),
Raise_Pen,
(-5, -5),
(-5, 9),
Raise_Pen,
(5, -5),
(5, 9),
Raise_Pen,
(6, -5),
(6, 9),
Raise_Pen,
(-9, -5),
(-2, -5),
Raise_Pen,
(2, -5),
(9, -5),
Raise_Pen,
(-5, 2),
(5, 2),
Raise_Pen,
(-9, 9),
(-2, 9),
Raise_Pen,
(2, 9),
(9, 9)));
Glyph_79 : aliased constant Glyph :=
(Number_Of_Vectors => 36,
Width => 20,
Height => 14,
Y_Offset => -5,
X_Offset => -10,
Vects => (Raise_Pen,
(-1, -5),
(-4, -4),
(-6, -2),
(-7, 1),
(-7, 3),
(-6, 6),
(-4, 8),
(-1, 9),
(1, 9),
(4, 8),
(6, 6),
(7, 3),
(7, 1),
(6, -2),
(4, -4),
(1, -5),
(-1, -5),
Raise_Pen,
(-1, -5),
(-3, -4),
(-5, -2),
(-6, 1),
(-6, 3),
(-5, 6),
(-3, 8),
(-1, 9),
Raise_Pen,
(1, 9),
(3, 8),
(5, 6),
(6, 3),
(6, 1),
(5, -2),
(3, -4),
(1, -5)));
Glyph_80 : aliased constant Glyph :=
(Number_Of_Vectors => 21,
Width => 22,
Height => 14,
Y_Offset => -5,
X_Offset => -11,
Vects => (Raise_Pen,
(-6, -5),
(-6, 9),
Raise_Pen,
(-5, -5),
(-5, 9),
Raise_Pen,
(5, -5),
(5, 9),
Raise_Pen,
(6, -5),
(6, 9),
Raise_Pen,
(-9, -5),
(9, -5),
Raise_Pen,
(-9, 9),
(-2, 9),
Raise_Pen,
(2, 9),
(9, 9)));
Glyph_81 : aliased constant Glyph :=
(Number_Of_Vectors => 36,
Width => 21,
Height => 21,
Y_Offset => -5,
X_Offset => -11,
Vects => (Raise_Pen,
(-6, -5),
(-6, 16),
Raise_Pen,
(-5, -5),
(-5, 16),
Raise_Pen,
(-5, -2),
(-3, -4),
(-1, -5),
(1, -5),
(4, -4),
(6, -2),
(7, 1),
(7, 3),
(6, 6),
(4, 8),
(1, 9),
(-1, 9),
(-3, 8),
(-5, 6),
Raise_Pen,
(1, -5),
(3, -4),
(5, -2),
(6, 1),
(6, 3),
(5, 6),
(3, 8),
(1, 9),
Raise_Pen,
(-9, -5),
(-5, -5),
Raise_Pen,
(-9, 16),
(-2, 16)));
Glyph_82 : aliased constant Glyph :=
(Number_Of_Vectors => 28,
Width => 19,
Height => 14,
Y_Offset => -5,
X_Offset => -10,
Vects => (Raise_Pen,
(5, -2),
(4, -1),
(5, 0),
(6, -1),
(6, -2),
(4, -4),
(2, -5),
(-1, -5),
(-4, -4),
(-6, -2),
(-7, 1),
(-7, 3),
(-6, 6),
(-4, 8),
(-1, 9),
(1, 9),
(4, 8),
(6, 6),
Raise_Pen,
(-1, -5),
(-3, -4),
(-5, -2),
(-6, 1),
(-6, 3),
(-5, 6),
(-3, 8),
(-1, 9)));
Glyph_83 : aliased constant Glyph :=
(Number_Of_Vectors => 16,
Width => 19,
Height => 14,
Y_Offset => -5,
X_Offset => -9,
Vects => (Raise_Pen,
(0, -5),
(0, 9),
Raise_Pen,
(1, -5),
(1, 9),
Raise_Pen,
(-5, -5),
(-6, 0),
(-6, -5),
(7, -5),
(7, 0),
(6, -5),
Raise_Pen,
(-3, 9),
(4, 9)));
Glyph_84 : aliased constant Glyph :=
(Number_Of_Vectors => 22,
Width => 18,
Height => 21,
Y_Offset => -5,
X_Offset => -9,
Vects => (Raise_Pen,
(-6, -5),
(0, 9),
Raise_Pen,
(-5, -5),
(0, 7),
Raise_Pen,
(6, -5),
(0, 9),
(-2, 13),
(-4, 15),
(-6, 16),
(-7, 16),
(-8, 15),
(-7, 14),
(-6, 15),
Raise_Pen,
(-8, -5),
(-2, -5),
Raise_Pen,
(2, -5),
(8, -5)));
Glyph_85 : aliased constant Glyph :=
(Number_Of_Vectors => 52,
Width => 21,
Height => 28,
Y_Offset => -12,
X_Offset => -10,
Vects => (Raise_Pen,
(0, -12),
(0, 16),
Raise_Pen,
(1, -12),
(1, 16),
Raise_Pen,
(-3, -12),
(1, -12),
Raise_Pen,
(0, -2),
(-1, -4),
(-2, -5),
(-4, -5),
(-6, -4),
(-7, -1),
(-7, 5),
(-6, 8),
(-4, 9),
(-2, 9),
(-1, 8),
(0, 6),
Raise_Pen,
(-4, -5),
(-5, -4),
(-6, -1),
(-6, 5),
(-5, 8),
(-4, 9),
Raise_Pen,
(5, -5),
(6, -4),
(7, -1),
(7, 5),
(6, 8),
(5, 9),
Raise_Pen,
(1, -2),
(2, -4),
(3, -5),
(5, -5),
(7, -4),
(8, -1),
(8, 5),
(7, 8),
(5, 9),
(3, 9),
(2, 8),
(1, 6),
Raise_Pen,
(-3, 16),
(4, 16)));
Glyph_86 : aliased constant Glyph :=
(Number_Of_Vectors => 21,
Width => 20,
Height => 14,
Y_Offset => -5,
X_Offset => -10,
Vects => (Raise_Pen,
(-6, -5),
(5, 9),
Raise_Pen,
(-5, -5),
(6, 9),
Raise_Pen,
(6, -5),
(-6, 9),
Raise_Pen,
(-8, -5),
(-2, -5),
Raise_Pen,
(2, -5),
(8, -5),
Raise_Pen,
(-8, 9),
(-2, 9),
Raise_Pen,
(2, 9),
(8, 9)));
Glyph_87 : aliased constant Glyph :=
(Number_Of_Vectors => 23,
Width => 22,
Height => 19,
Y_Offset => -5,
X_Offset => -11,
Vects => (Raise_Pen,
(-6, -5),
(-6, 9),
Raise_Pen,
(-5, -5),
(-5, 9),
Raise_Pen,
(5, -5),
(5, 9),
Raise_Pen,
(6, -5),
(6, 9),
Raise_Pen,
(-9, -5),
(-2, -5),
Raise_Pen,
(2, -5),
(9, -5),
Raise_Pen,
(-9, 9),
(9, 9),
(9, 14),
(8, 9)));
Glyph_88 : aliased constant Glyph :=
(Number_Of_Vectors => 28,
Width => 22,
Height => 14,
Y_Offset => -5,
X_Offset => -11,
Vects => (Raise_Pen,
(-6, -5),
(-6, 2),
(-5, 4),
(-2, 5),
(0, 5),
(3, 4),
(5, 2),
Raise_Pen,
(-5, -5),
(-5, 2),
(-4, 4),
(-2, 5),
Raise_Pen,
(5, -5),
(5, 9),
Raise_Pen,
(6, -5),
(6, 9),
Raise_Pen,
(-9, -5),
(-2, -5),
Raise_Pen,
(2, -5),
(9, -5),
Raise_Pen,
(2, 9),
(9, 9)));
Glyph_89 : aliased constant Glyph :=
(Number_Of_Vectors => 30,
Width => 31,
Height => 14,
Y_Offset => -5,
X_Offset => -15,
Vects => (Raise_Pen,
(-10, -5),
(-10, 9),
Raise_Pen,
(-9, -5),
(-9, 9),
Raise_Pen,
(0, -5),
(0, 9),
Raise_Pen,
(1, -5),
(1, 9),
Raise_Pen,
(10, -5),
(10, 9),
Raise_Pen,
(11, -5),
(11, 9),
Raise_Pen,
(-13, -5),
(-6, -5),
Raise_Pen,
(-3, -5),
(4, -5),
Raise_Pen,
(7, -5),
(14, -5),
Raise_Pen,
(-13, 9),
(14, 9)));
Glyph_90 : aliased constant Glyph :=
(Number_Of_Vectors => 32,
Width => 31,
Height => 19,
Y_Offset => -5,
X_Offset => -15,
Vects => (Raise_Pen,
(-10, -5),
(-10, 9),
Raise_Pen,
(-9, -5),
(-9, 9),
Raise_Pen,
(0, -5),
(0, 9),
Raise_Pen,
(1, -5),
(1, 9),
Raise_Pen,
(10, -5),
(10, 9),
Raise_Pen,
(11, -5),
(11, 9),
Raise_Pen,
(-13, -5),
(-6, -5),
Raise_Pen,
(-3, -5),
(4, -5),
Raise_Pen,
(7, -5),
(14, -5),
Raise_Pen,
(-13, 9),
(14, 9),
(14, 14),
(13, 9)));
Glyph_91 : aliased constant Glyph :=
(Number_Of_Vectors => 40,
Width => 14,
Height => 32,
Y_Offset => -16,
X_Offset => -7,
Vects => (Raise_Pen,
(2, -16),
(0, -15),
(-1, -14),
(-2, -12),
(-2, -10),
(-1, -8),
(0, -7),
(1, -5),
(1, -3),
(-1, -1),
Raise_Pen,
(0, -15),
(-1, -13),
(-1, -11),
(0, -9),
(1, -8),
(2, -6),
(2, -4),
(1, -2),
(-3, 0),
(1, 2),
(2, 4),
(2, 6),
(1, 8),
(0, 9),
(-1, 11),
(-1, 13),
(0, 15),
Raise_Pen,
(-1, 1),
(1, 3),
(1, 5),
(0, 7),
(-1, 8),
(-2, 10),
(-2, 12),
(-1, 14),
(0, 15),
(2, 16)));
Glyph_92 : aliased constant Glyph :=
(Number_Of_Vectors => 3,
Width => 8,
Height => 32,
Y_Offset => -16,
X_Offset => -4,
Vects => (Raise_Pen,
(0, -16),
(0, 16)));
Glyph_93 : aliased constant Glyph :=
(Number_Of_Vectors => 40,
Width => 14,
Height => 32,
Y_Offset => -16,
X_Offset => -7,
Vects => (Raise_Pen,
(-2, -16),
(0, -15),
(1, -14),
(2, -12),
(2, -10),
(1, -8),
(0, -7),
(-1, -5),
(-1, -3),
(1, -1),
Raise_Pen,
(0, -15),
(1, -13),
(1, -11),
(0, -9),
(-1, -8),
(-2, -6),
(-2, -4),
(-1, -2),
(3, 0),
(-1, 2),
(-2, 4),
(-2, 6),
(-1, 8),
(0, 9),
(1, 11),
(1, 13),
(0, 15),
Raise_Pen,
(1, 1),
(-1, 3),
(-1, 5),
(0, 7),
(1, 8),
(2, 10),
(2, 12),
(1, 14),
(0, 15),
(-2, 16)));
Glyph_94 : aliased constant Glyph :=
(Number_Of_Vectors => 24,
Width => 24,
Height => 6,
Y_Offset => -3,
X_Offset => -12,
Vects => (Raise_Pen,
(-9, 3),
(-9, 1),
(-8, -2),
(-6, -3),
(-4, -3),
(-2, -2),
(2, 1),
(4, 2),
(6, 2),
(8, 1),
(9, -1),
Raise_Pen,
(-9, 1),
(-8, -1),
(-6, -2),
(-4, -2),
(-2, -1),
(2, 2),
(4, 3),
(6, 3),
(8, 2),
(9, -1),
(9, -3)));
Glyph_95 : aliased constant Glyph :=
(Number_Of_Vectors => 14,
Width => 14,
Height => 8,
Y_Offset => -12,
X_Offset => -7,
Vects => (Raise_Pen,
(-1, -12),
(-3, -11),
(-4, -9),
(-4, -7),
(-3, -5),
(-1, -4),
(1, -4),
(3, -5),
(4, -7),
(4, -9),
(3, -11),
(1, -12),
(-1, -12)));
Font_D : aliased constant Hershey_Font :=
(Number_Of_Glyphs => 96,
Glyphs =>
(
Glyph_0'Access,
Glyph_1'Access,
Glyph_2'Access,
Glyph_3'Access,
Glyph_4'Access,
Glyph_5'Access,
Glyph_6'Access,
Glyph_7'Access,
Glyph_8'Access,
Glyph_9'Access,
Glyph_10'Access,
Glyph_11'Access,
Glyph_12'Access,
Glyph_13'Access,
Glyph_14'Access,
Glyph_15'Access,
Glyph_16'Access,
Glyph_17'Access,
Glyph_18'Access,
Glyph_19'Access,
Glyph_20'Access,
Glyph_21'Access,
Glyph_22'Access,
Glyph_23'Access,
Glyph_24'Access,
Glyph_25'Access,
Glyph_26'Access,
Glyph_27'Access,
Glyph_28'Access,
Glyph_29'Access,
Glyph_30'Access,
Glyph_31'Access,
Glyph_32'Access,
Glyph_33'Access,
Glyph_34'Access,
Glyph_35'Access,
Glyph_36'Access,
Glyph_37'Access,
Glyph_38'Access,
Glyph_39'Access,
Glyph_40'Access,
Glyph_41'Access,
Glyph_42'Access,
Glyph_43'Access,
Glyph_44'Access,
Glyph_45'Access,
Glyph_46'Access,
Glyph_47'Access,
Glyph_48'Access,
Glyph_49'Access,
Glyph_50'Access,
Glyph_51'Access,
Glyph_52'Access,
Glyph_53'Access,
Glyph_54'Access,
Glyph_55'Access,
Glyph_56'Access,
Glyph_57'Access,
Glyph_58'Access,
Glyph_59'Access,
Glyph_60'Access,
Glyph_61'Access,
Glyph_62'Access,
Glyph_63'Access,
Glyph_64'Access,
Glyph_65'Access,
Glyph_66'Access,
Glyph_67'Access,
Glyph_68'Access,
Glyph_69'Access,
Glyph_70'Access,
Glyph_71'Access,
Glyph_72'Access,
Glyph_73'Access,
Glyph_74'Access,
Glyph_75'Access,
Glyph_76'Access,
Glyph_77'Access,
Glyph_78'Access,
Glyph_79'Access,
Glyph_80'Access,
Glyph_81'Access,
Glyph_82'Access,
Glyph_83'Access,
Glyph_84'Access,
Glyph_85'Access,
Glyph_86'Access,
Glyph_87'Access,
Glyph_88'Access,
Glyph_89'Access,
Glyph_90'Access,
Glyph_91'Access,
Glyph_92'Access,
Glyph_93'Access,
Glyph_94'Access,
Glyph_95'Access
), Y_Advance => 32);
Font : constant Giza.Font.Ref_Const := Font_D'Access;
end Giza.Hershey_Fonts.Cyrilc_1;
| 13.506298 | 56 | 0.42629 |
38acc0e1d7872b07f4e834d3151060a1a470d17b | 58,911 | ads | Ada | arch/ARM/STM32/svd/stm32f46_79x/stm32_svd-rcc.ads | shakram02/Ada_Drivers_Library | a407ca7ddbc2d9756647016c2f8fd8ef24a239ff | [
"BSD-3-Clause"
] | 192 | 2016-06-01T18:32:04.000Z | 2022-03-26T22:52:31.000Z | arch/ARM/STM32/svd/stm32f46_79x/stm32_svd-rcc.ads | morbos/Ada_Drivers_Library | a4ab26799be60997c38735f4056160c4af597ef7 | [
"BSD-3-Clause"
] | 239 | 2016-05-26T20:02:01.000Z | 2022-03-31T09:46:56.000Z | arch/ARM/STM32/svd/stm32f46_79x/stm32_svd-rcc.ads | morbos/Ada_Drivers_Library | a4ab26799be60997c38735f4056160c4af597ef7 | [
"BSD-3-Clause"
] | 142 | 2016-06-05T08:12:20.000Z | 2022-03-24T17:37:17.000Z | -- This spec has been automatically generated from STM32F46_79x.svd
pragma Restrictions (No_Elaboration_Code);
pragma Ada_2012;
pragma Style_Checks (Off);
with HAL;
with System;
package STM32_SVD.RCC is
pragma Preelaborate;
---------------
-- Registers --
---------------
subtype CR_HSITRIM_Field is HAL.UInt5;
subtype CR_HSICAL_Field is HAL.UInt8;
-- clock control register
type CR_Register is record
-- Internal high-speed clock enable
HSION : Boolean := True;
-- Read-only. Internal high-speed clock ready flag
HSIRDY : Boolean := True;
-- unspecified
Reserved_2_2 : HAL.Bit := 16#0#;
-- Internal high-speed clock trimming
HSITRIM : CR_HSITRIM_Field := 16#10#;
-- Read-only. Internal high-speed clock calibration
HSICAL : CR_HSICAL_Field := 16#0#;
-- HSE clock enable
HSEON : Boolean := False;
-- Read-only. HSE clock ready flag
HSERDY : Boolean := False;
-- HSE clock bypass
HSEBYP : Boolean := False;
-- Clock security system enable
CSSON : Boolean := False;
-- unspecified
Reserved_20_23 : HAL.UInt4 := 16#0#;
-- Main PLL (PLL) enable
PLLON : Boolean := False;
-- Read-only. Main PLL (PLL) clock ready flag
PLLRDY : Boolean := False;
-- PLLI2S enable
PLLI2SON : Boolean := False;
-- Read-only. PLLI2S clock ready flag
PLLI2SRDY : Boolean := False;
-- PLLSAI enable
PLLSAION : Boolean := False;
-- Read-only. PLLSAI clock ready flag
PLLSAIRDY : Boolean := False;
-- unspecified
Reserved_30_31 : HAL.UInt2 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for CR_Register use record
HSION at 0 range 0 .. 0;
HSIRDY at 0 range 1 .. 1;
Reserved_2_2 at 0 range 2 .. 2;
HSITRIM at 0 range 3 .. 7;
HSICAL at 0 range 8 .. 15;
HSEON at 0 range 16 .. 16;
HSERDY at 0 range 17 .. 17;
HSEBYP at 0 range 18 .. 18;
CSSON at 0 range 19 .. 19;
Reserved_20_23 at 0 range 20 .. 23;
PLLON at 0 range 24 .. 24;
PLLRDY at 0 range 25 .. 25;
PLLI2SON at 0 range 26 .. 26;
PLLI2SRDY at 0 range 27 .. 27;
PLLSAION at 0 range 28 .. 28;
PLLSAIRDY at 0 range 29 .. 29;
Reserved_30_31 at 0 range 30 .. 31;
end record;
subtype PLLCFGR_PLLM_Field is HAL.UInt6;
subtype PLLCFGR_PLLN_Field is HAL.UInt9;
subtype PLLCFGR_PLLP_Field is HAL.UInt2;
subtype PLLCFGR_PLLQ_Field is HAL.UInt4;
subtype PLLCFGR_PLLR_Field is HAL.UInt3;
-- PLL configuration register
type PLLCFGR_Register is record
-- Division factor for the main PLL (PLL) and audio PLL (PLLI2S) input
-- clock
PLLM : PLLCFGR_PLLM_Field := 16#10#;
-- Main PLL (PLL) multiplication factor for VCO
PLLN : PLLCFGR_PLLN_Field := 16#C0#;
-- unspecified
Reserved_15_15 : HAL.Bit := 16#0#;
-- Main PLL (PLL) division factor for main system clock
PLLP : PLLCFGR_PLLP_Field := 16#0#;
-- unspecified
Reserved_18_21 : HAL.UInt4 := 16#0#;
-- Main PLL(PLL) and audio PLL (PLLI2S) entry clock source
PLLSRC : Boolean := False;
-- unspecified
Reserved_23_23 : HAL.Bit := 16#0#;
-- Main PLL (PLL) division factor for USB OTG FS, SDIO and random number
-- generator clocks
PLLQ : PLLCFGR_PLLQ_Field := 16#4#;
-- Main PLL division factor for DSI clock
PLLR : PLLCFGR_PLLR_Field := 16#2#;
-- unspecified
Reserved_31_31 : HAL.Bit := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for PLLCFGR_Register use record
PLLM at 0 range 0 .. 5;
PLLN at 0 range 6 .. 14;
Reserved_15_15 at 0 range 15 .. 15;
PLLP at 0 range 16 .. 17;
Reserved_18_21 at 0 range 18 .. 21;
PLLSRC at 0 range 22 .. 22;
Reserved_23_23 at 0 range 23 .. 23;
PLLQ at 0 range 24 .. 27;
PLLR at 0 range 28 .. 30;
Reserved_31_31 at 0 range 31 .. 31;
end record;
subtype CFGR_SW_Field is HAL.UInt2;
subtype CFGR_SWS_Field is HAL.UInt2;
subtype CFGR_HPRE_Field is HAL.UInt4;
-- CFGR_PPRE array element
subtype CFGR_PPRE_Element is HAL.UInt3;
-- CFGR_PPRE array
type CFGR_PPRE_Field_Array is array (1 .. 2) of CFGR_PPRE_Element
with Component_Size => 3, Size => 6;
-- Type definition for CFGR_PPRE
type CFGR_PPRE_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- PPRE as a value
Val : HAL.UInt6;
when True =>
-- PPRE as an array
Arr : CFGR_PPRE_Field_Array;
end case;
end record
with Unchecked_Union, Size => 6;
for CFGR_PPRE_Field use record
Val at 0 range 0 .. 5;
Arr at 0 range 0 .. 5;
end record;
subtype CFGR_RTCPRE_Field is HAL.UInt5;
subtype CFGR_MCO1_Field is HAL.UInt2;
subtype CFGR_MCO1PRE_Field is HAL.UInt3;
subtype CFGR_MCO2PRE_Field is HAL.UInt3;
subtype CFGR_MCO2_Field is HAL.UInt2;
-- clock configuration register
type CFGR_Register is record
-- System clock switch
SW : CFGR_SW_Field := 16#0#;
-- Read-only. System clock switch status
SWS : CFGR_SWS_Field := 16#0#;
-- AHB prescaler
HPRE : CFGR_HPRE_Field := 16#0#;
-- unspecified
Reserved_8_9 : HAL.UInt2 := 16#0#;
-- APB Low speed prescaler (APB1)
PPRE : CFGR_PPRE_Field := (As_Array => False, Val => 16#0#);
-- HSE division factor for RTC clock
RTCPRE : CFGR_RTCPRE_Field := 16#0#;
-- Microcontroller clock output 1
MCO1 : CFGR_MCO1_Field := 16#0#;
-- I2S clock selection
I2SSRC : Boolean := False;
-- MCO1 prescaler
MCO1PRE : CFGR_MCO1PRE_Field := 16#0#;
-- MCO2 prescaler
MCO2PRE : CFGR_MCO2PRE_Field := 16#0#;
-- Microcontroller clock output 2
MCO2 : CFGR_MCO2_Field := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for CFGR_Register use record
SW at 0 range 0 .. 1;
SWS at 0 range 2 .. 3;
HPRE at 0 range 4 .. 7;
Reserved_8_9 at 0 range 8 .. 9;
PPRE at 0 range 10 .. 15;
RTCPRE at 0 range 16 .. 20;
MCO1 at 0 range 21 .. 22;
I2SSRC at 0 range 23 .. 23;
MCO1PRE at 0 range 24 .. 26;
MCO2PRE at 0 range 27 .. 29;
MCO2 at 0 range 30 .. 31;
end record;
-- clock interrupt register
type CIR_Register is record
-- Read-only. LSI ready interrupt flag
LSIRDYF : Boolean := False;
-- Read-only. LSE ready interrupt flag
LSERDYF : Boolean := False;
-- Read-only. HSI ready interrupt flag
HSIRDYF : Boolean := False;
-- Read-only. HSE ready interrupt flag
HSERDYF : Boolean := False;
-- Read-only. Main PLL (PLL) ready interrupt flag
PLLRDYF : Boolean := False;
-- Read-only. PLLI2S ready interrupt flag
PLLI2SRDYF : Boolean := False;
-- Read-only. PLLSAI ready interrupt flag
PLLSAIRDYF : Boolean := False;
-- Read-only. Clock security system interrupt flag
CSSF : Boolean := False;
-- LSI ready interrupt enable
LSIRDYIE : Boolean := False;
-- LSE ready interrupt enable
LSERDYIE : Boolean := False;
-- HSI ready interrupt enable
HSIRDYIE : Boolean := False;
-- HSE ready interrupt enable
HSERDYIE : Boolean := False;
-- Main PLL (PLL) ready interrupt enable
PLLRDYIE : Boolean := False;
-- PLLI2S ready interrupt enable
PLLI2SRDYIE : Boolean := False;
-- PLLSAI Ready Interrupt Enable
PLLSAIRDYIE : Boolean := False;
-- unspecified
Reserved_15_15 : HAL.Bit := 16#0#;
-- Write-only. LSI ready interrupt clear
LSIRDYC : Boolean := False;
-- Write-only. LSE ready interrupt clear
LSERDYC : Boolean := False;
-- Write-only. HSI ready interrupt clear
HSIRDYC : Boolean := False;
-- Write-only. HSE ready interrupt clear
HSERDYC : Boolean := False;
-- Write-only. Main PLL(PLL) ready interrupt clear
PLLRDYC : Boolean := False;
-- Write-only. PLLI2S ready interrupt clear
PLLI2SRDYC : Boolean := False;
-- Write-only. PLLSAI Ready Interrupt Clear
PLLSAIRDYC : Boolean := False;
-- Write-only. Clock security system interrupt clear
CSSC : Boolean := False;
-- unspecified
Reserved_24_31 : HAL.UInt8 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for CIR_Register use record
LSIRDYF at 0 range 0 .. 0;
LSERDYF at 0 range 1 .. 1;
HSIRDYF at 0 range 2 .. 2;
HSERDYF at 0 range 3 .. 3;
PLLRDYF at 0 range 4 .. 4;
PLLI2SRDYF at 0 range 5 .. 5;
PLLSAIRDYF at 0 range 6 .. 6;
CSSF at 0 range 7 .. 7;
LSIRDYIE at 0 range 8 .. 8;
LSERDYIE at 0 range 9 .. 9;
HSIRDYIE at 0 range 10 .. 10;
HSERDYIE at 0 range 11 .. 11;
PLLRDYIE at 0 range 12 .. 12;
PLLI2SRDYIE at 0 range 13 .. 13;
PLLSAIRDYIE at 0 range 14 .. 14;
Reserved_15_15 at 0 range 15 .. 15;
LSIRDYC at 0 range 16 .. 16;
LSERDYC at 0 range 17 .. 17;
HSIRDYC at 0 range 18 .. 18;
HSERDYC at 0 range 19 .. 19;
PLLRDYC at 0 range 20 .. 20;
PLLI2SRDYC at 0 range 21 .. 21;
PLLSAIRDYC at 0 range 22 .. 22;
CSSC at 0 range 23 .. 23;
Reserved_24_31 at 0 range 24 .. 31;
end record;
-- AHB1 peripheral reset register
type AHB1RSTR_Register is record
-- IO port A reset
GPIOARST : Boolean := False;
-- IO port B reset
GPIOBRST : Boolean := False;
-- IO port C reset
GPIOCRST : Boolean := False;
-- IO port D reset
GPIODRST : Boolean := False;
-- IO port E reset
GPIOERST : Boolean := False;
-- IO port F reset
GPIOFRST : Boolean := False;
-- IO port G reset
GPIOGRST : Boolean := False;
-- IO port H reset
GPIOHRST : Boolean := False;
-- IO port I reset
GPIOIRST : Boolean := False;
-- IO port J reset
GPIOJRST : Boolean := False;
-- IO port K reset
GPIOKRST : Boolean := False;
-- unspecified
Reserved_11_11 : HAL.Bit := 16#0#;
-- CRC reset
CRCRST : Boolean := False;
-- unspecified
Reserved_13_20 : HAL.UInt8 := 16#0#;
-- DMA2 reset
DMA1RST : Boolean := False;
-- DMA2 reset
DMA2RST : Boolean := False;
-- DMA2D reset
DMA2DRST : Boolean := False;
-- unspecified
Reserved_24_24 : HAL.Bit := 16#0#;
-- Ethernet MAC reset
ETHMACRST : Boolean := False;
-- unspecified
Reserved_26_28 : HAL.UInt3 := 16#0#;
-- USB OTG HS module reset
OTGHSRST : Boolean := False;
-- unspecified
Reserved_30_31 : HAL.UInt2 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for AHB1RSTR_Register use record
GPIOARST at 0 range 0 .. 0;
GPIOBRST at 0 range 1 .. 1;
GPIOCRST at 0 range 2 .. 2;
GPIODRST at 0 range 3 .. 3;
GPIOERST at 0 range 4 .. 4;
GPIOFRST at 0 range 5 .. 5;
GPIOGRST at 0 range 6 .. 6;
GPIOHRST at 0 range 7 .. 7;
GPIOIRST at 0 range 8 .. 8;
GPIOJRST at 0 range 9 .. 9;
GPIOKRST at 0 range 10 .. 10;
Reserved_11_11 at 0 range 11 .. 11;
CRCRST at 0 range 12 .. 12;
Reserved_13_20 at 0 range 13 .. 20;
DMA1RST at 0 range 21 .. 21;
DMA2RST at 0 range 22 .. 22;
DMA2DRST at 0 range 23 .. 23;
Reserved_24_24 at 0 range 24 .. 24;
ETHMACRST at 0 range 25 .. 25;
Reserved_26_28 at 0 range 26 .. 28;
OTGHSRST at 0 range 29 .. 29;
Reserved_30_31 at 0 range 30 .. 31;
end record;
-- AHB2 peripheral reset register
type AHB2RSTR_Register is record
-- Camera interface reset
DCMIRST : Boolean := False;
-- unspecified
Reserved_1_3 : HAL.UInt3 := 16#0#;
-- Cryptographic module reset
CRYPRST : Boolean := False;
-- Hash module reset
HSAHRST : Boolean := False;
-- Random number generator module reset
RNGRST : Boolean := False;
-- USB OTG FS module reset
OTGFSRST : Boolean := False;
-- unspecified
Reserved_8_31 : HAL.UInt24 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for AHB2RSTR_Register use record
DCMIRST at 0 range 0 .. 0;
Reserved_1_3 at 0 range 1 .. 3;
CRYPRST at 0 range 4 .. 4;
HSAHRST at 0 range 5 .. 5;
RNGRST at 0 range 6 .. 6;
OTGFSRST at 0 range 7 .. 7;
Reserved_8_31 at 0 range 8 .. 31;
end record;
-- AHB3 peripheral reset register
type AHB3RSTR_Register is record
-- Flexible memory controller module reset
FMCRST : Boolean := False;
-- QUADSPI memory controller reset
QSPIRST : Boolean := False;
-- unspecified
Reserved_2_31 : HAL.UInt30 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for AHB3RSTR_Register use record
FMCRST at 0 range 0 .. 0;
QSPIRST at 0 range 1 .. 1;
Reserved_2_31 at 0 range 2 .. 31;
end record;
-- APB1 peripheral reset register
type APB1RSTR_Register is record
-- TIM2 reset
TIM2RST : Boolean := False;
-- TIM3 reset
TIM3RST : Boolean := False;
-- TIM4 reset
TIM4RST : Boolean := False;
-- TIM5 reset
TIM5RST : Boolean := False;
-- TIM6 reset
TIM6RST : Boolean := False;
-- TIM7 reset
TIM7RST : Boolean := False;
-- TIM12 reset
TIM12RST : Boolean := False;
-- TIM13 reset
TIM13RST : Boolean := False;
-- TIM14 reset
TIM14RST : Boolean := False;
-- unspecified
Reserved_9_10 : HAL.UInt2 := 16#0#;
-- Window watchdog reset
WWDGRST : Boolean := False;
-- unspecified
Reserved_12_13 : HAL.UInt2 := 16#0#;
-- SPI 2 reset
SPI2RST : Boolean := False;
-- SPI 3 reset
SPI3RST : Boolean := False;
-- unspecified
Reserved_16_16 : HAL.Bit := 16#0#;
-- USART 2 reset
UART2RST : Boolean := False;
-- USART 3 reset
UART3RST : Boolean := False;
-- USART 4 reset
UART4RST : Boolean := False;
-- USART 5 reset
UART5RST : Boolean := False;
-- I2C 1 reset
I2C1RST : Boolean := False;
-- I2C 2 reset
I2C2RST : Boolean := False;
-- I2C3 reset
I2C3RST : Boolean := False;
-- unspecified
Reserved_24_24 : HAL.Bit := 16#0#;
-- CAN1 reset
CAN1RST : Boolean := False;
-- CAN2 reset
CAN2RST : Boolean := False;
-- unspecified
Reserved_27_27 : HAL.Bit := 16#0#;
-- Power interface reset
PWRRST : Boolean := False;
-- DAC reset
DACRST : Boolean := False;
-- UART7 reset
UART7RST : Boolean := False;
-- UART8 reset
UART8RST : Boolean := False;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for APB1RSTR_Register use record
TIM2RST at 0 range 0 .. 0;
TIM3RST at 0 range 1 .. 1;
TIM4RST at 0 range 2 .. 2;
TIM5RST at 0 range 3 .. 3;
TIM6RST at 0 range 4 .. 4;
TIM7RST at 0 range 5 .. 5;
TIM12RST at 0 range 6 .. 6;
TIM13RST at 0 range 7 .. 7;
TIM14RST at 0 range 8 .. 8;
Reserved_9_10 at 0 range 9 .. 10;
WWDGRST at 0 range 11 .. 11;
Reserved_12_13 at 0 range 12 .. 13;
SPI2RST at 0 range 14 .. 14;
SPI3RST at 0 range 15 .. 15;
Reserved_16_16 at 0 range 16 .. 16;
UART2RST at 0 range 17 .. 17;
UART3RST at 0 range 18 .. 18;
UART4RST at 0 range 19 .. 19;
UART5RST at 0 range 20 .. 20;
I2C1RST at 0 range 21 .. 21;
I2C2RST at 0 range 22 .. 22;
I2C3RST at 0 range 23 .. 23;
Reserved_24_24 at 0 range 24 .. 24;
CAN1RST at 0 range 25 .. 25;
CAN2RST at 0 range 26 .. 26;
Reserved_27_27 at 0 range 27 .. 27;
PWRRST at 0 range 28 .. 28;
DACRST at 0 range 29 .. 29;
UART7RST at 0 range 30 .. 30;
UART8RST at 0 range 31 .. 31;
end record;
-- APB2 peripheral reset register
type APB2RSTR_Register is record
-- TIM1 reset
TIM1RST : Boolean := False;
-- TIM8 reset
TIM8RST : Boolean := False;
-- unspecified
Reserved_2_3 : HAL.UInt2 := 16#0#;
-- USART1 reset
USART1RST : Boolean := False;
-- USART6 reset
USART6RST : Boolean := False;
-- unspecified
Reserved_6_7 : HAL.UInt2 := 16#0#;
-- ADC interface reset (common to all ADCs)
ADCRST : Boolean := False;
-- unspecified
Reserved_9_10 : HAL.UInt2 := 16#0#;
-- SDIO reset
SDIORST : Boolean := False;
-- SPI 1 reset
SPI1RST : Boolean := False;
-- SPI4 reset
SPI4RST : Boolean := False;
-- System configuration controller reset
SYSCFGRST : Boolean := False;
-- unspecified
Reserved_15_15 : HAL.Bit := 16#0#;
-- TIM9 reset
TIM9RST : Boolean := False;
-- TIM10 reset
TIM10RST : Boolean := False;
-- TIM11 reset
TIM11RST : Boolean := False;
-- unspecified
Reserved_19_19 : HAL.Bit := 16#0#;
-- SPI5 reset
SPI5RST : Boolean := False;
-- SPI6 reset
SPI6RST : Boolean := False;
-- SAI1 reset
SAI1RST : Boolean := False;
-- unspecified
Reserved_23_25 : HAL.UInt3 := 16#0#;
-- LTDC reset
LTDCRST : Boolean := False;
-- DSI host reset
DSIRST : Boolean := False;
-- unspecified
Reserved_28_31 : HAL.UInt4 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for APB2RSTR_Register use record
TIM1RST at 0 range 0 .. 0;
TIM8RST at 0 range 1 .. 1;
Reserved_2_3 at 0 range 2 .. 3;
USART1RST at 0 range 4 .. 4;
USART6RST at 0 range 5 .. 5;
Reserved_6_7 at 0 range 6 .. 7;
ADCRST at 0 range 8 .. 8;
Reserved_9_10 at 0 range 9 .. 10;
SDIORST at 0 range 11 .. 11;
SPI1RST at 0 range 12 .. 12;
SPI4RST at 0 range 13 .. 13;
SYSCFGRST at 0 range 14 .. 14;
Reserved_15_15 at 0 range 15 .. 15;
TIM9RST at 0 range 16 .. 16;
TIM10RST at 0 range 17 .. 17;
TIM11RST at 0 range 18 .. 18;
Reserved_19_19 at 0 range 19 .. 19;
SPI5RST at 0 range 20 .. 20;
SPI6RST at 0 range 21 .. 21;
SAI1RST at 0 range 22 .. 22;
Reserved_23_25 at 0 range 23 .. 25;
LTDCRST at 0 range 26 .. 26;
DSIRST at 0 range 27 .. 27;
Reserved_28_31 at 0 range 28 .. 31;
end record;
-- AHB1 peripheral clock register
type AHB1ENR_Register is record
-- IO port A clock enable
GPIOAEN : Boolean := False;
-- IO port B clock enable
GPIOBEN : Boolean := False;
-- IO port C clock enable
GPIOCEN : Boolean := False;
-- IO port D clock enable
GPIODEN : Boolean := False;
-- IO port E clock enable
GPIOEEN : Boolean := False;
-- IO port F clock enable
GPIOFEN : Boolean := False;
-- IO port G clock enable
GPIOGEN : Boolean := False;
-- IO port H clock enable
GPIOHEN : Boolean := False;
-- IO port I clock enable
GPIOIEN : Boolean := False;
-- IO port J clock enable
GPIOJEN : Boolean := False;
-- IO port K clock enable
GPIOKEN : Boolean := False;
-- unspecified
Reserved_11_11 : HAL.Bit := 16#0#;
-- CRC clock enable
CRCEN : Boolean := False;
-- unspecified
Reserved_13_17 : HAL.UInt5 := 16#0#;
-- Backup SRAM interface clock enable
BKPSRAMEN : Boolean := False;
-- unspecified
Reserved_19_19 : HAL.Bit := 16#0#;
-- CCM data RAM clock enable
CCMDATARAMEN : Boolean := True;
-- DMA1 clock enable
DMA1EN : Boolean := False;
-- DMA2 clock enable
DMA2EN : Boolean := False;
-- DMA2D clock enable
DMA2DEN : Boolean := False;
-- unspecified
Reserved_24_24 : HAL.Bit := 16#0#;
-- Ethernet MAC clock enable
ETHMACEN : Boolean := False;
-- Ethernet Transmission clock enable
ETHMACTXEN : Boolean := False;
-- Ethernet Reception clock enable
ETHMACRXEN : Boolean := False;
-- Ethernet PTP clock enable
ETHMACPTPEN : Boolean := False;
-- USB OTG HS clock enable
OTGHSEN : Boolean := False;
-- USB OTG HSULPI clock enable
OTGHSULPIEN : Boolean := False;
-- unspecified
Reserved_31_31 : HAL.Bit := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for AHB1ENR_Register use record
GPIOAEN at 0 range 0 .. 0;
GPIOBEN at 0 range 1 .. 1;
GPIOCEN at 0 range 2 .. 2;
GPIODEN at 0 range 3 .. 3;
GPIOEEN at 0 range 4 .. 4;
GPIOFEN at 0 range 5 .. 5;
GPIOGEN at 0 range 6 .. 6;
GPIOHEN at 0 range 7 .. 7;
GPIOIEN at 0 range 8 .. 8;
GPIOJEN at 0 range 9 .. 9;
GPIOKEN at 0 range 10 .. 10;
Reserved_11_11 at 0 range 11 .. 11;
CRCEN at 0 range 12 .. 12;
Reserved_13_17 at 0 range 13 .. 17;
BKPSRAMEN at 0 range 18 .. 18;
Reserved_19_19 at 0 range 19 .. 19;
CCMDATARAMEN at 0 range 20 .. 20;
DMA1EN at 0 range 21 .. 21;
DMA2EN at 0 range 22 .. 22;
DMA2DEN at 0 range 23 .. 23;
Reserved_24_24 at 0 range 24 .. 24;
ETHMACEN at 0 range 25 .. 25;
ETHMACTXEN at 0 range 26 .. 26;
ETHMACRXEN at 0 range 27 .. 27;
ETHMACPTPEN at 0 range 28 .. 28;
OTGHSEN at 0 range 29 .. 29;
OTGHSULPIEN at 0 range 30 .. 30;
Reserved_31_31 at 0 range 31 .. 31;
end record;
-- AHB2 peripheral clock enable register
type AHB2ENR_Register is record
-- Camera interface enable
DCMIEN : Boolean := False;
-- unspecified
Reserved_1_3 : HAL.UInt3 := 16#0#;
-- Cryptographic modules clock enable
CRYPEN : Boolean := False;
-- Hash modules clock enable
HASHEN : Boolean := False;
-- Random number generator clock enable
RNGEN : Boolean := False;
-- USB OTG FS clock enable
OTGFSEN : Boolean := False;
-- unspecified
Reserved_8_31 : HAL.UInt24 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for AHB2ENR_Register use record
DCMIEN at 0 range 0 .. 0;
Reserved_1_3 at 0 range 1 .. 3;
CRYPEN at 0 range 4 .. 4;
HASHEN at 0 range 5 .. 5;
RNGEN at 0 range 6 .. 6;
OTGFSEN at 0 range 7 .. 7;
Reserved_8_31 at 0 range 8 .. 31;
end record;
-- AHB3 peripheral clock enable register
type AHB3ENR_Register is record
-- Flexible memory controller module clock enable
FMCEN : Boolean := False;
-- QUADSPI memory controller module clock enable
QSPIEN : Boolean := False;
-- unspecified
Reserved_2_31 : HAL.UInt30 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for AHB3ENR_Register use record
FMCEN at 0 range 0 .. 0;
QSPIEN at 0 range 1 .. 1;
Reserved_2_31 at 0 range 2 .. 31;
end record;
-- APB1 peripheral clock enable register
type APB1ENR_Register is record
-- TIM2 clock enable
TIM2EN : Boolean := False;
-- TIM3 clock enable
TIM3EN : Boolean := False;
-- TIM4 clock enable
TIM4EN : Boolean := False;
-- TIM5 clock enable
TIM5EN : Boolean := False;
-- TIM6 clock enable
TIM6EN : Boolean := False;
-- TIM7 clock enable
TIM7EN : Boolean := False;
-- TIM12 clock enable
TIM12EN : Boolean := False;
-- TIM13 clock enable
TIM13EN : Boolean := False;
-- TIM14 clock enable
TIM14EN : Boolean := False;
-- unspecified
Reserved_9_10 : HAL.UInt2 := 16#0#;
-- Window watchdog clock enable
WWDGEN : Boolean := False;
-- unspecified
Reserved_12_13 : HAL.UInt2 := 16#0#;
-- SPI2 clock enable
SPI2EN : Boolean := False;
-- SPI3 clock enable
SPI3EN : Boolean := False;
-- unspecified
Reserved_16_16 : HAL.Bit := 16#0#;
-- USART 2 clock enable
USART2EN : Boolean := False;
-- USART3 clock enable
USART3EN : Boolean := False;
-- UART4 clock enable
UART4EN : Boolean := False;
-- UART5 clock enable
UART5EN : Boolean := False;
-- I2C1 clock enable
I2C1EN : Boolean := False;
-- I2C2 clock enable
I2C2EN : Boolean := False;
-- I2C3 clock enable
I2C3EN : Boolean := False;
-- unspecified
Reserved_24_24 : HAL.Bit := 16#0#;
-- CAN 1 clock enable
CAN1EN : Boolean := False;
-- CAN 2 clock enable
CAN2EN : Boolean := False;
-- unspecified
Reserved_27_27 : HAL.Bit := 16#0#;
-- Power interface clock enable
PWREN : Boolean := False;
-- DAC interface clock enable
DACEN : Boolean := False;
-- UART7 clock enable
UART7ENR : Boolean := False;
-- UART8 clock enable
UART8ENR : Boolean := False;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for APB1ENR_Register use record
TIM2EN at 0 range 0 .. 0;
TIM3EN at 0 range 1 .. 1;
TIM4EN at 0 range 2 .. 2;
TIM5EN at 0 range 3 .. 3;
TIM6EN at 0 range 4 .. 4;
TIM7EN at 0 range 5 .. 5;
TIM12EN at 0 range 6 .. 6;
TIM13EN at 0 range 7 .. 7;
TIM14EN at 0 range 8 .. 8;
Reserved_9_10 at 0 range 9 .. 10;
WWDGEN at 0 range 11 .. 11;
Reserved_12_13 at 0 range 12 .. 13;
SPI2EN at 0 range 14 .. 14;
SPI3EN at 0 range 15 .. 15;
Reserved_16_16 at 0 range 16 .. 16;
USART2EN at 0 range 17 .. 17;
USART3EN at 0 range 18 .. 18;
UART4EN at 0 range 19 .. 19;
UART5EN at 0 range 20 .. 20;
I2C1EN at 0 range 21 .. 21;
I2C2EN at 0 range 22 .. 22;
I2C3EN at 0 range 23 .. 23;
Reserved_24_24 at 0 range 24 .. 24;
CAN1EN at 0 range 25 .. 25;
CAN2EN at 0 range 26 .. 26;
Reserved_27_27 at 0 range 27 .. 27;
PWREN at 0 range 28 .. 28;
DACEN at 0 range 29 .. 29;
UART7ENR at 0 range 30 .. 30;
UART8ENR at 0 range 31 .. 31;
end record;
-- APB2 peripheral clock enable register
type APB2ENR_Register is record
-- TIM1 clock enable
TIM1EN : Boolean := False;
-- TIM8 clock enable
TIM8EN : Boolean := False;
-- unspecified
Reserved_2_3 : HAL.UInt2 := 16#0#;
-- USART1 clock enable
USART1EN : Boolean := False;
-- USART6 clock enable
USART6EN : Boolean := False;
-- unspecified
Reserved_6_7 : HAL.UInt2 := 16#0#;
-- ADC1 clock enable
ADC1EN : Boolean := False;
-- ADC2 clock enable
ADC2EN : Boolean := False;
-- ADC3 clock enable
ADC3EN : Boolean := False;
-- SDIO clock enable
SDIOEN : Boolean := False;
-- SPI1 clock enable
SPI1EN : Boolean := False;
-- SPI4 clock enable
SPI4ENR : Boolean := False;
-- System configuration controller clock enable
SYSCFGEN : Boolean := False;
-- unspecified
Reserved_15_15 : HAL.Bit := 16#0#;
-- TIM9 clock enable
TIM9EN : Boolean := False;
-- TIM10 clock enable
TIM10EN : Boolean := False;
-- TIM11 clock enable
TIM11EN : Boolean := False;
-- unspecified
Reserved_19_19 : HAL.Bit := 16#0#;
-- SPI5 clock enable
SPI5ENR : Boolean := False;
-- SPI6 clock enable
SPI6ENR : Boolean := False;
-- SAI1 clock enable
SAI1EN : Boolean := False;
-- unspecified
Reserved_23_25 : HAL.UInt3 := 16#0#;
-- LTDC clock enable
LTDCEN : Boolean := False;
-- DSI clocks enable
DSIEN : Boolean := False;
-- unspecified
Reserved_28_31 : HAL.UInt4 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for APB2ENR_Register use record
TIM1EN at 0 range 0 .. 0;
TIM8EN at 0 range 1 .. 1;
Reserved_2_3 at 0 range 2 .. 3;
USART1EN at 0 range 4 .. 4;
USART6EN at 0 range 5 .. 5;
Reserved_6_7 at 0 range 6 .. 7;
ADC1EN at 0 range 8 .. 8;
ADC2EN at 0 range 9 .. 9;
ADC3EN at 0 range 10 .. 10;
SDIOEN at 0 range 11 .. 11;
SPI1EN at 0 range 12 .. 12;
SPI4ENR at 0 range 13 .. 13;
SYSCFGEN at 0 range 14 .. 14;
Reserved_15_15 at 0 range 15 .. 15;
TIM9EN at 0 range 16 .. 16;
TIM10EN at 0 range 17 .. 17;
TIM11EN at 0 range 18 .. 18;
Reserved_19_19 at 0 range 19 .. 19;
SPI5ENR at 0 range 20 .. 20;
SPI6ENR at 0 range 21 .. 21;
SAI1EN at 0 range 22 .. 22;
Reserved_23_25 at 0 range 23 .. 25;
LTDCEN at 0 range 26 .. 26;
DSIEN at 0 range 27 .. 27;
Reserved_28_31 at 0 range 28 .. 31;
end record;
-- AHB1 peripheral clock enable in low power mode register
type AHB1LPENR_Register is record
-- IO port A clock enable during sleep mode
GPIOALPEN : Boolean := True;
-- IO port B clock enable during Sleep mode
GPIOBLPEN : Boolean := True;
-- IO port C clock enable during Sleep mode
GPIOCLPEN : Boolean := True;
-- IO port D clock enable during Sleep mode
GPIODLPEN : Boolean := True;
-- IO port E clock enable during Sleep mode
GPIOELPEN : Boolean := True;
-- IO port F clock enable during Sleep mode
GPIOFLPEN : Boolean := True;
-- IO port G clock enable during Sleep mode
GPIOGLPEN : Boolean := True;
-- IO port H clock enable during Sleep mode
GPIOHLPEN : Boolean := True;
-- IO port I clock enable during Sleep mode
GPIOILPEN : Boolean := True;
-- IO port J clock enable during Sleep mode
GPIOJLPEN : Boolean := False;
-- IO port K clock enable during Sleep mode
GPIOKLPEN : Boolean := False;
-- unspecified
Reserved_11_11 : HAL.Bit := 16#0#;
-- CRC clock enable during Sleep mode
CRCLPEN : Boolean := True;
-- unspecified
Reserved_13_14 : HAL.UInt2 := 16#0#;
-- Flash interface clock enable during Sleep mode
FLITFLPEN : Boolean := True;
-- SRAM 1interface clock enable during Sleep mode
SRAM1LPEN : Boolean := True;
-- SRAM 2 interface clock enable during Sleep mode
SRAM2LPEN : Boolean := True;
-- Backup SRAM interface clock enable during Sleep mode
BKPSRAMLPEN : Boolean := True;
-- SRAM 3 interface clock enable during Sleep mode
SRAM3LPEN : Boolean := False;
-- unspecified
Reserved_20_20 : HAL.Bit := 16#0#;
-- DMA1 clock enable during Sleep mode
DMA1LPEN : Boolean := True;
-- DMA2 clock enable during Sleep mode
DMA2LPEN : Boolean := True;
-- DMA2D clock enable during Sleep mode
DMA2DLPEN : Boolean := False;
-- unspecified
Reserved_24_24 : HAL.Bit := 16#0#;
-- Ethernet MAC clock enable during Sleep mode
ETHMACLPEN : Boolean := True;
-- Ethernet transmission clock enable during Sleep mode
ETHMACTXLPEN : Boolean := True;
-- Ethernet reception clock enable during Sleep mode
ETHMACRXLPEN : Boolean := True;
-- Ethernet PTP clock enable during Sleep mode
ETHMACPTPLPEN : Boolean := True;
-- USB OTG HS clock enable during Sleep mode
OTGHSLPEN : Boolean := True;
-- USB OTG HS ULPI clock enable during Sleep mode
OTGHSULPILPEN : Boolean := True;
-- unspecified
Reserved_31_31 : HAL.Bit := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for AHB1LPENR_Register use record
GPIOALPEN at 0 range 0 .. 0;
GPIOBLPEN at 0 range 1 .. 1;
GPIOCLPEN at 0 range 2 .. 2;
GPIODLPEN at 0 range 3 .. 3;
GPIOELPEN at 0 range 4 .. 4;
GPIOFLPEN at 0 range 5 .. 5;
GPIOGLPEN at 0 range 6 .. 6;
GPIOHLPEN at 0 range 7 .. 7;
GPIOILPEN at 0 range 8 .. 8;
GPIOJLPEN at 0 range 9 .. 9;
GPIOKLPEN at 0 range 10 .. 10;
Reserved_11_11 at 0 range 11 .. 11;
CRCLPEN at 0 range 12 .. 12;
Reserved_13_14 at 0 range 13 .. 14;
FLITFLPEN at 0 range 15 .. 15;
SRAM1LPEN at 0 range 16 .. 16;
SRAM2LPEN at 0 range 17 .. 17;
BKPSRAMLPEN at 0 range 18 .. 18;
SRAM3LPEN at 0 range 19 .. 19;
Reserved_20_20 at 0 range 20 .. 20;
DMA1LPEN at 0 range 21 .. 21;
DMA2LPEN at 0 range 22 .. 22;
DMA2DLPEN at 0 range 23 .. 23;
Reserved_24_24 at 0 range 24 .. 24;
ETHMACLPEN at 0 range 25 .. 25;
ETHMACTXLPEN at 0 range 26 .. 26;
ETHMACRXLPEN at 0 range 27 .. 27;
ETHMACPTPLPEN at 0 range 28 .. 28;
OTGHSLPEN at 0 range 29 .. 29;
OTGHSULPILPEN at 0 range 30 .. 30;
Reserved_31_31 at 0 range 31 .. 31;
end record;
-- AHB2 peripheral clock enable in low power mode register
type AHB2LPENR_Register is record
-- Camera interface enable during Sleep mode
DCMILPEN : Boolean := True;
-- unspecified
Reserved_1_3 : HAL.UInt3 := 16#0#;
-- Cryptography modules clock enable during Sleep mode
CRYPLPEN : Boolean := True;
-- Hash modules clock enable during Sleep mode
HASHLPEN : Boolean := True;
-- Random number generator clock enable during Sleep mode
RNGLPEN : Boolean := True;
-- USB OTG FS clock enable during Sleep mode
OTGFSLPEN : Boolean := True;
-- unspecified
Reserved_8_31 : HAL.UInt24 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for AHB2LPENR_Register use record
DCMILPEN at 0 range 0 .. 0;
Reserved_1_3 at 0 range 1 .. 3;
CRYPLPEN at 0 range 4 .. 4;
HASHLPEN at 0 range 5 .. 5;
RNGLPEN at 0 range 6 .. 6;
OTGFSLPEN at 0 range 7 .. 7;
Reserved_8_31 at 0 range 8 .. 31;
end record;
-- AHB3 peripheral clock enable in low power mode register
type AHB3LPENR_Register is record
-- Flexible memory controller module clock enable during Sleep mode
FMCLPEN : Boolean := True;
-- QUADSPI memory controller module clock enable during Sleep mode
QSPILPEN : Boolean := False;
-- unspecified
Reserved_2_31 : HAL.UInt30 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for AHB3LPENR_Register use record
FMCLPEN at 0 range 0 .. 0;
QSPILPEN at 0 range 1 .. 1;
Reserved_2_31 at 0 range 2 .. 31;
end record;
-- APB1 peripheral clock enable in low power mode register
type APB1LPENR_Register is record
-- TIM2 clock enable during Sleep mode
TIM2LPEN : Boolean := True;
-- TIM3 clock enable during Sleep mode
TIM3LPEN : Boolean := True;
-- TIM4 clock enable during Sleep mode
TIM4LPEN : Boolean := True;
-- TIM5 clock enable during Sleep mode
TIM5LPEN : Boolean := True;
-- TIM6 clock enable during Sleep mode
TIM6LPEN : Boolean := True;
-- TIM7 clock enable during Sleep mode
TIM7LPEN : Boolean := True;
-- TIM12 clock enable during Sleep mode
TIM12LPEN : Boolean := True;
-- TIM13 clock enable during Sleep mode
TIM13LPEN : Boolean := True;
-- TIM14 clock enable during Sleep mode
TIM14LPEN : Boolean := True;
-- unspecified
Reserved_9_10 : HAL.UInt2 := 16#0#;
-- Window watchdog clock enable during Sleep mode
WWDGLPEN : Boolean := True;
-- unspecified
Reserved_12_13 : HAL.UInt2 := 16#0#;
-- SPI2 clock enable during Sleep mode
SPI2LPEN : Boolean := True;
-- SPI3 clock enable during Sleep mode
SPI3LPEN : Boolean := True;
-- unspecified
Reserved_16_16 : HAL.Bit := 16#0#;
-- USART2 clock enable during Sleep mode
USART2LPEN : Boolean := True;
-- USART3 clock enable during Sleep mode
USART3LPEN : Boolean := True;
-- UART4 clock enable during Sleep mode
UART4LPEN : Boolean := True;
-- UART5 clock enable during Sleep mode
UART5LPEN : Boolean := True;
-- I2C1 clock enable during Sleep mode
I2C1LPEN : Boolean := True;
-- I2C2 clock enable during Sleep mode
I2C2LPEN : Boolean := True;
-- I2C3 clock enable during Sleep mode
I2C3LPEN : Boolean := True;
-- unspecified
Reserved_24_24 : HAL.Bit := 16#0#;
-- CAN 1 clock enable during Sleep mode
CAN1LPEN : Boolean := True;
-- CAN 2 clock enable during Sleep mode
CAN2LPEN : Boolean := True;
-- unspecified
Reserved_27_27 : HAL.Bit := 16#0#;
-- Power interface clock enable during Sleep mode
PWRLPEN : Boolean := True;
-- DAC interface clock enable during Sleep mode
DACLPEN : Boolean := True;
-- UART7 clock enable during Sleep mode
UART7LPEN : Boolean := False;
-- UART8 clock enable during Sleep mode
UART8LPEN : Boolean := False;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for APB1LPENR_Register use record
TIM2LPEN at 0 range 0 .. 0;
TIM3LPEN at 0 range 1 .. 1;
TIM4LPEN at 0 range 2 .. 2;
TIM5LPEN at 0 range 3 .. 3;
TIM6LPEN at 0 range 4 .. 4;
TIM7LPEN at 0 range 5 .. 5;
TIM12LPEN at 0 range 6 .. 6;
TIM13LPEN at 0 range 7 .. 7;
TIM14LPEN at 0 range 8 .. 8;
Reserved_9_10 at 0 range 9 .. 10;
WWDGLPEN at 0 range 11 .. 11;
Reserved_12_13 at 0 range 12 .. 13;
SPI2LPEN at 0 range 14 .. 14;
SPI3LPEN at 0 range 15 .. 15;
Reserved_16_16 at 0 range 16 .. 16;
USART2LPEN at 0 range 17 .. 17;
USART3LPEN at 0 range 18 .. 18;
UART4LPEN at 0 range 19 .. 19;
UART5LPEN at 0 range 20 .. 20;
I2C1LPEN at 0 range 21 .. 21;
I2C2LPEN at 0 range 22 .. 22;
I2C3LPEN at 0 range 23 .. 23;
Reserved_24_24 at 0 range 24 .. 24;
CAN1LPEN at 0 range 25 .. 25;
CAN2LPEN at 0 range 26 .. 26;
Reserved_27_27 at 0 range 27 .. 27;
PWRLPEN at 0 range 28 .. 28;
DACLPEN at 0 range 29 .. 29;
UART7LPEN at 0 range 30 .. 30;
UART8LPEN at 0 range 31 .. 31;
end record;
-- APB2 peripheral clock enabled in low power mode register
type APB2LPENR_Register is record
-- TIM1 clock enable during Sleep mode
TIM1LPEN : Boolean := True;
-- TIM8 clock enable during Sleep mode
TIM8LPEN : Boolean := True;
-- unspecified
Reserved_2_3 : HAL.UInt2 := 16#0#;
-- USART1 clock enable during Sleep mode
USART1LPEN : Boolean := True;
-- USART6 clock enable during Sleep mode
USART6LPEN : Boolean := True;
-- unspecified
Reserved_6_7 : HAL.UInt2 := 16#0#;
-- ADC1 clock enable during Sleep mode
ADC1LPEN : Boolean := True;
-- ADC2 clock enable during Sleep mode
ADC2LPEN : Boolean := True;
-- ADC 3 clock enable during Sleep mode
ADC3LPEN : Boolean := True;
-- SDIO clock enable during Sleep mode
SDIOLPEN : Boolean := True;
-- SPI 1 clock enable during Sleep mode
SPI1LPEN : Boolean := True;
-- SPI 4 clock enable during Sleep mode
SPI4LPEN : Boolean := False;
-- System configuration controller clock enable during Sleep mode
SYSCFGLPEN : Boolean := True;
-- unspecified
Reserved_15_15 : HAL.Bit := 16#0#;
-- TIM9 clock enable during sleep mode
TIM9LPEN : Boolean := True;
-- TIM10 clock enable during Sleep mode
TIM10LPEN : Boolean := True;
-- TIM11 clock enable during Sleep mode
TIM11LPEN : Boolean := True;
-- unspecified
Reserved_19_19 : HAL.Bit := 16#0#;
-- SPI 5 clock enable during Sleep mode
SPI5LPEN : Boolean := False;
-- SPI 6 clock enable during Sleep mode
SPI6LPEN : Boolean := False;
-- SAI1 clock enable
SAI1LPEN : Boolean := False;
-- unspecified
Reserved_23_25 : HAL.UInt3 := 16#0#;
-- LTDC clock enable
LTDCLPEN : Boolean := False;
-- DSI clocks enable during Sleep mode
DSILPEN : Boolean := False;
-- unspecified
Reserved_28_31 : HAL.UInt4 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for APB2LPENR_Register use record
TIM1LPEN at 0 range 0 .. 0;
TIM8LPEN at 0 range 1 .. 1;
Reserved_2_3 at 0 range 2 .. 3;
USART1LPEN at 0 range 4 .. 4;
USART6LPEN at 0 range 5 .. 5;
Reserved_6_7 at 0 range 6 .. 7;
ADC1LPEN at 0 range 8 .. 8;
ADC2LPEN at 0 range 9 .. 9;
ADC3LPEN at 0 range 10 .. 10;
SDIOLPEN at 0 range 11 .. 11;
SPI1LPEN at 0 range 12 .. 12;
SPI4LPEN at 0 range 13 .. 13;
SYSCFGLPEN at 0 range 14 .. 14;
Reserved_15_15 at 0 range 15 .. 15;
TIM9LPEN at 0 range 16 .. 16;
TIM10LPEN at 0 range 17 .. 17;
TIM11LPEN at 0 range 18 .. 18;
Reserved_19_19 at 0 range 19 .. 19;
SPI5LPEN at 0 range 20 .. 20;
SPI6LPEN at 0 range 21 .. 21;
SAI1LPEN at 0 range 22 .. 22;
Reserved_23_25 at 0 range 23 .. 25;
LTDCLPEN at 0 range 26 .. 26;
DSILPEN at 0 range 27 .. 27;
Reserved_28_31 at 0 range 28 .. 31;
end record;
-- BDCR_RTCSEL array
type BDCR_RTCSEL_Field_Array is array (0 .. 1) of Boolean
with Component_Size => 1, Size => 2;
-- Type definition for BDCR_RTCSEL
type BDCR_RTCSEL_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- RTCSEL as a value
Val : HAL.UInt2;
when True =>
-- RTCSEL as an array
Arr : BDCR_RTCSEL_Field_Array;
end case;
end record
with Unchecked_Union, Size => 2;
for BDCR_RTCSEL_Field use record
Val at 0 range 0 .. 1;
Arr at 0 range 0 .. 1;
end record;
-- Backup domain control register
type BDCR_Register is record
-- External low-speed oscillator enable
LSEON : Boolean := False;
-- Read-only. External low-speed oscillator ready
LSERDY : Boolean := False;
-- External low-speed oscillator bypass
LSEBYP : Boolean := False;
-- External low-speed oscillator mode
LSEMOD : Boolean := False;
-- unspecified
Reserved_4_7 : HAL.UInt4 := 16#0#;
-- RTC clock source selection
RTCSEL : BDCR_RTCSEL_Field := (As_Array => False, Val => 16#0#);
-- unspecified
Reserved_10_14 : HAL.UInt5 := 16#0#;
-- RTC clock enable
RTCEN : Boolean := False;
-- Backup domain software reset
BDRST : Boolean := False;
-- unspecified
Reserved_17_31 : HAL.UInt15 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for BDCR_Register use record
LSEON at 0 range 0 .. 0;
LSERDY at 0 range 1 .. 1;
LSEBYP at 0 range 2 .. 2;
LSEMOD at 0 range 3 .. 3;
Reserved_4_7 at 0 range 4 .. 7;
RTCSEL at 0 range 8 .. 9;
Reserved_10_14 at 0 range 10 .. 14;
RTCEN at 0 range 15 .. 15;
BDRST at 0 range 16 .. 16;
Reserved_17_31 at 0 range 17 .. 31;
end record;
-- clock control & status register
type CSR_Register is record
-- Internal low-speed oscillator enable
LSION : Boolean := False;
-- Read-only. Internal low-speed oscillator ready
LSIRDY : Boolean := False;
-- unspecified
Reserved_2_23 : HAL.UInt22 := 16#0#;
-- Remove reset flag
RMVF : Boolean := False;
-- BOR reset flag
BORRSTF : Boolean := True;
-- PIN reset flag
PADRSTF : Boolean := True;
-- POR/PDR reset flag
PORRSTF : Boolean := True;
-- Software reset flag
SFTRSTF : Boolean := False;
-- Independent watchdog reset flag
WDGRSTF : Boolean := False;
-- Window watchdog reset flag
WWDGRSTF : Boolean := False;
-- Low-power reset flag
LPWRRSTF : Boolean := False;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for CSR_Register use record
LSION at 0 range 0 .. 0;
LSIRDY at 0 range 1 .. 1;
Reserved_2_23 at 0 range 2 .. 23;
RMVF at 0 range 24 .. 24;
BORRSTF at 0 range 25 .. 25;
PADRSTF at 0 range 26 .. 26;
PORRSTF at 0 range 27 .. 27;
SFTRSTF at 0 range 28 .. 28;
WDGRSTF at 0 range 29 .. 29;
WWDGRSTF at 0 range 30 .. 30;
LPWRRSTF at 0 range 31 .. 31;
end record;
subtype SSCGR_MODPER_Field is HAL.UInt13;
subtype SSCGR_INCSTEP_Field is HAL.UInt15;
-- spread spectrum clock generation register
type SSCGR_Register is record
-- Modulation period
MODPER : SSCGR_MODPER_Field := 16#0#;
-- Incrementation step
INCSTEP : SSCGR_INCSTEP_Field := 16#0#;
-- unspecified
Reserved_28_29 : HAL.UInt2 := 16#0#;
-- Spread Select
SPREADSEL : Boolean := False;
-- Spread spectrum modulation enable
SSCGEN : Boolean := False;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for SSCGR_Register use record
MODPER at 0 range 0 .. 12;
INCSTEP at 0 range 13 .. 27;
Reserved_28_29 at 0 range 28 .. 29;
SPREADSEL at 0 range 30 .. 30;
SSCGEN at 0 range 31 .. 31;
end record;
subtype PLLI2SCFGR_PLLI2SN_Field is HAL.UInt9;
subtype PLLI2SCFGR_PLLI2SQ_Field is HAL.UInt4;
subtype PLLI2SCFGR_PLLI2SR_Field is HAL.UInt3;
-- PLLI2S configuration register
type PLLI2SCFGR_Register is record
-- unspecified
Reserved_0_5 : HAL.UInt6 := 16#0#;
-- PLLI2S multiplication factor for VCO
PLLI2SN : PLLI2SCFGR_PLLI2SN_Field := 16#C0#;
-- unspecified
Reserved_15_23 : HAL.UInt9 := 16#0#;
-- PLLI2S division factor for SAI1 clock
PLLI2SQ : PLLI2SCFGR_PLLI2SQ_Field := 16#0#;
-- PLLI2S division factor for I2S clocks
PLLI2SR : PLLI2SCFGR_PLLI2SR_Field := 16#2#;
-- unspecified
Reserved_31_31 : HAL.Bit := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for PLLI2SCFGR_Register use record
Reserved_0_5 at 0 range 0 .. 5;
PLLI2SN at 0 range 6 .. 14;
Reserved_15_23 at 0 range 15 .. 23;
PLLI2SQ at 0 range 24 .. 27;
PLLI2SR at 0 range 28 .. 30;
Reserved_31_31 at 0 range 31 .. 31;
end record;
subtype PLLSAICFGR_PLLSAIN_Field is HAL.UInt9;
subtype PLLSAICFGR_PLLSAIP_Field is HAL.UInt2;
subtype PLLSAICFGR_PLLSAIQ_Field is HAL.UInt4;
subtype PLLSAICFGR_PLLSAIR_Field is HAL.UInt3;
-- PLL configuration register
type PLLSAICFGR_Register is record
-- unspecified
Reserved_0_5 : HAL.UInt6 := 16#0#;
-- PLLSAI division factor for VCO
PLLSAIN : PLLSAICFGR_PLLSAIN_Field := 16#C0#;
-- unspecified
Reserved_15_15 : HAL.Bit := 16#0#;
-- PLLSAI division factor for 48 MHz clock
PLLSAIP : PLLSAICFGR_PLLSAIP_Field := 16#0#;
-- unspecified
Reserved_18_23 : HAL.UInt6 := 16#0#;
-- PLLSAI division factor for SAI1 clock
PLLSAIQ : PLLSAICFGR_PLLSAIQ_Field := 16#4#;
-- PLLSAI division factor for LCD clock
PLLSAIR : PLLSAICFGR_PLLSAIR_Field := 16#2#;
-- unspecified
Reserved_31_31 : HAL.Bit := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for PLLSAICFGR_Register use record
Reserved_0_5 at 0 range 0 .. 5;
PLLSAIN at 0 range 6 .. 14;
Reserved_15_15 at 0 range 15 .. 15;
PLLSAIP at 0 range 16 .. 17;
Reserved_18_23 at 0 range 18 .. 23;
PLLSAIQ at 0 range 24 .. 27;
PLLSAIR at 0 range 28 .. 30;
Reserved_31_31 at 0 range 31 .. 31;
end record;
subtype DCKCFGR_PLLIS2DIVQ_Field is HAL.UInt5;
subtype DCKCFGR_PLLSAIDIVQ_Field is HAL.UInt5;
subtype DCKCFGR_PLLSAIDIVR_Field is HAL.UInt2;
subtype DCKCFGR_SAI1ASRC_Field is HAL.UInt2;
subtype DCKCFGR_SAI1BSRC_Field is HAL.UInt2;
-- Dedicated Clock Configuration Register
type DCKCFGR_Register is record
-- PLLI2S division factor for SAIs clock
PLLIS2DIVQ : DCKCFGR_PLLIS2DIVQ_Field := 16#0#;
-- unspecified
Reserved_5_7 : HAL.UInt3 := 16#0#;
-- PLLSAI division factor for SAIs clock
PLLSAIDIVQ : DCKCFGR_PLLSAIDIVQ_Field := 16#0#;
-- unspecified
Reserved_13_15 : HAL.UInt3 := 16#0#;
-- PLLSAIDIVR
PLLSAIDIVR : DCKCFGR_PLLSAIDIVR_Field := 16#0#;
-- unspecified
Reserved_18_19 : HAL.UInt2 := 16#0#;
-- SAI1 clock source selection
SAI1ASRC : DCKCFGR_SAI1ASRC_Field := 16#0#;
-- SAI1-B clock source selection
SAI1BSRC : DCKCFGR_SAI1BSRC_Field := 16#0#;
-- Timers clocks prescalers selection
TIMPRE : Boolean := False;
-- unspecified
Reserved_25_26 : HAL.UInt2 := 16#0#;
-- 48 MHz clock source selection
MSEL : Boolean := False;
-- SDIO clock source selection
SDMMCSEL : Boolean := False;
-- DSI clock source selection
DSISEL : Boolean := False;
-- unspecified
Reserved_30_31 : HAL.UInt2 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for DCKCFGR_Register use record
PLLIS2DIVQ at 0 range 0 .. 4;
Reserved_5_7 at 0 range 5 .. 7;
PLLSAIDIVQ at 0 range 8 .. 12;
Reserved_13_15 at 0 range 13 .. 15;
PLLSAIDIVR at 0 range 16 .. 17;
Reserved_18_19 at 0 range 18 .. 19;
SAI1ASRC at 0 range 20 .. 21;
SAI1BSRC at 0 range 22 .. 23;
TIMPRE at 0 range 24 .. 24;
Reserved_25_26 at 0 range 25 .. 26;
MSEL at 0 range 27 .. 27;
SDMMCSEL at 0 range 28 .. 28;
DSISEL at 0 range 29 .. 29;
Reserved_30_31 at 0 range 30 .. 31;
end record;
-----------------
-- Peripherals --
-----------------
-- Reset and clock control
type RCC_Peripheral is record
-- clock control register
CR : aliased CR_Register;
-- PLL configuration register
PLLCFGR : aliased PLLCFGR_Register;
-- clock configuration register
CFGR : aliased CFGR_Register;
-- clock interrupt register
CIR : aliased CIR_Register;
-- AHB1 peripheral reset register
AHB1RSTR : aliased AHB1RSTR_Register;
-- AHB2 peripheral reset register
AHB2RSTR : aliased AHB2RSTR_Register;
-- AHB3 peripheral reset register
AHB3RSTR : aliased AHB3RSTR_Register;
-- APB1 peripheral reset register
APB1RSTR : aliased APB1RSTR_Register;
-- APB2 peripheral reset register
APB2RSTR : aliased APB2RSTR_Register;
-- AHB1 peripheral clock register
AHB1ENR : aliased AHB1ENR_Register;
-- AHB2 peripheral clock enable register
AHB2ENR : aliased AHB2ENR_Register;
-- AHB3 peripheral clock enable register
AHB3ENR : aliased AHB3ENR_Register;
-- APB1 peripheral clock enable register
APB1ENR : aliased APB1ENR_Register;
-- APB2 peripheral clock enable register
APB2ENR : aliased APB2ENR_Register;
-- AHB1 peripheral clock enable in low power mode register
AHB1LPENR : aliased AHB1LPENR_Register;
-- AHB2 peripheral clock enable in low power mode register
AHB2LPENR : aliased AHB2LPENR_Register;
-- AHB3 peripheral clock enable in low power mode register
AHB3LPENR : aliased AHB3LPENR_Register;
-- APB1 peripheral clock enable in low power mode register
APB1LPENR : aliased APB1LPENR_Register;
-- APB2 peripheral clock enabled in low power mode register
APB2LPENR : aliased APB2LPENR_Register;
-- Backup domain control register
BDCR : aliased BDCR_Register;
-- clock control & status register
CSR : aliased CSR_Register;
-- spread spectrum clock generation register
SSCGR : aliased SSCGR_Register;
-- PLLI2S configuration register
PLLI2SCFGR : aliased PLLI2SCFGR_Register;
-- PLL configuration register
PLLSAICFGR : aliased PLLSAICFGR_Register;
-- Dedicated Clock Configuration Register
DCKCFGR : aliased DCKCFGR_Register;
end record
with Volatile;
for RCC_Peripheral use record
CR at 16#0# range 0 .. 31;
PLLCFGR at 16#4# range 0 .. 31;
CFGR at 16#8# range 0 .. 31;
CIR at 16#C# range 0 .. 31;
AHB1RSTR at 16#10# range 0 .. 31;
AHB2RSTR at 16#14# range 0 .. 31;
AHB3RSTR at 16#18# range 0 .. 31;
APB1RSTR at 16#20# range 0 .. 31;
APB2RSTR at 16#24# range 0 .. 31;
AHB1ENR at 16#30# range 0 .. 31;
AHB2ENR at 16#34# range 0 .. 31;
AHB3ENR at 16#38# range 0 .. 31;
APB1ENR at 16#40# range 0 .. 31;
APB2ENR at 16#44# range 0 .. 31;
AHB1LPENR at 16#50# range 0 .. 31;
AHB2LPENR at 16#54# range 0 .. 31;
AHB3LPENR at 16#58# range 0 .. 31;
APB1LPENR at 16#60# range 0 .. 31;
APB2LPENR at 16#64# range 0 .. 31;
BDCR at 16#70# range 0 .. 31;
CSR at 16#74# range 0 .. 31;
SSCGR at 16#80# range 0 .. 31;
PLLI2SCFGR at 16#84# range 0 .. 31;
PLLSAICFGR at 16#88# range 0 .. 31;
DCKCFGR at 16#8C# range 0 .. 31;
end record;
-- Reset and clock control
RCC_Periph : aliased RCC_Peripheral
with Import, Address => System'To_Address (16#40023800#);
end STM32_SVD.RCC;
| 36.842402 | 79 | 0.556263 |
1eb7b07355533b61e2f06adb9544c0683555e88e | 36 | ada | Ada | bugs/bug07c.ada | daveshields/AdaEd | 57daecfb7ccadfd9aaf13b4d54f51065affbe599 | [
"BSD-4-Clause",
"BSD-3-Clause"
] | 3 | 2019-05-11T04:11:33.000Z | 2021-04-18T14:55:43.000Z | bugs/bug07c.ada | daveshields/AdaEd | 57daecfb7ccadfd9aaf13b4d54f51065affbe599 | [
"BSD-4-Clause",
"BSD-3-Clause"
] | null | null | null | bugs/bug07c.ada | daveshields/AdaEd | 57daecfb7ccadfd9aaf13b4d54f51065affbe599 | [
"BSD-4-Clause",
"BSD-3-Clause"
] | 2 | 2016-10-29T22:52:56.000Z | 2021-04-18T14:55:45.000Z | with u1, u3;
package u4 is
end u4;
| 7.2 | 13 | 0.666667 |
3dac947e26b032cba65613e81478d242e32ea984 | 25,623 | ads | Ada | project/src/avr-interrupts.ads | pvrego/adaino | 3b160a9006eddc8f25e8e55afea3df6b3cc6d3ca | [
"MIT"
] | 8 | 2015-05-04T20:26:24.000Z | 2021-03-09T02:38:57.000Z | project/src/avr-interrupts.ads | pvrego/adaino | 3b160a9006eddc8f25e8e55afea3df6b3cc6d3ca | [
"MIT"
] | null | null | null | project/src/avr-interrupts.ads | pvrego/adaino | 3b160a9006eddc8f25e8e55afea3df6b3cc6d3ca | [
"MIT"
] | 1 | 2015-08-19T14:21:40.000Z | 2015-08-19T14:21:40.000Z | with System;
-- =============================================================================
-- Package body AVR.INTERRUPTS
--
-- Maps the interrupts for the MCU micro-controller.
-- To attach an interrupt, proceed like
-- procedure Receive_Handler;
-- pragma Machine_Attribute
-- (Entity => Receive_Handler,
-- Attribute_Name => "signal");
-- pragma Export
-- (Convention => C,
-- Entity => Receive_Handler,
-- External_Name => <interrupt_vector_name>);
-- =============================================================================
package AVR.INTERRUPTS is
type External_Interrupt_Control_Type is
array (0 .. 7) of Bit_Array_Type (0 .. 1);
pragma Pack (External_Interrupt_Control_Type);
for External_Interrupt_Control_Type'Size use 2 * BYTE_SIZE;
Reg_EICR : External_Interrupt_Control_Type;
for Reg_EICR'Address use System'To_Address (16#69#);
type External_Interrupt_Mask_Register is new Bit_Array_Type (0 .. 7);
Reg_EIMSK : External_Interrupt_Mask_Register;
for Reg_EIMSK'Address use System'To_Address (16#3D#);
type External_Interrupt_Flag_Type is new Bit_Array_Type (0 .. 7);
Reg_EIFR : External_Interrupt_Flag_Type;
for Reg_EIFR'Address use System'To_Address (16#3C#);
type Pin_Change_Interrupt_Control_Register_Type is
new Bit_Array_Type (0 .. 7);
Reg_PCICR : Pin_Change_Interrupt_Control_Register_Type;
for Reg_PCICR'Address use System'To_Address (16#68#);
type Pin_Change_Interrupt_Flag_Type is new Bit_Array_Type (0 .. 7);
Reg_PCIFR : Pin_Change_Interrupt_Flag_Type;
for Reg_PCIFR'Address use System'To_Address (16#3B#);
type Pin_Change_Mask_Type is new Bit_Array_Type (0 .. 23);
Reg_PCMSK : Pin_Change_Mask_Type;
for Reg_PCMSK'Address use System'To_Address (16#6B#);
#if MCU="ATMEGA2560" then
RESET : constant String := "__vector_0"; -- External Pin, Power-on, Brown-out, Watchdog and JTAG AVR Reset
INT0 : constant String := "__vector_1"; -- External Interrupt Request 0
INT1 : constant String := "__vector_2"; -- External Interrupt Request 1
INT2 : constant String := "__vector_3"; -- External Interrupt Request 2
INT3 : constant String := "__vector_4"; -- External Interrupt Request 3
INT4 : constant String := "__vector_5"; -- External Interrupt Request 4
INT5 : constant String := "__vector_6"; -- External Interrupt Request 5
INT6 : constant String := "__vector_7"; -- External Interrupt Request 6
INT7 : constant String := "__vector_8"; -- External Interrupt Request 7
PCINT0 : constant String := "__vector_9"; -- Pin Change Interrupt Request 0
PCINT1 : constant String := "__vector_10"; -- Pin Change Interrupt Request 1
PCINT2 : constant String := "__vector_11"; -- Pin Change Interrupt Request 2
WDT : constant String := "__vector_12"; -- Watchdog Time-out Interrupt
TIMER2_COMPA : constant String := "__vector_13"; -- Timer/Counter2 Compare Match A
TIMER2_COMPB : constant String := "__vector_14"; -- Timer/Counter2 Compare Match B
TIMER2_OVF : constant String := "__vector_15"; -- Timer/Counter2 Overflow
TIMER1_CAPT : constant String := "__vector_16"; -- Timer/Counter1 Capture Event
TIMER1_COMPA : constant String := "__vector_17"; -- Timer/Counter1 Compare Match A
TIMER1_COMPB : constant String := "__vector_18"; -- Timer/Counter1 Compare Match B
TIMER1_COMPC : constant String := "__vector_19"; -- Timer/Counter1 Compare Match C
TIMER1_OVF : constant String := "__vector_20"; -- Timer/Counter1 Overflow
TIMER0_COMPA : constant String := "__vector_21"; -- Timer/Counter0 Compare Match A
TIMER0_COMPB : constant String := "__vector_22"; -- Timer/Counter0 Compare match B
TIMER0_OVF : constant String := "__vector_23"; -- Timer/Counter0 Overflow
SPI_STC : constant String := "__vector_24"; -- SPI Serial Transfer Complete
USART0_RX : constant String := "__vector_25"; -- USART0 Rx Complete
USART0_UDRE : constant String := "__vector_26"; -- USART0 Data Register Empty
USART0_TX : constant String := "__vector_27"; -- USART0 Tx Complete
ANALOG_COMP : constant String := "__vector_28"; -- Analog Comparator
ADC : constant String := "__vector_29"; -- ADC Conversion Complete
EE_READY : constant String := "__vector_30"; -- EEPROM Ready
TIMER3_CAPT : constant String := "__vector_31"; -- Timer/Counter3 Capture Event
TIMER3_COMPA : constant String := "__vector_32"; -- Timer/Counter3 Compare Match A
TIMER3_COMPB : constant String := "__vector_33"; -- Timer/Counter3 Compare Match B
TIMER3_COMPC : constant String := "__vector_34"; -- Timer/Counter3 Compare Match C
TIMER3_OVF : constant String := "__vector_35"; -- Timer/Counter3 Overflow
USART1_RX : constant String := "__vector_36"; -- USART1 Rx Complete
USART1_UDRE : constant String := "__vector_37"; -- USART1 Data Register Empty
USART1_TX : constant String := "__vector_38"; -- USART1 Tx Complete
TWI : constant String := "__vector_39"; -- 2-wire Serial Interface
SPM_READY : constant String := "__vector_40"; -- Store Program Memory Ready
TIMER4_CAPT : constant String := "__vector_41"; -- Timer/Counter4 Capture Event
TIMER4_COMPA : constant String := "__vector_42"; -- Timer/Counter4 Compare Match A
TIMER4_COMPB : constant String := "__vector_43"; -- Timer/Counter4 Compare Match B
TIMER4_COMPC : constant String := "__vector_44"; -- Timer/Counter4 Compare Match C
TIMER4_OVF : constant String := "__vector_45"; -- Timer/Counter4 Overflow
TIMER5_CAPT : constant String := "__vector_46"; -- Timer/Counter5 Capture Event
TIMER5_COMPA : constant String := "__vector_47"; -- Timer/Counter5 Compare Match A
TIMER5_COMPB : constant String := "__vector_48"; -- Timer/Counter5 Compare Match B
TIMER5_COMPC : constant String := "__vector_49"; -- Timer/Counter5 Compare Match C
TIMER5_OVF : constant String := "__vector_50"; -- Timer/Counter5 Overflow
USART2_RX : constant String := "__vector_51"; -- USART2 Rx Complete
USART2_UDRE : constant String := "__vector_52"; -- USART2 Data Register Empty
USART2_TX : constant String := "__vector_53"; -- USART2 Tx Complete
USART3_RX : constant String := "__vector_54"; -- USART3 Rx Complete
USART3_UDRE : constant String := "__vector_55"; -- USART3 Data Register Empty
USART3_TX : constant String := "__vector_56"; -- USART3 Tx Complete
#end if;
#if MCU="ATMEGA328P" then
RESET : constant String := "__vector_0"; -- External Pin, Power-on, Brown-out, Watchdog and System Reset
INT0 : constant String := "__vector_1"; -- External Interrupt Request 0
INT1 : constant String := "__vector_2"; -- External Interrupt Request 1
PCINT0 : constant String := "__vector_3"; -- Pin Change Interrupt Request 0
PCINT1 : constant String := "__vector_4"; -- Pin Change Interrupt Request 1
PCINT2 : constant String := "__vector_5"; -- Pin Change Interrupt Request 2
WDT : constant String := "__vector_6"; -- Watchdog Time-out Interrupt
TIMER2_COMPA : constant String := "__vector_7"; -- Timer/Counter2 Compare Match A
TIMER2_COMPB : constant String := "__vector_8"; -- Timer/Counter2 Compare Match B
TIMER2_OVF : constant String := "__vector_9"; -- Timer/Counter2 Overflow
TIMER1_CAPT : constant String := "__vector_10"; -- Timer/Counter1 Capture Event
TIMER1_COMPA : constant String := "__vector_11"; -- Timer/Counter1 Compare Match A
TIMER1_COMPB : constant String := "__vector_12"; -- Timer/Counter1 Compare Match B
TIMER1_OVF : constant String := "__vector_13"; -- Timer/Counter1 Overflow
TIMER0_COMPA : constant String := "__vector_14"; -- Timer/Counter0 Compare Match A
TIMER0_COMPB : constant String := "__vector_15"; -- Timer/Counter0 Compare match B
TIMER0_OVF : constant String := "__vector_16"; -- Timer/Counter0 Overflow
SPI_STC : constant String := "__vector_17"; -- SPI Serial Transfer Complete
USART0_RX : constant String := "__vector_18"; -- USART0 Rx Complete
USART0_UDRE : constant String := "__vector_19"; -- USART0 Data Register Empty
USART0_TX : constant String := "__vector_20"; -- USART0 Tx Complete
ADC : constant String := "__vector_21"; -- ADC Conversion Complete
EE_READY : constant String := "__vector_22"; -- EEPROM Ready
ANALOG_COMP : constant String := "__vector_23"; -- Analog Comparator
TWI : constant String := "__vector_24"; -- 2-wire Serial Interface
SPM_READY : constant String := "__vector_25"; -- Store Program Memory Ready
#end if;
procedure Enable;
procedure Disable;
procedure Handle_Interrupt_RESET is null;
pragma Machine_Attribute
(Entity => Handle_Interrupt_RESET,
Attribute_Name => "signal");
pragma Export
(Convention => C,
Entity => Handle_Interrupt_RESET,
External_Name => RESET);
procedure Handle_Interrupt_INT0 is null;
pragma Machine_Attribute
(Entity => Handle_Interrupt_INT0,
Attribute_Name => "signal");
pragma Export
(Convention => C,
Entity => Handle_Interrupt_INT0,
External_Name => INT0);
procedure Handle_Interrupt_INT1 is null;
pragma Machine_Attribute
(Entity => Handle_Interrupt_INT1,
Attribute_Name => "signal");
pragma Export
(Convention => C,
Entity => Handle_Interrupt_INT1,
External_Name => INT1);
#if MCU="ATMEGA2560" then
procedure Handle_Interrupt_INT2 is null;
pragma Machine_Attribute
(Entity => Handle_Interrupt_INT2,
Attribute_Name => "signal");
pragma Export
(Convention => C,
Entity => Handle_Interrupt_INT2,
External_Name => INT2);
procedure Handle_Interrupt_INT3 is null;
pragma Machine_Attribute
(Entity => Handle_Interrupt_INT3,
Attribute_Name => "signal");
pragma Export
(Convention => C,
Entity => Handle_Interrupt_INT3,
External_Name => INT3);
procedure Handle_Interrupt_INT4 is null;
pragma Machine_Attribute
(Entity => Handle_Interrupt_INT4,
Attribute_Name => "signal");
pragma Export
(Convention => C,
Entity => Handle_Interrupt_INT4,
External_Name => INT4);
procedure Handle_Interrupt_INT5 is null;
pragma Machine_Attribute
(Entity => Handle_Interrupt_INT5,
Attribute_Name => "signal");
pragma Export
(Convention => C,
Entity => Handle_Interrupt_INT5,
External_Name => INT5);
procedure Handle_Interrupt_INT6 is null;
pragma Machine_Attribute
(Entity => Handle_Interrupt_INT6,
Attribute_Name => "signal");
pragma Export
(Convention => C,
Entity => Handle_Interrupt_INT6,
External_Name => INT6);
procedure Handle_Interrupt_INT7 is null;
pragma Machine_Attribute
(Entity => Handle_Interrupt_INT7,
Attribute_Name => "signal");
pragma Export
(Convention => C,
Entity => Handle_Interrupt_INT7,
External_Name => INT7);
#end if;
procedure Handle_Interrupt_PCINT0 is null;
pragma Machine_Attribute
(Entity => Handle_Interrupt_PCINT0,
Attribute_Name => "signal");
pragma Export
(Convention => C,
Entity => Handle_Interrupt_PCINT0,
External_Name => PCINT0);
procedure Handle_Interrupt_PCINT1 is null;
pragma Machine_Attribute
(Entity => Handle_Interrupt_PCINT1,
Attribute_Name => "signal");
pragma Export
(Convention => C,
Entity => Handle_Interrupt_PCINT1,
External_Name => PCINT1);
procedure Handle_Interrupt_PCINT2 is null;
pragma Machine_Attribute
(Entity => Handle_Interrupt_PCINT2,
Attribute_Name => "signal");
pragma Export
(Convention => C,
Entity => Handle_Interrupt_PCINT2,
External_Name => PCINT2);
procedure Handle_Interrupt_WDT is null;
pragma Machine_Attribute
(Entity => Handle_Interrupt_WDT,
Attribute_Name => "signal");
pragma Export
(Convention => C,
Entity => Handle_Interrupt_WDT,
External_Name => WDT);
procedure Handle_Interrupt_TIMER2_COMPA is null;
pragma Machine_Attribute
(Entity => Handle_Interrupt_TIMER2_COMPA,
Attribute_Name => "signal");
pragma Export
(Convention => C,
Entity => Handle_Interrupt_TIMER2_COMPA,
External_Name => TIMER2_COMPA);
procedure Handle_Interrupt_TIMER2_COMPB is null;
pragma Machine_Attribute
(Entity => Handle_Interrupt_TIMER2_COMPB,
Attribute_Name => "signal");
pragma Export
(Convention => C,
Entity => Handle_Interrupt_TIMER2_COMPB,
External_Name => TIMER2_COMPB);
procedure Handle_Interrupt_TIMER2_OVF is null;
pragma Machine_Attribute
(Entity => Handle_Interrupt_TIMER2_OVF,
Attribute_Name => "signal");
pragma Export
(Convention => C,
Entity => Handle_Interrupt_TIMER2_OVF,
External_Name => TIMER2_OVF);
procedure Handle_Interrupt_TIMER1_CAPT is null;
pragma Machine_Attribute
(Entity => Handle_Interrupt_TIMER1_CAPT,
Attribute_Name => "signal");
pragma Export
(Convention => C,
Entity => Handle_Interrupt_TIMER1_CAPT,
External_Name => TIMER1_CAPT);
procedure Handle_Interrupt_TIMER1_COMPA is null;
pragma Machine_Attribute
(Entity => Handle_Interrupt_TIMER1_COMPA,
Attribute_Name => "signal");
pragma Export
(Convention => C,
Entity => Handle_Interrupt_TIMER1_COMPA,
External_Name => TIMER1_COMPA);
procedure Handle_Interrupt_TIMER1_COMPB is null;
pragma Machine_Attribute
(Entity => Handle_Interrupt_TIMER1_COMPB,
Attribute_Name => "signal");
pragma Export
(Convention => C,
Entity => Handle_Interrupt_TIMER1_COMPB,
External_Name => TIMER1_COMPB);
#if MCU="ATMEGA2560" then
procedure Handle_Interrupt_TIMER1_COMPC is null;
pragma Machine_Attribute
(Entity => Handle_Interrupt_TIMER1_COMPC,
Attribute_Name => "signal");
pragma Export
(Convention => C,
Entity => Handle_Interrupt_TIMER1_COMPC,
External_Name => TIMER1_COMPC);
#end if;
procedure Handle_Interrupt_TIMER1_OVF is null;
pragma Machine_Attribute
(Entity => Handle_Interrupt_TIMER1_OVF,
Attribute_Name => "signal");
pragma Export
(Convention => C,
Entity => Handle_Interrupt_TIMER1_OVF,
External_Name => TIMER1_OVF);
procedure Handle_Interrupt_TIMER0_COMPA is null;
pragma Machine_Attribute
(Entity => Handle_Interrupt_TIMER0_COMPA,
Attribute_Name => "signal");
pragma Export
(Convention => C,
Entity => Handle_Interrupt_TIMER0_COMPA,
External_Name => TIMER0_COMPA);
procedure Handle_Interrupt_TIMER0_COMPB is null;
pragma Machine_Attribute
(Entity => Handle_Interrupt_TIMER0_COMPB,
Attribute_Name => "signal");
pragma Export
(Convention => C,
Entity => Handle_Interrupt_TIMER0_COMPB,
External_Name => TIMER0_COMPB);
procedure Handle_Interrupt_TIMER0_OVF is null;
pragma Machine_Attribute
(Entity => Handle_Interrupt_TIMER0_OVF,
Attribute_Name => "signal");
pragma Export
(Convention => C,
Entity => Handle_Interrupt_TIMER0_OVF,
External_Name => TIMER0_OVF);
procedure Handle_Interrupt_SPI_STC is null;
pragma Machine_Attribute
(Entity => Handle_Interrupt_SPI_STC,
Attribute_Name => "signal");
pragma Export
(Convention => C,
Entity => Handle_Interrupt_SPI_STC,
External_Name => SPI_STC);
procedure Handle_Interrupt_USART0_RX;
pragma Machine_Attribute
(Entity => Handle_Interrupt_USART0_RX,
Attribute_Name => "signal");
pragma Export
(Convention => C,
Entity => Handle_Interrupt_USART0_RX,
External_Name => USART0_RX);
procedure Handle_Interrupt_USART0_UDRE is null;
pragma Machine_Attribute
(Entity => Handle_Interrupt_USART0_UDRE,
Attribute_Name => "signal");
pragma Export
(Convention => C,
Entity => Handle_Interrupt_USART0_UDRE,
External_Name => USART0_UDRE);
procedure Handle_Interrupt_USART0_TX is null;
pragma Machine_Attribute
(Entity => Handle_Interrupt_USART0_TX,
Attribute_Name => "signal");
pragma Export
(Convention => C,
Entity => Handle_Interrupt_USART0_TX,
External_Name => USART0_TX);
procedure Handle_Interrupt_ANALOG_COMP is null;
pragma Machine_Attribute
(Entity => Handle_Interrupt_ANALOG_COMP,
Attribute_Name => "signal");
pragma Export
(Convention => C,
Entity => Handle_Interrupt_ANALOG_COMP,
External_Name => ANALOG_COMP);
procedure Handle_Interrupt_ADC is null;
pragma Machine_Attribute
(Entity => Handle_Interrupt_ADC,
Attribute_Name => "signal");
pragma Export
(Convention => C,
Entity => Handle_Interrupt_ADC,
External_Name => ADC);
procedure Handle_Interrupt_EE_READY is null;
pragma Machine_Attribute
(Entity => Handle_Interrupt_EE_READY,
Attribute_Name => "signal");
pragma Export
(Convention => C,
Entity => Handle_Interrupt_EE_READY,
External_Name => EE_READY);
#if MCU="ATMEGA2560" then
procedure Handle_Interrupt_TIMER3_CAPT is null;
pragma Machine_Attribute
(Entity => Handle_Interrupt_TIMER3_CAPT,
Attribute_Name => "signal");
pragma Export
(Convention => C,
Entity => Handle_Interrupt_TIMER3_CAPT,
External_Name => TIMER3_CAPT);
procedure Handle_Interrupt_TIMER3_COMPA is null;
pragma Machine_Attribute
(Entity => Handle_Interrupt_TIMER3_COMPA,
Attribute_Name => "signal");
pragma Export
(Convention => C,
Entity => Handle_Interrupt_TIMER3_COMPA,
External_Name => TIMER3_COMPA);
procedure Handle_Interrupt_TIMER3_COMPB is null;
pragma Machine_Attribute
(Entity => Handle_Interrupt_TIMER3_COMPB,
Attribute_Name => "signal");
pragma Export
(Convention => C,
Entity => Handle_Interrupt_TIMER3_COMPB,
External_Name => TIMER3_COMPB);
procedure Handle_Interrupt_TIMER3_COMPC is null;
pragma Machine_Attribute
(Entity => Handle_Interrupt_TIMER3_COMPC,
Attribute_Name => "signal");
pragma Export
(Convention => C,
Entity => Handle_Interrupt_TIMER3_COMPC,
External_Name => TIMER3_COMPC);
procedure Handle_Interrupt_TIMER3_OVF is null;
pragma Machine_Attribute
(Entity => Handle_Interrupt_TIMER3_OVF,
Attribute_Name => "signal");
pragma Export
(Convention => C,
Entity => Handle_Interrupt_TIMER3_OVF,
External_Name => TIMER3_OVF);
procedure Handle_Interrupt_USART1_RX;
pragma Machine_Attribute
(Entity => Handle_Interrupt_USART1_RX,
Attribute_Name => "signal");
pragma Export
(Convention => C,
Entity => Handle_Interrupt_USART1_RX,
External_Name => USART1_RX);
procedure Handle_Interrupt_USART1_UDRE is null;
pragma Machine_Attribute
(Entity => Handle_Interrupt_USART1_UDRE,
Attribute_Name => "signal");
pragma Export
(Convention => C,
Entity => Handle_Interrupt_USART1_UDRE,
External_Name => USART1_UDRE);
procedure Handle_Interrupt_USART1_TX is null;
pragma Machine_Attribute
(Entity => Handle_Interrupt_USART1_TX,
Attribute_Name => "signal");
pragma Export
(Convention => C,
Entity => Handle_Interrupt_USART1_TX,
External_Name => USART1_TX);
#end if;
procedure Handle_Interrupt_TWI;
pragma Machine_Attribute
(Entity => Handle_Interrupt_TWI,
Attribute_Name => "signal");
pragma Export
(Convention => C,
Entity => Handle_Interrupt_TWI,
External_Name => TWI);
procedure Handle_Interrupt_SPM_READY is null;
pragma Machine_Attribute
(Entity => Handle_Interrupt_SPM_READY,
Attribute_Name => "signal");
pragma Export
(Convention => C,
Entity => Handle_Interrupt_SPM_READY,
External_Name => SPM_READY);
#if MCU="ATMEGA2560" then
procedure Handle_Interrupt_TIMER4_CAPT is null;
pragma Machine_Attribute
(Entity => Handle_Interrupt_TIMER4_CAPT,
Attribute_Name => "signal");
pragma Export
(Convention => C,
Entity => Handle_Interrupt_TIMER4_CAPT,
External_Name => TIMER4_CAPT);
procedure Handle_Interrupt_TIMER4_COMPA is null;
pragma Machine_Attribute
(Entity => Handle_Interrupt_TIMER4_COMPA,
Attribute_Name => "signal");
pragma Export
(Convention => C,
Entity => Handle_Interrupt_TIMER4_COMPA,
External_Name => TIMER4_COMPA);
procedure Handle_Interrupt_TIMER4_COMPB is null;
pragma Machine_Attribute
(Entity => Handle_Interrupt_TIMER4_COMPB,
Attribute_Name => "signal");
pragma Export
(Convention => C,
Entity => Handle_Interrupt_TIMER4_COMPB,
External_Name => TIMER4_COMPB);
procedure Handle_Interrupt_TIMER4_COMPC is null;
pragma Machine_Attribute
(Entity => Handle_Interrupt_TIMER4_COMPC,
Attribute_Name => "signal");
pragma Export
(Convention => C,
Entity => Handle_Interrupt_TIMER4_COMPC,
External_Name => TIMER4_COMPC);
procedure Handle_Interrupt_TIMER4_OVF;
pragma Machine_Attribute
(Entity => Handle_Interrupt_TIMER4_OVF,
Attribute_Name => "signal");
pragma Export
(Convention => C,
Entity => Handle_Interrupt_TIMER4_OVF,
External_Name => TIMER4_OVF);
procedure Handle_Interrupt_TIMER5_CAPT is null;
pragma Machine_Attribute
(Entity => Handle_Interrupt_TIMER5_CAPT,
Attribute_Name => "signal");
pragma Export
(Convention => C,
Entity => Handle_Interrupt_TIMER5_CAPT,
External_Name => TIMER5_CAPT);
procedure Handle_Interrupt_TIMER5_COMPA is null;
pragma Machine_Attribute
(Entity => Handle_Interrupt_TIMER5_COMPA,
Attribute_Name => "signal");
pragma Export
(Convention => C,
Entity => Handle_Interrupt_TIMER5_COMPA,
External_Name => TIMER5_COMPA);
procedure Handle_Interrupt_TIMER5_COMPB is null;
pragma Machine_Attribute
(Entity => Handle_Interrupt_TIMER5_COMPB,
Attribute_Name => "signal");
pragma Export
(Convention => C,
Entity => Handle_Interrupt_TIMER5_COMPB,
External_Name => TIMER5_COMPB);
procedure Handle_Interrupt_TIMER5_COMPC is null;
pragma Machine_Attribute
(Entity => Handle_Interrupt_TIMER5_COMPC,
Attribute_Name => "signal");
pragma Export
(Convention => C,
Entity => Handle_Interrupt_TIMER5_COMPC,
External_Name => TIMER5_COMPC);
procedure Handle_Interrupt_TIMER5_OVF is null;
pragma Machine_Attribute
(Entity => Handle_Interrupt_TIMER5_OVF,
Attribute_Name => "signal");
pragma Export
(Convention => C,
Entity => Handle_Interrupt_TIMER5_OVF,
External_Name => TIMER5_OVF);
procedure Handle_Interrupt_USART2_RX;
pragma Machine_Attribute
(Entity => Handle_Interrupt_USART2_RX,
Attribute_Name => "signal");
pragma Export
(Convention => C,
Entity => Handle_Interrupt_USART2_RX,
External_Name => USART2_RX);
procedure Handle_Interrupt_USART2_UDRE is null;
pragma Machine_Attribute
(Entity => Handle_Interrupt_USART2_UDRE,
Attribute_Name => "signal");
pragma Export
(Convention => C,
Entity => Handle_Interrupt_USART2_UDRE,
External_Name => USART2_UDRE);
procedure Handle_Interrupt_USART2_TX is null;
pragma Machine_Attribute
(Entity => Handle_Interrupt_USART2_TX,
Attribute_Name => "signal");
pragma Export
(Convention => C,
Entity => Handle_Interrupt_USART2_TX,
External_Name => USART2_TX);
procedure Handle_Interrupt_USART3_RX;
pragma Machine_Attribute
(Entity => Handle_Interrupt_USART3_RX,
Attribute_Name => "signal");
pragma Export
(Convention => C,
Entity => Handle_Interrupt_USART3_RX,
External_Name => USART3_RX);
procedure Handle_Interrupt_USART3_UDRE is null;
pragma Machine_Attribute
(Entity => Handle_Interrupt_USART3_UDRE,
Attribute_Name => "signal");
pragma Export
(Convention => C,
Entity => Handle_Interrupt_USART3_UDRE,
External_Name => USART3_UDRE);
procedure Handle_Interrupt_USART3_TX is null;
pragma Machine_Attribute
(Entity => Handle_Interrupt_USART3_TX,
Attribute_Name => "signal");
pragma Export
(Convention => C,
Entity => Handle_Interrupt_USART3_TX,
External_Name => USART3_TX);
#end if;
end AVR.INTERRUPTS;
| 38.415292 | 116 | 0.666784 |
2e25c002f71ed90435d740c3ab9ad8c94589bca4 | 669 | ads | Ada | examples/tcp_servers.ads | reznikmm/coroutines | 52dd5d483f09d69cdc133910e49d13664cf05d80 | [
"MIT"
] | 3 | 2019-11-11T06:35:21.000Z | 2019-11-13T13:34:56.000Z | examples/tcp_servers.ads | reznikmm/coroutines | 52dd5d483f09d69cdc133910e49d13664cf05d80 | [
"MIT"
] | null | null | null | examples/tcp_servers.ads | reznikmm/coroutines | 52dd5d483f09d69cdc133910e49d13664cf05d80 | [
"MIT"
] | null | null | null | -- Copyright (c) 2019 Maxim Reznik <[email protected]>
--
-- SPDX-License-Identifier: MIT
-- License-Filename: LICENSE
-------------------------------------------------------------
with System.Storage_Elements;
with GNAT.Sockets;
package TCP_Servers is
type TCP_Coroutine is access procedure (Socket : GNAT.Sockets.Socket_Type);
procedure Listen_Port
(Port : GNAT.Sockets.Port_Type;
Run : not null TCP_Coroutine;
Stack : System.Storage_Elements.Storage_Count);
-- Start new coroutine, that will listen given Port and start Run coroutine
-- on each connect. Use given Stack size for both kinds of coroutines.
end TCP_Servers;
| 29.086957 | 79 | 0.665172 |
1e1bc59acd6b77465196f922c9774732037cb68c | 4,980 | ads | Ada | support/MinGW/lib/gcc/mingw32/9.2.0/adainclude/a-strsea.ads | orb-zhuchen/Orb | 6da2404b949ac28bde786e08bf4debe4a27cd3a0 | [
"CNRI-Python-GPL-Compatible",
"MIT"
] | null | null | null | support/MinGW/lib/gcc/mingw32/9.2.0/adainclude/a-strsea.ads | orb-zhuchen/Orb | 6da2404b949ac28bde786e08bf4debe4a27cd3a0 | [
"CNRI-Python-GPL-Compatible",
"MIT"
] | null | null | null | support/MinGW/lib/gcc/mingw32/9.2.0/adainclude/a-strsea.ads | orb-zhuchen/Orb | 6da2404b949ac28bde786e08bf4debe4a27cd3a0 | [
"CNRI-Python-GPL-Compatible",
"MIT"
] | null | null | null | ------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- A D A . S T R I N G S . S E A R C H --
-- --
-- S p e c --
-- --
-- Copyright (C) 1992-2019, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception, --
-- version 3.1, as published by the Free Software Foundation. --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
-- This package contains the search functions from Ada.Strings.Fixed. They
-- are separated out because they are shared by Ada.Strings.Bounded and
-- Ada.Strings.Unbounded, and we don't want to drag in other irrelevant stuff
-- from Ada.Strings.Fixed when using the other two packages. We make this a
-- private package, since user programs should access these subprograms via
-- one of the standard string packages.
with Ada.Strings.Maps;
private package Ada.Strings.Search is
pragma Preelaborate;
function Index
(Source : String;
Pattern : String;
Going : Direction := Forward;
Mapping : Maps.Character_Mapping := Maps.Identity) return Natural;
function Index
(Source : String;
Pattern : String;
Going : Direction := Forward;
Mapping : Maps.Character_Mapping_Function) return Natural;
function Index
(Source : String;
Set : Maps.Character_Set;
Test : Membership := Inside;
Going : Direction := Forward) return Natural;
function Index
(Source : String;
Pattern : String;
From : Positive;
Going : Direction := Forward;
Mapping : Maps.Character_Mapping := Maps.Identity) return Natural;
function Index
(Source : String;
Pattern : String;
From : Positive;
Going : Direction := Forward;
Mapping : Maps.Character_Mapping_Function) return Natural;
function Index
(Source : String;
Set : Maps.Character_Set;
From : Positive;
Test : Membership := Inside;
Going : Direction := Forward) return Natural;
function Index_Non_Blank
(Source : String;
Going : Direction := Forward) return Natural;
function Index_Non_Blank
(Source : String;
From : Positive;
Going : Direction := Forward) return Natural;
function Count
(Source : String;
Pattern : String;
Mapping : Maps.Character_Mapping := Maps.Identity) return Natural;
function Count
(Source : String;
Pattern : String;
Mapping : Maps.Character_Mapping_Function) return Natural;
function Count
(Source : String;
Set : Maps.Character_Set) return Natural;
procedure Find_Token
(Source : String;
Set : Maps.Character_Set;
From : Positive;
Test : Membership;
First : out Positive;
Last : out Natural);
procedure Find_Token
(Source : String;
Set : Maps.Character_Set;
Test : Membership;
First : out Positive;
Last : out Natural);
end Ada.Strings.Search;
| 40.819672 | 78 | 0.511245 |
136c82f04252f58a84e53f6d28baa4389ba4f1ed | 26,432 | ads | Ada | src/spark_unbound-arrays.ads | mhatzl/spark_unbound | 21d6b80516c9a494a2d7db6b2a62ee226e9a98c1 | [
"MIT"
] | 8 | 2022-01-27T14:16:48.000Z | 2022-02-01T16:35:35.000Z | src/spark_unbound-arrays.ads | mhatzl/spark_unbound | 21d6b80516c9a494a2d7db6b2a62ee226e9a98c1 | [
"MIT"
] | 2 | 2021-12-13T08:13:22.000Z | 2022-02-06T17:59:57.000Z | src/spark_unbound-arrays.ads | mhatzl/spark_unbound | 21d6b80516c9a494a2d7db6b2a62ee226e9a98c1 | [
"MIT"
] | null | null | null | with Ada.Numerics.Big_Numbers.Big_Integers; use Ada.Numerics.Big_Numbers.Big_Integers;
--- @summary
--- This package is intended as a safe and proven alternative to `Ada.Containers.Vector`.
---
--- @description
--- This package offers proven functions/procedures for an unbound array that are inspired by the `Ada.Containers.Vector` package.
---
--- Note: The range of `Index_Type` must be smaller than `Natural'Range_Length` since `Capacity' and `Length` return type `Natural`.
--- This is NOT enforced by the compiler!
generic
type Element_Type is private;
type Index_Type is range <>;
with function "=" (Left, Right : Element_Type) return Boolean is <>;
--- Function used to compare elements inside `Unbound_Array`s.
--- @param Left Element that is compared against `Right`.
--- @param Right Element that is comparef against `Left`.
--- @return `True` if `Left` and `Right` are equal.
package Spark_Unbound.Arrays with SPARK_Mode is
use Spark_Unbound;
package Index_Type_To_Big is new Signed_Conversions(Int => Index_Type);
-- needed to use `Self.Arr.all'Old` to prove some contracts
pragma Unevaluated_Use_Of_Old (Allow);
-- Type and variabble definitions ------------------------------------------------------------------------------------
-- Note: Having Last and Arr of some private type would be better, but then Pre and Post contracts get really messy
--- Type to provide the possibility of one invalid index.
subtype Extended_Index is
Index_Type'Base range
Index_Type'First-1 .. Index_Type'Min (Index_Type'Base'Last - 1, Index_Type'Last) + 1;
--- Index used to indicate 'out of range`.
No_Index : constant Extended_Index := Extended_Index'First;
--- Note: Type should be treated as private.
type Array_Type is array(Index_Type range <>) of Element_Type;
--- Note: Type should be treated as private.
type Array_Acc is access Array_Type;
--- Main type for `Unbound_Array` handling.
---
--- Note: `Last` and `Arr` should not be changed manually.
--- @field Last Index of the last valid entry in Arr.all.
--- @field Arr Reference to the underlying allocated array.
type Unbound_Array is record
Last : Extended_Index := No_Index;
Arr : Array_Acc := null;
end record
with Dynamic_Predicate => (if Arr = null then
Last = No_Index
else
(Arr.all'First = Index_Type'First
and then Arr.all'First <= Arr.all'Last
and then (if Arr.all'Length <= 0 then Last = No_Index else Last <= Arr.all'Last)));
-- Unbound_Array creations ------------------------------------------------------------------------------
--- Sets up a new `Unbound_Array` with `Initial_Capacity` as capacity.
---
--- Complexity: O(1) => Only allocates the array without setting any value
--- @param Initial_Capacity Tries to allocate an `Unbound_Array` with `Capacity(To_Unbound_Array'Result) = Initial_Capacity`.
--- @return `Unbound_Array` with `Capacity(To_Unbound_Array'Result) = Initial_Capacity` if allocation was successful, or `To_Unbound_Array'Result.Arr = null`.
function To_Unbound_Array (Initial_Capacity : Long_Positive) return Unbound_Array
with Pre => Ghost_In_Index_Range(Initial_Capacity),
Post => (if To_Unbound_Array'Result.Arr /= null then Capacity(To_Unbound_Array'Result) = Long_Natural(Initial_Capacity)
and then To_Unbound_Array'Result.Arr.all'First = Index_Type'First and then To_Unbound_Array'Result.Arr.all'Last = Get_Capacity_Offset(Initial_Capacity)
else Capacity(To_Unbound_Array'Result) = Long_Natural'First);
-- Procedures/Functions ----------------------------------------------------------------------------------
--- This function calculates the `Index_Type` for `Offset + Index_Type'Last`.
---
--- Complexity: O(1) => Integer calculation.
--- @param Offset The vallue added to `Index_Type'First`.
--- @return `Offset + Index_Type'First`.
function Get_Capacity_Offset (Offset : Long_Positive) return Index_Type
with Pre => Ghost_In_Index_Range(Offset),
Post => Index_Type_To_Big.To_Big_Integer(Get_Capacity_Offset'Result)
= Index_Type_To_Big.To_Big_Integer(Index_Type'First) + (Long_Positive_To_Big.To_Big_Integer(Offset) - Long_Positive_To_Big.To_Big_Integer(Long_Positive'First));
--- This function compares two `Unbound_Array`s by comparing each element (using the generic formal equality operator)
--- if `Left` and `Right` have the same length.
---
--- Note: The capacity can be different and `Left` and `Right` are still considered equal.
---
--- Complexity: O(n) => All elements might be compared.
--- @param Left `Unbound_Array` compared against `Right`.
--- @param Right `Unbound_Array` compared against `Left`.
--- @return `True` if `Left` and `Right` have the same elements in the same sequence. Otherwise, `False` is returned.
function "=" (Left, Right : Unbound_Array) return Boolean
with Global => null, Post => (if "="'Result then (Left.Arr = null and then Right.Arr = null)
or else (Last_Index(Left) = Last_Index(Right) and then First_Index(Left) = First_Index(Right)
and then (Left.Arr /= null and then Right.Arr /= null
and then (for all I in First_Index(Left) .. Last_Index(Left)
=> Element(Left,I) = Element(Right,I))))
else ((Left.Arr = null and then Right.Arr /= null)
or else (Left.Arr /= null and then Right.Arr = null)
or else Last_Index(Left) /= Last_Index(Right)
or else First_Index(Left) /= First_Index(Right)
or else (for some I in First_Index(Left) .. Last_Index(Left) => Element(Left,I) /= Element(Right,I))));
--- This function returns the capacity of `Self`.
---
--- Complexity: O(1) => Size of underlying array is always known.
--- @param Self Instance of an `Unbound_Array`.
--- @return The capacity of `Self` (More precise: The length of the underlying allocated array).
function Capacity (Self : Unbound_Array) return Long_Natural
with Post => (if Self.Arr /= null then Capacity'Result = Ghost_Acc_Length(Self.Arr) else Capacity'Result = Long_Natural'First);
-- procedure Reserve_Capacity (Self : in out Unbound_Array; New_Capacity : in Positive; Default_Item : Element_Type; Success: out Boolean)
-- with Pre => New_Capacity > Length(Self),
-- Post => (if Success then Capacity(Self) = New_Capacity else Ghost_Last_Array'Length = Capacity(Self));
--- This procedure tries to move the content of `Self` to an `Unbound_Array` of a smaller capacity.
---
--- Note: `Self` remains unchanged if `Success = False`.
---
--- Complexity: O(n) => All elements are moved, but allocation might fail before.
--- @param Self Instance of an `Unbound_Array`.
--- @param New_Capacity The new capacity `Self` should be shrunken to.
--- @param Success `True` if `Self` got shrunken or `False` if the content of `Self` could not be moved.
procedure Shrink (Self : in out Unbound_Array; New_Capacity : Long_Natural; Success : out Boolean)
with Pre => Self.Arr /= null and then New_Capacity >= Length(Self) and then New_Capacity < Capacity(Self),
Post => (If New_Capacity = 0 and then Success then Capacity(Self) = Long_Natural'First and then Last_Index(Self) = No_Index
else Self.Arr /= null and then Self.Last = Self.Last'Old
and then (if Self.Last'Old > No_Index then Ghost_Arr_Equals(Left => Self.Arr.all, Right => Self.Arr.all'Old, First => First_Index(Self), Last => Last_Index(Self)))
and then (if Success then Capacity(Self) = New_Capacity));
--- This function returns the number of elements inside `Self`.
---
--- Complexity: O(1) => First_Index(Self) and Last_Index(Self) is always known.
--- @param Self Instance of an `Unbound_Array`.
--- @return Number of elements inside `Self`.
function Length (Self : Unbound_Array) return Long_Natural
with Post => (if Last_Index(Self) = No_Index or else Capacity(Self) = Long_Natural'First then Length'Result = Long_Natural'First
else (if First_Index(Self) > Last_Index(Self) then Length'Result = Long_Natural'First
else Length'Result = Long_Natural(abs(Long_Integer(Last_Index(Self)) - Long_Integer(First_Index(Self))) + 1)));
--- This function denotes if `Self` as no elements.
---
--- Complexity: O(1) => Length(Self) is always known.
--- @param Self Instance of an `Unbound_Array`.
--- @return `True` if `Self` has no elements, or `False` if `Self` has at least one element.
function Is_Empty (Self : Unbound_Array) return Boolean
with Post => (if Last_Index(Self) = No_Index then Is_Empty'Result = True else Is_Empty'Result = False);
--- This procedure deallocates the underlying array of `Self` and sets `Self.Last = No_Index`.
---
--- Complexity: O(1) => Unchecked_Deallocation of underlying array.
--- @param Self Instance of an `Unbound_Array`.
procedure Clear (Self : in out Unbound_Array)
with Post => Self.Arr = null and then Self.Last = No_Index;
--- This function returns the element inside `Self` at index `Index`.
---
--- Complexity: O(1) => Index access on array is constant time.
--- @param Self Instance of an `Unbound_Array`.
--- @param Index Array index for the element that should be returned.
--- @return The element inside `Self` at index `Index`.
function Element (Self : Unbound_Array; Index : Index_Type) return Element_Type
with Pre => Last_Index(Self) > No_Index and then Last_Index(Self) >= Index and then First_Index(Self) <= Index,
Post => Element'Result = Self.Arr.all(Index);
--- This procedure replaces the element inside `Self` at index `Index` with `New_Item`.
---
--- Complexity: O(1) => Index access on array is constant time.
--- @param Self Instance of an `Unbound_Array`.
--- @param Index Array index for the element that should be replaced.
--- @param New_Item Value that is set for the element at index `Index`.
procedure Replace_Element (Self : in out Unbound_Array; Index : in Index_Type; New_Item : in Element_Type)
with Pre => Last_Index(Self) > No_Index and then Last_Index(Self) >= Index and then First_Index(Self) <= Index,
Post => Element(Self, Index) = New_Item;
-- procedure Update_Element
-- (Self : in out Unbound_Array;
-- Index : in Index_Type;
-- Process : not null access procedure (Process_Element : in out Element_Type))
-- with Pre => First_Index <= Index and then Last_Index(Self) >= Index; --,
-- Post => Element(Self, Index) = Process_Element; -- Not sure how to prove that Process_Element got changed correctly
--- Procedure that tries to copy elements of `Source` to `Target`.
---
--- Note: `Target` is set to `Target.Arr = null` and `Target.Last = No_Index` if `Success = False`. `Source` remains unchanged.
---
--- Complexity: O(n) => All elements must be copied, but allocation might fail before.
--- @param Target Instance of an `Unbound_Array` with `Target = Source` and `Capacity(Target) = Capacity(Source)` on `Success = True`.
--- @param Source Instance of an `Unbound_Array` that is copied to `Target`.
--- @param Success `True` if all elements of `Source` were copied to `Target`.
procedure Copy (Target : out Unbound_Array; Source : Unbound_Array; Success: out Boolean)
with Post => (if Success then Target = Source and then Capacity(Target) = Capacity(Source)
else (Target.Last = No_Index and then Target.Arr = null));
--- Procedure that tries to move elements of `Source` to `Target`.
---
--- Note: `Capacity(Target)` can be different to `Capacity(Source)`, but all elements of `Source` must fit inside `Target`.
---
--- Complexity: Theta(n) => Alle elements of `Source` must be copied.
--- @param Target Instance of `Unbound_Array` with all elements of `Source` being moved to.
--- @param Source Instance of `Unbound_Array` that is cleared at the end of `Move`.
procedure Move (Target : in out Unbound_Array; Source : in out Unbound_Array)
with Pre => Source.Arr /= null and then Target.Arr /= null and then Last_Index(Source) /= No_Index
and then Capacity(Target) > Long_Natural'First and then First_Index(Source) = First_Index(Target)
and then Ghost_In_Index_Range(Long_Positive(Capacity(Target))) and then Last_Index(Source) <= Get_Capacity_Offset(Long_Positive(Capacity(Target))),
Post => Capacity(Target) = Ghost_Arr_Length(Target.Arr.all'Old)
and then Source.Arr = null and then Source.Last = No_Index
and then Target.Last = Source.Last'Old and then Ghost_Arr_Equals(Left => Target.Arr.all, Right => Source.Arr.all'Old, First => First_Index(Target), Last => Last_Index(Target));
-- else (Target.Last = Target.Last'Old and then Ghost_Arr_Equals(Left => Target.Arr.all'Old, Right => Target.Arr.all, First => Target.Arr.all'First, Last => Target.Arr.all'Last)
-- and then Source.Last = Source.Last'Old and then Ghost_Arr_Equals(Left => Source.Arr.all'Old, Right => Source.Arr.all, First => Source.Arr.all'First, Last => Source.Arr.all'Last)));
-- procedure Insert (Self : in out Unbound_Array;
-- Before : in Extended_Index;
-- New_Item : in Unbound_Array; Success: out Boolean);
--
-- procedure Insert (Container : in out Unbound_Array;
-- Before : in Extended_Index;
-- New_Item : in Element_Type; Success: out Boolean);
--
-- procedure Prepend (Self : in out Unbound_Array;
-- New_Item : in Unbound_Array; Success: out Boolean);
--
-- procedure Prepend (Self : in out Unbound_Array;
-- New_Item : in Element_Type; Success: out Boolean);
--
-- procedure Append (Self : in out Unbound_Array;
-- New_Item : in Unbound_Array; Success: out Boolean);
--- Procedure that tries to append `New_Item` to `Self`.
---
--- Note: The underlying array of `Self` is tried to be increased automatically if `Capacity(Self) = Length(Self)`.
---
--- Complexity: O(n) => `Capacity(Self)` is tried to be doubled if `Capacity(Self) = Length(Self)` is reached.
--- @param Self Instance of an `Unbound_Array`.
--- @param New_Item Element that is appended to `Self` if `Success = True`.
--- @param Success `True` if `New_Item` got appended to `Self`.
procedure Append (Self : in out Unbound_Array; New_Item : in Element_Type; Success: out Boolean)
with Pre => Self.Arr /= null and then In_Range(Arg => Long_Natural_To_Big.To_Big_Integer(Capacity(Self)),
Low => Long_Natural_To_Big.To_Big_Integer(Long_Natural'First),
High => abs(Index_Type_To_Big.To_Big_Integer(Index_Type'Last) - Index_Type_To_Big.To_Big_Integer(Index_Type'First))),
Post => (if Success then
Self.Arr /= null and then Last_Element(Self) = New_Item and then Self.Last = Self.Last'Old + 1
and then (if Self.Last'Old /= No_Index then Ghost_Arr_Equals(Left => Self.Arr.all, Right => Self.Arr.all'Old, First => First_Index(Self), Last => Self.Last'Old))
elsif Self.Arr = null then Self.Last = No_Index
else (Self.Last = Self.Last'Old and then Ghost_Arr_Equals(Left => Self.Arr.all, Right => Self.Arr.all'Old, First => First_Index(Self), Last => Last_Index(Self))));
-- procedure Delete (Self : in out Unbound_Array;
-- Index : in Extended_Index;
-- Count : in Positive := 1)
-- with Pre => (Extended_Index'Last >= Extended_Index(Count) and then Index <= (Extended_Index'Last - Extended_Index(Count)) and then
-- First_Index <= Index and then Last_Index(Self) >= (Index + Extended_Index(Count))),
-- Post => (Length(Ghost_Last_Array) - Count_Type(Count) = Length(Self) and then
-- (for all I in First_Index .. Last_Index(Self)
-- => Element(Self, I) = Element(Ghost_Last_Array,I)));
-- mhatzl
-- procedure Delete_First (Self : in out Unbound_Array;
-- Count : in Positive := 1);
--- This procedure deletes the last `Count` elements inside `Self`.
---
--- Complexity: O(1) => Only `Last_Index(Self)` is reduced.
--- @param Self Instance of an `Unbound_Array`.
--- @param Count Number of elements to delete.
procedure Delete_Last (Self : in out Unbound_Array; Count : in Long_Positive := 1)
with Pre => Self.Arr /= null and then Length(Self) >= Long_Natural(Count),
Post => Long_Integer(Self.Last'Old) - Long_Integer(Self.Last) = Count
and then (if Last_Index(Self) > No_Index then
Ghost_Arr_Equals(Left => Self.Arr.all, Right => Self.Arr.all'Old, First => First_Index(Self), Last => Last_Index(Self))
else Is_Empty(Self));
-- procedure Reverse_Elements (Self : in out Unbound_Array);
--
-- procedure Swap (Self : in out Unbound_Array;
-- I, J : in Index_Type);
--- This function returns the first index of `Self`.
---
--- Complexity: O(1) => First index is fixed.
--- @param Self Instance of an `Unbound_Array`.
--- @return The first index of `Self`.
function First_Index (Self : Unbound_Array) return Index_Type
with Inline, Post => (if Self.Arr = null then First_Index'Result = Index_Type'First else First_Index'Result = Self.Arr.all'First);
--- This function returns the element at `First_Index(Self)`.
---
--- Complexity: O(1) => Array access is constant time.
--- @param Self Instance of an `Unbound_Array`.
--- @return The first element of `Self`.
function First_Element (Self : Unbound_Array) return Element_Type
with Pre => Self.Arr /= null and then Self.Last /= No_Index and then Length(Self) > Long_Natural'First,
Post => First_Element'Result = Self.Arr.all(First_Index(Self));
--- This function returns the last index of `Self`.
---
--- Complexity: O(1) => `Last_Index(Self)` is kept with `Self.Last`.
--- @param Self Instance of an `Unbound_Array`.
--- @return The last index of `Self`.
function Last_Index (Self : Unbound_Array) return Extended_Index
with Post => (Last_Index'Result = Self.Last and then (if Self.Arr = null then Last_Index'Result = No_Index
elsif Self.Arr.all'Length > 0 then Last_Index'Result <= Self.Arr.all'Last else Last_Index'Result = No_Index)), Inline;
--- This function returns the element at `Last_Index(Self)`.
---
--- Complexity: O(1) => Array access is constant time.
--- @param Self Instance of an `Unbound_Array`.
--- @return The last element of `Self`.
function Last_Element (Self : Unbound_Array) return Element_Type
with Pre => Self.Arr /= null and then Last_Index(Self) > No_Index and then Length(Self) > Long_Natural'First,
Post => Last_Element'Result = Self.Arr.all(Last_Index(Self));
--- This function searches the elements of `Self` for an element equal to `Item` (using the generic formal equality operator).
--- The search starts at position `Index` and proceeds towards `Last_Index(Self)`.
--- If no equal element is found, then `Find_Index` returns `No_Index`. Otherwise, it returns the index of the first equal element encountered.
---
--- Note: Same behavior as `Find_Index` defined in `Ada.Containers.Vectors` [RM-A-18-2].
---
--- Complexity: O(n) => All elements might get compared against `Item`.
--- @param Self Instance of an `Unbound_Array`.
--- @param Item Element that is searched for in `Self`.
--- @param Index Array index to start searching towards `Last_Index(Self)` for `Item`.
--- @return `No_Index` if `Item` was not found, or the index `I` where `Element(Self, I) = Item`.
function Find_Index (Self : Unbound_Array; Item : Element_Type; Index : Index_Type := Index_Type'First) return Extended_Index
with Pre => Last_Index(Self) >= Index and then First_Index(Self) <= Index,
Post => (if Find_Index'Result /= No_Index then Element(Self,Find_Index'Result) = Item
else (Last_Index(Self) = No_Index or else (for all I in Index .. Last_Index(Self) => Element(Self, I) /= Item)));
-- mhatzl
-- function Reverse_Find_Index (Self : Unbound_Array;
-- Item : Element_Type;
-- Index : Index_Type := Index_Type'Last)
-- return Extended_Index;
--- This function searches the elements of `Self` for an element equal to `Item` (using the generic formal equality operator).
--- The search starts at position `Index` and proceeds towards `Last_Index(Self)`.
--- If no equal element is found, then `Contains` returns `False`. Otherwise, `Contains` returns true.
---
--- Complexity: O(n) => All elements might get compared against `Item`.
--- @param Self Instance of an `Unbound_Array`.
--- @param Item Element that is searched for in `Self`.
--- @param Index Array index to start searching towards `Last_Index(Self)` for `Item`.
function Contains (Self : Unbound_Array; Item : Element_Type; Index : Index_Type := Index_Type'First) return Boolean
with Post => (if Contains'Result then Self.Arr /= null and then Self.Last /= No_Index
and then (for some I in Index .. Last_Index(Self) => Element(Self, I) = Item));
-- function Reverse_Contains (Self : Unbound_Array;
-- Item : Element_Type;
-- Index : Index_Type := Index_Type'Last)
-- return Boolean;
-- mhatzl
-- generic
-- with function "<" (Left, Right : Element_Type) return Boolean is <>;
-- package Generic_Sorting with SPARK_Mode is
--
-- function Is_Sorted (Self : Unbound_Array) return Boolean;
--
-- procedure Sort (Self : in out Unbound_Array; Success: out Boolean);
--
-- procedure Merge (Target : in out Unbound_Array;
-- Source : in out Unbound_Array; Success: out Boolean);
--
-- function Sorted_Contains (Self : Unbound_Array;
-- Item : Element_Type) return Boolean
-- with Post => (if Contains'Result then
-- (for some I in First_Index(Self) .. Last_Index(Self)
-- => Element(Self, I) = Item)
-- else (for all I in First_Index(Self) .. Last_Index(Self)
-- => Element(Self, I) /= Item));
--
-- procedure Sorted_Add (Self : in out Unbound_Array; New_Item : in Element_Type; Success: out Boolean)
--
-- function Sorted_Find_Index (Self : Unbound_Array; Item : Element_Type; Index : Index_Type := Index_Type'First) return Extended_Index
-- with Pre => Last_Index(Self) /= No_Index and then Last_Index(Self) >= Index and then First_Index(Self) <= Index,
-- Post => (if Find_Index'Result /= No_Index then Element(Self,Find_Index'Result) = Item
-- else (for all I in First_Index(Self) .. Index => Element(Self, I) /= Item));
--
-- function Sorted_Reverse_Find_Index (Self : Unbound_Array; Item : Element_Type; Index : Index_Type := Index_Type'First) return Extended_Index
-- with Pre => Last_Index(Self) /= No_Index and then Last_Index(Self) >= Index and then First_Index(Self) <= Index,
-- Post => (if Find_Index'Result /= No_Index then Element(Self,Find_Index'Result) = Item
-- else (for all I in First_Index(Self) .. Index => Element(Self, I) /= Item));
--
-- end Generic_Sorting;
-- Ghost --------------------------------------------------------------------------------------------------------------
-- This ghost function checks if `Offset + Index_Type'First` is still in the range of `Index_Type`.
-- Note: Not to be used for anything but proves
-- @param Offset The value added to `Index_Type'First`.
-- @return `True` if `Offset + Index_Type'First` is still inside the range of `Index_Type`, `False` otherwise.
function Ghost_In_Index_Range (Offset : Long_Positive) return Boolean is
(In_Range(Arg => (Index_Type_To_Big.To_Big_Integer(Index_Type'First) + Long_Positive_To_Big.To_Big_Integer(Offset) - Long_Positive_To_Big.To_Big_Integer(Long_Positive'First)),
Low => Index_Type_To_Big.To_Big_Integer(Index_Type'First),
High => Index_Type_To_Big.To_Big_Integer(Index_Type'Last))) with Ghost;
-- Ghost function needed for some proves.
-- Note: Not to be used for anything but proves.
function Ghost_Acc_Length (Self : Array_Acc) return Long_Natural
with Ghost,
Post => ((if Self = null then Ghost_Acc_Length'Result = Long_Natural'First else Ghost_Acc_Length'Result = Self.all'Length));
-- Ghost function needed for some proves.
-- Note: Not to be used for anything but proves.
function Ghost_Arr_Equals (Left, Right : Array_Type; First, Last : Index_Type) return Boolean
with Ghost,
Post => (if Ghost_Arr_Equals'Result then (for all I in First .. Last => Left(I) = Right(I))
else (Left'First > First or else Right'First > First or else Left'Last < Last or else Right'Last < Last
or else (for some I in First .. Last => Left(I) /= Right(I))));
-- Ghost function needed for some proves.
-- Note: Not to be used for anything but proves.
function Ghost_Arr_Length (Self : Array_Type) return Long_Natural
with Ghost,
Post => Ghost_Arr_Length'Result = Self'Length;
end Spark_Unbound.Arrays;
| 60.903226 | 201 | 0.64036 |
4b9bf5c368cc810f2adbb71b44e403a592924f1e | 2,991 | ada | Ada | gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/cd/cd5011q.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/cd/cd5011q.ada | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | null | null | null | gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/cd/cd5011q.ada | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | 2 | 2020-07-27T00:22:36.000Z | 2021-04-01T09:41:02.000Z | -- CD5011Q.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.
--*
-- OBJECTIVE:
-- CHECK THAT AN ADDRESS CLAUSE CAN BE GIVEN FOR A VARIABLE OF A
-- PRIVATE TYPE IN THE DECLARATIVE PART OF A BLOCK STATEMENT.
-- HISTORY:
-- JET 09/15/87 CREATED ORIGINAL TEST.
-- PWB 05/11/89 CHANGED EXTENSION FROM '.DEP' TO '.ADA'.
WITH SYSTEM; USE SYSTEM;
WITH REPORT; USE REPORT;
WITH SPPRT13;
PROCEDURE CD5011Q IS
PACKAGE P IS
TYPE PRIV_TYPE IS PRIVATE;
FUNCTION INT_TO_PRIV (I : INTEGER) RETURN PRIV_TYPE;
FUNCTION EQUAL (P : PRIV_TYPE; I : INTEGER) RETURN BOOLEAN;
PRIVATE
TYPE PRIV_TYPE IS NEW INTEGER;
END P;
PACKAGE BODY P IS
FUNCTION INT_TO_PRIV (I : INTEGER) RETURN PRIV_TYPE IS
BEGIN
RETURN PRIV_TYPE(I);
END;
FUNCTION EQUAL (P : PRIV_TYPE; I : INTEGER) RETURN BOOLEAN IS
BEGIN
RETURN (P = PRIV_TYPE(I));
END;
END P;
USE P;
BEGIN
TEST ("CD5011Q", "AN ADDRESS CLAUSE CAN BE " &
"GIVEN FOR A VARIABLE OF A PRIVATE " &
"TYPE IN THE DECLARATIVE PART OF A " &
"BLOCK STATEMENT");
DECLARE
PRIV : PRIV_TYPE := INT_TO_PRIV (12);
FOR PRIV USE
AT SPPRT13.VARIABLE_ADDRESS;
BEGIN
PRIV := INT_TO_PRIV (17);
IF NOT EQUAL (PRIV, IDENT_INT (17)) THEN
FAILED ("INCORRECT VALUE FOR VARIABLE OF PRIVATE TYPE");
END IF;
IF PRIV'ADDRESS /= SPPRT13.VARIABLE_ADDRESS THEN
FAILED ("INCORRECT ADDRESS FOR VARIABLE OF " &
"PRIVATE TYPE");
END IF;
END;
RESULT;
END CD5011Q;
| 32.51087 | 79 | 0.600134 |
38b2111869ab464d2f09287b1f9865a990f359e5 | 2,664 | adb | Ada | source/runtime/pb_support-memory_streams.adb | mgrojo/protobuf | ffc50782c0c5bbb60e8f1504fcfc5a5fbafdb7dd | [
"MIT"
] | 12 | 2020-05-04T09:30:21.000Z | 2022-02-08T21:47:32.000Z | source/runtime/pb_support-memory_streams.adb | mgrojo/protobuf | ffc50782c0c5bbb60e8f1504fcfc5a5fbafdb7dd | [
"MIT"
] | 6 | 2021-03-16T15:17:33.000Z | 2022-03-31T21:32:47.000Z | source/runtime/pb_support-memory_streams.adb | mgrojo/protobuf | ffc50782c0c5bbb60e8f1504fcfc5a5fbafdb7dd | [
"MIT"
] | 1 | 2021-03-16T15:09:27.000Z | 2021-03-16T15:09:27.000Z | -- MIT License
--
-- Copyright (c) 2020 Max Reznik
--
-- Permission is hereby granted, free of charge, to any person obtaining a
-- copy of this software and associated documentation files (the "Software"),
-- to deal in the Software without restriction, including without limitation
-- the rights to use, copy, modify, merge, publish, distribute, sublicense,
-- and/or sell copies of the Software, and to permit persons to whom the
-- Software is furnished to do so, subject to the following conditions:
--
-- The above copyright notice and this permission notice shall be included in
-- all copies or substantial portions of the Software.
--
-- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
-- THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
-- FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
-- DEALINGS IN THE SOFTWARE.
package body PB_Support.Memory_Streams is
-----------
-- Clear --
-----------
procedure Clear (Self : in out Memory_Stream'Class) is
begin
Self.Data.Clear;
Self.Read := 0;
end Clear;
----------
-- Data --
----------
function Data (Self : Memory_Stream'Class)
return League.Stream_Element_Vectors.Stream_Element_Vector is
begin
return Self.Data;
end Data;
----------
-- Read --
----------
overriding procedure Read
(Self : in out Memory_Stream;
Item : out Ada.Streams.Stream_Element_Array;
Last : out Ada.Streams.Stream_Element_Offset)
is
use type Ada.Streams.Stream_Element_Offset;
Count : constant Ada.Streams.Stream_Element_Offset :=
Ada.Streams.Stream_Element_Offset'Min
(Item'Length, Self.Data.Length - Self.Read);
begin
for J in 1 .. Count loop
Item (Item'First + J - 1) := Self.Data.Element (Self.Read + J);
end loop;
Last := Item'First + Count - 1;
Self.Read := Self.Read + Count;
end Read;
-----------
-- Write --
-----------
overriding procedure Write
(Self : in out Memory_Stream;
Item : Ada.Streams.Stream_Element_Array) is
begin
Self.Data.Append (Item);
end Write;
-------------
-- Written --
-------------
function Written
(Self : Memory_Stream'Class) return Ada.Streams.Stream_Element_Count is
begin
return Self.Data.Length;
end Written;
end PB_Support.Memory_Streams;
| 29.6 | 78 | 0.656907 |
a0167ef7f12a9d6079e5f11ba5249350aee4a551 | 23,397 | ads | Ada | llvm-gcc-4.2-2.9/gcc/ada/s-osinte-vms.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/s-osinte-vms.ads | vidkidz/crossbridge | ba0bf94aee0ce6cf7eb5be882382e52bc57ba396 | [
"MIT"
] | null | null | null | llvm-gcc-4.2-2.9/gcc/ada/s-osinte-vms.ads | vidkidz/crossbridge | ba0bf94aee0ce6cf7eb5be882382e52bc57ba396 | [
"MIT"
] | null | null | null | ------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS --
-- --
-- S Y S T E M . O S _ I N T E R F A C E --
-- --
-- S p e c --
-- --
-- Copyright (C) 1991-1994, Florida State University --
-- Copyright (C) 1995-2005, 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 2, or (at your option) any later ver- --
-- sion. GNARL 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 GNARL; 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. --
-- --
-- GNARL was developed by the GNARL team at Florida State University. --
-- Extensive contributions were provided by Ada Core Technologies, Inc. --
-- --
------------------------------------------------------------------------------
-- This is a OpenVMS/Alpha version of this package
-- This package encapsulates all direct interfaces to OS services
-- that are needed by children of System.
-- 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;
with Unchecked_Conversion;
package System.OS_Interface is
pragma Preelaborate;
pragma Linker_Options ("--for-linker=sys$library:pthread$rtl.exe");
-- Link in the DEC threads library.
-- pragma Linker_Options ("--for-linker=/threads_enable");
-- Enable upcalls and multiple kernel threads.
subtype int is Interfaces.C.int;
subtype short is Interfaces.C.short;
subtype long is Interfaces.C.long;
subtype unsigned is Interfaces.C.unsigned;
subtype unsigned_short is Interfaces.C.unsigned_short;
subtype unsigned_long is Interfaces.C.unsigned_long;
subtype unsigned_char is Interfaces.C.unsigned_char;
subtype plain_char is Interfaces.C.plain_char;
subtype size_t is Interfaces.C.size_t;
-----------------------------
-- Signals (Interrupt IDs) --
-----------------------------
-- Type signal has an arbitrary limit of 31
Max_Interrupt : constant := 31;
type Signal is new unsigned range 0 .. Max_Interrupt;
for Signal'Size use unsigned'Size;
type sigset_t is array (Signal) of Boolean;
pragma Pack (sigset_t);
-- Interrupt_Number_Type
-- Unsigned long integer denoting the number of an interrupt
subtype Interrupt_Number_Type is unsigned_long;
-- OpenVMS system services return values of type Cond_Value_Type.
subtype Cond_Value_Type is unsigned_long;
subtype Short_Cond_Value_Type is unsigned_short;
type IO_Status_Block_Type is record
Status : Short_Cond_Value_Type;
Count : unsigned_short;
Dev_Info : unsigned_long;
end record;
type AST_Handler is access procedure (Param : Address);
No_AST_Handler : constant AST_Handler := null;
CMB_M_READONLY : constant := 16#00000001#;
CMB_M_WRITEONLY : constant := 16#00000002#;
AGN_M_READONLY : constant := 16#00000001#;
AGN_M_WRITEONLY : constant := 16#00000002#;
IO_WRITEVBLK : constant := 48; -- WRITE VIRTUAL BLOCK
IO_READVBLK : constant := 49; -- READ VIRTUAL BLOCK
----------------
-- Sys_Assign --
----------------
--
-- Assign I/O Channel
--
-- Status = returned status
-- Devnam = address of device name or logical name string
-- descriptor
-- Chan = address of word to receive channel number assigned
-- Acmode = access mode associated with channel
-- Mbxnam = address of mailbox logical name string descriptor, if
-- mailbox associated with device
-- Flags = optional channel flags longword for specifying options
-- for the $ASSIGN operation
--
procedure Sys_Assign
(Status : out Cond_Value_Type;
Devnam : in String;
Chan : out unsigned_short;
Acmode : in unsigned_short := 0;
Mbxnam : in String := String'Null_Parameter;
Flags : in unsigned_long := 0);
pragma Interface (External, Sys_Assign);
pragma Import_Valued_Procedure
(Sys_Assign, "SYS$ASSIGN",
(Cond_Value_Type, String, unsigned_short,
unsigned_short, String, unsigned_long),
(Value, Descriptor (s), Reference,
Value, Descriptor (s), Value),
Flags);
----------------
-- Sys_Cantim --
----------------
--
-- Cancel Timer
--
-- Status = returned status
-- Reqidt = ID of timer to be cancelled
-- Acmode = Access mode
--
procedure Sys_Cantim
(Status : out Cond_Value_Type;
Reqidt : in Address;
Acmode : in unsigned);
pragma Interface (External, Sys_Cantim);
pragma Import_Valued_Procedure
(Sys_Cantim, "SYS$CANTIM",
(Cond_Value_Type, Address, unsigned),
(Value, Value, Value));
----------------
-- Sys_Crembx --
----------------
--
-- Create mailbox
--
-- Status = returned status
-- Prmflg = permanent flag
-- Chan = channel
-- Maxmsg = maximum message
-- Bufquo = buufer quote
-- Promsk = protection mast
-- Acmode = access mode
-- Lognam = logical name
-- Flags = flags
--
procedure Sys_Crembx
(Status : out Cond_Value_Type;
Prmflg : in Boolean;
Chan : out unsigned_short;
Maxmsg : in unsigned_long := 0;
Bufquo : in unsigned_long := 0;
Promsk : in unsigned_short := 0;
Acmode : in unsigned_short := 0;
Lognam : in String;
Flags : in unsigned_long := 0);
pragma Interface (External, Sys_Crembx);
pragma Import_Valued_Procedure
(Sys_Crembx, "SYS$CREMBX",
(Cond_Value_Type, Boolean, unsigned_short,
unsigned_long, unsigned_long, unsigned_short,
unsigned_short, String, unsigned_long),
(Value, Value, Reference,
Value, Value, Value,
Value, Descriptor (s), Value));
-------------
-- Sys_QIO --
-------------
--
-- Queue I/O
--
-- Status = Returned status of call
-- EFN = event flag to be set when I/O completes
-- Chan = channel
-- Func = function
-- Iosb = I/O status block
-- Astadr = system trap to be generated when I/O completes
-- Astprm = AST parameter
-- P1-6 = optional parameters
procedure Sys_QIO
(Status : out Cond_Value_Type;
EFN : in unsigned_long := 0;
Chan : in unsigned_short;
Func : in unsigned_long := 0;
Iosb : out IO_Status_Block_Type;
Astadr : in AST_Handler := No_AST_Handler;
Astprm : in Address := Null_Address;
P1 : in unsigned_long := 0;
P2 : in unsigned_long := 0;
P3 : in unsigned_long := 0;
P4 : in unsigned_long := 0;
P5 : in unsigned_long := 0;
P6 : in unsigned_long := 0);
procedure Sys_QIO
(Status : out Cond_Value_Type;
EFN : in unsigned_long := 0;
Chan : in unsigned_short;
Func : in unsigned_long := 0;
Iosb : in Address := Null_Address;
Astadr : in AST_Handler := No_AST_Handler;
Astprm : in Address := Null_Address;
P1 : in unsigned_long := 0;
P2 : in unsigned_long := 0;
P3 : in unsigned_long := 0;
P4 : in unsigned_long := 0;
P5 : in unsigned_long := 0;
P6 : in unsigned_long := 0);
pragma Interface (External, Sys_QIO);
pragma Import_Valued_Procedure
(Sys_QIO, "SYS$QIO",
(Cond_Value_Type, unsigned_long, unsigned_short, unsigned_long,
IO_Status_Block_Type, AST_Handler, Address,
unsigned_long, unsigned_long, unsigned_long,
unsigned_long, unsigned_long, unsigned_long),
(Value, Value, Value, Value,
Reference, Value, Value,
Value, Value, Value,
Value, Value, Value));
pragma Import_Valued_Procedure
(Sys_QIO, "SYS$QIO",
(Cond_Value_Type, unsigned_long, unsigned_short, unsigned_long,
Address, AST_Handler, Address,
unsigned_long, unsigned_long, unsigned_long,
unsigned_long, unsigned_long, unsigned_long),
(Value, Value, Value, Value,
Value, Value, Value,
Value, Value, Value,
Value, Value, Value));
----------------
-- Sys_Setimr --
----------------
--
-- Set Timer
--
-- Status = Returned status of call
-- EFN = event flag to be set when timer expires
-- Tim = expiration time
-- AST = system trap to be generated when timer expires
-- Redidt = returned ID of timer (e.g. to cancel timer)
-- Flags = flags
--
procedure Sys_Setimr
(Status : out Cond_Value_Type;
EFN : in unsigned_long;
Tim : in Long_Integer;
AST : in AST_Handler;
Reqidt : in Address;
Flags : in unsigned_long);
pragma Interface (External, Sys_Setimr);
pragma Import_Valued_Procedure
(Sys_Setimr, "SYS$SETIMR",
(Cond_Value_Type, unsigned_long, Long_Integer,
AST_Handler, Address, unsigned_long),
(Value, Value, Reference,
Value, Value, Value));
Interrupt_ID_0 : constant := 0;
Interrupt_ID_1 : constant := 1;
Interrupt_ID_2 : constant := 2;
Interrupt_ID_3 : constant := 3;
Interrupt_ID_4 : constant := 4;
Interrupt_ID_5 : constant := 5;
Interrupt_ID_6 : constant := 6;
Interrupt_ID_7 : constant := 7;
Interrupt_ID_8 : constant := 8;
Interrupt_ID_9 : constant := 9;
Interrupt_ID_10 : constant := 10;
Interrupt_ID_11 : constant := 11;
Interrupt_ID_12 : constant := 12;
Interrupt_ID_13 : constant := 13;
Interrupt_ID_14 : constant := 14;
Interrupt_ID_15 : constant := 15;
Interrupt_ID_16 : constant := 16;
Interrupt_ID_17 : constant := 17;
Interrupt_ID_18 : constant := 18;
Interrupt_ID_19 : constant := 19;
Interrupt_ID_20 : constant := 20;
Interrupt_ID_21 : constant := 21;
Interrupt_ID_22 : constant := 22;
Interrupt_ID_23 : constant := 23;
Interrupt_ID_24 : constant := 24;
Interrupt_ID_25 : constant := 25;
Interrupt_ID_26 : constant := 26;
Interrupt_ID_27 : constant := 27;
Interrupt_ID_28 : constant := 28;
Interrupt_ID_29 : constant := 29;
Interrupt_ID_30 : constant := 30;
Interrupt_ID_31 : constant := 31;
-----------
-- Errno --
-----------
function errno return int;
pragma Import (C, errno, "__get_errno");
EINTR : constant := 4; -- Interrupted system call
EAGAIN : constant := 11; -- No more processes
ENOMEM : constant := 12; -- Not enough core
-------------------------
-- Priority Scheduling --
-------------------------
SCHED_FIFO : constant := 1;
SCHED_RR : constant := 2;
SCHED_OTHER : constant := 3;
SCHED_BG : constant := 4;
SCHED_LFI : constant := 5;
SCHED_LRR : constant := 6;
-------------
-- Process --
-------------
type pid_t is private;
function kill (pid : pid_t; sig : Signal) return int;
pragma Import (C, kill);
function getpid return pid_t;
pragma Import (C, getpid);
-------------
-- Threads --
-------------
type Thread_Body is access
function (arg : System.Address) return System.Address;
function Thread_Body_Access is new
Unchecked_Conversion (System.Address, Thread_Body);
type pthread_t is private;
subtype Thread_Id is pthread_t;
type pthread_mutex_t is limited private;
type pthread_cond_t is limited private;
type pthread_attr_t is limited private;
type pthread_mutexattr_t is limited private;
type pthread_condattr_t is limited private;
type pthread_key_t is private;
PTHREAD_CREATE_JOINABLE : constant := 0;
PTHREAD_CREATE_DETACHED : constant := 1;
PTHREAD_CANCEL_DISABLE : constant := 0;
PTHREAD_CANCEL_ENABLE : constant := 1;
PTHREAD_CANCEL_DEFERRED : constant := 0;
PTHREAD_CANCEL_ASYNCHRONOUS : constant := 1;
-- Don't use ERRORCHECK mutexes, they don't work when a thread is not
-- the owner. AST's, at least, unlock others threads mutexes. Even
-- if the error is ignored, they don't work.
PTHREAD_MUTEX_NORMAL_NP : constant := 0;
PTHREAD_MUTEX_RECURSIVE_NP : constant := 1;
PTHREAD_MUTEX_ERRORCHECK_NP : constant := 2;
PTHREAD_INHERIT_SCHED : constant := 0;
PTHREAD_EXPLICIT_SCHED : constant := 1;
function pthread_cancel (thread : pthread_t) return int;
pragma Import (C, pthread_cancel, "PTHREAD_CANCEL");
procedure pthread_testcancel;
pragma Import (C, pthread_testcancel, "PTHREAD_TESTCANCEL");
function pthread_setcancelstate
(newstate : int; oldstate : access int) return int;
pragma Import (C, pthread_setcancelstate, "PTHREAD_SETCANCELSTATE");
function pthread_setcanceltype
(newtype : int; oldtype : access int) return int;
pragma Import (C, pthread_setcanceltype, "PTHREAD_SETCANCELTYPE");
-------------------------
-- POSIX.1c Section 3 --
-------------------------
function pthread_lock_global_np return int;
pragma Import (C, pthread_lock_global_np, "PTHREAD_LOCK_GLOBAL_NP");
function pthread_unlock_global_np return int;
pragma Import (C, pthread_unlock_global_np, "PTHREAD_UNLOCK_GLOBAL_NP");
--------------------------
-- POSIX.1c Section 11 --
--------------------------
function pthread_mutexattr_init
(attr : access pthread_mutexattr_t) return int;
pragma Import (C, pthread_mutexattr_init, "PTHREAD_MUTEXATTR_INIT");
function pthread_mutexattr_destroy
(attr : access pthread_mutexattr_t) return int;
pragma Import (C, pthread_mutexattr_destroy, "PTHREAD_MUTEXATTR_DESTROY");
function pthread_mutexattr_settype_np
(attr : access pthread_mutexattr_t;
mutextype : int) return int;
pragma Import (C, pthread_mutexattr_settype_np,
"PTHREAD_MUTEXATTR_SETTYPE_NP");
function pthread_mutex_init
(mutex : access pthread_mutex_t;
attr : access pthread_mutexattr_t) return int;
pragma Import (C, pthread_mutex_init, "PTHREAD_MUTEX_INIT");
function pthread_mutex_destroy (mutex : access pthread_mutex_t) return int;
pragma Import (C, pthread_mutex_destroy, "PTHREAD_MUTEX_DESTROY");
function pthread_mutex_lock (mutex : access pthread_mutex_t) return int;
pragma Import (C, pthread_mutex_lock, "PTHREAD_MUTEX_LOCK");
function pthread_mutex_unlock (mutex : access pthread_mutex_t) return int;
pragma Import (C, pthread_mutex_unlock, "PTHREAD_MUTEX_UNLOCK");
function pthread_condattr_init
(attr : access pthread_condattr_t) return int;
pragma Import (C, pthread_condattr_init, "PTHREAD_CONDATTR_INIT");
function pthread_condattr_destroy
(attr : access pthread_condattr_t) return int;
pragma Import (C, pthread_condattr_destroy, "PTHREAD_CONDATTR_DESTROY");
function pthread_cond_init
(cond : access pthread_cond_t;
attr : access pthread_condattr_t) return int;
pragma Import (C, pthread_cond_init, "PTHREAD_COND_INIT");
function pthread_cond_destroy (cond : access pthread_cond_t) return int;
pragma Import (C, pthread_cond_destroy, "PTHREAD_COND_DESTROY");
function pthread_cond_signal (cond : access pthread_cond_t) return int;
pragma Import (C, pthread_cond_signal, "PTHREAD_COND_SIGNAL");
function pthread_cond_signal_int_np
(cond : access pthread_cond_t) return int;
pragma Import (C, pthread_cond_signal_int_np,
"PTHREAD_COND_SIGNAL_INT_NP");
function pthread_cond_wait
(cond : access pthread_cond_t;
mutex : access pthread_mutex_t) return int;
pragma Import (C, pthread_cond_wait, "PTHREAD_COND_WAIT");
--------------------------
-- POSIX.1c Section 13 --
--------------------------
function pthread_mutexattr_setprotocol
(attr : access pthread_mutexattr_t; protocol : int) return int;
pragma Import (C, pthread_mutexattr_setprotocol,
"PTHREAD_MUTEXATTR_SETPROTOCOL");
type struct_sched_param is record
sched_priority : int; -- scheduling priority
end record;
for struct_sched_param'Size use 8*4;
pragma Convention (C, struct_sched_param);
function pthread_setschedparam
(thread : pthread_t;
policy : int;
param : access struct_sched_param) return int;
pragma Import (C, pthread_setschedparam, "PTHREAD_SETSCHEDPARAM");
function pthread_attr_setscope
(attr : access pthread_attr_t;
contentionscope : int) return int;
pragma Import (C, pthread_attr_setscope, "PTHREAD_ATTR_SETSCOPE");
function pthread_attr_setinheritsched
(attr : access pthread_attr_t;
inheritsched : int) return int;
pragma Import (C, pthread_attr_setinheritsched,
"PTHREAD_ATTR_SETINHERITSCHED");
function pthread_attr_setschedpolicy
(attr : access pthread_attr_t; policy : int) return int;
pragma Import (C, pthread_attr_setschedpolicy,
"PTHREAD_ATTR_SETSCHEDPOLICY");
function pthread_attr_setschedparam
(attr : access pthread_attr_t;
sched_param : int) return int;
pragma Import (C, pthread_attr_setschedparam, "PTHREAD_ATTR_SETSCHEDPARAM");
function sched_yield return int;
--------------------------
-- P1003.1c Section 16 --
--------------------------
function pthread_attr_init (attributes : access pthread_attr_t) return int;
pragma Import (C, pthread_attr_init, "PTHREAD_ATTR_INIT");
function pthread_attr_destroy
(attributes : access pthread_attr_t) return int;
pragma Import (C, pthread_attr_destroy, "PTHREAD_ATTR_DESTROY");
function pthread_attr_setdetachstate
(attr : access pthread_attr_t;
detachstate : int) return int;
pragma Import (C, pthread_attr_setdetachstate,
"PTHREAD_ATTR_SETDETACHSTATE");
function pthread_attr_setstacksize
(attr : access pthread_attr_t;
stacksize : size_t) return int;
pragma Import (C, pthread_attr_setstacksize, "PTHREAD_ATTR_SETSTACKSIZE");
function pthread_create
(thread : access pthread_t;
attributes : access pthread_attr_t;
start_routine : Thread_Body;
arg : System.Address) return int;
pragma Import (C, pthread_create, "PTHREAD_CREATE");
procedure pthread_exit (status : System.Address);
pragma Import (C, pthread_exit, "PTHREAD_EXIT");
function pthread_self return pthread_t;
--------------------------
-- POSIX.1c Section 17 --
--------------------------
function pthread_setspecific
(key : pthread_key_t;
value : System.Address) return int;
pragma Import (C, pthread_setspecific, "PTHREAD_SETSPECIFIC");
function pthread_getspecific (key : pthread_key_t) return System.Address;
pragma Import (C, pthread_getspecific, "PTHREAD_GETSPECIFIC");
type destructor_pointer is access procedure (arg : System.Address);
function pthread_key_create
(key : access pthread_key_t;
destructor : destructor_pointer) return int;
pragma Import (C, pthread_key_create, "PTHREAD_KEY_CREATE");
private
type pid_t is new int;
type pthreadLongAddr_p is mod 2 ** Long_Integer'Size;
type pthreadLongAddr_t is mod 2 ** Long_Integer'Size;
type pthreadLongAddr_t_ptr is mod 2 ** Long_Integer'Size;
type pthreadLongString_t is mod 2 ** Long_Integer'Size;
type pthreadLongUint_t is mod 2 ** Long_Integer'Size;
type pthreadLongUint_array is array (Natural range <>)
of pthreadLongUint_t;
type pthread_t is mod 2 ** Long_Integer'Size;
type pthread_cond_t is record
state : unsigned;
valid : unsigned;
name : pthreadLongString_t;
arg : unsigned;
sequence : unsigned;
block : pthreadLongAddr_t_ptr;
end record;
for pthread_cond_t'Size use 8*32;
pragma Convention (C, pthread_cond_t);
type pthread_attr_t is record
valid : long;
name : pthreadLongString_t;
arg : pthreadLongUint_t;
reserved : pthreadLongUint_array (0 .. 18);
end record;
for pthread_attr_t'Size use 8*176;
pragma Convention (C, pthread_attr_t);
type pthread_mutex_t is record
lock : unsigned;
valid : unsigned;
name : pthreadLongString_t;
arg : unsigned;
sequence : unsigned;
block : pthreadLongAddr_p;
owner : unsigned;
depth : unsigned;
end record;
for pthread_mutex_t'Size use 8*40;
pragma Convention (C, pthread_mutex_t);
type pthread_mutexattr_t is record
valid : long;
reserved : pthreadLongUint_array (0 .. 14);
end record;
for pthread_mutexattr_t'Size use 8*128;
pragma Convention (C, pthread_mutexattr_t);
type pthread_condattr_t is record
valid : long;
reserved : pthreadLongUint_array (0 .. 12);
end record;
for pthread_condattr_t'Size use 8*112;
pragma Convention (C, pthread_condattr_t);
type pthread_key_t is new unsigned;
pragma Inline (pthread_self);
end System.OS_Interface;
| 36.162287 | 79 | 0.611489 |
1ebb62cc531bebb46abc7fb1f0a5de54c1c67c00 | 2,716 | adb | Ada | support/MinGW/lib/gcc/mingw32/9.2.0/adainclude/s-tasloc.adb | orb-zhuchen/Orb | 6da2404b949ac28bde786e08bf4debe4a27cd3a0 | [
"CNRI-Python-GPL-Compatible",
"MIT"
] | null | null | null | support/MinGW/lib/gcc/mingw32/9.2.0/adainclude/s-tasloc.adb | orb-zhuchen/Orb | 6da2404b949ac28bde786e08bf4debe4a27cd3a0 | [
"CNRI-Python-GPL-Compatible",
"MIT"
] | null | null | null | support/MinGW/lib/gcc/mingw32/9.2.0/adainclude/s-tasloc.adb | orb-zhuchen/Orb | 6da2404b949ac28bde786e08bf4debe4a27cd3a0 | [
"CNRI-Python-GPL-Compatible",
"MIT"
] | null | null | null | ------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- S Y S T E M . T A S K _ L O C K --
-- --
-- B o d y --
-- --
-- Copyright (C) 1997-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 System.Soft_Links;
package body System.Task_Lock is
----------
-- Lock --
----------
procedure Lock is
begin
System.Soft_Links.Lock_Task.all;
end Lock;
------------
-- Unlock --
------------
procedure Unlock is
begin
System.Soft_Links.Unlock_Task.all;
end Unlock;
end System.Task_Lock;
| 49.381818 | 78 | 0.382916 |
9a9b6a5eeed558b646d2d1bf90841e13c93a70a3 | 4,223 | adb | Ada | STM32F4/Temperature/src/temperature-sensor.adb | AntonioRamosNieto/TFG-STM32F429 | d241065e51451199e7066e6ff3cbd207b4c88837 | [
"BSD-3-Clause"
] | null | null | null | STM32F4/Temperature/src/temperature-sensor.adb | AntonioRamosNieto/TFG-STM32F429 | d241065e51451199e7066e6ff3cbd207b4c88837 | [
"BSD-3-Clause"
] | null | null | null | STM32F4/Temperature/src/temperature-sensor.adb | AntonioRamosNieto/TFG-STM32F429 | d241065e51451199e7066e6ff3cbd207b4c88837 | [
"BSD-3-Clause"
] | null | null | null | ------------------------------------------------------------------------------
-- --
-- Copyright (C) 2018, Universidad Politécnica de Madrid --
-- --
-- This 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. This software is distributed in the hope that it will be useful, --
-- but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHAN- --
-- TABILITY 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 this software; see file --
-- COPYING3. If not, go to http://www.gnu.org/licenses for a complete copy --
-- of the license.
-- --
------------------------------------------------------------------------------
-- Based on Ada Drivers Library Demo_ADC_Temperature_Polling
with STM32.Device; use STM32.Device;
with STM32.ADC; use STM32.ADC;
package body Temperature.Sensor is
procedure Initialize;
----------------
-- Initialize --
----------------
procedure Initialize is
All_Regular_Conversions : constant Regular_Channel_Conversions :=
(1 => (Channel => Temperature_Sensor.Channel,
Sample_Time => Sample_144_Cycles)); -- needs 10 micros minimum
begin
Enable_Clock (Temperature_Sensor.ADC.all);
Reset_All_ADC_Units;
Configure_Common_Properties
(Mode => Independent,
Prescalar => PCLK2_Div_2,
DMA_Mode => Disabled,
Sampling_Delay => Sampling_Delay_5_Cycles);
Configure_Unit
(Temperature_Sensor.ADC.all,
Resolution => ADC_Resolution_12_Bits,
Alignment => Right_Aligned);
Configure_Regular_Conversions
(Temperature_Sensor.ADC.all,
Trigger => Software_Triggered,
Continuous => False,
Enable_EOC => True,
Conversions => All_Regular_Conversions);
Enable (ADC_1);
end Initialize;
---------
-- Get --
---------
procedure Get (T : out Temperature) is
V_Sense : Float;
-- the "sensed voltage", ie the counts returned by the ADC conversion,
-- after converting to float
Temperature : Float;
-- the computed temperature
V_Sense_At_25_Degrees : constant := 0.76;
-- Per the F429 and F405/7 datasheets, at 25 degrees Celcius the sensed
-- voltage will be approx 0.76V, but this is only estimated by the
-- manufacturer.
-- See the F429xx datasheet, section 6.3.22, table 82, pg 159
V_Ref : constant Float := Float (ADC_Supply_Voltage) / 1000.0; -- ie 3.3
-- Reference voltage used by the ADC unit, same as Vdd. See section 5.1.2
-- of the datasheet for the F40x MCUs, for example.
Max_Count : constant := 4096.0; -- for 12-bit conversion resolution
V_At_25_Degrees : constant := (V_Sense_At_25_Degrees / V_Ref) * Max_Count;
Avg_Slope : constant := 2.5;
-- Per the F429 and F405/7 datasheets, the average slope is 2.5mV per
-- degree C.
-- See the F429xx datasheet, section 6.3.22, pg 159.
-- For use, see the RM, section 13.10, pg 411.
Successful : Boolean;
Timed_Out : exception;
begin
Start_Conversion (Temperature_Sensor.ADC.all);
Poll_For_Status (Temperature_Sensor.ADC.all,
Regular_Channel_Conversion_Complete,
Successful);
if not Successful then
raise Timed_Out;
end if;
V_Sense := Float (Conversion_Value (Temperature_Sensor.ADC.all));
Temperature := ((V_Sense - V_At_25_Degrees) / Avg_Slope) + 25.0;
-- see the RM, section 13.10, pg 411
T := Temperature;
end Get;
begin
Initialize;
end Temperature.Sensor;
| 34.900826 | 80 | 0.576841 |
38b8abbf7d1c3718b4027fb5f0bfd04b4a58ec71 | 713 | adb | Ada | gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/alignment6.adb | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | 7 | 2020-05-02T17:34:05.000Z | 2021-10-17T10:15:18.000Z | gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/alignment6.adb | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | null | null | null | gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/alignment6.adb | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | 2 | 2020-07-27T00:22:36.000Z | 2021-04-01T09:41:02.000Z | -- { dg-do compile }
-- { dg-options "-gnatws -fdump-tree-gimple" }
procedure Alignment6 is
type MY_REC is
record
A1 : INTEGER range -3 .. 3 ; -- symmetric
A2 : BOOLEAN ;
A3 : INTEGER range 0 .. 15 ; -- positive
A4 : INTEGER range 10 .. 100 ; -- arbitrary
A5 : BOOLEAN ; --5
end record ;
for MY_REC use
record
A1 at 0 range 0 .. 2 ;
A2 at 0 range 3 .. 3 ;
A3 at 0 range 4 .. 7 ;
A4 at 0 range 8 .. 15 ;
A5 at 0 range 16 .. 16 ;
end record ;
A_REC : MY_REC := ( 1 , TRUE , 7 , 11 , FALSE );
B_REC : MY_REC;
begin
B_REC := A_REC;
end;
-- { dg-final { scan-tree-dump-not "VIEW_CONVERT_EXPR" "gimple" } }
| 22.28125 | 67 | 0.524544 |
1a011c51067ca8e0b3747417aaf560a7ff5d1822 | 2,453 | ads | Ada | extern/gnat_sdl/gnat_sdl2/src/tmmintrin_h.ads | AdaCore/training_material | 6651eb2c53f8c39649b8e0b3c757bc8ff963025a | [
"CC-BY-4.0"
] | 15 | 2020-10-07T08:56:45.000Z | 2022-02-08T23:13:22.000Z | extern/gnat_sdl/gnat_sdl2/src/tmmintrin_h.ads | AdaCore/training_material | 6651eb2c53f8c39649b8e0b3c757bc8ff963025a | [
"CC-BY-4.0"
] | 20 | 2020-11-05T14:35:20.000Z | 2022-01-13T15:59:33.000Z | extern/gnat_sdl/gnat_sdl2/src/tmmintrin_h.ads | AdaCore/training_material | 6651eb2c53f8c39649b8e0b3c757bc8ff963025a | [
"CC-BY-4.0"
] | 6 | 2020-10-08T15:57:06.000Z | 2021-08-31T12:03:08.000Z | pragma Ada_2005;
pragma Style_Checks (Off);
with Interfaces.C; use Interfaces.C;
package tmmintrin_h is
-- Copyright (C) 2006-2017 Free Software Foundation, Inc.
-- This file is part of GCC.
-- GCC is free software; you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation; either version 3, or (at your option)
-- any later version.
-- GCC 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.
-- 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/>.
-- Implemented from the specification included in the Intel C++ Compiler
-- User Guide and Reference, version 9.1.
-- We need definitions from the SSE3, SSE2 and SSE header files
-- skipped func _mm_hadd_epi16
-- skipped func _mm_hadd_epi32
-- skipped func _mm_hadds_epi16
-- skipped func _mm_hadd_pi16
-- skipped func _mm_hadd_pi32
-- skipped func _mm_hadds_pi16
-- skipped func _mm_hsub_epi16
-- skipped func _mm_hsub_epi32
-- skipped func _mm_hsubs_epi16
-- skipped func _mm_hsub_pi16
-- skipped func _mm_hsub_pi32
-- skipped func _mm_hsubs_pi16
-- skipped func _mm_maddubs_epi16
-- skipped func _mm_maddubs_pi16
-- skipped func _mm_mulhrs_epi16
-- skipped func _mm_mulhrs_pi16
-- skipped func _mm_shuffle_epi8
-- skipped func _mm_shuffle_pi8
-- skipped func _mm_sign_epi8
-- skipped func _mm_sign_epi16
-- skipped func _mm_sign_epi32
-- skipped func _mm_sign_pi8
-- skipped func _mm_sign_pi16
-- skipped func _mm_sign_pi32
-- skipped func _mm_abs_epi8
-- skipped func _mm_abs_epi16
-- skipped func _mm_abs_epi32
-- skipped func _mm_abs_pi8
-- skipped func _mm_abs_pi16
-- skipped func _mm_abs_pi32
end tmmintrin_h;
| 26.956044 | 76 | 0.706074 |
1e81d6f313e6b1cc52c77fc055b3a09eac54b290 | 4,222 | adb | Ada | zlib/contrib/ada/read.adb | kenjiuno/D3MkEntityTree | 7df5492858c1786a1586fa06d25c89b581d8d3ff | [
"IJG"
] | null | null | null | zlib/contrib/ada/read.adb | kenjiuno/D3MkEntityTree | 7df5492858c1786a1586fa06d25c89b581d8d3ff | [
"IJG"
] | null | null | null | zlib/contrib/ada/read.adb | kenjiuno/D3MkEntityTree | 7df5492858c1786a1586fa06d25c89b581d8d3ff | [
"IJG"
] | null | null | null | ----------------------------------------------------------------
-- ZLib for Ada thick binding. --
-- --
-- Copyright (C) 2002-2003 Dmitriy Anisimkov --
-- --
-- Open source license information is in the zlib.ads file. --
----------------------------------------------------------------
-- $Id: read.adb,v 1.7 2003/08/12 12:12:35 vagul Exp $
-- Test/demo program for the generic read interface.
with Ada.Numerics.Discrete_Random;
with Ada.Streams;
with Ada.Text_IO;
with ZLib;
procedure Read is
use Ada.Streams;
------------------------------------
-- Test configuration parameters --
------------------------------------
File_Size : Stream_Element_Offset := 100_000;
Continuous : constant Boolean := False;
-- If this constant is True, the test would be repeated again and again,
-- with increment File_Size for every iteration.
Header : constant ZLib.Header_Type := ZLib.Default;
-- Do not use Header other than Default in ZLib versions 1.1.4 and older.
Init_Random : constant := 8;
-- We are using the same random sequence, in case of we catch bug,
-- so we would be able to reproduce it.
-- End --
Pack_Size : Stream_Element_Offset;
Offset : Stream_Element_Offset;
Filter : ZLib.Filter_Type;
subtype Visible_Symbols
is Stream_Element range 16#20# .. 16#7E#;
package Random_Elements is new
Ada.Numerics.Discrete_Random (Visible_Symbols);
Gen : Random_Elements.Generator;
Period : constant Stream_Element_Offset := 200;
-- Period constant variable for random generator not to be very random.
-- Bigger period, harder random.
Read_Buffer : Stream_Element_Array (1 .. 2048);
Read_First : Stream_Element_Offset;
Read_Last : Stream_Element_Offset;
procedure Reset;
procedure Read
(Item : out Stream_Element_Array;
Last : out Stream_Element_Offset);
-- this procedure is for generic instantiation of
-- ZLib.Read
-- reading data from the File_In.
procedure Read is new ZLib.Read (Read, Read_Buffer, Read_First, Read_Last);
----------
-- Read --
----------
procedure Read
(Item : out Stream_Element_Array;
Last : out Stream_Element_Offset) is
begin
Last := Stream_Element_Offset'Min
(Item'Last,
Item'First + File_Size - Offset);
for J in Item'First .. Last loop
if J < Item'First + Period then
Item (J) := Random_Elements.Random (Gen);
else
Item (J) := Item (J - Period);
end if;
Offset := Offset + 1;
end loop;
end Read;
-----------
-- Reset --
-----------
procedure Reset is
begin
Random_Elements.Reset (Gen, Init_Random);
Pack_Size := 0;
Offset := 1;
Read_First := Read_Buffer'Last + 1;
end Reset;
begin
Ada.Text_IO.Put_Line ("ZLib " & ZLib.Version);
loop
for Level in ZLib.Compression_Level'Range loop
Ada.Text_IO.Put ("Level ="
& ZLib.Compression_Level'Image (Level));
-- Deflate using generic instantiation.
ZLib.Deflate_Init
(Filter,
Level,
Header => Header);
Reset;
Ada.Text_IO.Put
(Stream_Element_Offset'Image (File_Size) & " ->");
loop
declare
Buffer : Stream_Element_Array (1 .. 1024);
Last : Stream_Element_Offset;
begin
Read (Filter, Buffer, Last);
Pack_Size := Pack_Size + Last - Buffer'First + 1;
exit when Last < Buffer'Last;
end;
end loop;
Ada.Text_IO.Put_Line (Stream_Element_Offset'Image (Pack_Size));
ZLib.Close (Filter);
end loop;
exit when not Continuous;
File_Size := File_Size + 1;
end loop;
end Read;
| 27.776316 | 79 | 0.527475 |
adbec84c85d0230de7537a49a80f696ab107e1d7 | 11,608 | adb | Ada | src/usb-device-hid.adb | JeremyGrosser/usb_embedded | 8597a505dd1fd8b28a2e87f069034213ca8a2607 | [
"BSD-3-Clause"
] | null | null | null | src/usb-device-hid.adb | JeremyGrosser/usb_embedded | 8597a505dd1fd8b28a2e87f069034213ca8a2607 | [
"BSD-3-Clause"
] | null | null | null | src/usb-device-hid.adb | JeremyGrosser/usb_embedded | 8597a505dd1fd8b28a2e87f069034213ca8a2607 | [
"BSD-3-Clause"
] | null | null | null | ------------------------------------------------------------------------------
-- --
-- Copyright (C) 2018-2021, 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 System; use System;
with Ada.Unchecked_Conversion;
package body USB.Device.HID is
HID_Mouse_Report_Desc : aliased constant UInt8_Array :=
(
-- https://eleccelerator.com/tutorial-about-usb-hid-report-descriptors/
16#05#, 16#01#, -- USAGE_PAGE (Generic Desktop)
16#09#, 16#02#, -- USAGE (Mouse)
16#a1#, 16#01#, -- COLLECTION (Application)
16#09#, 16#01#, -- USAGE (Pointer)
16#a1#, 16#00#, -- COLLECTION (Physical)
16#05#, 16#09#, -- USAGE_PAGE (Button)
16#19#, 16#01#, -- USAGE_MINIMUM (Button 1)
16#29#, 16#03#, -- USAGE_MAXIMUM (Button 3)
16#15#, 16#00#, -- LOGICAL_MINIMUM (0)
16#25#, 16#01#, -- LOGICAL_MAXIMUM (1)
16#95#, 16#03#, -- REPORT_COUNT (3)
16#75#, 16#01#, -- REPORT_SIZE (1)
16#81#, 16#02#, -- INPUT (Data,Var,Abs)
16#95#, 16#01#, -- REPORT_COUNT (1)
16#75#, 16#05#, -- REPORT_SIZE (5)
16#81#, 16#03#, -- INPUT (Cnst,Var,Abs)
16#05#, 16#01#, -- USAGE_PAGE (Generic Desktop)
16#09#, 16#30#, -- USAGE (X)
16#09#, 16#31#, -- USAGE (Y)
16#15#, 16#81#, -- LOGICAL_MINIMUM (-127)
16#25#, 16#7f#, -- LOGICAL_MAXIMUM (127)
16#75#, 16#08#, -- REPORT_SIZE (8)
16#95#, 16#02#, -- REPORT_COUNT (2)
16#81#, 16#06#, -- INPUT (Data,Var,Rel)
16#c0#, -- END_COLLECTION
16#c0# -- END_COLLECTION
);
----------------
-- Initialize --
----------------
overriding
function Initialize (This : in out Default_HID_Class;
Dev : in out USB_Device_Stack'Class;
Base_Interface_Index : Interface_Id)
return Init_Result
is
begin
if not Dev.Request_Endpoint (Interrupt, This.EP) then
return Not_Enough_EPs;
end if;
This.Report_Buf := Dev.Request_Buffer ((This.EP, EP_Out), Report_Size);
if This.Report_Buf = System.Null_Address then
return Not_Enough_EP_Buffer;
end if;
This.Interface_Index := Base_Interface_Index;
return Ok;
end Initialize;
--------------------
-- Get_Class_Info --
--------------------
overriding
procedure Get_Class_Info
(This : in out Default_HID_Class;
Number_Of_Interfaces : out Interface_Id;
Config_Descriptor_Length : out Natural)
is
pragma Unreferenced (This);
begin
Number_Of_Interfaces := 1;
Config_Descriptor_Length := 25;
end Get_Class_Info;
----------------------------
-- Fill_Config_Descriptor --
----------------------------
overriding
procedure Fill_Config_Descriptor (This : in out Default_HID_Class;
Data : out UInt8_Array)
is
F : constant Natural := Data'First;
USB_DESC_TYPE_INTERFACE : constant := 4;
USB_DESC_TYPE_ENDPOINT : constant := 5;
begin
Data (F + 0 .. F + 24) :=
(9,
USB_DESC_TYPE_INTERFACE,
0, -- This.Interface_Index,
0, -- Alternate setting
1, -- Number of endpoints
3, -- Class HID
0, -- Subclass
0, -- Interface protocol 0=none, 1=keyboard, 2=mouse
0, -- Str
9,
16#21#,
16#11#, 16#01#, -- Class spec release number
0,
1,
16#22#,
HID_Mouse_Report_Desc'Length, 0, -- Descriptor length
7,
USB_DESC_TYPE_ENDPOINT,
16#80# or UInt8 (This.EP), -- In EP
3, -- Interrupt EP
16#40#, 0, -- TODO: Max packet size
1 -- Polling interval
);
end Fill_Config_Descriptor;
---------------
-- Configure --
---------------
overriding
function Configure
(This : in out Default_HID_Class;
UDC : in out USB_Device_Controller'Class;
Index : UInt16)
return Setup_Request_Answer
is
begin
if Index = 1 then
UDC.EP_Setup (EP => (This.EP, EP_In),
Typ => Interrupt,
Max_Size => Report_Size);
return Handled;
else
return Not_Supported;
end if;
end Configure;
-------------------
-- Setup_Request --
-------------------
overriding
function Setup_Read_Request (This : in out Default_HID_Class;
Req : Setup_Data;
Buf : out System.Address;
Len : out Buffer_Len)
return Setup_Request_Answer
is
pragma Unreferenced (This);
begin
Buf := System.Null_Address;
Len := 0;
if Req.RType.Typ = Class and then Req.RType.Recipient = Iface then
case Req.Request is
when 1 => -- GET_REPORT
return Not_Supported;
when 2 => -- GET_IDLE
return Not_Supported;
when 3 => -- GET_PROTOCOL
return Not_Supported;
when others =>
raise Program_Error with "Unknown HID request";
end case;
end if;
if Req.RType.Typ = Stand
and then
Req.Request = 6 -- GET_DESCRIPTOR
then
declare
-- Index : constant UInt8 := UInt8 (Req.Value and 16#FF#);
Desc_Type : constant UInt8 :=
UInt8 (Shift_Right (Req.Value, 8) and 16#FF#);
begin
case Desc_Type is
when 16#22# => -- HID_REPORT_DESC
Buf := HID_Mouse_Report_Desc'Address;
Len := Buffer_Len (HID_Mouse_Report_Desc'Length);
This.State := Idle;
return Handled;
when others =>
raise Program_Error with "Unknown desc in HID class";
end case;
end;
end if;
return Next_Callback;
end Setup_Read_Request;
-------------------------
-- Setup_Write_Request --
-------------------------
overriding
function Setup_Write_Request (This : in out Default_HID_Class;
Req : Setup_Data;
Data : UInt8_Array)
return Setup_Request_Answer
is
begin
if Req.RType.Typ = Class and then Req.RType.Recipient = Iface then
case Req.Request is
when 9 => -- SET_REPORT
return Not_Supported;
when 10 => -- SET_IDLE
This.Idle_State := UInt8 (Shift_Right (Req.Value, 8) and 16#FF#);
return Handled;
when 11 => -- SET_PROTOCOL
return Not_Supported;
when others =>
raise Program_Error with "Unknown HID request";
end case;
end if;
return Next_Callback;
end Setup_Write_Request;
-----------------------
-- Transfer_Complete --
-----------------------
overriding
procedure Transfer_Complete (This : in out Default_HID_Class;
UDC : in out USB_Device_Controller'Class;
EP : EP_Addr;
CNT : UInt11)
is
begin
pragma Assert (EP.Num = This.EP);
if EP = (This.EP, EP_In) then
This.State := Idle;
-- Setup for next TX
UDC.EP_Setup (EP => (This.EP, EP_In),
Typ => Interrupt,
Max_Size => Report_Size);
else
raise Program_Error with "Not expecting transfer on EP";
end if;
end Transfer_Complete;
--------------
-- Set_Move --
--------------
procedure Set_Move (This : in out Default_HID_Class;
X, Y : Interfaces.Integer_8)
is
function To_UInt8 is new Ada.Unchecked_Conversion (Interfaces.Integer_8,
UInt8);
begin
This.Report (2) := To_UInt8 (X);
This.Report (3) := To_UInt8 (Y);
end Set_Move;
---------------
-- Set_Click --
---------------
procedure Set_Click (This : in out Default_HID_Class;
Btn1, Btn2, Btn3 : Boolean := False)
is
begin
This.Report (1) := (if Btn1 then 1 else 0) or
(if Btn2 then 2 else 0) or
(if Btn3 then 4 else 0);
end Set_Click;
-----------------
-- Send_Report --
-----------------
procedure Send_Report (This : in out Default_HID_Class;
UDC : in out USB_Device_Controller'Class)
is
Report : UInt8_Array (1 .. Report_Size) with Address => This.Report_Buf;
begin
if This.Ready then
-- Copy the report to the transfer buffer
Report := This.Report;
UDC.EP_Write_Packet (This.EP,
This.Report_Buf,
Report_Size);
This.State := Busy;
end if;
end Send_Report;
-----------
-- Ready --
-----------
function Ready (This : in out Default_HID_Class) return Boolean
is (This.State = Idle);
end USB.Device.HID;
| 34.041056 | 78 | 0.497846 |
9a0433bbec45bd8f8cad4a37d25b08ad2f7eb636 | 1,287 | ads | Ada | orka_simd/src/x86/gnat/orka-simd-sse4_1-doubles-swizzle.ads | onox/orka | 9edf99559a16ffa96dfdb208322f4d18efbcbac6 | [
"Apache-2.0"
] | 52 | 2016-07-30T23:00:28.000Z | 2022-02-05T11:54:55.000Z | orka_simd/src/x86/gnat/orka-simd-sse4_1-doubles-swizzle.ads | onox/orka | 9edf99559a16ffa96dfdb208322f4d18efbcbac6 | [
"Apache-2.0"
] | 79 | 2016-08-01T18:36:48.000Z | 2022-02-27T12:14:20.000Z | orka_simd/src/x86/gnat/orka-simd-sse4_1-doubles-swizzle.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) 2016 onox <[email protected]>
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
with Orka.SIMD.SSE2.Doubles;
package Orka.SIMD.SSE4_1.Doubles.Swizzle is
pragma Pure;
use Orka.SIMD.SSE2.Doubles;
function Blend (Left, Right : m128d; Mask : Unsigned_32) return m128d
with Import, Convention => Intrinsic, External_Name => "__builtin_ia32_blendpd";
-- Select elements from two sources (Left and Right) using a constant mask
function Blend (Left, Right, Mask : m128d) return m128d
with Import, Convention => Intrinsic, External_Name => "__builtin_ia32_blendvpd";
-- Select elements from two sources (Left and Right) using a variable mask
end Orka.SIMD.SSE4_1.Doubles.Swizzle;
| 39 | 86 | 0.732712 |
a03865dd5178e7df0be0ebb43252ce367fc75eb3 | 21,636 | ads | Ada | bb-runtimes/arm/nordic/nrf52/nrf52840/svd/i-nrf52-ccm.ads | JCGobbi/Nucleo-STM32F334R8 | 2a0b1b4b2664c92773703ac5e95dcb71979d051c | [
"BSD-3-Clause"
] | null | null | null | bb-runtimes/arm/nordic/nrf52/nrf52840/svd/i-nrf52-ccm.ads | JCGobbi/Nucleo-STM32F334R8 | 2a0b1b4b2664c92773703ac5e95dcb71979d051c | [
"BSD-3-Clause"
] | null | null | null | bb-runtimes/arm/nordic/nrf52/nrf52840/svd/i-nrf52-ccm.ads | JCGobbi/Nucleo-STM32F334R8 | 2a0b1b4b2664c92773703ac5e95dcb71979d051c | [
"BSD-3-Clause"
] | null | null | null | --
-- Copyright (C) 2019, AdaCore
--
-- Copyright (c) 2010 - 2018, Nordic Semiconductor ASA
--
-- All rights reserved.
--
-- Redistribution and use in source and binary forms, with or without
-- modification, are permitted provided that the following conditions are met:
--
-- 1. Redistributions of source code must retain the above copyright notice,
-- this list of conditions and the following disclaimer.
--
-- 2. Redistributions in binary form, except as embedded into a Nordic
-- Semiconductor ASA integrated circuit in a product or a software update
-- for such product, 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 Nordic Semiconductor ASA nor the names of its
-- contributors may be used to endorse or promote products derived from
-- this software without specific prior written permission.
--
-- 4. This software, with or without modification, must only be used with a
-- Nordic Semiconductor ASA integrated circuit.
--
-- 5. Any software provided in binary form under this license must not be
-- reverse engineered, decompiled, modified and/or disassembled.
--
-- THIS SOFTWARE IS PROVIDED BY NORDIC SEMICONDUCTOR ASA "AS IS" AND ANY
-- EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-- WARRANTIES OF MERCHANTABILITY, NONINFRINGEMENT, AND FITNESS FOR A
-- PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL NORDIC SEMICONDUCTOR
-- ASA OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
--
-- This spec has been automatically generated from nrf52840.svd
pragma Ada_2012;
pragma Style_Checks (Off);
with System;
package Interfaces.NRF52.CCM is
pragma Preelaborate;
pragma No_Elaboration_Code_All;
---------------
-- Registers --
---------------
subtype TASKS_KSGEN_TASKS_KSGEN_Field is Interfaces.NRF52.Bit;
-- Start generation of key-stream. This operation will stop by itself when
-- completed.
type TASKS_KSGEN_Register is record
-- Write-only.
TASKS_KSGEN : TASKS_KSGEN_TASKS_KSGEN_Field := 16#0#;
-- unspecified
Reserved_1_31 : Interfaces.NRF52.UInt31 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for TASKS_KSGEN_Register use record
TASKS_KSGEN at 0 range 0 .. 0;
Reserved_1_31 at 0 range 1 .. 31;
end record;
subtype TASKS_CRYPT_TASKS_CRYPT_Field is Interfaces.NRF52.Bit;
-- Start encryption/decryption. This operation will stop by itself when
-- completed.
type TASKS_CRYPT_Register is record
-- Write-only.
TASKS_CRYPT : TASKS_CRYPT_TASKS_CRYPT_Field := 16#0#;
-- unspecified
Reserved_1_31 : Interfaces.NRF52.UInt31 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for TASKS_CRYPT_Register use record
TASKS_CRYPT at 0 range 0 .. 0;
Reserved_1_31 at 0 range 1 .. 31;
end record;
subtype TASKS_STOP_TASKS_STOP_Field is Interfaces.NRF52.Bit;
-- Stop encryption/decryption
type TASKS_STOP_Register is record
-- Write-only.
TASKS_STOP : TASKS_STOP_TASKS_STOP_Field := 16#0#;
-- unspecified
Reserved_1_31 : Interfaces.NRF52.UInt31 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for TASKS_STOP_Register use record
TASKS_STOP at 0 range 0 .. 0;
Reserved_1_31 at 0 range 1 .. 31;
end record;
subtype TASKS_RATEOVERRIDE_TASKS_RATEOVERRIDE_Field is Interfaces.NRF52.Bit;
-- Override DATARATE setting in MODE register with the contents of the
-- RATEOVERRIDE register for any ongoing encryption/decryption
type TASKS_RATEOVERRIDE_Register is record
-- Write-only.
TASKS_RATEOVERRIDE : TASKS_RATEOVERRIDE_TASKS_RATEOVERRIDE_Field :=
16#0#;
-- unspecified
Reserved_1_31 : Interfaces.NRF52.UInt31 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for TASKS_RATEOVERRIDE_Register use record
TASKS_RATEOVERRIDE at 0 range 0 .. 0;
Reserved_1_31 at 0 range 1 .. 31;
end record;
subtype EVENTS_ENDKSGEN_EVENTS_ENDKSGEN_Field is Interfaces.NRF52.Bit;
-- Key-stream generation complete
type EVENTS_ENDKSGEN_Register is record
EVENTS_ENDKSGEN : EVENTS_ENDKSGEN_EVENTS_ENDKSGEN_Field := 16#0#;
-- unspecified
Reserved_1_31 : Interfaces.NRF52.UInt31 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for EVENTS_ENDKSGEN_Register use record
EVENTS_ENDKSGEN at 0 range 0 .. 0;
Reserved_1_31 at 0 range 1 .. 31;
end record;
subtype EVENTS_ENDCRYPT_EVENTS_ENDCRYPT_Field is Interfaces.NRF52.Bit;
-- Encrypt/decrypt complete
type EVENTS_ENDCRYPT_Register is record
EVENTS_ENDCRYPT : EVENTS_ENDCRYPT_EVENTS_ENDCRYPT_Field := 16#0#;
-- unspecified
Reserved_1_31 : Interfaces.NRF52.UInt31 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for EVENTS_ENDCRYPT_Register use record
EVENTS_ENDCRYPT at 0 range 0 .. 0;
Reserved_1_31 at 0 range 1 .. 31;
end record;
subtype EVENTS_ERROR_EVENTS_ERROR_Field is Interfaces.NRF52.Bit;
-- Deprecated register - CCM error event
type EVENTS_ERROR_Register is record
EVENTS_ERROR : EVENTS_ERROR_EVENTS_ERROR_Field := 16#0#;
-- unspecified
Reserved_1_31 : Interfaces.NRF52.UInt31 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for EVENTS_ERROR_Register use record
EVENTS_ERROR at 0 range 0 .. 0;
Reserved_1_31 at 0 range 1 .. 31;
end record;
-- Shortcut between ENDKSGEN event and CRYPT task
type SHORTS_ENDKSGEN_CRYPT_Field is
(-- Disable shortcut
Disabled,
-- Enable shortcut
Enabled)
with Size => 1;
for SHORTS_ENDKSGEN_CRYPT_Field use
(Disabled => 0,
Enabled => 1);
-- Shortcut register
type SHORTS_Register is record
-- Shortcut between ENDKSGEN event and CRYPT task
ENDKSGEN_CRYPT : SHORTS_ENDKSGEN_CRYPT_Field :=
Interfaces.NRF52.CCM.Disabled;
-- unspecified
Reserved_1_31 : Interfaces.NRF52.UInt31 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for SHORTS_Register use record
ENDKSGEN_CRYPT at 0 range 0 .. 0;
Reserved_1_31 at 0 range 1 .. 31;
end record;
-- Write '1' to enable interrupt for ENDKSGEN event
type INTENSET_ENDKSGEN_Field is
(-- Read: Disabled
Disabled,
-- Read: Enabled
Enabled)
with Size => 1;
for INTENSET_ENDKSGEN_Field use
(Disabled => 0,
Enabled => 1);
-- Write '1' to enable interrupt for ENDKSGEN event
type INTENSET_ENDKSGEN_Field_1 is
(-- Reset value for the field
Intenset_Endksgen_Field_Reset,
-- Enable
Set)
with Size => 1;
for INTENSET_ENDKSGEN_Field_1 use
(Intenset_Endksgen_Field_Reset => 0,
Set => 1);
-- Write '1' to enable interrupt for ENDCRYPT event
type INTENSET_ENDCRYPT_Field is
(-- Read: Disabled
Disabled,
-- Read: Enabled
Enabled)
with Size => 1;
for INTENSET_ENDCRYPT_Field use
(Disabled => 0,
Enabled => 1);
-- Write '1' to enable interrupt for ENDCRYPT event
type INTENSET_ENDCRYPT_Field_1 is
(-- Reset value for the field
Intenset_Endcrypt_Field_Reset,
-- Enable
Set)
with Size => 1;
for INTENSET_ENDCRYPT_Field_1 use
(Intenset_Endcrypt_Field_Reset => 0,
Set => 1);
-- Write '1' to enable interrupt for ERROR event
type INTENSET_ERROR_Field is
(-- Read: Disabled
Disabled,
-- Read: Enabled
Enabled)
with Size => 1;
for INTENSET_ERROR_Field use
(Disabled => 0,
Enabled => 1);
-- Write '1' to enable interrupt for ERROR event
type INTENSET_ERROR_Field_1 is
(-- Reset value for the field
Intenset_Error_Field_Reset,
-- Enable
Set)
with Size => 1;
for INTENSET_ERROR_Field_1 use
(Intenset_Error_Field_Reset => 0,
Set => 1);
-- Enable interrupt
type INTENSET_Register is record
-- Write '1' to enable interrupt for ENDKSGEN event
ENDKSGEN : INTENSET_ENDKSGEN_Field_1 :=
Intenset_Endksgen_Field_Reset;
-- Write '1' to enable interrupt for ENDCRYPT event
ENDCRYPT : INTENSET_ENDCRYPT_Field_1 :=
Intenset_Endcrypt_Field_Reset;
-- Write '1' to enable interrupt for ERROR event
ERROR : INTENSET_ERROR_Field_1 := Intenset_Error_Field_Reset;
-- unspecified
Reserved_3_31 : Interfaces.NRF52.UInt29 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for INTENSET_Register use record
ENDKSGEN at 0 range 0 .. 0;
ENDCRYPT at 0 range 1 .. 1;
ERROR at 0 range 2 .. 2;
Reserved_3_31 at 0 range 3 .. 31;
end record;
-- Write '1' to disable interrupt for ENDKSGEN event
type INTENCLR_ENDKSGEN_Field is
(-- Read: Disabled
Disabled,
-- Read: Enabled
Enabled)
with Size => 1;
for INTENCLR_ENDKSGEN_Field use
(Disabled => 0,
Enabled => 1);
-- Write '1' to disable interrupt for ENDKSGEN event
type INTENCLR_ENDKSGEN_Field_1 is
(-- Reset value for the field
Intenclr_Endksgen_Field_Reset,
-- Disable
Clear)
with Size => 1;
for INTENCLR_ENDKSGEN_Field_1 use
(Intenclr_Endksgen_Field_Reset => 0,
Clear => 1);
-- Write '1' to disable interrupt for ENDCRYPT event
type INTENCLR_ENDCRYPT_Field is
(-- Read: Disabled
Disabled,
-- Read: Enabled
Enabled)
with Size => 1;
for INTENCLR_ENDCRYPT_Field use
(Disabled => 0,
Enabled => 1);
-- Write '1' to disable interrupt for ENDCRYPT event
type INTENCLR_ENDCRYPT_Field_1 is
(-- Reset value for the field
Intenclr_Endcrypt_Field_Reset,
-- Disable
Clear)
with Size => 1;
for INTENCLR_ENDCRYPT_Field_1 use
(Intenclr_Endcrypt_Field_Reset => 0,
Clear => 1);
-- Write '1' to disable interrupt for ERROR event
type INTENCLR_ERROR_Field is
(-- Read: Disabled
Disabled,
-- Read: Enabled
Enabled)
with Size => 1;
for INTENCLR_ERROR_Field use
(Disabled => 0,
Enabled => 1);
-- Write '1' to disable interrupt for ERROR event
type INTENCLR_ERROR_Field_1 is
(-- Reset value for the field
Intenclr_Error_Field_Reset,
-- Disable
Clear)
with Size => 1;
for INTENCLR_ERROR_Field_1 use
(Intenclr_Error_Field_Reset => 0,
Clear => 1);
-- Disable interrupt
type INTENCLR_Register is record
-- Write '1' to disable interrupt for ENDKSGEN event
ENDKSGEN : INTENCLR_ENDKSGEN_Field_1 :=
Intenclr_Endksgen_Field_Reset;
-- Write '1' to disable interrupt for ENDCRYPT event
ENDCRYPT : INTENCLR_ENDCRYPT_Field_1 :=
Intenclr_Endcrypt_Field_Reset;
-- Write '1' to disable interrupt for ERROR event
ERROR : INTENCLR_ERROR_Field_1 := Intenclr_Error_Field_Reset;
-- unspecified
Reserved_3_31 : Interfaces.NRF52.UInt29 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for INTENCLR_Register use record
ENDKSGEN at 0 range 0 .. 0;
ENDCRYPT at 0 range 1 .. 1;
ERROR at 0 range 2 .. 2;
Reserved_3_31 at 0 range 3 .. 31;
end record;
-- The result of the MIC check performed during the previous decryption
-- operation
type MICSTATUS_MICSTATUS_Field is
(-- MIC check failed
Checkfailed,
-- MIC check passed
Checkpassed)
with Size => 1;
for MICSTATUS_MICSTATUS_Field use
(Checkfailed => 0,
Checkpassed => 1);
-- MIC check result
type MICSTATUS_Register is record
-- Read-only. The result of the MIC check performed during the previous
-- decryption operation
MICSTATUS : MICSTATUS_MICSTATUS_Field;
-- unspecified
Reserved_1_31 : Interfaces.NRF52.UInt31;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for MICSTATUS_Register use record
MICSTATUS at 0 range 0 .. 0;
Reserved_1_31 at 0 range 1 .. 31;
end record;
-- Enable or disable CCM
type ENABLE_ENABLE_Field is
(-- Disable
Disabled,
-- Enable
Enabled)
with Size => 2;
for ENABLE_ENABLE_Field use
(Disabled => 0,
Enabled => 2);
-- Enable
type ENABLE_Register is record
-- Enable or disable CCM
ENABLE : ENABLE_ENABLE_Field := Interfaces.NRF52.CCM.Disabled;
-- unspecified
Reserved_2_31 : Interfaces.NRF52.UInt30 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for ENABLE_Register use record
ENABLE at 0 range 0 .. 1;
Reserved_2_31 at 0 range 2 .. 31;
end record;
-- The mode of operation to be used. The settings in this register apply
-- whenever either the KSGEN or CRYPT tasks are triggered.
type MODE_MODE_Field is
(-- AES CCM packet encryption mode
Encryption,
-- AES CCM packet decryption mode
Decryption)
with Size => 1;
for MODE_MODE_Field use
(Encryption => 0,
Decryption => 1);
-- Radio data rate that the CCM shall run synchronous with
type MODE_DATARATE_Field is
(-- 1 Mbps
Val_1Mbit,
-- 2 Mbps
Val_2Mbit,
-- 125 Kbps
Val_125Kbps,
-- 500 Kbps
Val_500Kbps)
with Size => 2;
for MODE_DATARATE_Field use
(Val_1Mbit => 0,
Val_2Mbit => 1,
Val_125Kbps => 2,
Val_500Kbps => 3);
-- Packet length configuration
type MODE_LENGTH_Field is
(-- Default length. Effective length of LENGTH field in encrypted/decrypted
-- packet is 5 bits. A key-stream for packet payloads up to 27 bytes will be
-- generated.
Default,
-- Extended length. Effective length of LENGTH field in encrypted/decrypted
-- packet is 8 bits. A key-stream for packet payloads up to MAXPACKETSIZE
-- bytes will be generated.
Extended)
with Size => 1;
for MODE_LENGTH_Field use
(Default => 0,
Extended => 1);
-- Operation mode
type MODE_Register is record
-- The mode of operation to be used. The settings in this register apply
-- whenever either the KSGEN or CRYPT tasks are triggered.
MODE : MODE_MODE_Field := Interfaces.NRF52.CCM.Decryption;
-- unspecified
Reserved_1_15 : Interfaces.NRF52.UInt15 := 16#0#;
-- Radio data rate that the CCM shall run synchronous with
DATARATE : MODE_DATARATE_Field := Interfaces.NRF52.CCM.Val_1Mbit;
-- unspecified
Reserved_18_23 : Interfaces.NRF52.UInt6 := 16#0#;
-- Packet length configuration
LENGTH : MODE_LENGTH_Field := Interfaces.NRF52.CCM.Default;
-- unspecified
Reserved_25_31 : Interfaces.NRF52.UInt7 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for MODE_Register use record
MODE at 0 range 0 .. 0;
Reserved_1_15 at 0 range 1 .. 15;
DATARATE at 0 range 16 .. 17;
Reserved_18_23 at 0 range 18 .. 23;
LENGTH at 0 range 24 .. 24;
Reserved_25_31 at 0 range 25 .. 31;
end record;
subtype MAXPACKETSIZE_MAXPACKETSIZE_Field is Interfaces.NRF52.Byte;
-- Length of key-stream generated when MODE.LENGTH = Extended.
type MAXPACKETSIZE_Register is record
-- Length of key-stream generated when MODE.LENGTH = Extended. This
-- value must be greater or equal to the subsequent packet payload to be
-- encrypted/decrypted.
MAXPACKETSIZE : MAXPACKETSIZE_MAXPACKETSIZE_Field := 16#FB#;
-- unspecified
Reserved_8_31 : Interfaces.NRF52.UInt24 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for MAXPACKETSIZE_Register use record
MAXPACKETSIZE at 0 range 0 .. 7;
Reserved_8_31 at 0 range 8 .. 31;
end record;
-- Data rate override setting.
type RATEOVERRIDE_RATEOVERRIDE_Field is
(-- 1 Mbps
Val_1Mbit,
-- 2 Mbps
Val_2Mbit,
-- 125 Kbps
Val_125Kbps,
-- 500 Kbps
Val_500Kbps)
with Size => 2;
for RATEOVERRIDE_RATEOVERRIDE_Field use
(Val_1Mbit => 0,
Val_2Mbit => 1,
Val_125Kbps => 2,
Val_500Kbps => 3);
-- Data rate override setting.
type RATEOVERRIDE_Register is record
-- Data rate override setting.
RATEOVERRIDE : RATEOVERRIDE_RATEOVERRIDE_Field :=
Interfaces.NRF52.CCM.Val_1Mbit;
-- unspecified
Reserved_2_31 : Interfaces.NRF52.UInt30 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for RATEOVERRIDE_Register use record
RATEOVERRIDE at 0 range 0 .. 1;
Reserved_2_31 at 0 range 2 .. 31;
end record;
-----------------
-- Peripherals --
-----------------
-- AES CCM Mode Encryption
type CCM_Peripheral is record
-- Start generation of key-stream. This operation will stop by itself
-- when completed.
TASKS_KSGEN : aliased TASKS_KSGEN_Register;
-- Start encryption/decryption. This operation will stop by itself when
-- completed.
TASKS_CRYPT : aliased TASKS_CRYPT_Register;
-- Stop encryption/decryption
TASKS_STOP : aliased TASKS_STOP_Register;
-- Override DATARATE setting in MODE register with the contents of the
-- RATEOVERRIDE register for any ongoing encryption/decryption
TASKS_RATEOVERRIDE : aliased TASKS_RATEOVERRIDE_Register;
-- Key-stream generation complete
EVENTS_ENDKSGEN : aliased EVENTS_ENDKSGEN_Register;
-- Encrypt/decrypt complete
EVENTS_ENDCRYPT : aliased EVENTS_ENDCRYPT_Register;
-- Deprecated register - CCM error event
EVENTS_ERROR : aliased EVENTS_ERROR_Register;
-- Shortcut register
SHORTS : aliased SHORTS_Register;
-- Enable interrupt
INTENSET : aliased INTENSET_Register;
-- Disable interrupt
INTENCLR : aliased INTENCLR_Register;
-- MIC check result
MICSTATUS : aliased MICSTATUS_Register;
-- Enable
ENABLE : aliased ENABLE_Register;
-- Operation mode
MODE : aliased MODE_Register;
-- Pointer to data structure holding AES key and NONCE vector
CNFPTR : aliased Interfaces.NRF52.UInt32;
-- Input pointer
INPTR : aliased Interfaces.NRF52.UInt32;
-- Output pointer
OUTPTR : aliased Interfaces.NRF52.UInt32;
-- Pointer to data area used for temporary storage
SCRATCHPTR : aliased Interfaces.NRF52.UInt32;
-- Length of key-stream generated when MODE.LENGTH = Extended.
MAXPACKETSIZE : aliased MAXPACKETSIZE_Register;
-- Data rate override setting.
RATEOVERRIDE : aliased RATEOVERRIDE_Register;
end record
with Volatile;
for CCM_Peripheral use record
TASKS_KSGEN at 16#0# range 0 .. 31;
TASKS_CRYPT at 16#4# range 0 .. 31;
TASKS_STOP at 16#8# range 0 .. 31;
TASKS_RATEOVERRIDE at 16#C# range 0 .. 31;
EVENTS_ENDKSGEN at 16#100# range 0 .. 31;
EVENTS_ENDCRYPT at 16#104# range 0 .. 31;
EVENTS_ERROR at 16#108# range 0 .. 31;
SHORTS at 16#200# range 0 .. 31;
INTENSET at 16#304# range 0 .. 31;
INTENCLR at 16#308# range 0 .. 31;
MICSTATUS at 16#400# range 0 .. 31;
ENABLE at 16#500# range 0 .. 31;
MODE at 16#504# range 0 .. 31;
CNFPTR at 16#508# range 0 .. 31;
INPTR at 16#50C# range 0 .. 31;
OUTPTR at 16#510# range 0 .. 31;
SCRATCHPTR at 16#514# range 0 .. 31;
MAXPACKETSIZE at 16#518# range 0 .. 31;
RATEOVERRIDE at 16#51C# range 0 .. 31;
end record;
-- AES CCM Mode Encryption
CCM_Periph : aliased CCM_Peripheral
with Import, Address => CCM_Base;
end Interfaces.NRF52.CCM;
| 33.859155 | 82 | 0.648595 |
222083843ccee97ddc8b70a33178ff5e29a30975 | 3,412 | adb | Ada | support/MinGW/lib/gcc/mingw32/9.2.0/adainclude/s-imgllu.adb | orb-zhuchen/Orb | 6da2404b949ac28bde786e08bf4debe4a27cd3a0 | [
"CNRI-Python-GPL-Compatible",
"MIT"
] | null | null | null | support/MinGW/lib/gcc/mingw32/9.2.0/adainclude/s-imgllu.adb | orb-zhuchen/Orb | 6da2404b949ac28bde786e08bf4debe4a27cd3a0 | [
"CNRI-Python-GPL-Compatible",
"MIT"
] | null | null | null | support/MinGW/lib/gcc/mingw32/9.2.0/adainclude/s-imgllu.adb | orb-zhuchen/Orb | 6da2404b949ac28bde786e08bf4debe4a27cd3a0 | [
"CNRI-Python-GPL-Compatible",
"MIT"
] | null | null | null | ------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- S Y S T E M . I M G _ L L U --
-- --
-- B o d y --
-- --
-- Copyright (C) 1992-2019, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception, --
-- version 3.1, as published by the Free Software Foundation. --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
with System.Unsigned_Types; use System.Unsigned_Types;
package body System.Img_LLU is
------------------------------
-- Image_Long_Long_Unsigned --
------------------------------
procedure Image_Long_Long_Unsigned
(V : System.Unsigned_Types.Long_Long_Unsigned;
S : in out String;
P : out Natural)
is
pragma Assert (S'First = 1);
begin
S (1) := ' ';
P := 1;
Set_Image_Long_Long_Unsigned (V, S, P);
end Image_Long_Long_Unsigned;
----------------------------------
-- Set_Image_Long_Long_Unsigned --
----------------------------------
procedure Set_Image_Long_Long_Unsigned
(V : Long_Long_Unsigned;
S : in out String;
P : in out Natural)
is
begin
if V >= 10 then
Set_Image_Long_Long_Unsigned (V / 10, S, P);
P := P + 1;
S (P) := Character'Val (48 + (V rem 10));
else
P := P + 1;
S (P) := Character'Val (48 + V);
end if;
end Set_Image_Long_Long_Unsigned;
end System.Img_LLU;
| 46.108108 | 78 | 0.411196 |
4b2b9dc9a257b0560557547f226580b1c9b139c6 | 10,975 | ads | Ada | Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/g-cgi.ads | djamal2727/Main-Bearing-Analytical-Model | 2f00c2219c71be0175c6f4f8f1d4cca231d97096 | [
"Apache-2.0"
] | null | null | null | Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/g-cgi.ads | djamal2727/Main-Bearing-Analytical-Model | 2f00c2219c71be0175c6f4f8f1d4cca231d97096 | [
"Apache-2.0"
] | null | null | null | Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/g-cgi.ads | djamal2727/Main-Bearing-Analytical-Model | 2f00c2219c71be0175c6f4f8f1d4cca231d97096 | [
"Apache-2.0"
] | null | null | null | ------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- G N A T . C G I --
-- --
-- S p e c --
-- --
-- Copyright (C) 2000-2020, AdaCore --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception, --
-- version 3.1, as published by the Free Software Foundation. --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
-- This is a package to interface a GNAT program with a Web server via the
-- Common Gateway Interface (CGI).
-- Other related packages are:
-- GNAT.CGI.Cookie which deal with Web HTTP Cookies.
-- GNAT.CGI.Debug which output complete CGI runtime environment
-- Basically this package parse the CGI parameter which are a set of key/value
-- pairs. It builds a table whose index is the key and provides some services
-- to deal with this table.
-- Example:
-- Consider the following simple HTML form to capture a client name:
-- <!DOCTYPE HTML PUBLIC "-//W3C//DTD W3 HTML 3.2//EN">
-- <html>
-- <head>
-- <title>My Web Page</title>
-- </head>
-- <body>
-- <form action="/cgi-bin/new_client" method="POST">
-- <input type=text name=client_name>
-- <input type=submit name="Enter">
-- </form>
-- </body>
-- </html>
-- The following program will retrieve the client's name:
-- with GNAT.CGI;
-- procedure New_Client is
-- use GNAT;
-- procedure Add_Client_To_Database (Name : String) is
-- begin
-- ...
-- end Add_Client_To_Database;
-- begin
-- -- Check that we have 2 arguments (there is two inputs tag in
-- -- the HTML form) and that one of them is called "client_name".
-- if CGI.Argument_Count = 2
-- and then CGI.Key_Exists ("client_name")
-- then
-- Add_Client_To_Database (CGI.Value ("client_name"));
-- end if;
-- ...
-- CGI.Put_Header;
-- Text_IO.Put_Line ("<html><body>< ... Ok ... >");
-- exception
-- when CGI.Data_Error =>
-- CGI.Put_Header ("Location: /htdocs/error.html");
-- -- This returns the address of a Web page to be displayed
-- -- using a "Location:" header style.
-- end New_Client;
-- Note that the names in this package interface have been designed so that
-- they read nicely with the CGI prefix. The recommended style is to avoid
-- a use clause for GNAT.CGI, but to include a use clause for GNAT.
-- This package builds up a table of CGI parameters whose memory is not
-- released. A CGI program is expected to be a short lived program and
-- so it is adequate to have the underlying OS free the program on exit.
package GNAT.CGI is
Data_Error : exception;
-- This is raised when there is a problem with the CGI protocol. Either
-- the data could not be retrieved or the CGI environment is invalid.
--
-- The package will initialize itself by parsing the runtime CGI
-- environment during elaboration but we do not want to raise an
-- exception at this time, so the exception Data_Error is deferred
-- and will be raised when calling any services below (except for Ok).
Parameter_Not_Found : exception;
-- This exception is raised when a specific parameter is not found
Default_Header : constant String := "Content-type: text/html";
-- This is the default header returned by Put_Header. If the CGI program
-- returned data is not an HTML page, this header must be change to a
-- valid MIME type.
type Method_Type is (Get, Post);
-- The method used to pass parameter from the Web client to the
-- server. With the GET method parameters are passed via the command
-- line, with the POST method parameters are passed via environment
-- variables. Others methods are not supported by this implementation.
type Metavariable_Name is
(Auth_Type,
Content_Length,
Content_Type,
Document_Root, -- Web server dependent
Gateway_Interface,
HTTP_Accept,
HTTP_Accept_Encoding,
HTTP_Accept_Language,
HTTP_Connection,
HTTP_Cookie,
HTTP_Extension,
HTTP_From,
HTTP_Host,
HTTP_Referer,
HTTP_User_Agent,
Path,
Path_Info,
Path_Translated,
Query_String,
Remote_Addr,
Remote_Host,
Remote_Port, -- Web server dependent
Remote_Ident,
Remote_User,
Request_Method,
Request_URI, -- Web server dependent
Script_Filename, -- Web server dependent
Script_Name,
Server_Addr, -- Web server dependent
Server_Admin, -- Web server dependent
Server_Name,
Server_Port,
Server_Protocol,
Server_Signature, -- Web server dependent
Server_Software);
-- CGI metavariables that are set by the Web server during program
-- execution. All these variables are part of the restricted CGI runtime
-- environment and can be read using Metavariable service. The detailed
-- meanings of these metavariables are out of the scope of this
-- description. Please refer to http://www.w3.org/CGI/ for a description
-- of the CGI specification. Some metavariables are Web server dependent
-- and are not described in the cited document.
procedure Put_Header
(Header : String := Default_Header;
Force : Boolean := False);
-- Output standard CGI header by default. The header string is followed by
-- an empty line. This header must be the first answer sent back to the
-- server. Do nothing if this function has already been called and Force
-- is False.
function Ok return Boolean;
-- Returns True if the CGI environment is valid and False otherwise.
-- Every service used when the CGI environment is not valid will raise
-- the exception Data_Error.
function Method return Method_Type;
-- Returns the method used to call the CGI
function Metavariable
(Name : Metavariable_Name;
Required : Boolean := False) return String;
-- Returns parameter Name value. Returns the null string if Name
-- environment variable is not defined or raises Data_Error if
-- Required is set to True.
function Metavariable_Exists (Name : Metavariable_Name) return Boolean;
-- Returns True if the environment variable Name is defined in
-- the CGI runtime environment and False otherwise.
function URL return String;
-- Returns the URL used to call this script without the parameters.
-- The URL form is: http://<server_name>[:<server_port>]<script_name>
function Argument_Count return Natural;
-- Returns the number of parameters passed to the client. This is the
-- number of input tags in a form or the number of parameters passed to
-- the CGI via the command line.
---------------------------------------------------
-- Services to retrieve key/value CGI parameters --
---------------------------------------------------
function Value
(Key : String;
Required : Boolean := False) return String;
-- Returns the parameter value associated to the parameter named Key.
-- If parameter does not exist, returns an empty string if Required
-- is False and raises the exception Parameter_Not_Found otherwise.
function Value (Position : Positive) return String;
-- Returns the parameter value associated with the CGI parameter number
-- Position. Raises Parameter_Not_Found if there is no such parameter
-- (i.e. Position > Argument_Count)
function Key_Exists (Key : String) return Boolean;
-- Returns True if the parameter named Key exists and False otherwise
function Key (Position : Positive) return String;
-- Returns the parameter key associated with the CGI parameter number
-- Position. Raises the exception Parameter_Not_Found if there is no
-- such parameter (i.e. Position > Argument_Count)
generic
with procedure
Action
(Key : String;
Value : String;
Position : Positive;
Quit : in out Boolean);
procedure For_Every_Parameter;
-- Iterate through all existing key/value pairs and call the Action
-- supplied procedure. The Key and Value are set appropriately, Position
-- is the parameter order in the list, Quit is set to True by default.
-- Quit can be set to False to control the iterator termination.
private
function Decode (S : String) return String;
-- Decode Web string S. A string when passed to a CGI is encoded,
-- this function will decode the string to return the original
-- string's content. Every triplet of the form %HH (where H is an
-- hexadecimal number) is translated into the character such that:
-- Hex (Character'Pos (C)) = HH.
end GNAT.CGI;
| 42.871094 | 79 | 0.590342 |
4d14930bddfe4e40c6929c09836730d6b8967b24 | 13,382 | ads | Ada | software/hal/hpl/STM32/drivers/stm32-dac.ads | TUM-EI-RCS/StratoX | 5fdd04e01a25efef6052376f43ce85b5bc973392 | [
"BSD-3-Clause"
] | 12 | 2017-06-08T14:19:57.000Z | 2022-03-09T02:48:59.000Z | software/hal/hpl/STM32/drivers/stm32-dac.ads | TUM-EI-RCS/StratoX | 5fdd04e01a25efef6052376f43ce85b5bc973392 | [
"BSD-3-Clause"
] | 6 | 2017-06-08T13:13:50.000Z | 2020-05-15T09:32:43.000Z | software/hal/hpl/STM32/drivers/stm32-dac.ads | TUM-EI-RCS/StratoX | 5fdd04e01a25efef6052376f43ce85b5bc973392 | [
"BSD-3-Clause"
] | 3 | 2017-06-30T14:05:06.000Z | 2022-02-17T12:20:45.000Z | ------------------------------------------------------------------------------
-- --
-- Copyright (C) 2015, AdaCore --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions are --
-- met: --
-- 1. Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- 2. Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in --
-- the documentation and/or other materials provided with the --
-- distribution. --
-- 3. Neither the name of STMicroelectronics nor the names of its --
-- contributors may be used to endorse or promote products derived --
-- from this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT --
-- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, --
-- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY --
-- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT --
-- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE --
-- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
-- --
-- This file is based on: --
-- --
-- @file stm32f4xx_hal_dac.h and stm32f4xx_hal_dac_ex.h --
-- @author MCD Application Team --
-- @version V1.3.1 --
-- @date 25-March-2015 --
-- @brief Header file of DAC HAL module. --
-- --
-- COPYRIGHT(c) 2014 STMicroelectronics --
------------------------------------------------------------------------------
-- This file provides interfaces for the digital-to-analog converters on the
-- STM32F4 (ARM Cortex M4F) microcontrollers from ST Microelectronics.
with System; use System;
private with STM32_SVD.DAC;
package STM32.DAC is
type Digital_To_Analog_Converter is limited private;
type DAC_Channel is (Channel_1, Channel_2);
-- Note that Channel 1 is tied to GPIO pin PA4, and Channel 2 to PA5
procedure Enable
(This : in out Digital_To_Analog_Converter;
Channel : DAC_Channel)
with
Inline,
Post => Enabled (This, Channel);
-- Powers up the channel. The channel is then enabled after a startup
-- time "Twakeup" specified in the datasheet.
--
-- NB: When no hardware trigger has been selected, the value in the
-- DAC_DHRx register is transfered automatically to the DOR register.
-- Therefore, in that case enabling the channel starts the output
-- conversion on that channel. See the RM, section 14.3.4 "DAC
-- conversion" second and third paragraphs.
procedure Disable
(This : in out Digital_To_Analog_Converter;
Channel : DAC_Channel)
with
Inline,
Post => not Enabled (This, Channel);
-- When the software trigger has been selected, disabling the channel stops
-- the output conversion on that channel.
function Enabled
(This : Digital_To_Analog_Converter;
Channel : DAC_Channel)
return Boolean;
type DAC_Resolution is (DAC_Resolution_12_Bits, DAC_Resolution_8_Bits);
Max_12bit_Resolution : constant := 16#0FFF#;
Max_8bit_Resolution : constant := 16#00FF#;
type Data_Alignment is (Left_Aligned, Right_Aligned);
procedure Set_Output
(This : in out Digital_To_Analog_Converter;
Channel : DAC_Channel;
Value : Word;
Resolution : DAC_Resolution;
Alignment : Data_Alignment);
-- For the specified channel, writes the output Value to the data holding
-- register within This corresponding to the Resolution and Alignment.
--
-- The output voltage = ((Value / Max_nbit_Counts) * VRef+), where VRef+ is
-- the reference input voltage and the 'n' of Max_nbit_Counts is either 12
-- or 8.
procedure Trigger_Conversion_By_Software
(This : in out Digital_To_Analog_Converter;
Channel : DAC_Channel)
with
Pre => Trigger_Selection (This, Channel) = Software_Trigger and
Trigger_Enabled (This, Channel);
-- Cause the conversion to occur and the output to appear, per 14.3.6 "DAC
-- trigger selection" in the RM. This routine is needed when the Software
-- Trigger has been selected and the trigger has been enabled, otherwise no
-- conversion occurs. If you don't enable the trigger any prior selection
-- has no effect, but note that when no *hardware* trigger is selected the
-- output happens automatically when the channel is enabled. See the RM,
-- section 14.3.4 "DAC conversion" second and third paragraphs.
function Converted_Output_Value
(This : Digital_To_Analog_Converter;
Channel : DAC_Channel)
return Word;
-- Returns the latest output value for the specified channel.
procedure Set_Dual_Output_Voltages
(This : in out Digital_To_Analog_Converter;
Channel_1_Value : Word;
Channel_2_Value : Word;
Resolution : DAC_Resolution;
Alignment : Data_Alignment);
type Dual_Channel_Output is record
Channel_1_Data : Short;
Channel_2_Data : Short;
end record;
function Converted_Dual_Output_Value (This : Digital_To_Analog_Converter)
return Dual_Channel_Output;
-- Returns the combination of the latest output values for both channels.
procedure Enable_Output_Buffer
(This : in out Digital_To_Analog_Converter;
Channel : DAC_Channel)
with Post => Output_Buffer_Enabled (This, Channel);
procedure Disable_Output_Buffer
(This : in out Digital_To_Analog_Converter;
Channel : DAC_Channel)
with Post => not Output_Buffer_Enabled (This, Channel);
function Output_Buffer_Enabled
(This : Digital_To_Analog_Converter;
Channel : DAC_Channel)
return Boolean;
type External_Event_Trigger_Selection is
(Timer_6_Output_Trigger,
Timer_8_Output_Trigger,
Timer_7_Output_Trigger,
Timer_5_Output_Trigger,
Timer_2_Output_Trigger,
Timer_4_Output_Trigger,
EXTI_Line_9_Trigger, -- any GPIO_x Pin_9
Software_Trigger);
procedure Select_Trigger
(This : in out Digital_To_Analog_Converter;
Channel : DAC_Channel;
Trigger : External_Event_Trigger_Selection)
with
Pre => not Trigger_Enabled (This, Channel), -- per note in RM, pg 435
Post => Trigger_Selection (This, Channel) = Trigger and
not Trigger_Enabled (This, Channel);
-- If the software trigger is selected, output conversion starts once the
-- channel is enabled.
function Trigger_Selection
(This : Digital_To_Analog_Converter;
Channel : DAC_Channel)
return External_Event_Trigger_Selection;
procedure Enable_Trigger
(This : in out Digital_To_Analog_Converter;
Channel : DAC_Channel)
with Post => Trigger_Enabled (This, Channel);
procedure Disable_Trigger
(This : in out Digital_To_Analog_Converter;
Channel : DAC_Channel)
with Post => not Trigger_Enabled (This, Channel);
function Trigger_Enabled
(This : Digital_To_Analog_Converter;
Channel : DAC_Channel)
return Boolean;
procedure Enable_DMA
(This : in out Digital_To_Analog_Converter;
Channel : DAC_Channel)
with Post => DMA_Enabled (This, Channel);
procedure Disable_DMA
(This : in out Digital_To_Analog_Converter;
Channel : DAC_Channel)
with Post => not DMA_Enabled (This, Channel);
function DMA_Enabled
(This : Digital_To_Analog_Converter;
Channel : DAC_Channel)
return Boolean;
type DAC_Status_Flag is
(DMA_Underrun_Channel_1,
DMA_Underrun_Channel_2);
-- For the indicated channel, the currently selected trigger is driving the
-- channel conversion at a frequency higher than the DMA service capability
-- rate
function Status
(This : Digital_To_Analog_Converter;
Flag : DAC_Status_Flag)
return Boolean;
procedure Clear_Status
(This : in out Digital_To_Analog_Converter;
Flag : DAC_Status_Flag)
with
Inline,
Post => not Status (This, Flag);
type DAC_Interrupts is
(DMA_Underrun_Channel_1,
DMA_Underrun_Channel_2);
procedure Enable_Interrupts
(This : in out Digital_To_Analog_Converter;
Source : DAC_Interrupts)
with
Inline,
Post => Interrupt_Enabled (This, Source);
procedure Disable_Interrupts
(This : in out Digital_To_Analog_Converter;
Source : DAC_Interrupts)
with
Inline,
Post => not Interrupt_Enabled (This, Source);
function Interrupt_Enabled
(This : Digital_To_Analog_Converter;
Source : DAC_Interrupts)
return Boolean
with Inline;
function Interrupt_Source
(This : Digital_To_Analog_Converter)
return DAC_Interrupts
with Inline;
procedure Clear_Interrupt_Pending
(This : in out Digital_To_Analog_Converter;
Channel : DAC_Channel)
with Inline;
type Wave_Generation_Selection is
(No_Wave_Generation,
Noise_Wave,
Triangle_Wave);
type Noise_Wave_Mask_Selection is
(LFSR_Unmask_Bit0,
LFSR_Unmask_Bits1_0,
LFSR_Unmask_Bits2_0,
LFSR_Unmask_Bits3_0,
LFSR_Unmask_Bits4_0,
LFSR_Unmask_Bits5_0,
LFSR_Unmask_Bits6_0,
LFSR_Unmask_Bits7_0,
LFSR_Unmask_Bits8_0,
LFSR_Unmask_Bits9_0,
LFSR_Unmask_Bits10_0,
LFSR_Unmask_Bits11_0);
-- Unmask LFSR bits for noise wave generation
type Triangle_Wave_Amplitude_Selection is
(Triangle_Amplitude_1, -- Select max triangle amplitude of 1
Triangle_Amplitude_3, -- Select max triangle amplitude of 3
Triangle_Amplitude_7, -- Select max triangle amplitude of 7
Triangle_Amplitude_15, -- Select max triangle amplitude of 15
Triangle_Amplitude_31, -- Select max triangle amplitude of 31
Triangle_Amplitude_63, -- Select max triangle amplitude of 63
Triangle_Amplitude_127, -- Select max triangle amplitude of 127
Triangle_Amplitude_255, -- Select max triangle amplitude of 255
Triangle_Amplitude_511, -- Select max triangle amplitude of 511
Triangle_Amplitude_1023, -- Select max triangle amplitude of 1023
Triangle_Amplitude_2047, -- Select max triangle amplitude of 2047
Triangle_Amplitude_4095); -- Select max triangle amplitude of 4095
type Wave_Generation (Kind : Wave_Generation_Selection) is record
case Kind is
when No_Wave_Generation =>
null;
when Noise_Wave =>
Mask : Noise_Wave_Mask_Selection;
when Triangle_Wave =>
Amplitude : Triangle_Wave_Amplitude_Selection;
end case;
end record;
Wave_Generation_Disabled : constant Wave_Generation :=
(Kind => No_Wave_Generation);
procedure Select_Wave_Generation
(This : in out Digital_To_Analog_Converter;
Channel : DAC_Channel;
Selection : Wave_Generation)
with Post => Selected_Wave_Generation (This, Channel) = Selection;
function Selected_Wave_Generation
(This : Digital_To_Analog_Converter;
Channel : DAC_Channel)
return Wave_Generation;
function Data_Address
(This : Digital_To_Analog_Converter;
Channel : DAC_Channel;
Resolution : DAC_Resolution;
Alignment : Data_Alignment)
return Address;
-- Returns the address of the Data Holding register within This, for the
-- specified Channel, at the specified Resolution and Alignment.
--
-- This function is stricly for use with DMA, all others use the API above.
private
type Digital_To_Analog_Converter is new STM32_SVD.DAC.DAC_Peripheral;
end STM32.DAC;
| 39.358824 | 79 | 0.635032 |
38a408f89b02329db8dbd5dece1a8144054280de | 3,642 | ads | Ada | source/xml/sax/xml-sax-simple_readers-parser.ads | svn2github/matreshka | 9d222b3ad9da508855fb1f5adbe5e8a4fad4c530 | [
"BSD-3-Clause"
] | 24 | 2016-11-29T06:59:41.000Z | 2021-08-30T11:55:16.000Z | source/xml/sax/xml-sax-simple_readers-parser.ads | svn2github/matreshka | 9d222b3ad9da508855fb1f5adbe5e8a4fad4c530 | [
"BSD-3-Clause"
] | 2 | 2019-01-16T05:15:20.000Z | 2019-02-03T10:03:32.000Z | source/xml/sax/xml-sax-simple_readers-parser.ads | svn2github/matreshka | 9d222b3ad9da508855fb1f5adbe5e8a4fad4c530 | [
"BSD-3-Clause"
] | 4 | 2017-07-18T07:11:05.000Z | 2020-06-21T03:02:25.000Z | ------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- XML Processor --
-- --
-- Runtime Library Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2010-2014, 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$
------------------------------------------------------------------------------
pragma Ada_2012;
private package XML.SAX.Simple_Readers.Parser is
procedure YYParse (Self : in out Simple_Reader);
-- Parse XML document.
procedure Initialize (State : in out Parser_State_Information);
-- Initialize parser's state before first use.
end XML.SAX.Simple_Readers.Parser;
| 66.218182 | 78 | 0.417079 |
9a158da622747d9a6f86d69b0d48ad5ec552ddaa | 3,683 | adb | Ada | source/program_structure/adam-library_unit-declaration.adb | charlie5/aIDE | fab406dbcd9b72a4cb215ffebb05166c788d6365 | [
"MIT"
] | 3 | 2017-04-29T14:25:22.000Z | 2017-09-29T10:15:28.000Z | source/program_structure/adam-library_unit-declaration.adb | charlie5/aIDE | fab406dbcd9b72a4cb215ffebb05166c788d6365 | [
"MIT"
] | null | null | null | source/program_structure/adam-library_unit-declaration.adb | charlie5/aIDE | fab406dbcd9b72a4cb215ffebb05166c788d6365 | [
"MIT"
] | null | null | null | with
AdaM.Factory;
package body AdaM.library_Unit.declaration
is
-- Storage Pool
--
record_Version : constant := 1;
pool_Size : constant := 5_000;
package Pool is new AdaM.Factory.Pools (".adam-store",
"library_Units-declaration",
pool_Size,
record_Version,
library_Unit.declaration.item,
library_Unit.declaration.view);
-- Forge
--
procedure define (Self : in out Item)
is
begin
null;
end define;
overriding
procedure destruct (Self : in out Item)
is
begin
null;
end destruct;
function new_Subprogram return View
is
new_unit_Declaration : constant library_Unit.declaration.view := Pool.new_Item;
new_Subprogram : constant AdaM.Declaration.of_subprogram.view := AdaM.Declaration.of_subprogram.new_Declaration;
begin
define (library_Unit.declaration.item (new_unit_Declaration.all));
new_unit_Declaration.Declaration := (a_Subprogram, new_Subprogram);
return new_unit_Declaration;
end new_Subprogram;
function new_Package return library_Unit.declaration.view
is
new_unit_Declaration : constant library_Unit.declaration.view := Pool.new_Item;
new_Package : constant AdaM.Declaration.of_package.view := AdaM.Declaration.of_package.new_Package;
begin
define (library_Unit.declaration.item (new_unit_Declaration.all));
new_unit_Declaration.Declaration := (a_Package, new_Package);
return new_unit_Declaration;
end new_Package;
function new_Generic return library_Unit.declaration.view
is
new_unit_Declaration : constant library_Unit.declaration.view := Pool.new_Item;
new_Generic : constant AdaM.Declaration.of_generic.view := AdaM.Declaration.of_generic.new_Declaration;
begin
define (library_Unit.declaration.item (new_unit_Declaration.all));
new_unit_Declaration.Declaration := (a_Generic, new_Generic);
return new_unit_Declaration;
end new_Generic;
function new_Intantiation return library_Unit.declaration.view
is
new_unit_Declaration : constant library_Unit.declaration.view := Pool.new_Item;
new_Instaniation : constant AdaM.Declaration.of_instantiation.view := AdaM.Declaration.of_instantiation.new_Declaration;
begin
define (library_Unit.declaration.item (new_unit_Declaration.all));
new_unit_Declaration.Declaration := (an_Instantiation, new_Instaniation);
return new_unit_Declaration;
end new_Intantiation;
procedure free (Self : in out library_Unit.declaration.view)
is
begin
destruct (library_Unit.declaration.item (Self.all));
Pool.free (Self);
end free;
-- Attributes
--
overriding
function Id (Self : access Item) return AdaM.Id
is
begin
return Pool.to_Id (Self);
end Id;
function my_Package (Self : in Item) return AdaM.Declaration.of_package.view
is
begin
return Self.Declaration.of_Package;
end my_Package;
-- Streams
--
procedure View_write (Stream : not null access Ada.Streams.Root_Stream_Type'Class;
Self : in View)
renames Pool.View_write;
procedure View_read (Stream : not null access Ada.Streams.Root_Stream_Type'Class;
Self : out View)
renames Pool.View_read;
end AdaM.library_Unit.declaration;
| 28.330769 | 130 | 0.651371 |
2eab64136ef9dac0fd7c6583dadee2ccabc10225 | 1,280 | ads | Ada | source/database-events.ads | jquorning/iDoNu | 1618b679f7d0895729dded62f22b0826e7da7cb1 | [
"blessing"
] | 1 | 2016-08-09T20:47:23.000Z | 2016-08-09T20:47:23.000Z | source/database-events.ads | jquorning/iDoNu | 1618b679f7d0895729dded62f22b0826e7da7cb1 | [
"blessing"
] | null | null | null | source/database-events.ads | jquorning/iDoNu | 1618b679f7d0895729dded62f22b0826e7da7cb1 | [
"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.Calendar;
with Ada.Containers.Vectors;
with Ada.Strings.Unbounded;
with Interfaces;
with Types;
package Database.Events is
package US renames Ada.Strings.Unbounded;
type Event_Kind is (Created, Startet, Stalled, Done,
Text, Deadline, Milestone);
type Event_Id is new Interfaces.Integer_64;
procedure Add_Event (Job : in Types.Job_Id;
Stamp : in Ada.Calendar.Time;
Kind : in Event_Kind;
Id : out Event_Id);
type Event_Info is
record
Stamp : US.Unbounded_String;
Kind : US.Unbounded_String;
end record;
package Event_Lists is
new Ada.Containers.Vectors (Positive, Event_Info);
function Get_Job_Events (Job : in Types.Job_Id)
return Event_Lists.Vector;
function Is_Done (Job : in Types.Job_Id) return Boolean;
-- Is last event in events for Job a DONE.
end Database.Events;
| 26.666667 | 68 | 0.629688 |
adebeab587beef89b48718fe295a6ce535a07277 | 8,287 | adb | Ada | awa/plugins/awa-images/regtests/awa-images-tests.adb | stcarrez/ada-awa | 0b153316e3f0462789c5cb255dd60624d73d06f0 | [
"Apache-2.0"
] | 81 | 2015-01-18T23:02:30.000Z | 2022-03-19T17:34:57.000Z | awa/plugins/awa-images/regtests/awa-images-tests.adb | jquorning/ada-awa | 1307bbadbbaba34052b3bf1b1707e07c58c98e4c | [
"Apache-2.0"
] | 20 | 2015-12-09T19:26:19.000Z | 2022-03-23T14:32:43.000Z | awa/plugins/awa-images/regtests/awa-images-tests.adb | jquorning/ada-awa | 1307bbadbbaba34052b3bf1b1707e07c58c98e4c | [
"Apache-2.0"
] | 16 | 2015-06-29T02:44:06.000Z | 2021-09-23T18:47:50.000Z | -----------------------------------------------------------------------
-- awa-images-tests -- Unit tests for images module
-- Copyright (C) 2018, 2019, 2020, 2021 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.Directories;
with Util.Test_Caller;
with Util.Strings;
with ADO;
with Servlet.Requests.Mockup;
with Servlet.Responses.Mockup;
with ASF.Tests;
with AWA.Tests.Helpers.Users;
package body AWA.Images.Tests is
use Ada.Strings.Unbounded;
use ADO;
package Caller is new Util.Test_Caller (Test, "Images.Beans");
procedure Add_Tests (Suite : in Util.Tests.Access_Test_Suite) is
begin
Caller.Add_Test (Suite, "Test AWA.Images.Beans.Create",
Test_Create_Image'Access);
Caller.Add_Test (Suite, "Test AWA.Images.Servlets (missing)",
Test_Missing_Image'Access);
end Add_Tests;
-- ------------------------------
-- Get some access on the wiki as anonymous users.
-- ------------------------------
procedure Verify_Anonymous (T : in out Test;
Page : in String;
Title : in String) is
pragma Unreferenced (Page, Title);
Request : Servlet.Requests.Mockup.Request;
Reply : Servlet.Responses.Mockup.Response;
begin
ASF.Tests.Do_Get (Request, Reply, "/storages/images.html",
"images-anonymous-list.html");
ASF.Tests.Assert_Contains (T, "List of pages", Reply,
"Wiki list recent page is invalid");
end Verify_Anonymous;
-- ------------------------------
-- Verify that the wiki lists contain the given page.
-- ------------------------------
procedure Verify_List_Contains (T : in out Test;
Name : in String) is
pragma Unreferenced (Name);
Request : Servlet.Requests.Mockup.Request;
Reply : Servlet.Responses.Mockup.Response;
begin
ASF.Tests.Do_Get (Request, Reply, "/storages/documents.html",
"storage-list.html");
ASF.Tests.Assert_Contains (T, "Documents of the workspace", Reply,
"List of documents is invalid");
end Verify_List_Contains;
-- ------------------------------
-- Test access to the blog as anonymous user.
-- ------------------------------
procedure Test_Anonymous_Access (T : in out Test) is
begin
T.Verify_Anonymous ("", "");
end Test_Anonymous_Access;
-- ------------------------------
-- Test creation of image by simulating web requests.
-- ------------------------------
procedure Test_Create_Image (T : in out Test) is
Request : Servlet.Requests.Mockup.Part_Request (1);
Reply : Servlet.Responses.Mockup.Response;
Content : Ada.Strings.Unbounded.Unbounded_String;
Folder_Id : ADO.Identifier;
Image_Id : ADO.Identifier;
Path : constant String := Util.Tests.Get_Test_Path ("regtests/result/upload.jpg");
begin
AWA.Tests.Helpers.Users.Login ("[email protected]", Request);
-- Create the folder.
Request.Set_Parameter ("folder-name", "Image Folder Name");
Request.Set_Parameter ("storage-folder-create-form", "1");
Request.Set_Parameter ("storage-folder-create-button", "1");
ASF.Tests.Do_Post (Request, Reply, "/storages/forms/folder-create.html",
"folder-create-form.html");
T.Assert (Reply.Get_Status = Servlet.Responses.SC_OK,
"Invalid response after folder creation");
Reply.Read_Content (Content);
Folder_Id := AWA.Tests.Helpers.Extract_Identifier (To_String (Content), "#folder");
T.Assert (Folder_Id > 0, "Invalid folder id returned");
-- Check the list page.
ASF.Tests.Do_Get (Request, Reply, "/storages/images.html",
"image-list.html");
ASF.Tests.Assert_Contains (T, "Documents of the workspace", Reply,
"List of documents is invalid (title)");
ASF.Tests.Assert_Contains (T, "Image Folder Name", Reply,
"List of documents is invalid (content)");
-- Upload an image to the folder.
if Ada.Directories.Exists (Path) then
Ada.Directories.Delete_File (Path);
end if;
Ada.Directories.Copy_File (Source_Name => "regtests/files/images/Ada-Lovelace.jpg",
Target_Name => Path,
Form => "all");
Request.Set_Parameter ("folder", ADO.Identifier'Image (Folder_Id));
Request.Set_Parameter ("uploadForm", "1");
Request.Set_Parameter ("id", "-1");
Request.Set_Parameter ("upload-button", "1");
Request.Set_Part (Position => 1, Name => "upload-file",
Path => Path, Content_Type => "image/jpg");
ASF.Tests.Do_Post (Request, Reply, "/storages/forms/upload-form.html",
"upload-image-form.html");
T.Assert (Reply.Get_Status = Servlet.Responses.SC_OK,
"Invalid response after image upload");
T.Assert_Equals ("application/json", Reply.Get_Content_Type,
"Invalid response after upload");
Reply.Read_Content (Content);
Image_Id := AWA.Tests.Helpers.Extract_Identifier (To_String (Content), "store");
T.Assert (Image_Id > 0, "Invalid image id returned after upload");
-- Look at the image content.
ASF.Tests.Do_Get (Request, Reply, "/storages/images/"
& Util.Strings.Image (Natural (Image_Id)) & "/view/upload.jpg",
"image-file-data.jpg");
T.Assert (Reply.Get_Status = Servlet.Responses.SC_OK,
"Invalid response after image get");
T.Assert_Equals ("image/jpg", Reply.Get_Content_Type,
"Invalid response after upload");
-- Look at the image description page.
ASF.Tests.Do_Get (Request, Reply, "/storages/image-info/"
& Util.Strings.Image (Natural (Image_Id)),
"image-file-info.html");
T.Assert (Reply.Get_Status = Servlet.Responses.SC_OK,
"Invalid response for image-info page");
T.Assert_Equals ("text/html; charset=UTF-8", Reply.Get_Content_Type,
"Invalid response for image-info");
ASF.Tests.Assert_Contains (T, "/storages/files/"
& Util.Strings.Image (Natural (Image_Id)) & "/", Reply,
"Image info page is invalid (missing link)");
end Test_Create_Image;
-- ------------------------------
-- Test getting an image which does not exist.
-- ------------------------------
procedure Test_Missing_Image (T : in out Test) is
Request : Servlet.Requests.Mockup.Request;
Reply : Servlet.Responses.Mockup.Response;
begin
ASF.Tests.Do_Get (Request, Reply, "/storages/images/12345345/view/missing.jpg",
"image-file-missing.html");
ASF.Tests.Assert_Redirect (T, "/auth/login.html", Reply,
"Invalid redirection for protected page");
AWA.Tests.Helpers.Users.Login ("[email protected]", Request);
ASF.Tests.Do_Get (Request, Reply, "/storages/images/12345345/view/missing.jpg",
"image-file-missing.html");
T.Assert (Reply.Get_Status = Servlet.Responses.SC_NOT_FOUND,
"Invalid response after image get");
end Test_Missing_Image;
end AWA.Images.Tests;
| 43.846561 | 93 | 0.578858 |
4b0e13bd683ce9f3a4ff04a1bd5d4198836fe859 | 1,169 | adb | Ada | src/gdb/gdb-8.3/gdb/testsuite/gdb.ada/float_param/pck.adb | 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/float_param/pck.adb | 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/float_param/pck.adb | alrooney/unum-sdk | bbccb10b0cd3500feccbbef22e27ea111c3d18eb | [
"Apache-2.0"
] | 20 | 2018-11-16T21:19:22.000Z | 2021-10-18T23:08:24.000Z | -- Copyright 2013-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 body Pck is
procedure Set_Float (F : Float) is
begin
Global_Float := F;
end Set_Float;
procedure Set_Double (Dummy : Integer; D : Long_Float) is
begin
Global_Double := D;
end Set_Double;
procedure Set_Long_Double (Dummy : Integer;
DS : Small_Struct;
LD : Long_Long_Float) is
begin
Global_Long_Double := LD;
end Set_Long_Double;
end Pck;
| 32.472222 | 73 | 0.679213 |
1ee33316c2daaa61d26b9d3546cb1cc92c048ccb | 1,531 | ads | Ada | tools/ada-larl/writers.ads | reznikmm/gela | 20134f1d154fb763812e73860c6f4b04f353df79 | [
"MIT"
] | null | null | null | tools/ada-larl/writers.ads | reznikmm/gela | 20134f1d154fb763812e73860c6f4b04f353df79 | [
"MIT"
] | null | null | null | tools/ada-larl/writers.ads | 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 League.Strings;
package Writers is
pragma Preelaborate;
type Writer is tagged private;
function Text
(Self : Writer) return League.Strings.Universal_String;
procedure Clear (Self : in out Writer);
procedure P
(Self : in out Writer;
Text : Wide_Wide_String := "");
procedure N
(Self : in out Writer;
Text : Wide_Wide_String);
procedure P
(Self : in out Writer;
Text : League.Strings.Universal_String);
procedure N
(Self : in out Writer;
Text : League.Strings.Universal_String);
procedure P
(Self : in out Writer;
Text : Wide_Wide_String := "";
Copy : in out Writer'Class);
procedure N
(Self : in out Writer;
Text : Wide_Wide_String;
Copy : in out Writer'Class);
procedure P
(Self : in out Writer;
Text : League.Strings.Universal_String;
Copy : in out Writer'Class);
procedure N
(Self : in out Writer;
Text : League.Strings.Universal_String;
Copy : in out Writer'Class);
procedure N
(Self : in out Writer;
Value : Natural);
procedure N
(Self : in out Writer;
Value : Writer'Class);
private
type Writer is tagged record
Text : League.Strings.Universal_String;
Last_Line : League.Strings.Universal_String;
end record;
end Writers;
| 21.871429 | 64 | 0.605487 |
38e5a684b1e24181629d2c39530d99640c31fa97 | 947 | adb | Ada | source/a-enumer.adb | ytomino/drake | 4e4bdcd8b8e23a11a29b31d3a8861fdf60090ea2 | [
"MIT"
] | 33 | 2015-04-04T09:19:36.000Z | 2021-11-10T05:33:34.000Z | source/a-enumer.adb | ytomino/drake | 4e4bdcd8b8e23a11a29b31d3a8861fdf60090ea2 | [
"MIT"
] | 8 | 2017-11-14T13:05:07.000Z | 2018-08-09T15:28:49.000Z | source/a-enumer.adb | ytomino/drake | 4e4bdcd8b8e23a11a29b31d3a8861fdf60090ea2 | [
"MIT"
] | 9 | 2015-02-03T17:09:53.000Z | 2021-11-12T01:16:05.000Z | package body Ada.Enumeration is
pragma Suppress (All_Checks);
package body Arithmetic is
function "+" (Left : Enum; Right : Distance) return Enum is
begin
return Enum'Val (Enum'Pos (Left) + Right);
end "+";
function "+" (Left : Distance; Right : Enum) return Enum is
begin
return Enum'Val (Left + Enum'Pos (Right));
end "+";
function "-" (Left : Enum; Right : Distance) return Enum is
begin
return Enum'Val (Enum'Pos (Left) - Right);
end "-";
function "-" (Left, Right : Enum) return Distance is
begin
return Enum'Pos (Left) - Enum'Pos (Right);
end "-";
procedure Increment (Ref : in out Enum) is
begin
Ref := Enum'Succ (Ref);
end Increment;
procedure Decrement (Ref : in out Enum) is
begin
Ref := Enum'Pred (Ref);
end Decrement;
end Arithmetic;
end Ada.Enumeration;
| 24.282051 | 65 | 0.56811 |
4b03d9a797ed4da0f6ae5c377139edcfa1b17dcb | 13,513 | ads | Ada | SVD2ada/svd/stm32_svd-spdifrx.ads | JCGobbi/Nucleo-STM32H743ZI | bb0b5a66e9ac8b3dbe381f9909df5ed5d77dad1c | [
"BSD-3-Clause"
] | null | null | null | SVD2ada/svd/stm32_svd-spdifrx.ads | JCGobbi/Nucleo-STM32H743ZI | bb0b5a66e9ac8b3dbe381f9909df5ed5d77dad1c | [
"BSD-3-Clause"
] | null | null | null | SVD2ada/svd/stm32_svd-spdifrx.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.SPDIFRX is
pragma Preelaborate;
---------------
-- Registers --
---------------
subtype CR_SPDIFRXEN_Field is HAL.UInt2;
subtype CR_DRFMT_Field is HAL.UInt2;
subtype CR_NBTR_Field is HAL.UInt2;
subtype CR_INSEL_Field is HAL.UInt3;
-- Control register
type CR_Register is record
-- Peripheral Block Enable
SPDIFRXEN : CR_SPDIFRXEN_Field := 16#0#;
-- Receiver DMA ENable for data flow
RXDMAEN : Boolean := False;
-- STerEO Mode
RXSTEO : Boolean := False;
-- RX Data format
DRFMT : CR_DRFMT_Field := 16#0#;
-- Mask Parity error bit
PMSK : Boolean := False;
-- Mask of Validity bit
VMSK : Boolean := False;
-- Mask of channel status and user bits
CUMSK : Boolean := False;
-- Mask of Preamble Type bits
PTMSK : Boolean := False;
-- Control Buffer DMA ENable for control flow
CBDMAEN : Boolean := False;
-- Channel Selection
CHSEL : Boolean := False;
-- Maximum allowed re-tries during synchronization phase
NBTR : CR_NBTR_Field := 16#0#;
-- Wait For Activity
WFA : Boolean := False;
-- unspecified
Reserved_15_15 : HAL.Bit := 16#0#;
-- input selection
INSEL : CR_INSEL_Field := 16#0#;
-- unspecified
Reserved_19_19 : HAL.Bit := 16#0#;
-- Symbol Clock Enable
CKSEN : Boolean := False;
-- Backup Symbol Clock Enable
CKSBKPEN : Boolean := False;
-- unspecified
Reserved_22_31 : HAL.UInt10 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for CR_Register use record
SPDIFRXEN at 0 range 0 .. 1;
RXDMAEN at 0 range 2 .. 2;
RXSTEO at 0 range 3 .. 3;
DRFMT at 0 range 4 .. 5;
PMSK at 0 range 6 .. 6;
VMSK at 0 range 7 .. 7;
CUMSK at 0 range 8 .. 8;
PTMSK at 0 range 9 .. 9;
CBDMAEN at 0 range 10 .. 10;
CHSEL at 0 range 11 .. 11;
NBTR at 0 range 12 .. 13;
WFA at 0 range 14 .. 14;
Reserved_15_15 at 0 range 15 .. 15;
INSEL at 0 range 16 .. 18;
Reserved_19_19 at 0 range 19 .. 19;
CKSEN at 0 range 20 .. 20;
CKSBKPEN at 0 range 21 .. 21;
Reserved_22_31 at 0 range 22 .. 31;
end record;
-- Interrupt mask register
type IMR_Register is record
-- RXNE interrupt enable
RXNEIE : Boolean := False;
-- Control Buffer Ready Interrupt Enable
CSRNEIE : Boolean := False;
-- Parity error interrupt enable
PERRIE : Boolean := False;
-- Overrun error Interrupt Enable
OVRIE : Boolean := False;
-- Synchronization Block Detected Interrupt Enable
SBLKIE : Boolean := False;
-- Synchronization Done
SYNCDIE : Boolean := False;
-- Serial Interface Error Interrupt Enable
IFEIE : Boolean := False;
-- unspecified
Reserved_7_31 : HAL.UInt25 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for IMR_Register use record
RXNEIE at 0 range 0 .. 0;
CSRNEIE at 0 range 1 .. 1;
PERRIE at 0 range 2 .. 2;
OVRIE at 0 range 3 .. 3;
SBLKIE at 0 range 4 .. 4;
SYNCDIE at 0 range 5 .. 5;
IFEIE at 0 range 6 .. 6;
Reserved_7_31 at 0 range 7 .. 31;
end record;
subtype SR_WIDTH5_Field is HAL.UInt15;
-- Status register
type SR_Register is record
-- Read-only. Read data register not empty
RXNE : Boolean;
-- Read-only. Control Buffer register is not empty
CSRNE : Boolean;
-- Read-only. Parity error
PERR : Boolean;
-- Read-only. Overrun error
OVR : Boolean;
-- Read-only. Synchronization Block Detected
SBD : Boolean;
-- Read-only. Synchronization Done
SYNCD : Boolean;
-- Read-only. Framing error
FERR : Boolean;
-- Read-only. Synchronization error
SERR : Boolean;
-- Read-only. Time-out error
TERR : Boolean;
-- unspecified
Reserved_9_15 : HAL.UInt7;
-- Read-only. Duration of 5 symbols counted with SPDIF_CLK
WIDTH5 : SR_WIDTH5_Field;
-- unspecified
Reserved_31_31 : HAL.Bit;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for SR_Register use record
RXNE at 0 range 0 .. 0;
CSRNE at 0 range 1 .. 1;
PERR at 0 range 2 .. 2;
OVR at 0 range 3 .. 3;
SBD at 0 range 4 .. 4;
SYNCD at 0 range 5 .. 5;
FERR at 0 range 6 .. 6;
SERR at 0 range 7 .. 7;
TERR at 0 range 8 .. 8;
Reserved_9_15 at 0 range 9 .. 15;
WIDTH5 at 0 range 16 .. 30;
Reserved_31_31 at 0 range 31 .. 31;
end record;
-- Interrupt Flag Clear register
type IFCR_Register is record
-- unspecified
Reserved_0_1 : HAL.UInt2 := 16#0#;
-- Write-only. Clears the Parity error flag
PERRCF : Boolean := False;
-- Write-only. Clears the Overrun error flag
OVRCF : Boolean := False;
-- Write-only. Clears the Synchronization Block Detected flag
SBDCF : Boolean := False;
-- Write-only. Clears the Synchronization Done flag
SYNCDCF : Boolean := False;
-- unspecified
Reserved_6_31 : HAL.UInt26 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for IFCR_Register use record
Reserved_0_1 at 0 range 0 .. 1;
PERRCF at 0 range 2 .. 2;
OVRCF at 0 range 3 .. 3;
SBDCF at 0 range 4 .. 4;
SYNCDCF at 0 range 5 .. 5;
Reserved_6_31 at 0 range 6 .. 31;
end record;
subtype DR_00_DR_Field is HAL.UInt24;
subtype DR_00_PT_Field is HAL.UInt2;
-- Data input register
type DR_00_Register is record
-- Read-only. Parity Error bit
DR : DR_00_DR_Field;
-- Read-only. Parity Error bit
PE : Boolean;
-- Read-only. Validity bit
V : Boolean;
-- Read-only. User bit
U : Boolean;
-- Read-only. Channel Status bit
C : Boolean;
-- Read-only. Preamble Type
PT : DR_00_PT_Field;
-- unspecified
Reserved_30_31 : HAL.UInt2;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for DR_00_Register use record
DR at 0 range 0 .. 23;
PE at 0 range 24 .. 24;
V at 0 range 25 .. 25;
U at 0 range 26 .. 26;
C at 0 range 27 .. 27;
PT at 0 range 28 .. 29;
Reserved_30_31 at 0 range 30 .. 31;
end record;
subtype DR_01_PT_Field is HAL.UInt2;
subtype DR_01_DR_Field is HAL.UInt24;
-- Data input register
type DR_01_Register is record
-- Read-only. Parity Error bit
PE : Boolean;
-- Read-only. Validity bit
V : Boolean;
-- Read-only. User bit
U : Boolean;
-- Read-only. Channel Status bit
C : Boolean;
-- Read-only. Preamble Type
PT : DR_01_PT_Field;
-- unspecified
Reserved_6_7 : HAL.UInt2;
-- Read-only. Data value
DR : DR_01_DR_Field;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for DR_01_Register use record
PE at 0 range 0 .. 0;
V at 0 range 1 .. 1;
U at 0 range 2 .. 2;
C at 0 range 3 .. 3;
PT at 0 range 4 .. 5;
Reserved_6_7 at 0 range 6 .. 7;
DR at 0 range 8 .. 31;
end record;
-- DR_10_DRNL array element
subtype DR_10_DRNL_Element is HAL.UInt16;
-- DR_10_DRNL array
type DR_10_DRNL_Field_Array is array (1 .. 2) of DR_10_DRNL_Element
with Component_Size => 16, Size => 32;
-- Data input register
type DR_10_Register
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- DRNL as a value
Val : HAL.UInt32;
when True =>
-- DRNL as an array
Arr : DR_10_DRNL_Field_Array;
end case;
end record
with Unchecked_Union, Size => 32, Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for DR_10_Register use record
Val at 0 range 0 .. 31;
Arr at 0 range 0 .. 31;
end record;
subtype CSR_USR_Field is HAL.UInt16;
subtype CSR_CS_Field is HAL.UInt8;
-- Channel Status register
type CSR_Register is record
-- Read-only. User data information
USR : CSR_USR_Field;
-- Read-only. Channel A status information
CS : CSR_CS_Field;
-- Read-only. Start Of Block
SOB : Boolean;
-- unspecified
Reserved_25_31 : HAL.UInt7;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for CSR_Register use record
USR at 0 range 0 .. 15;
CS at 0 range 16 .. 23;
SOB at 0 range 24 .. 24;
Reserved_25_31 at 0 range 25 .. 31;
end record;
subtype DIR_THI_Field is HAL.UInt13;
subtype DIR_TLO_Field is HAL.UInt13;
-- Debug Information register
type DIR_Register is record
-- Read-only. Threshold HIGH
THI : DIR_THI_Field;
-- unspecified
Reserved_13_15 : HAL.UInt3;
-- Read-only. Threshold LOW
TLO : DIR_TLO_Field;
-- unspecified
Reserved_29_31 : HAL.UInt3;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for DIR_Register use record
THI at 0 range 0 .. 12;
Reserved_13_15 at 0 range 13 .. 15;
TLO at 0 range 16 .. 28;
Reserved_29_31 at 0 range 29 .. 31;
end record;
subtype VERR_MINREV_Field is HAL.UInt4;
subtype VERR_MAJREV_Field is HAL.UInt4;
-- SPDIFRX version register
type VERR_Register is record
-- Read-only. Minor revision
MINREV : VERR_MINREV_Field;
-- Read-only. Major revision
MAJREV : VERR_MAJREV_Field;
-- unspecified
Reserved_8_31 : HAL.UInt24;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for VERR_Register use record
MINREV at 0 range 0 .. 3;
MAJREV at 0 range 4 .. 7;
Reserved_8_31 at 0 range 8 .. 31;
end record;
-----------------
-- Peripherals --
-----------------
type SPDIFRX_Disc is
(Val_00,
Val_01,
Val_10);
-- Receiver Interface
type SPDIFRX_Peripheral
(Discriminent : SPDIFRX_Disc := Val_00)
is record
-- Control register
CR : aliased CR_Register;
-- Interrupt mask register
IMR : aliased IMR_Register;
-- Status register
SR : aliased SR_Register;
-- Interrupt Flag Clear register
IFCR : aliased IFCR_Register;
-- Channel Status register
CSR : aliased CSR_Register;
-- Debug Information register
DIR : aliased DIR_Register;
-- SPDIFRX version register
VERR : aliased VERR_Register;
-- SPDIFRX identification register
IDR : aliased HAL.UInt32;
-- SPDIFRX size identification register
SIDR : aliased HAL.UInt32;
case Discriminent is
when Val_00 =>
-- Data input register
DR_00 : aliased DR_00_Register;
when Val_01 =>
-- Data input register
DR_01 : aliased DR_01_Register;
when Val_10 =>
-- Data input register
DR_10 : aliased DR_10_Register;
end case;
end record
with Unchecked_Union, Volatile;
for SPDIFRX_Peripheral use record
CR at 16#0# range 0 .. 31;
IMR at 16#4# range 0 .. 31;
SR at 16#8# range 0 .. 31;
IFCR at 16#C# range 0 .. 31;
CSR at 16#14# range 0 .. 31;
DIR at 16#18# range 0 .. 31;
VERR at 16#3F4# range 0 .. 31;
IDR at 16#3F8# range 0 .. 31;
SIDR at 16#3FC# range 0 .. 31;
DR_00 at 16#10# range 0 .. 31;
DR_01 at 16#10# range 0 .. 31;
DR_10 at 16#10# range 0 .. 31;
end record;
-- Receiver Interface
SPDIFRX_Periph : aliased SPDIFRX_Peripheral
with Import, Address => SPDIFRX_Base;
end STM32_SVD.SPDIFRX;
| 32.17381 | 79 | 0.553023 |
048d60e4104d988c8384c32eed1d64662fde7a9e | 181 | ads | Ada | src/common/sp-platform.ads | jquorning/septum | 6c9ccb6ed58429a144f44db0f3e2e72028655890 | [
"Apache-2.0"
] | 236 | 2021-05-31T00:08:00.000Z | 2022-03-31T20:11:31.000Z | src/common/sp-platform.ads | jquorning/septum | 6c9ccb6ed58429a144f44db0f3e2e72028655890 | [
"Apache-2.0"
] | 34 | 2021-05-25T02:02:46.000Z | 2022-02-01T11:58:09.000Z | src/common/sp-platform.ads | jquorning/septum | 6c9ccb6ed58429a144f44db0f3e2e72028655890 | [
"Apache-2.0"
] | 2 | 2022-01-31T22:47:20.000Z | 2022-03-27T21:43:35.000Z | package SP.Platform is
function Home_Dir return String;
function Path_Separator return Character;
function Path_Opposite_Separator return Character;
end SP.Platform;
| 20.111111 | 54 | 0.790055 |
a087d5586d9d9209761d7e5809ba287fe5b909c2 | 513,642 | adb | Ada | Prebuilt/Synth/_sds/vhls/encrypt/solution/.autopilot/db/aes_addRoundKey.bind.adb | stephenneuendorffer/hls_tuner | fa7de78f0e2bb4b8f9f2e0a0368ed071b379c875 | [
"MIT"
] | 1 | 2021-02-21T12:13:09.000Z | 2021-02-21T12:13:09.000Z | Prebuilt/Synth/_sds/vhls/encrypt/solution/.autopilot/db/aes_addRoundKey.bind.adb | stephenneuendorffer/hls_tuner | fa7de78f0e2bb4b8f9f2e0a0368ed071b379c875 | [
"MIT"
] | null | null | null | Prebuilt/Synth/_sds/vhls/encrypt/solution/.autopilot/db/aes_addRoundKey.bind.adb | stephenneuendorffer/hls_tuner | fa7de78f0e2bb4b8f9f2e0a0368ed071b379c875 | [
"MIT"
] | 1 | 2019-09-10T16:45:27.000Z | 2019-09-10T16:45:27.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>aes_addRoundKey</name>
<ret_bitwidth>0</ret_bitwidth>
<ports class_id="2" tracking_level="0" version="0">
<count>5</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>buf_r</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>buf</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<direction>2</direction>
<if_type>4</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>buf_offset</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>
<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>key</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>key</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<direction>0</direction>
<if_type>4</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>key_offset</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>
<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>key_offset_offset</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>
<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>156</count>
<item_version>0</item_version>
<item class_id="9" tracking_level="1" version="0" object_id="_6">
<Value>
<Obj>
<type>0</type>
<id>8</id>
<name>key_offset_offset_re</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>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>171</item>
<item>172</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_7">
<Value>
<Obj>
<type>0</type>
<id>9</id>
<name>key_offset_read</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>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>174</item>
<item>175</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_8">
<Value>
<Obj>
<type>0</type>
<id>10</id>
<name>buf_offset_read</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>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>176</item>
<item>177</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_9">
<Value>
<Obj>
<type>0</type>
<id>11</id>
<name>tmp</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>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>178</item>
</oprand_edges>
<opcode>trunc</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_10">
<Value>
<Obj>
<type>0</type>
<id>12</id>
<name></name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>198</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item class_id="11" tracking_level="0" version="0">
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second class_id="12" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="13" tracking_level="0" version="0">
<first class_id="14" tracking_level="0" version="0">
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>198</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>179</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_11">
<Value>
<Obj>
<type>0</type>
<id>14</id>
<name>i</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>198</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>198</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>5</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>181</item>
<item>182</item>
<item>183</item>
<item>184</item>
</oprand_edges>
<opcode>phi</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_12">
<Value>
<Obj>
<type>0</type>
<id>15</id>
<name>i_s</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>198</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>198</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>5</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>185</item>
<item>187</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_13">
<Value>
<Obj>
<type>0</type>
<id>17</id>
<name>tmp_s</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</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>188</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_14">
<Value>
<Obj>
<type>0</type>
<id>18</id>
<name>sum</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>198</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>198</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>5</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>189</item>
<item>190</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_15">
<Value>
<Obj>
<type>0</type>
<id>19</id>
<name>sum_cast</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>198</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>198</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>191</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_16">
<Value>
<Obj>
<type>0</type>
<id>20</id>
<name>sum11</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>198</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>198</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>192</item>
<item>193</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_17">
<Value>
<Obj>
<type>0</type>
<id>21</id>
<name>key_addr</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>198</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>198</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>194</item>
<item>195</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_18">
<Value>
<Obj>
<type>0</type>
<id>22</id>
<name>key_load_req</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</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>197</item>
<item>198</item>
<item>200</item>
</oprand_edges>
<opcode>readreq</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_19">
<Value>
<Obj>
<type>0</type>
<id>23</id>
<name>key_addr_read</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>202</item>
<item>203</item>
<item>632</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_20">
<Value>
<Obj>
<type>0</type>
<id>24</id>
<name>sum1</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</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>204</item>
<item>205</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_21">
<Value>
<Obj>
<type>0</type>
<id>25</id>
<name>buf_addr</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</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>206</item>
<item>207</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_22">
<Value>
<Obj>
<type>0</type>
<id>26</id>
<name>buf_load_req</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</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>208</item>
<item>209</item>
<item>210</item>
</oprand_edges>
<opcode>readreq</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_23">
<Value>
<Obj>
<type>0</type>
<id>27</id>
<name>buf_addr_read</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>211</item>
<item>212</item>
<item>630</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_24">
<Value>
<Obj>
<type>0</type>
<id>28</id>
<name>tmp_25</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</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>213</item>
<item>214</item>
</oprand_edges>
<opcode>xor</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_25">
<Value>
<Obj>
<type>0</type>
<id>29</id>
<name>buf_addr_req</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>216</item>
<item>217</item>
<item>218</item>
<item>629</item>
</oprand_edges>
<opcode>writereq</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_26">
<Value>
<Obj>
<type>0</type>
<id>30</id>
<name></name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</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>220</item>
<item>221</item>
<item>222</item>
<item>224</item>
<item>628</item>
</oprand_edges>
<opcode>write</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_27">
<Value>
<Obj>
<type>0</type>
<id>31</id>
<name>buf_addr_resp</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</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>226</item>
<item>227</item>
<item>627</item>
</oprand_edges>
<opcode>writeresp</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_28">
<Value>
<Obj>
<type>0</type>
<id>32</id>
<name>i_11_1</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>198</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>198</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>5</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>228</item>
<item>230</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_29">
<Value>
<Obj>
<type>0</type>
<id>33</id>
<name>tmp_1</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</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>231</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_30">
<Value>
<Obj>
<type>0</type>
<id>34</id>
<name>sum_1</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>198</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>198</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>5</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>232</item>
<item>233</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_31">
<Value>
<Obj>
<type>0</type>
<id>35</id>
<name>sum_1_cast</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>198</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>198</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>234</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_32">
<Value>
<Obj>
<type>0</type>
<id>36</id>
<name>sum12</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>198</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>198</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>235</item>
<item>236</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_33">
<Value>
<Obj>
<type>0</type>
<id>37</id>
<name>key_addr_8</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>198</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>198</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>237</item>
<item>238</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_34">
<Value>
<Obj>
<type>0</type>
<id>38</id>
<name>key_load_1_req</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>239</item>
<item>240</item>
<item>241</item>
<item>633</item>
</oprand_edges>
<opcode>readreq</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_35">
<Value>
<Obj>
<type>0</type>
<id>39</id>
<name>key_addr_8_read</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</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>242</item>
<item>243</item>
<item>624</item>
<item>631</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_36">
<Value>
<Obj>
<type>0</type>
<id>40</id>
<name>sum2</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</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>244</item>
<item>245</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_37">
<Value>
<Obj>
<type>0</type>
<id>41</id>
<name>buf_addr_31</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</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>246</item>
<item>247</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_38">
<Value>
<Obj>
<type>0</type>
<id>42</id>
<name>buf_load_1_req</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>248</item>
<item>249</item>
<item>250</item>
<item>626</item>
</oprand_edges>
<opcode>readreq</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_39">
<Value>
<Obj>
<type>0</type>
<id>43</id>
<name>buf_addr_31_read</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>251</item>
<item>252</item>
<item>622</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_40">
<Value>
<Obj>
<type>0</type>
<id>44</id>
<name>tmp_69_1</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</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>253</item>
<item>254</item>
</oprand_edges>
<opcode>xor</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_41">
<Value>
<Obj>
<type>0</type>
<id>45</id>
<name>buf_addr_31_req</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>255</item>
<item>256</item>
<item>257</item>
<item>621</item>
</oprand_edges>
<opcode>writereq</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_42">
<Value>
<Obj>
<type>0</type>
<id>46</id>
<name></name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</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>258</item>
<item>259</item>
<item>260</item>
<item>261</item>
<item>620</item>
</oprand_edges>
<opcode>write</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_43">
<Value>
<Obj>
<type>0</type>
<id>47</id>
<name>buf_addr_31_resp</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</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>262</item>
<item>263</item>
<item>619</item>
</oprand_edges>
<opcode>writeresp</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_44">
<Value>
<Obj>
<type>0</type>
<id>48</id>
<name>i_11_2</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>198</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>198</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>5</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>264</item>
<item>266</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_45">
<Value>
<Obj>
<type>0</type>
<id>49</id>
<name>tmp_2</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</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>267</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_46">
<Value>
<Obj>
<type>0</type>
<id>50</id>
<name>sum_2</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>198</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>198</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>5</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>268</item>
<item>269</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_47">
<Value>
<Obj>
<type>0</type>
<id>51</id>
<name>sum_2_cast</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>198</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>198</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>270</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_48">
<Value>
<Obj>
<type>0</type>
<id>52</id>
<name>sum13</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>198</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>198</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>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_49">
<Value>
<Obj>
<type>0</type>
<id>53</id>
<name>key_addr_9</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>198</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>198</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>273</item>
<item>274</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_50">
<Value>
<Obj>
<type>0</type>
<id>54</id>
<name>key_load_2_req</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>275</item>
<item>276</item>
<item>277</item>
<item>625</item>
</oprand_edges>
<opcode>readreq</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_51">
<Value>
<Obj>
<type>0</type>
<id>55</id>
<name>key_addr_9_read</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</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>278</item>
<item>279</item>
<item>616</item>
<item>623</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_52">
<Value>
<Obj>
<type>0</type>
<id>56</id>
<name>sum3</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</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>280</item>
<item>281</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_53">
<Value>
<Obj>
<type>0</type>
<id>57</id>
<name>buf_addr_32</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</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>282</item>
<item>283</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_54">
<Value>
<Obj>
<type>0</type>
<id>58</id>
<name>buf_load_2_req</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>284</item>
<item>285</item>
<item>286</item>
<item>618</item>
</oprand_edges>
<opcode>readreq</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_55">
<Value>
<Obj>
<type>0</type>
<id>59</id>
<name>buf_addr_32_read</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>287</item>
<item>288</item>
<item>614</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_56">
<Value>
<Obj>
<type>0</type>
<id>60</id>
<name>tmp_69_2</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</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>289</item>
<item>290</item>
</oprand_edges>
<opcode>xor</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_57">
<Value>
<Obj>
<type>0</type>
<id>61</id>
<name>buf_addr_32_req</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>291</item>
<item>292</item>
<item>293</item>
<item>613</item>
</oprand_edges>
<opcode>writereq</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_58">
<Value>
<Obj>
<type>0</type>
<id>62</id>
<name></name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</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>294</item>
<item>295</item>
<item>296</item>
<item>297</item>
<item>612</item>
</oprand_edges>
<opcode>write</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_59">
<Value>
<Obj>
<type>0</type>
<id>63</id>
<name>buf_addr_32_resp</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</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>298</item>
<item>299</item>
<item>611</item>
</oprand_edges>
<opcode>writeresp</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_60">
<Value>
<Obj>
<type>0</type>
<id>64</id>
<name>i_11_3</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>198</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>198</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>5</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>300</item>
<item>302</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_61">
<Value>
<Obj>
<type>0</type>
<id>65</id>
<name>tmp_3</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</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>303</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_62">
<Value>
<Obj>
<type>0</type>
<id>66</id>
<name>sum_3</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>198</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>198</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>5</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>304</item>
<item>305</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_63">
<Value>
<Obj>
<type>0</type>
<id>67</id>
<name>sum_3_cast</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>198</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>198</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>306</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_64">
<Value>
<Obj>
<type>0</type>
<id>68</id>
<name>sum14</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>198</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>198</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>307</item>
<item>308</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_65">
<Value>
<Obj>
<type>0</type>
<id>69</id>
<name>key_addr_10</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>198</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>198</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>309</item>
<item>310</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_66">
<Value>
<Obj>
<type>0</type>
<id>70</id>
<name>key_load_3_req</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>311</item>
<item>312</item>
<item>313</item>
<item>617</item>
</oprand_edges>
<opcode>readreq</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_67">
<Value>
<Obj>
<type>0</type>
<id>71</id>
<name>key_addr_10_read</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</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>314</item>
<item>315</item>
<item>608</item>
<item>615</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_68">
<Value>
<Obj>
<type>0</type>
<id>72</id>
<name>sum4</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</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>316</item>
<item>317</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_69">
<Value>
<Obj>
<type>0</type>
<id>73</id>
<name>buf_addr_33</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</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>318</item>
<item>319</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_70">
<Value>
<Obj>
<type>0</type>
<id>74</id>
<name>buf_load_3_req</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>320</item>
<item>321</item>
<item>322</item>
<item>610</item>
</oprand_edges>
<opcode>readreq</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_71">
<Value>
<Obj>
<type>0</type>
<id>75</id>
<name>buf_addr_33_read</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>323</item>
<item>324</item>
<item>606</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_72">
<Value>
<Obj>
<type>0</type>
<id>76</id>
<name>tmp_69_3</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</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>325</item>
<item>326</item>
</oprand_edges>
<opcode>xor</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_73">
<Value>
<Obj>
<type>0</type>
<id>77</id>
<name>buf_addr_33_req</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>327</item>
<item>328</item>
<item>329</item>
<item>605</item>
</oprand_edges>
<opcode>writereq</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_74">
<Value>
<Obj>
<type>0</type>
<id>78</id>
<name></name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</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>330</item>
<item>331</item>
<item>332</item>
<item>333</item>
<item>604</item>
</oprand_edges>
<opcode>write</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_75">
<Value>
<Obj>
<type>0</type>
<id>79</id>
<name>buf_addr_33_resp</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</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>334</item>
<item>335</item>
<item>603</item>
</oprand_edges>
<opcode>writeresp</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_76">
<Value>
<Obj>
<type>0</type>
<id>80</id>
<name>i_11_4</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>198</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>198</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>5</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>336</item>
<item>338</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_77">
<Value>
<Obj>
<type>0</type>
<id>81</id>
<name>tmp_4</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</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>339</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_78">
<Value>
<Obj>
<type>0</type>
<id>82</id>
<name>sum_4</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>198</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>198</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>5</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>340</item>
<item>341</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_79">
<Value>
<Obj>
<type>0</type>
<id>83</id>
<name>sum_4_cast</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>198</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>198</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>342</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_80">
<Value>
<Obj>
<type>0</type>
<id>84</id>
<name>sum15</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>198</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>198</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>343</item>
<item>344</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_81">
<Value>
<Obj>
<type>0</type>
<id>85</id>
<name>key_addr_11</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>198</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>198</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>345</item>
<item>346</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_82">
<Value>
<Obj>
<type>0</type>
<id>86</id>
<name>key_load_4_req</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>347</item>
<item>348</item>
<item>349</item>
<item>609</item>
</oprand_edges>
<opcode>readreq</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_83">
<Value>
<Obj>
<type>0</type>
<id>87</id>
<name>key_addr_11_read</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</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>350</item>
<item>351</item>
<item>600</item>
<item>607</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_84">
<Value>
<Obj>
<type>0</type>
<id>88</id>
<name>sum5</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</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>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_85">
<Value>
<Obj>
<type>0</type>
<id>89</id>
<name>buf_addr_34</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</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>354</item>
<item>355</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_86">
<Value>
<Obj>
<type>0</type>
<id>90</id>
<name>buf_load_4_req</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>356</item>
<item>357</item>
<item>358</item>
<item>602</item>
</oprand_edges>
<opcode>readreq</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_87">
<Value>
<Obj>
<type>0</type>
<id>91</id>
<name>buf_addr_34_read</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>359</item>
<item>360</item>
<item>598</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_88">
<Value>
<Obj>
<type>0</type>
<id>92</id>
<name>tmp_69_4</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</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>361</item>
<item>362</item>
</oprand_edges>
<opcode>xor</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_89">
<Value>
<Obj>
<type>0</type>
<id>93</id>
<name>buf_addr_34_req</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>363</item>
<item>364</item>
<item>365</item>
<item>597</item>
</oprand_edges>
<opcode>writereq</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_90">
<Value>
<Obj>
<type>0</type>
<id>94</id>
<name></name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</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>366</item>
<item>367</item>
<item>368</item>
<item>369</item>
<item>596</item>
</oprand_edges>
<opcode>write</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_91">
<Value>
<Obj>
<type>0</type>
<id>95</id>
<name>buf_addr_34_resp</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</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>370</item>
<item>371</item>
<item>595</item>
</oprand_edges>
<opcode>writeresp</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_92">
<Value>
<Obj>
<type>0</type>
<id>96</id>
<name>i_11_5</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>198</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>198</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>5</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>372</item>
<item>374</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_93">
<Value>
<Obj>
<type>0</type>
<id>97</id>
<name>tmp_5</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</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>375</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_94">
<Value>
<Obj>
<type>0</type>
<id>98</id>
<name>sum_5</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>198</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>198</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>5</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>376</item>
<item>377</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_95">
<Value>
<Obj>
<type>0</type>
<id>99</id>
<name>sum_5_cast</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>198</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>198</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>378</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_96">
<Value>
<Obj>
<type>0</type>
<id>100</id>
<name>sum16</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>198</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>198</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>379</item>
<item>380</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_97">
<Value>
<Obj>
<type>0</type>
<id>101</id>
<name>key_addr_12</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>198</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>198</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>381</item>
<item>382</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_98">
<Value>
<Obj>
<type>0</type>
<id>102</id>
<name>key_load_5_req</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>383</item>
<item>384</item>
<item>385</item>
<item>601</item>
</oprand_edges>
<opcode>readreq</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_99">
<Value>
<Obj>
<type>0</type>
<id>103</id>
<name>key_addr_12_read</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</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>386</item>
<item>387</item>
<item>592</item>
<item>599</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_100">
<Value>
<Obj>
<type>0</type>
<id>104</id>
<name>sum6</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</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>388</item>
<item>389</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_101">
<Value>
<Obj>
<type>0</type>
<id>105</id>
<name>buf_addr_35</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</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>390</item>
<item>391</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_102">
<Value>
<Obj>
<type>0</type>
<id>106</id>
<name>buf_load_5_req</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>392</item>
<item>393</item>
<item>394</item>
<item>594</item>
</oprand_edges>
<opcode>readreq</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_103">
<Value>
<Obj>
<type>0</type>
<id>107</id>
<name>buf_addr_35_read</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>395</item>
<item>396</item>
<item>590</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_104">
<Value>
<Obj>
<type>0</type>
<id>108</id>
<name>tmp_69_5</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</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>397</item>
<item>398</item>
</oprand_edges>
<opcode>xor</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_105">
<Value>
<Obj>
<type>0</type>
<id>109</id>
<name>buf_addr_35_req</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>399</item>
<item>400</item>
<item>401</item>
<item>589</item>
</oprand_edges>
<opcode>writereq</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_106">
<Value>
<Obj>
<type>0</type>
<id>110</id>
<name></name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</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>402</item>
<item>403</item>
<item>404</item>
<item>405</item>
<item>588</item>
</oprand_edges>
<opcode>write</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_107">
<Value>
<Obj>
<type>0</type>
<id>111</id>
<name>buf_addr_35_resp</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</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>406</item>
<item>407</item>
<item>587</item>
</oprand_edges>
<opcode>writeresp</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_108">
<Value>
<Obj>
<type>0</type>
<id>112</id>
<name>i_11_6</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>198</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>198</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>5</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>408</item>
<item>410</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_109">
<Value>
<Obj>
<type>0</type>
<id>113</id>
<name>tmp_6</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</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>411</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_110">
<Value>
<Obj>
<type>0</type>
<id>114</id>
<name>sum_6</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>198</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>198</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>5</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>412</item>
<item>413</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_111">
<Value>
<Obj>
<type>0</type>
<id>115</id>
<name>sum_6_cast</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>198</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>198</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>414</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_112">
<Value>
<Obj>
<type>0</type>
<id>116</id>
<name>sum17</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>198</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>198</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>415</item>
<item>416</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_113">
<Value>
<Obj>
<type>0</type>
<id>117</id>
<name>key_addr_13</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>198</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>198</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>417</item>
<item>418</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_114">
<Value>
<Obj>
<type>0</type>
<id>118</id>
<name>key_load_6_req</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>419</item>
<item>420</item>
<item>421</item>
<item>593</item>
</oprand_edges>
<opcode>readreq</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_115">
<Value>
<Obj>
<type>0</type>
<id>119</id>
<name>key_addr_13_read</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</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>422</item>
<item>423</item>
<item>585</item>
<item>591</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_116">
<Value>
<Obj>
<type>0</type>
<id>120</id>
<name>sum7</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</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>424</item>
<item>425</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_117">
<Value>
<Obj>
<type>0</type>
<id>121</id>
<name>buf_addr_36</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</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>426</item>
<item>427</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_118">
<Value>
<Obj>
<type>0</type>
<id>122</id>
<name>buf_load_6_req</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>428</item>
<item>429</item>
<item>430</item>
<item>586</item>
</oprand_edges>
<opcode>readreq</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_119">
<Value>
<Obj>
<type>0</type>
<id>123</id>
<name>buf_addr_36_read</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>431</item>
<item>432</item>
<item>584</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_120">
<Value>
<Obj>
<type>0</type>
<id>124</id>
<name>tmp_69_6</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</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>433</item>
<item>434</item>
</oprand_edges>
<opcode>xor</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_121">
<Value>
<Obj>
<type>0</type>
<id>125</id>
<name>buf_addr_36_req</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>435</item>
<item>436</item>
<item>437</item>
<item>583</item>
</oprand_edges>
<opcode>writereq</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_122">
<Value>
<Obj>
<type>0</type>
<id>126</id>
<name></name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</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>438</item>
<item>439</item>
<item>440</item>
<item>441</item>
<item>582</item>
</oprand_edges>
<opcode>write</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_123">
<Value>
<Obj>
<type>0</type>
<id>127</id>
<name>buf_addr_36_resp</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</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>442</item>
<item>443</item>
<item>581</item>
</oprand_edges>
<opcode>writeresp</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_124">
<Value>
<Obj>
<type>0</type>
<id>128</id>
<name>i_11_7</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>198</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>198</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>5</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>444</item>
<item>446</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_125">
<Value>
<Obj>
<type>0</type>
<id>129</id>
<name>i_11_7_cast</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>198</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>198</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>447</item>
</oprand_edges>
<opcode>sext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_126">
<Value>
<Obj>
<type>0</type>
<id>130</id>
<name>tmp_7</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>198</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>198</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>448</item>
<item>450</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_127">
<Value>
<Obj>
<type>0</type>
<id>132</id>
<name></name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>198</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>198</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>451</item>
<item>452</item>
<item>453</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_128">
<Value>
<Obj>
<type>0</type>
<id>134</id>
<name>tmp_7_10</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</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>454</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_129">
<Value>
<Obj>
<type>0</type>
<id>135</id>
<name>tmp_7_cast_cast</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>198</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>198</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>455</item>
</oprand_edges>
<opcode>sext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_130">
<Value>
<Obj>
<type>0</type>
<id>136</id>
<name>sum_7</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>198</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>198</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>456</item>
<item>457</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_131">
<Value>
<Obj>
<type>0</type>
<id>137</id>
<name>sum_7_cast</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>198</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>198</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>458</item>
</oprand_edges>
<opcode>sext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_132">
<Value>
<Obj>
<type>0</type>
<id>138</id>
<name>sum18</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>198</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>198</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>459</item>
<item>460</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_133">
<Value>
<Obj>
<type>0</type>
<id>139</id>
<name>key_addr_14</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>198</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>198</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>461</item>
<item>462</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_134">
<Value>
<Obj>
<type>0</type>
<id>140</id>
<name>key_load_7_req</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>10</count>
<item_version>0</item_version>
<item>463</item>
<item>464</item>
<item>465</item>
<item>647</item>
<item>673</item>
<item>699</item>
<item>725</item>
<item>751</item>
<item>777</item>
<item>803</item>
</oprand_edges>
<opcode>readreq</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_135">
<Value>
<Obj>
<type>0</type>
<id>141</id>
<name>key_addr_14_read</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>17</count>
<item_version>0</item_version>
<item>466</item>
<item>467</item>
<item>645</item>
<item>648</item>
<item>651</item>
<item>674</item>
<item>677</item>
<item>700</item>
<item>703</item>
<item>726</item>
<item>729</item>
<item>752</item>
<item>755</item>
<item>778</item>
<item>781</item>
<item>804</item>
<item>807</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_136">
<Value>
<Obj>
<type>0</type>
<id>142</id>
<name>sum8</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</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>468</item>
<item>469</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_137">
<Value>
<Obj>
<type>0</type>
<id>143</id>
<name>buf_addr_37</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</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>470</item>
<item>471</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_138">
<Value>
<Obj>
<type>0</type>
<id>144</id>
<name>buf_load_7_req</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>17</count>
<item_version>0</item_version>
<item>472</item>
<item>473</item>
<item>474</item>
<item>653</item>
<item>669</item>
<item>679</item>
<item>695</item>
<item>705</item>
<item>721</item>
<item>731</item>
<item>747</item>
<item>757</item>
<item>773</item>
<item>783</item>
<item>799</item>
<item>809</item>
<item>825</item>
</oprand_edges>
<opcode>readreq</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_139">
<Value>
<Obj>
<type>0</type>
<id>145</id>
<name>buf_addr_37_read</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>17</count>
<item_version>0</item_version>
<item>475</item>
<item>476</item>
<item>643</item>
<item>654</item>
<item>657</item>
<item>680</item>
<item>683</item>
<item>706</item>
<item>709</item>
<item>732</item>
<item>735</item>
<item>758</item>
<item>761</item>
<item>784</item>
<item>787</item>
<item>810</item>
<item>813</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_140">
<Value>
<Obj>
<type>0</type>
<id>146</id>
<name>tmp_69_7</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</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>477</item>
<item>478</item>
</oprand_edges>
<opcode>xor</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_141">
<Value>
<Obj>
<type>0</type>
<id>147</id>
<name>buf_addr_37_req</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>18</count>
<item_version>0</item_version>
<item>479</item>
<item>480</item>
<item>481</item>
<item>642</item>
<item>659</item>
<item>663</item>
<item>685</item>
<item>689</item>
<item>711</item>
<item>715</item>
<item>737</item>
<item>741</item>
<item>763</item>
<item>767</item>
<item>789</item>
<item>793</item>
<item>815</item>
<item>819</item>
</oprand_edges>
<opcode>writereq</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_142">
<Value>
<Obj>
<type>0</type>
<id>148</id>
<name></name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>19</count>
<item_version>0</item_version>
<item>482</item>
<item>483</item>
<item>484</item>
<item>485</item>
<item>641</item>
<item>660</item>
<item>664</item>
<item>686</item>
<item>690</item>
<item>712</item>
<item>716</item>
<item>738</item>
<item>742</item>
<item>764</item>
<item>768</item>
<item>790</item>
<item>794</item>
<item>816</item>
<item>820</item>
</oprand_edges>
<opcode>write</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_143">
<Value>
<Obj>
<type>0</type>
<id>149</id>
<name>buf_addr_37_resp</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>17</count>
<item_version>0</item_version>
<item>486</item>
<item>487</item>
<item>640</item>
<item>665</item>
<item>670</item>
<item>691</item>
<item>696</item>
<item>717</item>
<item>722</item>
<item>743</item>
<item>748</item>
<item>769</item>
<item>774</item>
<item>795</item>
<item>800</item>
<item>821</item>
<item>826</item>
</oprand_edges>
<opcode>writeresp</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_144">
<Value>
<Obj>
<type>0</type>
<id>150</id>
<name>i_11_8</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>198</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>198</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>5</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>488</item>
<item>490</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_145">
<Value>
<Obj>
<type>0</type>
<id>151</id>
<name>tmp_8</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</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>zext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_146">
<Value>
<Obj>
<type>0</type>
<id>152</id>
<name>sum_8</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>198</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>198</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>5</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>492</item>
<item>493</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_147">
<Value>
<Obj>
<type>0</type>
<id>153</id>
<name>sum_8_cast</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>198</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>198</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>494</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_148">
<Value>
<Obj>
<type>0</type>
<id>154</id>
<name>sum19</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>198</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>198</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>495</item>
<item>496</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_149">
<Value>
<Obj>
<type>0</type>
<id>155</id>
<name>key_addr_15</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>198</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>198</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>497</item>
<item>498</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_150">
<Value>
<Obj>
<type>0</type>
<id>156</id>
<name>key_load_8_req</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>11</count>
<item_version>0</item_version>
<item>499</item>
<item>500</item>
<item>501</item>
<item>646</item>
<item>649</item>
<item>675</item>
<item>701</item>
<item>727</item>
<item>753</item>
<item>779</item>
<item>805</item>
</oprand_edges>
<opcode>readreq</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_151">
<Value>
<Obj>
<type>0</type>
<id>157</id>
<name>key_addr_15_read</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>18</count>
<item_version>0</item_version>
<item>502</item>
<item>503</item>
<item>638</item>
<item>644</item>
<item>650</item>
<item>652</item>
<item>676</item>
<item>678</item>
<item>702</item>
<item>704</item>
<item>728</item>
<item>730</item>
<item>754</item>
<item>756</item>
<item>780</item>
<item>782</item>
<item>806</item>
<item>808</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_152">
<Value>
<Obj>
<type>0</type>
<id>158</id>
<name>sum9</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</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>504</item>
<item>505</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_153">
<Value>
<Obj>
<type>0</type>
<id>159</id>
<name>buf_addr_38</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</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>506</item>
<item>507</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_154">
<Value>
<Obj>
<type>0</type>
<id>160</id>
<name>buf_load_8_req</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>18</count>
<item_version>0</item_version>
<item>508</item>
<item>509</item>
<item>510</item>
<item>639</item>
<item>655</item>
<item>671</item>
<item>681</item>
<item>697</item>
<item>707</item>
<item>723</item>
<item>733</item>
<item>749</item>
<item>759</item>
<item>775</item>
<item>785</item>
<item>801</item>
<item>811</item>
<item>827</item>
</oprand_edges>
<opcode>readreq</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_155">
<Value>
<Obj>
<type>0</type>
<id>161</id>
<name>buf_addr_38_read</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>17</count>
<item_version>0</item_version>
<item>511</item>
<item>512</item>
<item>637</item>
<item>656</item>
<item>658</item>
<item>682</item>
<item>684</item>
<item>708</item>
<item>710</item>
<item>734</item>
<item>736</item>
<item>760</item>
<item>762</item>
<item>786</item>
<item>788</item>
<item>812</item>
<item>814</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_156">
<Value>
<Obj>
<type>0</type>
<id>162</id>
<name>tmp_69_8</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</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>513</item>
<item>514</item>
</oprand_edges>
<opcode>xor</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_157">
<Value>
<Obj>
<type>0</type>
<id>163</id>
<name>buf_addr_38_req</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>18</count>
<item_version>0</item_version>
<item>515</item>
<item>516</item>
<item>517</item>
<item>636</item>
<item>661</item>
<item>666</item>
<item>687</item>
<item>692</item>
<item>713</item>
<item>718</item>
<item>739</item>
<item>744</item>
<item>765</item>
<item>770</item>
<item>791</item>
<item>796</item>
<item>817</item>
<item>822</item>
</oprand_edges>
<opcode>writereq</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_158">
<Value>
<Obj>
<type>0</type>
<id>164</id>
<name></name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>19</count>
<item_version>0</item_version>
<item>518</item>
<item>519</item>
<item>520</item>
<item>521</item>
<item>635</item>
<item>662</item>
<item>667</item>
<item>688</item>
<item>693</item>
<item>714</item>
<item>719</item>
<item>740</item>
<item>745</item>
<item>766</item>
<item>771</item>
<item>792</item>
<item>797</item>
<item>818</item>
<item>823</item>
</oprand_edges>
<opcode>write</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_159">
<Value>
<Obj>
<type>0</type>
<id>165</id>
<name>buf_addr_38_resp</name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>205</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>205</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>17</count>
<item_version>0</item_version>
<item>522</item>
<item>523</item>
<item>634</item>
<item>668</item>
<item>672</item>
<item>694</item>
<item>698</item>
<item>720</item>
<item>724</item>
<item>746</item>
<item>750</item>
<item>772</item>
<item>776</item>
<item>798</item>
<item>802</item>
<item>824</item>
<item>828</item>
</oprand_edges>
<opcode>writeresp</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_160">
<Value>
<Obj>
<type>0</type>
<id>166</id>
<name></name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>206</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>206</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>524</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_161">
<Value>
<Obj>
<type>0</type>
<id>168</id>
<name></name>
<fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</fileName>
<fileDirectory>/scratch/local/tmp.soPlafqy6w/_sds/vhls</fileDirectory>
<lineNumber>207</lineNumber>
<contextFuncName>aes_addRoundKey</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/scratch/local/tmp.soPlafqy6w/_sds/vhls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/MachSuite/aes/Sources/aes.c</first>
<second>aes_addRoundKey</second>
</first>
<second>207</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>13</count>
<item_version>0</item_version>
<item class_id="16" tracking_level="1" version="0" object_id="_162">
<Value>
<Obj>
<type>2</type>
<id>180</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>16</content>
</item>
<item class_id_reference="16" object_id="_163">
<Value>
<Obj>
<type>2</type>
<id>186</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>31</content>
</item>
<item class_id_reference="16" object_id="_164">
<Value>
<Obj>
<type>2</type>
<id>199</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_165">
<Value>
<Obj>
<type>2</type>
<id>223</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="_166">
<Value>
<Obj>
<type>2</type>
<id>229</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>30</content>
</item>
<item class_id_reference="16" object_id="_167">
<Value>
<Obj>
<type>2</type>
<id>265</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>29</content>
</item>
<item class_id_reference="16" object_id="_168">
<Value>
<Obj>
<type>2</type>
<id>301</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>28</content>
</item>
<item class_id_reference="16" object_id="_169">
<Value>
<Obj>
<type>2</type>
<id>337</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>27</content>
</item>
<item class_id_reference="16" object_id="_170">
<Value>
<Obj>
<type>2</type>
<id>373</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>26</content>
</item>
<item class_id_reference="16" object_id="_171">
<Value>
<Obj>
<type>2</type>
<id>409</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>25</content>
</item>
<item class_id_reference="16" object_id="_172">
<Value>
<Obj>
<type>2</type>
<id>445</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>24</content>
</item>
<item class_id_reference="16" object_id="_173">
<Value>
<Obj>
<type>2</type>
<id>449</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>
<item class_id_reference="16" object_id="_174">
<Value>
<Obj>
<type>2</type>
<id>489</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>23</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="_175">
<Obj>
<type>3</type>
<id>13</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>5</count>
<item_version>0</item_version>
<item>8</item>
<item>9</item>
<item>10</item>
<item>11</item>
<item>12</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_176">
<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>117</count>
<item_version>0</item_version>
<item>14</item>
<item>15</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>
<item>41</item>
<item>42</item>
<item>43</item>
<item>44</item>
<item>45</item>
<item>46</item>
<item>47</item>
<item>48</item>
<item>49</item>
<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>132</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_177">
<Obj>
<type>3</type>
<id>167</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>33</count>
<item_version>0</item_version>
<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>
</node_objs>
</item>
<item class_id_reference="18" object_id="_178">
<Obj>
<type>3</type>
<id>169</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>168</item>
</node_objs>
</item>
</blocks>
<edges class_id="19" tracking_level="0" version="0">
<count>521</count>
<item_version>0</item_version>
<item class_id="20" tracking_level="1" version="0" object_id="_179">
<id>172</id>
<edge_type>1</edge_type>
<source_obj>5</source_obj>
<sink_obj>8</sink_obj>
</item>
<item class_id_reference="20" object_id="_180">
<id>175</id>
<edge_type>1</edge_type>
<source_obj>4</source_obj>
<sink_obj>9</sink_obj>
</item>
<item class_id_reference="20" object_id="_181">
<id>177</id>
<edge_type>1</edge_type>
<source_obj>2</source_obj>
<sink_obj>10</sink_obj>
</item>
<item class_id_reference="20" object_id="_182">
<id>178</id>
<edge_type>1</edge_type>
<source_obj>8</source_obj>
<sink_obj>11</sink_obj>
</item>
<item class_id_reference="20" object_id="_183">
<id>179</id>
<edge_type>2</edge_type>
<source_obj>133</source_obj>
<sink_obj>12</sink_obj>
</item>
<item class_id_reference="20" object_id="_184">
<id>181</id>
<edge_type>1</edge_type>
<source_obj>180</source_obj>
<sink_obj>14</sink_obj>
</item>
<item class_id_reference="20" object_id="_185">
<id>182</id>
<edge_type>2</edge_type>
<source_obj>13</source_obj>
<sink_obj>14</sink_obj>
</item>
<item class_id_reference="20" object_id="_186">
<id>183</id>
<edge_type>1</edge_type>
<source_obj>150</source_obj>
<sink_obj>14</sink_obj>
</item>
<item class_id_reference="20" object_id="_187">
<id>184</id>
<edge_type>2</edge_type>
<source_obj>167</source_obj>
<sink_obj>14</sink_obj>
</item>
<item class_id_reference="20" object_id="_188">
<id>185</id>
<edge_type>1</edge_type>
<source_obj>14</source_obj>
<sink_obj>15</sink_obj>
</item>
<item class_id_reference="20" object_id="_189">
<id>187</id>
<edge_type>1</edge_type>
<source_obj>186</source_obj>
<sink_obj>15</sink_obj>
</item>
<item class_id_reference="20" object_id="_190">
<id>188</id>
<edge_type>1</edge_type>
<source_obj>15</source_obj>
<sink_obj>17</sink_obj>
</item>
<item class_id_reference="20" object_id="_191">
<id>189</id>
<edge_type>1</edge_type>
<source_obj>15</source_obj>
<sink_obj>18</sink_obj>
</item>
<item class_id_reference="20" object_id="_192">
<id>190</id>
<edge_type>1</edge_type>
<source_obj>11</source_obj>
<sink_obj>18</sink_obj>
</item>
<item class_id_reference="20" object_id="_193">
<id>191</id>
<edge_type>1</edge_type>
<source_obj>18</source_obj>
<sink_obj>19</sink_obj>
</item>
<item class_id_reference="20" object_id="_194">
<id>192</id>
<edge_type>1</edge_type>
<source_obj>19</source_obj>
<sink_obj>20</sink_obj>
</item>
<item class_id_reference="20" object_id="_195">
<id>193</id>
<edge_type>1</edge_type>
<source_obj>9</source_obj>
<sink_obj>20</sink_obj>
</item>
<item class_id_reference="20" object_id="_196">
<id>194</id>
<edge_type>1</edge_type>
<source_obj>3</source_obj>
<sink_obj>21</sink_obj>
</item>
<item class_id_reference="20" object_id="_197">
<id>195</id>
<edge_type>1</edge_type>
<source_obj>20</source_obj>
<sink_obj>21</sink_obj>
</item>
<item class_id_reference="20" object_id="_198">
<id>198</id>
<edge_type>1</edge_type>
<source_obj>21</source_obj>
<sink_obj>22</sink_obj>
</item>
<item class_id_reference="20" object_id="_199">
<id>200</id>
<edge_type>1</edge_type>
<source_obj>199</source_obj>
<sink_obj>22</sink_obj>
</item>
<item class_id_reference="20" object_id="_200">
<id>203</id>
<edge_type>1</edge_type>
<source_obj>21</source_obj>
<sink_obj>23</sink_obj>
</item>
<item class_id_reference="20" object_id="_201">
<id>204</id>
<edge_type>1</edge_type>
<source_obj>17</source_obj>
<sink_obj>24</sink_obj>
</item>
<item class_id_reference="20" object_id="_202">
<id>205</id>
<edge_type>1</edge_type>
<source_obj>10</source_obj>
<sink_obj>24</sink_obj>
</item>
<item class_id_reference="20" object_id="_203">
<id>206</id>
<edge_type>1</edge_type>
<source_obj>1</source_obj>
<sink_obj>25</sink_obj>
</item>
<item class_id_reference="20" object_id="_204">
<id>207</id>
<edge_type>1</edge_type>
<source_obj>24</source_obj>
<sink_obj>25</sink_obj>
</item>
<item class_id_reference="20" object_id="_205">
<id>209</id>
<edge_type>1</edge_type>
<source_obj>25</source_obj>
<sink_obj>26</sink_obj>
</item>
<item class_id_reference="20" object_id="_206">
<id>210</id>
<edge_type>1</edge_type>
<source_obj>199</source_obj>
<sink_obj>26</sink_obj>
</item>
<item class_id_reference="20" object_id="_207">
<id>212</id>
<edge_type>1</edge_type>
<source_obj>25</source_obj>
<sink_obj>27</sink_obj>
</item>
<item class_id_reference="20" object_id="_208">
<id>213</id>
<edge_type>1</edge_type>
<source_obj>27</source_obj>
<sink_obj>28</sink_obj>
</item>
<item class_id_reference="20" object_id="_209">
<id>214</id>
<edge_type>1</edge_type>
<source_obj>23</source_obj>
<sink_obj>28</sink_obj>
</item>
<item class_id_reference="20" object_id="_210">
<id>217</id>
<edge_type>1</edge_type>
<source_obj>25</source_obj>
<sink_obj>29</sink_obj>
</item>
<item class_id_reference="20" object_id="_211">
<id>218</id>
<edge_type>1</edge_type>
<source_obj>199</source_obj>
<sink_obj>29</sink_obj>
</item>
<item class_id_reference="20" object_id="_212">
<id>221</id>
<edge_type>1</edge_type>
<source_obj>25</source_obj>
<sink_obj>30</sink_obj>
</item>
<item class_id_reference="20" object_id="_213">
<id>222</id>
<edge_type>1</edge_type>
<source_obj>28</source_obj>
<sink_obj>30</sink_obj>
</item>
<item class_id_reference="20" object_id="_214">
<id>224</id>
<edge_type>1</edge_type>
<source_obj>223</source_obj>
<sink_obj>30</sink_obj>
</item>
<item class_id_reference="20" object_id="_215">
<id>227</id>
<edge_type>1</edge_type>
<source_obj>25</source_obj>
<sink_obj>31</sink_obj>
</item>
<item class_id_reference="20" object_id="_216">
<id>228</id>
<edge_type>1</edge_type>
<source_obj>14</source_obj>
<sink_obj>32</sink_obj>
</item>
<item class_id_reference="20" object_id="_217">
<id>230</id>
<edge_type>1</edge_type>
<source_obj>229</source_obj>
<sink_obj>32</sink_obj>
</item>
<item class_id_reference="20" object_id="_218">
<id>231</id>
<edge_type>1</edge_type>
<source_obj>32</source_obj>
<sink_obj>33</sink_obj>
</item>
<item class_id_reference="20" object_id="_219">
<id>232</id>
<edge_type>1</edge_type>
<source_obj>32</source_obj>
<sink_obj>34</sink_obj>
</item>
<item class_id_reference="20" object_id="_220">
<id>233</id>
<edge_type>1</edge_type>
<source_obj>11</source_obj>
<sink_obj>34</sink_obj>
</item>
<item class_id_reference="20" object_id="_221">
<id>234</id>
<edge_type>1</edge_type>
<source_obj>34</source_obj>
<sink_obj>35</sink_obj>
</item>
<item class_id_reference="20" object_id="_222">
<id>235</id>
<edge_type>1</edge_type>
<source_obj>35</source_obj>
<sink_obj>36</sink_obj>
</item>
<item class_id_reference="20" object_id="_223">
<id>236</id>
<edge_type>1</edge_type>
<source_obj>9</source_obj>
<sink_obj>36</sink_obj>
</item>
<item class_id_reference="20" object_id="_224">
<id>237</id>
<edge_type>1</edge_type>
<source_obj>3</source_obj>
<sink_obj>37</sink_obj>
</item>
<item class_id_reference="20" object_id="_225">
<id>238</id>
<edge_type>1</edge_type>
<source_obj>36</source_obj>
<sink_obj>37</sink_obj>
</item>
<item class_id_reference="20" object_id="_226">
<id>240</id>
<edge_type>1</edge_type>
<source_obj>37</source_obj>
<sink_obj>38</sink_obj>
</item>
<item class_id_reference="20" object_id="_227">
<id>241</id>
<edge_type>1</edge_type>
<source_obj>199</source_obj>
<sink_obj>38</sink_obj>
</item>
<item class_id_reference="20" object_id="_228">
<id>243</id>
<edge_type>1</edge_type>
<source_obj>37</source_obj>
<sink_obj>39</sink_obj>
</item>
<item class_id_reference="20" object_id="_229">
<id>244</id>
<edge_type>1</edge_type>
<source_obj>33</source_obj>
<sink_obj>40</sink_obj>
</item>
<item class_id_reference="20" object_id="_230">
<id>245</id>
<edge_type>1</edge_type>
<source_obj>10</source_obj>
<sink_obj>40</sink_obj>
</item>
<item class_id_reference="20" object_id="_231">
<id>246</id>
<edge_type>1</edge_type>
<source_obj>1</source_obj>
<sink_obj>41</sink_obj>
</item>
<item class_id_reference="20" object_id="_232">
<id>247</id>
<edge_type>1</edge_type>
<source_obj>40</source_obj>
<sink_obj>41</sink_obj>
</item>
<item class_id_reference="20" object_id="_233">
<id>249</id>
<edge_type>1</edge_type>
<source_obj>41</source_obj>
<sink_obj>42</sink_obj>
</item>
<item class_id_reference="20" object_id="_234">
<id>250</id>
<edge_type>1</edge_type>
<source_obj>199</source_obj>
<sink_obj>42</sink_obj>
</item>
<item class_id_reference="20" object_id="_235">
<id>252</id>
<edge_type>1</edge_type>
<source_obj>41</source_obj>
<sink_obj>43</sink_obj>
</item>
<item class_id_reference="20" object_id="_236">
<id>253</id>
<edge_type>1</edge_type>
<source_obj>43</source_obj>
<sink_obj>44</sink_obj>
</item>
<item class_id_reference="20" object_id="_237">
<id>254</id>
<edge_type>1</edge_type>
<source_obj>39</source_obj>
<sink_obj>44</sink_obj>
</item>
<item class_id_reference="20" object_id="_238">
<id>256</id>
<edge_type>1</edge_type>
<source_obj>41</source_obj>
<sink_obj>45</sink_obj>
</item>
<item class_id_reference="20" object_id="_239">
<id>257</id>
<edge_type>1</edge_type>
<source_obj>199</source_obj>
<sink_obj>45</sink_obj>
</item>
<item class_id_reference="20" object_id="_240">
<id>259</id>
<edge_type>1</edge_type>
<source_obj>41</source_obj>
<sink_obj>46</sink_obj>
</item>
<item class_id_reference="20" object_id="_241">
<id>260</id>
<edge_type>1</edge_type>
<source_obj>44</source_obj>
<sink_obj>46</sink_obj>
</item>
<item class_id_reference="20" object_id="_242">
<id>261</id>
<edge_type>1</edge_type>
<source_obj>223</source_obj>
<sink_obj>46</sink_obj>
</item>
<item class_id_reference="20" object_id="_243">
<id>263</id>
<edge_type>1</edge_type>
<source_obj>41</source_obj>
<sink_obj>47</sink_obj>
</item>
<item class_id_reference="20" object_id="_244">
<id>264</id>
<edge_type>1</edge_type>
<source_obj>14</source_obj>
<sink_obj>48</sink_obj>
</item>
<item class_id_reference="20" object_id="_245">
<id>266</id>
<edge_type>1</edge_type>
<source_obj>265</source_obj>
<sink_obj>48</sink_obj>
</item>
<item class_id_reference="20" object_id="_246">
<id>267</id>
<edge_type>1</edge_type>
<source_obj>48</source_obj>
<sink_obj>49</sink_obj>
</item>
<item class_id_reference="20" object_id="_247">
<id>268</id>
<edge_type>1</edge_type>
<source_obj>48</source_obj>
<sink_obj>50</sink_obj>
</item>
<item class_id_reference="20" object_id="_248">
<id>269</id>
<edge_type>1</edge_type>
<source_obj>11</source_obj>
<sink_obj>50</sink_obj>
</item>
<item class_id_reference="20" object_id="_249">
<id>270</id>
<edge_type>1</edge_type>
<source_obj>50</source_obj>
<sink_obj>51</sink_obj>
</item>
<item class_id_reference="20" object_id="_250">
<id>271</id>
<edge_type>1</edge_type>
<source_obj>51</source_obj>
<sink_obj>52</sink_obj>
</item>
<item class_id_reference="20" object_id="_251">
<id>272</id>
<edge_type>1</edge_type>
<source_obj>9</source_obj>
<sink_obj>52</sink_obj>
</item>
<item class_id_reference="20" object_id="_252">
<id>273</id>
<edge_type>1</edge_type>
<source_obj>3</source_obj>
<sink_obj>53</sink_obj>
</item>
<item class_id_reference="20" object_id="_253">
<id>274</id>
<edge_type>1</edge_type>
<source_obj>52</source_obj>
<sink_obj>53</sink_obj>
</item>
<item class_id_reference="20" object_id="_254">
<id>276</id>
<edge_type>1</edge_type>
<source_obj>53</source_obj>
<sink_obj>54</sink_obj>
</item>
<item class_id_reference="20" object_id="_255">
<id>277</id>
<edge_type>1</edge_type>
<source_obj>199</source_obj>
<sink_obj>54</sink_obj>
</item>
<item class_id_reference="20" object_id="_256">
<id>279</id>
<edge_type>1</edge_type>
<source_obj>53</source_obj>
<sink_obj>55</sink_obj>
</item>
<item class_id_reference="20" object_id="_257">
<id>280</id>
<edge_type>1</edge_type>
<source_obj>49</source_obj>
<sink_obj>56</sink_obj>
</item>
<item class_id_reference="20" object_id="_258">
<id>281</id>
<edge_type>1</edge_type>
<source_obj>10</source_obj>
<sink_obj>56</sink_obj>
</item>
<item class_id_reference="20" object_id="_259">
<id>282</id>
<edge_type>1</edge_type>
<source_obj>1</source_obj>
<sink_obj>57</sink_obj>
</item>
<item class_id_reference="20" object_id="_260">
<id>283</id>
<edge_type>1</edge_type>
<source_obj>56</source_obj>
<sink_obj>57</sink_obj>
</item>
<item class_id_reference="20" object_id="_261">
<id>285</id>
<edge_type>1</edge_type>
<source_obj>57</source_obj>
<sink_obj>58</sink_obj>
</item>
<item class_id_reference="20" object_id="_262">
<id>286</id>
<edge_type>1</edge_type>
<source_obj>199</source_obj>
<sink_obj>58</sink_obj>
</item>
<item class_id_reference="20" object_id="_263">
<id>288</id>
<edge_type>1</edge_type>
<source_obj>57</source_obj>
<sink_obj>59</sink_obj>
</item>
<item class_id_reference="20" object_id="_264">
<id>289</id>
<edge_type>1</edge_type>
<source_obj>59</source_obj>
<sink_obj>60</sink_obj>
</item>
<item class_id_reference="20" object_id="_265">
<id>290</id>
<edge_type>1</edge_type>
<source_obj>55</source_obj>
<sink_obj>60</sink_obj>
</item>
<item class_id_reference="20" object_id="_266">
<id>292</id>
<edge_type>1</edge_type>
<source_obj>57</source_obj>
<sink_obj>61</sink_obj>
</item>
<item class_id_reference="20" object_id="_267">
<id>293</id>
<edge_type>1</edge_type>
<source_obj>199</source_obj>
<sink_obj>61</sink_obj>
</item>
<item class_id_reference="20" object_id="_268">
<id>295</id>
<edge_type>1</edge_type>
<source_obj>57</source_obj>
<sink_obj>62</sink_obj>
</item>
<item class_id_reference="20" object_id="_269">
<id>296</id>
<edge_type>1</edge_type>
<source_obj>60</source_obj>
<sink_obj>62</sink_obj>
</item>
<item class_id_reference="20" object_id="_270">
<id>297</id>
<edge_type>1</edge_type>
<source_obj>223</source_obj>
<sink_obj>62</sink_obj>
</item>
<item class_id_reference="20" object_id="_271">
<id>299</id>
<edge_type>1</edge_type>
<source_obj>57</source_obj>
<sink_obj>63</sink_obj>
</item>
<item class_id_reference="20" object_id="_272">
<id>300</id>
<edge_type>1</edge_type>
<source_obj>14</source_obj>
<sink_obj>64</sink_obj>
</item>
<item class_id_reference="20" object_id="_273">
<id>302</id>
<edge_type>1</edge_type>
<source_obj>301</source_obj>
<sink_obj>64</sink_obj>
</item>
<item class_id_reference="20" object_id="_274">
<id>303</id>
<edge_type>1</edge_type>
<source_obj>64</source_obj>
<sink_obj>65</sink_obj>
</item>
<item class_id_reference="20" object_id="_275">
<id>304</id>
<edge_type>1</edge_type>
<source_obj>64</source_obj>
<sink_obj>66</sink_obj>
</item>
<item class_id_reference="20" object_id="_276">
<id>305</id>
<edge_type>1</edge_type>
<source_obj>11</source_obj>
<sink_obj>66</sink_obj>
</item>
<item class_id_reference="20" object_id="_277">
<id>306</id>
<edge_type>1</edge_type>
<source_obj>66</source_obj>
<sink_obj>67</sink_obj>
</item>
<item class_id_reference="20" object_id="_278">
<id>307</id>
<edge_type>1</edge_type>
<source_obj>67</source_obj>
<sink_obj>68</sink_obj>
</item>
<item class_id_reference="20" object_id="_279">
<id>308</id>
<edge_type>1</edge_type>
<source_obj>9</source_obj>
<sink_obj>68</sink_obj>
</item>
<item class_id_reference="20" object_id="_280">
<id>309</id>
<edge_type>1</edge_type>
<source_obj>3</source_obj>
<sink_obj>69</sink_obj>
</item>
<item class_id_reference="20" object_id="_281">
<id>310</id>
<edge_type>1</edge_type>
<source_obj>68</source_obj>
<sink_obj>69</sink_obj>
</item>
<item class_id_reference="20" object_id="_282">
<id>312</id>
<edge_type>1</edge_type>
<source_obj>69</source_obj>
<sink_obj>70</sink_obj>
</item>
<item class_id_reference="20" object_id="_283">
<id>313</id>
<edge_type>1</edge_type>
<source_obj>199</source_obj>
<sink_obj>70</sink_obj>
</item>
<item class_id_reference="20" object_id="_284">
<id>315</id>
<edge_type>1</edge_type>
<source_obj>69</source_obj>
<sink_obj>71</sink_obj>
</item>
<item class_id_reference="20" object_id="_285">
<id>316</id>
<edge_type>1</edge_type>
<source_obj>65</source_obj>
<sink_obj>72</sink_obj>
</item>
<item class_id_reference="20" object_id="_286">
<id>317</id>
<edge_type>1</edge_type>
<source_obj>10</source_obj>
<sink_obj>72</sink_obj>
</item>
<item class_id_reference="20" object_id="_287">
<id>318</id>
<edge_type>1</edge_type>
<source_obj>1</source_obj>
<sink_obj>73</sink_obj>
</item>
<item class_id_reference="20" object_id="_288">
<id>319</id>
<edge_type>1</edge_type>
<source_obj>72</source_obj>
<sink_obj>73</sink_obj>
</item>
<item class_id_reference="20" object_id="_289">
<id>321</id>
<edge_type>1</edge_type>
<source_obj>73</source_obj>
<sink_obj>74</sink_obj>
</item>
<item class_id_reference="20" object_id="_290">
<id>322</id>
<edge_type>1</edge_type>
<source_obj>199</source_obj>
<sink_obj>74</sink_obj>
</item>
<item class_id_reference="20" object_id="_291">
<id>324</id>
<edge_type>1</edge_type>
<source_obj>73</source_obj>
<sink_obj>75</sink_obj>
</item>
<item class_id_reference="20" object_id="_292">
<id>325</id>
<edge_type>1</edge_type>
<source_obj>75</source_obj>
<sink_obj>76</sink_obj>
</item>
<item class_id_reference="20" object_id="_293">
<id>326</id>
<edge_type>1</edge_type>
<source_obj>71</source_obj>
<sink_obj>76</sink_obj>
</item>
<item class_id_reference="20" object_id="_294">
<id>328</id>
<edge_type>1</edge_type>
<source_obj>73</source_obj>
<sink_obj>77</sink_obj>
</item>
<item class_id_reference="20" object_id="_295">
<id>329</id>
<edge_type>1</edge_type>
<source_obj>199</source_obj>
<sink_obj>77</sink_obj>
</item>
<item class_id_reference="20" object_id="_296">
<id>331</id>
<edge_type>1</edge_type>
<source_obj>73</source_obj>
<sink_obj>78</sink_obj>
</item>
<item class_id_reference="20" object_id="_297">
<id>332</id>
<edge_type>1</edge_type>
<source_obj>76</source_obj>
<sink_obj>78</sink_obj>
</item>
<item class_id_reference="20" object_id="_298">
<id>333</id>
<edge_type>1</edge_type>
<source_obj>223</source_obj>
<sink_obj>78</sink_obj>
</item>
<item class_id_reference="20" object_id="_299">
<id>335</id>
<edge_type>1</edge_type>
<source_obj>73</source_obj>
<sink_obj>79</sink_obj>
</item>
<item class_id_reference="20" object_id="_300">
<id>336</id>
<edge_type>1</edge_type>
<source_obj>14</source_obj>
<sink_obj>80</sink_obj>
</item>
<item class_id_reference="20" object_id="_301">
<id>338</id>
<edge_type>1</edge_type>
<source_obj>337</source_obj>
<sink_obj>80</sink_obj>
</item>
<item class_id_reference="20" object_id="_302">
<id>339</id>
<edge_type>1</edge_type>
<source_obj>80</source_obj>
<sink_obj>81</sink_obj>
</item>
<item class_id_reference="20" object_id="_303">
<id>340</id>
<edge_type>1</edge_type>
<source_obj>80</source_obj>
<sink_obj>82</sink_obj>
</item>
<item class_id_reference="20" object_id="_304">
<id>341</id>
<edge_type>1</edge_type>
<source_obj>11</source_obj>
<sink_obj>82</sink_obj>
</item>
<item class_id_reference="20" object_id="_305">
<id>342</id>
<edge_type>1</edge_type>
<source_obj>82</source_obj>
<sink_obj>83</sink_obj>
</item>
<item class_id_reference="20" object_id="_306">
<id>343</id>
<edge_type>1</edge_type>
<source_obj>83</source_obj>
<sink_obj>84</sink_obj>
</item>
<item class_id_reference="20" object_id="_307">
<id>344</id>
<edge_type>1</edge_type>
<source_obj>9</source_obj>
<sink_obj>84</sink_obj>
</item>
<item class_id_reference="20" object_id="_308">
<id>345</id>
<edge_type>1</edge_type>
<source_obj>3</source_obj>
<sink_obj>85</sink_obj>
</item>
<item class_id_reference="20" object_id="_309">
<id>346</id>
<edge_type>1</edge_type>
<source_obj>84</source_obj>
<sink_obj>85</sink_obj>
</item>
<item class_id_reference="20" object_id="_310">
<id>348</id>
<edge_type>1</edge_type>
<source_obj>85</source_obj>
<sink_obj>86</sink_obj>
</item>
<item class_id_reference="20" object_id="_311">
<id>349</id>
<edge_type>1</edge_type>
<source_obj>199</source_obj>
<sink_obj>86</sink_obj>
</item>
<item class_id_reference="20" object_id="_312">
<id>351</id>
<edge_type>1</edge_type>
<source_obj>85</source_obj>
<sink_obj>87</sink_obj>
</item>
<item class_id_reference="20" object_id="_313">
<id>352</id>
<edge_type>1</edge_type>
<source_obj>81</source_obj>
<sink_obj>88</sink_obj>
</item>
<item class_id_reference="20" object_id="_314">
<id>353</id>
<edge_type>1</edge_type>
<source_obj>10</source_obj>
<sink_obj>88</sink_obj>
</item>
<item class_id_reference="20" object_id="_315">
<id>354</id>
<edge_type>1</edge_type>
<source_obj>1</source_obj>
<sink_obj>89</sink_obj>
</item>
<item class_id_reference="20" object_id="_316">
<id>355</id>
<edge_type>1</edge_type>
<source_obj>88</source_obj>
<sink_obj>89</sink_obj>
</item>
<item class_id_reference="20" object_id="_317">
<id>357</id>
<edge_type>1</edge_type>
<source_obj>89</source_obj>
<sink_obj>90</sink_obj>
</item>
<item class_id_reference="20" object_id="_318">
<id>358</id>
<edge_type>1</edge_type>
<source_obj>199</source_obj>
<sink_obj>90</sink_obj>
</item>
<item class_id_reference="20" object_id="_319">
<id>360</id>
<edge_type>1</edge_type>
<source_obj>89</source_obj>
<sink_obj>91</sink_obj>
</item>
<item class_id_reference="20" object_id="_320">
<id>361</id>
<edge_type>1</edge_type>
<source_obj>91</source_obj>
<sink_obj>92</sink_obj>
</item>
<item class_id_reference="20" object_id="_321">
<id>362</id>
<edge_type>1</edge_type>
<source_obj>87</source_obj>
<sink_obj>92</sink_obj>
</item>
<item class_id_reference="20" object_id="_322">
<id>364</id>
<edge_type>1</edge_type>
<source_obj>89</source_obj>
<sink_obj>93</sink_obj>
</item>
<item class_id_reference="20" object_id="_323">
<id>365</id>
<edge_type>1</edge_type>
<source_obj>199</source_obj>
<sink_obj>93</sink_obj>
</item>
<item class_id_reference="20" object_id="_324">
<id>367</id>
<edge_type>1</edge_type>
<source_obj>89</source_obj>
<sink_obj>94</sink_obj>
</item>
<item class_id_reference="20" object_id="_325">
<id>368</id>
<edge_type>1</edge_type>
<source_obj>92</source_obj>
<sink_obj>94</sink_obj>
</item>
<item class_id_reference="20" object_id="_326">
<id>369</id>
<edge_type>1</edge_type>
<source_obj>223</source_obj>
<sink_obj>94</sink_obj>
</item>
<item class_id_reference="20" object_id="_327">
<id>371</id>
<edge_type>1</edge_type>
<source_obj>89</source_obj>
<sink_obj>95</sink_obj>
</item>
<item class_id_reference="20" object_id="_328">
<id>372</id>
<edge_type>1</edge_type>
<source_obj>14</source_obj>
<sink_obj>96</sink_obj>
</item>
<item class_id_reference="20" object_id="_329">
<id>374</id>
<edge_type>1</edge_type>
<source_obj>373</source_obj>
<sink_obj>96</sink_obj>
</item>
<item class_id_reference="20" object_id="_330">
<id>375</id>
<edge_type>1</edge_type>
<source_obj>96</source_obj>
<sink_obj>97</sink_obj>
</item>
<item class_id_reference="20" object_id="_331">
<id>376</id>
<edge_type>1</edge_type>
<source_obj>96</source_obj>
<sink_obj>98</sink_obj>
</item>
<item class_id_reference="20" object_id="_332">
<id>377</id>
<edge_type>1</edge_type>
<source_obj>11</source_obj>
<sink_obj>98</sink_obj>
</item>
<item class_id_reference="20" object_id="_333">
<id>378</id>
<edge_type>1</edge_type>
<source_obj>98</source_obj>
<sink_obj>99</sink_obj>
</item>
<item class_id_reference="20" object_id="_334">
<id>379</id>
<edge_type>1</edge_type>
<source_obj>99</source_obj>
<sink_obj>100</sink_obj>
</item>
<item class_id_reference="20" object_id="_335">
<id>380</id>
<edge_type>1</edge_type>
<source_obj>9</source_obj>
<sink_obj>100</sink_obj>
</item>
<item class_id_reference="20" object_id="_336">
<id>381</id>
<edge_type>1</edge_type>
<source_obj>3</source_obj>
<sink_obj>101</sink_obj>
</item>
<item class_id_reference="20" object_id="_337">
<id>382</id>
<edge_type>1</edge_type>
<source_obj>100</source_obj>
<sink_obj>101</sink_obj>
</item>
<item class_id_reference="20" object_id="_338">
<id>384</id>
<edge_type>1</edge_type>
<source_obj>101</source_obj>
<sink_obj>102</sink_obj>
</item>
<item class_id_reference="20" object_id="_339">
<id>385</id>
<edge_type>1</edge_type>
<source_obj>199</source_obj>
<sink_obj>102</sink_obj>
</item>
<item class_id_reference="20" object_id="_340">
<id>387</id>
<edge_type>1</edge_type>
<source_obj>101</source_obj>
<sink_obj>103</sink_obj>
</item>
<item class_id_reference="20" object_id="_341">
<id>388</id>
<edge_type>1</edge_type>
<source_obj>97</source_obj>
<sink_obj>104</sink_obj>
</item>
<item class_id_reference="20" object_id="_342">
<id>389</id>
<edge_type>1</edge_type>
<source_obj>10</source_obj>
<sink_obj>104</sink_obj>
</item>
<item class_id_reference="20" object_id="_343">
<id>390</id>
<edge_type>1</edge_type>
<source_obj>1</source_obj>
<sink_obj>105</sink_obj>
</item>
<item class_id_reference="20" object_id="_344">
<id>391</id>
<edge_type>1</edge_type>
<source_obj>104</source_obj>
<sink_obj>105</sink_obj>
</item>
<item class_id_reference="20" object_id="_345">
<id>393</id>
<edge_type>1</edge_type>
<source_obj>105</source_obj>
<sink_obj>106</sink_obj>
</item>
<item class_id_reference="20" object_id="_346">
<id>394</id>
<edge_type>1</edge_type>
<source_obj>199</source_obj>
<sink_obj>106</sink_obj>
</item>
<item class_id_reference="20" object_id="_347">
<id>396</id>
<edge_type>1</edge_type>
<source_obj>105</source_obj>
<sink_obj>107</sink_obj>
</item>
<item class_id_reference="20" object_id="_348">
<id>397</id>
<edge_type>1</edge_type>
<source_obj>107</source_obj>
<sink_obj>108</sink_obj>
</item>
<item class_id_reference="20" object_id="_349">
<id>398</id>
<edge_type>1</edge_type>
<source_obj>103</source_obj>
<sink_obj>108</sink_obj>
</item>
<item class_id_reference="20" object_id="_350">
<id>400</id>
<edge_type>1</edge_type>
<source_obj>105</source_obj>
<sink_obj>109</sink_obj>
</item>
<item class_id_reference="20" object_id="_351">
<id>401</id>
<edge_type>1</edge_type>
<source_obj>199</source_obj>
<sink_obj>109</sink_obj>
</item>
<item class_id_reference="20" object_id="_352">
<id>403</id>
<edge_type>1</edge_type>
<source_obj>105</source_obj>
<sink_obj>110</sink_obj>
</item>
<item class_id_reference="20" object_id="_353">
<id>404</id>
<edge_type>1</edge_type>
<source_obj>108</source_obj>
<sink_obj>110</sink_obj>
</item>
<item class_id_reference="20" object_id="_354">
<id>405</id>
<edge_type>1</edge_type>
<source_obj>223</source_obj>
<sink_obj>110</sink_obj>
</item>
<item class_id_reference="20" object_id="_355">
<id>407</id>
<edge_type>1</edge_type>
<source_obj>105</source_obj>
<sink_obj>111</sink_obj>
</item>
<item class_id_reference="20" object_id="_356">
<id>408</id>
<edge_type>1</edge_type>
<source_obj>14</source_obj>
<sink_obj>112</sink_obj>
</item>
<item class_id_reference="20" object_id="_357">
<id>410</id>
<edge_type>1</edge_type>
<source_obj>409</source_obj>
<sink_obj>112</sink_obj>
</item>
<item class_id_reference="20" object_id="_358">
<id>411</id>
<edge_type>1</edge_type>
<source_obj>112</source_obj>
<sink_obj>113</sink_obj>
</item>
<item class_id_reference="20" object_id="_359">
<id>412</id>
<edge_type>1</edge_type>
<source_obj>112</source_obj>
<sink_obj>114</sink_obj>
</item>
<item class_id_reference="20" object_id="_360">
<id>413</id>
<edge_type>1</edge_type>
<source_obj>11</source_obj>
<sink_obj>114</sink_obj>
</item>
<item class_id_reference="20" object_id="_361">
<id>414</id>
<edge_type>1</edge_type>
<source_obj>114</source_obj>
<sink_obj>115</sink_obj>
</item>
<item class_id_reference="20" object_id="_362">
<id>415</id>
<edge_type>1</edge_type>
<source_obj>115</source_obj>
<sink_obj>116</sink_obj>
</item>
<item class_id_reference="20" object_id="_363">
<id>416</id>
<edge_type>1</edge_type>
<source_obj>9</source_obj>
<sink_obj>116</sink_obj>
</item>
<item class_id_reference="20" object_id="_364">
<id>417</id>
<edge_type>1</edge_type>
<source_obj>3</source_obj>
<sink_obj>117</sink_obj>
</item>
<item class_id_reference="20" object_id="_365">
<id>418</id>
<edge_type>1</edge_type>
<source_obj>116</source_obj>
<sink_obj>117</sink_obj>
</item>
<item class_id_reference="20" object_id="_366">
<id>420</id>
<edge_type>1</edge_type>
<source_obj>117</source_obj>
<sink_obj>118</sink_obj>
</item>
<item class_id_reference="20" object_id="_367">
<id>421</id>
<edge_type>1</edge_type>
<source_obj>199</source_obj>
<sink_obj>118</sink_obj>
</item>
<item class_id_reference="20" object_id="_368">
<id>423</id>
<edge_type>1</edge_type>
<source_obj>117</source_obj>
<sink_obj>119</sink_obj>
</item>
<item class_id_reference="20" object_id="_369">
<id>424</id>
<edge_type>1</edge_type>
<source_obj>113</source_obj>
<sink_obj>120</sink_obj>
</item>
<item class_id_reference="20" object_id="_370">
<id>425</id>
<edge_type>1</edge_type>
<source_obj>10</source_obj>
<sink_obj>120</sink_obj>
</item>
<item class_id_reference="20" object_id="_371">
<id>426</id>
<edge_type>1</edge_type>
<source_obj>1</source_obj>
<sink_obj>121</sink_obj>
</item>
<item class_id_reference="20" object_id="_372">
<id>427</id>
<edge_type>1</edge_type>
<source_obj>120</source_obj>
<sink_obj>121</sink_obj>
</item>
<item class_id_reference="20" object_id="_373">
<id>429</id>
<edge_type>1</edge_type>
<source_obj>121</source_obj>
<sink_obj>122</sink_obj>
</item>
<item class_id_reference="20" object_id="_374">
<id>430</id>
<edge_type>1</edge_type>
<source_obj>199</source_obj>
<sink_obj>122</sink_obj>
</item>
<item class_id_reference="20" object_id="_375">
<id>432</id>
<edge_type>1</edge_type>
<source_obj>121</source_obj>
<sink_obj>123</sink_obj>
</item>
<item class_id_reference="20" object_id="_376">
<id>433</id>
<edge_type>1</edge_type>
<source_obj>123</source_obj>
<sink_obj>124</sink_obj>
</item>
<item class_id_reference="20" object_id="_377">
<id>434</id>
<edge_type>1</edge_type>
<source_obj>119</source_obj>
<sink_obj>124</sink_obj>
</item>
<item class_id_reference="20" object_id="_378">
<id>436</id>
<edge_type>1</edge_type>
<source_obj>121</source_obj>
<sink_obj>125</sink_obj>
</item>
<item class_id_reference="20" object_id="_379">
<id>437</id>
<edge_type>1</edge_type>
<source_obj>199</source_obj>
<sink_obj>125</sink_obj>
</item>
<item class_id_reference="20" object_id="_380">
<id>439</id>
<edge_type>1</edge_type>
<source_obj>121</source_obj>
<sink_obj>126</sink_obj>
</item>
<item class_id_reference="20" object_id="_381">
<id>440</id>
<edge_type>1</edge_type>
<source_obj>124</source_obj>
<sink_obj>126</sink_obj>
</item>
<item class_id_reference="20" object_id="_382">
<id>441</id>
<edge_type>1</edge_type>
<source_obj>223</source_obj>
<sink_obj>126</sink_obj>
</item>
<item class_id_reference="20" object_id="_383">
<id>443</id>
<edge_type>1</edge_type>
<source_obj>121</source_obj>
<sink_obj>127</sink_obj>
</item>
<item class_id_reference="20" object_id="_384">
<id>444</id>
<edge_type>1</edge_type>
<source_obj>14</source_obj>
<sink_obj>128</sink_obj>
</item>
<item class_id_reference="20" object_id="_385">
<id>446</id>
<edge_type>1</edge_type>
<source_obj>445</source_obj>
<sink_obj>128</sink_obj>
</item>
<item class_id_reference="20" object_id="_386">
<id>447</id>
<edge_type>1</edge_type>
<source_obj>128</source_obj>
<sink_obj>129</sink_obj>
</item>
<item class_id_reference="20" object_id="_387">
<id>448</id>
<edge_type>1</edge_type>
<source_obj>112</source_obj>
<sink_obj>130</sink_obj>
</item>
<item class_id_reference="20" object_id="_388">
<id>450</id>
<edge_type>1</edge_type>
<source_obj>449</source_obj>
<sink_obj>130</sink_obj>
</item>
<item class_id_reference="20" object_id="_389">
<id>451</id>
<edge_type>1</edge_type>
<source_obj>130</source_obj>
<sink_obj>132</sink_obj>
</item>
<item class_id_reference="20" object_id="_390">
<id>452</id>
<edge_type>2</edge_type>
<source_obj>167</source_obj>
<sink_obj>132</sink_obj>
</item>
<item class_id_reference="20" object_id="_391">
<id>453</id>
<edge_type>2</edge_type>
<source_obj>169</source_obj>
<sink_obj>132</sink_obj>
</item>
<item class_id_reference="20" object_id="_392">
<id>454</id>
<edge_type>1</edge_type>
<source_obj>129</source_obj>
<sink_obj>134</sink_obj>
</item>
<item class_id_reference="20" object_id="_393">
<id>455</id>
<edge_type>1</edge_type>
<source_obj>128</source_obj>
<sink_obj>135</sink_obj>
</item>
<item class_id_reference="20" object_id="_394">
<id>456</id>
<edge_type>1</edge_type>
<source_obj>135</source_obj>
<sink_obj>136</sink_obj>
</item>
<item class_id_reference="20" object_id="_395">
<id>457</id>
<edge_type>1</edge_type>
<source_obj>8</source_obj>
<sink_obj>136</sink_obj>
</item>
<item class_id_reference="20" object_id="_396">
<id>458</id>
<edge_type>1</edge_type>
<source_obj>136</source_obj>
<sink_obj>137</sink_obj>
</item>
<item class_id_reference="20" object_id="_397">
<id>459</id>
<edge_type>1</edge_type>
<source_obj>9</source_obj>
<sink_obj>138</sink_obj>
</item>
<item class_id_reference="20" object_id="_398">
<id>460</id>
<edge_type>1</edge_type>
<source_obj>137</source_obj>
<sink_obj>138</sink_obj>
</item>
<item class_id_reference="20" object_id="_399">
<id>461</id>
<edge_type>1</edge_type>
<source_obj>3</source_obj>
<sink_obj>139</sink_obj>
</item>
<item class_id_reference="20" object_id="_400">
<id>462</id>
<edge_type>1</edge_type>
<source_obj>138</source_obj>
<sink_obj>139</sink_obj>
</item>
<item class_id_reference="20" object_id="_401">
<id>464</id>
<edge_type>1</edge_type>
<source_obj>139</source_obj>
<sink_obj>140</sink_obj>
</item>
<item class_id_reference="20" object_id="_402">
<id>465</id>
<edge_type>1</edge_type>
<source_obj>199</source_obj>
<sink_obj>140</sink_obj>
</item>
<item class_id_reference="20" object_id="_403">
<id>467</id>
<edge_type>1</edge_type>
<source_obj>139</source_obj>
<sink_obj>141</sink_obj>
</item>
<item class_id_reference="20" object_id="_404">
<id>468</id>
<edge_type>1</edge_type>
<source_obj>10</source_obj>
<sink_obj>142</sink_obj>
</item>
<item class_id_reference="20" object_id="_405">
<id>469</id>
<edge_type>1</edge_type>
<source_obj>134</source_obj>
<sink_obj>142</sink_obj>
</item>
<item class_id_reference="20" object_id="_406">
<id>470</id>
<edge_type>1</edge_type>
<source_obj>1</source_obj>
<sink_obj>143</sink_obj>
</item>
<item class_id_reference="20" object_id="_407">
<id>471</id>
<edge_type>1</edge_type>
<source_obj>142</source_obj>
<sink_obj>143</sink_obj>
</item>
<item class_id_reference="20" object_id="_408">
<id>473</id>
<edge_type>1</edge_type>
<source_obj>143</source_obj>
<sink_obj>144</sink_obj>
</item>
<item class_id_reference="20" object_id="_409">
<id>474</id>
<edge_type>1</edge_type>
<source_obj>199</source_obj>
<sink_obj>144</sink_obj>
</item>
<item class_id_reference="20" object_id="_410">
<id>476</id>
<edge_type>1</edge_type>
<source_obj>143</source_obj>
<sink_obj>145</sink_obj>
</item>
<item class_id_reference="20" object_id="_411">
<id>477</id>
<edge_type>1</edge_type>
<source_obj>145</source_obj>
<sink_obj>146</sink_obj>
</item>
<item class_id_reference="20" object_id="_412">
<id>478</id>
<edge_type>1</edge_type>
<source_obj>141</source_obj>
<sink_obj>146</sink_obj>
</item>
<item class_id_reference="20" object_id="_413">
<id>480</id>
<edge_type>1</edge_type>
<source_obj>143</source_obj>
<sink_obj>147</sink_obj>
</item>
<item class_id_reference="20" object_id="_414">
<id>481</id>
<edge_type>1</edge_type>
<source_obj>199</source_obj>
<sink_obj>147</sink_obj>
</item>
<item class_id_reference="20" object_id="_415">
<id>483</id>
<edge_type>1</edge_type>
<source_obj>143</source_obj>
<sink_obj>148</sink_obj>
</item>
<item class_id_reference="20" object_id="_416">
<id>484</id>
<edge_type>1</edge_type>
<source_obj>146</source_obj>
<sink_obj>148</sink_obj>
</item>
<item class_id_reference="20" object_id="_417">
<id>485</id>
<edge_type>1</edge_type>
<source_obj>223</source_obj>
<sink_obj>148</sink_obj>
</item>
<item class_id_reference="20" object_id="_418">
<id>487</id>
<edge_type>1</edge_type>
<source_obj>143</source_obj>
<sink_obj>149</sink_obj>
</item>
<item class_id_reference="20" object_id="_419">
<id>488</id>
<edge_type>1</edge_type>
<source_obj>14</source_obj>
<sink_obj>150</sink_obj>
</item>
<item class_id_reference="20" object_id="_420">
<id>490</id>
<edge_type>1</edge_type>
<source_obj>489</source_obj>
<sink_obj>150</sink_obj>
</item>
<item class_id_reference="20" object_id="_421">
<id>491</id>
<edge_type>1</edge_type>
<source_obj>150</source_obj>
<sink_obj>151</sink_obj>
</item>
<item class_id_reference="20" object_id="_422">
<id>492</id>
<edge_type>1</edge_type>
<source_obj>150</source_obj>
<sink_obj>152</sink_obj>
</item>
<item class_id_reference="20" object_id="_423">
<id>493</id>
<edge_type>1</edge_type>
<source_obj>11</source_obj>
<sink_obj>152</sink_obj>
</item>
<item class_id_reference="20" object_id="_424">
<id>494</id>
<edge_type>1</edge_type>
<source_obj>152</source_obj>
<sink_obj>153</sink_obj>
</item>
<item class_id_reference="20" object_id="_425">
<id>495</id>
<edge_type>1</edge_type>
<source_obj>9</source_obj>
<sink_obj>154</sink_obj>
</item>
<item class_id_reference="20" object_id="_426">
<id>496</id>
<edge_type>1</edge_type>
<source_obj>153</source_obj>
<sink_obj>154</sink_obj>
</item>
<item class_id_reference="20" object_id="_427">
<id>497</id>
<edge_type>1</edge_type>
<source_obj>3</source_obj>
<sink_obj>155</sink_obj>
</item>
<item class_id_reference="20" object_id="_428">
<id>498</id>
<edge_type>1</edge_type>
<source_obj>154</source_obj>
<sink_obj>155</sink_obj>
</item>
<item class_id_reference="20" object_id="_429">
<id>500</id>
<edge_type>1</edge_type>
<source_obj>155</source_obj>
<sink_obj>156</sink_obj>
</item>
<item class_id_reference="20" object_id="_430">
<id>501</id>
<edge_type>1</edge_type>
<source_obj>199</source_obj>
<sink_obj>156</sink_obj>
</item>
<item class_id_reference="20" object_id="_431">
<id>503</id>
<edge_type>1</edge_type>
<source_obj>155</source_obj>
<sink_obj>157</sink_obj>
</item>
<item class_id_reference="20" object_id="_432">
<id>504</id>
<edge_type>1</edge_type>
<source_obj>10</source_obj>
<sink_obj>158</sink_obj>
</item>
<item class_id_reference="20" object_id="_433">
<id>505</id>
<edge_type>1</edge_type>
<source_obj>151</source_obj>
<sink_obj>158</sink_obj>
</item>
<item class_id_reference="20" object_id="_434">
<id>506</id>
<edge_type>1</edge_type>
<source_obj>1</source_obj>
<sink_obj>159</sink_obj>
</item>
<item class_id_reference="20" object_id="_435">
<id>507</id>
<edge_type>1</edge_type>
<source_obj>158</source_obj>
<sink_obj>159</sink_obj>
</item>
<item class_id_reference="20" object_id="_436">
<id>509</id>
<edge_type>1</edge_type>
<source_obj>159</source_obj>
<sink_obj>160</sink_obj>
</item>
<item class_id_reference="20" object_id="_437">
<id>510</id>
<edge_type>1</edge_type>
<source_obj>199</source_obj>
<sink_obj>160</sink_obj>
</item>
<item class_id_reference="20" object_id="_438">
<id>512</id>
<edge_type>1</edge_type>
<source_obj>159</source_obj>
<sink_obj>161</sink_obj>
</item>
<item class_id_reference="20" object_id="_439">
<id>513</id>
<edge_type>1</edge_type>
<source_obj>161</source_obj>
<sink_obj>162</sink_obj>
</item>
<item class_id_reference="20" object_id="_440">
<id>514</id>
<edge_type>1</edge_type>
<source_obj>157</source_obj>
<sink_obj>162</sink_obj>
</item>
<item class_id_reference="20" object_id="_441">
<id>516</id>
<edge_type>1</edge_type>
<source_obj>159</source_obj>
<sink_obj>163</sink_obj>
</item>
<item class_id_reference="20" object_id="_442">
<id>517</id>
<edge_type>1</edge_type>
<source_obj>199</source_obj>
<sink_obj>163</sink_obj>
</item>
<item class_id_reference="20" object_id="_443">
<id>519</id>
<edge_type>1</edge_type>
<source_obj>159</source_obj>
<sink_obj>164</sink_obj>
</item>
<item class_id_reference="20" object_id="_444">
<id>520</id>
<edge_type>1</edge_type>
<source_obj>162</source_obj>
<sink_obj>164</sink_obj>
</item>
<item class_id_reference="20" object_id="_445">
<id>521</id>
<edge_type>1</edge_type>
<source_obj>223</source_obj>
<sink_obj>164</sink_obj>
</item>
<item class_id_reference="20" object_id="_446">
<id>523</id>
<edge_type>1</edge_type>
<source_obj>159</source_obj>
<sink_obj>165</sink_obj>
</item>
<item class_id_reference="20" object_id="_447">
<id>524</id>
<edge_type>2</edge_type>
<source_obj>133</source_obj>
<sink_obj>166</sink_obj>
</item>
<item class_id_reference="20" object_id="_448">
<id>577</id>
<edge_type>2</edge_type>
<source_obj>13</source_obj>
<sink_obj>133</sink_obj>
</item>
<item class_id_reference="20" object_id="_449">
<id>578</id>
<edge_type>2</edge_type>
<source_obj>133</source_obj>
<sink_obj>169</sink_obj>
</item>
<item class_id_reference="20" object_id="_450">
<id>579</id>
<edge_type>2</edge_type>
<source_obj>133</source_obj>
<sink_obj>167</sink_obj>
</item>
<item class_id_reference="20" object_id="_451">
<id>580</id>
<edge_type>2</edge_type>
<source_obj>167</source_obj>
<sink_obj>133</sink_obj>
</item>
<item class_id_reference="20" object_id="_452">
<id>581</id>
<edge_type>4</edge_type>
<source_obj>126</source_obj>
<sink_obj>127</sink_obj>
</item>
<item class_id_reference="20" object_id="_453">
<id>582</id>
<edge_type>4</edge_type>
<source_obj>125</source_obj>
<sink_obj>126</sink_obj>
</item>
<item class_id_reference="20" object_id="_454">
<id>583</id>
<edge_type>4</edge_type>
<source_obj>123</source_obj>
<sink_obj>125</sink_obj>
</item>
<item class_id_reference="20" object_id="_455">
<id>584</id>
<edge_type>4</edge_type>
<source_obj>122</source_obj>
<sink_obj>123</sink_obj>
</item>
<item class_id_reference="20" object_id="_456">
<id>585</id>
<edge_type>4</edge_type>
<source_obj>118</source_obj>
<sink_obj>119</sink_obj>
</item>
<item class_id_reference="20" object_id="_457">
<id>586</id>
<edge_type>4</edge_type>
<source_obj>111</source_obj>
<sink_obj>122</sink_obj>
</item>
<item class_id_reference="20" object_id="_458">
<id>587</id>
<edge_type>4</edge_type>
<source_obj>110</source_obj>
<sink_obj>111</sink_obj>
</item>
<item class_id_reference="20" object_id="_459">
<id>588</id>
<edge_type>4</edge_type>
<source_obj>109</source_obj>
<sink_obj>110</sink_obj>
</item>
<item class_id_reference="20" object_id="_460">
<id>589</id>
<edge_type>4</edge_type>
<source_obj>107</source_obj>
<sink_obj>109</sink_obj>
</item>
<item class_id_reference="20" object_id="_461">
<id>590</id>
<edge_type>4</edge_type>
<source_obj>106</source_obj>
<sink_obj>107</sink_obj>
</item>
<item class_id_reference="20" object_id="_462">
<id>591</id>
<edge_type>4</edge_type>
<source_obj>103</source_obj>
<sink_obj>119</sink_obj>
</item>
<item class_id_reference="20" object_id="_463">
<id>592</id>
<edge_type>4</edge_type>
<source_obj>102</source_obj>
<sink_obj>103</sink_obj>
</item>
<item class_id_reference="20" object_id="_464">
<id>593</id>
<edge_type>4</edge_type>
<source_obj>102</source_obj>
<sink_obj>118</sink_obj>
</item>
<item class_id_reference="20" object_id="_465">
<id>594</id>
<edge_type>4</edge_type>
<source_obj>95</source_obj>
<sink_obj>106</sink_obj>
</item>
<item class_id_reference="20" object_id="_466">
<id>595</id>
<edge_type>4</edge_type>
<source_obj>94</source_obj>
<sink_obj>95</sink_obj>
</item>
<item class_id_reference="20" object_id="_467">
<id>596</id>
<edge_type>4</edge_type>
<source_obj>93</source_obj>
<sink_obj>94</sink_obj>
</item>
<item class_id_reference="20" object_id="_468">
<id>597</id>
<edge_type>4</edge_type>
<source_obj>91</source_obj>
<sink_obj>93</sink_obj>
</item>
<item class_id_reference="20" object_id="_469">
<id>598</id>
<edge_type>4</edge_type>
<source_obj>90</source_obj>
<sink_obj>91</sink_obj>
</item>
<item class_id_reference="20" object_id="_470">
<id>599</id>
<edge_type>4</edge_type>
<source_obj>87</source_obj>
<sink_obj>103</sink_obj>
</item>
<item class_id_reference="20" object_id="_471">
<id>600</id>
<edge_type>4</edge_type>
<source_obj>86</source_obj>
<sink_obj>87</sink_obj>
</item>
<item class_id_reference="20" object_id="_472">
<id>601</id>
<edge_type>4</edge_type>
<source_obj>86</source_obj>
<sink_obj>102</sink_obj>
</item>
<item class_id_reference="20" object_id="_473">
<id>602</id>
<edge_type>4</edge_type>
<source_obj>79</source_obj>
<sink_obj>90</sink_obj>
</item>
<item class_id_reference="20" object_id="_474">
<id>603</id>
<edge_type>4</edge_type>
<source_obj>78</source_obj>
<sink_obj>79</sink_obj>
</item>
<item class_id_reference="20" object_id="_475">
<id>604</id>
<edge_type>4</edge_type>
<source_obj>77</source_obj>
<sink_obj>78</sink_obj>
</item>
<item class_id_reference="20" object_id="_476">
<id>605</id>
<edge_type>4</edge_type>
<source_obj>75</source_obj>
<sink_obj>77</sink_obj>
</item>
<item class_id_reference="20" object_id="_477">
<id>606</id>
<edge_type>4</edge_type>
<source_obj>74</source_obj>
<sink_obj>75</sink_obj>
</item>
<item class_id_reference="20" object_id="_478">
<id>607</id>
<edge_type>4</edge_type>
<source_obj>71</source_obj>
<sink_obj>87</sink_obj>
</item>
<item class_id_reference="20" object_id="_479">
<id>608</id>
<edge_type>4</edge_type>
<source_obj>70</source_obj>
<sink_obj>71</sink_obj>
</item>
<item class_id_reference="20" object_id="_480">
<id>609</id>
<edge_type>4</edge_type>
<source_obj>70</source_obj>
<sink_obj>86</sink_obj>
</item>
<item class_id_reference="20" object_id="_481">
<id>610</id>
<edge_type>4</edge_type>
<source_obj>63</source_obj>
<sink_obj>74</sink_obj>
</item>
<item class_id_reference="20" object_id="_482">
<id>611</id>
<edge_type>4</edge_type>
<source_obj>62</source_obj>
<sink_obj>63</sink_obj>
</item>
<item class_id_reference="20" object_id="_483">
<id>612</id>
<edge_type>4</edge_type>
<source_obj>61</source_obj>
<sink_obj>62</sink_obj>
</item>
<item class_id_reference="20" object_id="_484">
<id>613</id>
<edge_type>4</edge_type>
<source_obj>59</source_obj>
<sink_obj>61</sink_obj>
</item>
<item class_id_reference="20" object_id="_485">
<id>614</id>
<edge_type>4</edge_type>
<source_obj>58</source_obj>
<sink_obj>59</sink_obj>
</item>
<item class_id_reference="20" object_id="_486">
<id>615</id>
<edge_type>4</edge_type>
<source_obj>55</source_obj>
<sink_obj>71</sink_obj>
</item>
<item class_id_reference="20" object_id="_487">
<id>616</id>
<edge_type>4</edge_type>
<source_obj>54</source_obj>
<sink_obj>55</sink_obj>
</item>
<item class_id_reference="20" object_id="_488">
<id>617</id>
<edge_type>4</edge_type>
<source_obj>54</source_obj>
<sink_obj>70</sink_obj>
</item>
<item class_id_reference="20" object_id="_489">
<id>618</id>
<edge_type>4</edge_type>
<source_obj>47</source_obj>
<sink_obj>58</sink_obj>
</item>
<item class_id_reference="20" object_id="_490">
<id>619</id>
<edge_type>4</edge_type>
<source_obj>46</source_obj>
<sink_obj>47</sink_obj>
</item>
<item class_id_reference="20" object_id="_491">
<id>620</id>
<edge_type>4</edge_type>
<source_obj>45</source_obj>
<sink_obj>46</sink_obj>
</item>
<item class_id_reference="20" object_id="_492">
<id>621</id>
<edge_type>4</edge_type>
<source_obj>43</source_obj>
<sink_obj>45</sink_obj>
</item>
<item class_id_reference="20" object_id="_493">
<id>622</id>
<edge_type>4</edge_type>
<source_obj>42</source_obj>
<sink_obj>43</sink_obj>
</item>
<item class_id_reference="20" object_id="_494">
<id>623</id>
<edge_type>4</edge_type>
<source_obj>39</source_obj>
<sink_obj>55</sink_obj>
</item>
<item class_id_reference="20" object_id="_495">
<id>624</id>
<edge_type>4</edge_type>
<source_obj>38</source_obj>
<sink_obj>39</sink_obj>
</item>
<item class_id_reference="20" object_id="_496">
<id>625</id>
<edge_type>4</edge_type>
<source_obj>38</source_obj>
<sink_obj>54</sink_obj>
</item>
<item class_id_reference="20" object_id="_497">
<id>626</id>
<edge_type>4</edge_type>
<source_obj>31</source_obj>
<sink_obj>42</sink_obj>
</item>
<item class_id_reference="20" object_id="_498">
<id>627</id>
<edge_type>4</edge_type>
<source_obj>30</source_obj>
<sink_obj>31</sink_obj>
</item>
<item class_id_reference="20" object_id="_499">
<id>628</id>
<edge_type>4</edge_type>
<source_obj>29</source_obj>
<sink_obj>30</sink_obj>
</item>
<item class_id_reference="20" object_id="_500">
<id>629</id>
<edge_type>4</edge_type>
<source_obj>27</source_obj>
<sink_obj>29</sink_obj>
</item>
<item class_id_reference="20" object_id="_501">
<id>630</id>
<edge_type>4</edge_type>
<source_obj>26</source_obj>
<sink_obj>27</sink_obj>
</item>
<item class_id_reference="20" object_id="_502">
<id>631</id>
<edge_type>4</edge_type>
<source_obj>23</source_obj>
<sink_obj>39</sink_obj>
</item>
<item class_id_reference="20" object_id="_503">
<id>632</id>
<edge_type>4</edge_type>
<source_obj>22</source_obj>
<sink_obj>23</sink_obj>
</item>
<item class_id_reference="20" object_id="_504">
<id>633</id>
<edge_type>4</edge_type>
<source_obj>22</source_obj>
<sink_obj>38</sink_obj>
</item>
<item class_id_reference="20" object_id="_505">
<id>634</id>
<edge_type>4</edge_type>
<source_obj>164</source_obj>
<sink_obj>165</sink_obj>
</item>
<item class_id_reference="20" object_id="_506">
<id>635</id>
<edge_type>4</edge_type>
<source_obj>163</source_obj>
<sink_obj>164</sink_obj>
</item>
<item class_id_reference="20" object_id="_507">
<id>636</id>
<edge_type>4</edge_type>
<source_obj>161</source_obj>
<sink_obj>163</sink_obj>
</item>
<item class_id_reference="20" object_id="_508">
<id>637</id>
<edge_type>4</edge_type>
<source_obj>160</source_obj>
<sink_obj>161</sink_obj>
</item>
<item class_id_reference="20" object_id="_509">
<id>638</id>
<edge_type>4</edge_type>
<source_obj>156</source_obj>
<sink_obj>157</sink_obj>
</item>
<item class_id_reference="20" object_id="_510">
<id>639</id>
<edge_type>4</edge_type>
<source_obj>149</source_obj>
<sink_obj>160</sink_obj>
</item>
<item class_id_reference="20" object_id="_511">
<id>640</id>
<edge_type>4</edge_type>
<source_obj>148</source_obj>
<sink_obj>149</sink_obj>
</item>
<item class_id_reference="20" object_id="_512">
<id>641</id>
<edge_type>4</edge_type>
<source_obj>147</source_obj>
<sink_obj>148</sink_obj>
</item>
<item class_id_reference="20" object_id="_513">
<id>642</id>
<edge_type>4</edge_type>
<source_obj>145</source_obj>
<sink_obj>147</sink_obj>
</item>
<item class_id_reference="20" object_id="_514">
<id>643</id>
<edge_type>4</edge_type>
<source_obj>144</source_obj>
<sink_obj>145</sink_obj>
</item>
<item class_id_reference="20" object_id="_515">
<id>644</id>
<edge_type>4</edge_type>
<source_obj>141</source_obj>
<sink_obj>157</sink_obj>
</item>
<item class_id_reference="20" object_id="_516">
<id>645</id>
<edge_type>4</edge_type>
<source_obj>140</source_obj>
<sink_obj>141</sink_obj>
</item>
<item class_id_reference="20" object_id="_517">
<id>646</id>
<edge_type>4</edge_type>
<source_obj>140</source_obj>
<sink_obj>156</sink_obj>
</item>
<item class_id_reference="20" object_id="_518">
<id>647</id>
<edge_type>4</edge_type>
<source_obj>22</source_obj>
<sink_obj>140</sink_obj>
</item>
<item class_id_reference="20" object_id="_519">
<id>648</id>
<edge_type>4</edge_type>
<source_obj>22</source_obj>
<sink_obj>141</sink_obj>
</item>
<item class_id_reference="20" object_id="_520">
<id>649</id>
<edge_type>4</edge_type>
<source_obj>22</source_obj>
<sink_obj>156</sink_obj>
</item>
<item class_id_reference="20" object_id="_521">
<id>650</id>
<edge_type>4</edge_type>
<source_obj>22</source_obj>
<sink_obj>157</sink_obj>
</item>
<item class_id_reference="20" object_id="_522">
<id>651</id>
<edge_type>4</edge_type>
<source_obj>23</source_obj>
<sink_obj>141</sink_obj>
</item>
<item class_id_reference="20" object_id="_523">
<id>652</id>
<edge_type>4</edge_type>
<source_obj>23</source_obj>
<sink_obj>157</sink_obj>
</item>
<item class_id_reference="20" object_id="_524">
<id>653</id>
<edge_type>4</edge_type>
<source_obj>26</source_obj>
<sink_obj>144</sink_obj>
</item>
<item class_id_reference="20" object_id="_525">
<id>654</id>
<edge_type>4</edge_type>
<source_obj>26</source_obj>
<sink_obj>145</sink_obj>
</item>
<item class_id_reference="20" object_id="_526">
<id>655</id>
<edge_type>4</edge_type>
<source_obj>26</source_obj>
<sink_obj>160</sink_obj>
</item>
<item class_id_reference="20" object_id="_527">
<id>656</id>
<edge_type>4</edge_type>
<source_obj>26</source_obj>
<sink_obj>161</sink_obj>
</item>
<item class_id_reference="20" object_id="_528">
<id>657</id>
<edge_type>4</edge_type>
<source_obj>27</source_obj>
<sink_obj>145</sink_obj>
</item>
<item class_id_reference="20" object_id="_529">
<id>658</id>
<edge_type>4</edge_type>
<source_obj>27</source_obj>
<sink_obj>161</sink_obj>
</item>
<item class_id_reference="20" object_id="_530">
<id>659</id>
<edge_type>4</edge_type>
<source_obj>29</source_obj>
<sink_obj>147</sink_obj>
</item>
<item class_id_reference="20" object_id="_531">
<id>660</id>
<edge_type>4</edge_type>
<source_obj>29</source_obj>
<sink_obj>148</sink_obj>
</item>
<item class_id_reference="20" object_id="_532">
<id>661</id>
<edge_type>4</edge_type>
<source_obj>29</source_obj>
<sink_obj>163</sink_obj>
</item>
<item class_id_reference="20" object_id="_533">
<id>662</id>
<edge_type>4</edge_type>
<source_obj>29</source_obj>
<sink_obj>164</sink_obj>
</item>
<item class_id_reference="20" object_id="_534">
<id>663</id>
<edge_type>4</edge_type>
<source_obj>30</source_obj>
<sink_obj>147</sink_obj>
</item>
<item class_id_reference="20" object_id="_535">
<id>664</id>
<edge_type>4</edge_type>
<source_obj>30</source_obj>
<sink_obj>148</sink_obj>
</item>
<item class_id_reference="20" object_id="_536">
<id>665</id>
<edge_type>4</edge_type>
<source_obj>30</source_obj>
<sink_obj>149</sink_obj>
</item>
<item class_id_reference="20" object_id="_537">
<id>666</id>
<edge_type>4</edge_type>
<source_obj>30</source_obj>
<sink_obj>163</sink_obj>
</item>
<item class_id_reference="20" object_id="_538">
<id>667</id>
<edge_type>4</edge_type>
<source_obj>30</source_obj>
<sink_obj>164</sink_obj>
</item>
<item class_id_reference="20" object_id="_539">
<id>668</id>
<edge_type>4</edge_type>
<source_obj>30</source_obj>
<sink_obj>165</sink_obj>
</item>
<item class_id_reference="20" object_id="_540">
<id>669</id>
<edge_type>4</edge_type>
<source_obj>31</source_obj>
<sink_obj>144</sink_obj>
</item>
<item class_id_reference="20" object_id="_541">
<id>670</id>
<edge_type>4</edge_type>
<source_obj>31</source_obj>
<sink_obj>149</sink_obj>
</item>
<item class_id_reference="20" object_id="_542">
<id>671</id>
<edge_type>4</edge_type>
<source_obj>31</source_obj>
<sink_obj>160</sink_obj>
</item>
<item class_id_reference="20" object_id="_543">
<id>672</id>
<edge_type>4</edge_type>
<source_obj>31</source_obj>
<sink_obj>165</sink_obj>
</item>
<item class_id_reference="20" object_id="_544">
<id>673</id>
<edge_type>4</edge_type>
<source_obj>38</source_obj>
<sink_obj>140</sink_obj>
</item>
<item class_id_reference="20" object_id="_545">
<id>674</id>
<edge_type>4</edge_type>
<source_obj>38</source_obj>
<sink_obj>141</sink_obj>
</item>
<item class_id_reference="20" object_id="_546">
<id>675</id>
<edge_type>4</edge_type>
<source_obj>38</source_obj>
<sink_obj>156</sink_obj>
</item>
<item class_id_reference="20" object_id="_547">
<id>676</id>
<edge_type>4</edge_type>
<source_obj>38</source_obj>
<sink_obj>157</sink_obj>
</item>
<item class_id_reference="20" object_id="_548">
<id>677</id>
<edge_type>4</edge_type>
<source_obj>39</source_obj>
<sink_obj>141</sink_obj>
</item>
<item class_id_reference="20" object_id="_549">
<id>678</id>
<edge_type>4</edge_type>
<source_obj>39</source_obj>
<sink_obj>157</sink_obj>
</item>
<item class_id_reference="20" object_id="_550">
<id>679</id>
<edge_type>4</edge_type>
<source_obj>42</source_obj>
<sink_obj>144</sink_obj>
</item>
<item class_id_reference="20" object_id="_551">
<id>680</id>
<edge_type>4</edge_type>
<source_obj>42</source_obj>
<sink_obj>145</sink_obj>
</item>
<item class_id_reference="20" object_id="_552">
<id>681</id>
<edge_type>4</edge_type>
<source_obj>42</source_obj>
<sink_obj>160</sink_obj>
</item>
<item class_id_reference="20" object_id="_553">
<id>682</id>
<edge_type>4</edge_type>
<source_obj>42</source_obj>
<sink_obj>161</sink_obj>
</item>
<item class_id_reference="20" object_id="_554">
<id>683</id>
<edge_type>4</edge_type>
<source_obj>43</source_obj>
<sink_obj>145</sink_obj>
</item>
<item class_id_reference="20" object_id="_555">
<id>684</id>
<edge_type>4</edge_type>
<source_obj>43</source_obj>
<sink_obj>161</sink_obj>
</item>
<item class_id_reference="20" object_id="_556">
<id>685</id>
<edge_type>4</edge_type>
<source_obj>45</source_obj>
<sink_obj>147</sink_obj>
</item>
<item class_id_reference="20" object_id="_557">
<id>686</id>
<edge_type>4</edge_type>
<source_obj>45</source_obj>
<sink_obj>148</sink_obj>
</item>
<item class_id_reference="20" object_id="_558">
<id>687</id>
<edge_type>4</edge_type>
<source_obj>45</source_obj>
<sink_obj>163</sink_obj>
</item>
<item class_id_reference="20" object_id="_559">
<id>688</id>
<edge_type>4</edge_type>
<source_obj>45</source_obj>
<sink_obj>164</sink_obj>
</item>
<item class_id_reference="20" object_id="_560">
<id>689</id>
<edge_type>4</edge_type>
<source_obj>46</source_obj>
<sink_obj>147</sink_obj>
</item>
<item class_id_reference="20" object_id="_561">
<id>690</id>
<edge_type>4</edge_type>
<source_obj>46</source_obj>
<sink_obj>148</sink_obj>
</item>
<item class_id_reference="20" object_id="_562">
<id>691</id>
<edge_type>4</edge_type>
<source_obj>46</source_obj>
<sink_obj>149</sink_obj>
</item>
<item class_id_reference="20" object_id="_563">
<id>692</id>
<edge_type>4</edge_type>
<source_obj>46</source_obj>
<sink_obj>163</sink_obj>
</item>
<item class_id_reference="20" object_id="_564">
<id>693</id>
<edge_type>4</edge_type>
<source_obj>46</source_obj>
<sink_obj>164</sink_obj>
</item>
<item class_id_reference="20" object_id="_565">
<id>694</id>
<edge_type>4</edge_type>
<source_obj>46</source_obj>
<sink_obj>165</sink_obj>
</item>
<item class_id_reference="20" object_id="_566">
<id>695</id>
<edge_type>4</edge_type>
<source_obj>47</source_obj>
<sink_obj>144</sink_obj>
</item>
<item class_id_reference="20" object_id="_567">
<id>696</id>
<edge_type>4</edge_type>
<source_obj>47</source_obj>
<sink_obj>149</sink_obj>
</item>
<item class_id_reference="20" object_id="_568">
<id>697</id>
<edge_type>4</edge_type>
<source_obj>47</source_obj>
<sink_obj>160</sink_obj>
</item>
<item class_id_reference="20" object_id="_569">
<id>698</id>
<edge_type>4</edge_type>
<source_obj>47</source_obj>
<sink_obj>165</sink_obj>
</item>
<item class_id_reference="20" object_id="_570">
<id>699</id>
<edge_type>4</edge_type>
<source_obj>54</source_obj>
<sink_obj>140</sink_obj>
</item>
<item class_id_reference="20" object_id="_571">
<id>700</id>
<edge_type>4</edge_type>
<source_obj>54</source_obj>
<sink_obj>141</sink_obj>
</item>
<item class_id_reference="20" object_id="_572">
<id>701</id>
<edge_type>4</edge_type>
<source_obj>54</source_obj>
<sink_obj>156</sink_obj>
</item>
<item class_id_reference="20" object_id="_573">
<id>702</id>
<edge_type>4</edge_type>
<source_obj>54</source_obj>
<sink_obj>157</sink_obj>
</item>
<item class_id_reference="20" object_id="_574">
<id>703</id>
<edge_type>4</edge_type>
<source_obj>55</source_obj>
<sink_obj>141</sink_obj>
</item>
<item class_id_reference="20" object_id="_575">
<id>704</id>
<edge_type>4</edge_type>
<source_obj>55</source_obj>
<sink_obj>157</sink_obj>
</item>
<item class_id_reference="20" object_id="_576">
<id>705</id>
<edge_type>4</edge_type>
<source_obj>58</source_obj>
<sink_obj>144</sink_obj>
</item>
<item class_id_reference="20" object_id="_577">
<id>706</id>
<edge_type>4</edge_type>
<source_obj>58</source_obj>
<sink_obj>145</sink_obj>
</item>
<item class_id_reference="20" object_id="_578">
<id>707</id>
<edge_type>4</edge_type>
<source_obj>58</source_obj>
<sink_obj>160</sink_obj>
</item>
<item class_id_reference="20" object_id="_579">
<id>708</id>
<edge_type>4</edge_type>
<source_obj>58</source_obj>
<sink_obj>161</sink_obj>
</item>
<item class_id_reference="20" object_id="_580">
<id>709</id>
<edge_type>4</edge_type>
<source_obj>59</source_obj>
<sink_obj>145</sink_obj>
</item>
<item class_id_reference="20" object_id="_581">
<id>710</id>
<edge_type>4</edge_type>
<source_obj>59</source_obj>
<sink_obj>161</sink_obj>
</item>
<item class_id_reference="20" object_id="_582">
<id>711</id>
<edge_type>4</edge_type>
<source_obj>61</source_obj>
<sink_obj>147</sink_obj>
</item>
<item class_id_reference="20" object_id="_583">
<id>712</id>
<edge_type>4</edge_type>
<source_obj>61</source_obj>
<sink_obj>148</sink_obj>
</item>
<item class_id_reference="20" object_id="_584">
<id>713</id>
<edge_type>4</edge_type>
<source_obj>61</source_obj>
<sink_obj>163</sink_obj>
</item>
<item class_id_reference="20" object_id="_585">
<id>714</id>
<edge_type>4</edge_type>
<source_obj>61</source_obj>
<sink_obj>164</sink_obj>
</item>
<item class_id_reference="20" object_id="_586">
<id>715</id>
<edge_type>4</edge_type>
<source_obj>62</source_obj>
<sink_obj>147</sink_obj>
</item>
<item class_id_reference="20" object_id="_587">
<id>716</id>
<edge_type>4</edge_type>
<source_obj>62</source_obj>
<sink_obj>148</sink_obj>
</item>
<item class_id_reference="20" object_id="_588">
<id>717</id>
<edge_type>4</edge_type>
<source_obj>62</source_obj>
<sink_obj>149</sink_obj>
</item>
<item class_id_reference="20" object_id="_589">
<id>718</id>
<edge_type>4</edge_type>
<source_obj>62</source_obj>
<sink_obj>163</sink_obj>
</item>
<item class_id_reference="20" object_id="_590">
<id>719</id>
<edge_type>4</edge_type>
<source_obj>62</source_obj>
<sink_obj>164</sink_obj>
</item>
<item class_id_reference="20" object_id="_591">
<id>720</id>
<edge_type>4</edge_type>
<source_obj>62</source_obj>
<sink_obj>165</sink_obj>
</item>
<item class_id_reference="20" object_id="_592">
<id>721</id>
<edge_type>4</edge_type>
<source_obj>63</source_obj>
<sink_obj>144</sink_obj>
</item>
<item class_id_reference="20" object_id="_593">
<id>722</id>
<edge_type>4</edge_type>
<source_obj>63</source_obj>
<sink_obj>149</sink_obj>
</item>
<item class_id_reference="20" object_id="_594">
<id>723</id>
<edge_type>4</edge_type>
<source_obj>63</source_obj>
<sink_obj>160</sink_obj>
</item>
<item class_id_reference="20" object_id="_595">
<id>724</id>
<edge_type>4</edge_type>
<source_obj>63</source_obj>
<sink_obj>165</sink_obj>
</item>
<item class_id_reference="20" object_id="_596">
<id>725</id>
<edge_type>4</edge_type>
<source_obj>70</source_obj>
<sink_obj>140</sink_obj>
</item>
<item class_id_reference="20" object_id="_597">
<id>726</id>
<edge_type>4</edge_type>
<source_obj>70</source_obj>
<sink_obj>141</sink_obj>
</item>
<item class_id_reference="20" object_id="_598">
<id>727</id>
<edge_type>4</edge_type>
<source_obj>70</source_obj>
<sink_obj>156</sink_obj>
</item>
<item class_id_reference="20" object_id="_599">
<id>728</id>
<edge_type>4</edge_type>
<source_obj>70</source_obj>
<sink_obj>157</sink_obj>
</item>
<item class_id_reference="20" object_id="_600">
<id>729</id>
<edge_type>4</edge_type>
<source_obj>71</source_obj>
<sink_obj>141</sink_obj>
</item>
<item class_id_reference="20" object_id="_601">
<id>730</id>
<edge_type>4</edge_type>
<source_obj>71</source_obj>
<sink_obj>157</sink_obj>
</item>
<item class_id_reference="20" object_id="_602">
<id>731</id>
<edge_type>4</edge_type>
<source_obj>74</source_obj>
<sink_obj>144</sink_obj>
</item>
<item class_id_reference="20" object_id="_603">
<id>732</id>
<edge_type>4</edge_type>
<source_obj>74</source_obj>
<sink_obj>145</sink_obj>
</item>
<item class_id_reference="20" object_id="_604">
<id>733</id>
<edge_type>4</edge_type>
<source_obj>74</source_obj>
<sink_obj>160</sink_obj>
</item>
<item class_id_reference="20" object_id="_605">
<id>734</id>
<edge_type>4</edge_type>
<source_obj>74</source_obj>
<sink_obj>161</sink_obj>
</item>
<item class_id_reference="20" object_id="_606">
<id>735</id>
<edge_type>4</edge_type>
<source_obj>75</source_obj>
<sink_obj>145</sink_obj>
</item>
<item class_id_reference="20" object_id="_607">
<id>736</id>
<edge_type>4</edge_type>
<source_obj>75</source_obj>
<sink_obj>161</sink_obj>
</item>
<item class_id_reference="20" object_id="_608">
<id>737</id>
<edge_type>4</edge_type>
<source_obj>77</source_obj>
<sink_obj>147</sink_obj>
</item>
<item class_id_reference="20" object_id="_609">
<id>738</id>
<edge_type>4</edge_type>
<source_obj>77</source_obj>
<sink_obj>148</sink_obj>
</item>
<item class_id_reference="20" object_id="_610">
<id>739</id>
<edge_type>4</edge_type>
<source_obj>77</source_obj>
<sink_obj>163</sink_obj>
</item>
<item class_id_reference="20" object_id="_611">
<id>740</id>
<edge_type>4</edge_type>
<source_obj>77</source_obj>
<sink_obj>164</sink_obj>
</item>
<item class_id_reference="20" object_id="_612">
<id>741</id>
<edge_type>4</edge_type>
<source_obj>78</source_obj>
<sink_obj>147</sink_obj>
</item>
<item class_id_reference="20" object_id="_613">
<id>742</id>
<edge_type>4</edge_type>
<source_obj>78</source_obj>
<sink_obj>148</sink_obj>
</item>
<item class_id_reference="20" object_id="_614">
<id>743</id>
<edge_type>4</edge_type>
<source_obj>78</source_obj>
<sink_obj>149</sink_obj>
</item>
<item class_id_reference="20" object_id="_615">
<id>744</id>
<edge_type>4</edge_type>
<source_obj>78</source_obj>
<sink_obj>163</sink_obj>
</item>
<item class_id_reference="20" object_id="_616">
<id>745</id>
<edge_type>4</edge_type>
<source_obj>78</source_obj>
<sink_obj>164</sink_obj>
</item>
<item class_id_reference="20" object_id="_617">
<id>746</id>
<edge_type>4</edge_type>
<source_obj>78</source_obj>
<sink_obj>165</sink_obj>
</item>
<item class_id_reference="20" object_id="_618">
<id>747</id>
<edge_type>4</edge_type>
<source_obj>79</source_obj>
<sink_obj>144</sink_obj>
</item>
<item class_id_reference="20" object_id="_619">
<id>748</id>
<edge_type>4</edge_type>
<source_obj>79</source_obj>
<sink_obj>149</sink_obj>
</item>
<item class_id_reference="20" object_id="_620">
<id>749</id>
<edge_type>4</edge_type>
<source_obj>79</source_obj>
<sink_obj>160</sink_obj>
</item>
<item class_id_reference="20" object_id="_621">
<id>750</id>
<edge_type>4</edge_type>
<source_obj>79</source_obj>
<sink_obj>165</sink_obj>
</item>
<item class_id_reference="20" object_id="_622">
<id>751</id>
<edge_type>4</edge_type>
<source_obj>86</source_obj>
<sink_obj>140</sink_obj>
</item>
<item class_id_reference="20" object_id="_623">
<id>752</id>
<edge_type>4</edge_type>
<source_obj>86</source_obj>
<sink_obj>141</sink_obj>
</item>
<item class_id_reference="20" object_id="_624">
<id>753</id>
<edge_type>4</edge_type>
<source_obj>86</source_obj>
<sink_obj>156</sink_obj>
</item>
<item class_id_reference="20" object_id="_625">
<id>754</id>
<edge_type>4</edge_type>
<source_obj>86</source_obj>
<sink_obj>157</sink_obj>
</item>
<item class_id_reference="20" object_id="_626">
<id>755</id>
<edge_type>4</edge_type>
<source_obj>87</source_obj>
<sink_obj>141</sink_obj>
</item>
<item class_id_reference="20" object_id="_627">
<id>756</id>
<edge_type>4</edge_type>
<source_obj>87</source_obj>
<sink_obj>157</sink_obj>
</item>
<item class_id_reference="20" object_id="_628">
<id>757</id>
<edge_type>4</edge_type>
<source_obj>90</source_obj>
<sink_obj>144</sink_obj>
</item>
<item class_id_reference="20" object_id="_629">
<id>758</id>
<edge_type>4</edge_type>
<source_obj>90</source_obj>
<sink_obj>145</sink_obj>
</item>
<item class_id_reference="20" object_id="_630">
<id>759</id>
<edge_type>4</edge_type>
<source_obj>90</source_obj>
<sink_obj>160</sink_obj>
</item>
<item class_id_reference="20" object_id="_631">
<id>760</id>
<edge_type>4</edge_type>
<source_obj>90</source_obj>
<sink_obj>161</sink_obj>
</item>
<item class_id_reference="20" object_id="_632">
<id>761</id>
<edge_type>4</edge_type>
<source_obj>91</source_obj>
<sink_obj>145</sink_obj>
</item>
<item class_id_reference="20" object_id="_633">
<id>762</id>
<edge_type>4</edge_type>
<source_obj>91</source_obj>
<sink_obj>161</sink_obj>
</item>
<item class_id_reference="20" object_id="_634">
<id>763</id>
<edge_type>4</edge_type>
<source_obj>93</source_obj>
<sink_obj>147</sink_obj>
</item>
<item class_id_reference="20" object_id="_635">
<id>764</id>
<edge_type>4</edge_type>
<source_obj>93</source_obj>
<sink_obj>148</sink_obj>
</item>
<item class_id_reference="20" object_id="_636">
<id>765</id>
<edge_type>4</edge_type>
<source_obj>93</source_obj>
<sink_obj>163</sink_obj>
</item>
<item class_id_reference="20" object_id="_637">
<id>766</id>
<edge_type>4</edge_type>
<source_obj>93</source_obj>
<sink_obj>164</sink_obj>
</item>
<item class_id_reference="20" object_id="_638">
<id>767</id>
<edge_type>4</edge_type>
<source_obj>94</source_obj>
<sink_obj>147</sink_obj>
</item>
<item class_id_reference="20" object_id="_639">
<id>768</id>
<edge_type>4</edge_type>
<source_obj>94</source_obj>
<sink_obj>148</sink_obj>
</item>
<item class_id_reference="20" object_id="_640">
<id>769</id>
<edge_type>4</edge_type>
<source_obj>94</source_obj>
<sink_obj>149</sink_obj>
</item>
<item class_id_reference="20" object_id="_641">
<id>770</id>
<edge_type>4</edge_type>
<source_obj>94</source_obj>
<sink_obj>163</sink_obj>
</item>
<item class_id_reference="20" object_id="_642">
<id>771</id>
<edge_type>4</edge_type>
<source_obj>94</source_obj>
<sink_obj>164</sink_obj>
</item>
<item class_id_reference="20" object_id="_643">
<id>772</id>
<edge_type>4</edge_type>
<source_obj>94</source_obj>
<sink_obj>165</sink_obj>
</item>
<item class_id_reference="20" object_id="_644">
<id>773</id>
<edge_type>4</edge_type>
<source_obj>95</source_obj>
<sink_obj>144</sink_obj>
</item>
<item class_id_reference="20" object_id="_645">
<id>774</id>
<edge_type>4</edge_type>
<source_obj>95</source_obj>
<sink_obj>149</sink_obj>
</item>
<item class_id_reference="20" object_id="_646">
<id>775</id>
<edge_type>4</edge_type>
<source_obj>95</source_obj>
<sink_obj>160</sink_obj>
</item>
<item class_id_reference="20" object_id="_647">
<id>776</id>
<edge_type>4</edge_type>
<source_obj>95</source_obj>
<sink_obj>165</sink_obj>
</item>
<item class_id_reference="20" object_id="_648">
<id>777</id>
<edge_type>4</edge_type>
<source_obj>102</source_obj>
<sink_obj>140</sink_obj>
</item>
<item class_id_reference="20" object_id="_649">
<id>778</id>
<edge_type>4</edge_type>
<source_obj>102</source_obj>
<sink_obj>141</sink_obj>
</item>
<item class_id_reference="20" object_id="_650">
<id>779</id>
<edge_type>4</edge_type>
<source_obj>102</source_obj>
<sink_obj>156</sink_obj>
</item>
<item class_id_reference="20" object_id="_651">
<id>780</id>
<edge_type>4</edge_type>
<source_obj>102</source_obj>
<sink_obj>157</sink_obj>
</item>
<item class_id_reference="20" object_id="_652">
<id>781</id>
<edge_type>4</edge_type>
<source_obj>103</source_obj>
<sink_obj>141</sink_obj>
</item>
<item class_id_reference="20" object_id="_653">
<id>782</id>
<edge_type>4</edge_type>
<source_obj>103</source_obj>
<sink_obj>157</sink_obj>
</item>
<item class_id_reference="20" object_id="_654">
<id>783</id>
<edge_type>4</edge_type>
<source_obj>106</source_obj>
<sink_obj>144</sink_obj>
</item>
<item class_id_reference="20" object_id="_655">
<id>784</id>
<edge_type>4</edge_type>
<source_obj>106</source_obj>
<sink_obj>145</sink_obj>
</item>
<item class_id_reference="20" object_id="_656">
<id>785</id>
<edge_type>4</edge_type>
<source_obj>106</source_obj>
<sink_obj>160</sink_obj>
</item>
<item class_id_reference="20" object_id="_657">
<id>786</id>
<edge_type>4</edge_type>
<source_obj>106</source_obj>
<sink_obj>161</sink_obj>
</item>
<item class_id_reference="20" object_id="_658">
<id>787</id>
<edge_type>4</edge_type>
<source_obj>107</source_obj>
<sink_obj>145</sink_obj>
</item>
<item class_id_reference="20" object_id="_659">
<id>788</id>
<edge_type>4</edge_type>
<source_obj>107</source_obj>
<sink_obj>161</sink_obj>
</item>
<item class_id_reference="20" object_id="_660">
<id>789</id>
<edge_type>4</edge_type>
<source_obj>109</source_obj>
<sink_obj>147</sink_obj>
</item>
<item class_id_reference="20" object_id="_661">
<id>790</id>
<edge_type>4</edge_type>
<source_obj>109</source_obj>
<sink_obj>148</sink_obj>
</item>
<item class_id_reference="20" object_id="_662">
<id>791</id>
<edge_type>4</edge_type>
<source_obj>109</source_obj>
<sink_obj>163</sink_obj>
</item>
<item class_id_reference="20" object_id="_663">
<id>792</id>
<edge_type>4</edge_type>
<source_obj>109</source_obj>
<sink_obj>164</sink_obj>
</item>
<item class_id_reference="20" object_id="_664">
<id>793</id>
<edge_type>4</edge_type>
<source_obj>110</source_obj>
<sink_obj>147</sink_obj>
</item>
<item class_id_reference="20" object_id="_665">
<id>794</id>
<edge_type>4</edge_type>
<source_obj>110</source_obj>
<sink_obj>148</sink_obj>
</item>
<item class_id_reference="20" object_id="_666">
<id>795</id>
<edge_type>4</edge_type>
<source_obj>110</source_obj>
<sink_obj>149</sink_obj>
</item>
<item class_id_reference="20" object_id="_667">
<id>796</id>
<edge_type>4</edge_type>
<source_obj>110</source_obj>
<sink_obj>163</sink_obj>
</item>
<item class_id_reference="20" object_id="_668">
<id>797</id>
<edge_type>4</edge_type>
<source_obj>110</source_obj>
<sink_obj>164</sink_obj>
</item>
<item class_id_reference="20" object_id="_669">
<id>798</id>
<edge_type>4</edge_type>
<source_obj>110</source_obj>
<sink_obj>165</sink_obj>
</item>
<item class_id_reference="20" object_id="_670">
<id>799</id>
<edge_type>4</edge_type>
<source_obj>111</source_obj>
<sink_obj>144</sink_obj>
</item>
<item class_id_reference="20" object_id="_671">
<id>800</id>
<edge_type>4</edge_type>
<source_obj>111</source_obj>
<sink_obj>149</sink_obj>
</item>
<item class_id_reference="20" object_id="_672">
<id>801</id>
<edge_type>4</edge_type>
<source_obj>111</source_obj>
<sink_obj>160</sink_obj>
</item>
<item class_id_reference="20" object_id="_673">
<id>802</id>
<edge_type>4</edge_type>
<source_obj>111</source_obj>
<sink_obj>165</sink_obj>
</item>
<item class_id_reference="20" object_id="_674">
<id>803</id>
<edge_type>4</edge_type>
<source_obj>118</source_obj>
<sink_obj>140</sink_obj>
</item>
<item class_id_reference="20" object_id="_675">
<id>804</id>
<edge_type>4</edge_type>
<source_obj>118</source_obj>
<sink_obj>141</sink_obj>
</item>
<item class_id_reference="20" object_id="_676">
<id>805</id>
<edge_type>4</edge_type>
<source_obj>118</source_obj>
<sink_obj>156</sink_obj>
</item>
<item class_id_reference="20" object_id="_677">
<id>806</id>
<edge_type>4</edge_type>
<source_obj>118</source_obj>
<sink_obj>157</sink_obj>
</item>
<item class_id_reference="20" object_id="_678">
<id>807</id>
<edge_type>4</edge_type>
<source_obj>119</source_obj>
<sink_obj>141</sink_obj>
</item>
<item class_id_reference="20" object_id="_679">
<id>808</id>
<edge_type>4</edge_type>
<source_obj>119</source_obj>
<sink_obj>157</sink_obj>
</item>
<item class_id_reference="20" object_id="_680">
<id>809</id>
<edge_type>4</edge_type>
<source_obj>122</source_obj>
<sink_obj>144</sink_obj>
</item>
<item class_id_reference="20" object_id="_681">
<id>810</id>
<edge_type>4</edge_type>
<source_obj>122</source_obj>
<sink_obj>145</sink_obj>
</item>
<item class_id_reference="20" object_id="_682">
<id>811</id>
<edge_type>4</edge_type>
<source_obj>122</source_obj>
<sink_obj>160</sink_obj>
</item>
<item class_id_reference="20" object_id="_683">
<id>812</id>
<edge_type>4</edge_type>
<source_obj>122</source_obj>
<sink_obj>161</sink_obj>
</item>
<item class_id_reference="20" object_id="_684">
<id>813</id>
<edge_type>4</edge_type>
<source_obj>123</source_obj>
<sink_obj>145</sink_obj>
</item>
<item class_id_reference="20" object_id="_685">
<id>814</id>
<edge_type>4</edge_type>
<source_obj>123</source_obj>
<sink_obj>161</sink_obj>
</item>
<item class_id_reference="20" object_id="_686">
<id>815</id>
<edge_type>4</edge_type>
<source_obj>125</source_obj>
<sink_obj>147</sink_obj>
</item>
<item class_id_reference="20" object_id="_687">
<id>816</id>
<edge_type>4</edge_type>
<source_obj>125</source_obj>
<sink_obj>148</sink_obj>
</item>
<item class_id_reference="20" object_id="_688">
<id>817</id>
<edge_type>4</edge_type>
<source_obj>125</source_obj>
<sink_obj>163</sink_obj>
</item>
<item class_id_reference="20" object_id="_689">
<id>818</id>
<edge_type>4</edge_type>
<source_obj>125</source_obj>
<sink_obj>164</sink_obj>
</item>
<item class_id_reference="20" object_id="_690">
<id>819</id>
<edge_type>4</edge_type>
<source_obj>126</source_obj>
<sink_obj>147</sink_obj>
</item>
<item class_id_reference="20" object_id="_691">
<id>820</id>
<edge_type>4</edge_type>
<source_obj>126</source_obj>
<sink_obj>148</sink_obj>
</item>
<item class_id_reference="20" object_id="_692">
<id>821</id>
<edge_type>4</edge_type>
<source_obj>126</source_obj>
<sink_obj>149</sink_obj>
</item>
<item class_id_reference="20" object_id="_693">
<id>822</id>
<edge_type>4</edge_type>
<source_obj>126</source_obj>
<sink_obj>163</sink_obj>
</item>
<item class_id_reference="20" object_id="_694">
<id>823</id>
<edge_type>4</edge_type>
<source_obj>126</source_obj>
<sink_obj>164</sink_obj>
</item>
<item class_id_reference="20" object_id="_695">
<id>824</id>
<edge_type>4</edge_type>
<source_obj>126</source_obj>
<sink_obj>165</sink_obj>
</item>
<item class_id_reference="20" object_id="_696">
<id>825</id>
<edge_type>4</edge_type>
<source_obj>127</source_obj>
<sink_obj>144</sink_obj>
</item>
<item class_id_reference="20" object_id="_697">
<id>826</id>
<edge_type>4</edge_type>
<source_obj>127</source_obj>
<sink_obj>149</sink_obj>
</item>
<item class_id_reference="20" object_id="_698">
<id>827</id>
<edge_type>4</edge_type>
<source_obj>127</source_obj>
<sink_obj>160</sink_obj>
</item>
<item class_id_reference="20" object_id="_699">
<id>828</id>
<edge_type>4</edge_type>
<source_obj>127</source_obj>
<sink_obj>165</sink_obj>
</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="_700">
<mId>1</mId>
<mTag>aes_addRoundKey</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>242</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_701">
<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>13</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="_702">
<mId>3</mId>
<mTag>addkey</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>133</item>
<item>167</item>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>1</mMinTripCount>
<mMaxTripCount>1</mMaxTripCount>
<mMinLatency>241</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_703">
<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>169</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>
</cdfg_regions>
<fsm class_id="24" tracking_level="1" version="0" object_id="_704">
<states class_id="25" tracking_level="0" version="0">
<count>137</count>
<item_version>0</item_version>
<item class_id="26" tracking_level="1" version="0" object_id="_705">
<id>1</id>
<operations class_id="27" tracking_level="0" version="0">
<count>7</count>
<item_version>0</item_version>
<item class_id="28" tracking_level="1" version="0" object_id="_706">
<id>6</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_707">
<id>7</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_708">
<id>8</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_709">
<id>9</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_710">
<id>10</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_711">
<id>11</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_712">
<id>12</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_713">
<id>2</id>
<operations>
<count>9</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_714">
<id>14</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_715">
<id>15</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_716">
<id>17</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_717">
<id>18</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_718">
<id>19</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_719">
<id>20</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_720">
<id>21</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_721">
<id>24</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_722">
<id>25</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_723">
<id>3</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_724">
<id>22</id>
<stage>7</stage>
<latency>7</latency>
</item>
<item class_id_reference="28" object_id="_725">
<id>26</id>
<stage>7</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_726">
<id>4</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_727">
<id>22</id>
<stage>6</stage>
<latency>7</latency>
</item>
<item class_id_reference="28" object_id="_728">
<id>26</id>
<stage>6</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_729">
<id>5</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_730">
<id>22</id>
<stage>5</stage>
<latency>7</latency>
</item>
<item class_id_reference="28" object_id="_731">
<id>26</id>
<stage>5</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_732">
<id>6</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_733">
<id>22</id>
<stage>4</stage>
<latency>7</latency>
</item>
<item class_id_reference="28" object_id="_734">
<id>26</id>
<stage>4</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_735">
<id>7</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_736">
<id>22</id>
<stage>3</stage>
<latency>7</latency>
</item>
<item class_id_reference="28" object_id="_737">
<id>26</id>
<stage>3</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_738">
<id>8</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_739">
<id>22</id>
<stage>2</stage>
<latency>7</latency>
</item>
<item class_id_reference="28" object_id="_740">
<id>26</id>
<stage>2</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_741">
<id>9</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_742">
<id>22</id>
<stage>1</stage>
<latency>7</latency>
</item>
<item class_id_reference="28" object_id="_743">
<id>26</id>
<stage>1</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_744">
<id>10</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_745">
<id>23</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_746">
<id>27</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_747">
<id>11</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_748">
<id>28</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_749">
<id>29</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_750">
<id>12</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_751">
<id>30</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_752">
<id>13</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_753">
<id>31</id>
<stage>5</stage>
<latency>5</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_754">
<id>14</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_755">
<id>31</id>
<stage>4</stage>
<latency>5</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_756">
<id>15</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_757">
<id>31</id>
<stage>3</stage>
<latency>5</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_758">
<id>16</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_759">
<id>31</id>
<stage>2</stage>
<latency>5</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_760">
<id>17</id>
<operations>
<count>9</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_761">
<id>31</id>
<stage>1</stage>
<latency>5</latency>
</item>
<item class_id_reference="28" object_id="_762">
<id>32</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_763">
<id>33</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_764">
<id>34</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_765">
<id>35</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_766">
<id>36</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_767">
<id>37</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_768">
<id>40</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_769">
<id>41</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_770">
<id>18</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_771">
<id>38</id>
<stage>7</stage>
<latency>7</latency>
</item>
<item class_id_reference="28" object_id="_772">
<id>42</id>
<stage>7</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_773">
<id>19</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_774">
<id>38</id>
<stage>6</stage>
<latency>7</latency>
</item>
<item class_id_reference="28" object_id="_775">
<id>42</id>
<stage>6</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_776">
<id>20</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_777">
<id>38</id>
<stage>5</stage>
<latency>7</latency>
</item>
<item class_id_reference="28" object_id="_778">
<id>42</id>
<stage>5</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_779">
<id>21</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_780">
<id>38</id>
<stage>4</stage>
<latency>7</latency>
</item>
<item class_id_reference="28" object_id="_781">
<id>42</id>
<stage>4</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_782">
<id>22</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_783">
<id>38</id>
<stage>3</stage>
<latency>7</latency>
</item>
<item class_id_reference="28" object_id="_784">
<id>42</id>
<stage>3</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_785">
<id>23</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_786">
<id>38</id>
<stage>2</stage>
<latency>7</latency>
</item>
<item class_id_reference="28" object_id="_787">
<id>42</id>
<stage>2</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_788">
<id>24</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_789">
<id>38</id>
<stage>1</stage>
<latency>7</latency>
</item>
<item class_id_reference="28" object_id="_790">
<id>42</id>
<stage>1</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_791">
<id>25</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_792">
<id>39</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_793">
<id>43</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_794">
<id>26</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_795">
<id>44</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_796">
<id>45</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_797">
<id>27</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_798">
<id>46</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_799">
<id>28</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_800">
<id>47</id>
<stage>5</stage>
<latency>5</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_801">
<id>29</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_802">
<id>47</id>
<stage>4</stage>
<latency>5</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_803">
<id>30</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_804">
<id>47</id>
<stage>3</stage>
<latency>5</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_805">
<id>31</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_806">
<id>47</id>
<stage>2</stage>
<latency>5</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_807">
<id>32</id>
<operations>
<count>9</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_808">
<id>47</id>
<stage>1</stage>
<latency>5</latency>
</item>
<item class_id_reference="28" object_id="_809">
<id>48</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_810">
<id>49</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_811">
<id>50</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_812">
<id>51</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_813">
<id>52</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_814">
<id>53</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_815">
<id>56</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_816">
<id>57</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_817">
<id>33</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_818">
<id>54</id>
<stage>7</stage>
<latency>7</latency>
</item>
<item class_id_reference="28" object_id="_819">
<id>58</id>
<stage>7</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_820">
<id>34</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_821">
<id>54</id>
<stage>6</stage>
<latency>7</latency>
</item>
<item class_id_reference="28" object_id="_822">
<id>58</id>
<stage>6</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_823">
<id>35</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_824">
<id>54</id>
<stage>5</stage>
<latency>7</latency>
</item>
<item class_id_reference="28" object_id="_825">
<id>58</id>
<stage>5</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_826">
<id>36</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_827">
<id>54</id>
<stage>4</stage>
<latency>7</latency>
</item>
<item class_id_reference="28" object_id="_828">
<id>58</id>
<stage>4</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_829">
<id>37</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_830">
<id>54</id>
<stage>3</stage>
<latency>7</latency>
</item>
<item class_id_reference="28" object_id="_831">
<id>58</id>
<stage>3</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_832">
<id>38</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_833">
<id>54</id>
<stage>2</stage>
<latency>7</latency>
</item>
<item class_id_reference="28" object_id="_834">
<id>58</id>
<stage>2</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_835">
<id>39</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_836">
<id>54</id>
<stage>1</stage>
<latency>7</latency>
</item>
<item class_id_reference="28" object_id="_837">
<id>58</id>
<stage>1</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_838">
<id>40</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_839">
<id>55</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_840">
<id>59</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_841">
<id>41</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_842">
<id>60</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_843">
<id>61</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_844">
<id>42</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_845">
<id>62</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_846">
<id>43</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_847">
<id>63</id>
<stage>5</stage>
<latency>5</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_848">
<id>44</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_849">
<id>63</id>
<stage>4</stage>
<latency>5</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_850">
<id>45</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_851">
<id>63</id>
<stage>3</stage>
<latency>5</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_852">
<id>46</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_853">
<id>63</id>
<stage>2</stage>
<latency>5</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_854">
<id>47</id>
<operations>
<count>9</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_855">
<id>63</id>
<stage>1</stage>
<latency>5</latency>
</item>
<item class_id_reference="28" object_id="_856">
<id>64</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_857">
<id>65</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_858">
<id>66</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_859">
<id>67</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_860">
<id>68</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_861">
<id>69</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_862">
<id>72</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_863">
<id>73</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_864">
<id>48</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_865">
<id>70</id>
<stage>7</stage>
<latency>7</latency>
</item>
<item class_id_reference="28" object_id="_866">
<id>74</id>
<stage>7</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_867">
<id>49</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_868">
<id>70</id>
<stage>6</stage>
<latency>7</latency>
</item>
<item class_id_reference="28" object_id="_869">
<id>74</id>
<stage>6</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_870">
<id>50</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_871">
<id>70</id>
<stage>5</stage>
<latency>7</latency>
</item>
<item class_id_reference="28" object_id="_872">
<id>74</id>
<stage>5</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_873">
<id>51</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_874">
<id>70</id>
<stage>4</stage>
<latency>7</latency>
</item>
<item class_id_reference="28" object_id="_875">
<id>74</id>
<stage>4</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_876">
<id>52</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_877">
<id>70</id>
<stage>3</stage>
<latency>7</latency>
</item>
<item class_id_reference="28" object_id="_878">
<id>74</id>
<stage>3</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_879">
<id>53</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_880">
<id>70</id>
<stage>2</stage>
<latency>7</latency>
</item>
<item class_id_reference="28" object_id="_881">
<id>74</id>
<stage>2</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_882">
<id>54</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_883">
<id>70</id>
<stage>1</stage>
<latency>7</latency>
</item>
<item class_id_reference="28" object_id="_884">
<id>74</id>
<stage>1</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_885">
<id>55</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_886">
<id>71</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_887">
<id>75</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_888">
<id>56</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_889">
<id>76</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_890">
<id>77</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_891">
<id>57</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_892">
<id>78</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_893">
<id>58</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_894">
<id>79</id>
<stage>5</stage>
<latency>5</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_895">
<id>59</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_896">
<id>79</id>
<stage>4</stage>
<latency>5</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_897">
<id>60</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_898">
<id>79</id>
<stage>3</stage>
<latency>5</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_899">
<id>61</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_900">
<id>79</id>
<stage>2</stage>
<latency>5</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_901">
<id>62</id>
<operations>
<count>9</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_902">
<id>79</id>
<stage>1</stage>
<latency>5</latency>
</item>
<item class_id_reference="28" object_id="_903">
<id>80</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_904">
<id>81</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_905">
<id>82</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_906">
<id>83</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_907">
<id>84</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_908">
<id>85</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_909">
<id>88</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_910">
<id>89</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_911">
<id>63</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_912">
<id>86</id>
<stage>7</stage>
<latency>7</latency>
</item>
<item class_id_reference="28" object_id="_913">
<id>90</id>
<stage>7</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_914">
<id>64</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_915">
<id>86</id>
<stage>6</stage>
<latency>7</latency>
</item>
<item class_id_reference="28" object_id="_916">
<id>90</id>
<stage>6</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_917">
<id>65</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_918">
<id>86</id>
<stage>5</stage>
<latency>7</latency>
</item>
<item class_id_reference="28" object_id="_919">
<id>90</id>
<stage>5</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_920">
<id>66</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_921">
<id>86</id>
<stage>4</stage>
<latency>7</latency>
</item>
<item class_id_reference="28" object_id="_922">
<id>90</id>
<stage>4</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_923">
<id>67</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_924">
<id>86</id>
<stage>3</stage>
<latency>7</latency>
</item>
<item class_id_reference="28" object_id="_925">
<id>90</id>
<stage>3</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_926">
<id>68</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_927">
<id>86</id>
<stage>2</stage>
<latency>7</latency>
</item>
<item class_id_reference="28" object_id="_928">
<id>90</id>
<stage>2</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_929">
<id>69</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_930">
<id>86</id>
<stage>1</stage>
<latency>7</latency>
</item>
<item class_id_reference="28" object_id="_931">
<id>90</id>
<stage>1</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_932">
<id>70</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_933">
<id>87</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_934">
<id>91</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_935">
<id>71</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_936">
<id>92</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_937">
<id>93</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_938">
<id>72</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_939">
<id>94</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_940">
<id>73</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_941">
<id>95</id>
<stage>5</stage>
<latency>5</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_942">
<id>74</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_943">
<id>95</id>
<stage>4</stage>
<latency>5</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_944">
<id>75</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_945">
<id>95</id>
<stage>3</stage>
<latency>5</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_946">
<id>76</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_947">
<id>95</id>
<stage>2</stage>
<latency>5</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_948">
<id>77</id>
<operations>
<count>9</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_949">
<id>95</id>
<stage>1</stage>
<latency>5</latency>
</item>
<item class_id_reference="28" object_id="_950">
<id>96</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_951">
<id>97</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_952">
<id>98</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_953">
<id>99</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_954">
<id>100</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_955">
<id>101</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_956">
<id>104</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_957">
<id>105</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_958">
<id>78</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_959">
<id>102</id>
<stage>7</stage>
<latency>7</latency>
</item>
<item class_id_reference="28" object_id="_960">
<id>106</id>
<stage>7</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_961">
<id>79</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_962">
<id>102</id>
<stage>6</stage>
<latency>7</latency>
</item>
<item class_id_reference="28" object_id="_963">
<id>106</id>
<stage>6</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_964">
<id>80</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_965">
<id>102</id>
<stage>5</stage>
<latency>7</latency>
</item>
<item class_id_reference="28" object_id="_966">
<id>106</id>
<stage>5</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_967">
<id>81</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_968">
<id>102</id>
<stage>4</stage>
<latency>7</latency>
</item>
<item class_id_reference="28" object_id="_969">
<id>106</id>
<stage>4</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_970">
<id>82</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_971">
<id>102</id>
<stage>3</stage>
<latency>7</latency>
</item>
<item class_id_reference="28" object_id="_972">
<id>106</id>
<stage>3</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_973">
<id>83</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_974">
<id>102</id>
<stage>2</stage>
<latency>7</latency>
</item>
<item class_id_reference="28" object_id="_975">
<id>106</id>
<stage>2</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_976">
<id>84</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_977">
<id>102</id>
<stage>1</stage>
<latency>7</latency>
</item>
<item class_id_reference="28" object_id="_978">
<id>106</id>
<stage>1</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_979">
<id>85</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_980">
<id>103</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_981">
<id>107</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_982">
<id>86</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_983">
<id>108</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_984">
<id>109</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_985">
<id>87</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_986">
<id>110</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_987">
<id>88</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_988">
<id>111</id>
<stage>5</stage>
<latency>5</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_989">
<id>89</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_990">
<id>111</id>
<stage>4</stage>
<latency>5</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_991">
<id>90</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_992">
<id>111</id>
<stage>3</stage>
<latency>5</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_993">
<id>91</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_994">
<id>111</id>
<stage>2</stage>
<latency>5</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_995">
<id>92</id>
<operations>
<count>10</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_996">
<id>111</id>
<stage>1</stage>
<latency>5</latency>
</item>
<item class_id_reference="28" object_id="_997">
<id>112</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_998">
<id>113</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_999">
<id>114</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1000">
<id>115</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1001">
<id>116</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1002">
<id>117</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1003">
<id>120</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1004">
<id>121</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1005">
<id>130</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_1006">
<id>93</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_1007">
<id>118</id>
<stage>7</stage>
<latency>7</latency>
</item>
<item class_id_reference="28" object_id="_1008">
<id>122</id>
<stage>7</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_1009">
<id>94</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_1010">
<id>118</id>
<stage>6</stage>
<latency>7</latency>
</item>
<item class_id_reference="28" object_id="_1011">
<id>122</id>
<stage>6</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_1012">
<id>95</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_1013">
<id>118</id>
<stage>5</stage>
<latency>7</latency>
</item>
<item class_id_reference="28" object_id="_1014">
<id>122</id>
<stage>5</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_1015">
<id>96</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_1016">
<id>118</id>
<stage>4</stage>
<latency>7</latency>
</item>
<item class_id_reference="28" object_id="_1017">
<id>122</id>
<stage>4</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_1018">
<id>97</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_1019">
<id>118</id>
<stage>3</stage>
<latency>7</latency>
</item>
<item class_id_reference="28" object_id="_1020">
<id>122</id>
<stage>3</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_1021">
<id>98</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_1022">
<id>118</id>
<stage>2</stage>
<latency>7</latency>
</item>
<item class_id_reference="28" object_id="_1023">
<id>122</id>
<stage>2</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_1024">
<id>99</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_1025">
<id>118</id>
<stage>1</stage>
<latency>7</latency>
</item>
<item class_id_reference="28" object_id="_1026">
<id>122</id>
<stage>1</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_1027">
<id>100</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_1028">
<id>119</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1029">
<id>123</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_1030">
<id>101</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_1031">
<id>124</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1032">
<id>125</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_1033">
<id>102</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_1034">
<id>126</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_1035">
<id>103</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_1036">
<id>127</id>
<stage>5</stage>
<latency>5</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_1037">
<id>104</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_1038">
<id>127</id>
<stage>4</stage>
<latency>5</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_1039">
<id>105</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_1040">
<id>127</id>
<stage>3</stage>
<latency>5</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_1041">
<id>106</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_1042">
<id>127</id>
<stage>2</stage>
<latency>5</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_1043">
<id>107</id>
<operations>
<count>23</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_1044">
<id>16</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1045">
<id>127</id>
<stage>1</stage>
<latency>5</latency>
</item>
<item class_id_reference="28" object_id="_1046">
<id>128</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1047">
<id>129</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1048">
<id>131</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1049">
<id>132</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1050">
<id>134</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1051">
<id>135</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1052">
<id>136</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1053">
<id>137</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1054">
<id>138</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1055">
<id>139</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1056">
<id>142</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1057">
<id>143</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1058">
<id>150</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1059">
<id>151</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1060">
<id>152</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1061">
<id>153</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1062">
<id>154</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1063">
<id>155</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1064">
<id>158</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1065">
<id>159</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1066">
<id>168</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_1067">
<id>108</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_1068">
<id>140</id>
<stage>7</stage>
<latency>7</latency>
</item>
<item class_id_reference="28" object_id="_1069">
<id>144</id>
<stage>7</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_1070">
<id>109</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_1071">
<id>140</id>
<stage>6</stage>
<latency>7</latency>
</item>
<item class_id_reference="28" object_id="_1072">
<id>144</id>
<stage>6</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_1073">
<id>110</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_1074">
<id>140</id>
<stage>5</stage>
<latency>7</latency>
</item>
<item class_id_reference="28" object_id="_1075">
<id>144</id>
<stage>5</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_1076">
<id>111</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_1077">
<id>140</id>
<stage>4</stage>
<latency>7</latency>
</item>
<item class_id_reference="28" object_id="_1078">
<id>144</id>
<stage>4</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_1079">
<id>112</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_1080">
<id>140</id>
<stage>3</stage>
<latency>7</latency>
</item>
<item class_id_reference="28" object_id="_1081">
<id>144</id>
<stage>3</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_1082">
<id>113</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_1083">
<id>140</id>
<stage>2</stage>
<latency>7</latency>
</item>
<item class_id_reference="28" object_id="_1084">
<id>144</id>
<stage>2</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_1085">
<id>114</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_1086">
<id>140</id>
<stage>1</stage>
<latency>7</latency>
</item>
<item class_id_reference="28" object_id="_1087">
<id>144</id>
<stage>1</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_1088">
<id>115</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_1089">
<id>141</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1090">
<id>145</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_1091">
<id>116</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_1092">
<id>146</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1093">
<id>147</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_1094">
<id>117</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_1095">
<id>148</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_1096">
<id>118</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_1097">
<id>149</id>
<stage>5</stage>
<latency>5</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_1098">
<id>119</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_1099">
<id>149</id>
<stage>4</stage>
<latency>5</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_1100">
<id>120</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_1101">
<id>149</id>
<stage>3</stage>
<latency>5</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_1102">
<id>121</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_1103">
<id>149</id>
<stage>2</stage>
<latency>5</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_1104">
<id>122</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_1105">
<id>149</id>
<stage>1</stage>
<latency>5</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_1106">
<id>123</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_1107">
<id>156</id>
<stage>7</stage>
<latency>7</latency>
</item>
<item class_id_reference="28" object_id="_1108">
<id>160</id>
<stage>7</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_1109">
<id>124</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_1110">
<id>156</id>
<stage>6</stage>
<latency>7</latency>
</item>
<item class_id_reference="28" object_id="_1111">
<id>160</id>
<stage>6</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_1112">
<id>125</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_1113">
<id>156</id>
<stage>5</stage>
<latency>7</latency>
</item>
<item class_id_reference="28" object_id="_1114">
<id>160</id>
<stage>5</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_1115">
<id>126</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_1116">
<id>156</id>
<stage>4</stage>
<latency>7</latency>
</item>
<item class_id_reference="28" object_id="_1117">
<id>160</id>
<stage>4</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_1118">
<id>127</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_1119">
<id>156</id>
<stage>3</stage>
<latency>7</latency>
</item>
<item class_id_reference="28" object_id="_1120">
<id>160</id>
<stage>3</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_1121">
<id>128</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_1122">
<id>156</id>
<stage>2</stage>
<latency>7</latency>
</item>
<item class_id_reference="28" object_id="_1123">
<id>160</id>
<stage>2</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_1124">
<id>129</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_1125">
<id>156</id>
<stage>1</stage>
<latency>7</latency>
</item>
<item class_id_reference="28" object_id="_1126">
<id>160</id>
<stage>1</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_1127">
<id>130</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_1128">
<id>157</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1129">
<id>161</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_1130">
<id>131</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_1131">
<id>162</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1132">
<id>163</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_1133">
<id>132</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_1134">
<id>164</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_1135">
<id>133</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_1136">
<id>165</id>
<stage>5</stage>
<latency>5</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_1137">
<id>134</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_1138">
<id>165</id>
<stage>4</stage>
<latency>5</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_1139">
<id>135</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_1140">
<id>165</id>
<stage>3</stage>
<latency>5</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_1141">
<id>136</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_1142">
<id>165</id>
<stage>2</stage>
<latency>5</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_1143">
<id>137</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_1144">
<id>165</id>
<stage>1</stage>
<latency>5</latency>
</item>
<item class_id_reference="28" object_id="_1145">
<id>166</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
</states>
<transitions class_id="29" tracking_level="0" version="0">
<count>137</count>
<item_version>0</item_version>
<item class_id="30" tracking_level="1" version="0" object_id="_1146">
<inState>1</inState>
<outState>2</outState>
<condition class_id="31" tracking_level="0" version="0">
<id>142</id>
<sop class_id="32" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="33" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1147">
<inState>2</inState>
<outState>3</outState>
<condition>
<id>143</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1148">
<inState>3</inState>
<outState>4</outState>
<condition>
<id>144</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1149">
<inState>4</inState>
<outState>5</outState>
<condition>
<id>145</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1150">
<inState>5</inState>
<outState>6</outState>
<condition>
<id>146</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1151">
<inState>6</inState>
<outState>7</outState>
<condition>
<id>147</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1152">
<inState>7</inState>
<outState>8</outState>
<condition>
<id>148</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1153">
<inState>8</inState>
<outState>9</outState>
<condition>
<id>149</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1154">
<inState>9</inState>
<outState>10</outState>
<condition>
<id>150</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1155">
<inState>10</inState>
<outState>11</outState>
<condition>
<id>151</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1156">
<inState>11</inState>
<outState>12</outState>
<condition>
<id>152</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1157">
<inState>12</inState>
<outState>13</outState>
<condition>
<id>153</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1158">
<inState>13</inState>
<outState>14</outState>
<condition>
<id>154</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1159">
<inState>14</inState>
<outState>15</outState>
<condition>
<id>155</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1160">
<inState>15</inState>
<outState>16</outState>
<condition>
<id>156</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1161">
<inState>16</inState>
<outState>17</outState>
<condition>
<id>157</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1162">
<inState>17</inState>
<outState>18</outState>
<condition>
<id>158</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1163">
<inState>18</inState>
<outState>19</outState>
<condition>
<id>159</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1164">
<inState>19</inState>
<outState>20</outState>
<condition>
<id>160</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1165">
<inState>20</inState>
<outState>21</outState>
<condition>
<id>161</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1166">
<inState>21</inState>
<outState>22</outState>
<condition>
<id>162</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1167">
<inState>22</inState>
<outState>23</outState>
<condition>
<id>163</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1168">
<inState>23</inState>
<outState>24</outState>
<condition>
<id>164</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1169">
<inState>24</inState>
<outState>25</outState>
<condition>
<id>165</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1170">
<inState>25</inState>
<outState>26</outState>
<condition>
<id>166</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1171">
<inState>26</inState>
<outState>27</outState>
<condition>
<id>167</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1172">
<inState>27</inState>
<outState>28</outState>
<condition>
<id>168</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1173">
<inState>28</inState>
<outState>29</outState>
<condition>
<id>169</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1174">
<inState>29</inState>
<outState>30</outState>
<condition>
<id>170</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1175">
<inState>30</inState>
<outState>31</outState>
<condition>
<id>171</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1176">
<inState>31</inState>
<outState>32</outState>
<condition>
<id>172</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1177">
<inState>32</inState>
<outState>33</outState>
<condition>
<id>173</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1178">
<inState>33</inState>
<outState>34</outState>
<condition>
<id>174</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1179">
<inState>34</inState>
<outState>35</outState>
<condition>
<id>175</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1180">
<inState>35</inState>
<outState>36</outState>
<condition>
<id>176</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1181">
<inState>36</inState>
<outState>37</outState>
<condition>
<id>177</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1182">
<inState>37</inState>
<outState>38</outState>
<condition>
<id>178</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1183">
<inState>38</inState>
<outState>39</outState>
<condition>
<id>179</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1184">
<inState>39</inState>
<outState>40</outState>
<condition>
<id>180</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1185">
<inState>40</inState>
<outState>41</outState>
<condition>
<id>181</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1186">
<inState>41</inState>
<outState>42</outState>
<condition>
<id>182</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1187">
<inState>42</inState>
<outState>43</outState>
<condition>
<id>183</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1188">
<inState>43</inState>
<outState>44</outState>
<condition>
<id>184</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1189">
<inState>44</inState>
<outState>45</outState>
<condition>
<id>185</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1190">
<inState>45</inState>
<outState>46</outState>
<condition>
<id>186</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1191">
<inState>46</inState>
<outState>47</outState>
<condition>
<id>187</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1192">
<inState>47</inState>
<outState>48</outState>
<condition>
<id>188</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1193">
<inState>48</inState>
<outState>49</outState>
<condition>
<id>189</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1194">
<inState>49</inState>
<outState>50</outState>
<condition>
<id>190</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1195">
<inState>50</inState>
<outState>51</outState>
<condition>
<id>191</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1196">
<inState>51</inState>
<outState>52</outState>
<condition>
<id>192</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1197">
<inState>52</inState>
<outState>53</outState>
<condition>
<id>193</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1198">
<inState>53</inState>
<outState>54</outState>
<condition>
<id>194</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1199">
<inState>54</inState>
<outState>55</outState>
<condition>
<id>195</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1200">
<inState>55</inState>
<outState>56</outState>
<condition>
<id>196</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1201">
<inState>56</inState>
<outState>57</outState>
<condition>
<id>197</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1202">
<inState>57</inState>
<outState>58</outState>
<condition>
<id>198</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1203">
<inState>58</inState>
<outState>59</outState>
<condition>
<id>199</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1204">
<inState>59</inState>
<outState>60</outState>
<condition>
<id>200</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1205">
<inState>60</inState>
<outState>61</outState>
<condition>
<id>201</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1206">
<inState>61</inState>
<outState>62</outState>
<condition>
<id>202</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1207">
<inState>62</inState>
<outState>63</outState>
<condition>
<id>203</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1208">
<inState>63</inState>
<outState>64</outState>
<condition>
<id>204</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1209">
<inState>64</inState>
<outState>65</outState>
<condition>
<id>205</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1210">
<inState>65</inState>
<outState>66</outState>
<condition>
<id>206</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1211">
<inState>66</inState>
<outState>67</outState>
<condition>
<id>207</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1212">
<inState>67</inState>
<outState>68</outState>
<condition>
<id>208</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1213">
<inState>68</inState>
<outState>69</outState>
<condition>
<id>209</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1214">
<inState>69</inState>
<outState>70</outState>
<condition>
<id>210</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1215">
<inState>70</inState>
<outState>71</outState>
<condition>
<id>211</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1216">
<inState>71</inState>
<outState>72</outState>
<condition>
<id>212</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1217">
<inState>72</inState>
<outState>73</outState>
<condition>
<id>213</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1218">
<inState>73</inState>
<outState>74</outState>
<condition>
<id>214</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1219">
<inState>74</inState>
<outState>75</outState>
<condition>
<id>215</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1220">
<inState>75</inState>
<outState>76</outState>
<condition>
<id>216</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1221">
<inState>76</inState>
<outState>77</outState>
<condition>
<id>217</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1222">
<inState>77</inState>
<outState>78</outState>
<condition>
<id>218</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1223">
<inState>78</inState>
<outState>79</outState>
<condition>
<id>219</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1224">
<inState>79</inState>
<outState>80</outState>
<condition>
<id>220</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1225">
<inState>80</inState>
<outState>81</outState>
<condition>
<id>221</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1226">
<inState>81</inState>
<outState>82</outState>
<condition>
<id>222</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1227">
<inState>82</inState>
<outState>83</outState>
<condition>
<id>223</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1228">
<inState>83</inState>
<outState>84</outState>
<condition>
<id>224</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1229">
<inState>84</inState>
<outState>85</outState>
<condition>
<id>225</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1230">
<inState>85</inState>
<outState>86</outState>
<condition>
<id>226</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1231">
<inState>86</inState>
<outState>87</outState>
<condition>
<id>227</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1232">
<inState>87</inState>
<outState>88</outState>
<condition>
<id>228</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1233">
<inState>88</inState>
<outState>89</outState>
<condition>
<id>229</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1234">
<inState>89</inState>
<outState>90</outState>
<condition>
<id>230</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1235">
<inState>90</inState>
<outState>91</outState>
<condition>
<id>231</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1236">
<inState>91</inState>
<outState>92</outState>
<condition>
<id>232</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1237">
<inState>92</inState>
<outState>93</outState>
<condition>
<id>233</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1238">
<inState>93</inState>
<outState>94</outState>
<condition>
<id>234</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1239">
<inState>94</inState>
<outState>95</outState>
<condition>
<id>235</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1240">
<inState>95</inState>
<outState>96</outState>
<condition>
<id>236</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1241">
<inState>96</inState>
<outState>97</outState>
<condition>
<id>237</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1242">
<inState>97</inState>
<outState>98</outState>
<condition>
<id>238</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1243">
<inState>98</inState>
<outState>99</outState>
<condition>
<id>239</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1244">
<inState>99</inState>
<outState>100</outState>
<condition>
<id>240</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1245">
<inState>100</inState>
<outState>101</outState>
<condition>
<id>241</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1246">
<inState>101</inState>
<outState>102</outState>
<condition>
<id>242</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1247">
<inState>102</inState>
<outState>103</outState>
<condition>
<id>243</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1248">
<inState>103</inState>
<outState>104</outState>
<condition>
<id>244</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1249">
<inState>104</inState>
<outState>105</outState>
<condition>
<id>245</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1250">
<inState>105</inState>
<outState>106</outState>
<condition>
<id>246</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1251">
<inState>106</inState>
<outState>107</outState>
<condition>
<id>247</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1252">
<inState>107</inState>
<outState>108</outState>
<condition>
<id>248</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>1</count>
<item_version>0</item_version>
<item class_id="34" tracking_level="0" version="0">
<first class_id="35" tracking_level="0" version="0">
<first>130</first>
<second>0</second>
</first>
<second>1</second>
</item>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1253">
<inState>108</inState>
<outState>109</outState>
<condition>
<id>250</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1254">
<inState>109</inState>
<outState>110</outState>
<condition>
<id>251</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1255">
<inState>110</inState>
<outState>111</outState>
<condition>
<id>252</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1256">
<inState>111</inState>
<outState>112</outState>
<condition>
<id>253</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1257">
<inState>112</inState>
<outState>113</outState>
<condition>
<id>254</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1258">
<inState>113</inState>
<outState>114</outState>
<condition>
<id>255</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1259">
<inState>114</inState>
<outState>115</outState>
<condition>
<id>256</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1260">
<inState>115</inState>
<outState>116</outState>
<condition>
<id>257</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1261">
<inState>116</inState>
<outState>117</outState>
<condition>
<id>258</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1262">
<inState>117</inState>
<outState>118</outState>
<condition>
<id>259</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1263">
<inState>118</inState>
<outState>119</outState>
<condition>
<id>260</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1264">
<inState>119</inState>
<outState>120</outState>
<condition>
<id>261</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1265">
<inState>120</inState>
<outState>121</outState>
<condition>
<id>262</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1266">
<inState>121</inState>
<outState>122</outState>
<condition>
<id>263</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1267">
<inState>122</inState>
<outState>123</outState>
<condition>
<id>264</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1268">
<inState>123</inState>
<outState>124</outState>
<condition>
<id>265</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1269">
<inState>124</inState>
<outState>125</outState>
<condition>
<id>266</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1270">
<inState>125</inState>
<outState>126</outState>
<condition>
<id>267</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1271">
<inState>126</inState>
<outState>127</outState>
<condition>
<id>268</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1272">
<inState>127</inState>
<outState>128</outState>
<condition>
<id>269</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1273">
<inState>128</inState>
<outState>129</outState>
<condition>
<id>270</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1274">
<inState>129</inState>
<outState>130</outState>
<condition>
<id>271</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1275">
<inState>130</inState>
<outState>131</outState>
<condition>
<id>272</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1276">
<inState>131</inState>
<outState>132</outState>
<condition>
<id>273</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1277">
<inState>132</inState>
<outState>133</outState>
<condition>
<id>274</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1278">
<inState>133</inState>
<outState>134</outState>
<condition>
<id>275</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1279">
<inState>134</inState>
<outState>135</outState>
<condition>
<id>276</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1280">
<inState>135</inState>
<outState>136</outState>
<condition>
<id>277</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1281">
<inState>136</inState>
<outState>137</outState>
<condition>
<id>278</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1282">
<inState>137</inState>
<outState>2</outState>
<condition>
<id>280</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="37" tracking_level="0" version="0">
<count>156</count>
<item_version>0</item_version>
<item class_id="38" tracking_level="0" version="0">
<first>8</first>
<second class_id="39" tracking_level="0" version="0">
<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>14</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>15</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>17</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>18</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>19</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>20</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>21</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>22</first>
<second>
<first>2</first>
<second>6</second>
</second>
</item>
<item>
<first>23</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>24</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>25</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>26</first>
<second>
<first>2</first>
<second>6</second>
</second>
</item>
<item>
<first>27</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>28</first>
<second>
<first>10</first>
<second>0</second>
</second>
</item>
<item>
<first>29</first>
<second>
<first>10</first>
<second>0</second>
</second>
</item>
<item>
<first>30</first>
<second>
<first>11</first>
<second>0</second>
</second>
</item>
<item>
<first>31</first>
<second>
<first>12</first>
<second>4</second>
</second>
</item>
<item>
<first>32</first>
<second>
<first>16</first>
<second>0</second>
</second>
</item>
<item>
<first>33</first>
<second>
<first>16</first>
<second>0</second>
</second>
</item>
<item>
<first>34</first>
<second>
<first>16</first>
<second>0</second>
</second>
</item>
<item>
<first>35</first>
<second>
<first>16</first>
<second>0</second>
</second>
</item>
<item>
<first>36</first>
<second>
<first>16</first>
<second>0</second>
</second>
</item>
<item>
<first>37</first>
<second>
<first>16</first>
<second>0</second>
</second>
</item>
<item>
<first>38</first>
<second>
<first>17</first>
<second>6</second>
</second>
</item>
<item>
<first>39</first>
<second>
<first>24</first>
<second>0</second>
</second>
</item>
<item>
<first>40</first>
<second>
<first>16</first>
<second>0</second>
</second>
</item>
<item>
<first>41</first>
<second>
<first>16</first>
<second>0</second>
</second>
</item>
<item>
<first>42</first>
<second>
<first>17</first>
<second>6</second>
</second>
</item>
<item>
<first>43</first>
<second>
<first>24</first>
<second>0</second>
</second>
</item>
<item>
<first>44</first>
<second>
<first>25</first>
<second>0</second>
</second>
</item>
<item>
<first>45</first>
<second>
<first>25</first>
<second>0</second>
</second>
</item>
<item>
<first>46</first>
<second>
<first>26</first>
<second>0</second>
</second>
</item>
<item>
<first>47</first>
<second>
<first>27</first>
<second>4</second>
</second>
</item>
<item>
<first>48</first>
<second>
<first>31</first>
<second>0</second>
</second>
</item>
<item>
<first>49</first>
<second>
<first>31</first>
<second>0</second>
</second>
</item>
<item>
<first>50</first>
<second>
<first>31</first>
<second>0</second>
</second>
</item>
<item>
<first>51</first>
<second>
<first>31</first>
<second>0</second>
</second>
</item>
<item>
<first>52</first>
<second>
<first>31</first>
<second>0</second>
</second>
</item>
<item>
<first>53</first>
<second>
<first>31</first>
<second>0</second>
</second>
</item>
<item>
<first>54</first>
<second>
<first>32</first>
<second>6</second>
</second>
</item>
<item>
<first>55</first>
<second>
<first>39</first>
<second>0</second>
</second>
</item>
<item>
<first>56</first>
<second>
<first>31</first>
<second>0</second>
</second>
</item>
<item>
<first>57</first>
<second>
<first>31</first>
<second>0</second>
</second>
</item>
<item>
<first>58</first>
<second>
<first>32</first>
<second>6</second>
</second>
</item>
<item>
<first>59</first>
<second>
<first>39</first>
<second>0</second>
</second>
</item>
<item>
<first>60</first>
<second>
<first>40</first>
<second>0</second>
</second>
</item>
<item>
<first>61</first>
<second>
<first>40</first>
<second>0</second>
</second>
</item>
<item>
<first>62</first>
<second>
<first>41</first>
<second>0</second>
</second>
</item>
<item>
<first>63</first>
<second>
<first>42</first>
<second>4</second>
</second>
</item>
<item>
<first>64</first>
<second>
<first>46</first>
<second>0</second>
</second>
</item>
<item>
<first>65</first>
<second>
<first>46</first>
<second>0</second>
</second>
</item>
<item>
<first>66</first>
<second>
<first>46</first>
<second>0</second>
</second>
</item>
<item>
<first>67</first>
<second>
<first>46</first>
<second>0</second>
</second>
</item>
<item>
<first>68</first>
<second>
<first>46</first>
<second>0</second>
</second>
</item>
<item>
<first>69</first>
<second>
<first>46</first>
<second>0</second>
</second>
</item>
<item>
<first>70</first>
<second>
<first>47</first>
<second>6</second>
</second>
</item>
<item>
<first>71</first>
<second>
<first>54</first>
<second>0</second>
</second>
</item>
<item>
<first>72</first>
<second>
<first>46</first>
<second>0</second>
</second>
</item>
<item>
<first>73</first>
<second>
<first>46</first>
<second>0</second>
</second>
</item>
<item>
<first>74</first>
<second>
<first>47</first>
<second>6</second>
</second>
</item>
<item>
<first>75</first>
<second>
<first>54</first>
<second>0</second>
</second>
</item>
<item>
<first>76</first>
<second>
<first>55</first>
<second>0</second>
</second>
</item>
<item>
<first>77</first>
<second>
<first>55</first>
<second>0</second>
</second>
</item>
<item>
<first>78</first>
<second>
<first>56</first>
<second>0</second>
</second>
</item>
<item>
<first>79</first>
<second>
<first>57</first>
<second>4</second>
</second>
</item>
<item>
<first>80</first>
<second>
<first>61</first>
<second>0</second>
</second>
</item>
<item>
<first>81</first>
<second>
<first>61</first>
<second>0</second>
</second>
</item>
<item>
<first>82</first>
<second>
<first>61</first>
<second>0</second>
</second>
</item>
<item>
<first>83</first>
<second>
<first>61</first>
<second>0</second>
</second>
</item>
<item>
<first>84</first>
<second>
<first>61</first>
<second>0</second>
</second>
</item>
<item>
<first>85</first>
<second>
<first>61</first>
<second>0</second>
</second>
</item>
<item>
<first>86</first>
<second>
<first>62</first>
<second>6</second>
</second>
</item>
<item>
<first>87</first>
<second>
<first>69</first>
<second>0</second>
</second>
</item>
<item>
<first>88</first>
<second>
<first>61</first>
<second>0</second>
</second>
</item>
<item>
<first>89</first>
<second>
<first>61</first>
<second>0</second>
</second>
</item>
<item>
<first>90</first>
<second>
<first>62</first>
<second>6</second>
</second>
</item>
<item>
<first>91</first>
<second>
<first>69</first>
<second>0</second>
</second>
</item>
<item>
<first>92</first>
<second>
<first>70</first>
<second>0</second>
</second>
</item>
<item>
<first>93</first>
<second>
<first>70</first>
<second>0</second>
</second>
</item>
<item>
<first>94</first>
<second>
<first>71</first>
<second>0</second>
</second>
</item>
<item>
<first>95</first>
<second>
<first>72</first>
<second>4</second>
</second>
</item>
<item>
<first>96</first>
<second>
<first>76</first>
<second>0</second>
</second>
</item>
<item>
<first>97</first>
<second>
<first>76</first>
<second>0</second>
</second>
</item>
<item>
<first>98</first>
<second>
<first>76</first>
<second>0</second>
</second>
</item>
<item>
<first>99</first>
<second>
<first>76</first>
<second>0</second>
</second>
</item>
<item>
<first>100</first>
<second>
<first>76</first>
<second>0</second>
</second>
</item>
<item>
<first>101</first>
<second>
<first>76</first>
<second>0</second>
</second>
</item>
<item>
<first>102</first>
<second>
<first>77</first>
<second>6</second>
</second>
</item>
<item>
<first>103</first>
<second>
<first>84</first>
<second>0</second>
</second>
</item>
<item>
<first>104</first>
<second>
<first>76</first>
<second>0</second>
</second>
</item>
<item>
<first>105</first>
<second>
<first>76</first>
<second>0</second>
</second>
</item>
<item>
<first>106</first>
<second>
<first>77</first>
<second>6</second>
</second>
</item>
<item>
<first>107</first>
<second>
<first>84</first>
<second>0</second>
</second>
</item>
<item>
<first>108</first>
<second>
<first>85</first>
<second>0</second>
</second>
</item>
<item>
<first>109</first>
<second>
<first>85</first>
<second>0</second>
</second>
</item>
<item>
<first>110</first>
<second>
<first>86</first>
<second>0</second>
</second>
</item>
<item>
<first>111</first>
<second>
<first>87</first>
<second>4</second>
</second>
</item>
<item>
<first>112</first>
<second>
<first>91</first>
<second>0</second>
</second>
</item>
<item>
<first>113</first>
<second>
<first>91</first>
<second>0</second>
</second>
</item>
<item>
<first>114</first>
<second>
<first>91</first>
<second>0</second>
</second>
</item>
<item>
<first>115</first>
<second>
<first>91</first>
<second>0</second>
</second>
</item>
<item>
<first>116</first>
<second>
<first>91</first>
<second>0</second>
</second>
</item>
<item>
<first>117</first>
<second>
<first>91</first>
<second>0</second>
</second>
</item>
<item>
<first>118</first>
<second>
<first>92</first>
<second>6</second>
</second>
</item>
<item>
<first>119</first>
<second>
<first>99</first>
<second>0</second>
</second>
</item>
<item>
<first>120</first>
<second>
<first>91</first>
<second>0</second>
</second>
</item>
<item>
<first>121</first>
<second>
<first>91</first>
<second>0</second>
</second>
</item>
<item>
<first>122</first>
<second>
<first>92</first>
<second>6</second>
</second>
</item>
<item>
<first>123</first>
<second>
<first>99</first>
<second>0</second>
</second>
</item>
<item>
<first>124</first>
<second>
<first>100</first>
<second>0</second>
</second>
</item>
<item>
<first>125</first>
<second>
<first>100</first>
<second>0</second>
</second>
</item>
<item>
<first>126</first>
<second>
<first>101</first>
<second>0</second>
</second>
</item>
<item>
<first>127</first>
<second>
<first>102</first>
<second>4</second>
</second>
</item>
<item>
<first>128</first>
<second>
<first>106</first>
<second>0</second>
</second>
</item>
<item>
<first>129</first>
<second>
<first>106</first>
<second>0</second>
</second>
</item>
<item>
<first>130</first>
<second>
<first>91</first>
<second>0</second>
</second>
</item>
<item>
<first>132</first>
<second>
<first>106</first>
<second>0</second>
</second>
</item>
<item>
<first>134</first>
<second>
<first>106</first>
<second>0</second>
</second>
</item>
<item>
<first>135</first>
<second>
<first>106</first>
<second>0</second>
</second>
</item>
<item>
<first>136</first>
<second>
<first>106</first>
<second>0</second>
</second>
</item>
<item>
<first>137</first>
<second>
<first>106</first>
<second>0</second>
</second>
</item>
<item>
<first>138</first>
<second>
<first>106</first>
<second>0</second>
</second>
</item>
<item>
<first>139</first>
<second>
<first>106</first>
<second>0</second>
</second>
</item>
<item>
<first>140</first>
<second>
<first>107</first>
<second>6</second>
</second>
</item>
<item>
<first>141</first>
<second>
<first>114</first>
<second>0</second>
</second>
</item>
<item>
<first>142</first>
<second>
<first>106</first>
<second>0</second>
</second>
</item>
<item>
<first>143</first>
<second>
<first>106</first>
<second>0</second>
</second>
</item>
<item>
<first>144</first>
<second>
<first>107</first>
<second>6</second>
</second>
</item>
<item>
<first>145</first>
<second>
<first>114</first>
<second>0</second>
</second>
</item>
<item>
<first>146</first>
<second>
<first>115</first>
<second>0</second>
</second>
</item>
<item>
<first>147</first>
<second>
<first>115</first>
<second>0</second>
</second>
</item>
<item>
<first>148</first>
<second>
<first>116</first>
<second>0</second>
</second>
</item>
<item>
<first>149</first>
<second>
<first>117</first>
<second>4</second>
</second>
</item>
<item>
<first>150</first>
<second>
<first>106</first>
<second>0</second>
</second>
</item>
<item>
<first>151</first>
<second>
<first>106</first>
<second>0</second>
</second>
</item>
<item>
<first>152</first>
<second>
<first>106</first>
<second>0</second>
</second>
</item>
<item>
<first>153</first>
<second>
<first>106</first>
<second>0</second>
</second>
</item>
<item>
<first>154</first>
<second>
<first>106</first>
<second>0</second>
</second>
</item>
<item>
<first>155</first>
<second>
<first>106</first>
<second>0</second>
</second>
</item>
<item>
<first>156</first>
<second>
<first>122</first>
<second>6</second>
</second>
</item>
<item>
<first>157</first>
<second>
<first>129</first>
<second>0</second>
</second>
</item>
<item>
<first>158</first>
<second>
<first>106</first>
<second>0</second>
</second>
</item>
<item>
<first>159</first>
<second>
<first>106</first>
<second>0</second>
</second>
</item>
<item>
<first>160</first>
<second>
<first>122</first>
<second>6</second>
</second>
</item>
<item>
<first>161</first>
<second>
<first>129</first>
<second>0</second>
</second>
</item>
<item>
<first>162</first>
<second>
<first>130</first>
<second>0</second>
</second>
</item>
<item>
<first>163</first>
<second>
<first>130</first>
<second>0</second>
</second>
</item>
<item>
<first>164</first>
<second>
<first>131</first>
<second>0</second>
</second>
</item>
<item>
<first>165</first>
<second>
<first>132</first>
<second>4</second>
</second>
</item>
<item>
<first>166</first>
<second>
<first>136</first>
<second>0</second>
</second>
</item>
<item>
<first>168</first>
<second>
<first>106</first>
<second>0</second>
</second>
</item>
</node_label_latency>
<bblk_ent_exit class_id="40" tracking_level="0" version="0">
<count>4</count>
<item_version>0</item_version>
<item class_id="41" tracking_level="0" version="0">
<first>13</first>
<second class_id="42" tracking_level="0" version="0">
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>133</first>
<second>
<first>1</first>
<second>106</second>
</second>
</item>
<item>
<first>167</first>
<second>
<first>106</first>
<second>136</second>
</second>
</item>
<item>
<first>169</first>
<second>
<first>106</first>
<second>106</second>
</second>
</item>
</bblk_ent_exit>
<regions class_id="43" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</regions>
<dp_fu_nodes class_id="44" tracking_level="0" version="0">
<count>134</count>
<item_version>0</item_version>
<item class_id="45" tracking_level="0" version="0">
<first>74</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>8</item>
</second>
</item>
<item>
<first>80</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>9</item>
</second>
</item>
<item>
<first>86</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>10</item>
</second>
</item>
<item>
<first>92</first>
<second>
<count>7</count>
<item_version>0</item_version>
<item>22</item>
<item>22</item>
<item>22</item>
<item>22</item>
<item>22</item>
<item>22</item>
<item>22</item>
</second>
</item>
<item>
<first>99</first>
<second>
<count>13</count>
<item_version>0</item_version>
<item>26</item>
<item>26</item>
<item>26</item>
<item>26</item>
<item>26</item>
<item>26</item>
<item>26</item>
<item>29</item>
<item>31</item>
<item>31</item>
<item>31</item>
<item>31</item>
<item>31</item>
</second>
</item>
<item>
<first>106</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>23</item>
</second>
</item>
<item>
<first>111</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>27</item>
</second>
</item>
<item>
<first>117</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>30</item>
</second>
</item>
<item>
<first>126</first>
<second>
<count>7</count>
<item_version>0</item_version>
<item>38</item>
<item>38</item>
<item>38</item>
<item>38</item>
<item>38</item>
<item>38</item>
<item>38</item>
</second>
</item>
<item>
<first>133</first>
<second>
<count>13</count>
<item_version>0</item_version>
<item>42</item>
<item>42</item>
<item>42</item>
<item>42</item>
<item>42</item>
<item>42</item>
<item>42</item>
<item>45</item>
<item>47</item>
<item>47</item>
<item>47</item>
<item>47</item>
<item>47</item>
</second>
</item>
<item>
<first>140</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>39</item>
</second>
</item>
<item>
<first>145</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>43</item>
</second>
</item>
<item>
<first>151</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>46</item>
</second>
</item>
<item>
<first>160</first>
<second>
<count>7</count>
<item_version>0</item_version>
<item>54</item>
<item>54</item>
<item>54</item>
<item>54</item>
<item>54</item>
<item>54</item>
<item>54</item>
</second>
</item>
<item>
<first>167</first>
<second>
<count>13</count>
<item_version>0</item_version>
<item>58</item>
<item>58</item>
<item>58</item>
<item>58</item>
<item>58</item>
<item>58</item>
<item>58</item>
<item>61</item>
<item>63</item>
<item>63</item>
<item>63</item>
<item>63</item>
<item>63</item>
</second>
</item>
<item>
<first>174</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>55</item>
</second>
</item>
<item>
<first>179</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>59</item>
</second>
</item>
<item>
<first>185</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>62</item>
</second>
</item>
<item>
<first>194</first>
<second>
<count>7</count>
<item_version>0</item_version>
<item>70</item>
<item>70</item>
<item>70</item>
<item>70</item>
<item>70</item>
<item>70</item>
<item>70</item>
</second>
</item>
<item>
<first>201</first>
<second>
<count>13</count>
<item_version>0</item_version>
<item>74</item>
<item>74</item>
<item>74</item>
<item>74</item>
<item>74</item>
<item>74</item>
<item>74</item>
<item>77</item>
<item>79</item>
<item>79</item>
<item>79</item>
<item>79</item>
<item>79</item>
</second>
</item>
<item>
<first>208</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>71</item>
</second>
</item>
<item>
<first>213</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>75</item>
</second>
</item>
<item>
<first>219</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>78</item>
</second>
</item>
<item>
<first>228</first>
<second>
<count>7</count>
<item_version>0</item_version>
<item>86</item>
<item>86</item>
<item>86</item>
<item>86</item>
<item>86</item>
<item>86</item>
<item>86</item>
</second>
</item>
<item>
<first>235</first>
<second>
<count>13</count>
<item_version>0</item_version>
<item>90</item>
<item>90</item>
<item>90</item>
<item>90</item>
<item>90</item>
<item>90</item>
<item>90</item>
<item>93</item>
<item>95</item>
<item>95</item>
<item>95</item>
<item>95</item>
<item>95</item>
</second>
</item>
<item>
<first>242</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>87</item>
</second>
</item>
<item>
<first>247</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>91</item>
</second>
</item>
<item>
<first>253</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>94</item>
</second>
</item>
<item>
<first>262</first>
<second>
<count>7</count>
<item_version>0</item_version>
<item>102</item>
<item>102</item>
<item>102</item>
<item>102</item>
<item>102</item>
<item>102</item>
<item>102</item>
</second>
</item>
<item>
<first>269</first>
<second>
<count>13</count>
<item_version>0</item_version>
<item>106</item>
<item>106</item>
<item>106</item>
<item>106</item>
<item>106</item>
<item>106</item>
<item>106</item>
<item>109</item>
<item>111</item>
<item>111</item>
<item>111</item>
<item>111</item>
<item>111</item>
</second>
</item>
<item>
<first>276</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>103</item>
</second>
</item>
<item>
<first>281</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>107</item>
</second>
</item>
<item>
<first>287</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>110</item>
</second>
</item>
<item>
<first>296</first>
<second>
<count>7</count>
<item_version>0</item_version>
<item>118</item>
<item>118</item>
<item>118</item>
<item>118</item>
<item>118</item>
<item>118</item>
<item>118</item>
</second>
</item>
<item>
<first>303</first>
<second>
<count>13</count>
<item_version>0</item_version>
<item>122</item>
<item>122</item>
<item>122</item>
<item>122</item>
<item>122</item>
<item>122</item>
<item>122</item>
<item>125</item>
<item>127</item>
<item>127</item>
<item>127</item>
<item>127</item>
<item>127</item>
</second>
</item>
<item>
<first>310</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>119</item>
</second>
</item>
<item>
<first>315</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>123</item>
</second>
</item>
<item>
<first>321</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>126</item>
</second>
</item>
<item>
<first>330</first>
<second>
<count>7</count>
<item_version>0</item_version>
<item>140</item>
<item>140</item>
<item>140</item>
<item>140</item>
<item>140</item>
<item>140</item>
<item>140</item>
</second>
</item>
<item>
<first>337</first>
<second>
<count>13</count>
<item_version>0</item_version>
<item>144</item>
<item>144</item>
<item>144</item>
<item>144</item>
<item>144</item>
<item>144</item>
<item>144</item>
<item>147</item>
<item>149</item>
<item>149</item>
<item>149</item>
<item>149</item>
<item>149</item>
</second>
</item>
<item>
<first>344</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>141</item>
</second>
</item>
<item>
<first>349</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>145</item>
</second>
</item>
<item>
<first>355</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>148</item>
</second>
</item>
<item>
<first>364</first>
<second>
<count>7</count>
<item_version>0</item_version>
<item>156</item>
<item>156</item>
<item>156</item>
<item>156</item>
<item>156</item>
<item>156</item>
<item>156</item>
</second>
</item>
<item>
<first>371</first>
<second>
<count>13</count>
<item_version>0</item_version>
<item>160</item>
<item>160</item>
<item>160</item>
<item>160</item>
<item>160</item>
<item>160</item>
<item>160</item>
<item>163</item>
<item>165</item>
<item>165</item>
<item>165</item>
<item>165</item>
<item>165</item>
</second>
</item>
<item>
<first>378</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>157</item>
</second>
</item>
<item>
<first>383</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>161</item>
</second>
</item>
<item>
<first>389</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>164</item>
</second>
</item>
<item>
<first>402</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>14</item>
</second>
</item>
<item>
<first>410</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>11</item>
</second>
</item>
<item>
<first>414</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>15</item>
</second>
</item>
<item>
<first>420</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>17</item>
</second>
</item>
<item>
<first>424</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>18</item>
</second>
</item>
<item>
<first>429</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>19</item>
</second>
</item>
<item>
<first>433</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>20</item>
</second>
</item>
<item>
<first>438</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>21</item>
</second>
</item>
<item>
<first>444</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>24</item>
</second>
</item>
<item>
<first>449</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>25</item>
</second>
</item>
<item>
<first>455</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>28</item>
</second>
</item>
<item>
<first>459</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>32</item>
</second>
</item>
<item>
<first>465</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>33</item>
</second>
</item>
<item>
<first>469</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>34</item>
</second>
</item>
<item>
<first>474</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>35</item>
</second>
</item>
<item>
<first>478</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>36</item>
</second>
</item>
<item>
<first>483</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>37</item>
</second>
</item>
<item>
<first>489</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>40</item>
</second>
</item>
<item>
<first>494</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>41</item>
</second>
</item>
<item>
<first>500</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>44</item>
</second>
</item>
<item>
<first>504</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>48</item>
</second>
</item>
<item>
<first>510</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>49</item>
</second>
</item>
<item>
<first>514</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>50</item>
</second>
</item>
<item>
<first>519</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>51</item>
</second>
</item>
<item>
<first>523</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>52</item>
</second>
</item>
<item>
<first>528</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>53</item>
</second>
</item>
<item>
<first>534</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>56</item>
</second>
</item>
<item>
<first>539</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>57</item>
</second>
</item>
<item>
<first>545</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>60</item>
</second>
</item>
<item>
<first>549</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>64</item>
</second>
</item>
<item>
<first>555</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>65</item>
</second>
</item>
<item>
<first>559</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>66</item>
</second>
</item>
<item>
<first>564</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>67</item>
</second>
</item>
<item>
<first>568</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>68</item>
</second>
</item>
<item>
<first>573</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>69</item>
</second>
</item>
<item>
<first>579</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>72</item>
</second>
</item>
<item>
<first>584</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>73</item>
</second>
</item>
<item>
<first>590</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>76</item>
</second>
</item>
<item>
<first>594</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>80</item>
</second>
</item>
<item>
<first>600</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>81</item>
</second>
</item>
<item>
<first>604</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>82</item>
</second>
</item>
<item>
<first>609</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>83</item>
</second>
</item>
<item>
<first>613</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>84</item>
</second>
</item>
<item>
<first>618</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>85</item>
</second>
</item>
<item>
<first>624</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>88</item>
</second>
</item>
<item>
<first>629</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>89</item>
</second>
</item>
<item>
<first>635</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>92</item>
</second>
</item>
<item>
<first>639</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>96</item>
</second>
</item>
<item>
<first>645</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>97</item>
</second>
</item>
<item>
<first>649</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>98</item>
</second>
</item>
<item>
<first>654</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>99</item>
</second>
</item>
<item>
<first>658</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>100</item>
</second>
</item>
<item>
<first>663</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>101</item>
</second>
</item>
<item>
<first>669</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>104</item>
</second>
</item>
<item>
<first>674</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>105</item>
</second>
</item>
<item>
<first>680</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>108</item>
</second>
</item>
<item>
<first>684</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>112</item>
</second>
</item>
<item>
<first>690</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>113</item>
</second>
</item>
<item>
<first>694</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>114</item>
</second>
</item>
<item>
<first>699</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>115</item>
</second>
</item>
<item>
<first>703</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>116</item>
</second>
</item>
<item>
<first>708</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>117</item>
</second>
</item>
<item>
<first>714</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>120</item>
</second>
</item>
<item>
<first>719</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>121</item>
</second>
</item>
<item>
<first>725</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>130</item>
</second>
</item>
<item>
<first>731</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>124</item>
</second>
</item>
<item>
<first>735</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>128</item>
</second>
</item>
<item>
<first>741</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>129</item>
</second>
</item>
<item>
<first>745</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>134</item>
</second>
</item>
<item>
<first>749</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>135</item>
</second>
</item>
<item>
<first>753</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>136</item>
</second>
</item>
<item>
<first>758</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>137</item>
</second>
</item>
<item>
<first>762</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>138</item>
</second>
</item>
<item>
<first>767</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>139</item>
</second>
</item>
<item>
<first>773</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>142</item>
</second>
</item>
<item>
<first>778</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>143</item>
</second>
</item>
<item>
<first>784</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>150</item>
</second>
</item>
<item>
<first>790</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>151</item>
</second>
</item>
<item>
<first>794</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>152</item>
</second>
</item>
<item>
<first>799</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>153</item>
</second>
</item>
<item>
<first>803</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>154</item>
</second>
</item>
<item>
<first>808</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>155</item>
</second>
</item>
<item>
<first>814</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>158</item>
</second>
</item>
<item>
<first>819</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>159</item>
</second>
</item>
<item>
<first>825</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>146</item>
</second>
</item>
<item>
<first>829</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>162</item>
</second>
</item>
</dp_fu_nodes>
<dp_fu_nodes_expression class_id="47" tracking_level="0" version="0">
<count>86</count>
<item_version>0</item_version>
<item class_id="48" tracking_level="0" version="0">
<first>buf_addr_31_fu_494</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>41</item>
</second>
</item>
<item>
<first>buf_addr_32_fu_539</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>57</item>
</second>
</item>
<item>
<first>buf_addr_33_fu_584</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>73</item>
</second>
</item>
<item>
<first>buf_addr_34_fu_629</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>89</item>
</second>
</item>
<item>
<first>buf_addr_35_fu_674</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>105</item>
</second>
</item>
<item>
<first>buf_addr_36_fu_719</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>121</item>
</second>
</item>
<item>
<first>buf_addr_37_fu_778</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>143</item>
</second>
</item>
<item>
<first>buf_addr_38_fu_819</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>159</item>
</second>
</item>
<item>
<first>buf_addr_fu_449</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>25</item>
</second>
</item>
<item>
<first>i_11_1_fu_459</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>32</item>
</second>
</item>
<item>
<first>i_11_2_fu_504</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>48</item>
</second>
</item>
<item>
<first>i_11_3_fu_549</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>64</item>
</second>
</item>
<item>
<first>i_11_4_fu_594</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>80</item>
</second>
</item>
<item>
<first>i_11_5_fu_639</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>96</item>
</second>
</item>
<item>
<first>i_11_6_fu_684</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>112</item>
</second>
</item>
<item>
<first>i_11_7_cast_fu_741</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>129</item>
</second>
</item>
<item>
<first>i_11_7_fu_735</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>128</item>
</second>
</item>
<item>
<first>i_11_8_fu_784</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>150</item>
</second>
</item>
<item>
<first>i_phi_fu_402</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>14</item>
</second>
</item>
<item>
<first>i_s_fu_414</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>15</item>
</second>
</item>
<item>
<first>key_addr_10_fu_573</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>69</item>
</second>
</item>
<item>
<first>key_addr_11_fu_618</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>85</item>
</second>
</item>
<item>
<first>key_addr_12_fu_663</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>101</item>
</second>
</item>
<item>
<first>key_addr_13_fu_708</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>117</item>
</second>
</item>
<item>
<first>key_addr_14_fu_767</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>139</item>
</second>
</item>
<item>
<first>key_addr_15_fu_808</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>155</item>
</second>
</item>
<item>
<first>key_addr_8_fu_483</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>37</item>
</second>
</item>
<item>
<first>key_addr_9_fu_528</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>53</item>
</second>
</item>
<item>
<first>key_addr_fu_438</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>21</item>
</second>
</item>
<item>
<first>sum11_fu_433</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>20</item>
</second>
</item>
<item>
<first>sum12_fu_478</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>36</item>
</second>
</item>
<item>
<first>sum13_fu_523</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>52</item>
</second>
</item>
<item>
<first>sum14_fu_568</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>68</item>
</second>
</item>
<item>
<first>sum15_fu_613</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>84</item>
</second>
</item>
<item>
<first>sum16_fu_658</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>100</item>
</second>
</item>
<item>
<first>sum17_fu_703</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>116</item>
</second>
</item>
<item>
<first>sum18_fu_762</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>138</item>
</second>
</item>
<item>
<first>sum19_fu_803</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>154</item>
</second>
</item>
<item>
<first>sum1_fu_444</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>24</item>
</second>
</item>
<item>
<first>sum2_fu_489</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>40</item>
</second>
</item>
<item>
<first>sum3_fu_534</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>56</item>
</second>
</item>
<item>
<first>sum4_fu_579</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>72</item>
</second>
</item>
<item>
<first>sum5_fu_624</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>88</item>
</second>
</item>
<item>
<first>sum6_fu_669</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>104</item>
</second>
</item>
<item>
<first>sum7_fu_714</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>120</item>
</second>
</item>
<item>
<first>sum8_fu_773</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>142</item>
</second>
</item>
<item>
<first>sum9_fu_814</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>158</item>
</second>
</item>
<item>
<first>sum_1_cast_fu_474</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>35</item>
</second>
</item>
<item>
<first>sum_1_fu_469</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>34</item>
</second>
</item>
<item>
<first>sum_2_cast_fu_519</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>51</item>
</second>
</item>
<item>
<first>sum_2_fu_514</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>50</item>
</second>
</item>
<item>
<first>sum_3_cast_fu_564</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>67</item>
</second>
</item>
<item>
<first>sum_3_fu_559</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>66</item>
</second>
</item>
<item>
<first>sum_4_cast_fu_609</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>83</item>
</second>
</item>
<item>
<first>sum_4_fu_604</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>82</item>
</second>
</item>
<item>
<first>sum_5_cast_fu_654</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>99</item>
</second>
</item>
<item>
<first>sum_5_fu_649</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>98</item>
</second>
</item>
<item>
<first>sum_6_cast_fu_699</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>115</item>
</second>
</item>
<item>
<first>sum_6_fu_694</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>114</item>
</second>
</item>
<item>
<first>sum_7_cast_fu_758</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>137</item>
</second>
</item>
<item>
<first>sum_7_fu_753</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>136</item>
</second>
</item>
<item>
<first>sum_8_cast_fu_799</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>153</item>
</second>
</item>
<item>
<first>sum_8_fu_794</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>152</item>
</second>
</item>
<item>
<first>sum_cast_fu_429</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>19</item>
</second>
</item>
<item>
<first>sum_fu_424</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>18</item>
</second>
</item>
<item>
<first>tmp_1_fu_465</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>33</item>
</second>
</item>
<item>
<first>tmp_25_fu_455</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>28</item>
</second>
</item>
<item>
<first>tmp_2_fu_510</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>49</item>
</second>
</item>
<item>
<first>tmp_3_fu_555</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>65</item>
</second>
</item>
<item>
<first>tmp_4_fu_600</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>81</item>
</second>
</item>
<item>
<first>tmp_5_fu_645</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>97</item>
</second>
</item>
<item>
<first>tmp_69_1_fu_500</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>44</item>
</second>
</item>
<item>
<first>tmp_69_2_fu_545</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>60</item>
</second>
</item>
<item>
<first>tmp_69_3_fu_590</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>76</item>
</second>
</item>
<item>
<first>tmp_69_4_fu_635</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>92</item>
</second>
</item>
<item>
<first>tmp_69_5_fu_680</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>108</item>
</second>
</item>
<item>
<first>tmp_69_6_fu_731</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>124</item>
</second>
</item>
<item>
<first>tmp_69_7_fu_825</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>146</item>
</second>
</item>
<item>
<first>tmp_69_8_fu_829</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>162</item>
</second>
</item>
<item>
<first>tmp_6_fu_690</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>113</item>
</second>
</item>
<item>
<first>tmp_7_10_fu_745</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>134</item>
</second>
</item>
<item>
<first>tmp_7_cast_cast_fu_749</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>135</item>
</second>
</item>
<item>
<first>tmp_7_fu_725</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>130</item>
</second>
</item>
<item>
<first>tmp_8_fu_790</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>151</item>
</second>
</item>
<item>
<first>tmp_fu_410</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>11</item>
</second>
</item>
<item>
<first>tmp_s_fu_420</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>17</item>
</second>
</item>
</dp_fu_nodes_expression>
<dp_fu_nodes_module>
<count>0</count>
<item_version>0</item_version>
</dp_fu_nodes_module>
<dp_fu_nodes_io>
<count>48</count>
<item_version>0</item_version>
<item>
<first>StgValue_172_write_fu_117</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>30</item>
</second>
</item>
<item>
<first>StgValue_204_write_fu_151</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>46</item>
</second>
</item>
<item>
<first>StgValue_236_write_fu_185</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>62</item>
</second>
</item>
<item>
<first>StgValue_268_write_fu_219</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>78</item>
</second>
</item>
<item>
<first>StgValue_300_write_fu_253</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>94</item>
</second>
</item>
<item>
<first>StgValue_332_write_fu_287</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>110</item>
</second>
</item>
<item>
<first>StgValue_365_write_fu_321</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>126</item>
</second>
</item>
<item>
<first>StgValue_411_write_fu_355</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>148</item>
</second>
</item>
<item>
<first>StgValue_435_write_fu_389</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>164</item>
</second>
</item>
<item>
<first>buf_addr_31_read_read_fu_145</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>43</item>
</second>
</item>
<item>
<first>buf_addr_32_read_read_fu_179</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>59</item>
</second>
</item>
<item>
<first>buf_addr_33_read_read_fu_213</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>75</item>
</second>
</item>
<item>
<first>buf_addr_34_read_read_fu_247</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>91</item>
</second>
</item>
<item>
<first>buf_addr_35_read_read_fu_281</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>107</item>
</second>
</item>
<item>
<first>buf_addr_36_read_read_fu_315</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>123</item>
</second>
</item>
<item>
<first>buf_addr_37_read_read_fu_349</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>145</item>
</second>
</item>
<item>
<first>buf_addr_38_read_read_fu_383</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>161</item>
</second>
</item>
<item>
<first>buf_addr_read_read_fu_111</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>27</item>
</second>
</item>
<item>
<first>buf_offset_read_read_fu_86</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>10</item>
</second>
</item>
<item>
<first>grp_readreq_fu_126</first>
<second>
<count>7</count>
<item_version>0</item_version>
<item>38</item>
<item>38</item>
<item>38</item>
<item>38</item>
<item>38</item>
<item>38</item>
<item>38</item>
</second>
</item>
<item>
<first>grp_readreq_fu_160</first>
<second>
<count>7</count>
<item_version>0</item_version>
<item>54</item>
<item>54</item>
<item>54</item>
<item>54</item>
<item>54</item>
<item>54</item>
<item>54</item>
</second>
</item>
<item>
<first>grp_readreq_fu_194</first>
<second>
<count>7</count>
<item_version>0</item_version>
<item>70</item>
<item>70</item>
<item>70</item>
<item>70</item>
<item>70</item>
<item>70</item>
<item>70</item>
</second>
</item>
<item>
<first>grp_readreq_fu_228</first>
<second>
<count>7</count>
<item_version>0</item_version>
<item>86</item>
<item>86</item>
<item>86</item>
<item>86</item>
<item>86</item>
<item>86</item>
<item>86</item>
</second>
</item>
<item>
<first>grp_readreq_fu_262</first>
<second>
<count>7</count>
<item_version>0</item_version>
<item>102</item>
<item>102</item>
<item>102</item>
<item>102</item>
<item>102</item>
<item>102</item>
<item>102</item>
</second>
</item>
<item>
<first>grp_readreq_fu_296</first>
<second>
<count>7</count>
<item_version>0</item_version>
<item>118</item>
<item>118</item>
<item>118</item>
<item>118</item>
<item>118</item>
<item>118</item>
<item>118</item>
</second>
</item>
<item>
<first>grp_readreq_fu_330</first>
<second>
<count>7</count>
<item_version>0</item_version>
<item>140</item>
<item>140</item>
<item>140</item>
<item>140</item>
<item>140</item>
<item>140</item>
<item>140</item>
</second>
</item>
<item>
<first>grp_readreq_fu_364</first>
<second>
<count>7</count>
<item_version>0</item_version>
<item>156</item>
<item>156</item>
<item>156</item>
<item>156</item>
<item>156</item>
<item>156</item>
<item>156</item>
</second>
</item>
<item>
<first>grp_readreq_fu_92</first>
<second>
<count>7</count>
<item_version>0</item_version>
<item>22</item>
<item>22</item>
<item>22</item>
<item>22</item>
<item>22</item>
<item>22</item>
<item>22</item>
</second>
</item>
<item>
<first>grp_writeresp_fu_133</first>
<second>
<count>13</count>
<item_version>0</item_version>
<item>42</item>
<item>42</item>
<item>42</item>
<item>42</item>
<item>42</item>
<item>42</item>
<item>42</item>
<item>45</item>
<item>47</item>
<item>47</item>
<item>47</item>
<item>47</item>
<item>47</item>
</second>
</item>
<item>
<first>grp_writeresp_fu_167</first>
<second>
<count>13</count>
<item_version>0</item_version>
<item>58</item>
<item>58</item>
<item>58</item>
<item>58</item>
<item>58</item>
<item>58</item>
<item>58</item>
<item>61</item>
<item>63</item>
<item>63</item>
<item>63</item>
<item>63</item>
<item>63</item>
</second>
</item>
<item>
<first>grp_writeresp_fu_201</first>
<second>
<count>13</count>
<item_version>0</item_version>
<item>74</item>
<item>74</item>
<item>74</item>
<item>74</item>
<item>74</item>
<item>74</item>
<item>74</item>
<item>77</item>
<item>79</item>
<item>79</item>
<item>79</item>
<item>79</item>
<item>79</item>
</second>
</item>
<item>
<first>grp_writeresp_fu_235</first>
<second>
<count>13</count>
<item_version>0</item_version>
<item>90</item>
<item>90</item>
<item>90</item>
<item>90</item>
<item>90</item>
<item>90</item>
<item>90</item>
<item>93</item>
<item>95</item>
<item>95</item>
<item>95</item>
<item>95</item>
<item>95</item>
</second>
</item>
<item>
<first>grp_writeresp_fu_269</first>
<second>
<count>13</count>
<item_version>0</item_version>
<item>106</item>
<item>106</item>
<item>106</item>
<item>106</item>
<item>106</item>
<item>106</item>
<item>106</item>
<item>109</item>
<item>111</item>
<item>111</item>
<item>111</item>
<item>111</item>
<item>111</item>
</second>
</item>
<item>
<first>grp_writeresp_fu_303</first>
<second>
<count>13</count>
<item_version>0</item_version>
<item>122</item>
<item>122</item>
<item>122</item>
<item>122</item>
<item>122</item>
<item>122</item>
<item>122</item>
<item>125</item>
<item>127</item>
<item>127</item>
<item>127</item>
<item>127</item>
<item>127</item>
</second>
</item>
<item>
<first>grp_writeresp_fu_337</first>
<second>
<count>13</count>
<item_version>0</item_version>
<item>144</item>
<item>144</item>
<item>144</item>
<item>144</item>
<item>144</item>
<item>144</item>
<item>144</item>
<item>147</item>
<item>149</item>
<item>149</item>
<item>149</item>
<item>149</item>
<item>149</item>
</second>
</item>
<item>
<first>grp_writeresp_fu_371</first>
<second>
<count>13</count>
<item_version>0</item_version>
<item>160</item>
<item>160</item>
<item>160</item>
<item>160</item>
<item>160</item>
<item>160</item>
<item>160</item>
<item>163</item>
<item>165</item>
<item>165</item>
<item>165</item>
<item>165</item>
<item>165</item>
</second>
</item>
<item>
<first>grp_writeresp_fu_99</first>
<second>
<count>13</count>
<item_version>0</item_version>
<item>26</item>
<item>26</item>
<item>26</item>
<item>26</item>
<item>26</item>
<item>26</item>
<item>26</item>
<item>29</item>
<item>31</item>
<item>31</item>
<item>31</item>
<item>31</item>
<item>31</item>
</second>
</item>
<item>
<first>key_addr_10_read_read_fu_208</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>71</item>
</second>
</item>
<item>
<first>key_addr_11_read_read_fu_242</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>87</item>
</second>
</item>
<item>
<first>key_addr_12_read_read_fu_276</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>103</item>
</second>
</item>
<item>
<first>key_addr_13_read_read_fu_310</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>119</item>
</second>
</item>
<item>
<first>key_addr_14_read_read_fu_344</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>141</item>
</second>
</item>
<item>
<first>key_addr_15_read_read_fu_378</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>157</item>
</second>
</item>
<item>
<first>key_addr_8_read_read_fu_140</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>39</item>
</second>
</item>
<item>
<first>key_addr_9_read_read_fu_174</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>55</item>
</second>
</item>
<item>
<first>key_addr_read_read_fu_106</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>23</item>
</second>
</item>
<item>
<first>key_offset_offset_re_read_fu_74</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>8</item>
</second>
</item>
<item>
<first>key_offset_read_read_fu_80</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>9</item>
</second>
</item>
</dp_fu_nodes_io>
<return_ports>
<count>0</count>
<item_version>0</item_version>
</return_ports>
<dp_mem_port_nodes class_id="49" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</dp_mem_port_nodes>
<dp_reg_nodes>
<count>52</count>
<item_version>0</item_version>
<item>
<first>398</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>14</item>
</second>
</item>
<item>
<first>833</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>8</item>
</second>
</item>
<item>
<first>838</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>9</item>
</second>
</item>
<item>
<first>851</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>10</item>
</second>
</item>
<item>
<first>864</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>11</item>
</second>
</item>
<item>
<first>876</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>21</item>
</second>
</item>
<item>
<first>882</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>25</item>
</second>
</item>
<item>
<first>889</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>23</item>
</second>
</item>
<item>
<first>894</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>27</item>
</second>
</item>
<item>
<first>899</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>28</item>
</second>
</item>
<item>
<first>904</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>37</item>
</second>
</item>
<item>
<first>910</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>41</item>
</second>
</item>
<item>
<first>917</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>39</item>
</second>
</item>
<item>
<first>922</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>43</item>
</second>
</item>
<item>
<first>927</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>44</item>
</second>
</item>
<item>
<first>932</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>53</item>
</second>
</item>
<item>
<first>938</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>57</item>
</second>
</item>
<item>
<first>945</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>55</item>
</second>
</item>
<item>
<first>950</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>59</item>
</second>
</item>
<item>
<first>955</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>60</item>
</second>
</item>
<item>
<first>960</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>69</item>
</second>
</item>
<item>
<first>966</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>73</item>
</second>
</item>
<item>
<first>973</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>71</item>
</second>
</item>
<item>
<first>978</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>75</item>
</second>
</item>
<item>
<first>983</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>76</item>
</second>
</item>
<item>
<first>988</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>85</item>
</second>
</item>
<item>
<first>994</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>89</item>
</second>
</item>
<item>
<first>1001</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>87</item>
</second>
</item>
<item>
<first>1006</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>91</item>
</second>
</item>
<item>
<first>1011</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>92</item>
</second>
</item>
<item>
<first>1016</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>101</item>
</second>
</item>
<item>
<first>1022</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>105</item>
</second>
</item>
<item>
<first>1029</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>103</item>
</second>
</item>
<item>
<first>1034</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>107</item>
</second>
</item>
<item>
<first>1039</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>108</item>
</second>
</item>
<item>
<first>1044</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>117</item>
</second>
</item>
<item>
<first>1050</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>121</item>
</second>
</item>
<item>
<first>1057</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>130</item>
</second>
</item>
<item>
<first>1061</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>119</item>
</second>
</item>
<item>
<first>1066</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>123</item>
</second>
</item>
<item>
<first>1071</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>124</item>
</second>
</item>
<item>
<first>1076</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>139</item>
</second>
</item>
<item>
<first>1082</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>143</item>
</second>
</item>
<item>
<first>1089</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>150</item>
</second>
</item>
<item>
<first>1094</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>155</item>
</second>
</item>
<item>
<first>1100</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>159</item>
</second>
</item>
<item>
<first>1107</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>141</item>
</second>
</item>
<item>
<first>1112</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>145</item>
</second>
</item>
<item>
<first>1117</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>146</item>
</second>
</item>
<item>
<first>1122</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>157</item>
</second>
</item>
<item>
<first>1127</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>161</item>
</second>
</item>
<item>
<first>1132</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>162</item>
</second>
</item>
</dp_reg_nodes>
<dp_regname_nodes>
<count>52</count>
<item_version>0</item_version>
<item>
<first>buf_addr_31_read_reg_922</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>43</item>
</second>
</item>
<item>
<first>buf_addr_31_reg_910</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>41</item>
</second>
</item>
<item>
<first>buf_addr_32_read_reg_950</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>59</item>
</second>
</item>
<item>
<first>buf_addr_32_reg_938</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>57</item>
</second>
</item>
<item>
<first>buf_addr_33_read_reg_978</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>75</item>
</second>
</item>
<item>
<first>buf_addr_33_reg_966</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>73</item>
</second>
</item>
<item>
<first>buf_addr_34_read_reg_1006</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>91</item>
</second>
</item>
<item>
<first>buf_addr_34_reg_994</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>89</item>
</second>
</item>
<item>
<first>buf_addr_35_read_reg_1034</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>107</item>
</second>
</item>
<item>
<first>buf_addr_35_reg_1022</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>105</item>
</second>
</item>
<item>
<first>buf_addr_36_read_reg_1066</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>123</item>
</second>
</item>
<item>
<first>buf_addr_36_reg_1050</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>121</item>
</second>
</item>
<item>
<first>buf_addr_37_read_reg_1112</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>145</item>
</second>
</item>
<item>
<first>buf_addr_37_reg_1082</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>143</item>
</second>
</item>
<item>
<first>buf_addr_38_read_reg_1127</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>161</item>
</second>
</item>
<item>
<first>buf_addr_38_reg_1100</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>159</item>
</second>
</item>
<item>
<first>buf_addr_read_reg_894</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>27</item>
</second>
</item>
<item>
<first>buf_addr_reg_882</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>25</item>
</second>
</item>
<item>
<first>buf_offset_read_reg_851</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>10</item>
</second>
</item>
<item>
<first>i_11_8_reg_1089</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>150</item>
</second>
</item>
<item>
<first>i_reg_398</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>14</item>
</second>
</item>
<item>
<first>key_addr_10_read_reg_973</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>71</item>
</second>
</item>
<item>
<first>key_addr_10_reg_960</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>69</item>
</second>
</item>
<item>
<first>key_addr_11_read_reg_1001</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>87</item>
</second>
</item>
<item>
<first>key_addr_11_reg_988</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>85</item>
</second>
</item>
<item>
<first>key_addr_12_read_reg_1029</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>103</item>
</second>
</item>
<item>
<first>key_addr_12_reg_1016</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>101</item>
</second>
</item>
<item>
<first>key_addr_13_read_reg_1061</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>119</item>
</second>
</item>
<item>
<first>key_addr_13_reg_1044</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>117</item>
</second>
</item>
<item>
<first>key_addr_14_read_reg_1107</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>141</item>
</second>
</item>
<item>
<first>key_addr_14_reg_1076</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>139</item>
</second>
</item>
<item>
<first>key_addr_15_read_reg_1122</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>157</item>
</second>
</item>
<item>
<first>key_addr_15_reg_1094</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>155</item>
</second>
</item>
<item>
<first>key_addr_8_read_reg_917</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>39</item>
</second>
</item>
<item>
<first>key_addr_8_reg_904</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>37</item>
</second>
</item>
<item>
<first>key_addr_9_read_reg_945</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>55</item>
</second>
</item>
<item>
<first>key_addr_9_reg_932</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>53</item>
</second>
</item>
<item>
<first>key_addr_read_reg_889</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>23</item>
</second>
</item>
<item>
<first>key_addr_reg_876</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>21</item>
</second>
</item>
<item>
<first>key_offset_offset_re_reg_833</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>8</item>
</second>
</item>
<item>
<first>key_offset_read_reg_838</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>9</item>
</second>
</item>
<item>
<first>tmp_25_reg_899</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>28</item>
</second>
</item>
<item>
<first>tmp_69_1_reg_927</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>44</item>
</second>
</item>
<item>
<first>tmp_69_2_reg_955</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>60</item>
</second>
</item>
<item>
<first>tmp_69_3_reg_983</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>76</item>
</second>
</item>
<item>
<first>tmp_69_4_reg_1011</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>92</item>
</second>
</item>
<item>
<first>tmp_69_5_reg_1039</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>108</item>
</second>
</item>
<item>
<first>tmp_69_6_reg_1071</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>124</item>
</second>
</item>
<item>
<first>tmp_69_7_reg_1117</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>146</item>
</second>
</item>
<item>
<first>tmp_69_8_reg_1132</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>162</item>
</second>
</item>
<item>
<first>tmp_7_reg_1057</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>130</item>
</second>
</item>
<item>
<first>tmp_reg_864</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>11</item>
</second>
</item>
</dp_regname_nodes>
<dp_reg_phi>
<count>1</count>
<item_version>0</item_version>
<item>
<first>398</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>14</item>
</second>
</item>
</dp_reg_phi>
<dp_regname_phi>
<count>1</count>
<item_version>0</item_version>
<item>
<first>i_reg_398</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>14</item>
</second>
</item>
</dp_regname_phi>
<dp_port_io_nodes class_id="50" tracking_level="0" version="0">
<count>5</count>
<item_version>0</item_version>
<item class_id="51" tracking_level="0" version="0">
<first>buf_offset</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>read</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>10</item>
</second>
</item>
</second>
</item>
<item>
<first>buf_r</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
<item>
<first>key</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
<item>
<first>key_offset</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>read</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>9</item>
</second>
</item>
</second>
</item>
<item>
<first>key_offset_offset</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>read</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>8</item>
</second>
</item>
</second>
</item>
</dp_port_io_nodes>
<port2core class_id="52" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</port2core>
<node2core>
<count>0</count>
<item_version>0</item_version>
</node2core>
</syndb>
</boost_serialization>
| 25.718105 | 102 | 0.588571 |
a0ec12725892c04f97d6d47da0bdaada6f767a9d | 6,369 | adb | Ada | source/nodes/program-nodes-type_declarations.adb | optikos/oasis | 9f64d46d26d964790d69f9db681c874cfb3bf96d | [
"MIT"
] | null | null | null | source/nodes/program-nodes-type_declarations.adb | optikos/oasis | 9f64d46d26d964790d69f9db681c874cfb3bf96d | [
"MIT"
] | null | null | null | source/nodes/program-nodes-type_declarations.adb | optikos/oasis | 9f64d46d26d964790d69f9db681c874cfb3bf96d | [
"MIT"
] | 2 | 2019-09-14T23:18:50.000Z | 2019-10-02T10:11:40.000Z | -- Copyright (c) 2019 Maxim Reznik <[email protected]>
--
-- SPDX-License-Identifier: MIT
-- License-Filename: LICENSE
-------------------------------------------------------------
package body Program.Nodes.Type_Declarations is
function Create
(Type_Token : not null Program.Lexical_Elements
.Lexical_Element_Access;
Name : not null Program.Elements.Defining_Identifiers
.Defining_Identifier_Access;
Discriminant_Part : Program.Elements.Definitions.Definition_Access;
Is_Token : not null Program.Lexical_Elements
.Lexical_Element_Access;
Definition : not null Program.Elements.Definitions
.Definition_Access;
With_Token : Program.Lexical_Elements.Lexical_Element_Access;
Aspects : Program.Elements.Aspect_Specifications
.Aspect_Specification_Vector_Access;
Semicolon_Token : not null Program.Lexical_Elements
.Lexical_Element_Access)
return Type_Declaration is
begin
return Result : Type_Declaration :=
(Type_Token => Type_Token, Name => Name,
Discriminant_Part => Discriminant_Part, Is_Token => Is_Token,
Definition => Definition, With_Token => With_Token,
Aspects => Aspects, Semicolon_Token => Semicolon_Token,
Enclosing_Element => null)
do
Initialize (Result);
end return;
end Create;
function Create
(Name : not null Program.Elements.Defining_Identifiers
.Defining_Identifier_Access;
Discriminant_Part : Program.Elements.Definitions.Definition_Access;
Definition : not null Program.Elements.Definitions
.Definition_Access;
Aspects : Program.Elements.Aspect_Specifications
.Aspect_Specification_Vector_Access;
Is_Part_Of_Implicit : Boolean := False;
Is_Part_Of_Inherited : Boolean := False;
Is_Part_Of_Instance : Boolean := False)
return Implicit_Type_Declaration is
begin
return Result : Implicit_Type_Declaration :=
(Name => Name, Discriminant_Part => Discriminant_Part,
Definition => Definition, Aspects => Aspects,
Is_Part_Of_Implicit => Is_Part_Of_Implicit,
Is_Part_Of_Inherited => Is_Part_Of_Inherited,
Is_Part_Of_Instance => Is_Part_Of_Instance, Enclosing_Element => null)
do
Initialize (Result);
end return;
end Create;
overriding function Name
(Self : Base_Type_Declaration)
return not null Program.Elements.Defining_Identifiers
.Defining_Identifier_Access is
begin
return Self.Name;
end Name;
overriding function Discriminant_Part
(Self : Base_Type_Declaration)
return Program.Elements.Definitions.Definition_Access is
begin
return Self.Discriminant_Part;
end Discriminant_Part;
overriding function Definition
(Self : Base_Type_Declaration)
return not null Program.Elements.Definitions.Definition_Access is
begin
return Self.Definition;
end Definition;
overriding function Aspects
(Self : Base_Type_Declaration)
return Program.Elements.Aspect_Specifications
.Aspect_Specification_Vector_Access is
begin
return Self.Aspects;
end Aspects;
overriding function Type_Token
(Self : Type_Declaration)
return not null Program.Lexical_Elements.Lexical_Element_Access is
begin
return Self.Type_Token;
end Type_Token;
overriding function Is_Token
(Self : Type_Declaration)
return not null Program.Lexical_Elements.Lexical_Element_Access is
begin
return Self.Is_Token;
end Is_Token;
overriding function With_Token
(Self : Type_Declaration)
return Program.Lexical_Elements.Lexical_Element_Access is
begin
return Self.With_Token;
end With_Token;
overriding function Semicolon_Token
(Self : Type_Declaration)
return not null Program.Lexical_Elements.Lexical_Element_Access is
begin
return Self.Semicolon_Token;
end Semicolon_Token;
overriding function Is_Part_Of_Implicit
(Self : Implicit_Type_Declaration)
return Boolean is
begin
return Self.Is_Part_Of_Implicit;
end Is_Part_Of_Implicit;
overriding function Is_Part_Of_Inherited
(Self : Implicit_Type_Declaration)
return Boolean is
begin
return Self.Is_Part_Of_Inherited;
end Is_Part_Of_Inherited;
overriding function Is_Part_Of_Instance
(Self : Implicit_Type_Declaration)
return Boolean is
begin
return Self.Is_Part_Of_Instance;
end Is_Part_Of_Instance;
procedure Initialize (Self : aliased in out Base_Type_Declaration'Class) is
begin
Set_Enclosing_Element (Self.Name, Self'Unchecked_Access);
if Self.Discriminant_Part.Assigned then
Set_Enclosing_Element (Self.Discriminant_Part, Self'Unchecked_Access);
end if;
Set_Enclosing_Element (Self.Definition, Self'Unchecked_Access);
for Item in Self.Aspects.Each_Element loop
Set_Enclosing_Element (Item.Element, Self'Unchecked_Access);
end loop;
null;
end Initialize;
overriding function Is_Type_Declaration_Element
(Self : Base_Type_Declaration)
return Boolean is
pragma Unreferenced (Self);
begin
return True;
end Is_Type_Declaration_Element;
overriding function Is_Declaration_Element
(Self : Base_Type_Declaration)
return Boolean is
pragma Unreferenced (Self);
begin
return True;
end Is_Declaration_Element;
overriding procedure Visit
(Self : not null access Base_Type_Declaration;
Visitor : in out Program.Element_Visitors.Element_Visitor'Class) is
begin
Visitor.Type_Declaration (Self);
end Visit;
overriding function To_Type_Declaration_Text
(Self : aliased in out Type_Declaration)
return Program.Elements.Type_Declarations.Type_Declaration_Text_Access is
begin
return Self'Unchecked_Access;
end To_Type_Declaration_Text;
overriding function To_Type_Declaration_Text
(Self : aliased in out Implicit_Type_Declaration)
return Program.Elements.Type_Declarations.Type_Declaration_Text_Access is
pragma Unreferenced (Self);
begin
return null;
end To_Type_Declaration_Text;
end Program.Nodes.Type_Declarations;
| 33.171875 | 79 | 0.712828 |
04358b7a589aa40ed320ee9150a3b820d5dab53f | 870 | ads | Ada | src/dds-request_reply-replier-impl.ads | alexcamposruiz/dds-requestreply | 9f29d34554b5d3e9291151c6e92d2ce6cc31bb71 | [
"MIT"
] | null | null | null | src/dds-request_reply-replier-impl.ads | alexcamposruiz/dds-requestreply | 9f29d34554b5d3e9291151c6e92d2ce6cc31bb71 | [
"MIT"
] | null | null | null | src/dds-request_reply-replier-impl.ads | alexcamposruiz/dds-requestreply | 9f29d34554b5d3e9291151c6e92d2ce6cc31bb71 | [
"MIT"
] | null | null | null | with DDS.Topic;
with DDS.Entity_Params;
with DDS.Request_Reply.impl;
package DDS.Request_Reply.Replier.Impl is
type Ref is limited new DDS.Request_Reply.Impl.Ref and Replier.Ref with private;
type Ref_Access is access all Ref;
function Create_Writer_Topic
(Self : not null access Ref;
Params : DDS.Entity_Params.EntityParams;
Name : DDS.String) return DDS.Topic.Ref_Access;
function Create_Reader_Topic
(Self : not null access Ref;
Params : DDS.Entity_Params.EntityParams;
Name : DDS.String) return DDS.Topic.Ref_Access;
procedure Wait_For_Requests
(Self : not null access Ref;
Min_Count : DDS.Integer;
Max_Wait : DDS.Duration_T);
private
type Ref is limited new DDS.Request_Reply.Impl.Ref and Replier.Ref with record
null;
end record;
end DDS.Request_Reply.Replier.Impl;
| 29 | 83 | 0.716092 |
2eae274d096dcb50796be010031919934ec7a1a7 | 2,268 | ads | Ada | src/spat-log.ads | yannickmoy/spat | 9974849c8086f0b8297727d37a1707b417a8f1ed | [
"WTFPL"
] | null | null | null | src/spat-log.ads | yannickmoy/spat | 9974849c8086f0b8297727d37a1707b417a8f1ed | [
"WTFPL"
] | null | null | null | src/spat-log.ads | yannickmoy/spat | 9974849c8086f0b8297727d37a1707b417a8f1ed | [
"WTFPL"
] | null | null | null | ------------------------------------------------------------------------------
-- Copyright (C) 2020 by Heisenbug Ltd. ([email protected])
--
-- This work is free. You can redistribute it and/or modify it under the
-- terms of the Do What The Fuck You Want To Public License, Version 2,
-- as published by Sam Hocevar. See the LICENSE file for more details.
------------------------------------------------------------------------------
pragma License (Unrestricted);
------------------------------------------------------------------------------
--
-- SPARK Proof Analysis Tool
--
-- S.P.A.T. - Message output utilities
--
------------------------------------------------------------------------------
package SPAT.Log is
---------------------------------------------------------------------------
-- Warning
--
-- Print a warning message to Standard_Error.
---------------------------------------------------------------------------
procedure Warning (Message : in String);
---------------------------------------------------------------------------
-- Error
--
-- Print a error message to Standard_Error.
---------------------------------------------------------------------------
procedure Error (Message : in String);
---------------------------------------------------------------------------
-- Message
--
-- Print a message to Standard_Output.
---------------------------------------------------------------------------
procedure Message (Message : in String;
New_Line : in Boolean := True);
---------------------------------------------------------------------------
-- Debug
--
-- Print a debug message to Standard_Output if the command line parameter
-- --verbose is set.
---------------------------------------------------------------------------
procedure Debug (Message : in String;
New_Line : in Boolean := True);
---------------------------------------------------------------------------
-- Debug_Enabled
--
-- Returns True if Debug would output something.
---------------------------------------------------------------------------
function Debug_Enabled return Boolean;
end SPAT.Log;
| 38.440678 | 78 | 0.330247 |
225ceaf4a6410555f4b196d5ce172e05de3325f8 | 1,461 | adb | Ada | tools/SPARK2005/examples/erfRiemann/tutorial-steps/02-methodError/main.adb | michalkonecny/polypaver | 7a1541a85523f5ecbef44b7f5e09680d9a5c1ca6 | [
"BSD-3-Clause"
] | 1 | 2015-07-01T14:50:00.000Z | 2015-07-01T14:50:00.000Z | tools/SPARK2005/examples/erfRiemann/tutorial-steps/02-methodError/main.adb | michalkonecny/polypaver | 7a1541a85523f5ecbef44b7f5e09680d9a5c1ca6 | [
"BSD-3-Clause"
] | null | null | null | tools/SPARK2005/examples/erfRiemann/tutorial-steps/02-methodError/main.adb | michalkonecny/polypaver | 7a1541a85523f5ecbef44b7f5e09680d9a5c1ca6 | [
"BSD-3-Clause"
] | null | null | null | with Ada.Text_IO;
with Ada.Integer_Text_IO;
with Ada.Numerics.Long_Elementary_Functions;
with Riemann;
procedure Main is
Xs : array(1..4) of Float :=
(1.0, 2.0, 3.0, 4.0);
Results : array(1..4) of Long_Float :=
(0.74682413, 0.8820813907, 0.88620734825952, 0.8862269117895);
package TIO renames Ada.Text_IO;
package IIO renames Ada.Integer_Text_IO;
package FIO is new Ada.Text_IO.Float_IO(Float);
package LFIO is new Ada.Text_IO.Float_IO(Long_Float);
package LFElem renames Ada.Numerics.Long_Elementary_Functions;
begin
for XI in Xs'Range loop
declare
X : Float := Xs(XI);
XL : Long_Float := Long_Float(X);
begin
for N in 1 .. 10 loop
declare
partitionSize : Integer := 2 ** N;
Res : Long_Float := Long_Float(Riemann.erf_Riemann(X,N));
begin
TIO.Put("erf_Riemann(");
FIO.Put(X, 1, 1, 0);
TIO.Put(", ");
IIO.Put(N, 2);
TIO.Put(") = ");
LFIO.Put(Res, 1, 6, 0);
TIO.New_Line;
end;
end loop;
TIO.New_Line;
TIO.Put("the integral for x = ");
FIO.Put(X, 1, 1, 0);
TIO.Put(": ");
LFIO.Put(Results(XI), 1, 6, 0);
TIO.New_Line;
TIO.Put("--------------------------------------------------------");
TIO.New_Line;
end;
end loop;
end Main;
| 30.4375 | 77 | 0.514716 |
a0b7158b0f34739058e683cc2c70d958d5423251 | 5,652 | adb | Ada | .emacs.d/elpa/wisi-2.1.1/wisitoken-bnf-output_elisp_common.adb | caqg/linux-home | eed631aae6f5e59e4f46e14f1dff443abca5fa28 | [
"Linux-OpenIB"
] | null | null | null | .emacs.d/elpa/wisi-2.1.1/wisitoken-bnf-output_elisp_common.adb | caqg/linux-home | eed631aae6f5e59e4f46e14f1dff443abca5fa28 | [
"Linux-OpenIB"
] | null | null | null | .emacs.d/elpa/wisi-2.1.1/wisitoken-bnf-output_elisp_common.adb | caqg/linux-home | eed631aae6f5e59e4f46e14f1dff443abca5fa28 | [
"Linux-OpenIB"
] | null | null | null | -- Abstract :
--
-- See spec
--
-- Copyright (C) 2012, 2013, 2015, 2017 - 2019 Free Software Foundation, Inc.
--
-- This program is free software; you can redistribute it and/or
-- modify it under terms of the GNU General Public License as
-- published by the Free Software Foundation; either version 3, 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
-- distributed with this program; see file COPYING. If not, write to
-- the Free Software Foundation, 51 Franklin Street, Suite 500, Boston,
-- MA 02110-1335, USA.
pragma License (GPL);
with Ada.Text_IO;
with WisiToken.Generate;
package body WisiToken.BNF.Output_Elisp_Common is
function Find_Elisp_ID (List : in String_Lists.List; Elisp_Name : in String) return Integer
is
I : Integer := 0; -- match elisp array
begin
for Name of List loop
if Name = Elisp_Name then
return I;
end if;
I := I + 1;
end loop;
raise Not_Found with "unknown elisp name: '" & Elisp_Name & "'";
end Find_Elisp_ID;
function Elisp_Name_To_Ada
(Elisp_Name : in String;
Append_ID : in Boolean;
Trim : in Integer)
return String
is
Result : String := Elisp_Name (Elisp_Name'First + Trim .. Elisp_Name'Last);
begin
Result (Result'First) := To_Upper (Result (Result'First));
for I in Result'Range loop
if Result (I) = '-' then
Result (I) := '_';
Result (I + 1) := To_Upper (Result (I + 1));
elsif Result (I) = '_' then
Result (I + 1) := To_Upper (Result (I + 1));
end if;
end loop;
if Append_ID then
return Result & "_ID"; -- Some elisp names may be Ada reserved words;
else
return Result;
end if;
end Elisp_Name_To_Ada;
procedure Indent_Keyword_Table
(Output_File_Root : in String;
Label : in String;
Keywords : in String_Pair_Lists.List;
Image : access function (Name : in Ada.Strings.Unbounded.Unbounded_String) return String)
is
use Ada.Text_IO;
use WisiToken.Generate;
begin
Indent_Line ("(defconst " & Output_File_Root & "-" & Label & "-keyword-table-raw");
Indent_Line (" '(");
Indent := Indent + 3;
for Pair of Keywords loop
Indent_Line ("(" & (-Pair.Value) & " . " & Image (Pair.Name) & ")");
end loop;
Indent_Line ("))");
Indent := Indent - 3;
end Indent_Keyword_Table;
procedure Indent_Token_Table
(Output_File_Root : in String;
Label : in String;
Tokens : in Token_Lists.List;
Image : access function (Name : in Ada.Strings.Unbounded.Unbounded_String) return String)
is
use Ada.Strings.Unbounded;
use Ada.Text_IO;
use WisiToken.Generate;
function To_Double_Quotes (Item : in String) return String
is
Result : String := Item;
begin
if Result (Result'First) = ''' then
Result (Result'First) := '"';
end if;
if Result (Result'Last) = ''' then
Result (Result'Last) := '"';
end if;
return Result;
end To_Double_Quotes;
begin
Indent_Line ("(defconst " & Output_File_Root & "-" & Label & "-token-table-raw");
Indent_Line (" '(");
Indent := Indent + 3;
for Kind of Tokens loop
-- We don't use All_Tokens.Iterate here, because we need the
-- Kind/token nested list structure, and the order is not important.
if not (-Kind.Kind = "line_comment" or -Kind.Kind = "whitespace") then
Indent_Line ("(""" & (-Kind.Kind) & """");
Indent := Indent + 1;
for Token of Kind.Tokens loop
if 0 = Length (Token.Value) then
Indent_Line ("(" & Image (Token.Name) & ")");
else
if -Kind.Kind = "number" then
-- allow for (<token> <number-p> <require>)
Indent_Line ("(" & Image (Token.Name) & " " & (-Token.Value) & ")");
elsif -Kind.Kind = "symbol" or
-Kind.Kind = "string-double" or
-Kind.Kind = "string-single"
then
-- value not used by elisp
Indent_Line ("(" & Image (Token.Name) & " . """")");
else
Indent_Line ("(" & Image (Token.Name) & " . " & To_Double_Quotes (-Token.Value) & ")");
end if;
end if;
end loop;
Indent_Line (")");
Indent := Indent - 1;
end if;
end loop;
Indent_Line ("))");
Indent := Indent - 3;
end Indent_Token_Table;
procedure Indent_Name_Table
(Output_File_Root : in String;
Label : in String;
Names : in String_Lists.List)
is
use Ada.Text_IO;
use WisiToken.Generate;
begin
Indent_Line ("(defconst " & Output_File_Root & "-" & Label);
Indent_Line (" [");
Indent := Indent + 3;
for Name of Names loop
Indent_Line (Name);
end loop;
Indent_Line ("])");
Indent := Indent - 3;
end Indent_Name_Table;
end WisiToken.BNF.Output_Elisp_Common;
| 35.54717 | 108 | 0.559094 |
04fbaa671bd8bc82a0305e84c0a50092fce24ae4 | 266 | ads | Ada | bug-reports/codepeer-units/src/unav.ads | TUM-EI-RCS/StratoX | 5fdd04e01a25efef6052376f43ce85b5bc973392 | [
"BSD-3-Clause"
] | 12 | 2017-06-08T14:19:57.000Z | 2022-03-09T02:48:59.000Z | bug-reports/codepeer-units/src/unav.ads | TUM-EI-RCS/StratoX | 5fdd04e01a25efef6052376f43ce85b5bc973392 | [
"BSD-3-Clause"
] | 6 | 2017-06-08T13:13:50.000Z | 2020-05-15T09:32:43.000Z | bug-reports/codepeer-units/src/unav.ads | TUM-EI-RCS/StratoX | 5fdd04e01a25efef6052376f43ce85b5bc973392 | [
"BSD-3-Clause"
] | 3 | 2017-06-30T14:05:06.000Z | 2022-02-17T12:20:45.000Z | with Units; use Units;
package unav with SPARK_Mode is
EARTH_RADIUS : constant Length_Type := 6378.137 * Kilo * Meter;
function Get_Distance return Length_Type with
Post => Get_Distance'Result in 0.0 * Meter .. 2.0*EARTH_RADIUS*180.0*Degree;
end unav;
| 26.6 | 81 | 0.729323 |
38684f3e696b207d8ae882791ab51f53200445e2 | 2,834 | adb | Ada | Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/g-zspche.adb | djamal2727/Main-Bearing-Analytical-Model | 2f00c2219c71be0175c6f4f8f1d4cca231d97096 | [
"Apache-2.0"
] | null | null | null | Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/g-zspche.adb | djamal2727/Main-Bearing-Analytical-Model | 2f00c2219c71be0175c6f4f8f1d4cca231d97096 | [
"Apache-2.0"
] | null | null | null | Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/g-zspche.adb | djamal2727/Main-Bearing-Analytical-Model | 2f00c2219c71be0175c6f4f8f1d4cca231d97096 | [
"Apache-2.0"
] | null | null | null | ------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- G N A T . W I D E _W I D E _ S P E L L I N G _ C H E C K E R --
-- --
-- B o d y --
-- --
-- Copyright (C) 1998-2020, AdaCore --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception, --
-- version 3.1, as published by the Free Software Foundation. --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
with GNAT.Spelling_Checker_Generic;
package body GNAT.Wide_Wide_Spelling_Checker is
function IBS is new
GNAT.Spelling_Checker_Generic.Is_Bad_Spelling_Of
(Wide_Wide_Character, Wide_Wide_String);
------------------------
-- Is_Bad_Spelling_Of --
------------------------
function Is_Bad_Spelling_Of
(Found : Wide_Wide_String;
Expect : Wide_Wide_String) return Boolean
renames IBS;
end GNAT.Wide_Wide_Spelling_Checker;
| 56.68 | 78 | 0.415667 |
383c7c0e90d8c1e834019840eb477be247b6d2a4 | 3,401 | ads | Ada | source/web/soap/web_services.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.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.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$
------------------------------------------------------------------------------
package Web_Services is
pragma Pure;
end Web_Services;
| 68.02 | 78 | 0.391944 |
a01c603e9cdd94bb8b95381de6714d51e9c275ab | 2,762 | ads | Ada | source/oasis/program-elements-generic_function_renaming_declarations.ads | optikos/oasis | 9f64d46d26d964790d69f9db681c874cfb3bf96d | [
"MIT"
] | null | null | null | source/oasis/program-elements-generic_function_renaming_declarations.ads | optikos/oasis | 9f64d46d26d964790d69f9db681c874cfb3bf96d | [
"MIT"
] | null | null | null | source/oasis/program-elements-generic_function_renaming_declarations.ads | optikos/oasis | 9f64d46d26d964790d69f9db681c874cfb3bf96d | [
"MIT"
] | 2 | 2019-09-14T23:18:50.000Z | 2019-10-02T10:11:40.000Z | -- Copyright (c) 2019 Maxim Reznik <[email protected]>
--
-- SPDX-License-Identifier: MIT
-- License-Filename: LICENSE
-------------------------------------------------------------
with Program.Elements.Declarations;
with Program.Lexical_Elements;
with Program.Elements.Defining_Names;
with Program.Elements.Expressions;
with Program.Elements.Aspect_Specifications;
package Program.Elements.Generic_Function_Renaming_Declarations is
pragma Pure (Program.Elements.Generic_Function_Renaming_Declarations);
type Generic_Function_Renaming_Declaration is
limited interface and Program.Elements.Declarations.Declaration;
type Generic_Function_Renaming_Declaration_Access is
access all Generic_Function_Renaming_Declaration'Class
with Storage_Size => 0;
not overriding function Name
(Self : Generic_Function_Renaming_Declaration)
return not null Program.Elements.Defining_Names.Defining_Name_Access
is abstract;
not overriding function Renamed_Function
(Self : Generic_Function_Renaming_Declaration)
return not null Program.Elements.Expressions.Expression_Access
is abstract;
not overriding function Aspects
(Self : Generic_Function_Renaming_Declaration)
return Program.Elements.Aspect_Specifications
.Aspect_Specification_Vector_Access is abstract;
type Generic_Function_Renaming_Declaration_Text is limited interface;
type Generic_Function_Renaming_Declaration_Text_Access is
access all Generic_Function_Renaming_Declaration_Text'Class
with Storage_Size => 0;
not overriding function To_Generic_Function_Renaming_Declaration_Text
(Self : aliased in out Generic_Function_Renaming_Declaration)
return Generic_Function_Renaming_Declaration_Text_Access is abstract;
not overriding function Generic_Token
(Self : Generic_Function_Renaming_Declaration_Text)
return not null Program.Lexical_Elements.Lexical_Element_Access
is abstract;
not overriding function Function_Token
(Self : Generic_Function_Renaming_Declaration_Text)
return not null Program.Lexical_Elements.Lexical_Element_Access
is abstract;
not overriding function Renames_Token
(Self : Generic_Function_Renaming_Declaration_Text)
return not null Program.Lexical_Elements.Lexical_Element_Access
is abstract;
not overriding function With_Token
(Self : Generic_Function_Renaming_Declaration_Text)
return Program.Lexical_Elements.Lexical_Element_Access is abstract;
not overriding function Semicolon_Token
(Self : Generic_Function_Renaming_Declaration_Text)
return not null Program.Lexical_Elements.Lexical_Element_Access
is abstract;
end Program.Elements.Generic_Function_Renaming_Declarations;
| 37.324324 | 75 | 0.79399 |
1eefa1269459b92e2527a9ffcdcaf6a8752153f2 | 6,991 | adb | Ada | source/amf/uml/amf-internals-standard_profile_l3_build_components.adb | svn2github/matreshka | 9d222b3ad9da508855fb1f5adbe5e8a4fad4c530 | [
"BSD-3-Clause"
] | 24 | 2016-11-29T06:59:41.000Z | 2021-08-30T11:55:16.000Z | source/amf/uml/amf-internals-standard_profile_l3_build_components.adb | svn2github/matreshka | 9d222b3ad9da508855fb1f5adbe5e8a4fad4c530 | [
"BSD-3-Clause"
] | 2 | 2019-01-16T05:15:20.000Z | 2019-02-03T10:03:32.000Z | source/amf/uml/amf-internals-standard_profile_l3_build_components.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$
------------------------------------------------------------------------------
-- This file is generated, don't edit it.
------------------------------------------------------------------------------
with AMF.Elements;
with AMF.Internals.Helpers;
with AMF.Internals.Tables.UML_Attributes;
with AMF.UML.Components;
with AMF.Visitors.Standard_Profile_L3_Iterators;
with AMF.Visitors.Standard_Profile_L3_Visitors;
package body AMF.Internals.Standard_Profile_L3_Build_Components is
------------------------
-- Get_Base_Component --
------------------------
overriding function Get_Base_Component
(Self : not null access constant Standard_Profile_L3_Build_Component_Proxy)
return AMF.UML.Components.UML_Component_Access is
begin
return
AMF.UML.Components.UML_Component_Access
(AMF.Internals.Helpers.To_Element
(AMF.Internals.Tables.UML_Attributes.Internal_Get_Base_Component
(Self.Element)));
end Get_Base_Component;
------------------------
-- Set_Base_Component --
------------------------
overriding procedure Set_Base_Component
(Self : not null access Standard_Profile_L3_Build_Component_Proxy;
To : AMF.UML.Components.UML_Component_Access) is
begin
AMF.Internals.Tables.UML_Attributes.Internal_Set_Base_Component
(Self.Element,
AMF.Internals.Helpers.To_Element
(AMF.Elements.Element_Access (To)));
end Set_Base_Component;
-------------------
-- Enter_Element --
-------------------
overriding procedure Enter_Element
(Self : not null access constant Standard_Profile_L3_Build_Component_Proxy;
Visitor : in out AMF.Visitors.Abstract_Visitor'Class;
Control : in out AMF.Visitors.Traverse_Control) is
begin
if Visitor in AMF.Visitors.Standard_Profile_L3_Visitors.Standard_Profile_L3_Visitor'Class then
AMF.Visitors.Standard_Profile_L3_Visitors.Standard_Profile_L3_Visitor'Class
(Visitor).Enter_Build_Component
(AMF.Standard_Profile_L3.Build_Components.Standard_Profile_L3_Build_Component_Access (Self),
Control);
end if;
end Enter_Element;
-------------------
-- Leave_Element --
-------------------
overriding procedure Leave_Element
(Self : not null access constant Standard_Profile_L3_Build_Component_Proxy;
Visitor : in out AMF.Visitors.Abstract_Visitor'Class;
Control : in out AMF.Visitors.Traverse_Control) is
begin
if Visitor in AMF.Visitors.Standard_Profile_L3_Visitors.Standard_Profile_L3_Visitor'Class then
AMF.Visitors.Standard_Profile_L3_Visitors.Standard_Profile_L3_Visitor'Class
(Visitor).Leave_Build_Component
(AMF.Standard_Profile_L3.Build_Components.Standard_Profile_L3_Build_Component_Access (Self),
Control);
end if;
end Leave_Element;
-------------------
-- Visit_Element --
-------------------
overriding procedure Visit_Element
(Self : not null access constant Standard_Profile_L3_Build_Component_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.Standard_Profile_L3_Iterators.Standard_Profile_L3_Iterator'Class then
AMF.Visitors.Standard_Profile_L3_Iterators.Standard_Profile_L3_Iterator'Class
(Iterator).Visit_Build_Component
(Visitor,
AMF.Standard_Profile_L3.Build_Components.Standard_Profile_L3_Build_Component_Access (Self),
Control);
end if;
end Visit_Element;
end AMF.Internals.Standard_Profile_L3_Build_Components;
| 50.65942 | 104 | 0.544986 |
9a936c69f7b45a37e64c55ac18849097ea5d4b15 | 4,808 | adb | Ada | Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/s-osprim__unix.adb | djamal2727/Main-Bearing-Analytical-Model | 2f00c2219c71be0175c6f4f8f1d4cca231d97096 | [
"Apache-2.0"
] | null | null | null | Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/s-osprim__unix.adb | djamal2727/Main-Bearing-Analytical-Model | 2f00c2219c71be0175c6f4f8f1d4cca231d97096 | [
"Apache-2.0"
] | null | null | null | Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/s-osprim__unix.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) 1998-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 uses gettimeofday and select
-- This file is suitable for OpenNT, Dec Unix and SCO UnixWare.
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 struct_timeval is record
tv_sec : Integer;
tv_usec : Integer;
end record;
pragma Convention (C, struct_timeval);
procedure gettimeofday
(tv : not null access struct_timeval;
tz : Address := Null_Address);
pragma Import (C, gettimeofday, "gettimeofday");
procedure C_select
(n : Integer := 0;
readfds,
writefds,
exceptfds : Address := Null_Address;
timeout : not null access struct_timeval);
pragma Import (C, C_select, "select");
-----------
-- Clock --
-----------
function Clock return Duration is
TV : aliased struct_timeval;
begin
gettimeofday (TV'Access);
return Duration (TV.tv_sec) + Duration (TV.tv_usec) / 10#1#E6;
end Clock;
-----------------
-- Timed_Delay --
-----------------
procedure Timed_Delay
(Time : Duration;
Mode : Integer)
is
Rel_Time : Duration;
Abs_Time : Duration;
Base_Time : constant Duration := Clock;
Check_Time : Duration := Base_Time;
timeval : aliased struct_timeval;
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
timeval.tv_sec := Integer (Rel_Time);
if Duration (timeval.tv_sec) > Rel_Time then
timeval.tv_sec := timeval.tv_sec - 1;
end if;
timeval.tv_usec :=
Integer ((Rel_Time - Duration (timeval.tv_sec)) * 10#1#E6);
C_select (timeout => timeval'Unchecked_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;
| 37.858268 | 78 | 0.478577 |
9a4bc347f55902bd33d53e87aef6da9d1a0c6887 | 1,103 | ads | Ada | tests/game-test_data-tests-natural_container-test_data.ads | thindil/steamsky | d5d7fea622f7994c91017c4cd7ba5e188153556c | [
"TCL",
"MIT"
] | 80 | 2017-04-08T23:14:07.000Z | 2022-02-10T22:30:51.000Z | tests/game-test_data-tests-natural_container-test_data.ads | thindil/steamsky | d5d7fea622f7994c91017c4cd7ba5e188153556c | [
"TCL",
"MIT"
] | 89 | 2017-06-24T08:18:26.000Z | 2021-11-12T04:37:36.000Z | tests/game-test_data-tests-natural_container-test_data.ads | thindil/steamsky | d5d7fea622f7994c91017c4cd7ba5e188153556c | [
"TCL",
"MIT"
] | 9 | 2018-04-14T16:37:25.000Z | 2020-03-21T14:33:49.000Z | -- 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.Containers.Vectors.Test_Data;
with Ada.Containers.Vectors.Test_Data.Tests;
package Game.Test_Data.Tests.Natural_Container.Test_Data is
-- begin read only
type Test is new AUnit.Test_Fixtures.Test_Fixture
-- end read only
with null record;
procedure Set_Up(Gnattest_T: in out Test);
procedure Tear_Down(Gnattest_T: in out Test);
-- begin read only
package Gnattest_Data_Inst is new GNATtest_Generated.GNATtest_Standard.Game
.Natural_Container
.Test_Data
(Test);
package Gnattest_Tests_Inst is new Gnattest_Data_Inst.Tests;
type New_Test is new Gnattest_Tests_Inst.Test with null record;
-- end read only
procedure User_Set_Up(Gnattest_T: in out New_Test);
procedure User_Tear_Down(Gnattest_T: in out New_Test);
end Game.Test_Data.Tests.Natural_Container.Test_Data;
| 33.424242 | 78 | 0.773345 |
ad3727c5515eccc390a7a456ebc3d4ed0b11657c | 780 | ads | Ada | contrib/gnu/gdb/dist/gdb/testsuite/gdb.ada/frame_arg_lang/pck.ads | TheSledgeHammer/2.11BSD | fe61f0b9aaa273783cd027c7b5ec77e95ead2153 | [
"BSD-3-Clause"
] | 3 | 2021-05-04T17:09:06.000Z | 2021-10-04T07:19:26.000Z | contrib/gnu/gdb/dist/gdb/testsuite/gdb.ada/frame_arg_lang/pck.ads | TheSledgeHammer/2.11BSD | fe61f0b9aaa273783cd027c7b5ec77e95ead2153 | [
"BSD-3-Clause"
] | null | null | null | contrib/gnu/gdb/dist/gdb/testsuite/gdb.ada/frame_arg_lang/pck.ads | TheSledgeHammer/2.11BSD | fe61f0b9aaa273783cd027c7b5ec77e95ead2153 | [
"BSD-3-Clause"
] | null | null | null | -- Copyright 2018-2020 Free Software Foundation, Inc.
--
-- This program is free software; you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation; either version 3 of the License, or
-- (at your option) any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with this program. If not, see <http://www.gnu.org/licenses/>.
package Pck is
procedure Call_Me (S: in out String);
end Pck;
| 41.052632 | 73 | 0.735897 |
13300b1adaf87adebbd3d23f180f83de417ecd07 | 226 | ads | Ada | gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/specs/constant1_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/specs/constant1_pkg.ads | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | null | null | null | gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/specs/constant1_pkg.ads | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | 2 | 2020-07-27T00:22:36.000Z | 2021-04-01T09:41:02.000Z | package Constant1_Pkg is
type Id_T is mod Natural'Last + 1;
type Timer_Id_T is tagged record
Id : Id_T := Id_T'Last;
end record;
Null_Timer_Id : constant Timer_Id_T := (Id => Id_T'Last - 1);
end Constant1_Pkg;
| 18.833333 | 63 | 0.690265 |
2e3d5b06d7c94a4afe66075dd251d40d262d0d2b | 1,607 | ads | Ada | src/Projects/eu_projects-node_tables.ads | fintatarta/eugen | 2c384838ff0e81b51172310ce5d0e47d71ffd4fd | [
"MIT"
] | null | null | null | src/Projects/eu_projects-node_tables.ads | fintatarta/eugen | 2c384838ff0e81b51172310ce5d0e47d71ffd4fd | [
"MIT"
] | null | null | null | src/Projects/eu_projects-node_tables.ads | fintatarta/eugen | 2c384838ff0e81b51172310ce5d0e47d71ffd4fd | [
"MIT"
] | null | null | null | with Ada.Containers.Ordered_Maps;
with EU_Projects.Nodes;
package EU_Projects.Node_Tables is
type Node_Table is tagged private
with Constant_Indexing => Element;
type Table_Ref (D : access Node_Table) is tagged limited null record
with Implicit_Dereference => D;
function Contains (T : Node_Table;
ID : Nodes.Node_Label) return Boolean;
function Element (T : Node_Table;
ID : Nodes.Node_Label) return Nodes.Node_Access
with
Pre => T.Contains (ID);
procedure Insert (T : in out Node_Table;
ID : Nodes.Node_Label;
Item : Nodes.Node_Access)
with
Pre => not T.Contains (ID),
Post => T.Contains (ID);
function Labels_Of (T : Node_Table;
Class : Nodes.Node_Class)
return Nodes.Node_Label_Lists.Vector;
procedure Dump (T : Node_Table);
Duplicated_Label : exception;
private
use type Nodes.Node_Label;
use type Nodes.Node_Access;
package Node_Maps is
new Ada.Containers.Ordered_Maps (Key_Type => Nodes.Node_Label,
Element_Type => Nodes.Node_Access);
type Node_Table is tagged
record
Table : Node_Maps.Map;
end record;
function Contains (T : Node_Table;
ID : Nodes.Node_Label) return Boolean
is (T.Table.Contains (ID));
function Element (T : Node_Table;
ID : Nodes.Node_Label) return Nodes.Node_Access
is (T.Table.Element (ID));
end EU_Projects.Node_Tables;
| 28.192982 | 73 | 0.607343 |
a0f2a2fe64b12bdd72171f1cfdc670da72589325 | 8,605 | adb | Ada | src/asf-converters-dates.adb | Letractively/ada-asf | da9f85f85666eba7e23fefea661160863b74154d | [
"Apache-2.0"
] | null | null | null | src/asf-converters-dates.adb | Letractively/ada-asf | da9f85f85666eba7e23fefea661160863b74154d | [
"Apache-2.0"
] | null | null | null | src/asf-converters-dates.adb | Letractively/ada-asf | da9f85f85666eba7e23fefea661160863b74154d | [
"Apache-2.0"
] | null | null | null | -----------------------------------------------------------------------
-- asf-converters-dates -- Date Converters
-- Copyright (C) 2011, 2012, 2013, 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.Calendar;
with Ada.Exceptions;
with Util.Properties.Bundles;
with Util.Beans.Objects.Time;
with Util.Dates.Formats;
with Util.Log.Loggers;
with ASF.Applications.Main;
package body ASF.Converters.Dates is
-- The logger
Log : constant Util.Log.Loggers.Logger := Util.Log.Loggers.Create ("ASF.Converters.Dates");
function Get_Date_Format (Mode : in Style_Type;
Bundle : in ASF.Locales.Bundle) return String;
function Get_Time_Format (Mode : in Style_Type;
Bundle : in ASF.Locales.Bundle) return String;
-- ------------------------------
-- Get the format to print the date.
-- ------------------------------
function Get_Date_Format (Mode : in Style_Type;
Bundle : in ASF.Locales.Bundle) return String is
begin
case Mode is
when DEFAULT =>
return Bundle.Get ("faces.dates.default_date_format", "%x");
when SHORT =>
return Bundle.Get ("faces.dates.short_date_format", "%d/%m/%Y");
when MEDIUM =>
return Bundle.Get ("faces.dates.medium_date_format", "%b %d, %Y");
when LONG =>
return Bundle.Get ("faces.dates.long_date_format", "%B %d, %Y");
when FULL =>
return Bundle.Get ("faces.dates.full_date_format", "%A, %B %d, %Y");
end case;
end Get_Date_Format;
-- ------------------------------
-- Get the format to print the time.
-- ------------------------------
function Get_Time_Format (Mode : in Style_Type;
Bundle : in ASF.Locales.Bundle) return String is
begin
case Mode is
when DEFAULT =>
return Bundle.Get ("faces.dates.default_time_format", "%X");
when SHORT =>
return Bundle.Get ("faces.dates.short_time_format", "%H:%M");
when MEDIUM =>
return Bundle.Get ("faces.dates.medium_time_format", "%H:%M");
when LONG =>
return Bundle.Get ("faces.dates.long_time_format", "%H:%M:%S");
when FULL =>
return Bundle.Get ("faces.dates.full_time_format", "%H:%M:%S %Z");
end case;
end Get_Time_Format;
-- ------------------------------
-- Get the date format pattern that must be used for formatting a date on the given component.
-- ------------------------------
function Get_Pattern (Convert : in Date_Converter;
Context : in ASF.Contexts.Faces.Faces_Context'Class;
Bundle : in ASF.Locales.Bundle;
Component : in ASF.Components.Base.UIComponent'Class) return String is
begin
case Convert.Format is
when BOTH =>
return Get_Date_Format (Convert.Time_Style, Bundle);
when TIME =>
return Get_Time_Format (Convert.Time_Style, Bundle);
when DATE =>
return Get_Date_Format (Convert.Date_Style, Bundle);
when CONVERTER_PATTERN =>
return Ada.Strings.Unbounded.To_String (Convert.Pattern);
when COMPONENT_FORMAT =>
return Component.Get_Attribute (Context => Context,
Name => "format",
Default => "%x");
end case;
end Get_Pattern;
-- ------------------------------
-- Get the locale that must be used to format the date.
-- ------------------------------
function Get_Locale (Convert : in Date_Converter;
Context : in ASF.Contexts.Faces.Faces_Context'Class)
return Util.Locales.Locale is
use type Util.Locales.Locale;
begin
if Convert.Locale /= Util.Locales.NULL_LOCALE then
return Convert.Locale;
else
return Context.Get_Locale;
end if;
end Get_Locale;
-- ------------------------------
-- Convert the object value into a string. The object value is associated
-- with the specified component.
-- If the string cannot be converted, the Invalid_Conversion exception should be raised.
-- ------------------------------
function To_String (Convert : in Date_Converter;
Context : in ASF.Contexts.Faces.Faces_Context'Class;
Component : in ASF.Components.Base.UIComponent'Class;
Value : in Util.Beans.Objects.Object) return String is
Locale : constant Util.Locales.Locale
:= Date_Converter'Class (Convert).Get_Locale (Context);
Bundle : ASF.Locales.Bundle;
begin
begin
ASF.Applications.Main.Load_Bundle (Context.Get_Application.all,
Name => "asf",
Locale => Util.Locales.To_String (Locale),
Bundle => Bundle);
exception
when E : Util.Properties.Bundles.NO_BUNDLE =>
Log.Error ("Cannot localize dates: {0}", Ada.Exceptions.Exception_Message (E));
end;
-- Convert the value as a date here so that we can raise an Invalid_Conversion exception.
declare
Pattern : constant String
:= Date_Converter'Class (Convert).Get_Pattern (Context, Bundle, Component);
Date : constant Ada.Calendar.Time := Util.Beans.Objects.Time.To_Time (Value);
Result : constant String := Util.Dates.Formats.Format (Pattern, Date, Bundle);
begin
return Result;
end;
exception
when E : others =>
raise Invalid_Conversion with Ada.Exceptions.Exception_Message (E);
end To_String;
-- ------------------------------
-- Convert the date string into an object for the specified component.
-- If the string cannot be converted, the Invalid_Conversion exception should be raised.
-- ------------------------------
function To_Object (Convert : in Date_Converter;
Context : in ASF.Contexts.Faces.Faces_Context'Class;
Component : in ASF.Components.Base.UIComponent'Class;
Value : in String) return Util.Beans.Objects.Object is
pragma Unreferenced (Convert, Context, Component, Value);
begin
Log.Error ("String to date conversion is not yet implemented");
return Util.Beans.Objects.Null_Object;
end To_Object;
-- ------------------------------
-- Create a date converter.
-- ------------------------------
function Create_Date_Converter (Date : in Style_Type;
Time : in Style_Type;
Format : in Format_Type;
Locale : in String;
Pattern : in String) return Date_Converter_Access is
use Ada.Strings.Unbounded;
L : constant Util.Locales.Locale := Util.Locales.Get_Locale (Locale);
begin
if Pattern'Length > 0 then
return new Date_Converter '(Date_Style => Date,
Time_Style => Time,
Locale => L,
Format => CONVERTER_PATTERN,
Pattern => To_Unbounded_String (Pattern));
else
return new Date_Converter '(Date_Style => Date,
Time_Style => Time,
Format => Format,
Locale => L,
Pattern => Null_Unbounded_String);
end if;
end Create_Date_Converter;
end ASF.Converters.Dates;
| 40.589623 | 98 | 0.538175 |
8b047a22092247075bd9fe5996573dd2643637b1 | 232 | ads | Ada | src/ada/src/utils/bounded_dynamic_strings.ads | VVCAS-Sean/OpenUxAS | dcd7be29d182d278a5387908f568d6f8a06b79ee | [
"NASA-1.3"
] | 88 | 2017-08-24T07:02:01.000Z | 2022-03-18T04:34:17.000Z | src/ada/src/utils/bounded_dynamic_strings.ads | VVCAS-Sean/OpenUxAS | dcd7be29d182d278a5387908f568d6f8a06b79ee | [
"NASA-1.3"
] | 46 | 2017-06-08T18:18:08.000Z | 2022-03-15T18:24:43.000Z | src/ada/src/utils/bounded_dynamic_strings.ads | VVCAS-Sean/OpenUxAS | dcd7be29d182d278a5387908f568d6f8a06b79ee | [
"NASA-1.3"
] | 53 | 2017-06-22T14:48:05.000Z | 2022-02-15T16:59:38.000Z | pragma SPARK_Mode (On);
with Bounded_Dynamic_Arrays;
package Bounded_Dynamic_Strings is new Bounded_Dynamic_Arrays
(Component => Character,
List_Index => Positive,
List => String,
Default_Value => ' ');
| 23.2 | 61 | 0.689655 |
c7db88d768ee62e99cf8c86103a1ae1c2e5d3933 | 2,909 | ads | Ada | bb-runtimes/runtimes/ravenscar-full-stm32f3x4/gnat/s-lisisq.ads | JCGobbi/Nucleo-STM32F334R8 | 2a0b1b4b2664c92773703ac5e95dcb71979d051c | [
"BSD-3-Clause"
] | null | null | null | bb-runtimes/runtimes/ravenscar-full-stm32f3x4/gnat/s-lisisq.ads | JCGobbi/Nucleo-STM32F334R8 | 2a0b1b4b2664c92773703ac5e95dcb71979d051c | [
"BSD-3-Clause"
] | null | null | null | bb-runtimes/runtimes/ravenscar-full-stm32f3x4/gnat/s-lisisq.ads | JCGobbi/Nucleo-STM32F334R8 | 2a0b1b4b2664c92773703ac5e95dcb71979d051c | [
"BSD-3-Clause"
] | null | null | null | -----------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- S Y S T E M . L I B M _ S I N G L E . S Q R T --
-- --
-- S p e c --
-- --
-- Copyright (C) 2014-2021, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- --
-- --
-- --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
-- This is the Ada Cert Math specific implementation of sqrt for IEEE 32 bit
with System.Libm_Prefix;
package System.Libm_Single.Squareroot is
pragma Pure;
package SLP renames System.Libm_Prefix;
function Sqrt (X : Float) return Float
with Export, Convention => C, External_Name => SLP.Prefix & "sqrtf";
-- The Sqrt function returns the following special values:
-- C99 special values:
-- Sqrt (+-0) = +-0
-- Sqrt (INF) = INF
-- Sqrt (X) = NaN, for X < 0.0
end System.Libm_Single.Squareroot;
| 59.367347 | 78 | 0.367136 |
9a99a6f867d437aba786b077ca1bd5d32a05ff71 | 7,085 | adb | Ada | 4-high/gel/applet/demo/sprite/mixed_joints/launch_mixed_joints.adb | charlie5/lace | e9b7dc751d500ff3f559617a6fc3089ace9dc134 | [
"0BSD"
] | 20 | 2015-11-04T09:23:59.000Z | 2022-01-14T10:21:42.000Z | 4-high/gel/applet/demo/sprite/mixed_joints/launch_mixed_joints.adb | charlie5/lace | e9b7dc751d500ff3f559617a6fc3089ace9dc134 | [
"0BSD"
] | 2 | 2015-11-04T17:05:56.000Z | 2015-12-08T03:16:13.000Z | 4-high/gel/applet/demo/sprite/mixed_joints/launch_mixed_joints.adb | charlie5/lace | e9b7dc751d500ff3f559617a6fc3089ace9dc134 | [
"0BSD"
] | 1 | 2015-12-07T12:53:52.000Z | 2015-12-07T12:53:52.000Z | with
gel.Window.lumen,
gel.Applet.gui_world,
gel.Forge,
gel.Sprite,
gel.hinge_Joint,
gel.ball_Joint,
gel.cone_twist_Joint,
gel.slider_Joint,
gel.any_Joint,
openGL.Palette,
float_Math.Algebra.linear.d3;
pragma unreferenced (gel.Window.lumen);
procedure launch_mixed_Joints
--
-- Shows a variety of joints.
--
is
package Math renames gel.Math;
use openGL,
opengl.Palette;
the_Applet : constant gel.Applet.gui_World.view := gel.Forge.new_gui_Applet ("mixed Joints", 1536, 864);
begin
the_Applet.gui_World .Gravity_is ((0.0, -10.0, 0.0));
the_Applet.gui_Camera.Site_is ((0.0, 4.0, 30.0)); -- Position the camera.
the_Applet.Renderer .Background_is (Grey);
the_Applet.enable_simple_Dolly (gel.Applet.gui_world.gui_world_Id); -- Enable user camera control via keyboard.
-- Add joints.
--
declare
use gel.Forge,
gel.linear_Algebra_3D,
Math;
begin
-- Hinge
--
declare
the_hinge_Box_1 : constant gel.Sprite.view := new_box_Sprite (the_Applet.gui_World, Mass => 0.0);
the_hinge_Box_2 : constant gel.Sprite.view := new_box_Sprite (the_Applet.gui_World);
the_hinge_Joint : constant gel.hinge_Joint .view := new gel.hinge_Joint.item;
Frame_A : constant math.Matrix_4x4 := math.Identity_4x4;
Frame_B : math.Matrix_4x4 := math.Identity_4x4;
begin
set_Translation (Frame_B, ( 2.0, 2.0, 0.0));
the_hinge_Joint.define (the_Applet.gui_World.Space,
the_hinge_Box_1, the_hinge_Box_2,
Frame_A, Frame_B,
collide_Conected => False);
the_hinge_Box_1.Site_is (( 0.0, 0.0, 0.0));
the_hinge_Box_2.Site_is ((-1.0, 2.0, 0.0));
the_Applet.gui_World.add (the_hinge_Box_1, and_Children => False);
the_Applet.gui_World.add (the_hinge_Box_2, and_Children => False);
the_Applet.gui_World.add (the_hinge_Joint.all'Access);
end;
-- DoF6
--
declare
the_DoF6_Box_1 : constant gel.Sprite .view := new_box_Sprite (the_Applet.gui_World, Mass => 0.0);
the_DoF6_Box_2 : constant gel.Sprite .view := new_box_Sprite (the_Applet.gui_World);
the_DoF6_Joint : constant gel.any_Joint.view := new gel.any_Joint.item;
Frame_A : constant math.Matrix_4x4 := math.Identity_4x4;
Frame_B : math.Matrix_4x4 := math.Identity_4x4;
begin
set_Translation (Frame_B, (2.0, 2.0, 0.0));
the_DoF6_Joint.define (the_Applet.gui_World.Space,
the_DoF6_Box_1, the_DoF6_Box_2,
Frame_A, Frame_B);
the_DoF6_Box_1.Site_is ((-20.0, 0.0, 0.0));
the_DoF6_Box_2.Site_is ((-20.0 - 2.0, 0.0, 2.0));
the_Applet.gui_World.add (the_DoF6_Box_1);
the_Applet.gui_World.add (the_DoF6_Box_2);
the_Applet.gui_World.add (the_DoF6_Joint.all'Access);
end;
-- Ball
--
declare
the_ball_Box_1 : constant gel.Sprite .view := new_box_Sprite (the_Applet.gui_World, Mass => 0.0);
the_ball_Box_2 : constant gel.Sprite .view := new_box_Sprite (the_Applet.gui_World);
the_ball_Joint : constant gel.ball_Joint.view := new gel.ball_Joint.item;
Pivot_in_A : constant math.Vector_3 := (0.0, -1.0, 0.0);
Pivot_in_B : constant math.Vector_3 := (0.0, 1.0, 0.0);
begin
the_ball_Joint.define (the_Applet.gui_World.Space,
the_ball_Box_1, the_ball_Box_2,
Pivot_in_A, Pivot_in_B);
the_ball_Box_1.Site_is ((-10.0, 0.0, 0.0));
the_ball_Box_2.Site_is ((-10.0 - 2.0, 0.0, 2.0));
the_Applet.gui_World.add (the_ball_Box_1);
the_Applet.gui_World.add (the_ball_Box_2);
the_Applet.gui_World.add (the_ball_Joint.all'Access);
end;
-- Slider
--
declare
the_slider_Box_1 : constant gel.Sprite .view := new_box_Sprite (the_Applet.gui_World, Mass => 0.0);
the_slider_Box_2 : constant gel.Sprite .view := new_box_Sprite (the_Applet.gui_World);
the_slider_Joint : constant gel.slider_Joint.view := new gel.slider_Joint.item;
Frame_A : math.Matrix_4x4 := math.Identity_4x4;
Frame_B : math.Matrix_4x4 := math.Identity_4x4;
y_Rot : math.Matrix_3x3 := y_Rotation_from (to_Radians (45.0));
x_Rot : math.Matrix_3x3 := x_Rotation_from (to_Radians (45.0));
begin
set_Translation (Frame_A, (-4.0, 4.0, -4.0));
set_Translation (Frame_B, ( 4.0, 0.0, 0.0));
-- set_Rotation (Frame_A, x_Rot);
-- set_Rotation (Frame_B, x_Rot);
the_slider_Joint.define (the_Applet.gui_World.Space,
the_slider_Box_1, the_slider_Box_2,
Frame_A, Frame_B);
the_slider_Box_1.Site_is ((-10.0, 10.0, 0.0));
the_slider_Box_2.Site_is ((-10.0 - 2.0, 15.0, 0.0));
the_Applet.gui_World.add (the_slider_Box_1);
the_Applet.gui_World.add (the_slider_Box_2);
the_Applet.gui_World.add (the_slider_Joint.all'Access);
end;
-- cone Twist
--
declare
the_cone_twist_Box_1 : constant gel.Sprite .view := new_box_Sprite (the_Applet.gui_World, Mass => 0.0);
the_cone_twist_Box_2 : constant gel.Sprite .view := new_box_Sprite (the_Applet.gui_World);
the_cone_twist_Joint : constant gel.cone_twist_Joint.view := new gel.cone_twist_Joint.item;
Frame_A : constant math.Matrix_4x4 := math.Identity_4x4;
Frame_B : math.Matrix_4x4 := math.Identity_4x4;
y_Rot : math.Matrix_3x3 := y_Rotation_from (to_Radians (45.0));
x_Rot : math.Matrix_3x3 := x_Rotation_from (to_Radians (45.0));
begin
-- set_Translation (Frame_A, ( -4.0, 4.0, -4.0));
set_Translation (Frame_B, (4.0, 0.0, 0.0));
-- set_Rotation (Frame_A, x_Rot);
-- set_Rotation (Frame_B, x_Rot);
the_cone_twist_Joint.define (the_Applet.gui_World.Space,
the_cone_twist_Box_1, the_cone_twist_Box_2,
Frame_A, Frame_B);
the_cone_twist_Box_1.Site_is ((10.0, 10.0, 0.0));
the_cone_twist_Box_2.Site_is ((10.0 + 2.0, 10.0, 0.0));
the_Applet.gui_World.add (the_cone_twist_Box_1);
the_Applet.gui_World.add (the_cone_twist_Box_2);
the_Applet.gui_World.add (the_cone_twist_Joint.all'Access);
end;
end;
while the_Applet.is_open
loop
the_Applet.freshen; -- Handle any new events, evolve the world and update the screen.
end loop;
the_Applet.destroy;
end launch_mixed_Joints;
| 38.715847 | 123 | 0.59633 |
4b65061e6a93b852e7822f3c628cb323132fc1fd | 436 | ads | Ada | 3-mid/opengl/source/platform/egl/opengl-screen.ads | charlie5/lace | e9b7dc751d500ff3f559617a6fc3089ace9dc134 | [
"0BSD"
] | 20 | 2015-11-04T09:23:59.000Z | 2022-01-14T10:21:42.000Z | 3-mid/opengl/source/platform/egl/opengl-screen.ads | charlie5/lace-alire | 9ace9682cf4daac7adb9f980c2868d6225b8111c | [
"0BSD"
] | 2 | 2015-11-04T17:05:56.000Z | 2015-12-08T03:16:13.000Z | 3-mid/opengl/source/platform/egl/opengl-screen.ads | charlie5/lace-alire | 9ace9682cf4daac7adb9f980c2868d6225b8111c | [
"0BSD"
] | 1 | 2015-12-07T12:53:52.000Z | 2015-12-07T12:53:52.000Z | package openGL.Screen
--
-- Models an openGL screen.
--
is
type Item is tagged limited private;
-- function Thin (Self : in Item) return xcb.xcb_screen_t.Pointer;
-- procedure Thin_is (Self : in out Item; Now : in xcb.xcb_screen_t.Pointer);
private
type Item is tagged limited
record
null; -- Thin : xcb.xcb_screen_t.Pointer;
end record;
procedure dummy;
end openGL.Screen;
| 17.44 | 83 | 0.644495 |
13e87c51161452797594e4c667ac381c35f67ee2 | 135 | adb | Ada | src/day-24/adventofcode-day_24-main.adb | persan/advent-of-code-2020 | 123f9352b44d75fa445783659e6bcbbcafbc0471 | [
"MIT"
] | null | null | null | src/day-24/adventofcode-day_24-main.adb | persan/advent-of-code-2020 | 123f9352b44d75fa445783659e6bcbbcafbc0471 | [
"MIT"
] | null | null | null | src/day-24/adventofcode-day_24-main.adb | persan/advent-of-code-2020 | 123f9352b44d75fa445783659e6bcbbcafbc0471 | [
"MIT"
] | null | null | null | with Ada.Text_IO; use Ada.Text_IO;
procedure Adventofcode.Day_24.Main is
begin
Put_Line ("Day-24");
end Adventofcode.Day_24.Main;
| 16.875 | 37 | 0.762963 |
13704b4b39f418b9b3e7a00b928bdfe3a1d07666 | 12,638 | adb | Ada | src/implementation/cl-helpers.adb | flyx/OpenCLAda | a03a82842b11edda44c8a85f737f5111d1a522a4 | [
"0BSD"
] | 8 | 2015-02-10T20:04:25.000Z | 2021-06-25T07:46:31.000Z | src/implementation/cl-helpers.adb | flyx/OpenCLAda | a03a82842b11edda44c8a85f737f5111d1a522a4 | [
"0BSD"
] | 1 | 2015-09-10T00:01:55.000Z | 2015-09-10T10:42:23.000Z | src/implementation/cl-helpers.adb | flyx/OpenCLAda | a03a82842b11edda44c8a85f737f5111d1a522a4 | [
"0BSD"
] | 1 | 2017-02-13T23:07:06.000Z | 2017-02-13T23:07:06.000Z | --------------------------------------------------------------------------------
-- Copyright (c) 2013, Felix Krause <[email protected]>
--
-- Permission to use, copy, modify, and/or distribute this software for any
-- purpose with or without fee is hereby granted, provided that the above
-- copyright notice and this permission notice appear in all copies.
--
-- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
-- WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
-- MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
-- ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
-- WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
-- ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
-- OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
--------------------------------------------------------------------------------
with Ada.Strings.Unbounded;
with Ada.Unchecked_Conversion;
with System;
package body CL.Helpers is
package IO renames Ada.Text_IO;
function Get_Parameter (Object : in CL_Object'Class;
Param : in Parameter_T) return Return_T is
Return_Value : Return_T;
Return_Size : aliased Size;
Return_Size_Ptr : constant Size_Ptr := Return_Size'Unchecked_Access;
Error : Enumerations.Error_Code;
pragma Assert (Parameter_T'Size = UInt'Size);
begin
Error := C_Getter (Object.Location, Param,
Return_Value'Size / System.Storage_Unit,
Return_Value'Address, Return_Size_Ptr);
Error_Handler (Error);
return Return_Value;
end Get_Parameter;
function Get_Parameter2 (Object1 : in CL_Object'Class;
Object2 : in CL_Object'Class;
Param : in Parameter_T) return Return_T is
Return_Value : Return_T;
Return_Size : aliased Size;
Return_Size_Ptr : constant Size_Ptr := Return_Size'Unchecked_Access;
Error : Enumerations.Error_Code;
begin
Error := C_Getter (Object1.Location, Object2.Location, Param,
Return_Value'Size / System.Storage_Unit,
Return_Value'Address, Return_Size_Ptr);
Error_Handler (Error);
return Return_Value;
end Get_Parameter2;
function Get_Parameters (Object : in CL_Object'Class;
Param : in Parameter_T) return Return_T is
Unit_Size : constant Size :=
Return_Element_T'Size / System.Storage_Unit;
Value_Count : aliased Size;
Error : Enumerations.Error_Code;
pragma Assert (Parameter_T'Size = UInt'Size);
begin
Error := C_Getter (Object.Location, Param, 0, System.Null_Address,
Value_Count'Unchecked_Access);
Error_Handler (Error);
declare
Return_Value : Return_T (1 .. Integer (Value_Count / Unit_Size));
begin
Error := C_Getter (Object.Location, Param, Value_Count,
Return_Value (1)'Address, null);
Error_Handler (Error);
return Return_Value;
end;
end Get_Parameters;
function Get_Parameters_Safe (Object : in CL_Object'Class;
Param : in Parameter_T) return Return_T is
Unit_Size : constant Size :=
Return_Element_T'Size / System.Storage_Unit;
Value_Count : aliased Size;
Error : Enumerations.Error_Code;
pragma Assert (Parameter_T'Size = UInt'Size);
begin
Error := C_Getter (Object.Location, Param, 0, null,
Value_Count'Unchecked_Access);
Error_Handler (Error);
declare
Return_Value : Return_T (1 .. Integer (Value_Count / Unit_Size));
begin
Error := C_Getter (Object.Location, Param, Value_Count,
Return_Value (1)'Unchecked_Access, null);
Error_Handler (Error);
return Return_Value;
end;
end Get_Parameters_Safe;
function Get_String (Object : in CL_Object'Class;
Param : in Parameter_T) return String is
Value_Count : aliased Size;
Error : Enumerations.Error_Code;
pragma Assert (Parameter_T'Size = UInt'Size);
begin
Error := C_Getter (Object.Location, Param, 0, null,
Value_Count'Unchecked_Access);
Error_Handler (Error);
declare
Raw_String : aliased Interfaces.C.char_array :=
(1 .. Interfaces.C.size_t (Value_Count) => <>);
begin
Error := C_Getter (Object.Location, Param, Value_Count,
Raw_String'Access, null);
Error_Handler (Error);
return Interfaces.C.To_Ada (Raw_String);
end;
end Get_String;
function Get_Parameters2 (Object1 : in CL_Object'Class;
Object2 : in CL_Object'Class;
Param : in Parameter_T) return Return_T is
Unit_Size : constant Size :=
Return_Element_T'Size / System.Storage_Unit;
Value_Count : aliased Size;
Error : Enumerations.Error_Code;
pragma Assert (Parameter_T'Size = UInt'Size);
begin
Error := C_Getter (Object1.Location, Object2.Location, Param, 0,
System.Null_Address, Value_Count'Unchecked_Access);
Error_Handler (Error);
declare
Return_Value : Return_T (1 .. Integer (Value_Count / Unit_Size));
begin
Error := C_Getter (Object1.Location, Object2.Location, Param,
Value_Count, Return_Value (1)'Address, null);
Error_Handler (Error);
return Return_Value;
end;
end Get_Parameters2;
function Get_Objects (Object : in CL_Object'Class;
Param : in Parameter_T) return Return_T is
Object_Count : aliased UInt;
Error : Enumerations.Error_Code;
pragma Assert (Parameter_T'Size = UInt'Size);
begin
Error := C_Getter (Object.Location, Param, 0, System.Null_Address,
Object_Count'Unchecked_Access);
Error_Handler (Error);
declare
Return_Value : Return_T (1 .. Integer (Object_Count));
begin
Error := C_Getter (Object.Location, Param, Object_Count,
Return_Value (1)'Address, null);
Error_Handler (Error);
return Return_Value;
end;
end Get_Objects;
procedure Error_Handler (Error : Enumerations.Error_Code) is
use Enumerations;
function To_Int is new Ada.Unchecked_Conversion (Source => Error_Code,
Target => Int);
begin
case Error is
when E_Invalid_Global_Work_Size => raise Invalid_Global_Work_Size;
when E_Invalid_Mip_Level => raise Invalid_Mip_Level;
when E_Invalid_Buffer_Size => raise Invalid_Buffer_Size;
when E_Invalid_GL_Object => raise Invalid_GL_Object;
when E_Invalid_Operation => raise Invalid_Operation;
when E_Invalid_Event => raise Invalid_Event;
when E_Invalid_Event_Wait_List => raise Invalid_Event_Wait_List;
when E_Invalid_Global_Offset => raise Invalid_Global_Offset;
when E_Invalid_Work_Item_Size => raise Invalid_Work_Item_Size;
when E_Invalid_Work_Group_Size => raise Invalid_Work_Group_Size;
when E_Invalid_Work_Dimension => raise Invalid_Work_Dimension;
when E_Invalid_Kernel_Args => raise Invalid_Kernel_Args;
when E_Invalid_Arg_Size => raise Invalid_Arg_Size;
when E_Invalid_Arg_Value => raise Invalid_Arg_Value;
when E_Invalid_Arg_Index => raise Invalid_Arg_Index;
when E_Invalid_Kernel => raise Invalid_Kernel;
when E_Invalid_Kernel_Definition => raise Invalid_Kernel_Definition;
when E_Invalid_Kernel_Name => raise Invalid_Kernel_Name;
when E_Invalid_Program_Executable => raise Invalid_Program_Executable;
when E_Invalid_Program => raise Invalid_Program;
when E_Invalid_Build_Options => raise Invalid_Build_Options;
when E_Invalid_Binary => raise Invalid_Binary;
when E_Invalid_Sampler => raise Invalid_Sampler;
when E_Invalid_Image_Size => raise Invalid_Image_Size;
when E_Invalid_Image_Format_Descriptor =>
raise Invalid_Image_Format_Descriptor;
when E_Invalid_Mem_Object => raise Invalid_Mem_Object;
when E_Invalid_Host_Ptr => raise Invalid_Host_Ptr;
when E_Invalid_Command_Queue => raise Invalid_Command_Queue;
when E_Invalid_Queue_Properties => raise Invalid_Queue_Properties;
when E_Invalid_Context => raise Invalid_Context;
when E_Invalid_Device => raise Invalid_Device;
when E_Invalid_Platform => raise Invalid_Platform;
when E_Invalid_Device_Type => raise Invalid_Device_Type;
when E_Invalid_Value => raise Invalid_Value;
when E_Kernel_Arg_Info_Not_Available => raise Kernel_Arg_Info_Not_Available;
when E_Device_Partition_Failed => raise Device_Partition_Failed;
when E_Link_Program_Failure => raise Link_Program_Failure;
when E_Linker_Not_Available => raise Linker_Not_Available;
when E_Compile_Program_Failure => raise Compile_Program_Failure;
when E_Exec_Status_Error_For_Events_In_Wait_List => raise Exec_Status_Error_For_Events_In_Wait_List;
when E_Misaligned_Sub_Buffer_Offset => raise Misaligned_Sub_Buffer_Offset;
when E_Map_Failure => raise Map_Failure;
when E_Build_Program_Failure => raise Build_Program_Failure;
when E_Image_Format_Not_Supported => raise Image_Format_Not_Supported;
when E_Image_Format_Mismatch => raise Image_Format_Mismatch;
when E_Mem_Copy_Overlap => raise Mem_Copy_Overlap;
when E_Profiling_Info_Not_Available => raise Profiling_Info_Not_Available;
when E_Out_Of_Host_Memory => raise Out_Of_Host_Memory;
when E_Out_Of_Resources => raise Out_Of_Resources;
when E_Mem_Object_Allocation_Failure =>
raise Mem_Object_Allocation_Failure;
when E_Compiler_Not_Available => raise Compiler_Not_Available;
when E_Device_Not_Available => raise Device_Not_Available;
when E_Device_Not_Found => raise Device_Not_Found;
when E_Success => null;
end case;
exception when Constraint_Error =>
raise Internal_Error with "Unknown error code:" & To_Int(Error)'Img;
end Error_Handler;
function Raw_List (List : Element_List_T) return Address_List is
Ret_List : Address_List (1 .. (List'Last - List'First + 1));
begin
for Index in List'Range loop
Ret_List (Index - List'First + 1) := CL_Object (List (Index)).Location;
end loop;
return Ret_List;
end Raw_List;
function Raw_List_From_Polymorphic (List : Element_List_T) return Address_List is
Ret_List : Address_List (1 .. (List'Last - List'First + 1));
begin
for Index in List'Range loop
Ret_List (Index - List'First + 1) := CL_Object (List (Index).all).Location;
end loop;
return Ret_List;
end Raw_List_From_Polymorphic;
function New_Reference (Location : System.Address) return Object_T is
Ret_Object : Object_T;
begin
Ret_Object.Location := Location;
Ret_Object.Adjust;
return Ret_Object;
end New_Reference;
function Record_To_Bitfield (Bit_Vector : Bit_Vector_Record) return Bitfield
is
function Convert is new Ada.Unchecked_Conversion (Source => Bit_Vector_Record,
Target => Bitfield);
Result : constant Bitfield := Convert (Bit_Vector);
begin
return Result mod 2 ** Used_Bits;
end Record_To_Bitfield;
function Read_File (File : Ada.Text_IO.File_Type) return String is
use Ada.Strings.Unbounded;
Contents : Unbounded_String := Null_Unbounded_String;
begin
while not IO.End_Of_File (File) loop
Append (Contents, IO.Get_Line (File));
Append (Contents, ASCII.LF);
end loop;
return To_String (Contents);
end Read_File;
end CL.Helpers;
| 45.135714 | 106 | 0.638076 |
38f9d71e4101e3967830f449f8859892513e74a9 | 153 | adb | Ada | gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/warn9.adb | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | 7 | 2020-05-02T17:34:05.000Z | 2021-10-17T10:15:18.000Z | gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/warn9.adb | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | null | null | null | gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/warn9.adb | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | 2 | 2020-07-27T00:22:36.000Z | 2021-04-01T09:41:02.000Z | -- { dg-do compile }
-- { dg-options "-Wuninitialized" }
pragma Warnings (Off);
function Warn9 return Integer is
I : Integer;
begin
return I;
end;
| 13.909091 | 35 | 0.666667 |
9a25ec4d4318db074a1106de7e58000c3db56ba0 | 402 | ads | Ada | gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/specs/pack11.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/pack11.ads | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | null | null | null | gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/specs/pack11.ads | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | 2 | 2020-07-27T00:22:36.000Z | 2021-04-01T09:41:02.000Z | -- { dg-do compile }
with Ada.Strings.Bounded;
package Pack11 is
package My_Strings is new Ada.Strings.Bounded.Generic_Bounded_Length (4);
subtype My_Bounded_String is My_Strings.Bounded_String;
type Rec1 is tagged null record;
type Rec2 is record
S : My_Bounded_String;
end record;
pragma Pack (Rec2);
type Rec3 is new Rec1 with record
R : Rec2;
end record;
end Pack11;
| 18.272727 | 75 | 0.726368 |
4bd6936df4f1746def29ee609909b85e55578a11 | 1,018 | ads | Ada | src/syscalls/ewok-syscalls-reset.ads | PThierry/ewok-kernel | e9c23cb3fd0afd8378bc27418778e1117d5e16cc | [
"Apache-2.0"
] | null | null | null | src/syscalls/ewok-syscalls-reset.ads | PThierry/ewok-kernel | e9c23cb3fd0afd8378bc27418778e1117d5e16cc | [
"Apache-2.0"
] | null | null | null | src/syscalls/ewok-syscalls-reset.ads | PThierry/ewok-kernel | e9c23cb3fd0afd8378bc27418778e1117d5e16cc | [
"Apache-2.0"
] | null | null | null | --
-- Copyright 2018 The wookey project team <[email protected]>
-- - Ryad Benadjila
-- - Arnauld Michelizza
-- - Mathieu Renard
-- - Philippe Thierry
-- - Philippe Trebuchet
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--
with ewok.tasks_shared;
package ewok.syscalls.reset
with spark_mode => off
is
procedure svc_reset
(caller_id : in ewok.tasks_shared.t_task_id;
mode : in ewok.tasks_shared.t_task_mode);
end ewok.syscalls.reset;
| 29.941176 | 79 | 0.696464 |
a0f1ac5c6896e92157603a64140c143292e019cf | 390 | adb | Ada | gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/opt9.adb | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | 7 | 2020-05-02T17:34:05.000Z | 2021-10-17T10:15:18.000Z | gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/opt9.adb | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | null | null | null | gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/opt9.adb | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | 2 | 2020-07-27T00:22:36.000Z | 2021-04-01T09:41:02.000Z | -- { dg-do compile }
-- { dg-options "-gnatws -O" }
with Opt9_Pkg; use Opt9_Pkg;
procedure Opt9 is
type Array_T is array (1 .. N) of Integer;
type Clock_T is record
N_Ticks : Integer := 0;
end record;
type Rec is record
Values : Array_T;
Valid : Boolean;
Tstamp : Clock_T;
end record;
pragma Pack (Rec);
Data : Rec;
begin
null;
end;
| 14.444444 | 45 | 0.592308 |
c799e91254cd05031f54f3659fcbae96a1ecb78b | 5,327 | ads | Ada | source/amf/uml/amf-umldi-uml_profile_diagrams-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-umldi-uml_profile_diagrams-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-umldi-uml_profile_diagrams-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.UMLDI.UML_Profile_Diagrams.Collections is
pragma Preelaborate;
package UMLDI_UML_Profile_Diagram_Collections is
new AMF.Generic_Collections
(UMLDI_UML_Profile_Diagram,
UMLDI_UML_Profile_Diagram_Access);
type Set_Of_UMLDI_UML_Profile_Diagram is
new UMLDI_UML_Profile_Diagram_Collections.Set with null record;
Empty_Set_Of_UMLDI_UML_Profile_Diagram : constant Set_Of_UMLDI_UML_Profile_Diagram;
type Ordered_Set_Of_UMLDI_UML_Profile_Diagram is
new UMLDI_UML_Profile_Diagram_Collections.Ordered_Set with null record;
Empty_Ordered_Set_Of_UMLDI_UML_Profile_Diagram : constant Ordered_Set_Of_UMLDI_UML_Profile_Diagram;
type Bag_Of_UMLDI_UML_Profile_Diagram is
new UMLDI_UML_Profile_Diagram_Collections.Bag with null record;
Empty_Bag_Of_UMLDI_UML_Profile_Diagram : constant Bag_Of_UMLDI_UML_Profile_Diagram;
type Sequence_Of_UMLDI_UML_Profile_Diagram is
new UMLDI_UML_Profile_Diagram_Collections.Sequence with null record;
Empty_Sequence_Of_UMLDI_UML_Profile_Diagram : constant Sequence_Of_UMLDI_UML_Profile_Diagram;
private
Empty_Set_Of_UMLDI_UML_Profile_Diagram : constant Set_Of_UMLDI_UML_Profile_Diagram
:= (UMLDI_UML_Profile_Diagram_Collections.Set with null record);
Empty_Ordered_Set_Of_UMLDI_UML_Profile_Diagram : constant Ordered_Set_Of_UMLDI_UML_Profile_Diagram
:= (UMLDI_UML_Profile_Diagram_Collections.Ordered_Set with null record);
Empty_Bag_Of_UMLDI_UML_Profile_Diagram : constant Bag_Of_UMLDI_UML_Profile_Diagram
:= (UMLDI_UML_Profile_Diagram_Collections.Bag with null record);
Empty_Sequence_Of_UMLDI_UML_Profile_Diagram : constant Sequence_Of_UMLDI_UML_Profile_Diagram
:= (UMLDI_UML_Profile_Diagram_Collections.Sequence with null record);
end AMF.UMLDI.UML_Profile_Diagrams.Collections;
| 57.902174 | 102 | 0.545898 |
38778f97c5265f450512310b54a0e488f8550b3e | 3,563 | ada | Ada | gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/c8/c86006i.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/c8/c86006i.ada | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | null | null | null | gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/c8/c86006i.ada | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | 2 | 2020-07-27T00:22:36.000Z | 2021-04-01T09:41:02.000Z | -- C86006I.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.
--*
-- OBJECTIVE:
-- CHECK THAT THE IDENTIFIERS "BOOLEAN, TRUE, AND FALSE" AND THE
-- IDENTIFIERS "INTEGER, NATURAL, AND POSITIVE" ARE DECLARED IN
-- THE PACKAGE "STANDARD", ALONG WITH THE OPERATORS OF THE TYPE
-- BOOLEAN AND THE TYPE INTEGER.
-- HISTORY:
-- DTN 04/15/92 CONSOLIDATION OF C86006A AND C86006B.
WITH REPORT; USE REPORT;
PROCEDURE C86006I IS
ABOOL, BBOOL : STANDARD.BOOLEAN := STANDARD.FALSE;
CBOOL : STANDARD.BOOLEAN := STANDARD.TRUE;
INT1 : STANDARD.INTEGER := -2;
NAT1 : STANDARD.NATURAL := 0;
POS1, POS2 : STANDARD.POSITIVE := 2;
BEGIN
TEST("C86006I", "CHECK THAT THE IDENTIFIERS ""BOOLEAN, TRUE, AND " &
"FALSE"" AND THE IDENTIFIERS ""INTEGER, NATURAL, " &
"AND POSITIVE"" ARE DECLARED IN THE PACKAGE " &
"""STANDARD"", ALONG WITH THE OPERATORS OF THE " &
"TYPE BOOLEAN AND THE TYPE INTEGER");
-- STANDARD.">" OPERATOR.
IF STANDARD.">"(ABOOL,BBOOL) THEN
FAILED("STANDARD.> FAILED FOR BOOLEAN TYPE");
END IF;
IF STANDARD.">"(INT1,NAT1) THEN
FAILED("STANDARD.> FAILED FOR INTEGER-NATURAL TYPE");
END IF;
-- STANDARD."/=" OPERATOR.
IF STANDARD."/="(ABOOL,BBOOL) THEN
FAILED("STANDARD./= FAILED FOR BOOLEAN TYPE");
END IF;
IF STANDARD."/="(POS1,POS2) THEN
FAILED("STANDARD./= FAILED FOR INTEGER-POSITIVE TYPE");
END IF;
-- STANDARD."AND" OPERATOR.
IF STANDARD."AND"(CBOOL,ABOOL) THEN
FAILED("STANDARD.AND FAILED");
END IF;
-- STANDARD."-" BINARY OPERATOR.
IF STANDARD."-"(INT1,POS1) /= IDENT_INT(-4) THEN
FAILED("STANDARD.- FAILED");
END IF;
-- STANDARD."-" UNARY OPERATOR.
IF STANDARD."-"(INT1) /= IDENT_INT(2) THEN
FAILED("STANDARD.UNARY - FAILED");
END IF;
-- STANDARD."REM" OPERATOR.
IF STANDARD."REM"(IDENT_INT(14),IDENT_INT(5)) /= IDENT_INT(4) THEN
FAILED("STANDARD.REM (++=+) FAILED");
END IF;
-- STANDARD."MOD" OPERATOR.
IF STANDARD."MOD"(IDENT_INT(14),IDENT_INT(-5)) /= IDENT_INT(-1) THEN
FAILED("STANDARD.MOD (+-=-) FAILED");
END IF;
RESULT;
END C86006I;
| 34.259615 | 79 | 0.608757 |
a0b7912591b8b28423698bb8552ee2399a90b69d | 1,479 | adb | Ada | src/arch/socs/stm32f429/soc-devmap.adb | PThierry/ewok-kernel | e9c23cb3fd0afd8378bc27418778e1117d5e16cc | [
"Apache-2.0"
] | 65 | 2018-09-26T09:10:11.000Z | 2022-01-30T21:17:37.000Z | src/arch/socs/stm32f429/soc-devmap.adb | PThierry/ewok-kernel | e9c23cb3fd0afd8378bc27418778e1117d5e16cc | [
"Apache-2.0"
] | 22 | 2019-04-07T15:15:54.000Z | 2020-10-15T12:45:54.000Z | src/arch/socs/stm32f429/soc-devmap.adb | PThierry/ewok-kernel | e9c23cb3fd0afd8378bc27418778e1117d5e16cc | [
"Apache-2.0"
] | 10 | 2018-09-27T09:43:08.000Z | 2021-01-29T22:50:17.000Z | with soc.dma; use soc.dma;
package body soc.devmap
with spark_mode => off
is
function find_periph
(addr : system_address;
size : unsigned_32)
return t_periph_id
is
begin
for id in periphs'range loop
if periphs(id).addr = addr and periphs(id).size = size then
return id;
end if;
end loop;
return NO_PERIPH;
end find_periph;
function find_dma_periph
(id : soc.dma.t_dma_periph_index;
stream : soc.dma.t_stream_index)
return t_periph_id
is
begin
case id is
when ID_DMA1 =>
case stream is
when 0 => return DMA1_STR0;
when 1 => return DMA1_STR1;
when 2 => return DMA1_STR2;
when 3 => return DMA1_STR3;
when 4 => return DMA1_STR4;
when 5 => return DMA1_STR5;
when 6 => return DMA1_STR6;
when 7 => return DMA1_STR7;
end case;
when ID_DMA2 =>
case stream is
when 0 => return DMA2_STR0;
when 1 => return DMA2_STR1;
when 2 => return DMA2_STR2;
when 3 => return DMA2_STR3;
when 4 => return DMA2_STR4;
when 5 => return DMA2_STR5;
when 6 => return DMA2_STR6;
when 7 => return DMA2_STR7;
end case;
end case;
end find_dma_periph;
end soc.devmap;
| 26.890909 | 68 | 0.52265 |
578e44efebf4ad9bd9c86c63fca2438bd6cd09c3 | 3,239 | ads | Ada | components/src/atmosphere/bmp280/bmp280-i2c.ads | Sawchord/Ada_Drivers_Library | 84e3ee84d6a5f48832779fb2e3001a9f896d0d90 | [
"BSD-3-Clause"
] | null | null | null | components/src/atmosphere/bmp280/bmp280-i2c.ads | Sawchord/Ada_Drivers_Library | 84e3ee84d6a5f48832779fb2e3001a9f896d0d90 | [
"BSD-3-Clause"
] | null | null | null | components/src/atmosphere/bmp280/bmp280-i2c.ads | Sawchord/Ada_Drivers_Library | 84e3ee84d6a5f48832779fb2e3001a9f896d0d90 | [
"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 HAL; use HAL;
with HAL.I2C; use HAL.I2C;
with BMP280; use BMP280;
generic
type Some_BMP280_Device is new BMP280_Device with private;
package BMP280.I2C is
type SDO_Pin is (Low, High);
for SDO_Pin use (Low => 2#11101100#,
High => 2#11101110#);
type I2C_BMP280_Device (Port : Any_I2C_Port;
SDO : SDO_Pin) is new Some_BMP280_Device with private;
private
type I2C_BMP280_Device (Port : Any_I2C_Port;
SDO : SDO_Pin) is new Some_BMP280_Device with null record;
overriding
procedure Read_Port (This : I2C_BMP280_Device;
Address : UInt8;
Data : out Byte_Array);
overriding
procedure Write_Port (This : I2C_BMP280_Device;
Address : UInt8;
Data : UInt8);
end BMP280.I2C;
| 51.412698 | 85 | 0.527632 |
ad557091d8398fddeea963bc394225257913aa84 | 3,203 | ada | Ada | gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/cd/cd3015h.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/cd/cd3015h.ada | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | null | null | null | gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/cd/cd3015h.ada | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | 2 | 2020-07-27T00:22:36.000Z | 2021-04-01T09:41:02.000Z | -- CD3015H.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.
--*
-- OBJECTIVE:
-- CHECK THAT AN ENUMERATION REPRESENTATION CLAUSE FOR A DERIVED
-- TYPE CAN BE GIVEN IN THE VISIBLE OR PRIVATE PART OF A PACKAGE
-- FOR A DERIVED TYPE DECLARED IN THE VISIBLE PART, WHERE AN
-- ENUMERATION CLAUSE HAS BEEN GIVEN FOR THE PARENT.
-- HISTORY
-- DHH 10/01/87 CREATED ORIGINAL TEST
-- DHH 03/29/89 CHANGE FROM 'A' TEST TO 'C' TEST AND FROM '.DEP'
-- '.ADA'. ADDED CHECK ON REPRESENTATION CLAUSES.
WITH REPORT; USE REPORT;
WITH ENUM_CHECK; -- CONTAINS A CALL TO 'FAILED'.
PROCEDURE CD3015H IS
BEGIN
TEST ("CD3015H", "CHECK THAT AN ENUMERATION " &
"REPRESENTATION CLAUSE FOR A DERIVED TYPE CAN " &
"BE GIVEN IN THE VISIBLE OR PRIVATE PART OF A " &
"PACKAGE FOR A DERIVED TYPE DECLARED IN THE " &
"VISIBLE PART, WHERE AN ENUMERATION CLAUSE HAS " &
"BEEN GIVEN FOR THE PARENT");
DECLARE
PACKAGE PACK IS
TYPE MAIN IS (RED,BLUE,YELLOW);
FOR MAIN USE (RED => 1, BLUE => 2, YELLOW => 3);
TYPE HUE IS NEW MAIN;
TYPE NEWHUE IS NEW MAIN;
FOR HUE USE
(RED => 8, BLUE => 9, YELLOW => 10);
PRIVATE
FOR NEWHUE USE (RED => 6, BLUE => 11, YELLOW => 18);
TYPE INT1 IS RANGE 8 .. 10;
FOR INT1'SIZE USE HUE'SIZE;
TYPE INT2 IS RANGE 6 .. 18;
FOR INT2'SIZE USE NEWHUE'SIZE;
PROCEDURE CHECK_1 IS NEW ENUM_CHECK(HUE, INT1);
PROCEDURE CHECK_2 IS NEW ENUM_CHECK(NEWHUE, INT2);
END PACK;
PACKAGE BODY PACK IS
BEGIN
CHECK_1 (RED, 8, "HUE");
CHECK_2 (YELLOW, 18, "NEWHUE");
END PACK;
BEGIN
NULL;
END;
RESULT;
END CD3015H;
| 36.816092 | 79 | 0.582579 |
1ec75b489af6cc19cdc97baf54684d9c2f6ae1c4 | 2,631 | adb | Ada | tests/src/avx2/test_simd_avx2_swizzle.adb | onox/orka | 9edf99559a16ffa96dfdb208322f4d18efbcbac6 | [
"Apache-2.0"
] | 52 | 2016-07-30T23:00:28.000Z | 2022-02-05T11:54:55.000Z | tests/src/avx2/test_simd_avx2_swizzle.adb | onox/orka | 9edf99559a16ffa96dfdb208322f4d18efbcbac6 | [
"Apache-2.0"
] | 79 | 2016-08-01T18:36:48.000Z | 2022-02-27T12:14:20.000Z | tests/src/avx2/test_simd_avx2_swizzle.adb | 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) 2016 onox <[email protected]>
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
with AUnit.Assertions;
with AUnit.Test_Caller;
with Orka.SIMD.AVX.Doubles;
with Orka.SIMD.AVX2.Doubles.Swizzle;
package body Test_SIMD_AVX2_Swizzle is
use Orka;
use Orka.SIMD;
use Orka.SIMD.AVX.Doubles;
use Orka.SIMD.AVX2.Doubles.Swizzle;
use AUnit.Assertions;
package Caller is new AUnit.Test_Caller (Test);
Test_Suite : aliased AUnit.Test_Suites.Test_Suite;
function Suite return AUnit.Test_Suites.Access_Test_Suite is
Name : constant String := "(SIMD - AVX2 - Swizzle) ";
begin
Test_Suite.Add_Test (Caller.Create
(Name & "Test Permute function", Test_Permute'Access));
return Test_Suite'Access;
end Suite;
procedure Test_Permute (Object : in out Test) is
Elements : constant m256d := (1.0, 2.0, 3.0, 4.0);
Mask_0_0_0_0 : constant Unsigned_32 := 0 or 0 * 4 or 0 * 16 or 0 * 64;
Mask_2_2_2_2 : constant Unsigned_32 := 2 or 2 * 4 or 2 * 16 or 2 * 64;
Mask_1_0_3_2 : constant Unsigned_32 := 1 or 0 * 4 or 3 * 16 or 2 * 64;
Mask_2_3_0_1 : constant Unsigned_32 := 2 or 3 * 4 or 0 * 16 or 1 * 64;
Expected : constant array (Positive range <>) of m256d
:= ((1.0, 1.0, 1.0, 1.0),
(3.0, 3.0, 3.0, 3.0),
(2.0, 1.0, 4.0, 3.0),
(3.0, 4.0, 1.0, 2.0));
Results : array (Positive range Expected'Range) of m256d;
begin
Results (1) := Permute (Elements, Mask_0_0_0_0);
Results (2) := Permute (Elements, Mask_2_2_2_2);
Results (3) := Permute (Elements, Mask_1_0_3_2);
Results (4) := Permute (Elements, Mask_2_3_0_1);
for I in Expected'Range loop
for J in Index_Homogeneous loop
declare
Message : constant String := "Unexpected Single at " & Index_Homogeneous'Image (J);
begin
Assert (Expected (I) (J) = Results (I) (J), Message);
end;
end loop;
end loop;
end Test_Permute;
end Test_SIMD_AVX2_Swizzle;
| 33.730769 | 98 | 0.643482 |
1ead7d53d9e37f22cde6068640f06c150a9bb0e2 | 5,910 | adb | Ada | src/giza-timers.adb | Fabien-Chouteau/Giza | 9f6c167666dbba8f0e5f0ba3e33825c0b3f399bd | [
"BSD-3-Clause"
] | 7 | 2017-10-18T02:40:24.000Z | 2020-12-19T22:41:19.000Z | src/giza-timers.adb | Fabien-Chouteau/Giza | 9f6c167666dbba8f0e5f0ba3e33825c0b3f399bd | [
"BSD-3-Clause"
] | null | null | null | src/giza-timers.adb | Fabien-Chouteau/Giza | 9f6c167666dbba8f0e5f0ba3e33825c0b3f399bd | [
"BSD-3-Clause"
] | 2 | 2019-05-06T08:30:26.000Z | 2020-11-22T11:27:27.000Z | ------------------------------------------------------------------------------
-- --
-- Giza --
-- --
-- Copyright (C) 2015 Fabien Chouteau ([email protected]) --
-- --
-- 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 Ada.Unchecked_Deallocation;
with Ada.Real_Time.Timing_Events; use Ada.Real_Time.Timing_Events;
with Giza.GUI; use Giza.GUI;
with System;
package body Giza.Timers is
type Wrapper;
type Wrapper_Access is access all Wrapper;
type Wrapper is record
Event : Timer_Event_Not_Null_Ref;
Timeout : Time;
Next : Wrapper_Access := null;
end record;
procedure Free is new Ada.Unchecked_Deallocation
(Object => Wrapper, Name => Wrapper_Access);
TE : Timing_Event;
----------
-- Sync --
----------
protected Sync is
pragma Priority (System.Interrupt_Priority'Last);
entry Wait;
procedure Wakeup (Event : in out Timing_Event);
procedure Insert (Item : Wrapper_Access);
function Next_Timeout return Time;
procedure Pop (Item : out Wrapper_Access);
private
Triggered : Boolean := False;
List : Wrapper_Access := null;
end Sync;
----------
-- Sync --
----------
protected body Sync is
entry Wait when Triggered is
begin
Triggered := False;
end Wait;
procedure Wakeup (Event : in out Timing_Event) is
pragma Unreferenced (Event);
begin
Triggered := True;
end Wakeup;
procedure Insert (Item : Wrapper_Access) is
Prev, Curr : Wrapper_Access := null;
begin
if List = null or else List.Timeout >= Item.Timeout then
Item.Next := List;
List := Item;
Set_Handler (Event => TE,
At_Time => List.Timeout,
Handler => Sync.Wakeup'Access);
else
Prev := List;
Curr := List;
while Curr /= null and then Curr.Timeout < Item.Timeout loop
Prev := Curr;
Curr := Curr.Next;
end loop;
Prev.Next := Item;
Item.Next := Curr;
end if;
end Insert;
function Next_Timeout return Time is
begin
return (if List /= null then
List.Timeout
else
Time_Last);
end Next_Timeout;
procedure Pop (Item : out Wrapper_Access) is
begin
-- Remove from list
Item := List;
List := List.Next;
end Pop;
end Sync;
---------------
-- Set_Timer --
---------------
procedure Set_Timer
(Timer : Timer_Event_Not_Null_Ref;
Timeout : Time)
is
Item : constant Wrapper_Access :=
new Wrapper'(Event => Timer, Timeout => Timeout, Next => null);
begin
Sync.Insert (Item);
end Set_Timer;
----------------
-- Timer_Task --
----------------
task Timer_Task is
end Timer_Task;
task body Timer_Task is
Now : Time;
Tmp : Wrapper_Access;
begin
loop
Sync.Wait;
-- back from timeout
Now := Clock;
while Sync.Next_Timeout < Now loop
Sync.Pop (Tmp);
if Tmp /= null then
Emit (Event_Not_Null_Ref (Tmp.Event));
-- Destroy wrapper
Free (Tmp);
end if;
end loop;
Set_Handler (Event => TE,
At_Time => Sync.Next_Timeout,
Handler => Sync.Wakeup'Access);
end loop;
end Timer_Task;
end Giza.Timers;
| 32.833333 | 78 | 0.509306 |
1324bc47bb589649943c6b188bb37da036d27918 | 960 | ads | Ada | 3-mid/opengl/source/lean/geometry/opengl-geometry-textured.ads | charlie5/lace-alire | 9ace9682cf4daac7adb9f980c2868d6225b8111c | [
"0BSD"
] | 1 | 2022-01-20T07:13:42.000Z | 2022-01-20T07:13:42.000Z | 3-mid/opengl/source/lean/geometry/opengl-geometry-textured.ads | charlie5/lace-alire | 9ace9682cf4daac7adb9f980c2868d6225b8111c | [
"0BSD"
] | null | null | null | 3-mid/opengl/source/lean/geometry/opengl-geometry-textured.ads | charlie5/lace-alire | 9ace9682cf4daac7adb9f980c2868d6225b8111c | [
"0BSD"
] | null | null | null | package openGL.Geometry.textured
--
-- Supports per-vertex site and texture.
--
is
type Item is new openGL.Geometry.item with private;
type View is access all Item'Class;
function new_Geometry return View;
----------
-- Vertex
--
type Vertex is
record
Site : Vector_3;
Coords : Coordinate_2D;
end record;
type Vertex_array is array (Index_t range <>) of aliased Vertex;
--------------
-- Attributes
--
overriding
function is_Transparent (Self : in Item) return Boolean;
procedure Vertices_are (Self : in out Item; Now : in Vertex_array);
overriding
procedure Indices_are (Self : in out Item; Now : in Indices;
for_Facia : in Positive);
private
type Item is new Geometry.item with null record;
overriding
procedure enable_Texture (Self : in Item);
end openGL.Geometry.textured;
| 20.869565 | 80 | 0.604167 |
1e01817e319c4e75735874bf286aa73d1a8913c7 | 45 | ada | Ada | Task/Remove-duplicate-elements/Ada/remove-duplicate-elements-3.ada | djgoku/RosettaCodeData | 91df62d46142e921b3eacdb52b0316c39ee236bc | [
"Info-ZIP"
] | null | null | null | Task/Remove-duplicate-elements/Ada/remove-duplicate-elements-3.ada | djgoku/RosettaCodeData | 91df62d46142e921b3eacdb52b0316c39ee236bc | [
"Info-ZIP"
] | null | null | null | Task/Remove-duplicate-elements/Ada/remove-duplicate-elements-3.ada | djgoku/RosettaCodeData | 91df62d46142e921b3eacdb52b0316c39ee236bc | [
"Info-ZIP"
] | null | null | null | w←1 2 3 1 2 3 4 1
((⍳⍨w)=⍳⍴w)/w
1 2 3 4
| 11.25 | 18 | 0.355556 |
1e52c2b5a81744be0bbcdba6c4cd79de444d154d | 2,101 | ads | Ada | source/runtime/pb_support-memory_streams.ads | mgrojo/protobuf | ffc50782c0c5bbb60e8f1504fcfc5a5fbafdb7dd | [
"MIT"
] | 12 | 2020-05-04T09:30:21.000Z | 2022-02-08T21:47:32.000Z | source/runtime/pb_support-memory_streams.ads | mgrojo/protobuf | ffc50782c0c5bbb60e8f1504fcfc5a5fbafdb7dd | [
"MIT"
] | 6 | 2021-03-16T15:17:33.000Z | 2022-03-31T21:32:47.000Z | source/runtime/pb_support-memory_streams.ads | mgrojo/protobuf | ffc50782c0c5bbb60e8f1504fcfc5a5fbafdb7dd | [
"MIT"
] | 1 | 2021-03-16T15:09:27.000Z | 2021-03-16T15:09:27.000Z | -- MIT License
--
-- Copyright (c) 2020 Max Reznik
--
-- Permission is hereby granted, free of charge, to any person obtaining a
-- copy of this software and associated documentation files (the "Software"),
-- to deal in the Software without restriction, including without limitation
-- the rights to use, copy, modify, merge, publish, distribute, sublicense,
-- and/or sell copies of the Software, and to permit persons to whom the
-- Software is furnished to do so, subject to the following conditions:
--
-- The above copyright notice and this permission notice shall be included in
-- all copies or substantial portions of the Software.
--
-- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
-- THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
-- FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
-- DEALINGS IN THE SOFTWARE.
with Ada.Streams;
with League.Stream_Element_Vectors;
package PB_Support.Memory_Streams is
type Memory_Stream is new Ada.Streams.Root_Stream_Type with private;
procedure Clear (Self : in out Memory_Stream'Class);
function Written
(Self : Memory_Stream'Class) return Ada.Streams.Stream_Element_Count;
function Data (Self : Memory_Stream'Class)
return League.Stream_Element_Vectors.Stream_Element_Vector;
private
type Memory_Stream is new Ada.Streams.Root_Stream_Type with record
Data : League.Stream_Element_Vectors.Stream_Element_Vector;
Read : Ada.Streams.Stream_Element_Count := 0;
end record;
overriding procedure Read
(Self : in out Memory_Stream;
Item : out Ada.Streams.Stream_Element_Array;
Last : out Ada.Streams.Stream_Element_Offset);
overriding procedure Write
(Self : in out Memory_Stream;
Item : Ada.Streams.Stream_Element_Array);
end PB_Support.Memory_Streams;
| 38.907407 | 78 | 0.756307 |
a0f370510a6cf7a3e095a950935fd5249634246b | 4,631 | ads | Ada | boards/stm32_common/nucleo_f446ze/stm32-board.ads | shakram02/Ada_Drivers_Library | a407ca7ddbc2d9756647016c2f8fd8ef24a239ff | [
"BSD-3-Clause"
] | 192 | 2016-06-01T18:32:04.000Z | 2022-03-26T22:52:31.000Z | boards/stm32_common/nucleo_f446ze/stm32-board.ads | shakram02/Ada_Drivers_Library | a407ca7ddbc2d9756647016c2f8fd8ef24a239ff | [
"BSD-3-Clause"
] | 239 | 2016-05-26T20:02:01.000Z | 2022-03-31T09:46:56.000Z | boards/stm32_common/nucleo_f446ze/stm32-board.ads | shakram02/Ada_Drivers_Library | a407ca7ddbc2d9756647016c2f8fd8ef24a239ff | [
"BSD-3-Clause"
] | 142 | 2016-06-05T08:12:20.000Z | 2022-03-24T17:37:17.000Z | ------------------------------------------------------------------------------
-- --
-- Copyright (C) 2015-2019, AdaCore --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions are --
-- met: --
-- 1. Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- 2. Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in --
-- the documentation and/or other materials provided with the --
-- distribution. --
-- 3. Neither the name of STMicroelectronics nor the names of its --
-- contributors may be used to endorse or promote products derived --
-- from this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT --
-- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, --
-- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY --
-- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT --
-- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE --
-- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
-- --
-- This file is based on: --
-- --
-- @file stm32f4_discovery.h --
-- @author MCD Application Team --
-- @version V1.1.0 --
-- @date 19-June-2014 --
-- @brief This file contains definitions for STM32F4-Discovery Kit --
-- LEDs, push-buttons hardware resources. --
-- --
-- COPYRIGHT(c) 2014 STMicroelectronics --
------------------------------------------------------------------------------
-- This file provides declarations for devices on the STM32F4 Nucleo kits
-- manufactured by ST Microelectronics.
with STM32.Device; use STM32.Device;
with STM32.GPIO; use STM32.GPIO;
with Ada.Interrupts.Names; use Ada.Interrupts;
package STM32.Board is
pragma Elaborate_Body;
subtype User_LED is GPIO_Point;
Green_LED : User_LED renames PB0;
Red_LED : User_LED renames PB14;
Blue_LED : User_LED renames PB7;
All_LEDs : GPIO_Points := Green_LED & Red_LED & Blue_LED;
LCH_LED : GPIO_Point renames Red_LED;
procedure Initialize_LEDs;
-- MUST be called prior to any use of the LEDs
procedure Turn_On (This : in out User_LED) renames STM32.GPIO.Set;
procedure Turn_Off (This : in out User_LED) renames STM32.GPIO.Clear;
procedure Toggle (This : in out User_LED) renames STM32.GPIO.Toggle;
procedure All_LEDs_Off with Inline;
procedure All_LEDs_On with Inline;
procedure Toggle_LEDs (These : in out GPIO_Points)
renames STM32.GPIO.Toggle;
-- User button
User_Button_Point : GPIO_Point renames PC13;
User_Button_Interrupt : constant Interrupt_ID := Names.EXTI15_10_Interrupt;
procedure Configure_User_Button_GPIO;
-- Configures the GPIO port/pin for the blue user button. Sufficient
-- for polling the button, and necessary for having the button generate
-- interrupts.
end STM32.Board;
| 53.848837 | 78 | 0.524509 |
8b293fadf0dfe86ac9e115cf9e00f9155ac4dd8e | 5,285 | ads | Ada | source/xml/sax/xml-sax-error_handlers.ads | svn2github/matreshka | 9d222b3ad9da508855fb1f5adbe5e8a4fad4c530 | [
"BSD-3-Clause"
] | 24 | 2016-11-29T06:59:41.000Z | 2021-08-30T11:55:16.000Z | source/xml/sax/xml-sax-error_handlers.ads | svn2github/matreshka | 9d222b3ad9da508855fb1f5adbe5e8a4fad4c530 | [
"BSD-3-Clause"
] | 2 | 2019-01-16T05:15:20.000Z | 2019-02-03T10:03:32.000Z | source/xml/sax/xml-sax-error_handlers.ads | svn2github/matreshka | 9d222b3ad9da508855fb1f5adbe5e8a4fad4c530 | [
"BSD-3-Clause"
] | 4 | 2017-07-18T07:11:05.000Z | 2020-06-21T03:02:25.000Z | ------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- XML Processor --
-- --
-- Runtime Library Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2010-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 League.Strings;
with XML.SAX.Parse_Exceptions;
package XML.SAX.Error_Handlers is
pragma Preelaborate;
type SAX_Error_Handler is limited interface;
not overriding procedure Error
(Self : in out SAX_Error_Handler;
Occurrence : XML.SAX.Parse_Exceptions.SAX_Parse_Exception;
Success : in out Boolean) is null;
-- A reader might use this subprogram to report a recoverable error. A
-- recoverable error corresponds to the definiton of "error" in section 1.2
-- of the XML 1.0 specification. Details of the error are stored in
-- Occurrence.
--
-- The reader must continue to provide normal parsing events after invoking
-- this subprogram.
--
-- If this subprogram sets Success to False the reader stops parsing and
-- reports an fatal error. The reader uses the function Error_String to get
-- the error message.
not overriding function Error_String
(Self : SAX_Error_Handler)
return League.Strings.Universal_String is abstract;
not overriding procedure Fatal_Error
(Self : in out SAX_Error_Handler;
Occurrence : XML.SAX.Parse_Exceptions.SAX_Parse_Exception) is null;
-- A reader must use this subprogram to report a non-recoverable error.
-- Details of the error are stored in Occurrence.
not overriding procedure Warning
(Self : in out SAX_Error_Handler;
Occurrence : XML.SAX.Parse_Exceptions.SAX_Parse_Exception;
Success : in out Boolean) is null;
-- A reader might use this subprogram to report a warning. Warnings are
-- conditions that are not errors or fatal errors as defined by the XML 1.0
-- specification. Details of the warning are stored in Occurrence.
--
-- If this subprogram sets Success to False the reader stops parsing and
-- reports an fatal error. The reader uses the function Error_String to get
-- the error message.
end XML.SAX.Error_Handlers;
| 56.827957 | 79 | 0.510123 |
a0a7d47518ca5d5aa0b5bf02394795dffc2c1f52 | 9,156 | ads | Ada | runtime/ravenscar-sfp-stm32f427/common/s-unstyp.ads | TUM-EI-RCS/StratoX | 5fdd04e01a25efef6052376f43ce85b5bc973392 | [
"BSD-3-Clause"
] | 12 | 2017-06-08T14:19:57.000Z | 2022-03-09T02:48:59.000Z | runtime/ravenscar-sfp-stm32f427/common/s-unstyp.ads | TUM-EI-RCS/StratoX | 5fdd04e01a25efef6052376f43ce85b5bc973392 | [
"BSD-3-Clause"
] | 6 | 2017-06-08T13:13:50.000Z | 2020-05-15T09:32:43.000Z | runtime/ravenscar-sfp-stm32f427/common/s-unstyp.ads | TUM-EI-RCS/StratoX | 5fdd04e01a25efef6052376f43ce85b5bc973392 | [
"BSD-3-Clause"
] | 3 | 2017-06-30T14:05:06.000Z | 2022-02-17T12:20:45.000Z | ------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- S Y S T E M . U N S I G N E D _ T Y P E S --
-- --
-- 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. --
-- --
-- --
-- --
-- --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
-- This package contains definitions of standard unsigned types that
-- correspond in size to the standard signed types declared in Standard,
-- and (unlike the types in Interfaces) have corresponding names. It
-- also contains some related definitions for other specialized types
-- used by the compiler in connection with packed array types.
pragma Compiler_Unit_Warning;
package System.Unsigned_Types is
pragma Pure;
pragma No_Elaboration_Code_All;
type Short_Short_Unsigned is mod 2 ** Short_Short_Integer'Size;
type Short_Unsigned is mod 2 ** Short_Integer'Size;
type Unsigned is mod 2 ** Integer'Size;
type Long_Unsigned is mod 2 ** Long_Integer'Size;
type Long_Long_Unsigned is mod 2 ** Long_Long_Integer'Size;
type Float_Unsigned is mod 2 ** Float'Size;
-- Used in the implementation of Is_Negative intrinsic (see Exp_Intr)
type Packed_Byte is mod 2 ** 8;
pragma Universal_Aliasing (Packed_Byte);
for Packed_Byte'Size use 8;
-- Component type for Packed_Bytes1, Packed_Bytes2 and Packed_Byte4 arrays.
-- As this type is used by the compiler to implement operations on user
-- packed array, it needs to be able to alias any type.
type Packed_Bytes1 is array (Natural range <>) of aliased Packed_Byte;
for Packed_Bytes1'Alignment use 1;
for Packed_Bytes1'Component_Size use Packed_Byte'Size;
pragma Suppress_Initialization (Packed_Bytes1);
-- This is the type used to implement packed arrays where no alignment
-- is required. This includes the cases of 1,2,4 (where we use direct
-- masking operations), and all odd component sizes (where the clusters
-- are not aligned anyway, see, e.g. System.Pack_07 in file s-pack07
-- for details.
type Packed_Bytes2 is new Packed_Bytes1;
for Packed_Bytes2'Alignment use Integer'Min (2, Standard'Maximum_Alignment);
pragma Suppress_Initialization (Packed_Bytes2);
-- This is the type used to implement packed arrays where an alignment
-- of 2 (is possible) is helpful for maximum efficiency of the get and
-- set routines in the corresponding library unit. This is true of all
-- component sizes that are even but not divisible by 4 (other than 2 for
-- which we use direct masking operations). In such cases, the clusters
-- can be assumed to be 2-byte aligned if the array is aligned. See for
-- example System.Pack_10 in file s-pack10).
type Packed_Bytes4 is new Packed_Bytes1;
for Packed_Bytes4'Alignment use Integer'Min (4, Standard'Maximum_Alignment);
pragma Suppress_Initialization (Packed_Bytes4);
-- This is the type used to implement packed arrays where an alignment
-- of 4 (if possible) is helpful for maximum efficiency of the get and
-- set routines in the corresponding library unit. This is true of all
-- component sizes that are divisible by 4 (other than powers of 2, which
-- are either handled by direct masking or not packed at all). In such
-- cases the clusters can be assumed to be 4-byte aligned if the array
-- is aligned (see System.Pack_12 in file s-pack12 as an example).
type Bits_1 is mod 2**1;
type Bits_2 is mod 2**2;
type Bits_4 is mod 2**4;
-- Types used for packed array conversions
subtype Bytes_F is Packed_Bytes4 (1 .. Float'Size / 8);
-- Type used in implementation of Is_Negative intrinsic (see Exp_Intr)
function Shift_Left
(Value : Short_Short_Unsigned;
Amount : Natural) return Short_Short_Unsigned;
function Shift_Right
(Value : Short_Short_Unsigned;
Amount : Natural) return Short_Short_Unsigned;
function Shift_Right_Arithmetic
(Value : Short_Short_Unsigned;
Amount : Natural) return Short_Short_Unsigned;
function Rotate_Left
(Value : Short_Short_Unsigned;
Amount : Natural) return Short_Short_Unsigned;
function Rotate_Right
(Value : Short_Short_Unsigned;
Amount : Natural) return Short_Short_Unsigned;
function Shift_Left
(Value : Short_Unsigned;
Amount : Natural) return Short_Unsigned;
function Shift_Right
(Value : Short_Unsigned;
Amount : Natural) return Short_Unsigned;
function Shift_Right_Arithmetic
(Value : Short_Unsigned;
Amount : Natural) return Short_Unsigned;
function Rotate_Left
(Value : Short_Unsigned;
Amount : Natural) return Short_Unsigned;
function Rotate_Right
(Value : Short_Unsigned;
Amount : Natural) return Short_Unsigned;
function Shift_Left
(Value : Unsigned;
Amount : Natural) return Unsigned;
function Shift_Right
(Value : Unsigned;
Amount : Natural) return Unsigned;
function Shift_Right_Arithmetic
(Value : Unsigned;
Amount : Natural) return Unsigned;
function Rotate_Left
(Value : Unsigned;
Amount : Natural) return Unsigned;
function Rotate_Right
(Value : Unsigned;
Amount : Natural) return Unsigned;
function Shift_Left
(Value : Long_Unsigned;
Amount : Natural) return Long_Unsigned;
function Shift_Right
(Value : Long_Unsigned;
Amount : Natural) return Long_Unsigned;
function Shift_Right_Arithmetic
(Value : Long_Unsigned;
Amount : Natural) return Long_Unsigned;
function Rotate_Left
(Value : Long_Unsigned;
Amount : Natural) return Long_Unsigned;
function Rotate_Right
(Value : Long_Unsigned;
Amount : Natural) return Long_Unsigned;
function Shift_Left
(Value : Long_Long_Unsigned;
Amount : Natural) return Long_Long_Unsigned;
function Shift_Right
(Value : Long_Long_Unsigned;
Amount : Natural) return Long_Long_Unsigned;
function Shift_Right_Arithmetic
(Value : Long_Long_Unsigned;
Amount : Natural) return Long_Long_Unsigned;
function Rotate_Left
(Value : Long_Long_Unsigned;
Amount : Natural) return Long_Long_Unsigned;
function Rotate_Right
(Value : Long_Long_Unsigned;
Amount : Natural) return Long_Long_Unsigned;
pragma Import (Intrinsic, Shift_Left);
pragma Import (Intrinsic, Shift_Right);
pragma Import (Intrinsic, Shift_Right_Arithmetic);
pragma Import (Intrinsic, Rotate_Left);
pragma Import (Intrinsic, Rotate_Right);
-- The following definitions are obsolescent. They were needed by the
-- previous version of the compiler and runtime, but are not needed
-- by the current version. We retain them to help with bootstrap path
-- problems. Also they seem harmless, and if any user programs have
-- been using these types, why discombobulate them?
subtype Packed_Bytes is Packed_Bytes4;
subtype Packed_Bytes_Unaligned is Packed_Bytes1;
end System.Unsigned_Types;
| 42.388889 | 79 | 0.611512 |
9a71491a7665518d52ccb97ca0cc0951a16b52d0 | 3,481 | ads | Ada | source/sql/sqlite3/matreshka-internals-sql_drivers-sqlite3-factory.ads | svn2github/matreshka | 9d222b3ad9da508855fb1f5adbe5e8a4fad4c530 | [
"BSD-3-Clause"
] | 24 | 2016-11-29T06:59:41.000Z | 2021-08-30T11:55:16.000Z | source/sql/sqlite3/matreshka-internals-sql_drivers-sqlite3-factory.ads | svn2github/matreshka | 9d222b3ad9da508855fb1f5adbe5e8a4fad4c530 | [
"BSD-3-Clause"
] | 2 | 2019-01-16T05:15:20.000Z | 2019-02-03T10:03:32.000Z | source/sql/sqlite3/matreshka-internals-sql_drivers-sqlite3-factory.ads | svn2github/matreshka | 9d222b3ad9da508855fb1f5adbe5e8a4fad4c530 | [
"BSD-3-Clause"
] | 4 | 2017-07-18T07:11:05.000Z | 2020-06-21T03:02:25.000Z | ------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- SQL Database Access --
-- --
-- Runtime Library Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2011, Vadim Godunko <[email protected]> --
-- All rights reserved. --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions --
-- are met: --
-- --
-- * Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- --
-- * Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in the --
-- documentation and/or other materials provided with the distribution. --
-- --
-- * Neither the name of the Vadim Godunko, IE nor the names of its --
-- contributors may be used to endorse or promote products derived from --
-- this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
-- $Revision$ $Date$
------------------------------------------------------------------------------
package Matreshka.Internals.SQL_Drivers.SQLite3.Factory is
pragma Elaborate_Body;
end Matreshka.Internals.SQL_Drivers.SQLite3.Factory;
| 69.62 | 78 | 0.405056 |
a0c8096f2a5cb076e536ded025d1437915ed3225 | 18,409 | ads | Ada | arch/ARM/STM32/svd/stm32l4x1/stm32_svd-exti.ads | morbos/Ada_Drivers_Library | a4ab26799be60997c38735f4056160c4af597ef7 | [
"BSD-3-Clause"
] | 2 | 2018-05-16T03:56:39.000Z | 2019-07-31T13:53:56.000Z | arch/ARM/STM32/svd/stm32l4x1/stm32_svd-exti.ads | morbos/Ada_Drivers_Library | a4ab26799be60997c38735f4056160c4af597ef7 | [
"BSD-3-Clause"
] | null | null | null | arch/ARM/STM32/svd/stm32l4x1/stm32_svd-exti.ads | morbos/Ada_Drivers_Library | a4ab26799be60997c38735f4056160c4af597ef7 | [
"BSD-3-Clause"
] | null | null | null | -- This spec has been automatically generated from STM32L4x1.svd
pragma Restrictions (No_Elaboration_Code);
pragma Ada_2012;
pragma Style_Checks (Off);
with HAL;
with System;
package STM32_SVD.EXTI is
pragma Preelaborate;
---------------
-- Registers --
---------------
-- IMR1_MR array
type IMR1_MR_Field_Array is array (0 .. 31) of Boolean
with Component_Size => 1, Size => 32;
-- Interrupt mask register
type IMR1_Register
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- MR as a value
Val : HAL.UInt32;
when True =>
-- MR as an array
Arr : IMR1_MR_Field_Array;
end case;
end record
with Unchecked_Union, Size => 32, Volatile_Full_Access,
Bit_Order => System.Low_Order_First;
for IMR1_Register use record
Val at 0 range 0 .. 31;
Arr at 0 range 0 .. 31;
end record;
-- EMR1_MR array
type EMR1_MR_Field_Array is array (0 .. 31) of Boolean
with Component_Size => 1, Size => 32;
-- Event mask register
type EMR1_Register
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- MR as a value
Val : HAL.UInt32;
when True =>
-- MR as an array
Arr : EMR1_MR_Field_Array;
end case;
end record
with Unchecked_Union, Size => 32, Volatile_Full_Access,
Bit_Order => System.Low_Order_First;
for EMR1_Register use record
Val at 0 range 0 .. 31;
Arr at 0 range 0 .. 31;
end record;
-- RTSR1_TR array
type RTSR1_TR_Field_Array is array (0 .. 16) of Boolean
with Component_Size => 1, Size => 17;
-- Type definition for RTSR1_TR
type RTSR1_TR_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TR as a value
Val : HAL.UInt17;
when True =>
-- TR as an array
Arr : RTSR1_TR_Field_Array;
end case;
end record
with Unchecked_Union, Size => 17;
for RTSR1_TR_Field use record
Val at 0 range 0 .. 16;
Arr at 0 range 0 .. 16;
end record;
-- RTSR1_TR array
type RTSR1_TR_Field_Array_1 is array (18 .. 22) of Boolean
with Component_Size => 1, Size => 5;
-- Type definition for RTSR1_TR
type RTSR1_TR_Field_1
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TR as a value
Val : HAL.UInt5;
when True =>
-- TR as an array
Arr : RTSR1_TR_Field_Array_1;
end case;
end record
with Unchecked_Union, Size => 5;
for RTSR1_TR_Field_1 use record
Val at 0 range 0 .. 4;
Arr at 0 range 0 .. 4;
end record;
-- Rising Trigger selection register
type RTSR1_Register is record
-- Rising trigger event configuration of line 0
TR : RTSR1_TR_Field := (As_Array => False, Val => 16#0#);
-- unspecified
Reserved_17_17 : HAL.Bit := 16#0#;
-- Rising trigger event configuration of line 18
TR_1 : RTSR1_TR_Field_1 := (As_Array => False, Val => 16#0#);
-- unspecified
Reserved_23_31 : HAL.UInt9 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for RTSR1_Register use record
TR at 0 range 0 .. 16;
Reserved_17_17 at 0 range 17 .. 17;
TR_1 at 0 range 18 .. 22;
Reserved_23_31 at 0 range 23 .. 31;
end record;
-- FTSR1_TR array
type FTSR1_TR_Field_Array is array (0 .. 16) of Boolean
with Component_Size => 1, Size => 17;
-- Type definition for FTSR1_TR
type FTSR1_TR_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TR as a value
Val : HAL.UInt17;
when True =>
-- TR as an array
Arr : FTSR1_TR_Field_Array;
end case;
end record
with Unchecked_Union, Size => 17;
for FTSR1_TR_Field use record
Val at 0 range 0 .. 16;
Arr at 0 range 0 .. 16;
end record;
-- FTSR1_TR array
type FTSR1_TR_Field_Array_1 is array (18 .. 22) of Boolean
with Component_Size => 1, Size => 5;
-- Type definition for FTSR1_TR
type FTSR1_TR_Field_1
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TR as a value
Val : HAL.UInt5;
when True =>
-- TR as an array
Arr : FTSR1_TR_Field_Array_1;
end case;
end record
with Unchecked_Union, Size => 5;
for FTSR1_TR_Field_1 use record
Val at 0 range 0 .. 4;
Arr at 0 range 0 .. 4;
end record;
-- Falling Trigger selection register
type FTSR1_Register is record
-- Falling trigger event configuration of line 0
TR : FTSR1_TR_Field := (As_Array => False, Val => 16#0#);
-- unspecified
Reserved_17_17 : HAL.Bit := 16#0#;
-- Falling trigger event configuration of line 18
TR_1 : FTSR1_TR_Field_1 := (As_Array => False, Val => 16#0#);
-- unspecified
Reserved_23_31 : HAL.UInt9 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for FTSR1_Register use record
TR at 0 range 0 .. 16;
Reserved_17_17 at 0 range 17 .. 17;
TR_1 at 0 range 18 .. 22;
Reserved_23_31 at 0 range 23 .. 31;
end record;
-- SWIER1_SWIER array
type SWIER1_SWIER_Field_Array is array (0 .. 16) of Boolean
with Component_Size => 1, Size => 17;
-- Type definition for SWIER1_SWIER
type SWIER1_SWIER_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- SWIER as a value
Val : HAL.UInt17;
when True =>
-- SWIER as an array
Arr : SWIER1_SWIER_Field_Array;
end case;
end record
with Unchecked_Union, Size => 17;
for SWIER1_SWIER_Field use record
Val at 0 range 0 .. 16;
Arr at 0 range 0 .. 16;
end record;
-- SWIER1_SWIER array
type SWIER1_SWIER_Field_Array_1 is array (18 .. 22) of Boolean
with Component_Size => 1, Size => 5;
-- Type definition for SWIER1_SWIER
type SWIER1_SWIER_Field_1
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- SWIER as a value
Val : HAL.UInt5;
when True =>
-- SWIER as an array
Arr : SWIER1_SWIER_Field_Array_1;
end case;
end record
with Unchecked_Union, Size => 5;
for SWIER1_SWIER_Field_1 use record
Val at 0 range 0 .. 4;
Arr at 0 range 0 .. 4;
end record;
-- Software interrupt event register
type SWIER1_Register is record
-- Software Interrupt on line 0
SWIER : SWIER1_SWIER_Field :=
(As_Array => False, Val => 16#0#);
-- unspecified
Reserved_17_17 : HAL.Bit := 16#0#;
-- Software Interrupt on line 18
SWIER_1 : SWIER1_SWIER_Field_1 :=
(As_Array => False, Val => 16#0#);
-- unspecified
Reserved_23_31 : HAL.UInt9 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for SWIER1_Register use record
SWIER at 0 range 0 .. 16;
Reserved_17_17 at 0 range 17 .. 17;
SWIER_1 at 0 range 18 .. 22;
Reserved_23_31 at 0 range 23 .. 31;
end record;
-- PR1_PR array
type PR1_PR_Field_Array is array (0 .. 16) of Boolean
with Component_Size => 1, Size => 17;
-- Type definition for PR1_PR
type PR1_PR_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- PR as a value
Val : HAL.UInt17;
when True =>
-- PR as an array
Arr : PR1_PR_Field_Array;
end case;
end record
with Unchecked_Union, Size => 17;
for PR1_PR_Field use record
Val at 0 range 0 .. 16;
Arr at 0 range 0 .. 16;
end record;
-- PR1_PR array
type PR1_PR_Field_Array_1 is array (18 .. 22) of Boolean
with Component_Size => 1, Size => 5;
-- Type definition for PR1_PR
type PR1_PR_Field_1
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- PR as a value
Val : HAL.UInt5;
when True =>
-- PR as an array
Arr : PR1_PR_Field_Array_1;
end case;
end record
with Unchecked_Union, Size => 5;
for PR1_PR_Field_1 use record
Val at 0 range 0 .. 4;
Arr at 0 range 0 .. 4;
end record;
-- Pending register
type PR1_Register is record
-- Pending bit 0
PR : PR1_PR_Field := (As_Array => False, Val => 16#0#);
-- unspecified
Reserved_17_17 : HAL.Bit := 16#0#;
-- Pending bit 18
PR_1 : PR1_PR_Field_1 := (As_Array => False, Val => 16#0#);
-- unspecified
Reserved_23_31 : HAL.UInt9 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for PR1_Register use record
PR at 0 range 0 .. 16;
Reserved_17_17 at 0 range 17 .. 17;
PR_1 at 0 range 18 .. 22;
Reserved_23_31 at 0 range 23 .. 31;
end record;
-- IMR2_MR array
type IMR2_MR_Field_Array is array (32 .. 39) of Boolean
with Component_Size => 1, Size => 8;
-- Type definition for IMR2_MR
type IMR2_MR_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- MR as a value
Val : HAL.UInt8;
when True =>
-- MR as an array
Arr : IMR2_MR_Field_Array;
end case;
end record
with Unchecked_Union, Size => 8;
for IMR2_MR_Field use record
Val at 0 range 0 .. 7;
Arr at 0 range 0 .. 7;
end record;
-- Interrupt mask register
type IMR2_Register is record
-- Interrupt Mask on external/internal line 32
MR : IMR2_MR_Field := (As_Array => False, Val => 16#1#);
-- unspecified
Reserved_8_31 : HAL.UInt24 := 16#FFFFFF#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for IMR2_Register use record
MR at 0 range 0 .. 7;
Reserved_8_31 at 0 range 8 .. 31;
end record;
-- EMR2_MR array
type EMR2_MR_Field_Array is array (32 .. 39) of Boolean
with Component_Size => 1, Size => 8;
-- Type definition for EMR2_MR
type EMR2_MR_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- MR as a value
Val : HAL.UInt8;
when True =>
-- MR as an array
Arr : EMR2_MR_Field_Array;
end case;
end record
with Unchecked_Union, Size => 8;
for EMR2_MR_Field use record
Val at 0 range 0 .. 7;
Arr at 0 range 0 .. 7;
end record;
-- Event mask register
type EMR2_Register is record
-- Event mask on external/internal line 32
MR : EMR2_MR_Field := (As_Array => False, Val => 16#0#);
-- unspecified
Reserved_8_31 : HAL.UInt24 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for EMR2_Register use record
MR at 0 range 0 .. 7;
Reserved_8_31 at 0 range 8 .. 31;
end record;
-- RTSR2_RT array
type RTSR2_RT_Field_Array is array (35 .. 38) of Boolean
with Component_Size => 1, Size => 4;
-- Type definition for RTSR2_RT
type RTSR2_RT_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- RT as a value
Val : HAL.UInt4;
when True =>
-- RT as an array
Arr : RTSR2_RT_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for RTSR2_RT_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
-- Rising Trigger selection register
type RTSR2_Register is record
-- unspecified
Reserved_0_2 : HAL.UInt3 := 16#0#;
-- Rising trigger event configuration bit of line 35
RT : RTSR2_RT_Field := (As_Array => False, Val => 16#0#);
-- unspecified
Reserved_7_31 : HAL.UInt25 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for RTSR2_Register use record
Reserved_0_2 at 0 range 0 .. 2;
RT at 0 range 3 .. 6;
Reserved_7_31 at 0 range 7 .. 31;
end record;
-- FTSR2_FT array
type FTSR2_FT_Field_Array is array (35 .. 38) of Boolean
with Component_Size => 1, Size => 4;
-- Type definition for FTSR2_FT
type FTSR2_FT_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- FT as a value
Val : HAL.UInt4;
when True =>
-- FT as an array
Arr : FTSR2_FT_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for FTSR2_FT_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
-- Falling Trigger selection register
type FTSR2_Register is record
-- unspecified
Reserved_0_2 : HAL.UInt3 := 16#0#;
-- Falling trigger event configuration bit of line 35
FT : FTSR2_FT_Field := (As_Array => False, Val => 16#0#);
-- unspecified
Reserved_7_31 : HAL.UInt25 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for FTSR2_Register use record
Reserved_0_2 at 0 range 0 .. 2;
FT at 0 range 3 .. 6;
Reserved_7_31 at 0 range 7 .. 31;
end record;
-- SWIER2_SWI array
type SWIER2_SWI_Field_Array is array (35 .. 38) of Boolean
with Component_Size => 1, Size => 4;
-- Type definition for SWIER2_SWI
type SWIER2_SWI_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- SWI as a value
Val : HAL.UInt4;
when True =>
-- SWI as an array
Arr : SWIER2_SWI_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for SWIER2_SWI_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
-- Software interrupt event register
type SWIER2_Register is record
-- unspecified
Reserved_0_2 : HAL.UInt3 := 16#0#;
-- Software interrupt on line 35
SWI : SWIER2_SWI_Field := (As_Array => False, Val => 16#0#);
-- unspecified
Reserved_7_31 : HAL.UInt25 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for SWIER2_Register use record
Reserved_0_2 at 0 range 0 .. 2;
SWI at 0 range 3 .. 6;
Reserved_7_31 at 0 range 7 .. 31;
end record;
-- PR2_PIF array
type PR2_PIF_Field_Array is array (35 .. 38) of Boolean
with Component_Size => 1, Size => 4;
-- Type definition for PR2_PIF
type PR2_PIF_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- PIF as a value
Val : HAL.UInt4;
when True =>
-- PIF as an array
Arr : PR2_PIF_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for PR2_PIF_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
-- Pending register
type PR2_Register is record
-- unspecified
Reserved_0_2 : HAL.UInt3 := 16#0#;
-- Pending interrupt flag on line 35
PIF : PR2_PIF_Field := (As_Array => False, Val => 16#0#);
-- unspecified
Reserved_7_31 : HAL.UInt25 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for PR2_Register use record
Reserved_0_2 at 0 range 0 .. 2;
PIF at 0 range 3 .. 6;
Reserved_7_31 at 0 range 7 .. 31;
end record;
-----------------
-- Peripherals --
-----------------
-- External interrupt/event controller
type EXTI_Peripheral is record
-- Interrupt mask register
IMR1 : aliased IMR1_Register;
-- Event mask register
EMR1 : aliased EMR1_Register;
-- Rising Trigger selection register
RTSR1 : aliased RTSR1_Register;
-- Falling Trigger selection register
FTSR1 : aliased FTSR1_Register;
-- Software interrupt event register
SWIER1 : aliased SWIER1_Register;
-- Pending register
PR1 : aliased PR1_Register;
-- Interrupt mask register
IMR2 : aliased IMR2_Register;
-- Event mask register
EMR2 : aliased EMR2_Register;
-- Rising Trigger selection register
RTSR2 : aliased RTSR2_Register;
-- Falling Trigger selection register
FTSR2 : aliased FTSR2_Register;
-- Software interrupt event register
SWIER2 : aliased SWIER2_Register;
-- Pending register
PR2 : aliased PR2_Register;
end record
with Volatile;
for EXTI_Peripheral use record
IMR1 at 16#0# range 0 .. 31;
EMR1 at 16#4# range 0 .. 31;
RTSR1 at 16#8# range 0 .. 31;
FTSR1 at 16#C# range 0 .. 31;
SWIER1 at 16#10# range 0 .. 31;
PR1 at 16#14# range 0 .. 31;
IMR2 at 16#20# range 0 .. 31;
EMR2 at 16#24# range 0 .. 31;
RTSR2 at 16#28# range 0 .. 31;
FTSR2 at 16#2C# range 0 .. 31;
SWIER2 at 16#30# range 0 .. 31;
PR2 at 16#34# range 0 .. 31;
end record;
-- External interrupt/event controller
EXTI_Periph : aliased EXTI_Peripheral
with Import, Address => System'To_Address (16#40010400#);
end STM32_SVD.EXTI;
| 28.585404 | 77 | 0.57624 |
a0dfee6c9728fa97df35c45eba67753aead25733 | 7,919 | adb | Ada | src/natools-web-sites-holders.adb | faelys/natools-web | f7ba99f2ffb6f5a06d1b1e8becbf5f92fd58c750 | [
"0BSD"
] | 1 | 2015-04-23T10:48:58.000Z | 2015-04-23T10:48:58.000Z | src/natools-web-sites-holders.adb | faelys/natools-web | f7ba99f2ffb6f5a06d1b1e8becbf5f92fd58c750 | [
"0BSD"
] | null | null | null | src/natools-web-sites-holders.adb | faelys/natools-web | f7ba99f2ffb6f5a06d1b1e8becbf5f92fd58c750 | [
"0BSD"
] | null | null | null | ------------------------------------------------------------------------------
-- Copyright (c) 2015-2019, Natacha Porté --
-- --
-- Permission to use, copy, modify, and distribute this software for any --
-- purpose with or without fee is hereby granted, provided that the above --
-- copyright notice and this permission notice appear in all copies. --
-- --
-- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES --
-- WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF --
-- MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR --
-- ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES --
-- WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN --
-- ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF --
-- OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. --
------------------------------------------------------------------------------
with Natools.Cron;
package body Natools.Web.Sites.Holders is
type Cron_Callback is new Natools.Cron.Callback with record
Target : Site_Refs.Reference;
end record;
function Create (Target : Site_Refs.Reference)
return Natools.Cron.Callback'Class;
overriding procedure Run (Object : in out Cron_Callback);
------------------------------
-- Local Helper Subprograms --
------------------------------
function Create (Target : Site_Refs.Reference)
return Natools.Cron.Callback'Class is
begin
return Cron_Callback'(Target => Target);
end Create;
procedure Run (Object : in out Cron_Callback) is
begin
Updates.Reload (Object.Target.Query);
end Run;
-----------------------------
-- Holder Public Interface --
-----------------------------
overriding procedure Queue
(Self : in out Holder;
Update : in Updates.Site_Update'Class) is
begin
Self.Queue.Append (Update_Holders.To_Holder (Update));
end Queue;
not overriding procedure Load
(Self : in out Holder;
File_Name : in String)
is
New_Site : constant Site_Refs.Data_Access := new Site;
New_Ref : constant Site_Refs.Reference
:= Site_Refs.Create (New_Site);
begin
New_Site.Constructors := Self.Constructors;
New_Site.Filters := Self.Filters;
New_Site.Updater := Self'Unchecked_Access;
New_Site.Reset (File_Name);
Self.Ref := New_Ref;
Self.Queue.Append (Update_Holders.Empty_Holder);
end Load;
not overriding procedure Register
(Self : in out Holder;
Name : in String;
Constructor : in Filters.Stores.Constructor) is
begin
Self.Filters.Register (S_Expressions.To_Atom (Name), Constructor);
end Register;
not overriding procedure Register
(Self : in out Holder;
Name : in String;
Constructor : in Page_Constructor) is
begin
Self.Constructors.Page.Insert
(S_Expressions.To_Atom (Name), Constructor);
end Register;
not overriding procedure Register
(Self : in out Holder;
Name : in String;
Constructor : in Backend_Constructor) is
begin
Self.Constructors.Backend.Insert
(S_Expressions.To_Atom (Name), Constructor);
end Register;
not overriding procedure Register
(Self : in out Holder;
Name : in String;
Constructor : in ACL_Constructor) is
begin
Self.Constructors.ACL.Insert
(S_Expressions.To_Atom (Name), Constructor);
end Register;
not overriding procedure Register
(Self : in out Holder;
Key : in Character;
Filter : in not null Comment_Cookies.Decoder) is
begin
Comment_Cookies.Register (Self.Constructors.Codec_DB, Key, Filter);
end Register;
not overriding procedure Respond
(Self : in Holder;
Exchange : aliased in out Exchanges.Exchange) is
begin
Self.Ref.Update.Respond (Exchange);
end Respond;
not overriding procedure Set_Cookie_Encoder
(Self : in out Holder;
Filter : in not null Comment_Cookies.Encoder;
Serialization : in Comment_Cookies.Serialization_Kind) is
begin
Comment_Cookies.Set_Encoder
(Self.Constructors.Codec_DB, Filter, Serialization);
end Set_Cookie_Encoder;
------------------
-- Update Queue --
------------------
protected body Update_Queue is
entry Append (Update : in Update_Holders.Holder) when True is
begin
if Task_Waiting then
Task_Waiting := False;
requeue Parent.Worker.Run;
else
List.Append (Update);
end if;
end Append;
procedure Next
(Update : out Update_Holders.Holder;
Has_Update : out Boolean) is
begin
if List.Is_Empty then
Task_Waiting := True;
Update := Update_Holders.Empty_Holder;
Has_Update := False;
else
pragma Assert (not Task_Waiting);
Update := List.First_Element;
Has_Update := True;
List.Delete_First;
end if;
end Next;
end Update_Queue;
-------------------
-- Update Worker --
-------------------
task body Worker_Task is
Container : Update_Holders.Holder;
Cron_Entry : Natools.Cron.Cron_Entry;
Has_Update : Boolean;
begin
loop
Parent.Queue.Next (Container, Has_Update);
if not Has_Update then
select
accept Run (Update : in Update_Holders.Holder) do
Container := Update;
end Run;
or
terminate;
end select;
end if;
Cron_Entry.Reset;
if not Container.Is_Empty then
declare
Old_Site : constant Site_Refs.Accessor := Parent.Ref.Query;
New_Site : constant Site_Refs.Data_Access := new Site'
(Load_Date => Old_Site.Load_Date,
ACL => Old_Site.ACL,
Backends => Old_Site.Backends,
Constructors => Old_Site.Constructors,
Default_Template => Old_Site.Default_Template,
Expire => Old_Site.Expire,
File_Name => Old_Site.File_Name,
Filters => Old_Site.Filters,
Loaders => Old_Site.Loaders,
Named_Elements => Old_Site.Named_Elements,
Pages => Old_Site.Pages,
Printer_Parameters => Old_Site.Printer_Parameters,
Static => Old_Site.Static,
Tags => Old_Site.Tags,
Templates => Old_Site.Templates,
Updater => Old_Site.Updater);
New_Ref : constant Site_Refs.Reference
:= Site_Refs.Create (New_Site);
use type Ada.Calendar.Time;
begin
Updates.Update (Container.Element, New_Site.all);
Parent.Ref := New_Ref;
if New_Site.Expire.Present then
Cron_Entry.Set
(New_Site.Expire.Time + 1.0, Create (New_Ref));
end if;
end;
elsif not Parent.Ref.Is_Empty then
declare
Ref : constant Site_Refs.Reference := Parent.Ref;
Current_Site : constant Site_Refs.Accessor := Ref.Query;
use type Ada.Calendar.Time;
begin
if Current_Site.Expire.Present then
Cron_Entry.Set
(Current_Site.Expire.Time + 1.0, Create (Ref));
end if;
end;
end if;
end loop;
end Worker_Task;
end Natools.Web.Sites.Holders;
| 31.054902 | 78 | 0.568885 |
38b51155430daf44987acc5b9e8f04d1457a218c | 7,744 | adb | Ada | memsim-master/src/parser.adb | strenkml/EE368 | 00f15bce9e65badddc613355643b1061fd4a8195 | [
"MIT"
] | null | null | null | memsim-master/src/parser.adb | strenkml/EE368 | 00f15bce9e65badddc613355643b1061fd4a8195 | [
"MIT"
] | null | null | null | memsim-master/src/parser.adb | strenkml/EE368 | 00f15bce9e65badddc613355643b1061fd4a8195 | [
"MIT"
] | null | null | null |
with Ada.Text_IO; use Ada.Text_IO;
with Ada.Strings.Unbounded; use Ada.Strings.Unbounded;
package body Parser is
procedure Parse_Arbiter(parser : in out Parser_Type;
result : out Memory_Pointer) is separate;
procedure Parse_Cache(parser : in out Parser_Type;
result : out Memory_Pointer) is separate;
procedure Parse_DRAM(parser : in out Parser_Type;
result : out Memory_Pointer) is separate;
procedure Parse_Dup(parser : in out Parser_Type;
result : out Memory_Pointer) is separate;
procedure Parse_EOR(parser : in out Parser_Type;
result : out Memory_Pointer) is separate;
procedure Parse_Flash(parser : in out Parser_Type;
result : out Memory_Pointer) is separate;
procedure Parse_Flip(parser : in out Parser_Type;
result : out Memory_Pointer) is separate;
procedure Parse_Join(parser : in out Parser_Type;
result : out Memory_Pointer) is separate;
procedure Parse_Offset(parser : in out Parser_Type;
result : out Memory_Pointer) is separate;
procedure Parse_Option(parser : in out Parser_Type;
result : out Memory_Pointer) is separate;
procedure Parse_Perfect_Prefetch(parser : in out Parser_Type;
result : out Memory_Pointer) is separate;
procedure Parse_Prefetch(parser : in out Parser_Type;
result : out Memory_Pointer) is separate;
procedure Parse_RAM(parser : in out Parser_Type;
result : out Memory_Pointer) is separate;
procedure Parse_Register(parser : in out Parser_Type;
result : out Memory_Pointer) is separate;
procedure Parse_Shift(parser : in out Parser_Type;
result : out Memory_Pointer) is separate;
procedure Parse_Split(parser : in out Parser_Type;
result : out Memory_Pointer) is separate;
procedure Parse_SPM(parser : in out Parser_Type;
result : out Memory_Pointer) is separate;
procedure Parse_Stats(parser : in out Parser_Type;
result : out Memory_Pointer) is separate;
procedure Parse_Super(parser : in out Parser_Type;
result : out Memory_Pointer) is separate;
procedure Parse_Trace(parser : in out Parser_Type;
result : out Memory_Pointer) is separate;
type Memory_Parser_Type is record
name : Unbounded_String;
parser : access procedure(parser : in out Parser_Type;
result : out Memory_Pointer);
end record;
type Memory_Parser_Array is array(Positive range <>) of Memory_Parser_Type;
parser_map : constant Memory_Parser_Array := (
(To_Unbounded_String("arbiter"), Parse_Arbiter'Access),
(To_Unbounded_String("cache"), Parse_Cache'Access),
(To_Unbounded_String("dram"), Parse_DRAM'Access),
(To_Unbounded_String("dup"), Parse_Dup'Access),
(To_Unbounded_String("eor"), Parse_EOR'Access),
(To_Unbounded_String("flash"), Parse_Flash'Access),
(To_Unbounded_String("flip"), Parse_Flip'Access),
(To_Unbounded_String("join"), Parse_Join'Access),
(To_Unbounded_String("offset"), Parse_Offset'Access),
(To_Unbounded_String("option"), Parse_Option'Access),
(To_Unbounded_String("perfect_prefetch"), Parse_Perfect_Prefetch'Access),
(To_Unbounded_String("prefetch"), Parse_Prefetch'Access),
(To_Unbounded_String("ram"), Parse_RAM'Access),
(To_Unbounded_String("register"), Parse_Register'Access),
(To_Unbounded_String("shift"), Parse_Shift'Access),
(To_Unbounded_String("split"), Parse_Split'Access),
(To_Unbounded_String("spm"), Parse_SPM'Access),
(To_Unbounded_String("stats"), Parse_Stats'Access),
(To_Unbounded_String("super"), Parse_Super'Access),
(To_Unbounded_String("trace"), Parse_Trace'Access)
);
function Parse_Boolean(value : String) return Boolean is
begin
if value = "true" then
return True;
elsif value = "false" then
return False;
else
raise Data_Error;
end if;
end Parse_Boolean;
procedure Parse_Memory(parser : in out Parser_Type;
result : out Memory_Pointer) is
begin
Match(parser, Open);
declare
name : constant String := Get_Value(parser.lexer);
begin
Next(parser.lexer);
for i in parser_map'First .. parser_map'Last loop
if parser_map(i).name = name then
parser_map(i).parser(parser, result);
Match(parser, Close);
return;
end if;
end loop;
Raise_Error(parser, "invalid memory type: " & name);
end;
end Parse_Memory;
function Parse(file_name : String) return Memory_Pointer is
parser : Parser_Type;
result : Memory_Pointer;
begin
Open(parser.lexer, file_name);
Parse_Memory(parser, result);
Match(parser, EOF);
Close(parser.lexer);
return result;
exception
when Name_Error =>
return null;
when Parse_Error =>
return null;
end Parse;
procedure Raise_Error(parser : in Parser_Type;
msg : in String) is
name : constant String := Get_File_Name(parser.lexer);
line : constant String := Positive'Image(Get_Line(parser.lexer));
begin
Put_Line(name & "[" & line(2 .. line'Last) & "]: error: " & msg);
raise Parse_Error;
end Raise_Error;
function Get_Type(parser : Parser_Type) return Token_Type is
begin
return Get_Type(parser.lexer);
end Get_Type;
function Get_Value(parser : Parser_Type) return String is
begin
return Get_Value(parser.lexer);
end Get_Value;
procedure Match(parser : in out Parser_Type;
token : in Token_Type) is
begin
if Get_Type(parser) /= token then
Raise_Error(parser, "got '" & Get_Value(parser) &
"' expected '" & Token_Type'Image(token) & "'");
end if;
Next(parser.lexer);
end Match;
procedure Push_Wrapper(parser : in out Parser_Type;
wrapper : in Wrapper_Pointer;
count : in Positive := 1) is
last : constant Natural := Natural(count);
begin
parser.wrappers.Append(Wrapper_Node'(wrapper, 0, last));
end Push_Wrapper;
procedure Pop_Wrapper(parser : in out Parser_Type;
wrapper : out Wrapper_Pointer;
index : out Natural) is
begin
if parser.wrappers.Is_Empty then
Raise_Error(parser, "unexpected join");
end if;
declare
node : Wrapper_Node := parser.wrappers.Last_Element;
begin
wrapper := node.wrapper;
index := node.current;
node.current := node.current + 1;
if node.current = node.last then
Delete_Wrapper(parser);
else
parser.wrappers.Replace_Element(parser.wrappers.Last, node);
end if;
end;
end Pop_Wrapper;
procedure Delete_Wrapper(parser : in out Parser_Type) is
begin
parser.wrappers.Delete_Last;
end Delete_Wrapper;
end Parser;
| 37.230769 | 79 | 0.598786 |
38450fcb0119d4a7ee9665cc79690c2e477c27cf | 7,531 | adb | Ada | gcc-gcc-7_3_0-release/gcc/ada/a-ztdeau.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/a-ztdeau.adb | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | null | null | null | gcc-gcc-7_3_0-release/gcc/ada/a-ztdeau.adb | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | 2 | 2020-07-27T00:22:36.000Z | 2021-04-01T09:41:02.000Z | ------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- A D A . W I D E _ W I D E _ T E X T _ I O . D E C I M A L _ A U X --
-- --
-- B o d y --
-- --
-- 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. --
-- --
-- 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.Generic_Aux; use Ada.Wide_Wide_Text_IO.Generic_Aux;
with Ada.Wide_Wide_Text_IO.Float_Aux; use Ada.Wide_Wide_Text_IO.Float_Aux;
with System.Img_Dec; use System.Img_Dec;
with System.Img_LLD; use System.Img_LLD;
with System.Val_Dec; use System.Val_Dec;
with System.Val_LLD; use System.Val_LLD;
package body Ada.Wide_Wide_Text_IO.Decimal_Aux is
-------------
-- Get_Dec --
-------------
function Get_Dec
(File : File_Type;
Width : Field;
Scale : Integer) return Integer
is
Buf : String (1 .. Field'Last);
Ptr : aliased Integer;
Stop : Integer := 0;
Item : Integer;
begin
if Width /= 0 then
Load_Width (File, Width, Buf, Stop);
String_Skip (Buf, Ptr);
else
Load_Real (File, Buf, Stop);
Ptr := 1;
end if;
Item := Scan_Decimal (Buf, Ptr'Access, Stop, Scale);
Check_End_Of_Field (Buf, Stop, Ptr, Width);
return Item;
end Get_Dec;
-------------
-- Get_LLD --
-------------
function Get_LLD
(File : File_Type;
Width : Field;
Scale : Integer) return Long_Long_Integer
is
Buf : String (1 .. Field'Last);
Ptr : aliased Integer;
Stop : Integer := 0;
Item : Long_Long_Integer;
begin
if Width /= 0 then
Load_Width (File, Width, Buf, Stop);
String_Skip (Buf, Ptr);
else
Load_Real (File, Buf, Stop);
Ptr := 1;
end if;
Item := Scan_Long_Long_Decimal (Buf, Ptr'Access, Stop, Scale);
Check_End_Of_Field (Buf, Stop, Ptr, Width);
return Item;
end Get_LLD;
--------------
-- Gets_Dec --
--------------
function Gets_Dec
(From : String;
Last : not null access Positive;
Scale : Integer) return Integer
is
Pos : aliased Integer;
Item : Integer;
begin
String_Skip (From, Pos);
Item := Scan_Decimal (From, Pos'Access, From'Last, Scale);
Last.all := Pos - 1;
return Item;
exception
when Constraint_Error =>
Last.all := Pos - 1;
raise Data_Error;
end Gets_Dec;
--------------
-- Gets_LLD --
--------------
function Gets_LLD
(From : String;
Last : not null access Positive;
Scale : Integer) return Long_Long_Integer
is
Pos : aliased Integer;
Item : Long_Long_Integer;
begin
String_Skip (From, Pos);
Item := Scan_Long_Long_Decimal (From, Pos'Access, From'Last, Scale);
Last.all := Pos - 1;
return Item;
exception
when Constraint_Error =>
Last.all := Pos - 1;
raise Data_Error;
end Gets_LLD;
-------------
-- Put_Dec --
-------------
procedure Put_Dec
(File : File_Type;
Item : Integer;
Fore : Field;
Aft : Field;
Exp : Field;
Scale : Integer)
is
Buf : String (1 .. Field'Last);
Ptr : Natural := 0;
begin
Set_Image_Decimal (Item, Buf, Ptr, Scale, Fore, Aft, Exp);
Put_Item (File, Buf (1 .. Ptr));
end Put_Dec;
-------------
-- Put_LLD --
-------------
procedure Put_LLD
(File : File_Type;
Item : Long_Long_Integer;
Fore : Field;
Aft : Field;
Exp : Field;
Scale : Integer)
is
Buf : String (1 .. Field'Last);
Ptr : Natural := 0;
begin
Set_Image_Long_Long_Decimal (Item, Buf, Ptr, Scale, Fore, Aft, Exp);
Put_Item (File, Buf (1 .. Ptr));
end Put_LLD;
--------------
-- Puts_Dec --
--------------
procedure Puts_Dec
(To : out String;
Item : Integer;
Aft : Field;
Exp : Field;
Scale : Integer)
is
Buf : String (1 .. Field'Last);
Fore : Integer;
Ptr : Natural := 0;
begin
-- Compute Fore, allowing for Aft digits and the decimal dot
Fore := To'Length - Field'Max (1, Aft) - 1;
-- Allow for Exp and two more for E+ or E- if exponent present
if Exp /= 0 then
Fore := Fore - 2 - Exp;
end if;
-- Make sure we have enough room
if Fore < 1 then
raise Layout_Error;
end if;
-- Do the conversion and check length of result
Set_Image_Decimal (Item, Buf, Ptr, Scale, Fore, Aft, Exp);
if Ptr > To'Length then
raise Layout_Error;
else
To := Buf (1 .. Ptr);
end if;
end Puts_Dec;
--------------
-- Puts_Dec --
--------------
procedure Puts_LLD
(To : out String;
Item : Long_Long_Integer;
Aft : Field;
Exp : Field;
Scale : Integer)
is
Buf : String (1 .. Field'Last);
Fore : Integer;
Ptr : Natural := 0;
begin
Fore :=
(if Exp = 0 then To'Length - 1 - Aft else To'Length - 2 - Aft - Exp);
if Fore < 1 then
raise Layout_Error;
end if;
Set_Image_Long_Long_Decimal (Item, Buf, Ptr, Scale, Fore, Aft, Exp);
if Ptr > To'Length then
raise Layout_Error;
else
To := Buf (1 .. Ptr);
end if;
end Puts_LLD;
end Ada.Wide_Wide_Text_IO.Decimal_Aux;
| 28.526515 | 78 | 0.483601 |
047c03fb32ee7311cb30c0fb826e975a66cd9cfa | 43,215 | adb | Ada | source/xml/catalogs/matreshka-xml_catalogs-handlers.adb | svn2github/matreshka | 9d222b3ad9da508855fb1f5adbe5e8a4fad4c530 | [
"BSD-3-Clause"
] | 24 | 2016-11-29T06:59:41.000Z | 2021-08-30T11:55:16.000Z | source/xml/catalogs/matreshka-xml_catalogs-handlers.adb | svn2github/matreshka | 9d222b3ad9da508855fb1f5adbe5e8a4fad4c530 | [
"BSD-3-Clause"
] | 2 | 2019-01-16T05:15:20.000Z | 2019-02-03T10:03:32.000Z | source/xml/catalogs/matreshka-xml_catalogs-handlers.adb | svn2github/matreshka | 9d222b3ad9da508855fb1f5adbe5e8a4fad4c530 | [
"BSD-3-Clause"
] | 4 | 2017-07-18T07:11:05.000Z | 2020-06-21T03:02:25.000Z | ------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- XML Processor --
-- --
-- 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 Ada.Wide_Wide_Text_IO;
with League.IRIs;
with Matreshka.XML_Catalogs.Normalization;
package body Matreshka.XML_Catalogs.Handlers is
use Matreshka.XML_Catalogs.Entry_Files;
use type League.Strings.Universal_String;
XML_Catalogs_Namespace : constant League.Strings.Universal_String
:= League.Strings.To_Universal_String
("urn:oasis:names:tc:entity:xmlns:xml:catalog");
XML_Catalogs_1_0_Public_Id : constant League.Strings.Universal_String
:= League.Strings.To_Universal_String
("-//OASIS//DTD Entity Resolution XML Catalog V1.0//EN");
XML_Catalogs_1_1_Public_Id : constant League.Strings.Universal_String
:= League.Strings.To_Universal_String
("-//OASIS//DTD XML Catalogs V1.1//EN");
-- Tags names
Catalog_Tag_Name : constant League.Strings.Universal_String
:= League.Strings.To_Universal_String ("catalog");
Delegate_Public_Tag_Name : constant League.Strings.Universal_String
:= League.Strings.To_Universal_String ("delegatePublic");
Delegate_System_Tag_Name : constant League.Strings.Universal_String
:= League.Strings.To_Universal_String ("delegateSystem");
Delegate_URI_Tag_Name : constant League.Strings.Universal_String
:= League.Strings.To_Universal_String ("delegateURI");
Group_Tag_Name : constant League.Strings.Universal_String
:= League.Strings.To_Universal_String ("group");
Next_Catalog_Tag_Name : constant League.Strings.Universal_String
:= League.Strings.To_Universal_String ("nextCatalog");
Public_Tag_Name : constant League.Strings.Universal_String
:= League.Strings.To_Universal_String ("public");
Rewrite_System_Tag_Name : constant League.Strings.Universal_String
:= League.Strings.To_Universal_String ("rewriteSystem");
Rewrite_URI_Tag_Name : constant League.Strings.Universal_String
:= League.Strings.To_Universal_String ("rewriteURI");
System_Tag_Name : constant League.Strings.Universal_String
:= League.Strings.To_Universal_String ("system");
System_Suffix_Tag_Name : constant League.Strings.Universal_String
:= League.Strings.To_Universal_String ("systemSuffix");
URI_Tag_Name : constant League.Strings.Universal_String
:= League.Strings.To_Universal_String ("uri");
URI_Suffix_Tag_Name : constant League.Strings.Universal_String
:= League.Strings.To_Universal_String ("uriSuffix");
-- Attributes names
Catalog_Attribute_Name : constant League.Strings.Universal_String
:= League.Strings.To_Universal_String ("catalog");
Name_Attribute_Name : constant League.Strings.Universal_String
:= League.Strings.To_Universal_String ("name");
Prefer_Attribute_Name : constant League.Strings.Universal_String
:= League.Strings.To_Universal_String ("prefer");
Public_Id_Attribute_Name : constant League.Strings.Universal_String
:= League.Strings.To_Universal_String ("publicId");
Public_Id_Start_String_Attribute_Name :
constant League.Strings.Universal_String
:= League.Strings.To_Universal_String ("publicIdStartString");
Rewrite_Prefix_Attribute_Name : constant League.Strings.Universal_String
:= League.Strings.To_Universal_String ("rewritePrefix");
System_Id_Attribute_Name : constant League.Strings.Universal_String
:= League.Strings.To_Universal_String ("systemId");
System_Id_Start_String_Attribute_Name :
constant League.Strings.Universal_String
:= League.Strings.To_Universal_String ("systemIdStartString");
System_Id_Suffix_Attribute_Name : constant League.Strings.Universal_String
:= League.Strings.To_Universal_String ("systemIdSuffix");
URI_Attribute_Name : constant League.Strings.Universal_String
:= League.Strings.To_Universal_String ("uri");
URI_Start_String_Attribute_Name : constant League.Strings.Universal_String
:= League.Strings.To_Universal_String ("uriStartString");
URI_Suffix_Attribute_Name : constant League.Strings.Universal_String
:= League.Strings.To_Universal_String ("uriSuffix");
-- Attribute values images
System_Image : constant League.Strings.Universal_String
:= League.Strings.To_Universal_String ("system");
Public_Image : constant League.Strings.Universal_String
:= League.Strings.To_Universal_String ("public");
procedure Error
(Self : in out XML_Catalog_Handler'Class;
Message : League.Strings.Universal_String;
Success : out Boolean);
-- Sets Success to False and save Message as last error message.
procedure Error
(Self : in out XML_Catalog_Handler'Class;
Message : Wide_Wide_String;
Success : out Boolean);
-- Sets Success to False and save Message as last error message.
procedure Check_No_Fragment_Identifier
(Self : in out XML_Catalog_Handler'Class;
URI : League.Strings.Universal_String;
Success : in out Boolean);
-- Check that URI is not include fragment identifier.
procedure Process_Catalog_Start_Element
(Self : in out XML_Catalog_Handler'Class;
Attributes : XML.SAX.Attributes.SAX_Attributes;
Success : in out Boolean);
-- Processes start of "catalog" element.
procedure Process_Group_Start_Element
(Self : in out XML_Catalog_Handler'Class;
Attributes : XML.SAX.Attributes.SAX_Attributes;
Success : in out Boolean);
-- Processes start of "group" element.
procedure Process_Group_End_Element
(Self : in out XML_Catalog_Handler'Class;
Success : in out Boolean);
-- Processes end of "group" element.
procedure Process_Public_Start_Element
(Self : in out XML_Catalog_Handler'Class;
Attributes : XML.SAX.Attributes.SAX_Attributes;
Success : in out Boolean);
-- Processes start of "public" element.
procedure Process_System_Start_Element
(Self : in out XML_Catalog_Handler'Class;
Attributes : XML.SAX.Attributes.SAX_Attributes;
Success : in out Boolean);
-- Processes start of "system" element.
procedure Process_Rewrite_System_Start_Element
(Self : in out XML_Catalog_Handler'Class;
Attributes : XML.SAX.Attributes.SAX_Attributes;
Success : in out Boolean);
-- Processes start of "rewriteSystem" element.
procedure Process_System_Suffix_Start_Element
(Self : in out XML_Catalog_Handler'Class;
Attributes : XML.SAX.Attributes.SAX_Attributes;
Success : in out Boolean);
-- Processes start of "systemSuffix" element.
procedure Process_Delegate_Public_Start_Element
(Self : in out XML_Catalog_Handler'Class;
Attributes : XML.SAX.Attributes.SAX_Attributes;
Success : in out Boolean);
-- Processes start of "delegatePublic" element.
procedure Process_Delegate_System_Start_Element
(Self : in out XML_Catalog_Handler'Class;
Attributes : XML.SAX.Attributes.SAX_Attributes;
Success : in out Boolean);
-- Processes start of "delegateSystem" element.
procedure Process_URI_Start_Element
(Self : in out XML_Catalog_Handler'Class;
Attributes : XML.SAX.Attributes.SAX_Attributes;
Success : in out Boolean);
-- Processes start of "uri" element.
procedure Process_Rewrite_URI_Start_Element
(Self : in out XML_Catalog_Handler'Class;
Attributes : XML.SAX.Attributes.SAX_Attributes;
Success : in out Boolean);
-- Processes start of "rewriteURI" element.
procedure Process_URI_Suffix_Start_Element
(Self : in out XML_Catalog_Handler'Class;
Attributes : XML.SAX.Attributes.SAX_Attributes;
Success : in out Boolean);
-- Processes start of "uriSuffix" element.
procedure Process_Delegate_URI_Start_Element
(Self : in out XML_Catalog_Handler'Class;
Attributes : XML.SAX.Attributes.SAX_Attributes;
Success : in out Boolean);
-- Processes start of "delegateURI" element.
procedure Process_Next_Catalog_Start_Element
(Self : in out XML_Catalog_Handler'Class;
Attributes : XML.SAX.Attributes.SAX_Attributes;
Success : in out Boolean);
-- Processes start of "nextCatalog" element.
----------------------------------
-- Check_No_Fragment_Identifier --
----------------------------------
procedure Check_No_Fragment_Identifier
(Self : in out XML_Catalog_Handler'Class;
URI : League.Strings.Universal_String;
Success : in out Boolean) is
begin
if URI.Index ('#') /= 0 then
Error
(Self,
"URI reference should not include a fragment identifier",
Success);
end if;
end Check_No_Fragment_Identifier;
-----------------
-- End_Element --
-----------------
overriding procedure End_Element
(Self : in out XML_Catalog_Handler;
Namespace_URI : League.Strings.Universal_String;
Local_Name : League.Strings.Universal_String;
Qualified_Name : League.Strings.Universal_String;
Success : in out Boolean) is
begin
if Namespace_URI = XML_Catalogs_Namespace
and Local_Name = Group_Tag_Name
then
Process_Group_End_Element (Self, Success);
end if;
end End_Element;
-----------
-- Error --
-----------
procedure Error
(Self : in out XML_Catalog_Handler'Class;
Message : Wide_Wide_String;
Success : out Boolean) is
begin
Self.Diagnosis := League.Strings.To_Universal_String (Message);
Success := False;
end Error;
-----------
-- Error --
-----------
procedure Error
(Self : in out XML_Catalog_Handler'Class;
Message : League.Strings.Universal_String;
Success : out Boolean) is
begin
Self.Diagnosis := Message;
Success := False;
end Error;
-----------
-- Error --
-----------
overriding procedure Error
(Self : in out XML_Catalog_Handler;
Occurrence : XML.SAX.Parse_Exceptions.SAX_Parse_Exception;
Success : in out Boolean) is
begin
Ada.Wide_Wide_Text_IO.Put_Line
(Ada.Wide_Wide_Text_IO.Standard_Error,
"(error) " & Occurrence.Message.To_Wide_Wide_String);
end Error;
------------------
-- Error_String --
------------------
overriding function Error_String
(Self : XML_Catalog_Handler) return League.Strings.Universal_String is
begin
return Self.Diagnosis;
end Error_String;
-----------------
-- Fatal_Error --
-----------------
overriding procedure Fatal_Error
(Self : in out XML_Catalog_Handler;
Occurrence : XML.SAX.Parse_Exceptions.SAX_Parse_Exception) is
begin
Ada.Wide_Wide_Text_IO.Put_Line
(Ada.Wide_Wide_Text_IO.Standard_Error,
"(fatal) " & Occurrence.Message.To_Wide_Wide_String);
end Fatal_Error;
----------------------------
-- Get_Catalog_Entry_File --
----------------------------
function Get_Catalog_Entry_File
(Self : XML_Catalog_Handler)
return Matreshka.XML_Catalogs.Entry_Files.Catalog_Entry_File_Access is
begin
return Self.Entry_File;
end Get_Catalog_Entry_File;
-----------------------------------
-- Process_Catalog_Start_Element --
-----------------------------------
procedure Process_Catalog_Start_Element
(Self : in out XML_Catalog_Handler'Class;
Attributes : XML.SAX.Attributes.SAX_Attributes;
Success : in out Boolean)
is
-- [XML Catalogs] 6.5.1. The catalog Entry
--
-- "Each XML Catalog entry file consists of a single catalog element.
-- This element may set the global prefer value and global base URI. It
-- is otherwise just a container for the other elements.
--
-- <catalog
-- id = id
-- prefer = "system" | "public"
-- xml:base = uri-reference >
-- <!-- Content: (group | public | system | rewriteSystem
-- | systemSuffix | delegatePublic | delegateSystem | uri
-- | rewriteURI | uriSuffix | delegateURI | nextCatalog)+ -->
-- </catalog>"
Prefer_Index : constant Natural
:= Attributes.Index (Prefer_Attribute_Name);
begin
-- Analyze 'prefer' attribute when present.
if Prefer_Index /= 0 then
if Attributes.Value (Prefer_Index) = Public_Image then
Self.Current_Prefer_Mode := Public;
elsif Attributes.Value (Prefer_Index) = System_Image then
Self.Current_Prefer_Mode := System;
else
Self.Error ("Invalid value of 'prefer' attribute", Success);
end if;
end if;
-- Create new catalog entry file object.
Self.Entry_File :=
new Matreshka.XML_Catalogs.Entry_Files.Catalog_Entry_File;
Self.Entry_File.Default_Prefer_Mode := Self.Default_Prefer_Mode;
end Process_Catalog_Start_Element;
-------------------------------------------
-- Process_Delegate_Public_Start_Element --
-------------------------------------------
procedure Process_Delegate_Public_Start_Element
(Self : in out XML_Catalog_Handler'Class;
Attributes : XML.SAX.Attributes.SAX_Attributes;
Success : in out Boolean)
is
-- [XML Catalogs] 6.5.7. The delegatePublic Element
--
-- "The delegatePublic element associates an alternate catalog with a
-- partial public identifier.
--
-- <delegatePublic
-- id = id
-- publicIdStartString = public-identifier-prefix
-- catalog = uri-reference
-- xml:base = uri-reference />
--
-- A delegatePublic entry matches a public identifier if the normalized
-- value (Section 6.2, “Public Identifier Normalization”) of the public
-- identifier begins precisely with the normalized value of the
-- publicIdStartString attribute of the entry."
--
-- "If the value of the catalog attribute is relative, it must be made
-- absolute with respect to the base URI currently in effect."
Public_Id : constant League.Strings.Universal_String
:= Matreshka.XML_Catalogs.Normalization.Normalize_Public_Identifier
(Attributes.Value (Public_Id_Start_String_Attribute_Name));
Catalog : constant League.Strings.Universal_String
:= Self.Locator.Base_URI.Resolve
(League.IRIs.From_Universal_String
(Attributes.Value (Catalog_Attribute_Name))).To_Universal_String;
begin
-- Check that 'publicIdStartString' is not empty.
if Public_Id.Is_Empty then
Error (Self, "publicIdStartString is empty", Success);
return;
end if;
Self.Entry_File.Append
(new Delegate_Public_Entry'
(Public_Id, Catalog, Self.Current_Prefer_Mode));
end Process_Delegate_Public_Start_Element;
-------------------------------------------
-- Process_Delegate_System_Start_Element --
-------------------------------------------
procedure Process_Delegate_System_Start_Element
(Self : in out XML_Catalog_Handler'Class;
Attributes : XML.SAX.Attributes.SAX_Attributes;
Success : in out Boolean)
is
-- [XML Catalogs] 6.5.8. The delegateSystem Element
--
-- "The delegateSystem element associates an alternate catalog with a
-- partial system identifier.
--
-- <delegateSystem
-- id = id
-- systemIdStartString = string
-- catalog = uri-reference
-- xml:base = uri-reference />
--
-- A delegateSystem entry matches a system identifier if the normalized
-- value (Section 6.3, “System Identifier and URI Normalization”) of the
-- system identifier begins precisely with the normalized value of the
-- systemIdStartString attribute of the entry."
--
-- "If the value of the catalog attribute is relative, it must be made
-- absolute with respect to the base URI currently in effect."
System_Id : constant League.Strings.Universal_String
:= Matreshka.XML_Catalogs.Normalization.Normalize_System_Identifier
(Attributes.Value (System_Id_Start_String_Attribute_Name));
Catalog : constant League.Strings.Universal_String
:= Self.Locator.Base_URI.Resolve
(League.IRIs.From_Universal_String
(Attributes.Value (Catalog_Attribute_Name))).To_Universal_String;
begin
-- Check that 'systemIdStartString' is not empty.
if System_Id.Is_Empty then
Error (Self, "systemIdStartString is empty", Success);
return;
end if;
Self.Entry_File.Append
(new Delegate_System_Entry'(System_Id, Catalog));
end Process_Delegate_System_Start_Element;
----------------------------------------
-- Process_Delegate_URI_Start_Element --
----------------------------------------
procedure Process_Delegate_URI_Start_Element
(Self : in out XML_Catalog_Handler'Class;
Attributes : XML.SAX.Attributes.SAX_Attributes;
Success : in out Boolean)
is
-- [XML Catalogs] 6.5.12. The delegateURI Element
--
-- "The delegateURI element associates an alternate catalog with a
-- partial URI reference.
--
-- <delegateURI
-- id = id
-- uriStartString = string
-- catalog = uri-reference
-- xml:base = uri-reference />
--
-- A delegateURI entry matches a URI reference if the normalized value
-- (Section 6.3, “System Identifier and URI Normalization”) of the URI
-- reference begins precisely with the normalized value of the
-- uriStartString attribute of the entry.
--
-- If the value of the catalog attribute is relative, it must be made
-- absolute with respect to the base URI currently in effect."
URI : constant League.Strings.Universal_String
:= Matreshka.XML_Catalogs.Normalization.Normalize_URI
(Attributes.Value (URI_Start_String_Attribute_Name));
Catalog : constant League.Strings.Universal_String
:= Self.Locator.Base_URI.Resolve
(League.IRIs.From_Universal_String
(Attributes.Value (Catalog_Attribute_Name))).To_Universal_String;
begin
-- Check that 'uriStartString' is not empty.
if URI.Is_Empty then
Error (Self, "uriStartString is empty", Success);
return;
end if;
Self.Entry_File.Append (new Delegate_URI_Entry'(URI, Catalog));
end Process_Delegate_URI_Start_Element;
-------------------------------
-- Process_Group_End_Element --
-------------------------------
procedure Process_Group_End_Element
(Self : in out XML_Catalog_Handler'Class;
Success : in out Boolean) is
begin
-- Restore preference mode on leave of "group" element.
Self.Current_Prefer_Mode := Self.Previous_Prefer_Mode;
end Process_Group_End_Element;
---------------------------------
-- Process_Group_Start_Element --
---------------------------------
procedure Process_Group_Start_Element
(Self : in out XML_Catalog_Handler'Class;
Attributes : XML.SAX.Attributes.SAX_Attributes;
Success : in out Boolean)
is
-- [XML Catalogs] 6.5.2. The group Entry
--
-- "The group element is a convenience wrapper for specifying a prefer
-- setting or base URI for a set of catalog entries. It has no
-- semantics other than scoping these settings.
--
-- <group
-- id = id
-- prefer = "system" | "public"
-- xml:base = uri-reference >
-- <!-- Content: (public | system | rewriteSystem | systemSuffix |
-- delegatePublic | delegateSystem | uri | rewriteURI | uriSuffix |
-- delegateURI | nextCatalog)+ -->
-- </group>"
Prefer_Index : constant Natural
:= Attributes.Index (Prefer_Attribute_Name);
begin
-- Save current preference mode, analyze 'prefer' attribute when
-- present, otherwise preserve current mode.
Self.Previous_Prefer_Mode := Self.Current_Prefer_Mode;
if Prefer_Index /= 0 then
if Attributes.Value (Prefer_Index) = Public_Image then
Self.Current_Prefer_Mode := Public;
elsif Attributes.Value (Prefer_Index) = System_Image then
Self.Current_Prefer_Mode := System;
else
Self.Error ("Invalid value of 'prefer' attribute", Success);
end if;
end if;
end Process_Group_Start_Element;
----------------------------------------
-- Process_Next_Catalog_Start_Element --
----------------------------------------
procedure Process_Next_Catalog_Start_Element
(Self : in out XML_Catalog_Handler'Class;
Attributes : XML.SAX.Attributes.SAX_Attributes;
Success : in out Boolean)
is
-- [XML Catalogs] 6.5.13. The nextCatalog Element
--
-- "The nextCatalog elements indicate additional catalog entry file(s)
-- to be considered during the process of resolution.
--
-- <nextCatalog
-- id = id
-- catalog = uri-reference
-- xml:base = uri-reference />
--
-- If the value of the catalog attribute is relative, it must be made
-- absolute with respect to the base URI currently in effect.
--
-- Catalogs loaded due to a nextCatalog directive have an initial base
-- URI that is dependent on the location of the loaded catalog entry
-- file. No xml:base information is inherited from the originating
-- catalog.
Catalog : constant League.Strings.Universal_String
:= Self.Locator.Base_URI.Resolve
(League.IRIs.From_Universal_String
(Attributes.Value (Catalog_Attribute_Name))).To_Universal_String;
begin
Self.Entry_File.Append
(new Next_Catalog_Entry'(Catalog, Self.Default_Prefer_Mode, null));
end Process_Next_Catalog_Start_Element;
----------------------------------
-- Process_Public_Start_Element --
----------------------------------
procedure Process_Public_Start_Element
(Self : in out XML_Catalog_Handler'Class;
Attributes : XML.SAX.Attributes.SAX_Attributes;
Success : in out Boolean)
is
-- [XML Catalogs] 6.5.3. The public Entry
--
-- "The public element associates a URI reference with the public
-- identifier portion of an external identifier.
--
-- <public
-- id = id
-- publicId = public-identifier
-- uri = uri-reference
-- xml:base = uri-reference />
--
-- A public entry matches a public identifier if the normalized value
-- (Section 6.2, “Public Identifier Normalization”) of the public
-- identifier is lexically identical to the normalized value of the
-- publicId attribute of the entry.
--
-- If the value of the uri attribute is relative, it must be made
-- absolute with respect to the base URI currently in effect. The URI
-- reference should not include a fragment identifier."
Public_Id : constant League.Strings.Universal_String
:= Matreshka.XML_Catalogs.Normalization.Normalize_Public_Identifier
(Attributes.Value (Public_Id_Attribute_Name));
URI : constant League.Strings.Universal_String
:= Self.Locator.Base_URI.Resolve
(League.IRIs.From_Universal_String
(Attributes.Value (URI_Attribute_Name))).To_Universal_String;
begin
-- Check that 'publicId' is not empty.
if Public_Id.Is_Empty then
Error (Self, "publicId is empty", Success);
return;
end if;
-- Check that URI is not include a fragment identifier.
Check_No_Fragment_Identifier (Self, URI, Success);
if not Success then
return;
end if;
Self.Entry_File.Append
(new Public_Entry'(Public_Id, URI, Self.Current_Prefer_Mode));
end Process_Public_Start_Element;
------------------------------------------
-- Process_Rewrite_System_Start_Element --
------------------------------------------
procedure Process_Rewrite_System_Start_Element
(Self : in out XML_Catalog_Handler'Class;
Attributes : XML.SAX.Attributes.SAX_Attributes;
Success : in out Boolean)
is
-- [XML Catalogs] 6.5.5. The rewriteSystem Element
--
-- The rewriteSystem element rewrites the beginning of a system
-- identifier.
--
-- <rewriteSystem
-- id = id
-- systemIdStartString = string
-- rewritePrefix = uri-reference />
--
-- A rewriteSystem entry matches a system identifier if the normalized
-- value (Section 6.3, “System Identifier and URI Normalization”) of the
-- system identifier begins precisely with the normalized value of the
-- systemIdStartString attribute of the entry.
--
-- If the value of the rewritePrefix attribute is relative, it must be
-- made absolute with respect to the base URI currently in effect.
System_Id_Start_String : constant League.Strings.Universal_String
:= Matreshka.XML_Catalogs.Normalization.Normalize_System_Identifier
(Attributes.Value (System_Id_Start_String_Attribute_Name));
Rewrite_Prefix : constant League.Strings.Universal_String
:= Self.Locator.Base_URI.Resolve
(League.IRIs.From_Universal_String
(Attributes.Value
(Rewrite_Prefix_Attribute_Name))).To_Universal_String;
begin
-- Check that 'systemIdStartString' is not empty.
if System_Id_Start_String.Is_Empty then
Error (Self, "'systemIdStartString' is empty", Success);
return;
end if;
Self.Entry_File.Append
(new Rewrite_System_Entry'(System_Id_Start_String, Rewrite_Prefix));
end Process_Rewrite_System_Start_Element;
---------------------------------------
-- Process_Rewrite_URI_Start_Element --
---------------------------------------
procedure Process_Rewrite_URI_Start_Element
(Self : in out XML_Catalog_Handler'Class;
Attributes : XML.SAX.Attributes.SAX_Attributes;
Success : in out Boolean)
is
-- [XML Catalogs] 6.5.10. The rewriteURI Element
--
-- The rewriteURI element rewrites the beginning of a URI reference that
-- is not part of an external identifier.
--
-- <rewriteURI
-- id = id
-- uriStartString = string
-- rewritePrefix = uri-reference />
--
-- A rewriteURI entry matches a URI reference if the normalized value
-- (Section 6.3, “System Identifier and URI Normalization”) of the URI
-- reference begins precisely with the normalized value of the
-- uriStartString attribute of the entry.
--
-- If the value of the rewritePrefix attribute is relative, it must be
-- made absolute with respect to the base URI currently in effect.
URI_Start_String : constant League.Strings.Universal_String
:= Matreshka.XML_Catalogs.Normalization.Normalize_URI
(Attributes.Value (URI_Start_String_Attribute_Name));
Rewrite_Prefix : constant League.Strings.Universal_String
:= Self.Locator.Base_URI.Resolve
(League.IRIs.From_Universal_String
(Attributes.Value
(Rewrite_Prefix_Attribute_Name))).To_Universal_String;
begin
-- Check that 'uriStartString' is not empty.
if URI_Start_String.Is_Empty then
Error (Self, "'uriStartString' is empty", Success);
return;
end if;
Self.Entry_File.Append
(new Rewrite_URI_Entry'(URI_Start_String, Rewrite_Prefix));
end Process_Rewrite_URI_Start_Element;
----------------------------------
-- Process_System_Start_Element --
----------------------------------
procedure Process_System_Start_Element
(Self : in out XML_Catalog_Handler'Class;
Attributes : XML.SAX.Attributes.SAX_Attributes;
Success : in out Boolean)
is
-- [XML Catalogs] 6.5.4. The system Element
--
-- "The system element associates a URI reference with the system
-- identifier portion of an external identifier.
--
-- <system
-- id = id
-- systemId = string
-- uri = uri-reference
-- xml:base = uri-reference />
--
-- A system entry matches a system identifier if the normalized value
-- (Section 6.3, “System Identifier and URI Normalization”) of the
-- system identifier is lexically identical to the normalized value of
-- the systemId attribute of the entry.
--
-- If the value of the uri attribute is relative, it must be made
-- absolute with respect to the base URI currently in effect. The URI
-- reference should not include a fragment identifier."
System_Id : constant League.Strings.Universal_String
:= Matreshka.XML_Catalogs.Normalization.Normalize_System_Identifier
(Attributes.Value (System_Id_Attribute_Name));
URI : constant League.Strings.Universal_String
:= Self.Locator.Base_URI.Resolve
(League.IRIs.From_Universal_String
(Attributes.Value (URI_Attribute_Name))).To_Universal_String;
begin
-- Check that 'systemId' is not empty.
if System_Id.Is_Empty then
Error (Self, "systemId is empty", Success);
return;
end if;
-- Check that URI is not include a fragment identifier.
Check_No_Fragment_Identifier (Self, URI, Success);
if not Success then
return;
end if;
Self.Entry_File.Append (new System_Entry'(System_Id, URI));
end Process_System_Start_Element;
-----------------------------------------
-- Process_System_Suffix_Start_Element --
-----------------------------------------
procedure Process_System_Suffix_Start_Element
(Self : in out XML_Catalog_Handler'Class;
Attributes : XML.SAX.Attributes.SAX_Attributes;
Success : in out Boolean)
is
-- [XML Catalogs] 6.5.6. The systemSuffix Element
--
-- "The systemSuffix element associates a URI reference with the suffix
-- portion of a system identifier.
--
-- <systemSuffix
-- id = id
-- systemIdSuffix = string
-- uri = uri-reference
-- xml:base = uri-reference />
--
-- A systemSuffix entry matches a system identifier if the normalized
-- value (Section 6.3, “System Identifier and URI Normalization”) of the
-- system identifier ends precisely with the normalized value of the
-- systemIdSuffix attribute of the entry.
--
-- If the value of the uri attribute is relative, it must be made
-- absolute with respect to the base URI currently in effect. The URI
-- reference should not include a fragment identifier."
System_Id_Suffix : constant League.Strings.Universal_String
:= Matreshka.XML_Catalogs.Normalization.Normalize_System_Identifier
(Attributes.Value (System_Id_Suffix_Attribute_Name));
URI : constant League.Strings.Universal_String
:= Self.Locator.Base_URI.Resolve
(League.IRIs.From_Universal_String
(Attributes.Value (URI_Attribute_Name))).To_Universal_String;
begin
-- Check that 'systemIdSuffix' is not empty.
if System_Id_Suffix.Is_Empty then
Error (Self, "systemIdSuffix is empty", Success);
return;
end if;
-- Check that URI is not include a fragment identifier.
Check_No_Fragment_Identifier (Self, URI, Success);
if not Success then
return;
end if;
Self.Entry_File.Append (new System_Suffix_Entry'(System_Id_Suffix, URI));
end Process_System_Suffix_Start_Element;
-------------------------------
-- Process_URI_Start_Element --
-------------------------------
procedure Process_URI_Start_Element
(Self : in out XML_Catalog_Handler'Class;
Attributes : XML.SAX.Attributes.SAX_Attributes;
Success : in out Boolean)
is
-- [XML Catalogs] 6.5.9. The uri Element
--
-- The uri element associates an alternate URI reference with a URI
-- reference that is not part of an external identifier.
--
-- <uri
-- id = id
-- name = string
-- uri = uri-reference
-- xml:base = uri-reference />
--
-- A uri entry matches a URI reference if the normalized value (Section
-- 6.3, “System Identifier and URI Normalization”) of the URI reference
-- is lexically identical to the normalized value of the name attribute
-- of the entry."
--
-- "If the value of the uri attribute is relative, it must be made
-- absolute with respect to the base URI currently in effect."
Name : constant League.Strings.Universal_String
:= Matreshka.XML_Catalogs.Normalization.Normalize_URI
(Attributes.Value (Name_Attribute_Name));
URI : constant League.Strings.Universal_String
:= Self.Locator.Base_URI.Resolve
(League.IRIs.From_Universal_String
(Attributes.Value (URI_Attribute_Name))).To_Universal_String;
begin
-- Check that 'name' is not empty.
if Name.Is_Empty then
Error (Self, "name is empty", Success);
return;
end if;
Self.Entry_File.Append (new URI_Entry'(Name, URI));
end Process_URI_Start_Element;
--------------------------------------
-- Process_URI_Suffix_Start_Element --
--------------------------------------
procedure Process_URI_Suffix_Start_Element
(Self : in out XML_Catalog_Handler'Class;
Attributes : XML.SAX.Attributes.SAX_Attributes;
Success : in out Boolean)
is
-- [XML Catalogs] 6.5.11. The uriSuffix Element
--
-- "The uriSuffix element associates a URI reference with the suffix
-- portion of a URI reference that is not part of an external
-- identifier.
--
-- <uriSuffix
-- id = id
-- uriSuffix = string
-- uri = uri-reference
-- xml:base = uri-reference />
--
-- A uriSuffix entry matches a URI if the normalized value (Section 6.3,
-- “System Identifier and URI Normalization”) of the URI ends precisely
-- with the normalized value of the uriSuffix attribute of the entry.
--
-- If the value of the uri attribute is relative, it must be made
-- absolute with respect to the base URI currently in effect.
URI_Suffix : constant League.Strings.Universal_String
:= Matreshka.XML_Catalogs.Normalization.Normalize_URI
(Attributes.Value (URI_Suffix_Attribute_Name));
URI : constant League.Strings.Universal_String
:= Self.Locator.Base_URI.Resolve
(League.IRIs.From_Universal_String
(Attributes.Value (URI_Attribute_Name))).To_Universal_String;
begin
-- Check that 'uriSuffix' is not empty.
if URI_Suffix.Is_Empty then
Error (Self, "uriSuffix is empty", Success);
return;
end if;
Self.Entry_File.Append (new URI_Suffix_Entry'(URI_Suffix, URI));
end Process_URI_Suffix_Start_Element;
-----------------------------
-- Set_Default_Prefer_Mode --
-----------------------------
procedure Set_Default_Prefer_Mode
(Self : in out XML_Catalog_Handler'Class;
Mode : Matreshka.XML_Catalogs.Entry_Files.Prefer_Mode) is
begin
Self.Default_Prefer_Mode := Mode;
end Set_Default_Prefer_Mode;
--------------------------
-- Set_Document_Locator --
--------------------------
overriding procedure Set_Document_Locator
(Self : in out XML_Catalog_Handler;
Locator : XML.SAX.Locators.SAX_Locator) is
begin
Self.Locator := Locator;
end Set_Document_Locator;
--------------------
-- Start_Document --
--------------------
overriding procedure Start_Document
(Self : in out XML_Catalog_Handler;
Success : in out Boolean) is
begin
Self.Diagnosis := League.Strings.Empty_Universal_String;
Self.Current_Prefer_Mode := Self.Default_Prefer_Mode;
end Start_Document;
---------------
-- Start_DTD --
---------------
overriding procedure Start_DTD
(Self : in out XML_Catalog_Handler;
Name : League.Strings.Universal_String;
Public_Id : League.Strings.Universal_String;
System_Id : League.Strings.Universal_String;
Success : in out Boolean) is
begin
-- Check whether processed document is XML Catalogs entry file.
if Public_Id /= XML_Catalogs_1_0_Public_Id
and Public_Id /= XML_Catalogs_1_1_Public_Id
then
Self.Error ("Unknown XML Catalogs DTD", Success);
end if;
end Start_DTD;
-------------------
-- Start_Element --
-------------------
overriding procedure Start_Element
(Self : in out XML_Catalog_Handler;
Namespace_URI : League.Strings.Universal_String;
Local_Name : League.Strings.Universal_String;
Qualified_Name : League.Strings.Universal_String;
Attributes : XML.SAX.Attributes.SAX_Attributes;
Success : in out Boolean) is
begin
if Namespace_URI /= XML_Catalogs_Namespace then
-- Ignore all non-XML Catalogs elements.
return;
end if;
if Local_Name = Catalog_Tag_Name then
Process_Catalog_Start_Element (Self, Attributes, Success);
elsif Local_Name = Delegate_Public_Tag_Name then
Process_Delegate_Public_Start_Element (Self, Attributes, Success);
elsif Local_Name = Delegate_System_Tag_Name then
Process_Delegate_System_Start_Element (Self, Attributes, Success);
elsif Local_Name = Delegate_URI_Tag_Name then
Process_Delegate_URI_Start_Element (Self, Attributes, Success);
elsif Local_Name = Group_Tag_Name then
Process_Group_Start_Element (Self, Attributes, Success);
elsif Local_Name = Next_Catalog_Tag_Name then
Process_Next_Catalog_Start_Element (Self, Attributes, Success);
elsif Local_Name = Public_Tag_Name then
Process_Public_Start_Element (Self, Attributes, Success);
elsif Local_Name = Rewrite_System_Tag_Name then
Process_Rewrite_System_Start_Element (Self, Attributes, Success);
elsif Local_Name = Rewrite_URI_Tag_Name then
Process_Rewrite_URI_Start_Element (Self, Attributes, Success);
elsif Local_Name = System_Tag_Name then
Process_System_Start_Element (Self, Attributes, Success);
elsif Local_Name = System_Suffix_Tag_Name then
Process_System_Suffix_Start_Element (Self, Attributes, Success);
elsif Local_Name = URI_Tag_Name then
Process_URI_Start_Element (Self, Attributes, Success);
elsif Local_Name = URI_Suffix_Tag_Name then
Process_URI_Suffix_Start_Element (Self, Attributes, Success);
end if;
end Start_Element;
-------------
-- Warning --
-------------
overriding procedure Warning
(Self : in out XML_Catalog_Handler;
Occurrence : XML.SAX.Parse_Exceptions.SAX_Parse_Exception;
Success : in out Boolean) is
begin
Ada.Wide_Wide_Text_IO.Put_Line
(Ada.Wide_Wide_Text_IO.Standard_Error,
"(warning) " & Occurrence.Message.To_Wide_Wide_String);
end Warning;
end Matreshka.XML_Catalogs.Handlers;
| 38.413333 | 79 | 0.626171 |
38ae2bdae21ce78d87d55bd747e7183b291ef274 | 2,059 | adb | Ada | src/siphash-general.adb | jhumphry/SPARK_SipHash | 9e9490e23ae722f8392b5f9cbdbc6bc8c6104fa5 | [
"CC0-1.0"
] | 5 | 2018-10-10T21:19:01.000Z | 2020-10-14T08:42:58.000Z | src/siphash-general.adb | jhumphry/SPARK_SipHash | 9e9490e23ae722f8392b5f9cbdbc6bc8c6104fa5 | [
"CC0-1.0"
] | null | null | null | src/siphash-general.adb | jhumphry/SPARK_SipHash | 9e9490e23ae722f8392b5f9cbdbc6bc8c6104fa5 | [
"CC0-1.0"
] | null | null | null | -- SipHash.General
-- Implementing SipHash over a general private type
-- Copyright (c) 2015, James Humphry - see LICENSE file for details
with Ada.Storage_IO, System.Storage_Elements;
-- Rather than simply writing the object into a buffer and calling the main
-- SipHash routine, this implementation takes advantage of the fact that the
-- padding required is always constant and does not need to be recalculated
-- each time, giving a minor speed increase.
function SipHash.General (m : T) return Hash_Type is
package T_Storage is new Ada.Storage_IO(Element_Type => T);
Buffer_Size : System.Storage_Elements.Storage_Offset
renames T_Storage.Buffer_Size;
procedure Write (Buffer : out T_Storage.Buffer_Type; Item : T) renames
T_Storage.Write;
use System.Storage_Elements;
Padded_Blocks : constant Storage_Count := ((Buffer_Size / 8) + 1);
Padded_Buffer_Size : constant Storage_Count := Padded_Blocks * 8;
B : Storage_Array(1..Padded_Buffer_Size) := (others => 0);
m_pos : Storage_Offset := 1;
m_i : U64;
v : SipHash_State := Get_Initial_State;
begin
-- This compile-time check is useful for GNAT but in GNATprove it currently
-- just generates a warning that it can not yet prove them correct.
pragma Warnings (GNATprove, Off, "Compile_Time_Error");
pragma Compile_Time_Error (Storage_Element'Size /= 8,
"This implementation of SipHash cannot work " &
"with Storage_Element'Size /= 8.");
pragma Warnings (GNATprove, On, "Compile_Time_Error");
Write(Buffer => B(1..Buffer_Size),
Item => m);
B(B'Last) := Storage_Element(Buffer_Size mod 256);
for I in 1..Padded_Blocks loop
pragma Loop_Invariant (m_pos = (I-1) * 8 + 1);
m_i := SArray8_to_U64_LE(B(m_pos..m_pos+7));
v(3) := v(3) xor m_i;
for J in 1..c_rounds loop
Sip_Round(v);
end loop;
v(0) := v(0) xor m_i;
m_pos := m_pos + 8;
end loop;
return Hash_Type'Mod(Sip_Finalization(v));
end SipHash.General;
| 33.754098 | 78 | 0.680427 |
1a47e0f072f8eb1d4dd6440781ab4280df6e7d2d | 13,756 | adb | Ada | 3-mid/impact/source/3d/collision/dispatch/impact-d3-dispatcher-collision.adb | 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-dispatcher-collision.adb | 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-dispatcher-collision.adb | charlie5/lace | e9b7dc751d500ff3f559617a6fc3089ace9dc134 | [
"0BSD"
] | 1 | 2015-12-07T12:53:52.000Z | 2015-12-07T12:53:52.000Z | with ada.Unchecked_Deallocation;
with impact.d3.Containers;
with impact.d3.collision.Proxy;
package body impact.d3.Dispatcher.collision
is
--- Globals
--
gNumManifold : Integer := 0;
type Object_view is access all impact.d3.Object.item'Class;
--- Forge
--
function to_Dispatcher (collisionConfiguration : access impact.d3.collision.Configuration.Item'Class) return Item
is
use impact.d3.collision.Proxy;
Self : Item;
begin
Self.m_dispatcherFlags := (impact.d3.Dispatcher.collision.CD_USE_RELATIVE_CONTACT_BREAKING_THRESHOLD);
Self.m_collisionConfiguration := collisionConfiguration;
Self.setNearCallback (defaultNearCallback'Access);
-- m_collisionAlgorithmPoolAllocator = collisionConfiguration->getCollisionAlgorithmPool();
-- m_persistentManifoldPoolAllocator = collisionConfiguration->getPersistentManifoldPool();
for i in BroadphaseNativeTypes
loop
for j in BroadphaseNativeTypes
loop
Self.m_doubleDispatch (i, j) := Self.m_collisionConfiguration.getCollisionAlgorithmCreateFunc (i, j);
pragma Assert (Self.m_doubleDispatch (i, j) /= null);
end loop;
end loop;
return Self;
end to_Dispatcher;
overriding procedure destruct (Self : in out Item)
is
begin
null;
end destruct;
--- Attributes
--
overriding function findAlgorithm (Self : access Item; body0, body1 : access impact.d3.Object.item'Class;
sharedManifold : access impact.d3.Manifold.Item'Class := null) return Algorithm_view
is
ci : impact.d3.collision.Algorithm.AlgorithmConstructionInfo;
algo : impact.d3.Dispatcher.Algorithm_view;
begin
ci.m_dispatcher1 := Self;
ci.m_manifold := sharedManifold;
algo := Self.m_doubleDispatch (body0.getCollisionShape.getShapeType,
body1.getCollisionShape.getShapeType).CreateCollisionAlgorithm (ci, body0, body1);
return algo;
end findAlgorithm;
overriding function getNewManifold (Self : access Item; bod0, bod1 : access Any'Class ) return access impact.d3.Manifold.Item'Class
is
use impact.d3.Manifold;
body0 : constant impact.d3.Object.view := impact.d3.Object.view (bod0);
body1 : constant impact.d3.Object.view := impact.d3.Object.view (bod1);
contactBreakingThreshold,
contactProcessingThreshold : math.Real;
begin
gNumManifold := gNumManifold + 1;
pragma Assert (gNumManifold < 65535);
-- optional relative contact breaking threshold, turned on by default (use setDispatcherFlags to switch off feature for improved performance).
--
if (Self.m_dispatcherFlags and impact.d3.Dispatcher.collision.CD_USE_RELATIVE_CONTACT_BREAKING_THRESHOLD) /= 0 then
contactBreakingThreshold := math.Real'Min (body0.getCollisionShape.getContactBreakingThreshold (gContactBreakingThreshold),
body1.getCollisionShape.getContactBreakingThreshold (gContactBreakingThreshold));
else
contactBreakingThreshold := gContactBreakingThreshold;
end if;
contactProcessingThreshold := math.Real'Min (body0.getContactProcessingThreshold,
body1.getContactProcessingThreshold);
declare
manifold : constant impact.d3.Manifold.view := new impact.d3.Manifold.item'(to_Manifold (Containers.Any_view (body0), Containers.Any_view (body1),
0,
contactBreakingThreshold,
contactProcessingThreshold));
begin
Self.m_manifoldsPtr.append (manifold);
manifold.m_index1a := Integer (Self.m_manifoldsPtr.Length);
return manifold;
end;
end getNewManifold;
overriding procedure releaseManifold (Self : in out Item; manifold : access impact.d3.Manifold.Item'Class)
is
findIndex : Integer;
begin
gNumManifold := gNumManifold - 1;
Self.clearManifold (manifold);
findIndex := manifold.m_index1a; pragma Assert (findIndex <= Integer (Self.m_manifoldsPtr.Length));
Self.m_manifoldsPtr.swap (findIndex, Integer (Self.m_manifoldsPtr.Length) - 0);
Self.m_manifoldsPtr.Element (findIndex).m_index1a := findIndex;
Self.m_manifoldsPtr.delete_Last;
manifold.destruct;
declare
procedure free is new ada.Unchecked_Deallocation (impact.d3.Manifold.item'Class, impact.d3.Manifold.view);
the_Manifold : impact.d3.Manifold.view := manifold.all'Access;
begin
free (the_Manifold);
end;
end releaseManifold;
overriding procedure clearManifold (Self : in out Item; manifold : access impact.d3.Manifold.Item'Class)
is
pragma Unreferenced (Self);
begin
manifold.clearManifold;
end clearManifold;
function getDispatcherFlags (Self : in Item) return Flags
is
begin
return Self.m_dispatcherFlags;
end getDispatcherFlags;
procedure setDispatcherFlags (Self : in out Item; To : in Flags)
is
begin
Self.m_dispatcherFlags := To;
end setDispatcherFlags;
-- 'registerCollisionCreateFunc' allows registration of custom/alternative collision create functions.
--
procedure registerCollisionCreateFunc (Self : in out Item; proxyType0, proxyType1 : in impact.d3.collision.Proxy.BroadphaseNativeTypes;
createFunc : access impact.d3.collision.create_Func.item)
is
begin
Self.m_doubleDispatch (proxyType0, proxyType1) := createFunc;
end registerCollisionCreateFunc;
overriding function getNumManifolds (Self : in Item) return Natural
is
begin
return Natural (Self.m_manifoldsPtr.Length);
end getNumManifolds;
overriding function getInternalManifoldPointer (Self : access Item) return access impact.d3.Manifold.Vector
-- function getInternalManifoldPointer (Self : access Item) return access impact.d3.Manifold_view
is
begin
return Self.m_manifoldsPtr'Access;
end getInternalManifoldPointer;
overriding function getManifoldByIndexInternal (Self : in Item; index : in Integer) return impact.d3.Manifold.view
-- function getManifoldByIndexInternal (Self : access Item; index : in Integer) return impact.d3.Manifold_view
is
begin
return Self.m_manifoldsPtr.Element (index);
end getManifoldByIndexInternal;
overriding function needsCollision (Self : access Item; body0, body1 : access impact.d3.Object.item'Class) return Boolean
is
pragma Assert (body0 /= null);
pragma Assert (body1 /= null);
Result : Boolean := True;
begin
if (not body0.isActive)
and then (not body1.isActive)
then
Result := False;
elsif not body0.checkCollideWith (body1) then
Result := False;
end if;
return Result;
end needsCollision;
overriding function needsResponse (Self : access Item; body0, body1 : access impact.d3.Object.item'Class) return Boolean
is
pragma Unreferenced (Self);
hasResponse : Boolean := body0.hasContactResponse and then body1.hasContactResponse; -- Here you can do filtering.
begin
-- no response between two static/kinematic bodies:
--
hasResponse := hasResponse
and then ( (not body0.isStaticOrKinematicObject)
or else (not body1.isStaticOrKinematicObject));
return hasResponse;
end needsResponse;
procedure setNearCallback (Self : in out Item; nearCallback : in btNearCallback)
is
begin
Self.m_nearCallback := nearCallback;
end setNearCallback;
function getNearCallback (Self : in Item) return btNearCallback
is
begin
return Self.m_nearCallback;
end getNearCallback;
-- By default, Bullet will use this near callback.
--
procedure defaultNearCallback (collisionPair : access impact.d3.collision.Proxy.btBroadphasePair;
dispatcher : access impact.d3.Dispatcher.collision.Item'Class;
dispatchInfo : out impact.d3.Dispatcher.DispatcherInfo)
is
colObj0 : constant impact.d3.Object.view := impact.d3.Object.view (collisionPair.m_pProxy0.m_clientObject);
colObj1 : constant impact.d3.Object.view := impact.d3.Object.view (collisionPair.m_pProxy1.m_clientObject);
contactPointResult : aliased impact.d3.collision.manifold_Result.item;
toi : math.Real;
begin
if dispatcher.needsCollision (colObj0, colObj1) then
-- Dispatcher will keep algorithms persistent in the collision pair.
--
if collisionPair.m_algorithm = null then
collisionPair.m_algorithm := dispatcher.findAlgorithm (colObj0, colObj1);
end if;
if collisionPair.m_algorithm /= null then
contactPointResult := impact.d3.collision.manifold_Result.Forge.to_manifold_Result (colObj0, colObj1);
if dispatchInfo.m_dispatchFunc = DISPATCH_DISCRETE then -- Discrete collision detection query.
collisionPair.m_algorithm.processCollision (colObj0, colObj1,
dispatchInfo,
contactPointResult);
else -- Continuous collision detection query, time of impact (toi).
toi := collisionPair.m_algorithm.calculateTimeOfImpact (colObj0, colObj1,
dispatchInfo,
contactPointResult'Access);
if dispatchInfo.m_timeOfImpact > toi then
dispatchInfo.m_timeOfImpact := toi;
end if;
end if;
end if;
end if;
end defaultNearCallback;
function allocateCollisionAlgorithm (Self : access Item; size : in Integer) return system.Address
is
pragma Unreferenced (Self, size);
begin
return system.Null_Address;
end allocateCollisionAlgorithm;
overriding procedure freeCollisionAlgorithm (Self : in out Item; ptr : access impact.d3.collision.Algorithm.item'Class)
is
pragma Unreferenced (Self, ptr);
begin
return;
end freeCollisionAlgorithm;
function getCollisionConfiguration (Self : access Item) return access impact.d3.collision.Configuration.Item'Class
is
begin
return Self.m_collisionConfiguration;
end getCollisionConfiguration;
procedure setCollisionConfiguration (Self : in out Item; config : access impact.d3.collision.Configuration.item'Class)
is
begin
Self.m_collisionConfiguration := config;
end setCollisionConfiguration;
-- Interface for iterating all overlapping collision pairs, no matter how those pairs are stored (array, set, map etc).
-- This is useful for the collision dispatcher.
--
type btCollisionPairCallback (m_dispatchInfo : access impact.d3.Dispatcher.DispatcherInfo)
is new impact.d3.collision.overlapped_pair_Callback.cached.btOverlapCallback with
record
m_dispatcher : access impact.d3.Dispatcher.collision.item'Class;
end record;
overriding function processOverlap (Self : in btCollisionPairCallback; pair : access impact.d3.collision.Proxy.btBroadphasePair) return Boolean;
function to_btCollisionPairCallback (dispatchInfo : access impact.d3.Dispatcher.DispatcherInfo;
dispatcher : access impact.d3.Dispatcher.collision.item'Class) return btCollisionPairCallback
is
Self : btCollisionPairCallback (dispatchInfo);
begin
Self.m_dispatcher := dispatcher;
return Self;
end to_btCollisionPairCallback;
overriding function processOverlap (Self : in btCollisionPairCallback; pair : access impact.d3.collision.Proxy.btBroadphasePair) return Boolean
is
begin
Self.m_dispatcher.getNearCallback.all (pair,
Self.m_dispatcher,
Self.m_dispatchInfo.all);
return False;
end processOverlap;
overriding procedure dispatchAllCollisionPairs (Self : in out Item; pairCache : access impact.d3.collision.overlapped_pair_Callback.cached.item'Class;
dispatchInfo : access impact.d3.Dispatcher.DispatcherInfo;
dispatcher : access impact.d3.Dispatcher.item'Class)
is
begin
-- m_blockedForChanges = true;
declare
collisionCallback : aliased btCollisionPairCallback := to_btCollisionPairCallback (dispatchInfo, Self'Unchecked_Access);
begin
pairCache.processAllOverlappingPairs (collisionCallback'Access, dispatcher);
end;
-- m_blockedForChanges = false;
end dispatchAllCollisionPairs;
end impact.d3.Dispatcher.collision;
| 28.778243 | 158 | 0.640448 |
1abb381539244e04b8d2e9a6a05aa45b7f014445 | 1,437 | ads | Ada | list_lib.ads | Spohn/LegendOfZelba | f0bf1310647156ad5eab4977eaa3aea58c7f21cb | [
"MIT"
] | 2 | 2016-06-10T05:49:59.000Z | 2017-10-07T05:38:09.000Z | list_lib.ads | Spohn/LegendOfZelba | f0bf1310647156ad5eab4977eaa3aea58c7f21cb | [
"MIT"
] | null | null | null | list_lib.ads | Spohn/LegendOfZelba | f0bf1310647156ad5eab4977eaa3aea58c7f21cb | [
"MIT"
] | null | null | null | PACKAGE List_Lib IS
TYPE Node_Pointer IS PRIVATE;
TYPE LL_Type IS PRIVATE;
-- exported exceptions
OUT_OF_SPACE: EXCEPTION;
PAST_END: EXCEPTION;
PAST_BEGIN: EXCEPTION;
LL_UNDERFLOW: EXCEPTION;
--------------------------------------------------------------------------
-- constructor operations
PROCEDURE InitLL (One_LL: IN OUT LL_Type);
-- Pre: One_LL is defined
-- Post: One_LL is empty and ready to take nodes
--Traverse to next key in key list
PROCEDURE Next_key(L : IN OUT LL_type);
--compare current key with position of hero
Function CheckCurrent(L : LL_type; Xpos : integer; Ypos : Integer) Return integer;
PROCEDURE Add(One_LL: IN OUT LL_Type; X: IN integer; Y : In integer);
--No more keys in list
Function NoKey(L : LL_type) return integer;
--Print key list
procedure PrintL(L : In out LL_type);
--------------------------------------------------------------------------
-- input/output operations
--------------------------------------------------------------------------
PRIVATE
TYPE Node;
TYPE Node_Pointer IS ACCESS Node;
TYPE Node IS RECORD
X: Integer;
Y: Integer;
Next: Node_Pointer;
END RECORD;
TYPE LL_Type IS RECORD
Head: Node_Pointer;
Tail: Node_Pointer;
Current: Node_pointer;
END RECORD;
END List_Lib;
| 28.176471 | 85 | 0.536534 |
4b9dc0e307c0ea2d650f1d8fe5645be89e225d36 | 3,596 | adb | Ada | source/amf/utp/amf-internals-factories-utp_factories-create_time_from_string.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-factories-utp_factories-create_time_from_string.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-factories-utp_factories-create_time_from_string.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$
------------------------------------------------------------------------------
separate (AMF.Internals.Factories.Utp_Factories)
function Create_Time_From_String
(Image : League.Strings.Universal_String) return League.Holders.Holder is
begin
raise Program_Error;
return League.Holders.Empty_Holder;
end Create_Time_From_String;
| 69.153846 | 78 | 0.419633 |
9a411a3e7b63c2a16cd4e6571ca7abcd853efacd | 832 | adb | Ada | gdb/testsuite/gdb.ada/var_arr_attrs/pck.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/var_arr_attrs/pck.adb | greyblue9/binutils-gdb | 05377632b124fe7600eea7f4ee0e9a35d1b0cbdc | [
"BSD-3-Clause"
] | null | null | null | gdb/testsuite/gdb.ada/var_arr_attrs/pck.adb | greyblue9/binutils-gdb | 05377632b124fe7600eea7f4ee0e9a35d1b0cbdc | [
"BSD-3-Clause"
] | null | null | null | -- Copyright 2015-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 Pck is
procedure Do_Nothing (A : System.Address) is
begin
null;
end Do_Nothing;
end Pck;
| 37.818182 | 73 | 0.729567 |
38acdc2c5e11376e3d0428abacd41c05af73e900 | 11,502 | adb | Ada | 08/2/src/main.adb | Heziode/aoc-ada-2021 | fd2fcb177a930d16a16da888e89aeca8946cc615 | [
"BSD-2-Clause"
] | 3 | 2021-12-02T10:21:33.000Z | 2021-12-25T13:31:55.000Z | 08/2/src/main.adb | Heziode/aoc-ada-2021 | fd2fcb177a930d16a16da888e89aeca8946cc615 | [
"BSD-2-Clause"
] | null | null | null | 08/2/src/main.adb | Heziode/aoc-ada-2021 | fd2fcb177a930d16a16da888e89aeca8946cc615 | [
"BSD-2-Clause"
] | 1 | 2021-12-06T22:47:02.000Z | 2021-12-06T22:47:02.000Z | with Ada.Containers.Generic_Array_Sort,
Ada.Containers.Generic_Constrained_Array_Sort,
Ada.Containers.Indefinite_Hashed_Maps,
Ada.Integer_Text_IO,
Ada.Strings.Bounded,
Ada.Strings.Bounded.Hash,
Ada.Text_IO;
with Utils;
procedure Main is
use Ada.Text_IO;
use Utils;
package Digit_Str is new
Ada.Strings.Bounded.Generic_Bounded_Length (Max => 7);
use Digit_Str;
subtype Segment is Character range 'a' .. 'g';
subtype Digit is Bounded_String;
subtype Seven_Segments_Digits is Natural range 0 .. 9;
-- Sort the characters in a String
procedure String_Sort is new Ada.Containers.Generic_Array_Sort (Positive, Character, String);
function Digit_Hash is new Ada.Strings.Bounded.Hash (Digit_Str);
package Segments_To_Digit_Maps is new Ada.Containers.Indefinite_Hashed_Maps
(Key_Type => Digit,
Element_Type => Seven_Segments_Digits,
Hash => Digit_Hash,
Equivalent_Keys => "=");
function Segment_Hash (Elt : Segment) return Ada.Containers.Hash_Type is
(Ada.Containers.Hash_Type (Segment'Pos (Elt)));
package Mapping_Table_Maps is new Ada.Containers.Indefinite_Hashed_Maps
(Key_Type => Segment,
Element_Type => Segment,
Hash => Segment_Hash,
Equivalent_Keys => "=");
subtype Digits_Array_Index is Positive range 1 .. 10;
type Digits_Array is array (Digits_Array_Index) of Digit;
function Is_Lower_Than (Left, Right : Digit) return Boolean is (Length (Left) < Length (Right));
procedure Digits_Sort is new Ada.Containers.Generic_Constrained_Array_Sort (Index_Type => Digits_Array_Index,
Element_Type => Digit,
Array_Type => Digits_Array,
"<" => Is_Lower_Than);
-- Given a String that represent a segment (like "be", or "fgaecd", etc.) it retrieve the corresponding segment.
-- Note: when the word "associated" is used, it means that we cannot know exactly which segment corresponds
-- to which other segment.
-- When the word "corresponding" is used, it means that we know exactly which segment corresponds to which
-- other segment.
--
-- @param Seg a String that represent a digit
-- @returns Retruns the corresponding mapping table between segments of digits
function Get_Corresponding_Segments (Digit_Array : Digits_Array) return Mapping_Table_Maps.Map;
--------------------------------
-- Get_Corresponding_Segments --
--------------------------------
function Get_Corresponding_Segments (Digit_Array : Digits_Array) return Mapping_Table_Maps.Map is
use Mapping_Table_Maps;
Mapping_Table : Mapping_Table_Maps.Map;
CF_Seg,
BD_Seg,
EG_Seg : Digit := Null_Bounded_String;
Can_Break_CF,
Can_Break_BD : Boolean := False;
begin
-- Get the number 1 to get associated segments "c" and "f"
CF_Seg := Digit_Array (1);
-- Get the number 7 to find the corresponding segment of "a"
for Char of To_String (Digit_Array (2)) loop
if Index (CF_Seg, Char & "", 1) = 0 then
Mapping_Table.Include (Char, 'a');
exit;
end if;
end loop;
-- Get the number 4 to find associated to "b" and "d"
for Char of To_String (Digit_Array (3)) loop
if Index (CF_Seg, Char & "", 1) = 0 then
BD_Seg := BD_Seg & Char;
end if;
end loop;
for Idx in 7 .. 9 loop
-- Find the number 6 to find corresponding segment of "f" and "c"
if (Index (Digit_Array (Idx), Element (CF_Seg, 1) & "") > 0) /=
(Index (Digit_Array (Idx), Element (CF_Seg, 2) & "") > 0)
then
if Index (Digit_Array (Idx), Element (CF_Seg, 1) & "") > 0 then
Mapping_Table.Include (Element (CF_Seg, 1), 'f');
Mapping_Table.Include (Element (CF_Seg, 2), 'c');
else
Mapping_Table.Include (Element (CF_Seg, 2), 'f');
Mapping_Table.Include (Element (CF_Seg, 1), 'c');
end if;
Can_Break_CF := True;
end if;
-- Find the number 0 to find corresponding segment of "b" and "d"
if (Index (Digit_Array (Idx), Element (BD_Seg, 1) & "") > 0) /=
(Index (Digit_Array (Idx), Element (BD_Seg, 2) & "") > 0)
then
if Index (Digit_Array (Idx), Element (BD_Seg, 1) & "") > 0 then
Mapping_Table.Include (Element (BD_Seg, 1), 'b');
Mapping_Table.Include (Element (BD_Seg, 2), 'd');
else
Mapping_Table.Include (Element (BD_Seg, 2), 'b');
Mapping_Table.Include (Element (BD_Seg, 1), 'd');
end if;
Can_Break_BD := True;
end if;
if Can_Break_CF and Can_Break_BD then
exit;
end if;
end loop;
for Char in Character range 'a' .. 'g' loop
if not Mapping_Table.Contains (Char) then
EG_Seg := EG_Seg & Char;
end if;
end loop;
-- Find the number 9 to find corresponding segment of "e" and "g"
for Idx in 7 .. 10 loop
if (Index (Digit_Array (Idx), Element (EG_Seg, 1) & "") > 0) /=
(Index (Digit_Array (Idx), Element (EG_Seg, 2) & "") > 0)
then
if Index (Digit_Array (Idx), Element (EG_Seg, 1) & "") > 0 then
Mapping_Table.Include (Element (EG_Seg, 1), 'g');
Mapping_Table.Include (Element (EG_Seg, 2), 'e');
else
Mapping_Table.Include (Element (EG_Seg, 2), 'g');
Mapping_Table.Include (Element (EG_Seg, 1), 'e');
end if;
exit;
end if;
end loop;
return Mapping_Table;
end Get_Corresponding_Segments;
use Segments_To_Digit_Maps;
-- Given a Value, it retrieve the original value according to Mapping_Table.
-- @param Mapping_Table The mapping table that correspond mixed segment signal with the good segment signal
-- @param Value The digit te retrieve
-- @returns Return the resolved digit
function Digit_Reconstruction (Mapping_Table : Mapping_Table_Maps.Map; Value : Digit) return Digit;
--------------------------
-- Digit_Reconstruction --
--------------------------
function Digit_Reconstruction (Mapping_Table : Mapping_Table_Maps.Map; Value : Digit) return Digit is
Result : Digit := Null_Bounded_String;
begin
for Char of To_String (Value) loop
Result := Result & Mapping_Table.Element (Char);
end loop;
declare
Str : String := To_String (Result);
begin
String_Sort (Str);
Result := To_Bounded_String (Str);
end;
return Result;
end Digit_Reconstruction;
File : File_Type;
Result : Natural := Natural'First;
Seven_Segment_Digit : Map := Empty_Map;
begin
Get_File (File);
if End_Of_File (File) then
raise Program_Error with "Empty file";
end if;
-- Initialilze "Seven_Segment_Digit" map
-- Length: 6
Seven_Segment_Digit.Include (To_Bounded_String ("abcefg"), 0);
-- Length: 2 (unique length)
Seven_Segment_Digit.Include (To_Bounded_String ("cf"), 1);
-- Length: 5
Seven_Segment_Digit.Include (To_Bounded_String ("acdeg"), 2);
-- Length: 5
Seven_Segment_Digit.Include (To_Bounded_String ("acdfg"), 3);
-- Length: 4 (unique length)
Seven_Segment_Digit.Include (To_Bounded_String ("bcdf"), 4);
-- Length: 5
Seven_Segment_Digit.Include (To_Bounded_String ("abdfg"), 5);
-- Length: 6
Seven_Segment_Digit.Include (To_Bounded_String ("abdefg"), 6);
-- Length: 3 (unique length)
Seven_Segment_Digit.Include (To_Bounded_String ("acf"), 7);
-- Length: 7 (unique length)
Seven_Segment_Digit.Include (To_Bounded_String ("abcdefg"), 8);
-- Length: 6
Seven_Segment_Digit.Include (To_Bounded_String ("abcdfg"), 9);
-- Get digit list
while not End_Of_File (File) loop
declare
Line : constant String := Get_Line (File);
First : Positive := Line'First;
Last : Positive := Line'First;
After_Pipe : Boolean := False;
Current_Input_Digits_Index : Digits_Array_Index := Digits_Array_Index'First;
Current_Digit_Value : Natural := Natural'First;
Current_Exponent : Natural := 3;
Mapping_Table : Mapping_Table_Maps.Map := Mapping_Table_Maps.Empty_Map;
Current_Digit : Digit;
Input_Digits : Digits_Array;
begin
while Last <= Line'Last loop
if After_Pipe then
-- Right data
if Line (Last) = ' ' then
Current_Digit := Digit_Reconstruction (Mapping_Table, To_Bounded_String (Line (First .. Last - 1)));
Current_Digit_Value :=
Current_Digit_Value + Seven_Segment_Digit.Element (Current_Digit) * 10 ** Current_Exponent;
Current_Exponent := Current_Exponent - 1;
First := Last + 1;
elsif Last = Line'Last then
Current_Digit := Digit_Reconstruction (Mapping_Table, To_Bounded_String (Line (First .. Last)));
Current_Digit_Value :=
Current_Digit_Value + Seven_Segment_Digit.Element (Current_Digit);
Result := Result + Current_Digit_Value;
end if;
Last := Last + 1;
elsif Line (Last) = '|' then
After_Pipe := True;
Last := Last + 2;
First := Last;
Digits_Sort (Input_Digits);
Mapping_Table := Get_Corresponding_Segments (Input_Digits);
else
-- Left part
if Line (Last) = ' ' then
declare
Str : String := Line (First .. Last - 1);
begin
String_Sort (Str);
Input_Digits (Current_Input_Digits_Index) := To_Bounded_String (Str);
end;
Current_Input_Digits_Index :=
(if Current_Input_Digits_Index < 10 then Current_Input_Digits_Index + 1
else Digits_Array_Index'First);
First := Last + 1;
elsif Last = Line'Last then
declare
Str : String := Line (First .. Last);
begin
String_Sort (Str);
Input_Digits (Current_Input_Digits_Index) := To_Bounded_String (Str);
end;
Current_Input_Digits_Index := Current_Input_Digits_Index + 1;
First := Last + 1;
end if;
Last := Last + 1;
end if;
end loop;
end;
end loop;
Put ("Result: ");
Ada.Integer_Text_IO.Put (Result, Width => 0);
New_Line;
Close_If_Open (File);
exception
when others =>
Close_If_Open (File);
raise;
end Main;
| 37.835526 | 118 | 0.565554 |
a0d7489dd3b94e6fa5c4e85fd61f771a819d26de | 17,592 | ads | Ada | src/algos/line_finder/geo_filter.ads | yannickmoy/SPARKZumo | 29d4d5d4f00d43d2dafd8d8b8d21eea0769923f3 | [
"MIT"
] | 6 | 2018-04-05T21:05:17.000Z | 2021-06-04T15:24:09.000Z | src/algos/line_finder/geo_filter.ads | yannickmoy/SPARKZumo | 29d4d5d4f00d43d2dafd8d8b8d21eea0769923f3 | [
"MIT"
] | null | null | null | src/algos/line_finder/geo_filter.ads | yannickmoy/SPARKZumo | 29d4d5d4f00d43d2dafd8d8b8d21eea0769923f3 | [
"MIT"
] | 3 | 2021-01-18T16:07:40.000Z | 2021-05-03T15:52:13.000Z | pragma SPARK_Mode;
with Line_Finder_Types; use Line_Finder_Types;
-- @summary
-- Graph filtering mechanism for discrete state filtering
--
-- @description
-- The package is responsible for window averaging a set of states to low-pass
-- filter the change between states that the robot detects.
--
-- Please don't edit anything in this file marked GENERATED! These are items
-- that the project plugin generates during the compilation
--
package Geo_Filter is
-- The width of the averaging window
Window_Size : constant := 5;
-- This changed the size of the lookup table. Corresponds to half the
-- width and half the height of the lookup graph
Corner_Coord : constant := 15;
-- GENERATED - The radii length of calculated noise
Radii_Threshold : constant := 7; -- Corner_Coord / 3 * sqrt(2)
subtype X_Coordinate is Integer range (-1) * Corner_Coord .. Corner_Coord;
subtype Y_Coordinate is Integer range (-1) * Corner_Coord .. Corner_Coord;
-- A point in the Lookup table
-- @field X coordinate in the X horizontal axis
-- @field Y coordiante in the Y vertical axis
type Point_Type is record
X : X_Coordinate;
Y : Y_Coordinate;
end record;
-- Position of each point on the graph. This is the point inserted into
-- the averaging window
State2PointLookup : constant array (LineState) of Point_Type :=
(Lost => Point_Type'(X => (-1) * Corner_Coord,
Y => (-1) * Corner_Coord),
Online => Point_Type'(X => Corner_Coord,
Y => Corner_Coord),
BranchRight => Point_Type'(X => Corner_Coord,
Y => 0),
BranchLeft => Point_Type'(X => (-1) * Corner_Coord,
Y => Corner_Coord),
Fork => Point_Type'(X => Corner_Coord,
Y => (-1) * Corner_Coord),
Perp => Point_Type'(X => Corner_Coord,
Y => 0),
Unknown => Point_Type'(X => 0,
Y => 0));
type Window_Type is array (1 .. Window_Size) of Point_Type;
Window : Window_Type := (others => State2PointLookup (Online));
Window_Index : Integer range 1 .. Window_Size := Window_Type'First;
-- This performs the filtering
-- @param State pass the detected state here and received the computed
-- state here
-- @param Thresh whether or not the computed point is inside the threshold
-- window defined by the constant Radii_Threshold
procedure FilterState (State : in out LineState;
Thresh : out Boolean)
with Global => (In_Out => (Window,
Window_Index)),
Post => (if State'Old /= Unknown then
Window_Index /= Window_Index'Old);
private
-- Computes the distance from the center of the graph to coordinate X, Y
-- @param X the X value of the coordinate to compute
-- @param Y the y value of the coordinate to compute
-- @return True if the distance from the center of the graph to
-- X, Y > Radii_Threshold
function Radii_Length (X : Integer;
Y : Integer)
return Integer;
type StateLookupTable is array (X_Coordinate'Range, Y_Coordinate'Range)
of LineState;
-- GENERATED - this is computed from the project plugin and is dependent
-- on the Corner_Coord constant above
AvgPoint2StateLookup : constant StateLookupTable :=
((Unknown, Unknown, Unknown, Unknown, Unknown,
Unknown, Unknown, Unknown, Unknown, Unknown,
Unknown, Unknown, Unknown, Unknown, Unknown,
Unknown, Unknown, Unknown, Unknown, Unknown,
Unknown, Unknown, Unknown, Unknown, Unknown,
Unknown, Unknown, Unknown, Unknown, Unknown,
Unknown), (Unknown, Lost, Lost, Lost, Lost, Perp,
Perp, Perp, Perp, Perp, Perp, Perp, Perp, Perp,
Perp, Perp, Perp, Perp, Perp, Perp, Perp, Perp,
Perp, Perp, Perp, Perp, BranchLeft, BranchLeft,
BranchLeft, BranchLeft, Unknown), (Unknown, Lost,
Lost, Lost, Lost, Lost, Perp, Perp, Perp, Perp,
Perp, Perp, Perp, Perp, Perp, Perp, Perp, Perp,
Perp, Perp, Perp, Perp, Perp, Perp, Perp,
BranchLeft, BranchLeft, BranchLeft, BranchLeft,
BranchLeft, Unknown), (Unknown, Lost, Lost, Lost,
Lost, Lost, Lost, Perp, Perp, Perp, Perp, Perp,
Perp, Perp, Perp, Perp, Perp, Perp, Perp, Perp,
Perp, Perp, Perp, Perp, BranchLeft, BranchLeft,
BranchLeft, BranchLeft, BranchLeft, BranchLeft,
Unknown), (Unknown, Lost, Lost, Lost, Lost, Lost,
Lost, Perp, Perp, Perp, Perp, Perp, Perp, Perp,
Perp, Perp, Perp, Perp, Perp, Perp, Perp, Perp,
Perp, Perp, BranchLeft, BranchLeft, BranchLeft,
BranchLeft, BranchLeft, BranchLeft, Unknown),
(Unknown, Lost, Lost, Lost, Lost, Lost, Lost,
Lost, Perp, Perp, Perp, Perp, Perp, Perp, Perp,
Perp, Perp, Perp, Perp, Perp, Perp, Perp, Perp,
BranchLeft, BranchLeft, BranchLeft, BranchLeft,
BranchLeft, BranchLeft, BranchLeft, Unknown),
(Unknown, Lost, Lost, Lost, Lost, Lost, Lost,
Lost, Lost, Perp, Perp, Perp, Perp, Perp, Perp,
Perp, Perp, Perp, Perp, Perp, Perp, Perp,
BranchLeft, BranchLeft, BranchLeft, BranchLeft,
BranchLeft, BranchLeft, BranchLeft, BranchLeft,
Unknown), (Unknown, Lost, Lost, Lost, Lost, Lost,
Lost, Lost, Lost, Lost, Perp, Perp, Perp, Perp,
Perp, Perp, Perp, Perp, Perp, Perp, Perp,
BranchLeft, BranchLeft, BranchLeft, BranchLeft,
BranchLeft, BranchLeft, BranchLeft, BranchLeft,
BranchLeft, Unknown), (Unknown, Lost, Lost, Lost,
Lost, Lost, Lost, Lost, Lost, Lost, Perp, Perp,
Perp, Perp, Perp, Perp, Perp, Perp, Perp, Perp,
Perp, BranchLeft, BranchLeft, BranchLeft,
BranchLeft, BranchLeft, BranchLeft, BranchLeft,
BranchLeft, BranchLeft, Unknown), (Unknown, Lost,
Lost, Lost, Lost, Lost, Lost, Lost, Lost, Lost,
Lost, Perp, Perp, Perp, Perp, Perp, Perp, Perp,
Perp, Perp, BranchLeft, BranchLeft, BranchLeft,
BranchLeft, BranchLeft, BranchLeft, BranchLeft,
BranchLeft, BranchLeft, BranchLeft, Unknown),
(Unknown, Lost, Lost, Lost, Lost, Lost, Lost,
Lost, Lost, Lost, Lost, Lost, Perp, Perp, Perp,
Perp, Perp, Perp, Perp, BranchLeft, BranchLeft,
BranchLeft, BranchLeft, BranchLeft, BranchLeft,
BranchLeft, BranchLeft, BranchLeft, BranchLeft,
BranchLeft, Unknown), (Unknown, Lost, Lost, Lost,
Lost, Lost, Lost, Lost, Lost, Lost, Lost, Lost,
Lost, Perp, Perp, Perp, Perp, Perp, BranchLeft,
BranchLeft, BranchLeft, BranchLeft, BranchLeft,
BranchLeft, BranchLeft, BranchLeft, BranchLeft,
BranchLeft, BranchLeft, BranchLeft, Unknown),
(Unknown, Lost, Lost, Lost, Lost, Lost, Lost,
Lost, Lost, Lost, Lost, Lost, Lost, Perp, Perp,
Perp, Perp, Perp, BranchLeft, BranchLeft,
BranchLeft, BranchLeft, BranchLeft, BranchLeft,
BranchLeft, BranchLeft, BranchLeft, BranchLeft,
BranchLeft, BranchLeft, Unknown), (Unknown, Lost,
Lost, Lost, Lost, Lost, Lost, Lost, Lost, Lost,
Lost, Lost, Lost, Lost, Perp, Perp, Perp,
BranchLeft, BranchLeft, BranchLeft, BranchLeft,
BranchLeft, BranchLeft, BranchLeft, BranchLeft,
BranchLeft, BranchLeft, BranchLeft, BranchLeft,
BranchLeft, Unknown), (Unknown, Lost, Lost, Lost,
Lost, Lost, Lost, Lost, Lost, Lost, Lost, Lost,
Lost, Lost, Lost, Perp, BranchLeft, BranchLeft,
BranchLeft, BranchLeft, BranchLeft, BranchLeft,
BranchLeft, BranchLeft, BranchLeft, BranchLeft,
BranchLeft, BranchLeft, BranchLeft, BranchLeft,
Unknown), (Unknown, Unknown, Unknown, Unknown,
Unknown, Unknown, Unknown, Unknown, Unknown,
Unknown, Unknown, Unknown, Unknown, Unknown,
Unknown, Unknown, Unknown, Unknown, Unknown,
Unknown, Unknown, Unknown, Unknown, Unknown,
Unknown, Unknown, Unknown, Unknown, Unknown,
Unknown, Unknown), (Unknown, Fork, Fork, Fork,
Fork, Fork, Fork, Fork, Fork, Fork, Fork, Fork,
Fork, Fork, Fork, BranchRight, Online, Online,
Online, Online, Online, Online, Online, Online,
Online, Online, Online, Online, Online, Online,
Unknown), (Unknown, Fork, Fork, Fork, Fork, Fork,
Fork, Fork, Fork, Fork, Fork, Fork, Fork, Fork,
BranchRight, BranchRight, BranchRight, Online,
Online, Online, Online, Online, Online, Online,
Online, Online, Online, Online, Online, Online,
Unknown), (Unknown, Fork, Fork, Fork, Fork, Fork,
Fork, Fork, Fork, Fork, Fork, Fork, Fork,
BranchRight, BranchRight, BranchRight,
BranchRight, BranchRight, Online, Online, Online,
Online, Online, Online, Online, Online, Online,
Online, Online, Online, Unknown), (Unknown, Fork,
Fork, Fork, Fork, Fork, Fork, Fork, Fork, Fork,
Fork, Fork, Fork, BranchRight, BranchRight,
BranchRight, BranchRight, BranchRight, Online,
Online, Online, Online, Online, Online, Online,
Online, Online, Online, Online, Online, Unknown),
(Unknown, Fork, Fork, Fork, Fork, Fork, Fork,
Fork, Fork, Fork, Fork, Fork, BranchRight,
BranchRight, BranchRight, BranchRight,
BranchRight, BranchRight, BranchRight, Online,
Online, Online, Online, Online, Online, Online,
Online, Online, Online, Online, Unknown),
(Unknown, Fork, Fork, Fork, Fork, Fork, Fork,
Fork, Fork, Fork, Fork, BranchRight, BranchRight,
BranchRight, BranchRight, BranchRight,
BranchRight, BranchRight, BranchRight,
BranchRight, Online, Online, Online, Online,
Online, Online, Online, Online, Online, Online,
Unknown), (Unknown, Fork, Fork, Fork, Fork, Fork,
Fork, Fork, Fork, Fork, BranchRight, BranchRight,
BranchRight, BranchRight, BranchRight,
BranchRight, BranchRight, BranchRight,
BranchRight, BranchRight, BranchRight, Online,
Online, Online, Online, Online, Online, Online,
Online, Online, Unknown), (Unknown, Fork, Fork,
Fork, Fork, Fork, Fork, Fork, Fork, Fork,
BranchRight, BranchRight, BranchRight,
BranchRight, BranchRight, BranchRight,
BranchRight, BranchRight, BranchRight,
BranchRight, BranchRight, Online, Online, Online,
Online, Online, Online, Online, Online, Online,
Unknown), (Unknown, Fork, Fork, Fork, Fork, Fork,
Fork, Fork, Fork, BranchRight, BranchRight,
BranchRight, BranchRight, BranchRight,
BranchRight, BranchRight, BranchRight,
BranchRight, BranchRight, BranchRight,
BranchRight, BranchRight, Online, Online, Online,
Online, Online, Online, Online, Online, Unknown),
(Unknown, Fork, Fork, Fork, Fork, Fork, Fork,
Fork, BranchRight, BranchRight, BranchRight,
BranchRight, BranchRight, BranchRight,
BranchRight, BranchRight, BranchRight,
BranchRight, BranchRight, BranchRight,
BranchRight, BranchRight, BranchRight, Online,
Online, Online, Online, Online, Online, Online,
Unknown), (Unknown, Fork, Fork, Fork, Fork, Fork,
Fork, BranchRight, BranchRight, BranchRight,
BranchRight, BranchRight, BranchRight,
BranchRight, BranchRight, BranchRight,
BranchRight, BranchRight, BranchRight,
BranchRight, BranchRight, BranchRight,
BranchRight, BranchRight, Online, Online, Online,
Online, Online, Online, Unknown), (Unknown, Fork,
Fork, Fork, Fork, Fork, Fork, BranchRight,
BranchRight, BranchRight, BranchRight,
BranchRight, BranchRight, BranchRight,
BranchRight, BranchRight, BranchRight,
BranchRight, BranchRight, BranchRight,
BranchRight, BranchRight, BranchRight,
BranchRight, Online, Online, Online, Online,
Online, Online, Unknown), (Unknown, Fork, Fork,
Fork, Fork, Fork, BranchRight, BranchRight,
BranchRight, BranchRight, BranchRight,
BranchRight, BranchRight, BranchRight,
BranchRight, BranchRight, BranchRight,
BranchRight, BranchRight, BranchRight,
BranchRight, BranchRight, BranchRight,
BranchRight, BranchRight, Online, Online, Online,
Online, Online, Unknown), (Unknown, Fork, Fork,
Fork, Fork, BranchRight, BranchRight,
BranchRight, BranchRight, BranchRight,
BranchRight, BranchRight, BranchRight,
BranchRight, BranchRight, BranchRight,
BranchRight, BranchRight, BranchRight,
BranchRight, BranchRight, BranchRight,
BranchRight, BranchRight, BranchRight,
BranchRight, Online, Online, Online, Online,
Unknown), (Unknown, Unknown, Unknown, Unknown,
Unknown, Unknown, Unknown, Unknown, Unknown,
Unknown, Unknown, Unknown, Unknown, Unknown,
Unknown, Unknown, Unknown, Unknown, Unknown,
Unknown, Unknown, Unknown, Unknown, Unknown,
Unknown, Unknown, Unknown, Unknown, Unknown,
Unknown, Unknown));
end Geo_Filter;
| 63.73913 | 79 | 0.487267 |
a0577d73e3962bbc79fcb27a272489890e1b67e5 | 1,675 | ads | Ada | tier-1/xcb/source/thin/xcb-xcb_render_query_pict_index_values_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_render_query_pict_index_values_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_render_query_pict_index_values_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_render_query_pict_index_values_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;
format : aliased xcb.xcb_render_pictformat_t;
end record;
-- Item_Array
--
type Item_Array is
array
(Interfaces.C
.size_t range <>) of aliased xcb
.xcb_render_query_pict_index_values_request_t
.Item;
-- Pointer
--
package C_Pointers is new Interfaces.C.Pointers
(Index => Interfaces.C.size_t,
Element => xcb.xcb_render_query_pict_index_values_request_t.Item,
Element_Array =>
xcb.xcb_render_query_pict_index_values_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_render_query_pict_index_values_request_t
.Pointer;
-- Pointer_Pointer
--
package C_Pointer_Pointers is new Interfaces.C.Pointers
(Index => Interfaces.C.size_t,
Element => xcb.xcb_render_query_pict_index_values_request_t.Pointer,
Element_Array =>
xcb.xcb_render_query_pict_index_values_request_t.Pointer_Array,
Default_Terminator => null);
subtype Pointer_Pointer is C_Pointer_Pointers.Pointer;
end xcb.xcb_render_query_pict_index_values_request_t;
| 27.916667 | 77 | 0.696716 |
04f1ae04f7599f04474957e47994c8b6b77533cc | 221 | adb | Ada | gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/opt15.adb | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | 7 | 2020-05-02T17:34:05.000Z | 2021-10-17T10:15:18.000Z | gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/opt15.adb | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | null | null | null | gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/opt15.adb | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | 2 | 2020-07-27T00:22:36.000Z | 2021-04-01T09:41:02.000Z | -- { dg-do compile }
-- { dg-options "-O -gnatn -fdump-tree-optimized" }
with Opt15_Pkg; use Opt15_Pkg;
procedure Opt15 is
begin
Trace_Inlined;
end;
-- { dg-final { scan-tree-dump-not "trace_inlined" "optimized" } }
| 18.416667 | 66 | 0.678733 |
131e1133bb00044ddf963d083c04ee5ce4c28498 | 3,313 | ads | Ada | source/nodes/program-nodes-null_components.ads | optikos/oasis | 9f64d46d26d964790d69f9db681c874cfb3bf96d | [
"MIT"
] | null | null | null | source/nodes/program-nodes-null_components.ads | optikos/oasis | 9f64d46d26d964790d69f9db681c874cfb3bf96d | [
"MIT"
] | null | null | null | source/nodes/program-nodes-null_components.ads | optikos/oasis | 9f64d46d26d964790d69f9db681c874cfb3bf96d | [
"MIT"
] | 2 | 2019-09-14T23:18:50.000Z | 2019-10-02T10:11:40.000Z | -- Copyright (c) 2019 Maxim Reznik <[email protected]>
--
-- SPDX-License-Identifier: MIT
-- License-Filename: LICENSE
-------------------------------------------------------------
with Program.Lexical_Elements;
with Program.Elements.Null_Components;
with Program.Element_Visitors;
package Program.Nodes.Null_Components is
pragma Preelaborate;
type Null_Component is
new Program.Nodes.Node and Program.Elements.Null_Components.Null_Component
and Program.Elements.Null_Components.Null_Component_Text
with private;
function Create
(Null_Token : not null Program.Lexical_Elements
.Lexical_Element_Access;
Semicolon_Token : not null Program.Lexical_Elements
.Lexical_Element_Access)
return Null_Component;
type Implicit_Null_Component is
new Program.Nodes.Node and Program.Elements.Null_Components.Null_Component
with private;
function Create
(Is_Part_Of_Implicit : Boolean := False;
Is_Part_Of_Inherited : Boolean := False;
Is_Part_Of_Instance : Boolean := False)
return Implicit_Null_Component
with Pre =>
Is_Part_Of_Implicit or Is_Part_Of_Inherited or Is_Part_Of_Instance;
private
type Base_Null_Component is
abstract new Program.Nodes.Node
and Program.Elements.Null_Components.Null_Component
with null record;
procedure Initialize (Self : aliased in out Base_Null_Component'Class);
overriding procedure Visit
(Self : not null access Base_Null_Component;
Visitor : in out Program.Element_Visitors.Element_Visitor'Class);
overriding function Is_Null_Component_Element
(Self : Base_Null_Component)
return Boolean;
overriding function Is_Definition_Element
(Self : Base_Null_Component)
return Boolean;
type Null_Component is
new Base_Null_Component
and Program.Elements.Null_Components.Null_Component_Text
with record
Null_Token : not null Program.Lexical_Elements
.Lexical_Element_Access;
Semicolon_Token : not null Program.Lexical_Elements
.Lexical_Element_Access;
end record;
overriding function To_Null_Component_Text
(Self : aliased in out Null_Component)
return Program.Elements.Null_Components.Null_Component_Text_Access;
overriding function Null_Token
(Self : Null_Component)
return not null Program.Lexical_Elements.Lexical_Element_Access;
overriding function Semicolon_Token
(Self : Null_Component)
return not null Program.Lexical_Elements.Lexical_Element_Access;
type Implicit_Null_Component is
new Base_Null_Component
with record
Is_Part_Of_Implicit : Boolean;
Is_Part_Of_Inherited : Boolean;
Is_Part_Of_Instance : Boolean;
end record;
overriding function To_Null_Component_Text
(Self : aliased in out Implicit_Null_Component)
return Program.Elements.Null_Components.Null_Component_Text_Access;
overriding function Is_Part_Of_Implicit
(Self : Implicit_Null_Component)
return Boolean;
overriding function Is_Part_Of_Inherited
(Self : Implicit_Null_Component)
return Boolean;
overriding function Is_Part_Of_Instance
(Self : Implicit_Null_Component)
return Boolean;
end Program.Nodes.Null_Components;
| 31.254717 | 79 | 0.736493 |
1e54853d84cd6b31c5e92989482d1f0a688e5fe9 | 16,114 | ads | Ada | software/hal/hpl/STM32/svd/stm32f427x/stm32_svd-usart.ads | TUM-EI-RCS/StratoX | 5fdd04e01a25efef6052376f43ce85b5bc973392 | [
"BSD-3-Clause"
] | 12 | 2017-06-08T14:19:57.000Z | 2022-03-09T02:48:59.000Z | software/hal/hpl/STM32/svd/stm32f427x/stm32_svd-usart.ads | TUM-EI-RCS/StratoX | 5fdd04e01a25efef6052376f43ce85b5bc973392 | [
"BSD-3-Clause"
] | 6 | 2017-06-08T13:13:50.000Z | 2020-05-15T09:32:43.000Z | software/hal/hpl/STM32/svd/stm32f427x/stm32_svd-usart.ads | TUM-EI-RCS/StratoX | 5fdd04e01a25efef6052376f43ce85b5bc973392 | [
"BSD-3-Clause"
] | 3 | 2017-06-30T14:05:06.000Z | 2022-02-17T12:20:45.000Z | -- This spec has been automatically generated from STM32F427x.svd
pragma Restrictions (No_Elaboration_Code);
pragma Ada_2012;
with System;
with HAL;
package STM32_SVD.USART is
pragma Preelaborate;
---------------
-- Registers --
---------------
-----------------
-- SR_Register --
-----------------
-- Status register
type SR_Register is record
-- Read-only. Parity error
PE : Boolean := False;
-- Read-only. Framing error
FE : Boolean := False;
-- Read-only. Noise detected flag
NF : Boolean := False;
-- Read-only. Overrun error
ORE : Boolean := False;
-- Read-only. IDLE line detected
IDLE : Boolean := False;
-- Read data register not empty
RXNE : Boolean := False;
-- Transmission complete
TC : Boolean := False;
-- Read-only. Transmit data register empty
TXE : Boolean := False;
-- LIN break detection flag
LBD : Boolean := False;
-- CTS flag
CTS : Boolean := False;
-- unspecified
Reserved_10_31 : HAL.UInt22 := 16#3000#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for SR_Register use record
PE at 0 range 0 .. 0;
FE at 0 range 1 .. 1;
NF at 0 range 2 .. 2;
ORE at 0 range 3 .. 3;
IDLE at 0 range 4 .. 4;
RXNE at 0 range 5 .. 5;
TC at 0 range 6 .. 6;
TXE at 0 range 7 .. 7;
LBD at 0 range 8 .. 8;
CTS at 0 range 9 .. 9;
Reserved_10_31 at 0 range 10 .. 31;
end record;
-----------------
-- DR_Register --
-----------------
subtype DR_DR_Field is HAL.UInt9;
-- Data register
type DR_Register is record
-- Data value
DR : DR_DR_Field := 16#0#;
-- unspecified
Reserved_9_31 : HAL.UInt23 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for DR_Register use record
DR at 0 range 0 .. 8;
Reserved_9_31 at 0 range 9 .. 31;
end record;
------------------
-- BRR_Register --
------------------
subtype BRR_DIV_Fraction_Field is HAL.UInt4;
subtype BRR_DIV_Mantissa_Field is HAL.UInt12;
-- Baud rate register
type BRR_Register is record
-- fraction of USARTDIV
DIV_Fraction : BRR_DIV_Fraction_Field := 16#0#;
-- mantissa of USARTDIV
DIV_Mantissa : BRR_DIV_Mantissa_Field := 16#0#;
-- unspecified
Reserved_16_31 : HAL.Short := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for BRR_Register use record
DIV_Fraction at 0 range 0 .. 3;
DIV_Mantissa at 0 range 4 .. 15;
Reserved_16_31 at 0 range 16 .. 31;
end record;
------------------
-- CR1_Register --
------------------
-- Control register 1
type CR1_Register is record
-- Send break
SBK : Boolean := False;
-- Receiver wakeup
RWU : Boolean := False;
-- Receiver enable
RE : Boolean := False;
-- Transmitter enable
TE : Boolean := False;
-- IDLE interrupt enable
IDLEIE : Boolean := False;
-- RXNE interrupt enable
RXNEIE : Boolean := False;
-- Transmission complete interrupt enable
TCIE : Boolean := False;
-- TXE interrupt enable
TXEIE : Boolean := False;
-- PE interrupt enable
PEIE : Boolean := False;
-- Parity selection
PS : Boolean := False;
-- Parity control enable
PCE : Boolean := False;
-- Wakeup method
WAKE : Boolean := False;
-- Word length
M : Boolean := False;
-- USART enable
UE : Boolean := False;
-- unspecified
Reserved_14_14 : HAL.Bit := 16#0#;
-- Oversampling mode
OVER8 : Boolean := False;
-- unspecified
Reserved_16_31 : HAL.Short := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for CR1_Register use record
SBK at 0 range 0 .. 0;
RWU at 0 range 1 .. 1;
RE at 0 range 2 .. 2;
TE at 0 range 3 .. 3;
IDLEIE at 0 range 4 .. 4;
RXNEIE at 0 range 5 .. 5;
TCIE at 0 range 6 .. 6;
TXEIE at 0 range 7 .. 7;
PEIE at 0 range 8 .. 8;
PS at 0 range 9 .. 9;
PCE at 0 range 10 .. 10;
WAKE at 0 range 11 .. 11;
M at 0 range 12 .. 12;
UE at 0 range 13 .. 13;
Reserved_14_14 at 0 range 14 .. 14;
OVER8 at 0 range 15 .. 15;
Reserved_16_31 at 0 range 16 .. 31;
end record;
------------------
-- CR2_Register --
------------------
subtype CR2_ADD_Field is HAL.UInt4;
subtype CR2_STOP_Field is HAL.UInt2;
-- Control register 2
type CR2_Register is record
-- Address of the USART node
ADD : CR2_ADD_Field := 16#0#;
-- unspecified
Reserved_4_4 : HAL.Bit := 16#0#;
-- lin break detection length
LBDL : Boolean := False;
-- LIN break detection interrupt enable
LBDIE : Boolean := False;
-- unspecified
Reserved_7_7 : HAL.Bit := 16#0#;
-- Last bit clock pulse
LBCL : Boolean := False;
-- Clock phase
CPHA : Boolean := False;
-- Clock polarity
CPOL : Boolean := False;
-- Clock enable
CLKEN : Boolean := False;
-- STOP bits
STOP : CR2_STOP_Field := 16#0#;
-- LIN mode enable
LINEN : Boolean := False;
-- unspecified
Reserved_15_31 : HAL.UInt17 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for CR2_Register use record
ADD at 0 range 0 .. 3;
Reserved_4_4 at 0 range 4 .. 4;
LBDL at 0 range 5 .. 5;
LBDIE at 0 range 6 .. 6;
Reserved_7_7 at 0 range 7 .. 7;
LBCL at 0 range 8 .. 8;
CPHA at 0 range 9 .. 9;
CPOL at 0 range 10 .. 10;
CLKEN at 0 range 11 .. 11;
STOP at 0 range 12 .. 13;
LINEN at 0 range 14 .. 14;
Reserved_15_31 at 0 range 15 .. 31;
end record;
------------------
-- CR3_Register --
------------------
-- Control register 3
type CR3_Register is record
-- Error interrupt enable
EIE : Boolean := False;
-- IrDA mode enable
IREN : Boolean := False;
-- IrDA low-power
IRLP : Boolean := False;
-- Half-duplex selection
HDSEL : Boolean := False;
-- Smartcard NACK enable
NACK : Boolean := False;
-- Smartcard mode enable
SCEN : Boolean := False;
-- DMA enable receiver
DMAR : Boolean := False;
-- DMA enable transmitter
DMAT : Boolean := False;
-- RTS enable
RTSE : Boolean := False;
-- CTS enable
CTSE : Boolean := False;
-- CTS interrupt enable
CTSIE : Boolean := False;
-- One sample bit method enable
ONEBIT : Boolean := False;
-- unspecified
Reserved_12_31 : HAL.UInt20 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for CR3_Register use record
EIE at 0 range 0 .. 0;
IREN at 0 range 1 .. 1;
IRLP at 0 range 2 .. 2;
HDSEL at 0 range 3 .. 3;
NACK at 0 range 4 .. 4;
SCEN at 0 range 5 .. 5;
DMAR at 0 range 6 .. 6;
DMAT at 0 range 7 .. 7;
RTSE at 0 range 8 .. 8;
CTSE at 0 range 9 .. 9;
CTSIE at 0 range 10 .. 10;
ONEBIT at 0 range 11 .. 11;
Reserved_12_31 at 0 range 12 .. 31;
end record;
-------------------
-- GTPR_Register --
-------------------
subtype GTPR_PSC_Field is HAL.Byte;
subtype GTPR_GT_Field is HAL.Byte;
-- Guard time and prescaler register
type GTPR_Register is record
-- Prescaler value
PSC : GTPR_PSC_Field := 16#0#;
-- Guard time value
GT : GTPR_GT_Field := 16#0#;
-- unspecified
Reserved_16_31 : HAL.Short := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for GTPR_Register use record
PSC at 0 range 0 .. 7;
GT at 0 range 8 .. 15;
Reserved_16_31 at 0 range 16 .. 31;
end record;
-----------------
-- SR_Register --
-----------------
-- Status register
type SR_Register_1 is record
-- Read-only. Parity error
PE : Boolean := False;
-- Read-only. Framing error
FE : Boolean := False;
-- Read-only. Noise detected flag
NF : Boolean := False;
-- Read-only. Overrun error
ORE : Boolean := False;
-- Read-only. IDLE line detected
IDLE : Boolean := False;
-- Read data register not empty
RXNE : Boolean := False;
-- Transmission complete
TC : Boolean := False;
-- Read-only. Transmit data register empty
TXE : Boolean := False;
-- LIN break detection flag
LBD : Boolean := False;
-- unspecified
Reserved_9_31 : HAL.UInt23 := 16#6000#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for SR_Register_1 use record
PE at 0 range 0 .. 0;
FE at 0 range 1 .. 1;
NF at 0 range 2 .. 2;
ORE at 0 range 3 .. 3;
IDLE at 0 range 4 .. 4;
RXNE at 0 range 5 .. 5;
TC at 0 range 6 .. 6;
TXE at 0 range 7 .. 7;
LBD at 0 range 8 .. 8;
Reserved_9_31 at 0 range 9 .. 31;
end record;
------------------
-- CR2_Register --
------------------
-- Control register 2
type CR2_Register_1 is record
-- Address of the USART node
ADD : CR2_ADD_Field := 16#0#;
-- unspecified
Reserved_4_4 : HAL.Bit := 16#0#;
-- lin break detection length
LBDL : Boolean := False;
-- LIN break detection interrupt enable
LBDIE : Boolean := False;
-- unspecified
Reserved_7_11 : HAL.UInt5 := 16#0#;
-- STOP bits
STOP : CR2_STOP_Field := 16#0#;
-- LIN mode enable
LINEN : Boolean := False;
-- unspecified
Reserved_15_31 : HAL.UInt17 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for CR2_Register_1 use record
ADD at 0 range 0 .. 3;
Reserved_4_4 at 0 range 4 .. 4;
LBDL at 0 range 5 .. 5;
LBDIE at 0 range 6 .. 6;
Reserved_7_11 at 0 range 7 .. 11;
STOP at 0 range 12 .. 13;
LINEN at 0 range 14 .. 14;
Reserved_15_31 at 0 range 15 .. 31;
end record;
------------------
-- CR3_Register --
------------------
-- Control register 3
type CR3_Register_1 is record
-- Error interrupt enable
EIE : Boolean := False;
-- IrDA mode enable
IREN : Boolean := False;
-- IrDA low-power
IRLP : Boolean := False;
-- Half-duplex selection
HDSEL : Boolean := False;
-- unspecified
Reserved_4_5 : HAL.UInt2 := 16#0#;
-- DMA enable receiver
DMAR : Boolean := False;
-- DMA enable transmitter
DMAT : Boolean := False;
-- unspecified
Reserved_8_10 : HAL.UInt3 := 16#0#;
-- One sample bit method enable
ONEBIT : Boolean := False;
-- unspecified
Reserved_12_31 : HAL.UInt20 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for CR3_Register_1 use record
EIE at 0 range 0 .. 0;
IREN at 0 range 1 .. 1;
IRLP at 0 range 2 .. 2;
HDSEL at 0 range 3 .. 3;
Reserved_4_5 at 0 range 4 .. 5;
DMAR at 0 range 6 .. 6;
DMAT at 0 range 7 .. 7;
Reserved_8_10 at 0 range 8 .. 10;
ONEBIT at 0 range 11 .. 11;
Reserved_12_31 at 0 range 12 .. 31;
end record;
-----------------
-- Peripherals --
-----------------
-- Universal synchronous asynchronous receiver transmitter
type USART2_Peripheral is record
-- Status register
SR : SR_Register;
-- Data register
DR : DR_Register;
-- Baud rate register
BRR : BRR_Register;
-- Control register 1
CR1 : CR1_Register;
-- Control register 2
CR2 : CR2_Register;
-- Control register 3
CR3 : CR3_Register;
-- Guard time and prescaler register
GTPR : GTPR_Register;
end record
with Volatile;
for USART2_Peripheral use record
SR at 0 range 0 .. 31;
DR at 4 range 0 .. 31;
BRR at 8 range 0 .. 31;
CR1 at 12 range 0 .. 31;
CR2 at 16 range 0 .. 31;
CR3 at 20 range 0 .. 31;
GTPR at 24 range 0 .. 31;
end record;
-- Universal synchronous asynchronous receiver transmitter
USART2_Periph : aliased USART2_Peripheral
with Import, Address => USART2_Base;
-- Universal synchronous asynchronous receiver transmitter
USART3_Periph : aliased USART2_Peripheral
with Import, Address => USART3_Base;
-- Universal synchronous asynchronous receiver transmitter
UART7_Periph : aliased USART2_Peripheral
with Import, Address => UART7_Base;
-- Universal synchronous asynchronous receiver transmitter
UART8_Periph : aliased USART2_Peripheral
with Import, Address => UART8_Base;
-- Universal synchronous asynchronous receiver transmitter
USART1_Periph : aliased USART2_Peripheral
with Import, Address => USART1_Base;
-- Universal synchronous asynchronous receiver transmitter
USART6_Periph : aliased USART2_Peripheral
with Import, Address => USART6_Base;
-- Universal synchronous asynchronous receiver transmitter
type UART4_Peripheral is record
-- Status register
SR : SR_Register_1;
-- Data register
DR : DR_Register;
-- Baud rate register
BRR : BRR_Register;
-- Control register 1
CR1 : CR1_Register;
-- Control register 2
CR2 : CR2_Register_1;
-- Control register 3
CR3 : CR3_Register_1;
end record
with Volatile;
for UART4_Peripheral use record
SR at 0 range 0 .. 31;
DR at 4 range 0 .. 31;
BRR at 8 range 0 .. 31;
CR1 at 12 range 0 .. 31;
CR2 at 16 range 0 .. 31;
CR3 at 20 range 0 .. 31;
end record;
-- Universal synchronous asynchronous receiver transmitter
UART4_Periph : aliased UART4_Peripheral
with Import, Address => UART4_Base;
-- Universal synchronous asynchronous receiver transmitter
UART5_Periph : aliased UART4_Peripheral
with Import, Address => UART5_Base;
end STM32_SVD.USART;
| 31.228682 | 66 | 0.515949 |
2232ef2681d74c50ea40b2d812070bb975f269ce | 1,371 | adb | Ada | chat_server_2.adb | cborao/Ada-P4-chat | 233f350bb99671d62e940911643d3904540a9dd3 | [
"MIT"
] | null | null | null | chat_server_2.adb | cborao/Ada-P4-chat | 233f350bb99671d62e940911643d3904540a9dd3 | [
"MIT"
] | null | null | null | chat_server_2.adb | cborao/Ada-P4-chat | 233f350bb99671d62e940911643d3904540a9dd3 | [
"MIT"
] | null | null | null |
--PRÁCTICA 4: César Borao Moratinos (chat_server_2)
with Handlers;
with Ada.Text_IO;
with Ada.Calendar;
with Chat_Messages;
with Ordered_Maps_G;
with Chat_Procedures;
with Lower_Layer_UDP;
with Ada.Command_Line;
with Ada.Strings.Unbounded;
procedure Chat_Server_2 is
package ATI renames Ada.Text_IO;
package CM renames Chat_Messages;
package CP renames Chat_Procedures;
package LLU renames Lower_Layer_UDP;
package ACL renames Ada.Command_Line;
package ASU renames Ada.Strings.Unbounded;
use type CM.Message_Type;
use type Ada.Calendar.Time;
Port: Integer;
Server_EP: LLU.End_Point_Type;
Request: Character;
begin
--Binding
Port := Integer'Value(ACL.Argument(1));
Server_EP := LLU.Build (LLU.To_IP(LLU.Get_Host_Name), Port);
if ACL.Argument_Count = 2 and CP.Max_Valid(Natural'Value(ACL.Argument(2))) then
loop
--Server Handler
LLU.Bind(Server_EP, Handlers.Server_Handler'Access);
loop
ATI.Get_Immediate(Request);
ATI.Put_Line(Character'Image(Request));
case Request is
when 'o'|'O' =>
CP.Print_Old_Map;
when 'l'|'L' =>
CP.Print_Active_Map;
when others =>
ATI.Put_Line("Not implemented");
end case;
end loop;
end loop;
else
ATI.New_Line;
ATI.Put_Line("Server Usage: [Port] <Max_Clients (2-50)>");
ATI.New_Line;
end if;
LLU.finalize;
end Chat_Server_2;
| 21.092308 | 80 | 0.716995 |
a0b985439717863ca4467b3baa7215c139d7c3b0 | 2,617 | adb | Ada | src/ada/src/utils/int64_parsing.adb | VVCAS-Sean/OpenUxAS | dcd7be29d182d278a5387908f568d6f8a06b79ee | [
"NASA-1.3"
] | 88 | 2017-08-24T07:02:01.000Z | 2022-03-18T04:34:17.000Z | src/ada/src/utils/int64_parsing.adb | VVCAS-Sean/OpenUxAS | dcd7be29d182d278a5387908f568d6f8a06b79ee | [
"NASA-1.3"
] | 46 | 2017-06-08T18:18:08.000Z | 2022-03-15T18:24:43.000Z | src/ada/src/utils/int64_parsing.adb | VVCAS-Sean/OpenUxAS | dcd7be29d182d278a5387908f568d6f8a06b79ee | [
"NASA-1.3"
] | 53 | 2017-06-22T14:48:05.000Z | 2022-02-15T16:59:38.000Z | package body Int64_Parsing with SPARK_Mode is
function Char_To_Int (C : Character) return Int64 is
(case C is
when '0' => 0,
when '1' => 1,
when '2' => 2,
when '3' => 3,
when '4' => 4,
when '5' => 5,
when '6' => 6,
when '7' => 7,
when '8' => 8,
when '9' => 9,
when others => raise Program_Error)
with Pre => C in '0' .. '9';
subtype Digit is Int64 range 0 .. 9;
function Int_To_Char (V : Digit) return Character is
(case V is
when 0 => '0',
when 1 => '1',
when 2 => '2',
when 3 => '3',
when 4 => '4',
when 5 => '5',
when 6 => '6',
when 7 => '7',
when 8 => '8',
when 9 => '9');
procedure Parse_Int64 (S : String; V : out Int64; Error : out Boolean) is
Is_Pos : constant Boolean := S'Length = 0 or else S (S'First) /= '-';
FirstZ : constant Integer := (if Is_Pos then S'First else S'First + 1);
First : Integer;
begin
V := 0;
Error := True;
if FirstZ > S'Last then
return;
end if;
First :=
(if FirstZ > S'Last or else S'Last - FirstZ <= 18
then FirstZ else S'Last - 18);
for I in FirstZ .. First - 1 loop
if S (I) /= '0' then
return;
end if;
pragma Loop_Invariant (for all K in FirstZ .. I => S (K) = '0');
end loop;
for I in 1 .. 19 loop
if S (I - 1 + First) not in '0' .. '9' then
return;
end if;
if I = 19 and then
(abs (V) > Int64'Last / 10
or else (abs (V) = Int64'Last / 10 and then S (I - 1 + First) > (if Is_Pos then '7' else '8')))
then
return;
end if;
V := V * 10 + (if Is_Pos then 1 else -1) * Char_To_Int (S (I - 1 + First));
if I - 1 + First = S'Last then
Error := False;
return;
end if;
end loop;
end Parse_Int64;
function Print_Int64 (V : Int64) return String is
res : String (1 .. 20) := (others => '0');
X : Int64 := V;
top : Natural := 20;
begin
if V = 0 then
return "0";
end if;
for I in 1 .. 19 loop
res (top) := Int_To_Char (abs (X rem 10));
top := top - 1;
X := X / 10;
exit when X = 0;
end loop;
if V < 0 then
res (top) := '-';
top := top - 1;
end if;
return (res (top + 1 .. 20));
end Print_Int64;
end Int64_Parsing;
| 26.979381 | 108 | 0.440581 |
1aff9d0c93c9e529b457a5d8c9d67d2048a6c4e8 | 3,080 | ads | Ada | Ada95/samples/ncurses2-slk_test.ads | neverware-mirrors/ncurses | 931939e0d2765af13962820e59cb6629df3ee638 | [
"X11"
] | 269 | 2015-03-01T21:34:42.000Z | 2022-03-30T23:07:18.000Z | Ada95/samples/ncurses2-slk_test.ads | neverware-mirrors/ncurses | 931939e0d2765af13962820e59cb6629df3ee638 | [
"X11"
] | 3 | 2020-10-09T15:00:37.000Z | 2020-10-09T15:05:19.000Z | Ada95/samples/ncurses2-slk_test.ads | neverware-mirrors/ncurses | 931939e0d2765af13962820e59cb6629df3ee638 | [
"X11"
] | 97 | 2016-04-25T06:22:54.000Z | 2022-03-30T23:07:19.000Z | ------------------------------------------------------------------------------
-- --
-- GNAT ncurses Binding Samples --
-- --
-- ncurses --
-- --
-- B O D Y --
-- --
------------------------------------------------------------------------------
-- Copyright 2020 Thomas E. Dickey --
-- Copyright 2000 Free Software Foundation, Inc. --
-- --
-- Permission is hereby granted, free of charge, to any person obtaining a --
-- copy of this software and associated documentation files (the --
-- "Software"), to deal in the Software without restriction, including --
-- without limitation the rights to use, copy, modify, merge, publish, --
-- distribute, distribute with modifications, sublicense, and/or sell --
-- copies of the Software, and to permit persons to whom the Software is --
-- furnished to do so, subject to the following conditions: --
-- --
-- The above copyright notice and this permission notice shall be included --
-- in all copies or substantial portions of the Software. --
-- --
-- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS --
-- OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF --
-- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. --
-- IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, --
-- DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR --
-- OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR --
-- THE USE OR OTHER DEALINGS IN THE SOFTWARE. --
-- --
-- Except as contained in this notice, the name(s) of the above copyright --
-- holders shall not be used in advertising or otherwise to promote the --
-- sale, use or other dealings in this Software without prior written --
-- authorization. --
------------------------------------------------------------------------------
-- Author: Eugene V. Melaragno <[email protected]> 2000
-- Version Control
-- $Revision: 1.2 $
-- Binding Version 01.00
------------------------------------------------------------------------------
procedure ncurses2.slk_test;
| 71.627907 | 78 | 0.402922 |
a00f15dd9301a55746626ec29d71e00f133d4d16 | 5,081 | adb | Ada | src/dds-request_reply-replier2.adb | alexcamposruiz/dds-requestreply | 9f29d34554b5d3e9291151c6e92d2ce6cc31bb71 | [
"MIT"
] | null | null | null | src/dds-request_reply-replier2.adb | alexcamposruiz/dds-requestreply | 9f29d34554b5d3e9291151c6e92d2ce6cc31bb71 | [
"MIT"
] | null | null | null | src/dds-request_reply-replier2.adb | alexcamposruiz/dds-requestreply | 9f29d34554b5d3e9291151c6e92d2ce6cc31bb71 | [
"MIT"
] | 2 | 2020-04-06T19:34:15.000Z | 2020-04-06T19:50:03.000Z | with DDS.DataReader;
with Dds;
with DDS.Request_Reply.Connext_C_Replier;
with DDS.Request_Reply.Connext_C_Entity_Params;
with Ada.Unchecked_Deallocation;
with DDS.Request_Reply.Connext_C_Untyped_Impl;
with DDS.Request_Reply.Untypedcommon;
package body DDS.Request_Reply.Replier is
use DDS.Request_Reply;
use Connext_C_Replier;
use Connext_C_Entity_Params;
use connext_c_untyped_impl;
use Untypedcommon;
-- void RTI_Connext_Replier_on_data_available(
-- void* listener_data, DDS_DataReader* reader)
-- {
-- RTI_Connext_Replier* self = (RTI_Connext_Replier*) listener_data;
--
-- DDSLog_testPrecondition(self != NULL, return)
-- DDSLog_testPrecondition(self->listener.on_request_available != NULL, return)
--
-- self->listener.on_request_available(&self->listener, self);
-- }
procedure RTI_Connext_Replier_On_Data_Available (Self : RTI_Connext_Replier_Access;
Reader : DDS.DataReader.Ref_Access) is
begin
Self.Listener.On_Request_Available (Self);
end;
-- DDS_ReturnCode_t RTI_Connext_ReplierParams_toEntityParams(
-- const RTI_Connext_ReplierParams* self, RTI_Connext_EntityParams* toParams)
-- {
--
-- DDSLog_testPrecondition(self == NULL, return DDS_RETCODE_PRECONDITION_NOT_MET);
-- DDSLog_testPrecondition(toParams == NULL, return DDS_RETCODE_PRECONDITION_NOT_MET);
-- toParams->participant = self->participant;
-- toParams->datareader_qos = self->datareader_qos;
-- toParams->datawriter_qos = self->datawriter_qos;
-- toParams->publisher = self->publisher;
-- toParams->qos_library_name = self->qos_library_name;
-- toParams->qos_profile_name = self->qos_profile_name;
-- toParams->reply_topic_name = self->reply_topic_name;
-- toParams->request_topic_name = self->request_topic_name;
-- toParams->service_name = self->service_name;
-- toParams->subscriber = self->subscriber;
--
-- return DDS_RETCODE_OK;
-- }
procedure RTI_Connext_ReplierParams_ToEntityParams (Self : RTI_Connext_ReplierParams;
ToParams : out RTI_Connext_EntityParams) is
begin
ToParams.Participant := Self.Participant;
Copy (ToParams.Datareader_Qos, Self.Datareader_Qos);
Copy (ToParams.Datawriter_Qos, Self.Datawriter_Qos);
ToParams.Publisher := Self.Publisher;
Copy (ToParams.Qos_Library_Name , Self.Qos_Library_Name);
Copy (ToParams.Qos_Profile_Name , Self.Qos_Profile_Name);
Copy (ToParams.Reply_Topic_Name, Self.Reply_Topic_Name);
Copy (ToParams.Request_Topic_Name, Self.Request_Topic_Name);
Copy (ToParams.Service_Name, Self.Service_Name);
ToParams.Subscriber := Self.Subscriber;
end;
-- DDS_ReturnCode_t RTI_Connext_Replier_delete(RTI_Connext_Replier * self)
-- {
-- DDS_ReturnCode_t retcode = DDS_RETCODE_OK;
--
-- if(self == NULL) {
-- DDSLog_exception(&DDS_LOG_BAD_PARAMETER_s,
-- "self");
-- return DDS_RETCODE_BAD_PARAMETER;
-- }
--
-- if (self->_impl != NULL) {
-- retcode = RTI_Connext_EntityUntypedImpl_delete(self->_impl);
-- if(retcode != DDS_RETCODE_OK) {
-- DDSLog_exception(&RTI_LOG_ANY_FAILURE_s,
-- "Failure deleting impl");
-- }
-- }
--
-- RTIOsapiHeap_free(self);
--
-- return retcode;
-- }
procedure RTI_Connext_Replier_Delete (Self : in out RTI_Connext_Replier_Access) is
procedure Free is new Ada.Unchecked_Deallocation (RTI_Connext_Replier, RTI_Connext_Replier_Access);
begin
Free (Self);
end;
-- DDS_ReturnCode_t RTI_Connext_Replier_wait_for_requests(
-- RTI_Connext_Replier* self,
-- int min_count,
-- const struct DDS_Duration_t* max_wait)
-- {
-- DDS_ReturnCode_t retcode = DDS_RETCODE_OK;
--
--
--
-- retcode = RTI_Connext_EntityUntypedImpl_wait_for_any_sample(
-- self->_impl, max_wait, min_count);
--
-- if(retcode != DDS_RETCODE_OK && retcode != DDS_RETCODE_TIMEOUT) {
-- DDSLog_exception(&RTI_LOG_ANY_FAILURE_s,
-- "wait for samples");
-- }
-- return retcode;
-- }
procedure RTI_Connext_Replier_Wait_For_Requests (Self : not null access RTI_Connext_Replier;
Min_Count : DDS.Integer;
Max_Wait : DDS.Duration_T) is
Dummy_ret : DDS.ReturnCode_T;
begin
Dummy_ret := RTI_Connext_EntityUntypedImpl_Wait_For_Any_Sample (RTI_Connext_EntityUntypedImpl (Self.all)'Access, Max_Wait => Max_Wait, Min_Sample_Count => Min_Count);
end;
end DDS.Request_Reply.Replier;
| 39.695313 | 172 | 0.63393 |
1e280eac764377f1b8d9855d3bd8aa1813eb34db | 2,153 | adb | Ada | tests/hs_256_test.adb | reznikmm/jwt | 49fcd8148b929cf48719c88c478705c2f410f458 | [
"MIT"
] | 8 | 2020-01-06T17:45:21.000Z | 2022-01-11T10:20:06.000Z | tests/hs_256_test.adb | reznikmm/jwt | 49fcd8148b929cf48719c88c478705c2f410f458 | [
"MIT"
] | null | null | null | tests/hs_256_test.adb | reznikmm/jwt | 49fcd8148b929cf48719c88c478705c2f410f458 | [
"MIT"
] | null | null | null | -- Copyright (c) 2020 Maxim Reznik <[email protected]>
--
-- SPDX-License-Identifier: MIT
-- License-Filename: LICENSE
-------------------------------------------------------------
with Ada.Streams;
with League.Strings;
with League.Base_Codecs;
with JWS;
procedure HS_256_Test is
function "+"
(Item : Wide_Wide_String) return League.Strings.Universal_String
renames League.Strings.To_Universal_String;
-- This data is from rfc7515 example.
Header_Encoded : constant Wide_Wide_String :=
"eyJ0eXAiOiJKV1QiLA0KICJhbGciOiJIUzI1NiJ9";
Payload_Encoded : constant Wide_Wide_String :=
"eyJpc3MiOiJqb2UiLA0KICJleHAiOjEzMDA4MTkzODAsDQogImh0dHA6Ly9leGFt" &
"cGxlLmNvbS9pc19yb290Ijp0cnVlfQ";
Signature_Encoded : constant Wide_Wide_String :=
"dBjftJeZ4CVP-mB92K27uhbUJU1p1r_wW1gFWFOEjXk";
Secret_Encoded : constant Wide_Wide_String :=
"AyM1SysPpbyDfgZld3umj1qzKObwVMkoqQ+EstJQLr/T+" &
"1qS0gZH75aKtMN3Yj0iPS4hcgUuTwjAzZr1Z9CAow==";
Token : constant Wide_Wide_String := Header_Encoded &
"." & Payload_Encoded &
"." & Signature_Encoded;
Secret : constant Ada.Streams.Stream_Element_Array :=
League.Base_Codecs.From_Base_64 (+Secret_Encoded).To_Stream_Element_Array;
Backward_Token : constant Wide_Wide_String :=
"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9" & "." &
Payload_Encoded & "." &
"SfgggA-oZk7ztlq1i8Uz5VhmPmustakoDa9wAf8uHyQ";
Signature : JWS.JSON_Web_Signature;
Ok : Boolean;
Backward : JWS.JSON_Web_Signature;
Result : League.Strings.Universal_String;
begin
Signature.Validate_Compact_Serialization
(Value => +Token,
Secret => Secret,
Valid => Ok);
pragma Assert (Ok, "Validation failed");
Backward.Create
(Header => Signature.Header,
Payload => Signature.Payload,
Secret => Secret);
-- Backward token differs from the original, because Header has more
-- compact representation then original.
Result := Backward.Compact_Serialization;
pragma Assert
(Result.To_Wide_Wide_String = Backward_Token,
"Invalid Compact_Serialization");
end HS_256_Test;
| 28.328947 | 79 | 0.706456 |
1308d43f4aba309937e33c03700e3695da202ae3 | 11,604 | adb | Ada | tools/upnp-ssdp.adb | stcarrez/bbox-ada-api | 53292f82b11806a5415e202da4a023a726b8fe55 | [
"Apache-2.0"
] | 2 | 2017-04-03T21:21:12.000Z | 2017-05-25T13:05:08.000Z | tools/upnp-ssdp.adb | stcarrez/bbox-ada-api | 53292f82b11806a5415e202da4a023a726b8fe55 | [
"Apache-2.0"
] | 2 | 2017-04-07T09:30:14.000Z | 2019-05-23T17:45:35.000Z | tools/upnp-ssdp.adb | stcarrez/bbox-ada-api | 53292f82b11806a5415e202da4a023a726b8fe55 | [
"Apache-2.0"
] | null | null | null | -----------------------------------------------------------------------
-- upnp-ssdp -- UPnP SSDP operations
-- Copyright (C) 2017 Stephane Carrez
-- Written by Stephane Carrez ([email protected])
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
-----------------------------------------------------------------------
with Ada.Strings;
with Ada.Strings.Unbounded;
with Ada.Calendar;
with System;
with Interfaces.C.Strings;
with Util.Log.Loggers;
package body UPnP.SSDP is
use type Ada.Streams.Stream_Element_Offset;
use type Ada.Streams.Stream_Element;
-- The logger
Log : constant Util.Log.Loggers.Logger := Util.Log.Loggers.Create ("UPnP.SSDP");
Group : constant String := "239.255.255.250";
type Sockaddr is record
Sa_Family : Interfaces.C.unsigned_short;
Sa_Port : Interfaces.C.unsigned_short;
Sa_Addr : aliased Interfaces.C.char_array (1 .. 8);
end record;
pragma Convention (C, Sockaddr);
type If_Address;
type If_Address_Access is access all If_Address;
type If_Address is record
Ifa_Next : If_Address_Access;
Ifa_Name : Interfaces.C.Strings.chars_ptr;
Ifa_Flags : Interfaces.C.unsigned;
Ifa_Addr : access Sockaddr;
end record;
pragma Convention (C, If_Address);
function Sys_getifaddrs (ifap : access If_Address_Access) return Interfaces.C.int;
pragma Import (C, Sys_getifaddrs, "getifaddrs");
procedure Sys_freeifaddrs (ifap : If_Address_Access);
pragma Import (C, Sys_freeifaddrs, "freeifaddrs");
function Sys_Inet_Ntop (Af : in Interfaces.C.unsigned_short;
Addr : System.Address;
Dst : in Interfaces.C.Strings.chars_ptr;
Size : in Interfaces.C.int) return Interfaces.C.Strings.chars_ptr;
pragma Import (C, Sys_Inet_Ntop, "inet_ntop");
procedure Send (Socket : in GNAT.Sockets.Socket_Type;
Content : in String;
To : access GNAT.Sockets.Sock_Addr_Type);
procedure Receive (Socket : in GNAT.Sockets.Socket_Type;
Target : in String;
Desc : out Ada.Strings.Unbounded.Unbounded_String);
-- ------------------------------
-- Initialize the SSDP scanner by opening the UDP socket.
-- ------------------------------
procedure Initialize (Scanner : in out Scanner_Type) is
Address : aliased GNAT.Sockets.Sock_Addr_Type;
begin
Log.Info ("Discovering gateways on the network");
Address.Addr := GNAT.Sockets.Any_Inet_Addr;
Address.Port := 0;
GNAT.Sockets.Create_Socket (Scanner.Socket, GNAT.Sockets.Family_Inet,
GNAT.Sockets.Socket_Datagram);
GNAT.Sockets.Bind_Socket (Scanner.Socket, Address);
GNAT.Sockets.Set_Socket_Option (Scanner.Socket, GNAT.Sockets.IP_Protocol_For_IP_Level,
(GNAT.Sockets.Add_Membership, GNAT.Sockets.Inet_Addr (Group),
GNAT.Sockets.Any_Inet_Addr));
end Initialize;
-- ------------------------------
-- Find the IPv4 addresses of the network interfaces.
-- ------------------------------
procedure Find_IPv4_Addresses (Scanner : in out Scanner_Type;
IPs : out Util.Strings.Sets.Set) is
pragma Unreferenced (Scanner);
use type Interfaces.C.int;
use type Interfaces.C.Strings.chars_ptr;
Iflist : aliased If_Address_Access;
Ifp : If_Address_Access;
R : Interfaces.C.Strings.chars_ptr;
begin
if Sys_getifaddrs (Iflist'Access) = 0 then
R := Interfaces.C.Strings.New_String ("xxx.xxx.xxx.xxx.xxx");
Ifp := Iflist;
while Ifp /= null loop
if Sys_Inet_Ntop (Ifp.Ifa_Addr.Sa_Family, Ifp.Ifa_Addr.Sa_Addr'Address, R, 17)
/= Interfaces.C.Strings.Null_Ptr
then
Log.Debug ("Found interface: {0} - IP {1}",
Interfaces.C.Strings.Value (Ifp.Ifa_Name),
Interfaces.C.Strings.Value (R));
if Interfaces.C.Strings.Value (R) /= "::" then
IPs.Include (Interfaces.C.Strings.Value (R));
end if;
end if;
Ifp := Ifp.Ifa_Next;
end loop;
Interfaces.C.Strings.Free (R);
Sys_freeifaddrs (Iflist);
end if;
end Find_IPv4_Addresses;
procedure Send (Socket : in GNAT.Sockets.Socket_Type;
Content : in String;
To : access GNAT.Sockets.Sock_Addr_Type) is
Last : Ada.Streams.Stream_Element_Offset;
Buf : Ada.Streams.Stream_Element_Array (1 .. Content'Length);
for Buf'Address use Content'Address;
pragma Import (Ada, Buf);
pragma Unreferenced (Last);
begin
GNAT.Sockets.Send_Socket (Socket, Buf, Last, To);
end Send;
-- ------------------------------
-- Send the SSDP discovery UDP packet on the UPnP multicast group 239.255.255.250.
-- Set the "ST" header to the given target. The UDP packet is sent on each interface
-- whose IP address is defined in the set <tt>IPs</tt>.
-- ------------------------------
procedure Send_Discovery (Scanner : in out Scanner_Type;
Target : in String;
IPs : in Util.Strings.Sets.Set) is
Address : aliased GNAT.Sockets.Sock_Addr_Type;
begin
Address.Addr := GNAT.Sockets.Inet_Addr (Group);
Address.Port := 1900;
for IP of IPs loop
GNAT.Sockets.Set_Socket_Option (Scanner.Socket, GNAT.Sockets.IP_Protocol_For_IP_Level,
(GNAT.Sockets.Multicast_If,
GNAT.Sockets.Inet_Addr (IP)));
Log.Debug ("Sending SSDP search for IGD device from {0}", IP);
Send (Scanner.Socket, "M-SEARCH * HTTP/1.1" & ASCII.CR & ASCII.LF &
"HOST: 239.255.255.250:1900" & ASCII.CR & ASCII.LF &
"ST: " & Target & ASCII.CR & ASCII.LF &
"MAN: ""ssdp:discover""" & ASCII.CR & ASCII.LF &
"MX: 2" & ASCII.CR & ASCII.LF, Address'Access);
end loop;
end Send_Discovery;
procedure Receive (Socket : in GNAT.Sockets.Socket_Type;
Target : in String;
Desc : out Ada.Strings.Unbounded.Unbounded_String) is
function Get_Line return String;
Data : Ada.Streams.Stream_Element_Array (0 .. 1500);
Last : Ada.Streams.Stream_Element_Offset;
Pos : Ada.Streams.Stream_Element_Offset := Data'First;
function Get_Line return String is
First : constant Ada.Streams.Stream_Element_Offset := Pos;
begin
while Pos <= Last loop
if Data (Pos) = 16#0D# and then Pos + 1 <= Last and then Data (Pos + 1) = 16#0A# then
declare
Result : String (1 .. Natural (Pos - First));
P : Natural := 1;
begin
for I in First .. Pos - 1 loop
Result (P) := Character'Val (Data (I));
P := P + 1;
end loop;
Log.Debug ("L: {0}", Result);
Pos := Pos + 2;
return Result;
end;
end if;
Pos := Pos + 1;
end loop;
return "";
end Get_Line;
begin
Desc := Ada.Strings.Unbounded.To_Unbounded_String ("");
GNAT.Sockets.Receive_Socket (Socket, Data, Last);
if Get_Line /= "HTTP/1.1 200 OK" then
Log.Debug ("Receive a non HTTP/1.1 response");
return;
end if;
loop
declare
Line : constant String := Get_Line;
Pos : constant Natural := Util.Strings.Index (Line, ':');
Pos2 : Natural := Pos + 1;
begin
exit when Pos = 0;
while Pos2 < Line'Last and then Line (Pos2) = ' ' loop
Pos2 := Pos2 + 1;
end loop;
if Line (1 .. Pos) = "ST:" then
if Line (Pos2 .. Line'Last) /= Target then
return;
end if;
elsif Line (1 .. Pos) = "LOCATION:" then
Desc := Ada.Strings.Unbounded.To_Unbounded_String (Line (Pos2 .. Line'Last));
Log.Debug ("Found a IGD device: {0}", Ada.Strings.Unbounded.To_String (Desc));
return;
end if;
end;
end loop;
exception
when E : others =>
Log.Error ("Exception received", E);
end Receive;
-- ------------------------------
-- Receive the UPnP SSDP discovery messages for the given target.
-- Call the <tt>Process</tt> procedure for each of them. The <tt>Desc</tt> parameter
-- represents the UPnP location header which gives the UPnP XML root descriptor.
-- Wait at most the given time.
-- ------------------------------
procedure Discover (Scanner : in out Scanner_Type;
Target : in String;
Process : not null access procedure (Desc : in String);
Wait : in Duration) is
use type Ada.Calendar.Time;
use type GNAT.Sockets.Selector_Status;
Sel : GNAT.Sockets.Selector_Type;
Rset : GNAT.Sockets.Socket_Set_Type;
Wset : GNAT.Sockets.Socket_Set_Type;
Status : GNAT.Sockets.Selector_Status;
Desc : Ada.Strings.Unbounded.Unbounded_String;
Deadline : constant Ada.Calendar.Time := Ada.Calendar.Clock + Wait;
Remain : Duration;
begin
GNAT.Sockets.Create_Selector (Sel);
loop
GNAT.Sockets.Empty (Rset);
GNAT.Sockets.Empty (Wset);
GNAT.Sockets.Set (Rset, Scanner.Socket);
Remain := Deadline - Ada.Calendar.Clock;
exit when Remain < 0.0;
GNAT.Sockets.Check_Selector (Selector => Sel,
R_Socket_Set => Rset,
W_Socket_Set => Wset,
Status => Status,
Timeout => Remain);
exit when Status = GNAT.Sockets.Expired;
Receive (Scanner.Socket, Target, Desc);
declare
URI : constant String := Ada.Strings.Unbounded.To_String (Desc);
Pos : constant Natural := Util.Strings.Index (URI, ':');
begin
if Pos > 0 and URI (URI'First .. Pos + 2) = "http://" then
Process (URI);
end if;
end;
end loop;
end Discover;
-- ------------------------------
-- Release the socket.
-- ------------------------------
overriding
procedure Finalize (Scanner : in out Scanner_Type) is
use type GNAT.Sockets.Socket_Type;
begin
if Scanner.Socket /= GNAT.Sockets.No_Socket then
GNAT.Sockets.Close_Socket (Scanner.Socket);
end if;
end Finalize;
end UPnP.SSDP;
| 40.432056 | 99 | 0.553688 |
a0a841879232b829bab6ccfe45fb1e440ae7188e | 2,564 | ada | Ada | gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/cd/cd5011i.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/cd/cd5011i.ada | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | null | null | null | gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/cd/cd5011i.ada | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | 2 | 2020-07-27T00:22:36.000Z | 2021-04-01T09:41:02.000Z | -- CD5011I.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.
--*
-- OBJECTIVE:
-- CHECK THAT AN ADDRESS CLAUSE CAN BE GIVEN FOR A VARIABLE OF
-- AN ARRAY TYPE IN THE DECLARATIVE PART OF A PACKAGE BODY.
-- HISTORY:
-- JET 09/11/87 CREATED ORIGINAL TEST.
-- PWB 05/11/89 CHANGED EXTENSION FROM '.DEP' TO '.ADA'.
WITH SYSTEM; USE SYSTEM;
WITH REPORT; USE REPORT;
WITH SPPRT13;
PROCEDURE CD5011I IS
PACKAGE CD5011I_PACKAGE IS
END CD5011I_PACKAGE;
PACKAGE BODY CD5011I_PACKAGE IS
INT : ARRAY (1 .. 10) OF INTEGER;
FOR INT USE
AT SPPRT13.VARIABLE_ADDRESS;
BEGIN
TEST ("CD5011I", "AN ADDRESS CLAUSE CAN BE " &
"GIVEN FOR A VARIABLE OF AN ARRAY " &
"TYPE IN THE DECLARATIVE PART OF A " &
"PACKAGE BODY");
FOR I IN INT'RANGE LOOP
INT (I) := IDENT_INT (I);
END LOOP;
FOR I IN INT'RANGE LOOP
IF INT (I) /= I THEN
FAILED ("WRONG VALUE FOR ELEMENT" &
INTEGER'IMAGE (I));
END IF;
END LOOP;
IF INT'ADDRESS /= SPPRT13.VARIABLE_ADDRESS THEN
FAILED ("WRONG ADDRESS FOR VARIABLE IN PACKAGE");
END IF;
END;
BEGIN
RESULT;
END CD5011I;
| 34.186667 | 79 | 0.601794 |
9a18606af390aaa4bff28a7f8672e895189d567d | 1,174 | adb | Ada | gdb/testsuite/gdb.ada/null_overload/foo.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/null_overload/foo.adb | greyblue9/binutils-gdb | 05377632b124fe7600eea7f4ee0e9a35d1b0cbdc | [
"BSD-3-Clause"
] | null | null | null | gdb/testsuite/gdb.ada/null_overload/foo.adb | greyblue9/binutils-gdb | 05377632b124fe7600eea7f4ee0e9a35d1b0cbdc | [
"BSD-3-Clause"
] | null | null | null | -- Copyright 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/>.
procedure Foo is
type R_Type is null record;
type R_Access is access R_Type;
type U_0 is mod 1;
type U_P_T is access all U_0;
function F (R : R_Access) return Boolean is
begin
return True;
end F;
function F (I : Integer) return Boolean is
begin
return False;
end F;
B1 : constant Boolean := F (null);
B2 : constant Boolean := F (0);
U : U_0 := 0;
U_Ptr : U_P_T := null;
begin
null; -- START
end Foo;
| 27.302326 | 73 | 0.686542 |
13800ec5987cf75ab7c877a1c58115e45887fd04 | 770 | adb | Ada | contrib/gnu/gdb/dist/gdb/testsuite/gdb.ada/start/dummy.adb | TheSledgeHammer/2.11BSD | fe61f0b9aaa273783cd027c7b5ec77e95ead2153 | [
"BSD-3-Clause"
] | 3 | 2021-05-04T17:09:06.000Z | 2021-10-04T07:19:26.000Z | contrib/gnu/gdb/dist/gdb/testsuite/gdb.ada/start/dummy.adb | TheSledgeHammer/2.11BSD | fe61f0b9aaa273783cd027c7b5ec77e95ead2153 | [
"BSD-3-Clause"
] | null | null | null | contrib/gnu/gdb/dist/gdb/testsuite/gdb.ada/start/dummy.adb | TheSledgeHammer/2.11BSD | fe61f0b9aaa273783cd027c7b5ec77e95ead2153 | [
"BSD-3-Clause"
] | null | null | null | -- Copyright 2005-2020 Free Software Foundation, Inc.
--
-- This program is free software; you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation; either version 3 of the License, or
-- (at your option) any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with this program. If not, see <http://www.gnu.org/licenses/>.
procedure Dummy is
begin
null; -- START
end Dummy;
| 38.5 | 73 | 0.735065 |
9a1d0ca2cb0714b2d49a55225e294cf63698f578 | 1,247 | ads | Ada | extern/gnat_sdl/gnat_sdl2/src/prfchwintrin_h.ads | AdaCore/training_material | 6651eb2c53f8c39649b8e0b3c757bc8ff963025a | [
"CC-BY-4.0"
] | 15 | 2020-10-07T08:56:45.000Z | 2022-02-08T23:13:22.000Z | extern/gnat_sdl/gnat_sdl2/src/prfchwintrin_h.ads | AdaCore/training_material | 6651eb2c53f8c39649b8e0b3c757bc8ff963025a | [
"CC-BY-4.0"
] | 20 | 2020-11-05T14:35:20.000Z | 2022-01-13T15:59:33.000Z | extern/gnat_sdl/gnat_sdl2/src/prfchwintrin_h.ads | AdaCore/training_material | 6651eb2c53f8c39649b8e0b3c757bc8ff963025a | [
"CC-BY-4.0"
] | 6 | 2020-10-08T15:57:06.000Z | 2021-08-31T12:03:08.000Z | pragma Ada_2005;
pragma Style_Checks (Off);
with Interfaces.C; use Interfaces.C;
package prfchwintrin_h is
-- Copyright (C) 2012-2017 Free Software Foundation, Inc.
-- This file is part of GCC.
-- GCC is free software; you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation; either version 3, or (at your option)
-- any later version.
-- GCC 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.
-- 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/>.
-- skipped func _m_prefetchw
-- _MM_HINT_T0
end prfchwintrin_h;
| 41.566667 | 76 | 0.715317 |
381432895b4a0034a9e8dbe9651e7c88cc06eb86 | 2,477 | adb | Ada | source/calendar/machine-pc-freebsd/s-nattim.adb | ytomino/drake | 4e4bdcd8b8e23a11a29b31d3a8861fdf60090ea2 | [
"MIT"
] | 33 | 2015-04-04T09:19:36.000Z | 2021-11-10T05:33:34.000Z | source/calendar/machine-pc-freebsd/s-nattim.adb | ytomino/drake | 4e4bdcd8b8e23a11a29b31d3a8861fdf60090ea2 | [
"MIT"
] | 8 | 2017-11-14T13:05:07.000Z | 2018-08-09T15:28:49.000Z | source/calendar/machine-pc-linux-gnu/s-nattim.adb | ytomino/drake | 4e4bdcd8b8e23a11a29b31d3a8861fdf60090ea2 | [
"MIT"
] | 9 | 2015-02-03T17:09:53.000Z | 2021-11-12T01:16:05.000Z | package body System.Native_Time is
use type C.signed_int;
pragma Warnings (Off, "is not referenced");
function To_tv_nsec (X : Nanosecond_Number) return C.signed_long
with Convention => Intrinsic;
-- Darwin, FreeBSD, or Linux (32/64bit)
function To_tv_nsec (X : Nanosecond_Number) return C.signed_long_long
with Convention => Intrinsic;
-- Linux (x32)
pragma Inline_Always (To_tv_nsec);
pragma Warnings (On, "is not referenced");
function To_tv_nsec (X : Nanosecond_Number) return C.signed_long is
begin
return C.signed_long (X);
end To_tv_nsec;
function To_tv_nsec (X : Nanosecond_Number) return C.signed_long_long is
begin
return C.signed_long_long (X);
end To_tv_nsec;
-- implementation
function To_timespec (D : C.sys.time.struct_timeval)
return C.time.struct_timespec is
begin
return (
tv_sec => D.tv_sec,
tv_nsec => To_tv_nsec (Nanosecond_Number (D.tv_usec) * 1_000));
end To_timespec;
function To_timespec (D : Duration) return C.time.struct_timespec is
Nanosecond : constant Nanosecond_Number :=
Nanosecond_Number'Integer_Value (D);
Sub_Second : constant Nanosecond_Number := Nanosecond mod 1_000_000_000;
begin
return (
tv_sec =>
C.sys.types.time_t ((Nanosecond - Sub_Second) / 1_000_000_000),
tv_nsec => To_tv_nsec (Sub_Second));
end To_timespec;
function To_Duration (D : C.time.struct_timespec) return Duration is
begin
return Duration'Fixed_Value (
Nanosecond_Number'Integer_Value (To_Duration (D.tv_sec))
+ Nanosecond_Number (D.tv_nsec));
end To_Duration;
function To_Duration (D : C.sys.types.time_t) return Duration is
begin
return Duration'Fixed_Value (
(Nanosecond_Number (D)) * 1_000_000_000);
end To_Duration;
procedure Simple_Delay_For (D : Duration) is
Req_T : aliased C.time.struct_timespec := To_timespec (D);
begin
loop
declare
Rem_T : aliased C.time.struct_timespec;
R : C.signed_int;
begin
R := C.time.nanosleep (Req_T'Access, Rem_T'Access);
exit when not (R < 0);
Req_T := Rem_T;
end;
end loop;
end Simple_Delay_For;
procedure Delay_For (D : Duration) is
begin
if D >= 0.0 then
Delay_For_Hook.all (D);
end if;
end Delay_For;
end System.Native_Time;
| 29.843373 | 78 | 0.653613 |
Subsets and Splits