CombinedText
stringlengths
4
3.42M
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- ...
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- ...
------------------------------------------------------------------------------ -- -- -- Copyright (c) 2014-2017 Vitalij Bondarenko <vibondare@gmail.com> -- -- -- ----...
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS -- -- -- -- ...
package body Opt15_Pkg is procedure Trace_Non_Inlined is begin raise Program_Error; end; procedure Trace_Inlined is begin Trace_Non_Inlined; end; end Opt15_Pkg;
-- Copyright (c) 2015-2017 Maxim Reznik <reznikmm@gmail.com> -- -- SPDX-License-Identifier: MIT -- License-Filename: LICENSE ------------------------------------------------------------- -- @summary -- Incremental Analysis Component -- -- @description -- This package provides namespace for incremental analysis ...
-- -- Copyright 2018 The wookey project team <wookey@ssi.gouv.fr> -- - 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...
-- C34006G.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. -- Unlimit...
pragma License (Unrestricted); -- implementation unit required by compiler package System.Parameters is pragma Pure; -- required for task by compiler (s-parame.ads) type Size_Type is new Integer; Unspecified_Size : constant := Size_Type'First; -- required for 'Storage_Size by compiler (s-parame.ads)...
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- ...
-- Copyright 2012-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. -- -- ...
------------------------------------------------------------------------------ -- -- -- GNAT ncurses Binding Samples -- -- -- -- ...
-- Copyright 2014-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. -- -- ...
pragma Ada_2005; pragma Style_Checks (Off); pragma Warnings (Off); with Interfaces.C; use Interfaces.C; with glib; package GStreamer.GST_Low_Level.gstreamer_0_10_gst_basecamerabinsrc_gstcamerabin_enum_h is DEFAULT_WIDTH : constant := 640; -- gst/basecamerabinsrc/gstcamerabin-enum.h:33 DEFAULT_HEIGHT : consta...
package Natools.Static_Maps.Web.Fallback_Render.Commands is pragma Pure; function Hash (S : String) return Natural; end Natools.Static_Maps.Web.Fallback_Render.Commands;
-- Copyright 2019 Simon Symeonidis (psyomn) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable la...
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- ...
------------------------------------------------------------------------------ -- -- -- GNAT SYSTEM UTILITIES -- -- -- -- ...
--************************************************************************************* --* UNCLASSIFIED --* IN STRICT CONFIDENCE * --* * --***...
------------------------------------------------------------------------------ -- -- -- GNAT RUNTIME COMPONENTS -- -- -- -- ...
procedure My_Package is generic type Unsigned_Type is range <>; package Generic_Integer_Images is function Digit_To_Character (X : Unsigned_Type) return Character; end Generic_Integer_Images; package body Generic_Integer_Images is function Digit_To_Character (X : Unsigned_Type) return Character is...
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- ...
------------------------------------------------------------------------------ -- -- -- Copyright (C) 2015-2016, AdaCore -- -- -- -- ...
------------------------------------------------------------------------------ -- Copyright (c) 2013, Natacha Porté -- -- -- -- Permission to use, copy, modify, and distribute this software for any -- -- p...
with openGL.Geometry, openGL.Texture; package openGL.Model.hexagon_Column.lit_textured_rounded -- -- Models a lit, colored and textured column with six rounded sides. -- -- The shaft of the column appears rounded, whereas the top and bottom appear as hexagons. -- is type Item is new Model.hexagon_Colum...
with openGL.Palette, openGL.Model.Box.lit_colored_textured, openGL.Visual, openGL.Demo; procedure launch_many_Boxes_Demo -- -- Exercise the culler with many boxes. -- is use openGL, openGL.Model, openGL.Model.box, openGL.Palette, openGL.Math, openGL.linear_Al...
------------------------------------------------------------------------------ -- -- -- GNAT LIBRARY COMPONENTS -- -- -- -- ...
-- This spec has been automatically generated from STM32WL5x_CM4.svd pragma Restrictions (No_Elaboration_Code); pragma Ada_2012; pragma Style_Checks (Off); with HAL; with System; package STM32_SVD.USART is pragma Preelaborate; --------------- -- Registers -- --------------- subtype CR1_enabled_DEDT...
with Ada.Strings.Equal_Case_Insensitive; with Ada.Text_IO; use Ada.Text_IO; with GNAT.Source_Info; use GNAT.Source_Info; with Langkit_Support.Text; use Langkit_Support.Text; with Libadalang.Analysis; use Libadalang.Analysis; with Libadalang.Common; use Libadalang.Comm...
package body problem_20 is function Solution_1 return Integer is Num : array( Natural range 0 .. 50 ) of Natural := ( 0 => 1, others => 0); Sum : Integer := 0; Carry : Integer := 1; Temp : Integer; begin for I in 2 .. 100 loop Carry := 0; ...
<?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="...
-- Copyright 2014-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. -- -- ...
-- part of OpenGLAda, (c) 2017 Felix Krause -- released under the terms of the MIT license, see the file "COPYING" with GL.Enums.Textures; with GL.Helpers; with GL.API; package body GL.Fixed.Textures is procedure Set_Tex_Function (Func : Texture_Function) is begin API.Tex_Env_Tex_Func (Enums.Textures.T...
-- Copyright (c) 2017 Maxim Reznik <reznikmm@gmail.com> -- -- SPDX-License-Identifier: MIT -- License-Filename: LICENSE ------------------------------------------------------------- with LSP.Types; with LSP.Messages; package LSP_Documents is type Document is tagged private; not overriding procedure Initali...
-- Copyright (C) 2015-2016 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. --...
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- ...
-- C49020A.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. -- Unlimit...
-- SPDX-License-Identifier: Apache-2.0 -- -- Copyright (c) 2021 The progress_indicators authors -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licen...
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- ...
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- ...
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- ...
-- CE3403F.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. -- Unlimit...
with Ada.Text_IO; use Ada.Text_IO; with Ada.Unchecked_Deallocation; package body Arbre_Binaire is procedure Free is new Ada.Unchecked_Deallocation (T_Cellule, T_Pointeur_Binaire); procedure Initialiser(Arbre: out T_Pointeur_Binaire; Cle : in T_Cle) is Cellule : T_Pointeur_Binaire; begin ...
-- A83009B.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. -- Unlimit...
------------------------------------------------------------------------------ -- -- -- ASIS-for-GNAT IMPLEMENTATION COMPONENTS -- -- -- -- ...
------------------------------------------------------------------------------ -- -- -- GNAT ncurses Binding Samples -- -- -- -- ...
with Ada.Unchecked_Deallocation; with PB_Support.IO; with PB_Support.Internal; package body Conformance.Conformance is package Jspb_Encoding_Config_IO is new PB_Support.IO.Message_IO (Conformance.Jspb_Encoding_Config, Conformance.Jspb_Encoding_Config_Vector, Conformance.Append); type Intege...
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- ...
with Ada.Numerics.Discrete_Random; with STM32.Board; use STM32.Board; with Gfx; use Gfx; with Stack; use Stack; package body Instruction is function Fetch (Cpu : Chip8) return Opcode is Op : Opcode; begin Op := Word(Cpu.Mem(Cpu.PC)); Op := Shift_Left(Op, 8); Op := Op + Word(Cpu.Mem(Cpu....
-- This file is generated by SWIG. Please do not modify by hand. -- with Interfaces.C; with Interfaces.C; with Interfaces.C.Pointers; package xcb.xcb_glx_get_tex_genfv_cookie_t is -- Item -- type Item is record sequence : aliased Interfaces.C.unsigned; end record; -- Item_Array -- type It...
-- C54A42G.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. -- Unlimit...
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS -- -- -- -- ...
--Alvaro Fernandez Velazquez (a_fernandez@usal.es) --Francisco Blazquez Matias (fran_blm@usal.es) with Ada.Real_Time; with Ada.Real_Time.Timing_Events; use Ada.Real_Time; package Monitor is protected type Reactor is procedure leer(temp : out Integer); procedure incrementar(incremento:Integer); proc...
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- ...
pragma Ada_2012; pragma Style_Checks (Off); pragma Warnings ("U"); with Interfaces.C; use Interfaces.C; with arm_math_types_h; with sys_ustdint_h; package basic_math_functions_h is procedure arm_mult_q7 (pSrcA : access arm_math_types_h.q7_t; pSrcB : access arm_math_types_h.q7_t; pDst : access arm...
<?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="...
------------------------------------------------------------------------------ -- EMAIL: <darkestkhan@gmail.com> -- -- License: ISC -- -- -- -- ...
----------------------------------------------------------------------- -- components-holders -- Value holder interfaces -- Copyright (C) 2009, 2010, 2011, 2013, 2017 Stephane Carrez -- Written by Stephane Carrez (Stephane.Carrez@gmail.com) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- y...
pragma Ada_2012; pragma Style_Checks (Off); with Interfaces.C; use Interfaces.C; with bits_types_h; with bits_types_struct_timespec_h; package bits_struct_stat_h is -- unsupported macro: st_atime st_atim.tv_sec -- unsupported macro: st_mtime st_mtim.tv_sec -- unsupported macro: st_ctime st_ctim.tv_sec ...
-- 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 Tk.Image.Image_Options_Test_Data.Image...
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- ...
with ARM_Output, ARM_Contents; --private -- Ada 2005 with ARM_Input, ARM_Database, ARM_Subindex; package ARM_Format is -- -- Ada reference manual formatter (ARM_Form). -- -- This package contains the routines to parse the input files, and -- determine what to output. -- -- --...
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- ...
<?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="...
with Ada.Strings.Unbounded; use Ada.Strings.Unbounded; with Interfaces; function TOML.Generic_Parse (Stream : in out Input_Stream) return TOML.Read_Result is ---------------------------- -- Lexical analysis state -- ---------------------------- WW_Backspace : constant Wide_Wide_Character := ...
pragma Ada_2005; pragma Style_Checks (Off); pragma Warnings (Off); with Interfaces.C; use Interfaces.C; with System; with GStreamer.GST_Low_Level.gstreamer_0_10_gst_gstbuffer_h; limited with GStreamer.GST_Low_Level.gstreamer_0_10_gst_video_gstsurfaceconverter_h; with glib; with glib.Values; with System; with glib; pa...
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- ...
------------------------------------------------------------------------------ -- Copyright (c) 2016, Natacha Porté -- -- -- -- Permission to use, copy, modify, and distribute this software for any -- -- p...
------------------------------------------------------------------------------ -- -- -- GNAT LIBRARY COMPONENTS -- -- -- -- ...
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> <!DOCTYPE boost_serialization> <boost_serialization signature="serialization::archive" version="15"> <syndb class_id="0" tracking_level="0" version="0"> <userIPLatency>-1</userIPLatency> <userIPName></userIPName> <cdfg class_id="1" tracking_level="1" version="...
with GNAT.Directory_Operations; with GNATCOLL.Projects; with GNATCOLL.VFS; with Libadalang.Project_Provider; with Generic_Logging; with Lal_Adapter.Unit; package body Lal_Adapter.Context is -- Raises Internal_Error: procedure Parse_Input_File (This : in out Class; Input_File_Name : in String)...
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- ...
with AdaM.a_Type.enumeration_type, gtk.Widget; private with gtk.gEntry, gtk.Box, gtk.Label, gtk.Button; package aIDE.Editor.of_enumeration_type is type Item is new Editor.item with private; type View is access all Item'Class; package Forge is function to_Editor (the...
-- Tests LU decomposition on a real valued banded matrix. -- -- Shows how interative refinement can clean up the mess when no -- pivoting is used in LU decomposition. Also shows that iterative -- refinement is ineffective if the problem is ill-conditioned. -- (Pivoting doesn't solve the problem of ill-conditioning ...
-- Instantiate this package to create a sub-command parser/executor with CLIC.Config; generic Main_Command_Name : String; -- Name of the main command or program Version : String; -- Version of the program with procedure Set_Global_Switches (Config : in out CLIC.Subcommand.Switches_Configu...
----------------------------------------------------------------------- -- css-commands-analyze -- List command for CSS tools -- Copyright (C) 2018, 2020 Stephane Carrez -- Written by Stephane Carrez (Stephane.Carrez@gmail.com) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not us...
-- { dg-do compile } -- { dg-options "-fdump-tree-gimple" } with VFA1_Pkg; use VFA1_Pkg; procedure VFA1_4 is Temp : Int8_t; function F (I : Int8_t) return Int8_t is begin return I; end; function F2 return Int8_t is begin return Int8_t(Mixer1(1).R); end; procedure P3 (I : out Int8_t) is b...
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- ...
-- with btboxShape; with impact.d3.collision.Detector.discrete; with impact.d3.collision.Detector.discrete.box_box; with impact.d3.Shape.convex.internal.polyhedral.box; package body impact.d3.collision.Algorithm.activating.box_box is USE_PERSISTENT_CONTACTS : constant Boolean := True; --- Forge -- ...
-- Ascon128av12 -- an instantiation of the Ascon-128a (v 1.2) variant of the Ascon Authenticated -- Encryption Algorithm created by Christoph Dobraunig, Maria Eichlseder, -- Florian Mendel and Martin Schläffer. -- Copyright (c) 2018, James Humphry - see LICENSE file for details pragma SPARK_Mode(On); with Ascon; p...
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- ...
with C.mpfr; package MPFR.Root_FR.Inside is pragma Preelaborate; function Reference (X : in out MP_Float) return not null access C.mpfr.mpfr_struct; function Constant_Reference (X : MP_Float) return not null access constant C.mpfr.mpfr_struct; pragma Inline (Reference); -- renamed pragma Inline (Constant_R...
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- ...
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- ...
----------------------------------------------------------------------- -- awa -- Ada Web Application -- Copyright (C) 2009, 2010, 2011, 2012, 2013, 2014 Stephane Carrez -- Written by Stephane Carrez (Stephane.Carrez@gmail.com) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not us...
-- SPDX-FileCopyrightText: 2019 Max Reznik <reznikmm@gmail.com> -- -- SPDX-License-Identifier: MIT ------------------------------------------------------------- with Program.Elements.Formal_Type_Definitions; package Program.Elements.Formal_Access_Types is pragma Pure (Program.Elements.Formal_Access_Types); ...
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- ...
------------------------------------------------------------------------------ -- G E L A A S I S -- -- ASIS implementation for Gela project, a portable Ada compiler -- -- http://gela.ada-ru.org -- -- ...
------------------------------------------------------------------------------ -- -- -- GNAT ncurses Binding Samples -- -- -- -- ...
-- Copyright (c) 1990 Regents of the University of California. -- All rights reserved. -- -- The primary authors of ayacc were David Taback and Deepak Tolani. -- Enhancements were made by Ronald J. Schmalz. -- -- Send requests for ayacc information to ayacc-info@ics.uci.edu -- Send bug reports for ayacc to ...
------------------------------------------------------------------------------- -- Copyright (c) 2016 Daniel King -- -- 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, in...
-- przykłady: pakiet, select w zasdaniu, access do zadania jako parametr wywołania with Qsort; with Ada.Text_Io; use Qsort,Ada.Text_Io; procedure Qsort_demo is Arr1 : vector := (1,6,2,67,3); Arr1_ptr : vector_ptr; begin Arr1_ptr := new vector(Arr1'range); Put_Line(Integer'Image(Arr1'Length)); Put_Line(Integ...
package libhello is procedure Hello_World; end libhello;
------------------------------------------------------------------------------ -- -- -- GNAT ncurses Binding -- -- -- -- ...
with float_Math, ada.Strings.unbounded; package Collada -- -- Provides a namespace and core types for the Collada package family. -- is ------- -- Text -- subtype Text is ada.Strings.unbounded.unbounded_String; function to_Text (From : in String) return Text renames ada.Strings.unbounde...
------------------------------------------------------------------------------- -- This file is part of libsparkcrypto. -- -- Copyright (C) 2010, Alexander Senier -- Copyright (C) 2010, secunet Security Networks AG -- All rights reserved. -- -- Redistribution and use in source and binary forms, with or withou...
-- Copyright 2016-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. -- -- ...
-- Auto generated file. Don't edit -- Read copyright and license at the end of this file package Encodings.Maps.CP_855 is function Decode (Char : Character) return Wide_Character; pragma Inline (Decode); procedure Encode (Text : in Wide_String; Text_Last : out Natural; Res...
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- ...
-- Copyright 2017 Jeff Foley. All rights reserved. -- Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file. local json = require("json") name = "SecurityTrails" type = "api" function start() setratelimit(1) end function check() local c local cfg = datasrc_config(...