| ------------------------------------------------------------------------------ |
| -- -- |
| -- GNAT COMPILER COMPONENTS -- |
| -- -- |
| -- R T S F I N D -- |
| -- -- |
| -- S p e c -- |
| -- -- |
| -- Copyright (C) 1992-2022, Free Software Foundation, Inc. -- |
| -- -- |
| -- GNAT is free software; you can redistribute it and/or modify it under -- |
| -- terms of the GNU General Public License as published by the Free Soft- -- |
| -- ware Foundation; either version 3, or (at your option) any later ver- -- |
| -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- |
| -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- |
| -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- |
| -- for more details. You should have received a copy of the GNU General -- |
| -- Public License distributed with GNAT; see file COPYING3. If not, go to -- |
| -- http://www.gnu.org/licenses for a complete copy of the license. -- |
| -- -- |
| -- GNAT was originally developed by the GNAT team at New York University. -- |
| -- Extensive contributions were provided by Ada Core Technologies Inc. -- |
| -- -- |
| ------------------------------------------------------------------------------ |
| |
| -- This package contains the routine that is used to obtain runtime library |
| -- entities, loading in the required runtime library packages on demand. It |
| -- is also used for such purposes as finding System.Address when System has |
| -- not been explicitly With'ed. |
| |
| with Types; use Types; |
| with Uintp; use Uintp; |
| |
| package Rtsfind is |
| |
| ------------------------ |
| -- Runtime Unit Table -- |
| ------------------------ |
| |
| -- The following type includes an enumeration literal for each runtime |
| -- unit. The enumeration literal is the full expanded name of the unit |
| -- with "." replaced by "_". For example, the enumeration literal for |
| -- Ada.Interrupts.Names is Ada_Interrupts_Names |
| |
| -- This list can contain both subprogram and package unit names. For |
| -- packages, the accessible entities in the package are separately listed |
| -- in the package entity table. The units must be either library level |
| -- package declarations, or library level subprogram declarations. Generic |
| -- units, library level instantiations and subprogram bodies acting as |
| -- specs must not be referenced. (All these cases could be added at the |
| -- expense of additional complexity in the body of Rtsfind, but it doesn't |
| -- seem worthwhile, since the implementation controls the set of units that |
| -- are referenced, and this restriction is easily met.) |
| |
| -- IMPORTANT NOTE: the specs of packages and procedures with'ed using |
| -- this mechanism must not contain use clauses. This is because these |
| -- subprograms are compiled in the current visibility environment, and it |
| -- would be too much trouble to establish a clean environment for the |
| -- compilation. The presence of extraneous visible stuff has no effect on |
| -- the compilation except in the presence of use clauses, which might |
| -- result in unexpected ambiguities. |
| |
| -- IMPORTANT NOTE: the specs of packages and procedures with'ed using |
| -- this mechanism must not contain private with clauses. This is because |
| -- the special context installation/removal for private with clauses |
| -- only works in a clean environment for compilation, and could lead |
| -- here to removing visibility over lib units in the calling context. |
| |
| -- NOTE: If RTU_Id is modified, the subtypes of RTU_Id in the package body |
| -- might need to be modified. See Get_Unit_Name. |
| |
| type RTU_Id is ( |
| |
| -- Runtime packages, for list of accessible entities in each package, |
| -- see declarations in the runtime entity table below. |
| |
| RTU_Null, |
| -- Used as a null entry (will cause an error if referenced) |
| |
| -- Package Ada |
| |
| Ada, |
| |
| -- Children of Ada |
| |
| Ada_Calendar, |
| Ada_Dispatching, |
| Ada_Exceptions, |
| Ada_Finalization, |
| Ada_Interrupts, |
| Ada_Numerics, |
| Ada_Real_Time, |
| Ada_Streams, |
| Ada_Strings, |
| Ada_Synchronous_Barriers, |
| Ada_Synchronous_Task_Control, |
| Ada_Tags, |
| Ada_Task_Identification, |
| Ada_Task_Termination, |
| Ada_Text_IO, |
| Ada_Wide_Text_IO, |
| Ada_Wide_Wide_Text_IO, |
| |
| -- Children of Ada.Calendar |
| |
| Ada_Calendar_Delays, |
| |
| -- Children of Ada.Dispatching |
| |
| Ada_Dispatching_EDF, |
| |
| -- Children of Ada.Interrupts |
| |
| Ada_Interrupts_Names, |
| |
| -- Children of Ada.Numerics |
| |
| Ada_Numerics_Generic_Elementary_Functions, |
| |
| -- Children of Ada.Real_Time |
| |
| Ada_Real_Time_Delays, |
| Ada_Real_Time_Timing_Events, |
| |
| -- Children of Ada.Streams |
| |
| Ada_Streams_Stream_IO, |
| |
| -- Children of Ada.Strings |
| |
| Ada_Strings_Superbounded, |
| Ada_Strings_Wide_Superbounded, |
| Ada_Strings_Wide_Wide_Superbounded, |
| Ada_Strings_Unbounded, |
| Ada_Strings_Text_Buffers, |
| |
| -- Children of Ada.Strings.Text_Buffers |
| |
| Ada_Strings_Text_Buffers_Unbounded, |
| |
| -- Children of Ada.Text_IO (for Check_Text_IO_Special_Unit) |
| |
| Ada_Text_IO_Decimal_IO, |
| Ada_Text_IO_Enumeration_IO, |
| Ada_Text_IO_Fixed_IO, |
| Ada_Text_IO_Float_IO, |
| Ada_Text_IO_Integer_IO, |
| Ada_Text_IO_Modular_IO, |
| |
| -- Children of Ada.Wide_Text_IO (for Check_Text_IO_Special_Unit) |
| |
| Ada_Wide_Text_IO_Decimal_IO, |
| Ada_Wide_Text_IO_Enumeration_IO, |
| Ada_Wide_Text_IO_Fixed_IO, |
| Ada_Wide_Text_IO_Float_IO, |
| Ada_Wide_Text_IO_Integer_IO, |
| Ada_Wide_Text_IO_Modular_IO, |
| |
| -- Children of Ada.Wide_Wide_Text_IO (for Check_Text_IO_Special_Unit) |
| |
| Ada_Wide_Wide_Text_IO_Decimal_IO, |
| Ada_Wide_Wide_Text_IO_Enumeration_IO, |
| Ada_Wide_Wide_Text_IO_Fixed_IO, |
| Ada_Wide_Wide_Text_IO_Float_IO, |
| Ada_Wide_Wide_Text_IO_Integer_IO, |
| Ada_Wide_Wide_Text_IO_Modular_IO, |
| |
| -- Package CUDA |
| |
| CUDA, |
| |
| -- Children of CUDA |
| |
| CUDA_Driver_Types, |
| CUDA_Internal, |
| CUDA_Runtime_Api, |
| CUDA_Vector_Types, |
| |
| -- Interfaces |
| |
| Interfaces, |
| |
| -- Children of Interfaces |
| |
| Interfaces_C, |
| Interfaces_Packed_Decimal, |
| |
| -- Children of Interfaces.C |
| |
| Interfaces_C_Strings, |
| |
| -- Package System |
| |
| System, |
| |
| -- Children of System |
| |
| System_Address_Image, |
| System_Address_To_Access_Conversions, |
| System_Arith_64, |
| System_Arith_128, |
| System_AST_Handling, |
| System_Assertions, |
| System_Atomic_Operations, |
| System_Atomic_Primitives, |
| System_Aux_DEC, |
| System_Bignums, |
| System_Bitfields, |
| System_Bit_Ops, |
| System_Boolean_Array_Operations, |
| System_Byte_Swapping, |
| System_Checked_Pools, |
| System_Compare_Array_Signed_8, |
| System_Compare_Array_Signed_16, |
| System_Compare_Array_Signed_32, |
| System_Compare_Array_Signed_64, |
| System_Compare_Array_Signed_128, |
| System_Compare_Array_Unsigned_8, |
| System_Compare_Array_Unsigned_16, |
| System_Compare_Array_Unsigned_32, |
| System_Compare_Array_Unsigned_64, |
| System_Compare_Array_Unsigned_128, |
| System_Concat_2, |
| System_Concat_3, |
| System_Concat_4, |
| System_Concat_5, |
| System_Concat_6, |
| System_Concat_7, |
| System_Concat_8, |
| System_Concat_9, |
| System_Dim, |
| System_DSA_Services, |
| System_DSA_Types, |
| System_Elaboration_Allocators, |
| System_Exception_Table, |
| System_Exceptions_Debug, |
| System_Exn_Int, |
| System_Exn_Flt, |
| System_Exn_LFlt, |
| System_Exn_LLF, |
| System_Exn_LLI, |
| System_Exn_LLLI, |
| System_Exp_Int, |
| System_Exp_LLI, |
| System_Exp_LLLI, |
| System_Exp_LLU, |
| System_Exp_LLLU, |
| System_Exp_Mod, |
| System_Exp_Uns, |
| System_Fat_Flt, |
| System_Fat_LFlt, |
| System_Fat_LLF, |
| System_Fat_SFlt, |
| System_Fat_VAX_D_Float, |
| System_Fat_VAX_F_Float, |
| System_Fat_VAX_G_Float, |
| System_Finalization_Masters, |
| System_Finalization_Root, |
| System_Fore_Decimal_32, |
| System_Fore_Decimal_64, |
| System_Fore_Decimal_128, |
| System_Fore_Fixed_32, |
| System_Fore_Fixed_64, |
| System_Fore_Fixed_128, |
| System_Fore_Real, |
| System_Img_Bool, |
| System_Img_Char, |
| System_Img_Decimal_32, |
| System_Img_Decimal_64, |
| System_Img_Decimal_128, |
| System_Img_Enum_8, |
| System_Img_Enum_16, |
| System_Img_Enum_32, |
| System_Img_Fixed_32, |
| System_Img_Fixed_64, |
| System_Img_Fixed_128, |
| System_Img_Flt, |
| System_Img_Int, |
| System_Img_LFlt, |
| System_Img_LLF, |
| System_Img_LLI, |
| System_Img_LLLI, |
| System_Img_LLU, |
| System_Img_LLLU, |
| System_Img_Name, |
| System_Img_Uns, |
| System_Img_WChar, |
| System_Interrupts, |
| System_Long_Long_Float_Expon, |
| System_Machine_Code, |
| System_Mantissa, |
| System_Memcop, |
| System_Memory, |
| System_Multiprocessors, |
| System_Pack_03, |
| System_Pack_05, |
| System_Pack_06, |
| System_Pack_07, |
| System_Pack_09, |
| System_Pack_10, |
| System_Pack_11, |
| System_Pack_12, |
| System_Pack_13, |
| System_Pack_14, |
| System_Pack_15, |
| System_Pack_17, |
| System_Pack_18, |
| System_Pack_19, |
| System_Pack_20, |
| System_Pack_21, |
| System_Pack_22, |
| System_Pack_23, |
| System_Pack_24, |
| System_Pack_25, |
| System_Pack_26, |
| System_Pack_27, |
| System_Pack_28, |
| System_Pack_29, |
| System_Pack_30, |
| System_Pack_31, |
| System_Pack_33, |
| System_Pack_34, |
| System_Pack_35, |
| System_Pack_36, |
| System_Pack_37, |
| System_Pack_38, |
| System_Pack_39, |
| System_Pack_40, |
| System_Pack_41, |
| System_Pack_42, |
| System_Pack_43, |
| System_Pack_44, |
| System_Pack_45, |
| System_Pack_46, |
| System_Pack_47, |
| System_Pack_48, |
| System_Pack_49, |
| System_Pack_50, |
| System_Pack_51, |
| System_Pack_52, |
| System_Pack_53, |
| System_Pack_54, |
| System_Pack_55, |
| System_Pack_56, |
| System_Pack_57, |
| System_Pack_58, |
| System_Pack_59, |
| System_Pack_60, |
| System_Pack_61, |
| System_Pack_62, |
| System_Pack_63, |
| System_Pack_65, |
| System_Pack_66, |
| System_Pack_67, |
| System_Pack_68, |
| System_Pack_69, |
| System_Pack_70, |
| System_Pack_71, |
| System_Pack_72, |
| System_Pack_73, |
| System_Pack_74, |
| System_Pack_75, |
| System_Pack_76, |
| System_Pack_77, |
| System_Pack_78, |
| System_Pack_79, |
| System_Pack_80, |
| System_Pack_81, |
| System_Pack_82, |
| System_Pack_83, |
| System_Pack_84, |
| System_Pack_85, |
| System_Pack_86, |
| System_Pack_87, |
| System_Pack_88, |
| System_Pack_89, |
| System_Pack_90, |
| System_Pack_91, |
| System_Pack_92, |
| System_Pack_93, |
| System_Pack_94, |
| System_Pack_95, |
| System_Pack_96, |
| System_Pack_97, |
| System_Pack_98, |
| System_Pack_99, |
| System_Pack_100, |
| System_Pack_101, |
| System_Pack_102, |
| System_Pack_103, |
| System_Pack_104, |
| System_Pack_105, |
| System_Pack_106, |
| System_Pack_107, |
| System_Pack_108, |
| System_Pack_109, |
| System_Pack_110, |
| System_Pack_111, |
| System_Pack_112, |
| System_Pack_113, |
| System_Pack_114, |
| System_Pack_115, |
| System_Pack_116, |
| System_Pack_117, |
| System_Pack_118, |
| System_Pack_119, |
| System_Pack_120, |
| System_Pack_121, |
| System_Pack_122, |
| System_Pack_123, |
| System_Pack_124, |
| System_Pack_125, |
| System_Pack_126, |
| System_Pack_127, |
| System_Parameters, |
| System_Partition_Interface, |
| System_Pool_32_Global, |
| System_Pool_Global, |
| System_Pool_Empty, |
| System_Pool_Local, |
| System_Pool_Size, |
| System_Put_Images, |
| System_Put_Task_Images, |
| System_Relative_Delays, |
| System_RPC, |
| System_Scalar_Values, |
| System_Secondary_Stack, |
| System_Shared_Storage, |
| System_Soft_Links, |
| System_Standard_Library, |
| System_Storage_Elements, |
| System_Storage_Pools, |
| System_Stream_Attributes, |
| System_Task_Info, |
| System_Tasking, |
| System_Threads, |
| System_Unsigned_Types, |
| System_Val_Bool, |
| System_Val_Char, |
| System_Val_Decimal_32, |
| System_Val_Decimal_64, |
| System_Val_Decimal_128, |
| System_Val_Enum_8, |
| System_Val_Enum_16, |
| System_Val_Enum_32, |
| System_Val_Fixed_32, |
| System_Val_Fixed_64, |
| System_Val_Fixed_128, |
| System_Val_Flt, |
| System_Val_Int, |
| System_Val_LFlt, |
| System_Val_LLF, |
| System_Val_LLI, |
| System_Val_LLLI, |
| System_Val_LLU, |
| System_Val_LLLU, |
| System_Val_Name, |
| System_Val_Uns, |
| System_Val_WChar, |
| System_Version_Control, |
| System_WCh_StW, |
| System_WCh_WtS, |
| System_Wid_Bool, |
| System_Wid_Char, |
| System_Wid_Enum, |
| System_Wid_Int, |
| System_Wid_LLI, |
| System_Wid_LLLI, |
| System_Wid_LLU, |
| System_Wid_LLLU, |
| System_Wid_Name, |
| System_Wid_Uns, |
| System_Wid_WChar, |
| System_WWd_Char, |
| System_WWd_Enum, |
| System_WWd_Wchar, |
| |
| -- Children of System.Atomic_Operations |
| |
| System_Atomic_Operations_Test_And_Set, |
| |
| -- Children of System.Dim |
| |
| System_Dim_Float_IO, |
| System_Dim_Integer_IO, |
| |
| -- Children of System.Multiprocessors |
| |
| System_Multiprocessors_Dispatching_Domains, |
| |
| -- Children of System.Storage_Pools |
| |
| System_Storage_Pools_Subpools, |
| |
| -- Children of System.Strings |
| |
| System_Strings_Stream_Ops, |
| |
| -- Children of System.Tasking |
| |
| System_Tasking_Async_Delays, |
| System_Tasking_Async_Delays_Enqueue_Calendar, |
| System_Tasking_Async_Delays_Enqueue_RT, |
| System_Tasking_Protected_Objects, |
| System_Tasking_Protected_Objects_Entries, |
| System_Tasking_Protected_Objects_Operations, |
| System_Tasking_Protected_Objects_Single_Entry, |
| System_Tasking_Restricted_Stages, |
| System_Tasking_Rendezvous, |
| System_Tasking_Stages); |
| |
| -------------------------- |
| -- Runtime Entity Table -- |
| -------------------------- |
| |
| -- This is the enumeration type used to define the argument passed to |
| -- the RTE function. The name must exactly match the name of the entity |
| -- involved, and in the case of a package entity, this name must uniquely |
| -- imply the package containing the entity. |
| |
| -- As far as possible, we avoid duplicate names in runtime packages, so |
| -- that the name RE_nnn uniquely identifies the entity nnn. In some cases, |
| -- it is impossible to avoid such duplication because the names come from |
| -- RM defined packages. In such cases, the name is of the form RO_XX_nnn |
| -- where XX is two letters used to differentiate the multiple occurrences |
| -- of the name xx, and nnn is the entity name. |
| |
| -- Note that not all entities in the units contained in the run-time unit |
| -- table are included in the following table, only those that actually |
| -- have to be referenced from generated code. |
| |
| -- Note on RE_Null. This value is used as a null entry where an RE_Id |
| -- value is required syntactically, but no real entry is required or |
| -- needed. Use of this value will cause a fatal error in an RTE call. |
| |
| -- Note that under no circumstances can any of these entities be defined |
| -- more than once in a given package, i.e. no overloading is allowed for |
| -- any entity that is found using rtsfind. A fatal error is given if this |
| -- rule is violated. The one exception is for Save_Occurrence, where the |
| -- RM mandates the overloading. In this case, the compiler only uses the |
| -- procedure, not the function, and the procedure must come first so that |
| -- the compiler finds it and not the function. |
| |
| type RE_Id is ( |
| |
| RE_Null, |
| |
| RO_CA_Clock_Time, -- Ada.Calendar |
| RO_CA_Time, -- Ada.Calendar |
| |
| RO_CA_Delay_For, -- Ada.Calendar.Delays |
| RO_CA_Delay_Until, -- Ada.Calendar.Delays |
| RO_CA_To_Duration, -- Ada.Calendar.Delays |
| |
| RE_Yield, -- Ada_Dispatching |
| |
| RE_Set_Deadline, -- Ada.Dispatching.EDF |
| |
| RE_Code_Loc, -- Ada.Exceptions |
| RE_Exception_Id, -- Ada.Exceptions |
| RE_Exception_Identity, -- Ada.Exceptions |
| RE_Exception_Information, -- Ada.Exceptions |
| RE_Exception_Message, -- Ada.Exceptions |
| RE_Exception_Name_Simple, -- Ada.Exceptions |
| RE_Exception_Occurrence, -- Ada.Exceptions |
| RE_Exception_Occurrence_Access, -- Ada.Exceptions |
| RE_Null_Id, -- Ada.Exceptions |
| RE_Null_Occurrence, -- Ada.Exceptions |
| RE_Poll, -- Ada.Exceptions |
| RE_Raise_Exception, -- Ada.Exceptions |
| RE_Raise_Exception_Always, -- Ada.Exceptions |
| RE_Raise_From_Controlled_Operation, -- Ada.Exceptions |
| RE_Reraise_Occurrence, -- Ada.Exceptions |
| RE_Reraise_Occurrence_Always, -- Ada.Exceptions |
| RE_Reraise_Occurrence_No_Defer, -- Ada.Exceptions |
| RE_Save_Occurrence, -- Ada.Exceptions |
| RE_Triggered_By_Abort, -- Ada.Exceptions |
| |
| RE_Interrupt_ID, -- Ada.Interrupts |
| RE_Is_Reserved, -- Ada.Interrupts |
| RE_Is_Attached, -- Ada.Interrupts |
| RE_Current_Handler, -- Ada.Interrupts |
| RE_Attach_Handler, -- Ada.Interrupts |
| RE_Exchange_Handler, -- Ada.Interrupts |
| RE_Detach_Handler, -- Ada.Interrupts |
| RE_Reference, -- Ada.Interrupts |
| |
| RE_Names, -- Ada.Interrupts.Names |
| |
| RE_Clock, -- Ada.Real_Time |
| RE_Clock_Time, -- Ada.Real_Time |
| RE_Time_Span, -- Ada.Real_Time |
| RE_Time_Span_Zero, -- Ada.Real_Time |
| RO_RT_Time, -- Ada.Real_Time |
| |
| RO_RT_Delay_Until, -- Ada.Real_Time.Delays |
| RO_RT_To_Duration, -- Ada.Real_Time.Delays |
| |
| RE_Set_Handler, -- Ada.Real_Time.Timing_Events |
| RE_Timing_Event, -- Ada.Real_Time.Timing_Events |
| |
| RE_Root_Stream_Type, -- Ada.Streams |
| RE_Stream_Element, -- Ada.Streams |
| RE_Stream_Element_Array, -- Ada.Streams |
| RE_Stream_Element_Offset, -- Ada.Streams |
| |
| RE_Stream_Access, -- Ada.Streams.Stream_IO |
| |
| RO_SU_Super_String, -- Ada.Strings.Superbounded |
| |
| RO_WI_Super_String, -- Ada.Strings.Wide_Superbounded |
| |
| RO_WW_Super_String, -- Ada.Strings.Wide_Wide_Superbounded |
| |
| RE_Unbounded_String, -- Ada.Strings.Unbounded |
| |
| RE_Root_Buffer_Type, -- Ada.Strings.Text_Buffers |
| RE_Put_UTF_8, -- Ada.Strings.Text_Buffers |
| RE_Wide_Wide_Put, -- Ada.Strings.Text_Buffers |
| |
| RE_Buffer_Type, -- Ada.Strings.Text_Buffers.Unbounded |
| RE_Get, -- Ada.Strings.Text_Buffers.Unbounded |
| RE_Wide_Get, -- Ada.Strings.Text_Buffers.Unbounded |
| RE_Wide_Wide_Get, -- Ada.Strings.Text_Buffers.Unbounded |
| |
| RE_Wait_For_Release, -- Ada.Synchronous_Barriers |
| |
| RE_Suspend_Until_True, -- Ada.Synchronous_Task_Control |
| RE_Suspension_Object, -- Ada.Synchronous_Task_Control |
| |
| RE_Access_Level, -- Ada.Tags |
| RE_Alignment, -- Ada.Tags |
| RE_Address_Array, -- Ada.Tags |
| RE_Addr_Ptr, -- Ada.Tags |
| RE_Base_Address, -- Ada.Tags |
| RE_Check_Interface_Conversion, -- Ada.Tags |
| RE_Check_TSD, -- Ada.Tags |
| RE_Cstring_Ptr, -- Ada.Tags |
| RE_CW_Membership, -- Ada.Tags |
| RE_Descendant_Tag, -- Ada.Tags |
| RE_Dispatch_Table, -- Ada.Tags |
| RE_Dispatch_Table_Wrapper, -- Ada.Tags |
| RE_Displace, -- Ada.Tags |
| RE_DT, -- Ada.Tags |
| RE_DT_Offset_To_Top_Offset, -- Ada.Tags |
| RE_DT_Predef_Prims_Offset, -- Ada.Tags |
| RE_DT_Typeinfo_Ptr_Size, -- Ada.Tags |
| RE_External_Tag, -- Ada.Tags |
| RO_TA_External_Tag, -- Ada.Tags |
| RE_Get_Access_Level, -- Ada.Tags |
| RE_Get_Alignment, -- Ada.Tags |
| RE_Get_Entry_Index, -- Ada.Tags |
| RE_Get_Offset_Index, -- Ada.Tags |
| RE_Get_Prim_Op_Kind, -- Ada.Tags |
| RE_Get_Tagged_Kind, -- Ada.Tags |
| RE_HT_Link, -- Ada.Tags |
| RE_Idepth, -- Ada.Tags |
| RE_Interfaces_Array, -- Ada.Tags |
| RE_Interfaces_Table, -- Ada.Tags |
| RE_Interface_Data, -- Ada.Tags |
| RE_Interface_Data_Element, -- Ada.Tags |
| RE_Interface_Tag, -- Ada.Tags |
| RE_Is_Abstract, -- Ada.Tags |
| RE_IW_Membership, -- Ada.Tags |
| RE_Max_Predef_Prims, -- Ada.Tags |
| RE_Needs_Finalization, -- Ada.Tags |
| RE_No_Dispatch_Table_Wrapper, -- Ada.Tags |
| RE_No_Tag, -- Ada.Tags |
| RE_NDT_Prims_Ptr, -- Ada.Tags |
| RE_NDT_TSD, -- Ada.Tags |
| RE_Num_Prims, -- Ada.Tags |
| RE_Object_Specific_Data, -- Ada.Tags |
| RE_Offset_To_Top, -- Ada.Tags |
| RE_Offset_To_Top_Ptr, -- Ada.Tags |
| RE_Offset_To_Top_Function_Ptr, -- Ada.Tags |
| RE_OSD_Table, -- Ada.Tags |
| RE_OSD_Num_Prims, -- Ada.Tags |
| RE_POK_Function, -- Ada.Tags |
| RE_POK_Procedure, -- Ada.Tags |
| RE_POK_Protected_Entry, -- Ada.Tags |
| RE_POK_Protected_Function, -- Ada.Tags |
| RE_POK_Protected_Procedure, -- Ada.Tags |
| RE_POK_Task_Entry, -- Ada.Tags |
| RE_POK_Task_Function, -- Ada.Tags |
| RE_POK_Task_Procedure, -- Ada.Tags |
| RE_Predef_Prims, -- Ada.Tags |
| RE_Predef_Prims_Table_Ptr, -- Ada.Tags |
| RE_Prim_Op_Kind, -- Ada.Tags |
| RE_Prim_Ptr, -- Ada.Tags |
| RE_Prims_Ptr, -- Ada.Tags |
| RE_Primary_DT, -- Ada.Tags |
| RE_Signature, -- Ada.Tags |
| RE_SSD, -- Ada.Tags |
| RE_TSD, -- Ada.Tags |
| RE_Type_Specific_Data, -- Ada.Tags |
| RE_Register_Interface_Offset, -- Ada.Tags |
| RE_Register_Tag, -- Ada.Tags |
| RE_Register_TSD, -- Ada.Tags |
| RE_Transportable, -- Ada.Tags |
| RE_Secondary_DT, -- Ada.Tags |
| RE_Secondary_Tag, -- Ada.Tags |
| RE_Select_Specific_Data, -- Ada.Tags |
| RE_Set_Entry_Index, -- Ada.Tags |
| RE_Set_Dynamic_Offset_To_Top, -- Ada.Tags |
| RE_Set_Prim_Op_Kind, -- Ada.Tags |
| RE_Size_Func, -- Ada.Tags |
| RE_Size_Ptr, -- Ada.Tags |
| RE_Tag, -- Ada.Tags |
| RE_Tag_Error, -- Ada.Tags |
| RE_Tag_Kind, -- Ada.Tags |
| RE_Tag_Ptr, -- Ada.Tags |
| RE_Tag_Table, -- Ada.Tags |
| RE_Tags_Table, -- Ada.Tags |
| RE_Tagged_Kind, -- Ada.Tags |
| RE_Type_Specific_Data_Ptr, -- Ada.Tags |
| RE_TK_Abstract_Limited_Tagged, -- Ada.Tags |
| RE_TK_Abstract_Tagged, -- Ada.Tags |
| RE_TK_Limited_Tagged, -- Ada.Tags |
| RE_TK_Protected, -- Ada.Tags |
| RE_TK_Tagged, -- Ada.Tags |
| RE_TK_Task, -- Ada.Tags |
| RE_Unregister_Tag, -- Ada.Tags |
| RE_Wide_Wide_Expanded_Name, -- Ada.Tags |
| |
| RE_Set_Specific_Handler, -- Ada.Task_Termination |
| RE_Specific_Handler, -- Ada.Task_Termination |
| |
| RE_Abort_Task, -- Ada.Task_Identification |
| RE_Current_Task, -- Ada.Task_Identification |
| RO_AT_Task_Id, -- Ada.Task_Identification |
| RE_Tasking_State, -- Ada.Task_Identification |
| |
| RE_Decimal_IO, -- Ada.Text_IO |
| RE_Fixed_IO, -- Ada.Text_IO |
| |
| RO_WT_Decimal_IO, -- Ada.Wide_Text_IO |
| RO_WT_Fixed_IO, -- Ada.Wide_Text_IO |
| |
| RO_WW_Decimal_IO, -- Ada.Wide_Wide_Text_IO |
| RO_WW_Fixed_IO, -- Ada.Wide_Wide_Text_IO |
| |
| RE_Stream_T, -- CUDA.Driver_Types |
| |
| RE_Fatbin_Wrapper, -- CUDA.Internal |
| RE_Launch_Kernel, -- CUDA.Internal |
| RE_Pop_Call_Configuration, -- CUDA.Internal |
| RE_Push_Call_Configuration, -- CUDA.Internal |
| RE_Register_Fat_Binary, -- CUDA.Internal |
| RE_Register_Fat_Binary_End, -- CUDA.Internal |
| RE_Register_Function, -- CUDA.Internal |
| |
| RE_Dim3, -- CUDA.Vector_Types |
| |
| RE_Integer_8, -- Interfaces |
| RE_Integer_16, -- Interfaces |
| RE_Integer_32, -- Interfaces |
| RE_Integer_64, -- Interfaces |
| RE_Integer_128, -- Interfaces |
| RE_Unsigned_8, -- Interfaces |
| RE_Unsigned_16, -- Interfaces |
| RE_Unsigned_32, -- Interfaces |
| RE_Unsigned_64, -- Interfaces |
| RE_Unsigned_128, -- Interfaces |
| |
| RO_IC_Unsigned, -- Interfaces.C |
| |
| RE_Chars_Ptr, -- Interfaces.C.Strings |
| RE_New_Char_Array, -- Interfaces.C.Strings |
| |
| RE_Address, -- System |
| RE_Any_Priority, -- System |
| RE_Bit_Order, -- System |
| RE_Default_Priority, -- System |
| RE_High_Order_First, -- System |
| RE_Interrupt_Priority, -- System |
| RE_Lib_Stop, -- System |
| RE_Low_Order_First, -- System |
| RE_Max_Base_Digits, -- System |
| RE_Max_Priority, -- System |
| RE_Null_Address, -- System |
| RE_Priority, -- System |
| |
| RE_Address_Image, -- System.Address_Image |
| |
| RE_Add_With_Ovflo_Check64, -- System.Arith_64 |
| RE_Double_Divide64, -- System.Arith_64 |
| RE_Multiply_With_Ovflo_Check64, -- System.Arith_64 |
| RE_Scaled_Divide64, -- System.Arith_64 |
| RE_Subtract_With_Ovflo_Check64, -- System.Arith_64 |
| |
| RE_Add_With_Ovflo_Check128, -- System.Arith_128 |
| RE_Double_Divide128, -- System.Arith_128 |
| RE_Multiply_With_Ovflo_Check128, -- System.Arith_128 |
| RE_Subtract_With_Ovflo_Check128, -- System.Arith_128 |
| RE_Scaled_Divide128, -- System.Arith_128 |
| |
| RE_Create_AST_Handler, -- System.AST_Handling |
| |
| RE_Assert_Failure, -- System.Assertions |
| RE_Raise_Assert_Failure, -- System.Assertions |
| |
| RE_Lock_Free_Read_8, -- System.Atomic_Primitives |
| RE_Lock_Free_Read_16, -- System.Atomic_Primitives |
| RE_Lock_Free_Read_32, -- System.Atomic_Primitives |
| RE_Lock_Free_Read_64, -- System.Atomic_Primitives |
| RE_Lock_Free_Try_Write_8, -- System.Atomic_Primitives |
| RE_Lock_Free_Try_Write_16, -- System.Atomic_Primitives |
| RE_Lock_Free_Try_Write_32, -- System.Atomic_Primitives |
| RE_Lock_Free_Try_Write_64, -- System.Atomic_Primitives |
| RE_Uint8, -- System.Atomic_Primitives |
| RE_Uint16, -- System.Atomic_Primitives |
| RE_Uint32, -- System.Atomic_Primitives |
| RE_Uint64, -- System.Atomic_Primitives |
| |
| RE_Test_And_Set_Flag, -- System.Atomic_Operations.Test_And_Set |
| RE_Atomic_Test_And_Set, -- System.Atomic_Operations.Test_And_Set |
| |
| RE_AST_Handler, -- System.Aux_DEC |
| RE_Import_Address, -- System.Aux_DEC |
| RE_Import_Value, -- System.Aux_DEC |
| RE_No_AST_Handler, -- System.Aux_DEC |
| RE_Type_Class, -- System.Aux_DEC |
| RE_Type_Class_Enumeration, -- System.Aux_DEC |
| RE_Type_Class_Integer, -- System.Aux_DEC |
| RE_Type_Class_Fixed_Point, -- System.Aux_DEC |
| RE_Type_Class_Floating_Point, -- System.Aux_DEC |
| RE_Type_Class_Array, -- System.Aux_DEC |
| RE_Type_Class_Record, -- System.Aux_DEC |
| RE_Type_Class_Access, -- System.Aux_DEC |
| RE_Type_Class_Task, -- System.Aux_DEC |
| RE_Type_Class_Address, -- System.Aux_DEC |
| |
| RE_Big_Abs, -- System.Bignums |
| RE_Big_Add, -- System.Bignums |
| RE_Big_Div, -- System.Bignums |
| RE_Big_Exp, -- System.Bignums |
| RE_Big_Mod, -- System.Bignums |
| RE_Big_Mul, -- System.Bignums |
| RE_Big_Neg, -- System.Bignums |
| RE_Big_Rem, -- System.Bignums |
| RE_Big_Sub, -- System.Bignums |
| |
| RE_Big_EQ, -- System.Bignums |
| RE_Big_GE, -- System.Bignums |
| RE_Big_GT, -- System.Bignums |
| RE_Big_LE, -- System.Bignums |
| RE_Big_LT, -- System.Bignums |
| RE_Big_NE, -- System.Bignums |
| |
| RE_Bignum, -- System.Bignums |
| RE_Bignum_In_LLI_Range, -- System.Bignums |
| RE_To_Bignum, -- System.Bignums |
| RE_From_Bignum, -- System.Bignums |
| |
| RE_Val_2, -- System.Bitfields |
| RE_Copy_Bitfield, -- System.Bitfields |
| RE_Fast_Copy_Bitfield, -- System.Bitfields |
| |
| RE_Bit_And, -- System.Bit_Ops |
| RE_Bit_Eq, -- System.Bit_Ops |
| RE_Bit_Not, -- System.Bit_Ops |
| RE_Bit_Or, -- System.Bit_Ops |
| RE_Bit_Xor, -- System.Bit_Ops |
| |
| RE_Vector_Not, -- System.Boolean_Array_Operations, |
| RE_Vector_And, -- System.Boolean_Array_Operations, |
| RE_Vector_Or, -- System.Boolean_Array_Operations, |
| RE_Vector_Nand, -- System.Boolean_Array_Operations, |
| RE_Vector_Nor, -- System.Boolean_Array_Operations, |
| RE_Vector_Nxor, -- System.Boolean_Array_Operations, |
| RE_Vector_Xor, -- System.Boolean_Array_Operations, |
| |
| RE_Bswap_16, -- System.Byte_Swapping |
| RE_Bswap_32, -- System.Byte_Swapping |
| RE_Bswap_64, -- System.Byte_Swapping |
| RE_Bswap_128, -- System.Byte_Swapping |
| |
| RE_Checked_Pool, -- System.Checked_Pools |
| |
| RE_Compare_Array_S8, -- System.Compare_Array_Signed_8 |
| RE_Compare_Array_S8_Unaligned, -- System.Compare_Array_Signed_8 |
| |
| RE_Compare_Array_S16, -- System.Compare_Array_Signed_16 |
| RE_Compare_Array_S32, -- System.Compare_Array_Signed_32 |
| RE_Compare_Array_S64, -- System.Compare_Array_Signed_64 |
| RE_Compare_Array_S128, -- System.Compare_Array_Signed_128 |
| |
| RE_Compare_Array_U8, -- System.Compare_Array_Unsigned_8 |
| RE_Compare_Array_U8_Unaligned, -- System.Compare_Array_Unsigned_8 |
| |
| RE_Compare_Array_U16, -- System.Compare_Array_Unsigned_16 |
| RE_Compare_Array_U32, -- System.Compare_Array_Unsigned_32 |
| RE_Compare_Array_U64, -- System.Compare_Array_Unsigned_64 |
| RE_Compare_Array_U128, -- System.Compare_Array_Unsigned_128 |
| |
| RE_Str_Concat_2, -- System.Concat_2 |
| RE_Str_Concat_3, -- System.Concat_3 |
| RE_Str_Concat_4, -- System.Concat_4 |
| RE_Str_Concat_5, -- System.Concat_5 |
| RE_Str_Concat_6, -- System.Concat_6 |
| RE_Str_Concat_7, -- System.Concat_7 |
| RE_Str_Concat_8, -- System.Concat_8 |
| RE_Str_Concat_9, -- System.Concat_9 |
| |
| RE_Str_Concat_Bounds_2, -- System.Concat_2 |
| RE_Str_Concat_Bounds_3, -- System.Concat_3 |
| RE_Str_Concat_Bounds_4, -- System.Concat_4 |
| RE_Str_Concat_Bounds_5, -- System.Concat_5 |
| RE_Str_Concat_Bounds_6, -- System.Concat_6 |
| RE_Str_Concat_Bounds_7, -- System.Concat_7 |
| RE_Str_Concat_Bounds_8, -- System.Concat_8 |
| RE_Str_Concat_Bounds_9, -- System.Concat_9 |
| |
| RE_Get_Active_Partition_Id, -- System.DSA_Services |
| RE_Get_Local_Partition_Id, -- System.DSA_Services |
| RE_Get_Passive_Partition_Id, -- System.DSA_Services |
| |
| RE_Any_Container_Ptr, -- System.DSA_Types |
| |
| RE_Check_Standard_Allocator, -- System.Elaboration_Allocators |
| |
| RE_Register_Exception, -- System.Exception_Table |
| |
| RE_Local_Raise, -- System.Exceptions_Debug |
| |
| RE_Exn_Integer, -- System.Exn_Int |
| |
| RE_Exn_Float, -- System.Exn_Flt |
| |
| RE_Exn_Long_Float, -- System.Exn_LFlt |
| |
| RE_Exn_Long_Long_Float, -- System.Exn_LLF |
| |
| RE_Exn_Long_Long_Integer, -- System.Exn_LLI |
| |
| RE_Exn_Long_Long_Long_Integer, -- System.Exn_LLLI |
| |
| RE_Exp_Integer, -- System.Exp_Int |
| |
| RE_Exp_Long_Long_Integer, -- System.Exp_LLI |
| |
| RE_Exp_Long_Long_Long_Integer, -- System.Exp_LLLI |
| |
| RE_Exp_Long_Long_Unsigned, -- System.Exp_LLU |
| |
| RE_Exp_Long_Long_Long_Unsigned, -- System.Exp_LLLU |
| |
| RE_Exp_Modular, -- System.Exp_Mod |
| |
| RE_Exp_Unsigned, -- System.Exp_Uns |
| |
| RE_Attr_Float, -- System.Fat_Flt |
| |
| RE_Attr_Long_Float, -- System.Fat_LFlt |
| |
| RE_Attr_Long_Long_Float, -- System.Fat_LLF |
| |
| RE_Attr_VAX_D_Float, -- System.Fat_VAX_D_Float |
| RE_Fat_VAX_D, -- System.Fat_VAX_D_Float |
| |
| RE_Attr_VAX_F_Float, -- System.Fat_VAX_F_Float |
| RE_Fat_VAX_F, -- System.Fat_VAX_F_Float |
| |
| RE_Attr_VAX_G_Float, -- System.Fat_VAX_G_Float |
| RE_Fat_VAX_G, -- System.Fat_VAX_G_Float |
| |
| RE_Add_Offset_To_Address, -- System.Finalization_Masters |
| RE_Attach, -- System.Finalization_Masters |
| RE_Base_Pool, -- System.Finalization_Masters |
| RE_Finalization_Master, -- System.Finalization_Masters |
| RE_Finalization_Master_Ptr, -- System.Finalization_Masters |
| RE_Set_Base_Pool, -- System.Finalization_Masters |
| RE_Set_Finalize_Address, -- System.Finalization_Masters |
| RE_Set_Is_Heterogeneous, -- System.Finalization_Masters |
| |
| RE_Root_Controlled, -- System.Finalization_Root |
| RE_Root_Controlled_Ptr, -- System.Finalization_Root |
| |
| RE_Fore_Decimal32, -- System.Fore_Decimal_32 |
| |
| RE_Fore_Decimal64, -- System.Fore_Decimal_64 |
| |
| RE_Fore_Decimal128, -- System.Fore_Decimal_128 |
| |
| RE_Fore_Fixed, -- System.Fore_Real |
| |
| RE_Fore_Fixed32, -- System.Fore_Fixed_32 |
| |
| RE_Fore_Fixed64, -- System.Fore_Fixed_64 |
| |
| RE_Fore_Fixed128, -- System.Fore_Fixed_128 |
| |
| RE_Image_Boolean, -- System.Img_Bool |
| |
| RE_Image_Character, -- System.Img_Char |
| RE_Image_Character_05, -- System.Img_Char |
| |
| RE_Image_Decimal32, -- System.Img_Decimal_32 |
| |
| RE_Image_Decimal64, -- System.Img_Decimal_64 |
| |
| RE_Image_Decimal128, -- System.Img_Decimal_128 |
| |
| RE_Image_Enumeration_8, -- System.Img_Enum_New |
| RE_Image_Enumeration_16, -- System.Img_Enum_New |
| RE_Image_Enumeration_32, -- System.Img_Enum_New |
| |
| RE_Image_Float, -- System_Img_Flt |
| |
| RE_Image_Integer, -- System.Img_Int |
| |
| RE_Image_Long_Float, -- System_Img_LFlt |
| |
| RE_Image_Long_Long_Float, -- System_Img_LLF |
| |
| RE_Image_Long_Long_Integer, -- System.Img_LLI |
| |
| RE_Image_Long_Long_Long_Integer, -- System.Img_LLLI |
| |
| RE_Image_Long_Long_Unsigned, -- System.Img_LLU |
| |
| RE_Image_Long_Long_Long_Unsigned, -- System.Img_LLLU |
| |
| RE_Image_Fixed, -- System.Img_LFlt |
| |
| RE_Image_Fixed32, -- System.Img_Fixed_32 |
| |
| RE_Image_Fixed64, -- System.Img_Fixed_64 |
| |
| RE_Image_Fixed128, -- System.Img_Fixed_128 |
| |
| RE_Image_Unsigned, -- System.Img_Uns |
| |
| RE_Image_Wide_Character, -- System.Img_WChar |
| RE_Image_Wide_Wide_Character, -- System.Img_WChar |
| |
| RE_Bind_Interrupt_To_Entry, -- System.Interrupts |
| RE_Default_Interrupt_Priority, -- System.Interrupts |
| RE_Dynamic_Interrupt_Protection, -- System.Interrupts |
| RE_Install_Handlers, -- System.Interrupts |
| RE_Install_Restricted_Handlers, -- System.Interrupts |
| RE_Register_Interrupt_Handler, -- System.Interrupts |
| RE_Static_Interrupt_Protection, -- System.Interrupts |
| RE_System_Interrupt_Id, -- System.Interrupts |
| |
| RE_Expon_LLF, -- System.Long_Long_Float_Expon |
| |
| RE_Asm_Insn, -- System.Machine_Code |
| RE_Asm_Input_Operand, -- System.Machine_Code |
| RE_Asm_Output_Operand, -- System.Machine_Code |
| |
| RE_Mantissa_Value, -- System.Mantissa |
| |
| RE_Free, -- System.Memory |
| |
| RE_CPU_Range, -- System.Multiprocessors |
| |
| RE_Bits_03, -- System.Pack_03 |
| RE_Get_03, -- System.Pack_03 |
| RE_Set_03, -- System.Pack_03 |
| |
| RE_Bits_05, -- System.Pack_05 |
| RE_Get_05, -- System.Pack_05 |
| RE_Set_05, -- System.Pack_05 |
| |
| RE_Bits_06, -- System.Pack_06 |
| RE_Get_06, -- System.Pack_06 |
| RE_GetU_06, -- System.Pack_06 |
| RE_Set_06, -- System.Pack_06 |
| RE_SetU_06, -- System.Pack_06 |
| |
| RE_Bits_07, -- System.Pack_07 |
| RE_Get_07, -- System.Pack_07 |
| RE_Set_07, -- System.Pack_07 |
| |
| RE_Bits_09, -- System.Pack_09 |
| RE_Get_09, -- System.Pack_09 |
| RE_Set_09, -- System.Pack_09 |
| |
| RE_Bits_10, -- System.Pack_10 |
| RE_Get_10, -- System.Pack_10 |
| RE_GetU_10, -- System.Pack_10 |
| RE_Set_10, -- System.Pack_10 |
| RE_SetU_10, -- System.Pack_10 |
| |
| RE_Bits_11, -- System.Pack_11 |
| RE_Get_11, -- System.Pack_11 |
| RE_Set_11, -- System.Pack_11 |
| |
| RE_Bits_12, -- System.Pack_12 |
| RE_Get_12, -- System.Pack_12 |
| RE_GetU_12, -- System.Pack_12 |
| RE_Set_12, -- System.Pack_12 |
| RE_SetU_12, -- System.Pack_12 |
| |
| RE_Bits_13, -- System.Pack_13 |
| RE_Get_13, -- System.Pack_13 |
| RE_Set_13, -- System.Pack_13 |
| |
| RE_Bits_14, -- System.Pack_14 |
| RE_Get_14, -- System.Pack_14 |
| RE_GetU_14, -- System.Pack_14 |
| RE_Set_14, -- System.Pack_14 |
| RE_SetU_14, -- System.Pack_14 |
| |
| RE_Bits_15, -- System.Pack_15 |
| RE_Get_15, -- System.Pack_15 |
| RE_Set_15, -- System.Pack_15 |
| |
| RE_Bits_17, -- System.Pack_17 |
| RE_Get_17, -- System.Pack_17 |
| RE_Set_17, -- System.Pack_17 |
| |
| RE_Bits_18, -- System.Pack_18 |
| RE_Get_18, -- System.Pack_18 |
| RE_GetU_18, -- System.Pack_18 |
| RE_Set_18, -- System.Pack_18 |
| RE_SetU_18, -- System.Pack_18 |
| |
| RE_Bits_19, -- System.Pack_19 |
| RE_Get_19, -- System.Pack_19 |
| RE_Set_19, -- System.Pack_19 |
| |
| RE_Bits_20, -- System.Pack_20 |
| RE_Get_20, -- System.Pack_20 |
| RE_GetU_20, -- System.Pack_20 |
| RE_Set_20, -- System.Pack_20 |
| RE_SetU_20, -- System.Pack_20 |
| |
| RE_Bits_21, -- System.Pack_21 |
| RE_Get_21, -- System.Pack_21 |
| RE_Set_21, -- System.Pack_21 |
| |
| RE_Bits_22, -- System.Pack_22 |
| RE_Get_22, -- System.Pack_22 |
| RE_GetU_22, -- System.Pack_22 |
| RE_Set_22, -- System.Pack_22 |
| RE_SetU_22, -- System.Pack_22 |
| |
| RE_Bits_23, -- System.Pack_23 |
| RE_Get_23, -- System.Pack_23 |
| RE_Set_23, -- System.Pack_23 |
| |
| RE_Bits_24, -- System.Pack_24 |
| RE_Get_24, -- System.Pack_24 |
| RE_GetU_24, -- System.Pack_24 |
| RE_Set_24, -- System.Pack_24 |
| RE_SetU_24, -- System.Pack_24 |
| |
| RE_Bits_25, -- System.Pack_25 |
| RE_Get_25, -- System.Pack_25 |
| RE_Set_25, -- System.Pack_25 |
| |
| RE_Bits_26, -- System.Pack_26 |
| RE_Get_26, -- System.Pack_26 |
| RE_GetU_26, -- System.Pack_26 |
| RE_Set_26, -- System.Pack_26 |
| RE_SetU_26, -- System.Pack_26 |
| |
| RE_Bits_27, -- System.Pack_27 |
| RE_Get_27, -- System.Pack_27 |
| RE_Set_27, -- System.Pack_27 |
| |
| RE_Bits_28, -- System.Pack_28 |
| RE_Get_28, -- System.Pack_28 |
| RE_GetU_28, -- System.Pack_28 |
| RE_Set_28, -- System.Pack_28 |
| RE_SetU_28, -- System.Pack_28 |
| |
| RE_Bits_29, -- System.Pack_29 |
| RE_Get_29, -- System.Pack_29 |
| RE_Set_29, -- System.Pack_29 |
| |
| RE_Bits_30, -- System.Pack_30 |
| RE_Get_30, -- System.Pack_30 |
| RE_GetU_30, -- System.Pack_30 |
| RE_Set_30, -- System.Pack_30 |
| RE_SetU_30, -- System.Pack_30 |
| |
| RE_Bits_31, -- System.Pack_31 |
| RE_Get_31, -- System.Pack_31 |
| RE_Set_31, -- System.Pack_31 |
| |
| RE_Bits_33, -- System.Pack_33 |
| RE_Get_33, -- System.Pack_33 |
| RE_Set_33, -- System.Pack_33 |
| |
| RE_Bits_34, -- System.Pack_34 |
| RE_Get_34, -- System.Pack_34 |
| RE_GetU_34, -- System.Pack_34 |
| RE_Set_34, -- System.Pack_34 |
| RE_SetU_34, -- System.Pack_34 |
| |
| RE_Bits_35, -- System.Pack_35 |
| RE_Get_35, -- System.Pack_35 |
| RE_Set_35, -- System.Pack_35 |
| |
| RE_Bits_36, -- System.Pack_36 |
| RE_Get_36, -- System.Pack_36 |
| RE_GetU_36, -- System.Pack_36 |
| RE_Set_36, -- System.Pack_36 |
| RE_SetU_36, -- System.Pack_36 |
| |
| RE_Bits_37, -- System.Pack_37 |
| RE_Get_37, -- System.Pack_37 |
| RE_Set_37, -- System.Pack_37 |
| |
| RE_Bits_38, -- System.Pack_38 |
| RE_Get_38, -- System.Pack_38 |
| RE_GetU_38, -- System.Pack_38 |
| RE_Set_38, -- System.Pack_38 |
| RE_SetU_38, -- System.Pack_38 |
| |
| RE_Bits_39, -- System.Pack_39 |
| RE_Get_39, -- System.Pack_39 |
| RE_Set_39, -- System.Pack_39 |
| |
| RE_Bits_40, -- System.Pack_40 |
| RE_Get_40, -- System.Pack_40 |
| RE_GetU_40, -- System.Pack_40 |
| RE_Set_40, -- System.Pack_40 |
| RE_SetU_40, -- System.Pack_40 |
| |
| RE_Bits_41, -- System.Pack_41 |
| RE_Get_41, -- System.Pack_41 |
| RE_Set_41, -- System.Pack_41 |
| |
| RE_Bits_42, -- System.Pack_42 |
| RE_Get_42, -- System.Pack_42 |
| RE_GetU_42, -- System.Pack_42 |
| RE_Set_42, -- System.Pack_42 |
| RE_SetU_42, -- System.Pack_42 |
| |
| RE_Bits_43, -- System.Pack_43 |
| RE_Get_43, -- System.Pack_43 |
| RE_Set_43, -- System.Pack_43 |
| |
| RE_Bits_44, -- System.Pack_44 |
| RE_Get_44, -- System.Pack_44 |
| RE_GetU_44, -- System.Pack_44 |
| RE_Set_44, -- System.Pack_44 |
| RE_SetU_44, -- System.Pack_44 |
| |
| RE_Bits_45, -- System.Pack_45 |
| RE_Get_45, -- System.Pack_45 |
| RE_Set_45, -- System.Pack_45 |
| |
| RE_Bits_46, -- System.Pack_46 |
| RE_Get_46, -- System.Pack_46 |
| RE_GetU_46, -- System.Pack_46 |
| RE_Set_46, -- System.Pack_46 |
| RE_SetU_46, -- System.Pack_46 |
| |
| RE_Bits_47, -- System.Pack_47 |
| RE_Get_47, -- System.Pack_47 |
| RE_Set_47, -- System.Pack_47 |
| |
| RE_Bits_48, -- System.Pack_48 |
| RE_Get_48, -- System.Pack_48 |
| RE_GetU_48, -- System.Pack_48 |
| RE_Set_48, -- System.Pack_48 |
| RE_SetU_48, -- System.Pack_48 |
| |
| RE_Bits_49, -- System.Pack_49 |
| RE_Get_49, -- System.Pack_49 |
| RE_Set_49, -- System.Pack_49 |
| |
| RE_Bits_50, -- System.Pack_50 |
| RE_Get_50, -- System.Pack_50 |
| RE_GetU_50, -- System.Pack_50 |
| RE_Set_50, -- System.Pack_50 |
| RE_SetU_50, -- System.Pack_50 |
| |
| RE_Bits_51, -- System.Pack_51 |
| RE_Get_51, -- System.Pack_51 |
| RE_Set_51, -- System.Pack_51 |
| |
| RE_Bits_52, -- System.Pack_52 |
| RE_Get_52, -- System.Pack_52 |
| RE_GetU_52, -- System.Pack_52 |
| RE_Set_52, -- System.Pack_52 |
| RE_SetU_52, -- System.Pack_52 |
| |
| RE_Bits_53, -- System.Pack_53 |
| RE_Get_53, -- System.Pack_53 |
| RE_Set_53, -- System.Pack_53 |
| |
| RE_Bits_54, -- System.Pack_54 |
| RE_Get_54, -- System.Pack_54 |
| RE_GetU_54, -- System.Pack_54 |
| RE_Set_54, -- System.Pack_54 |
| RE_SetU_54, -- System.Pack_54 |
| |
| RE_Bits_55, -- System.Pack_55 |
| RE_Get_55, -- System.Pack_55 |
| RE_Set_55, -- System.Pack_55 |
| |
| RE_Bits_56, -- System.Pack_56 |
| RE_Get_56, -- System.Pack_56 |
| RE_GetU_56, -- System.Pack_56 |
| RE_Set_56, -- System.Pack_56 |
| RE_SetU_56, -- System.Pack_56 |
| |
| RE_Bits_57, -- System.Pack_57 |
| RE_Get_57, -- System.Pack_57 |
| RE_Set_57, -- System.Pack_57 |
| |
| RE_Bits_58, -- System.Pack_58 |
| RE_Get_58, -- System.Pack_58 |
| RE_GetU_58, -- System.Pack_58 |
| RE_Set_58, -- System.Pack_58 |
| RE_SetU_58, -- System.Pack_58 |
| |
| RE_Bits_59, -- System.Pack_59 |
| RE_Get_59, -- System.Pack_59 |
| RE_Set_59, -- System.Pack_59 |
| |
| RE_Bits_60, -- System.Pack_60 |
| RE_Get_60, -- System.Pack_60 |
| RE_GetU_60, -- System.Pack_60 |
| RE_Set_60, -- System.Pack_60 |
| RE_SetU_60, -- System.Pack_60 |
| |
| RE_Bits_61, -- System.Pack_61 |
| RE_Get_61, -- System.Pack_61 |
| RE_Set_61, -- System.Pack_61 |
| |
| RE_Bits_62, -- System.Pack_62 |
| RE_Get_62, -- System.Pack_62 |
| RE_GetU_62, -- System.Pack_62 |
| RE_Set_62, -- System.Pack_62 |
| RE_SetU_62, -- System.Pack_62 |
| |
| RE_Bits_63, -- System.Pack_63 |
| RE_Get_63, -- System.Pack_63 |
| RE_Set_63, -- System.Pack_63 |
| |
| RE_Bits_65, -- System.Pack_65 |
| RE_Get_65, -- System.Pack_65 |
| RE_Set_65, -- System.Pack_65 |
| |
| RE_Bits_66, -- System.Pack_66 |
| RE_Get_66, -- System.Pack_66 |
| RE_GetU_66, -- System.Pack_66 |
| RE_Set_66, -- System.Pack_66 |
| RE_SetU_66, -- System.Pack_66 |
| |
| RE_Bits_67, -- System.Pack_67 |
| RE_Get_67, -- System.Pack_67 |
| RE_Set_67, -- System.Pack_67 |
| |
| RE_Bits_68, -- System.Pack_68 |
| RE_Get_68, -- System.Pack_68 |
| RE_GetU_68, -- System.Pack_68 |
| RE_Set_68, -- System.Pack_68 |
| RE_SetU_68, -- System.Pack_68 |
| |
| RE_Bits_69, -- System.Pack_69 |
| RE_Get_69, -- System.Pack_69 |
| RE_Set_69, -- System.Pack_69 |
| |
| RE_Bits_70, -- System.Pack_70 |
| RE_Get_70, -- System.Pack_70 |
| RE_GetU_70, -- System.Pack_70 |
| RE_Set_70, -- System.Pack_70 |
| RE_SetU_70, -- System.Pack_70 |
| |
| RE_Bits_71, -- System.Pack_71 |
| RE_Get_71, -- System.Pack_71 |
| RE_Set_71, -- System.Pack_71 |
| |
| RE_Bits_72, -- System.Pack_72 |
| RE_Get_72, -- System.Pack_72 |
| RE_GetU_72, -- System.Pack_72 |
| RE_Set_72, -- System.Pack_72 |
| RE_SetU_72, -- System.Pack_72 |
| |
| RE_Bits_73, -- System.Pack_73 |
| RE_Get_73, -- System.Pack_73 |
| RE_Set_73, -- System.Pack_73 |
| |
| RE_Bits_74, -- System.Pack_74 |
| RE_Get_74, -- System.Pack_74 |
| RE_GetU_74, -- System.Pack_74 |
| RE_Set_74, -- System.Pack_74 |
| RE_SetU_74, -- System.Pack_74 |
| |
| RE_Bits_75, -- System.Pack_75 |
| RE_Get_75, -- System.Pack_75 |
| RE_Set_75, -- System.Pack_75 |
| |
| RE_Bits_76, -- System.Pack_76 |
| RE_Get_76, -- System.Pack_76 |
| RE_GetU_76, -- System.Pack_76 |
| RE_Set_76, -- System.Pack_76 |
| RE_SetU_76, -- System.Pack_76 |
| |
| RE_Bits_77, -- System.Pack_77 |
| RE_Get_77, -- System.Pack_77 |
| RE_Set_77, -- System.Pack_77 |
| |
| RE_Bits_78, -- System.Pack_78 |
| RE_Get_78, -- System.Pack_78 |
| RE_GetU_78, -- System.Pack_78 |
| RE_Set_78, -- System.Pack_78 |
| RE_SetU_78, -- System.Pack_78 |
| |
| RE_Bits_79, -- System.Pack_79 |
| RE_Get_79, -- System.Pack_79 |
| RE_Set_79, -- System.Pack_79 |
| |
| RE_Bits_80, -- System.Pack_80 |
| RE_Get_80, -- System.Pack_80 |
| RE_GetU_80, -- System.Pack_80 |
| RE_Set_80, -- System.Pack_80 |
| RE_SetU_80, -- System.Pack_80 |
| |
| RE_Bits_81, -- System.Pack_81 |
| RE_Get_81, -- System.Pack_81 |
| RE_Set_81, -- System.Pack_81 |
| |
| RE_Bits_82, -- System.Pack_82 |
| RE_Get_82, -- System.Pack_82 |
| RE_GetU_82, -- System.Pack_82 |
| RE_Set_82, -- System.Pack_82 |
| RE_SetU_82, -- System.Pack_82 |
| |
| RE_Bits_83, -- System.Pack_83 |
| RE_Get_83, -- System.Pack_83 |
| RE_Set_83, -- System.Pack_83 |
| |
| RE_Bits_84, -- System.Pack_84 |
| RE_Get_84, -- System.Pack_84 |
| RE_GetU_84, -- System.Pack_84 |
| RE_Set_84, -- System.Pack_84 |
| RE_SetU_84, -- System.Pack_84 |
| |
| RE_Bits_85, -- System.Pack_85 |
| RE_Get_85, -- System.Pack_85 |
| RE_Set_85, -- System.Pack_85 |
| |
| RE_Bits_86, -- System.Pack_86 |
| RE_Get_86, -- System.Pack_86 |
| RE_GetU_86, -- System.Pack_86 |
| RE_Set_86, -- System.Pack_86 |
| RE_SetU_86, -- System.Pack_86 |
| |
| RE_Bits_87, -- System.Pack_87 |
| RE_Get_87, -- System.Pack_87 |
| RE_Set_87, -- System.Pack_87 |
| |
| RE_Bits_88, -- System.Pack_88 |
| RE_Get_88, -- System.Pack_88 |
| RE_GetU_88, -- System.Pack_88 |
| RE_Set_88, -- System.Pack_88 |
| RE_SetU_88, -- System.Pack_88 |
| |
| RE_Bits_89, -- System.Pack_89 |
| RE_Get_89, -- System.Pack_89 |
| RE_Set_89, -- System.Pack_89 |
| |
| RE_Bits_90, -- System.Pack_90 |
| RE_Get_90, -- System.Pack_90 |
| RE_GetU_90, -- System.Pack_90 |
| RE_Set_90, -- System.Pack_90 |
| RE_SetU_90, -- System.Pack_90 |
| |
| RE_Bits_91, -- System.Pack_91 |
| RE_Get_91, -- System.Pack_91 |
| RE_Set_91, -- System.Pack_91 |
| |
| RE_Bits_92, -- System.Pack_92 |
| RE_Get_92, -- System.Pack_92 |
| RE_GetU_92, -- System.Pack_92 |
| RE_Set_92, -- System.Pack_92 |
| RE_SetU_92, -- System.Pack_92 |
| |
| RE_Bits_93, -- System.Pack_93 |
| RE_Get_93, -- System.Pack_93 |
| RE_Set_93, -- System.Pack_93 |
| |
| RE_Bits_94, -- System.Pack_94 |
| RE_Get_94, -- System.Pack_94 |
| RE_GetU_94, -- System.Pack_94 |
| RE_Set_94, -- System.Pack_94 |
| RE_SetU_94, -- System.Pack_94 |
| |
| RE_Bits_95, -- System.Pack_95 |
| RE_Get_95, -- System.Pack_95 |
| RE_Set_95, -- System.Pack_95 |
| |
| RE_Bits_96, -- System.Pack_96 |
| RE_Get_96, -- System.Pack_96 |
| RE_GetU_96, -- System.Pack_96 |
| RE_Set_96, -- System.Pack_96 |
| RE_SetU_96, -- System.Pack_96 |
| |
| RE_Bits_97, -- System.Pack_97 |
| RE_Get_97, -- System.Pack_97 |
| RE_Set_97, -- System.Pack_97 |
| |
| RE_Bits_98, -- System.Pack_98 |
| RE_Get_98, -- System.Pack_98 |
| RE_GetU_98, -- System.Pack_98 |
| RE_Set_98, -- System.Pack_98 |
| RE_SetU_98, -- System.Pack_98 |
| |
| RE_Bits_99, -- System.Pack_99 |
| RE_Get_99, -- System.Pack_99 |
| RE_Set_99, -- System.Pack_99 |
| |
| RE_Bits_100, -- System.Pack_100 |
| RE_Get_100, -- System.Pack_100 |
| RE_GetU_100, -- System.Pack_100 |
| RE_Set_100, -- System.Pack_100 |
| RE_SetU_100, -- System.Pack_100 |
| |
| RE_Bits_101, -- System.Pack_101 |
| RE_Get_101, -- System.Pack_101 |
| RE_Set_101, -- System.Pack_101 |
| |
| RE_Bits_102, -- System.Pack_102 |
| RE_Get_102, -- System.Pack_102 |
| RE_GetU_102, -- System.Pack_102 |
| RE_Set_102, -- System.Pack_102 |
| RE_SetU_102, -- System.Pack_102 |
| |
| RE_Bits_103, -- System.Pack_103 |
| RE_Get_103, -- System.Pack_103 |
| RE_Set_103, -- System.Pack_103 |
| |
| RE_Bits_104, -- System.Pack_104 |
| RE_Get_104, -- System.Pack_104 |
| RE_GetU_104, -- System.Pack_104 |
| RE_Set_104, -- System.Pack_104 |
| RE_SetU_104, -- System.Pack_104 |
| |
| RE_Bits_105, -- System.Pack_105 |
| RE_Get_105, -- System.Pack_105 |
| RE_Set_105, -- System.Pack_105 |
| |
| RE_Bits_106, -- System.Pack_106 |
| RE_Get_106, -- System.Pack_106 |
| RE_GetU_106, -- System.Pack_106 |
| RE_Set_106, -- System.Pack_106 |
| RE_SetU_106, -- System.Pack_106 |
| |
| RE_Bits_107, -- System.Pack_107 |
| RE_Get_107, -- System.Pack_107 |
| RE_Set_107, -- System.Pack_107 |
| |
| RE_Bits_108, -- System.Pack_108 |
| RE_Get_108, -- System.Pack_108 |
| RE_GetU_108, -- System.Pack_108 |
| RE_Set_108, -- System.Pack_108 |
| RE_SetU_108, -- System.Pack_108 |
| |
| RE_Bits_109, -- System.Pack_109 |
| RE_Get_109, -- System.Pack_109 |
| RE_Set_109, -- System.Pack_109 |
| |
| RE_Bits_110, -- System.Pack_110 |
| RE_Get_110, -- System.Pack_110 |
| RE_GetU_110, -- System.Pack_110 |
| RE_Set_110, -- System.Pack_110 |
| RE_SetU_110, -- System.Pack_110 |
| |
| RE_Bits_111, -- System.Pack_111 |
| RE_Get_111, -- System.Pack_111 |
| RE_Set_111, -- System.Pack_111 |
| |
| RE_Bits_112, -- System.Pack_112 |
| RE_Get_112, -- System.Pack_112 |
| RE_GetU_112, -- System.Pack_112 |
| RE_Set_112, -- System.Pack_112 |
| RE_SetU_112, -- System.Pack_112 |
| |
| RE_Bits_113, -- System.Pack_113 |
| RE_Get_113, -- System.Pack_113 |
| RE_Set_113, -- System.Pack_113 |
| |
| RE_Bits_114, -- System.Pack_114 |
| RE_Get_114, -- System.Pack_114 |
| RE_GetU_114, -- System.Pack_114 |
| RE_Set_114, -- System.Pack_114 |
| RE_SetU_114, -- System.Pack_114 |
| |
| RE_Bits_115, -- System.Pack_115 |
| RE_Get_115, -- System.Pack_115 |
| RE_Set_115, -- System.Pack_115 |
| |
| RE_Bits_116, -- System.Pack_116 |
| RE_Get_116, -- System.Pack_116 |
| RE_GetU_116, -- System.Pack_116 |
| RE_Set_116, -- System.Pack_116 |
| RE_SetU_116, -- System.Pack_116 |
| |
| RE_Bits_117, -- System.Pack_117 |
| RE_Get_117, -- System.Pack_117 |
| RE_Set_117, -- System.Pack_117 |
| |
| RE_Bits_118, -- System.Pack_118 |
| RE_Get_118, -- System.Pack_118 |
| RE_GetU_118, -- System.Pack_118 |
| RE_Set_118, -- System.Pack_118 |
| RE_SetU_118, -- System.Pack_118 |
| |
| RE_Bits_119, -- System.Pack_119 |
| RE_Get_119, -- System.Pack_119 |
| RE_Set_119, -- System.Pack_119 |
| |
| RE_Bits_120, -- System.Pack_120 |
| RE_Get_120, -- System.Pack_120 |
| RE_GetU_120, -- System.Pack_120 |
| RE_Set_120, -- System.Pack_120 |
| RE_SetU_120, -- System.Pack_120 |
| |
| RE_Bits_121, -- System.Pack_121 |
| RE_Get_121, -- System.Pack_121 |
| RE_Set_121, -- System.Pack_121 |
| |
| RE_Bits_122, -- System.Pack_122 |
| RE_Get_122, -- System.Pack_122 |
| RE_GetU_122, -- System.Pack_122 |
| RE_Set_122, -- System.Pack_122 |
| RE_SetU_122, -- System.Pack_122 |
| |
| RE_Bits_123, -- System.Pack_123 |
| RE_Get_123, -- System.Pack_123 |
| RE_Set_123, -- System.Pack_123 |
| |
| RE_Bits_124, -- System.Pack_124 |
| RE_Get_124, -- System.Pack_124 |
| RE_GetU_124, -- System.Pack_124 |
| RE_Set_124, -- System.Pack_124 |
| RE_SetU_124, -- System.Pack_124 |
| |
| RE_Bits_125, -- System.Pack_125 |
| RE_Get_125, -- System.Pack_125 |
| RE_Set_125, -- System.Pack_125 |
| |
| RE_Bits_126, -- System.Pack_126 |
| RE_Get_126, -- System.Pack_126 |
| RE_GetU_126, -- System.Pack_126 |
| RE_Set_126, -- System.Pack_126 |
| RE_SetU_126, -- System.Pack_126 |
| |
| RE_Bits_127, -- System.Pack_127 |
| RE_Get_127, -- System.Pack_127 |
| RE_Set_127, -- System.Pack_127 |
| |
| RE_Adjust_Storage_Size, -- System.Parameters |
| RE_Default_Secondary_Stack_Size, -- System.Parameters |
| RE_Default_Stack_Size, -- System.Parameters |
| RE_Garbage_Collected, -- System.Parameters |
| RE_Size_Type, -- System.Parameters |
| RE_Unspecified_Size, -- System.Parameters |
| |
| RE_DSA_Implementation, -- System.Partition_Interface |
| RE_PCS_Version, -- System.Partition_Interface |
| RE_Get_RACW, -- System.Partition_Interface |
| RE_Get_RCI_Package_Receiver, -- System.Partition_Interface |
| RE_Get_Unique_Remote_Pointer, -- System.Partition_Interface |
| RE_RACW_Stub_Type, -- System.Partition_Interface |
| RE_RACW_Stub_Type_Access, -- System.Partition_Interface |
| RE_RAS_Proxy_Type_Access, -- System.Partition_Interface |
| RE_Raise_Program_Error_Unknown_Tag, -- System.Partition_Interface |
| RE_Register_Passive_Package, -- System.Partition_Interface |
| RE_Register_Receiving_Stub, -- System.Partition_Interface |
| RE_Request, -- System.Partition_Interface |
| RE_Request_Access, -- System.Partition_Interface |
| RE_RCI_Locator, -- System.Partition_Interface |
| RE_RCI_Subp_Info, -- System.Partition_Interface |
| RE_RCI_Subp_Info_Array, -- System.Partition_Interface |
| RE_Same_Partition, -- System.Partition_Interface |
| RE_Subprogram_Id, -- System.Partition_Interface |
| RE_Get_RAS_Info, -- System.Partition_Interface |
| |
| RE_Global_Pool_Object, -- System.Pool_Global |
| |
| RE_Global_Pool_32_Object, -- System.Pool_32_Global |
| |
| RE_Stack_Bounded_Pool, -- System.Pool_Size |
| |
| RE_Put_Image_Integer, -- System.Put_Images |
| RE_Put_Image_Long_Long_Integer, -- System.Put_Images |
| RE_Put_Image_Long_Long_Long_Integer, -- System.Put_Images |
| RE_Put_Image_Unsigned, -- System.Put_Images |
| RE_Put_Image_Long_Long_Unsigned, -- System.Put_Images |
| RE_Put_Image_Long_Long_Long_Unsigned, -- System.Put_Images |
| RE_Put_Image_Thin_Pointer, -- System.Put_Images |
| RE_Put_Image_Fat_Pointer, -- System.Put_Images |
| RE_Put_Image_Access_Subp, -- System.Put_Images |
| RE_Put_Image_Access_Prot_Subp, -- System.Put_Images |
| RE_Put_Image_String, -- System.Put_Images |
| RE_Put_Image_Wide_String, -- System.Put_Images |
| RE_Put_Image_Wide_Wide_String, -- System.Put_Images |
| RE_Array_Before, -- System.Put_Images |
| RE_Array_Between, -- System.Put_Images |
| RE_Array_After, -- System.Put_Images |
| RE_Simple_Array_Between, -- System.Put_Images |
| RE_Record_Before, -- System.Put_Images |
| RE_Record_Between, -- System.Put_Images |
| RE_Record_After, -- System.Put_Images |
| RE_Put_Image_Unknown, -- System.Put_Images |
| |
| RE_Put_Image_Protected, -- System.Put_Task_Images |
| RE_Put_Image_Task, -- System.Put_Task_Images |
| |
| RE_Do_Apc, -- System.RPC |
| RE_Do_Rpc, -- System.RPC |
| RE_Params_Stream_Type, -- System.RPC |
| RE_Partition_ID, -- System.RPC |
| |
| RE_To_PolyORB_String, -- System.Partition_Interface |
| RE_Caseless_String_Eq, -- System.Partition_Interface |
| RE_TypeCode, -- System.Partition_Interface |
| RE_Any, -- System.Partition_Interface |
| RE_Mode_In, -- System.Partition_Interface |
| RE_Mode_Out, -- System.Partition_Interface |
| RE_Mode_Inout, -- System.Partition_Interface |
| RE_NamedValue, -- System.Partition_Interface |
| RE_Result_Name, -- System.Partition_Interface |
| RE_Object_Ref, -- System.Partition_Interface |
| RE_Create_Any, -- System.Partition_Interface |
| RE_Any_Aggregate_Build, -- System.Partition_Interface |
| RE_Add_Aggregate_Element, -- System.Partition_Interface |
| RE_Get_Aggregate_Element, -- System.Partition_Interface |
| RE_Content_Type, -- System.Partition_Interface |
| RE_Any_Member_Type, -- System.Partition_Interface |
| RE_Get_Nested_Sequence_Length, -- System.Partition_Interface |
| RE_Get_Any_Type, -- System.Partition_Interface |
| RE_Extract_Union_Value, -- System.Partition_Interface |
| RE_NVList_Ref, -- System.Partition_Interface |
| RE_NVList_Create, -- System.Partition_Interface |
| RE_NVList_Add_Item, -- System.Partition_Interface |
| RE_Request_Arguments, -- System.Partition_Interface |
| RE_Request_Invoke, -- System.Partition_Interface |
| RE_Request_Raise_Occurrence, -- System.Partition_Interface |
| RE_Request_Set_Out, -- System.Partition_Interface |
| RE_Request_Setup, -- System.Partition_Interface |
| RE_Nil_Exc_List, -- System.Partition_Interface |
| RE_Servant, -- System.Partition_Interface |
| RE_Move_Any_Value, -- System.Partition_Interface |
| RE_Set_Result, -- System.Partition_Interface |
| RE_Register_Obj_Receiving_Stub, -- System.Partition_Interface |
| RE_Register_Pkg_Receiving_Stub, -- System.Partition_Interface |
| RE_Is_Nil, -- System.Partition_Interface |
| RE_Entity_Ptr, -- System.Partition_Interface |
| RE_Entity_Of, -- System.Partition_Interface |
| RE_Inc_Usage, -- System.Partition_Interface |
| RE_Set_Ref, -- System.Partition_Interface |
| RE_Make_Ref, -- System.Partition_Interface |
| RE_Get_Local_Address, -- System.Partition_Interface |
| RE_Get_Reference, -- System.Partition_Interface |
| RE_Asynchronous_P_To_Sync_Scope, -- System.Partition_Interface |
| RE_Buffer_Stream_Type, -- System.Partition_Interface |
| RE_Release_Buffer, -- System.Partition_Interface |
| RE_BS_To_Any, -- System.Partition_Interface |
| RE_Any_To_BS, -- System.Partition_Interface |
| RE_Build_Complex_TC, -- System.Partition_Interface |
| RE_Get_TC, -- System.Partition_Interface |
| RE_Set_TC, -- System.Partition_Interface |
| |
| RE_FA_A, -- System.Partition_Interface |
| RE_FA_B, -- System.Partition_Interface |
| RE_FA_C, -- System.Partition_Interface |
| RE_FA_F, -- System.Partition_Interface |
| RE_FA_I8, -- System.Partition_Interface |
| RE_FA_I16, -- System.Partition_Interface |
| RE_FA_I32, -- System.Partition_Interface |
| RE_FA_I64, -- System.Partition_Interface |
| RE_FA_LF, -- System.Partition_Interface |
| RE_FA_LLF, -- System.Partition_Interface |
| RE_FA_SF, -- System.Partition_Interface |
| RE_FA_U8, -- System.Partition_Interface |
| RE_FA_U16, -- System.Partition_Interface |
| RE_FA_U32, -- System.Partition_Interface |
| RE_FA_U64, -- System.Partition_Interface |
| RE_FA_WC, -- System.Partition_Interface |
| RE_FA_WWC, -- System.Partition_Interface |
| RE_FA_String, -- System.Partition_Interface |
| RE_FA_ObjRef, -- System.Partition_Interface |
| |
| RE_TA_A, -- System.Partition_Interface |
| RE_TA_B, -- System.Partition_Interface |
| RE_TA_C, -- System.Partition_Interface |
| RE_TA_F, -- System.Partition_Interface |
| RE_TA_I8, -- System.Partition_Interface |
| RE_TA_I16, -- System.Partition_Interface |
| RE_TA_I32, -- System.Partition_Interface |
| RE_TA_I64, -- System.Partition_Interface |
| RE_TA_LF, -- System.Partition_Interface |
| RE_TA_LLF, -- System.Partition_Interface |
| RE_TA_SF, -- System.Partition_Interface |
| RE_TA_U8, -- System.Partition_Interface |
| RE_TA_U16, -- System.Partition_Interface |
| RE_TA_U32, -- System.Partition_Interface |
| RE_TA_U64, -- System.Partition_Interface |
| RE_TA_WC, -- System.Partition_Interface |
| RE_TA_WWC, -- System.Partition_Interface |
| RE_TA_String, -- System.Partition_Interface |
| RE_TA_ObjRef, -- System.Partition_Interface |
| RE_TA_Std_String, -- System.Partition_Interface |
| RE_TA_TC, -- System.Partition_Interface |
| |
| RE_TC_A, -- System.Partition_Interface |
| RE_TC_B, -- System.Partition_Interface |
| RE_TC_C, -- System.Partition_Interface |
| RE_TC_F, -- System.Partition_Interface |
| RE_TC_I8, -- System.Partition_Interface |
| RE_TC_I16, -- System.Partition_Interface |
| RE_TC_I32, -- System.Partition_Interface |
| RE_TC_I64, -- System.Partition_Interface |
| RE_TC_LF, -- System.Partition_Interface |
| RE_TC_LLF, -- System.Partition_Interface |
| RE_TC_SF, -- System.Partition_Interface |
| RE_TC_U8, -- System.Partition_Interface |
| RE_TC_U16, -- System.Partition_Interface |
| RE_TC_U32, -- System.Partition_Interface |
| RE_TC_U64, -- System.Partition_Interface |
| RE_TC_Void, -- System.Partition_Interface |
| RE_TC_Opaque, -- System.Partition_Interface |
| RE_TC_WC, -- System.Partition_Interface |
| RE_TC_WWC, -- System.Partition_Interface |
| RE_TC_String, -- System.Partition_Interface |
| |
| RE_Tk_Alias, -- System.Partition_Interface |
| RE_Tk_Array, -- System.Partition_Interface |
| RE_Tk_Sequence, -- System.Partition_Interface |
| RE_Tk_Struct, -- System.Partition_Interface |
| RE_Tk_Objref, -- System.Partition_Interface |
| RE_Tk_Union, -- System.Partition_Interface |
| |
| RO_RD_Delay_For, -- System.Relative_Delays |
| |
| RE_IS_Is1, -- System.Scalar_Values |
| RE_IS_Is2, -- System.Scalar_Values |
| RE_IS_Is4, -- System.Scalar_Values |
| RE_IS_Is8, -- System.Scalar_Values |
| RE_IS_Is16, -- System.Scalar_Values |
| RE_IS_Iu1, -- System.Scalar_Values |
| RE_IS_Iu2, -- System.Scalar_Values |
| RE_IS_Iu4, -- System.Scalar_Values |
| RE_IS_Iu8, -- System.Scalar_Values |
| RE_IS_Iu16, -- System.Scalar_Values |
| RE_IS_Isf, -- System.Scalar_Values |
| RE_IS_Ifl, -- System.Scalar_Values |
| RE_IS_Ilf, -- System.Scalar_Values |
| RE_IS_Ill, -- System.Scalar_Values |
| |
| RE_Mark_Id, -- System.Secondary_Stack |
| RE_SS_Allocate, -- System.Secondary_Stack |
| RE_SS_Pool, -- System.Secondary_Stack |
| RE_SS_Mark, -- System.Secondary_Stack |
| RE_SS_Release, -- System.Secondary_Stack |
| RE_SS_Stack, -- System.Secondary_Stack |
| |
| RE_Shared_Var_Lock, -- System.Shared_Storage |
| RE_Shared_Var_Unlock, -- System.Shared_Storage |
| RE_Shared_Var_Procs, -- System.Shared_Storage |
| |
| RE_Abort_Undefer_Direct, -- System.Standard_Library |
| RE_Exception_Data_Ptr, -- System.Standard_Library |
| |
| RE_Integer_Address, -- System.Storage_Elements |
| RE_Storage_Array, -- System.Storage_Elements |
| RE_Storage_Count, -- System.Storage_Elements |
| RE_Storage_Offset, -- System.Storage_Elements |
| RE_To_Address, -- System.Storage_Elements |
| |
| RE_Allocate_Any, -- System.Storage_Pools |
| RE_Deallocate_Any, -- System.Storage_Pools |
| RE_Root_Storage_Pool, -- System.Storage_Pools |
| RE_Root_Storage_Pool_Ptr, -- System.Storage_Pools |
| |
| RE_Adjust_Controlled_Dereference, -- System.Storage_Pools.Subpools |
| RE_Allocate_Any_Controlled, -- System.Storage_Pools.Subpools |
| RE_Deallocate_Any_Controlled, -- System.Storage_Pools.Subpools |
| RE_Header_Size_With_Padding, -- System.Storage_Pools.Subpools |
| RE_Root_Storage_Pool_With_Subpools, -- System.Storage_Pools.Subpools |
| RE_Root_Subpool, -- System.Storage_Pools.Subpools |
| RE_Subpool_Handle, -- System.Storage_Pools.Subpools |
| |
| RE_I_AD, -- System.Stream_Attributes |
| RE_I_AS, -- System.Stream_Attributes |
| RE_I_B, -- System.Stream_Attributes |
| RE_I_C, -- System.Stream_Attributes |
| RE_I_F, -- System.Stream_Attributes |
| RE_I_I, -- System.Stream_Attributes |
| RE_I_I24, -- System.Stream_Attributes |
| RE_I_LF, -- System.Stream_Attributes |
| RE_I_LI, -- System.Stream_Attributes |
| RE_I_LLF, -- System.Stream_Attributes |
| RE_I_LLI, -- System.Stream_Attributes |
| RE_I_LLLI, -- System.Stream_Attributes |
| RE_I_LLLU, -- System.Stream_Attributes |
| RE_I_LLU, -- System.Stream_Attributes |
| RE_I_LU, -- System.Stream_Attributes |
| RE_I_SF, -- System.Stream_Attributes |
| RE_I_SI, -- System.Stream_Attributes |
| RE_I_SSI, -- System.Stream_Attributes |
| RE_I_SSU, -- System.Stream_Attributes |
| RE_I_SU, -- System.Stream_Attributes |
| RE_I_U, -- System.Stream_Attributes |
| RE_I_U24, -- System.Stream_Attributes |
| RE_I_WC, -- System.Stream_Attributes |
| RE_I_WWC, -- System.Stream_Attributes |
| |
| RE_W_AD, -- System.Stream_Attributes |
| RE_W_AS, -- System.Stream_Attributes |
| RE_W_B, -- System.Stream_Attributes |
| RE_W_C, -- System.Stream_Attributes |
| RE_W_F, -- System.Stream_Attributes |
| RE_W_I, -- System.Stream_Attributes |
| RE_W_I24, -- System.Stream_Attributes |
| RE_W_LF, -- System.Stream_Attributes |
| RE_W_LI, -- System.Stream_Attributes |
| RE_W_LLF, -- System.Stream_Attributes |
| RE_W_LLI, -- System.Stream_Attributes |
| RE_W_LLLI, -- System.Stream_Attributes |
| RE_W_LLLU, -- System.Stream_Attributes |
| RE_W_LLU, -- System.Stream_Attributes |
| RE_W_LU, -- System.Stream_Attributes |
| RE_W_SF, -- System.Stream_Attributes |
| RE_W_SI, -- System.Stream_Attributes |
| RE_W_SSI, -- System.Stream_Attributes |
| RE_W_SSU, -- System.Stream_Attributes |
| RE_W_SU, -- System.Stream_Attributes |
| RE_W_U, -- System.Stream_Attributes |
| RE_W_U24, -- System.Stream_Attributes |
| RE_W_WC, -- System.Stream_Attributes |
| RE_W_WWC, -- System.Stream_Attributes |
| |
| RE_Storage_Array_Input, -- System.Strings.Stream_Ops |
| RE_Storage_Array_Input_Blk_IO, -- System.Strings.Stream_Ops |
| RE_Storage_Array_Output, -- System.Strings.Stream_Ops |
| RE_Storage_Array_Output_Blk_IO, -- System.Strings.Stream_Ops |
| RE_Storage_Array_Read, -- System.Strings.Stream_Ops |
| RE_Storage_Array_Read_Blk_IO, -- System.Strings.Stream_Ops |
| RE_Storage_Array_Write, -- System.Strings.Stream_Ops |
| RE_Storage_Array_Write_Blk_IO, -- System.Strings.Stream_Ops |
| |
| RE_Stream_Element_Array_Input, -- System.Strings.Stream_Ops |
| RE_Stream_Element_Array_Input_Blk_IO, -- System.Strings.Stream_Ops |
| RE_Stream_Element_Array_Output, -- System.Strings.Stream_Ops |
| RE_Stream_Element_Array_Output_Blk_IO, -- System.Strings.Stream_Ops |
| RE_Stream_Element_Array_Read, -- System.Strings.Stream_Ops |
| RE_Stream_Element_Array_Read_Blk_IO, -- System.Strings.Stream_Ops |
| RE_Stream_Element_Array_Write, -- System.Strings.Stream_Ops |
| RE_Stream_Element_Array_Write_Blk_IO, -- System.Strings.Stream_Ops |
| |
| RE_String_Input, -- System.Strings.Stream_Ops |
| RE_String_Input_Blk_IO, -- System.Strings.Stream_Ops |
| RE_String_Input_Tag, -- System.Strings.Stream_Ops |
| RE_String_Output, -- System.Strings.Stream_Ops |
| RE_String_Output_Blk_IO, -- System.Strings.Stream_Ops |
| RE_String_Read, -- System.Strings.Stream_Ops |
| RE_String_Read_Blk_IO, -- System.Strings.Stream_Ops |
| RE_String_Write, -- System.Strings.Stream_Ops |
| RE_String_Write_Blk_IO, -- System.Strings.Stream_Ops |
| |
| RE_Wide_String_Input, -- System.Strings.Stream_Ops |
| RE_Wide_String_Input_Blk_IO, -- System.Strings.Stream_Ops |
| RE_Wide_String_Output, -- System.Strings.Stream_Ops |
| RE_Wide_String_Output_Blk_IO, -- System.Strings.Stream_Ops |
| RE_Wide_String_Read, -- System.Strings.Stream_Ops |
| RE_Wide_String_Read_Blk_IO, -- System.Strings.Stream_Ops |
| RE_Wide_String_Write, -- System.Strings.Stream_Ops |
| RE_Wide_String_Write_Blk_IO, -- System.Strings.Stream_Ops |
| |
| RE_Wide_Wide_String_Input, -- System.Strings.Stream_Ops |
| RE_Wide_Wide_String_Input_Blk_IO, -- System.Strings.Stream_Ops |
| RE_Wide_Wide_String_Output, -- System.Strings.Stream_Ops |
| RE_Wide_Wide_String_Output_Blk_IO, -- System.Strings.Stream_Ops |
| RE_Wide_Wide_String_Read, -- System.Strings.Stream_Ops |
| RE_Wide_Wide_String_Read_Blk_IO, -- System.Strings.Stream_Ops |
| RE_Wide_Wide_String_Write, -- System.Strings.Stream_Ops |
| RE_Wide_Wide_String_Write_Blk_IO, -- System.Strings.Stream_Ops |
| |
| RE_Task_Info_Type, -- System.Task_Info |
| RE_Unspecified_Task_Info, -- System.Task_Info |
| |
| RE_Task_Procedure_Access, -- System.Tasking |
| RO_ST_Number_Of_Entries, -- System.Tasking |
| |
| RO_ST_Task_Id, -- System.Tasking |
| RO_ST_Null_Task, -- System.Tasking |
| |
| RE_Call_Modes, -- System.Tasking |
| RE_Simple_Call, -- System.Tasking |
| RE_Conditional_Call, -- System.Tasking |
| RE_Asynchronous_Call, -- System.Tasking |
| |
| RE_Ada_Task_Control_Block, -- System.Tasking |
| |
| RE_Task_List, -- System.Tasking |
| |
| RE_Accept_List, -- System.Tasking |
| RE_No_Rendezvous, -- System.Tasking |
| RE_Null_Task_Entry, -- System.Tasking |
| RE_Select_Index, -- System.Tasking |
| RE_Else_Mode, -- System.Tasking |
| RE_Simple_Mode, -- System.Tasking |
| RE_Terminate_Mode, -- System.Tasking |
| RE_Delay_Mode, -- System.Tasking |
| RE_Entry_Index, -- System.Tasking |
| RE_Task_Entry_Index, -- System.Tasking |
| RE_Self, -- System.Tasking |
| |
| RE_Unspecified_Priority, -- System.Tasking |
| |
| RE_Activation_Chain, -- System.Tasking |
| RE_Activation_Chain_Access, -- System.Tasking |
| RE_Storage_Size, -- System.Tasking |
| |
| RE_Unspecified_CPU, -- System.Tasking |
| |
| RE_Dispatching_Domain_Access, -- System.Tasking |
| |
| RE_Abort_Defer, -- System.Soft_Links |
| RE_Abort_Undefer, -- System.Soft_Links |
| RE_Complete_Master, -- System.Soft_Links |
| RE_Current_Master, -- System.Soft_Links |
| RE_Dummy_Communication_Block, -- System.Soft_Links |
| RE_Enter_Master, -- System.Soft_Links |
| RE_Get_Current_Excep, -- System.Soft_Links |
| RE_Get_GNAT_Exception, -- System.Soft_Links |
| RE_Save_Library_Occurrence, -- System.Soft_Links |
| |
| RE_Bits_1, -- System.Unsigned_Types |
| RE_Bits_2, -- System.Unsigned_Types |
| RE_Bits_4, -- System.Unsigned_Types |
| RE_Long_Long_Unsigned, -- System.Unsigned_Types |
| RE_Long_Long_Long_Unsigned, -- System.Unsigned_Types |
| RE_Packed_Byte, -- System.Unsigned_Types |
| RE_Packed_Bytes1, -- System.Unsigned_Types |
| RE_Packed_Bytes2, -- System.Unsigned_Types |
| RE_Packed_Bytes4, -- System.Unsigned_Types |
| RE_Rev_Packed_Bytes1, -- System.Unsigned_Types |
| RE_Rev_Packed_Bytes2, -- System.Unsigned_Types |
| RE_Rev_Packed_Bytes4, -- System.Unsigned_Types |
| RE_Unsigned, -- System.Unsigned_Types |
| |
| RE_Value_Boolean, -- System.Val_Bool |
| |
| RE_Value_Character, -- System.Val_Char |
| |
| RE_Value_Decimal32, -- System_Val_Decimal_32 |
| |
| RE_Value_Decimal64, -- System_Val_Decimal_64 |
| |
| RE_Value_Decimal128, -- System_Val_Decimal_128 |
| |
| RE_Value_Enumeration_8, -- System.Val_Enum_8 |
| RE_Value_Enumeration_16, -- System.Val_Enum_16 |
| RE_Value_Enumeration_32, -- System.Val_Enum_32 |
| |
| RE_Valid_Value_Enumeration_8, -- System.Val_Enum_8 |
| RE_Valid_Value_Enumeration_16, -- System.Val_Enum_16 |
| RE_Valid_Value_Enumeration_32, -- System.Val_Enum_32 |
| |
| RE_Value_Fixed32, -- System_Val_Fixed_32 |
| |
| RE_Value_Fixed64, -- System_Val_Fixed_64 |
| |
| RE_Value_Fixed128, -- System_Val_Fixed_128 |
| |
| RE_Value_Float, -- System_Val_Flt |
| |
| RE_Value_Integer, -- System.Val_Int |
| |
| RE_Value_Long_Float, -- System_Val_LFlt |
| |
| RE_Value_Long_Long_Float, -- System_Val_LLF |
| |
| RE_Value_Long_Long_Integer, -- System.Val_LLI |
| |
| RE_Value_Long_Long_Long_Integer, -- System.Val_LLLI |
| |
| RE_Value_Long_Long_Unsigned, -- System.Val_LLU |
| |
| RE_Value_Long_Long_Long_Unsigned, -- System.Val_LLLU |
| |
| RE_Value_Unsigned, -- System.Val_Uns |
| |
| RE_Value_Wide_Character, -- System.Val_WChar |
| RE_Value_Wide_Wide_Character, -- System.Val_WChar |
| |
| RE_Version_String, -- System.Version_Control |
| RE_Get_Version_String, -- System.Version_Control |
| |
| RE_String_To_Wide_String, -- System.WCh_StW |
| RE_String_To_Wide_Wide_String, -- System.WCh_StW |
| |
| RE_Wide_String_To_String, -- System.WCh_WtS |
| RE_Wide_Wide_String_To_String, -- System.WCh_WtS |
| |
| RE_Wide_Width_Character, -- System.WWd_Char |
| RE_Wide_Wide_Width_Character, -- System.WWd_Char |
| |
| RE_Wide_Wide_Width_Enumeration_8, -- System.WWd_Enum |
| RE_Wide_Wide_Width_Enumeration_16, -- System.WWd_Enum |
| RE_Wide_Wide_Width_Enumeration_32, -- System.WWd_Enum |
| |
| RE_Wide_Width_Enumeration_8, -- System.WWd_Enum |
| RE_Wide_Width_Enumeration_16, -- System.WWd_Enum |
| RE_Wide_Width_Enumeration_32, -- System.WWd_Enum |
| |
| RE_Wide_Wide_Width_Wide_Character, -- System.WWd_Wchar |
| RE_Wide_Wide_Width_Wide_Wide_Char, -- System.WWd_Wchar |
| RE_Wide_Width_Wide_Character, -- System.WWd_Wchar |
| RE_Wide_Width_Wide_Wide_Character, -- System.WWd_Wchar |
| |
| RE_Width_Boolean, -- System.Wid_Bool |
| |
| RE_Width_Character, -- System.Wid_Char |
| |
| RE_Width_Enumeration_8, -- System.Wid_Enum |
| RE_Width_Enumeration_16, -- System.Wid_Enum |
| RE_Width_Enumeration_32, -- System.Wid_Enum |
| |
| RE_Width_Integer, -- System.Wid_Int |
| |
| RE_Width_Long_Long_Integer, -- System.Wid_LLI |
| |
| RE_Width_Long_Long_Long_Integer, -- System.Wid_LLLI |
| |
| RE_Width_Long_Long_Unsigned, -- System.Wid_LLU |
| |
| RE_Width_Long_Long_Long_Unsigned, -- System.Wid_LLLU |
| |
| RE_Width_Unsigned, -- System.Wid_Uns |
| |
| RE_Width_Wide_Character, -- System.Wid_WChar |
| RE_Width_Wide_Wide_Character, -- System.Wid_WChar |
| |
| RE_Dispatching_Domain, -- Multiprocessors.Dispatching_Domains |
| |
| RE_Protected_Entry_Body_Array, -- Tasking.Protected_Objects.Entries |
| RE_Protected_Entry_Queue_Max_Array, -- Tasking.Protected_Objects.Entries |
| RE_Protection_Entries, -- Tasking.Protected_Objects.Entries |
| RE_Protection_Entries_Access, -- Tasking.Protected_Objects.Entries |
| RE_Initialize_Protection_Entries, -- Tasking.Protected_Objects.Entries |
| RE_Lock_Entries, -- Tasking.Protected_Objects.Entries |
| RE_Unlock_Entries, -- Tasking.Protected_Objects.Entries |
| RO_PE_Get_Ceiling, -- Tasking.Protected_Objects.Entries |
| RO_PE_Number_Of_Entries, -- Tasking.Protected_Objects.Entries |
| RO_PE_Set_Ceiling, -- Tasking.Protected_Objects.Entries |
| |
| RE_Communication_Block, -- Protected_Objects.Operations |
| RE_Protected_Entry_Call, -- Protected_Objects.Operations |
| RE_Service_Entries, -- Protected_Objects.Operations |
| RE_Cancel_Protected_Entry_Call, -- Protected_Objects.Operations |
| RE_Enqueued, -- Protected_Objects.Operations |
| RE_Cancelled, -- Protected_Objects.Operations |
| RE_Complete_Entry_Body, -- Protected_Objects.Operations |
| RE_Exceptional_Complete_Entry_Body, -- Protected_Objects.Operations |
| RE_Requeue_Protected_Entry, -- Protected_Objects.Operations |
| RE_Requeue_Task_To_Protected_Entry, -- Protected_Objects.Operations |
| RE_Protected_Count, -- Protected_Objects.Operations |
| RE_Protected_Entry_Caller, -- Protected_Objects.Operations |
| RE_Timed_Protected_Entry_Call, -- Protected_Objects.Operations |
| |
| RE_Protection_Entry, -- Protected_Objects.Single_Entry |
| RE_Initialize_Protection_Entry, -- Protected_Objects.Single_Entry |
| RE_Lock_Entry, -- Protected_Objects.Single_Entry |
| RE_Unlock_Entry, -- Protected_Objects.Single_Entry |
| RE_Protected_Single_Entry_Call, -- Protected_Objects.Single_Entry |
| RE_Service_Entry, -- Protected_Objects.Single_Entry |
| RE_Exceptional_Complete_Single_Entry_Body, |
| RE_Protected_Count_Entry, -- Protected_Objects.Single_Entry |
| RE_Protected_Single_Entry_Caller, -- Protected_Objects.Single_Entry |
| |
| RE_Protected_Entry_Index, -- System.Tasking.Protected_Objects |
| RE_Entry_Body, -- System.Tasking.Protected_Objects |
| RE_Protection, -- System.Tasking.Protected_Objects |
| RE_Initialize_Protection, -- System.Tasking.Protected_Objects |
| RE_Finalize_Protection, -- System.Tasking.Protected_Objects |
| RE_Lock, -- System.Tasking.Protected_Objects |
| RE_Lock_Read_Only, -- System.Tasking.Protected_Objects |
| RE_Get_Ceiling, -- System.Tasking.Protected_Objects |
| RE_Set_Ceiling, -- System.Tasking.Protected_Objects |
| RE_Unlock, -- System.Tasking.Protected_Objects |
| |
| RE_Delay_Block, -- System.Tasking.Async_Delays |
| RE_Timed_Out, -- System.Tasking.Async_Delays |
| RE_Cancel_Async_Delay, -- System.Tasking.Async_Delays |
| RE_Enqueue_Duration, -- System.Tasking.Async_Delays |
| RE_Enqueue_Calendar, -- System.Tasking.Async_Delays |
| RE_Enqueue_RT, -- System.Tasking.Async_Delays |
| |
| RE_Accept_Call, -- System.Tasking.Rendezvous |
| RE_Accept_Trivial, -- System.Tasking.Rendezvous |
| RE_Callable, -- System.Tasking.Rendezvous |
| RE_Call_Simple, -- System.Tasking.Rendezvous |
| RE_Requeue_Task_Entry, -- System.Tasking.Rendezvous |
| RE_Requeue_Protected_To_Task_Entry, -- System.Tasking.Rendezvous |
| RE_Cancel_Task_Entry_Call, -- System.Tasking.Rendezvous |
| RE_Complete_Rendezvous, -- System.Tasking.Rendezvous |
| RE_Task_Count, -- System.Tasking.Rendezvous |
| RE_Exceptional_Complete_Rendezvous, -- System.Tasking.Rendezvous |
| RE_Selective_Wait, -- System.Tasking.Rendezvous |
| RE_Task_Entry_Call, -- System.Tasking.Rendezvous |
| RE_Task_Entry_Caller, -- System.Tasking.Rendezvous |
| RE_Timed_Task_Entry_Call, -- System.Tasking.Rendezvous |
| RE_Timed_Selective_Wait, -- System.Tasking.Rendezvous |
| |
| RE_Activate_Restricted_Tasks, -- System.Tasking.Restricted.Stages |
| RE_Complete_Restricted_Activation, -- System.Tasking.Restricted.Stages |
| RE_Create_Restricted_Task, -- System.Tasking.Restricted.Stages |
| RE_Create_Restricted_Task_Sequential, -- System.Tasking.Restricted.Stages |
| RE_Complete_Restricted_Task, -- System.Tasking.Restricted.Stages |
| RE_Restricted_Terminated, -- System.Tasking.Restricted.Stages |
| |
| RE_Abort_Tasks, -- System.Tasking.Stages |
| RE_Activate_Tasks, -- System.Tasking.Stages |
| RE_Complete_Activation, -- System.Tasking.Stages |
| RE_Create_Task, -- System.Tasking.Stages |
| RE_Complete_Task, -- System.Tasking.Stages |
| RE_Free_Task, -- System.Tasking.Stages |
| RE_Expunge_Unactivated_Tasks, -- System.Tasking.Stages |
| RE_Move_Activation_Chain, -- System.Tasking_Stages |
| RE_Terminated); -- System.Tasking.Stages |
| |
| -- The following declarations build a table that is indexed by the RTE |
| -- function to determine the unit containing the given entity. This table |
| -- is sorted in order of package names. |
| |
| RE_Unit_Table : constant array (RE_Id) of RTU_Id := ( |
| |
| RE_Null => RTU_Null, |
| |
| RO_CA_Clock_Time => Ada_Calendar, |
| RO_CA_Time => Ada_Calendar, |
| |
| RO_CA_Delay_For => Ada_Calendar_Delays, |
| RO_CA_Delay_Until => Ada_Calendar_Delays, |
| RO_CA_To_Duration => Ada_Calendar_Delays, |
| |
| RE_Yield => Ada_Dispatching, |
| |
| RE_Set_Deadline => Ada_Dispatching_EDF, |
| |
| RE_Code_Loc => Ada_Exceptions, |
| RE_Exception_Id => Ada_Exceptions, |
| RE_Exception_Identity => Ada_Exceptions, |
| RE_Exception_Information => Ada_Exceptions, |
| RE_Exception_Message => Ada_Exceptions, |
| RE_Exception_Name_Simple => Ada_Exceptions, |
| RE_Exception_Occurrence => Ada_Exceptions, |
| RE_Exception_Occurrence_Access => Ada_Exceptions, |
| RE_Null_Id => Ada_Exceptions, |
| RE_Null_Occurrence => Ada_Exceptions, |
| RE_Poll => Ada_Exceptions, |
| RE_Raise_Exception => Ada_Exceptions, |
| RE_Raise_Exception_Always => Ada_Exceptions, |
| RE_Raise_From_Controlled_Operation => Ada_Exceptions, |
| RE_Reraise_Occurrence => Ada_Exceptions, |
| RE_Reraise_Occurrence_Always => Ada_Exceptions, |
| RE_Reraise_Occurrence_No_Defer => Ada_Exceptions, |
| RE_Save_Occurrence => Ada_Exceptions, |
| RE_Triggered_By_Abort => Ada_Exceptions, |
| |
| RE_Interrupt_ID => Ada_Interrupts, |
| RE_Is_Reserved => Ada_Interrupts, |
| RE_Is_Attached => Ada_Interrupts, |
| RE_Current_Handler => Ada_Interrupts, |
| RE_Attach_Handler => Ada_Interrupts, |
| RE_Exchange_Handler => Ada_Interrupts, |
| RE_Detach_Handler => Ada_Interrupts, |
| RE_Reference => Ada_Interrupts, |
| |
| RE_Names => Ada_Interrupts_Names, |
| |
| RE_Clock => Ada_Real_Time, |
| RE_Clock_Time => Ada_Real_Time, |
| RE_Time_Span => Ada_Real_Time, |
| RE_Time_Span_Zero => Ada_Real_Time, |
| RO_RT_Time => Ada_Real_Time, |
| |
| RO_RT_Delay_Until => Ada_Real_Time_Delays, |
| RO_RT_To_Duration => Ada_Real_Time_Delays, |
| |
| RE_Set_Handler => Ada_Real_Time_Timing_Events, |
| RE_Timing_Event => Ada_Real_Time_Timing_Events, |
| |
| RE_Root_Stream_Type => Ada_Streams, |
| RE_Stream_Element => Ada_Streams, |
| RE_Stream_Element_Array => Ada_Streams, |
| RE_Stream_Element_Offset => Ada_Streams, |
| |
| RE_Stream_Access => Ada_Streams_Stream_IO, |
| |
| RO_SU_Super_String => Ada_Strings_Superbounded, |
| |
| RO_WI_Super_String => Ada_Strings_Wide_Superbounded, |
| |
| RO_WW_Super_String => Ada_Strings_Wide_Wide_Superbounded, |
| |
| RE_Unbounded_String => Ada_Strings_Unbounded, |
| |
| RE_Root_Buffer_Type => Ada_Strings_Text_Buffers, |
| RE_Put_UTF_8 => Ada_Strings_Text_Buffers, |
| RE_Wide_Wide_Put => Ada_Strings_Text_Buffers, |
| |
| RE_Buffer_Type => Ada_Strings_Text_Buffers_Unbounded, |
| RE_Get => Ada_Strings_Text_Buffers_Unbounded, |
| RE_Wide_Get => Ada_Strings_Text_Buffers_Unbounded, |
| RE_Wide_Wide_Get => Ada_Strings_Text_Buffers_Unbounded, |
| |
| RE_Wait_For_Release => Ada_Synchronous_Barriers, |
| |
| RE_Suspend_Until_True => Ada_Synchronous_Task_Control, |
| RE_Suspension_Object => Ada_Synchronous_Task_Control, |
| |
| RE_Access_Level => Ada_Tags, |
| RE_Alignment => Ada_Tags, |
| RE_Address_Array => Ada_Tags, |
| RE_Addr_Ptr => Ada_Tags, |
| RE_Base_Address => Ada_Tags, |
| RE_Check_Interface_Conversion => Ada_Tags, |
| RE_Check_TSD => Ada_Tags, |
| RE_Cstring_Ptr => Ada_Tags, |
| RE_CW_Membership => Ada_Tags, |
| RE_Descendant_Tag => Ada_Tags, |
| RE_Dispatch_Table => Ada_Tags, |
| RE_Dispatch_Table_Wrapper => Ada_Tags, |
| RE_Displace => Ada_Tags, |
| RE_DT => Ada_Tags, |
| RE_DT_Offset_To_Top_Offset => Ada_Tags, |
| RE_DT_Predef_Prims_Offset => Ada_Tags, |
| RE_DT_Typeinfo_Ptr_Size => Ada_Tags, |
| RE_External_Tag => Ada_Tags, |
| RO_TA_External_Tag => Ada_Tags, |
| RE_Get_Access_Level => Ada_Tags, |
| RE_Get_Alignment => Ada_Tags, |
| RE_Get_Entry_Index => Ada_Tags, |
| RE_Get_Offset_Index => Ada_Tags, |
| RE_Get_Prim_Op_Kind => Ada_Tags, |
| RE_Get_Tagged_Kind => Ada_Tags, |
| RE_HT_Link => Ada_Tags, |
| RE_Idepth => Ada_Tags, |
| RE_Interfaces_Array => Ada_Tags, |
| RE_Interfaces_Table => Ada_Tags, |
| RE_Interface_Data => Ada_Tags, |
| RE_Interface_Data_Element => Ada_Tags, |
| RE_Interface_Tag => Ada_Tags, |
| RE_Is_Abstract => Ada_Tags, |
| RE_IW_Membership => Ada_Tags, |
| RE_Max_Predef_Prims => Ada_Tags, |
| RE_Needs_Finalization => Ada_Tags, |
| RE_No_Dispatch_Table_Wrapper => Ada_Tags, |
| RE_No_Tag => Ada_Tags, |
| RE_NDT_Prims_Ptr => Ada_Tags, |
| RE_NDT_TSD => Ada_Tags, |
| RE_Num_Prims => Ada_Tags, |
| RE_Object_Specific_Data => Ada_Tags, |
| RE_Offset_To_Top => Ada_Tags, |
| RE_Offset_To_Top_Ptr => Ada_Tags, |
| RE_Offset_To_Top_Function_Ptr => Ada_Tags, |
| RE_OSD_Table => Ada_Tags, |
| RE_OSD_Num_Prims => Ada_Tags, |
| RE_POK_Function => Ada_Tags, |
| RE_POK_Procedure => Ada_Tags, |
| RE_POK_Protected_Entry => Ada_Tags, |
| RE_POK_Protected_Function => Ada_Tags, |
| RE_POK_Protected_Procedure => Ada_Tags, |
| RE_POK_Task_Entry => Ada_Tags, |
| RE_POK_Task_Function => Ada_Tags, |
| RE_POK_Task_Procedure => Ada_Tags, |
| RE_Predef_Prims => Ada_Tags, |
| RE_Predef_Prims_Table_Ptr => Ada_Tags, |
| RE_Prim_Op_Kind => Ada_Tags, |
| RE_Prim_Ptr => Ada_Tags, |
| RE_Prims_Ptr => Ada_Tags, |
| RE_Primary_DT => Ada_Tags, |
| RE_Signature => Ada_Tags, |
| RE_SSD => Ada_Tags, |
| RE_TSD => Ada_Tags, |
| RE_Type_Specific_Data => Ada_Tags, |
| RE_Register_Interface_Offset => Ada_Tags, |
| RE_Register_Tag => Ada_Tags, |
| RE_Register_TSD => Ada_Tags, |
| RE_Transportable => Ada_Tags, |
| RE_Secondary_DT => Ada_Tags, |
| RE_Secondary_Tag => Ada_Tags, |
| RE_Select_Specific_Data => Ada_Tags, |
| RE_Set_Entry_Index => Ada_Tags, |
| RE_Set_Dynamic_Offset_To_Top => Ada_Tags, |
| RE_Set_Prim_Op_Kind => Ada_Tags, |
| RE_Size_Func => Ada_Tags, |
| RE_Size_Ptr => Ada_Tags, |
| RE_Tag => Ada_Tags, |
| RE_Tag_Error => Ada_Tags, |
| RE_Tag_Kind => Ada_Tags, |
| RE_Tag_Ptr => Ada_Tags, |
| RE_Tag_Table => Ada_Tags, |
| RE_Tags_Table => Ada_Tags, |
| RE_Tagged_Kind => Ada_Tags, |
| RE_Type_Specific_Data_Ptr => Ada_Tags, |
| RE_TK_Abstract_Limited_Tagged => Ada_Tags, |
| RE_TK_Abstract_Tagged => Ada_Tags, |
| RE_TK_Limited_Tagged => Ada_Tags, |
| RE_TK_Protected => Ada_Tags, |
| RE_TK_Tagged => Ada_Tags, |
| RE_TK_Task => Ada_Tags, |
| RE_Unregister_Tag => Ada_Tags, |
| RE_Wide_Wide_Expanded_Name => Ada_Tags, |
| |
| RE_Set_Specific_Handler => Ada_Task_Termination, |
| RE_Specific_Handler => Ada_Task_Termination, |
| |
| RE_Abort_Task => Ada_Task_Identification, |
| RE_Current_Task => Ada_Task_Identification, |
| RO_AT_Task_Id => Ada_Task_Identification, |
| RE_Tasking_State => Ada_Task_Identification, |
| |
| RE_Decimal_IO => Ada_Text_IO, |
| RE_Fixed_IO => Ada_Text_IO, |
| |
| RO_WT_Decimal_IO => Ada_Wide_Text_IO, |
| RO_WT_Fixed_IO => Ada_Wide_Text_IO, |
| |
| RO_WW_Decimal_IO => Ada_Wide_Wide_Text_IO, |
| RO_WW_Fixed_IO => Ada_Wide_Wide_Text_IO, |
| |
| RE_Stream_T => CUDA_Driver_Types, |
| |
| RE_Fatbin_Wrapper => CUDA_Internal, |
| RE_Launch_Kernel => CUDA_Internal, |
| RE_Pop_Call_Configuration => CUDA_Internal, |
| RE_Push_Call_Configuration => CUDA_Internal, |
| RE_Register_Fat_Binary => CUDA_Internal, |
| RE_Register_Fat_Binary_End => CUDA_Internal, |
| RE_Register_Function => CUDA_Internal, |
| |
| RE_Dim3 => CUDA_Vector_Types, |
| |
| RE_Integer_8 => Interfaces, |
| RE_Integer_16 => Interfaces, |
| RE_Integer_32 => Interfaces, |
| RE_Integer_64 => Interfaces, |
| RE_Integer_128 => Interfaces, |
| RE_Unsigned_8 => Interfaces, |
| RE_Unsigned_16 => Interfaces, |
| RE_Unsigned_32 => Interfaces, |
| RE_Unsigned_64 => Interfaces, |
| RE_Unsigned_128 => Interfaces, |
| |
| RO_IC_Unsigned => Interfaces_C, |
| |
| RE_Chars_Ptr => Interfaces_C_Strings, |
| RE_New_Char_Array => Interfaces_C_Strings, |
| |
| RE_Address => System, |
| RE_Any_Priority => System, |
| RE_Bit_Order => System, |
| RE_Default_Priority => System, |
| RE_High_Order_First => System, |
| RE_Interrupt_Priority => System, |
| RE_Lib_Stop => System, |
| RE_Low_Order_First => System, |
| RE_Max_Base_Digits => System, |
| RE_Max_Priority => System, |
| RE_Null_Address => System, |
| RE_Priority => System, |
| |
| RE_Address_Image => System_Address_Image, |
| |
| RE_Add_With_Ovflo_Check64 => System_Arith_64, |
| RE_Double_Divide64 => System_Arith_64, |
| RE_Multiply_With_Ovflo_Check64 => System_Arith_64, |
| RE_Scaled_Divide64 => System_Arith_64, |
| RE_Subtract_With_Ovflo_Check64 => System_Arith_64, |
| |
| RE_Add_With_Ovflo_Check128 => System_Arith_128, |
| RE_Double_Divide128 => System_Arith_128, |
| RE_Multiply_With_Ovflo_Check128 => System_Arith_128, |
| RE_Subtract_With_Ovflo_Check128 => System_Arith_128, |
| RE_Scaled_Divide128 => System_Arith_128, |
| |
| RE_Create_AST_Handler => System_AST_Handling, |
| |
| RE_Assert_Failure => System_Assertions, |
| RE_Raise_Assert_Failure => System_Assertions, |
| |
| RE_Lock_Free_Read_8 => System_Atomic_Primitives, |
| RE_Lock_Free_Read_16 => System_Atomic_Primitives, |
| RE_Lock_Free_Read_32 => System_Atomic_Primitives, |
| RE_Lock_Free_Read_64 => System_Atomic_Primitives, |
| RE_Lock_Free_Try_Write_8 => System_Atomic_Primitives, |
| RE_Lock_Free_Try_Write_16 => System_Atomic_Primitives, |
| RE_Lock_Free_Try_Write_32 => System_Atomic_Primitives, |
| RE_Lock_Free_Try_Write_64 => System_Atomic_Primitives, |
| RE_Uint8 => System_Atomic_Primitives, |
| RE_Uint16 => System_Atomic_Primitives, |
| RE_Uint32 => System_Atomic_Primitives, |
| RE_Uint64 => System_Atomic_Primitives, |
| |
| RE_Test_And_Set_Flag => System_Atomic_Operations_Test_And_Set, |
| RE_Atomic_Test_And_Set => System_Atomic_Operations_Test_And_Set, |
| |
| RE_AST_Handler => System_Aux_DEC, |
| RE_Import_Address => System_Aux_DEC, |
| RE_Import_Value => System_Aux_DEC, |
| RE_No_AST_Handler => System_Aux_DEC, |
| RE_Type_Class => System_Aux_DEC, |
| RE_Type_Class_Enumeration => System_Aux_DEC, |
| RE_Type_Class_Integer => System_Aux_DEC, |
| RE_Type_Class_Fixed_Point => System_Aux_DEC, |
| RE_Type_Class_Floating_Point => System_Aux_DEC, |
| RE_Type_Class_Array => System_Aux_DEC, |
| RE_Type_Class_Record => System_Aux_DEC, |
| RE_Type_Class_Access => System_Aux_DEC, |
| RE_Type_Class_Task => System_Aux_DEC, |
| RE_Type_Class_Address => System_Aux_DEC, |
| |
| RE_Big_Abs => System_Bignums, |
| RE_Big_Add => System_Bignums, |
| RE_Big_Div => System_Bignums, |
| RE_Big_Exp => System_Bignums, |
| RE_Big_Mod => System_Bignums, |
| RE_Big_Mul => System_Bignums, |
| RE_Big_Neg => System_Bignums, |
| RE_Big_Rem => System_Bignums, |
| RE_Big_Sub => System_Bignums, |
| |
| RE_Big_EQ => System_Bignums, |
| RE_Big_GE => System_Bignums, |
| RE_Big_GT => System_Bignums, |
| RE_Big_LE => System_Bignums, |
| RE_Big_LT => System_Bignums, |
| RE_Big_NE => System_Bignums, |
| |
| RE_Bignum => System_Bignums, |
| RE_Bignum_In_LLI_Range => System_Bignums, |
| RE_To_Bignum => System_Bignums, |
| RE_From_Bignum => System_Bignums, |
| |
| RE_Val_2 => System_Bitfields, |
| RE_Copy_Bitfield => System_Bitfields, |
| RE_Fast_Copy_Bitfield => System_Bitfields, |
| |
| RE_Bit_And => System_Bit_Ops, |
| RE_Bit_Eq => System_Bit_Ops, |
| RE_Bit_Not => System_Bit_Ops, |
| RE_Bit_Or => System_Bit_Ops, |
| RE_Bit_Xor => System_Bit_Ops, |
| |
| RE_Checked_Pool => System_Checked_Pools, |
| |
| RE_Vector_Not => System_Boolean_Array_Operations, |
| RE_Vector_And => System_Boolean_Array_Operations, |
| RE_Vector_Or => System_Boolean_Array_Operations, |
| RE_Vector_Nand => System_Boolean_Array_Operations, |
| RE_Vector_Nor => System_Boolean_Array_Operations, |
| RE_Vector_Nxor => System_Boolean_Array_Operations, |
| RE_Vector_Xor => System_Boolean_Array_Operations, |
| |
| RE_Bswap_16 => System_Byte_Swapping, |
| RE_Bswap_32 => System_Byte_Swapping, |
| RE_Bswap_64 => System_Byte_Swapping, |
| RE_Bswap_128 => System_Byte_Swapping, |
| |
| RE_Compare_Array_S8 => System_Compare_Array_Signed_8, |
| RE_Compare_Array_S8_Unaligned => System_Compare_Array_Signed_8, |
| |
| RE_Compare_Array_S16 => System_Compare_Array_Signed_16, |
| |
| RE_Compare_Array_S32 => System_Compare_Array_Signed_32, |
| |
| RE_Compare_Array_S64 => System_Compare_Array_Signed_64, |
| |
| RE_Compare_Array_S128 => System_Compare_Array_Signed_128, |
| |
| RE_Compare_Array_U8 => System_Compare_Array_Unsigned_8, |
| RE_Compare_Array_U8_Unaligned => System_Compare_Array_Unsigned_8, |
| |
| RE_Compare_Array_U16 => System_Compare_Array_Unsigned_16, |
| |
| RE_Compare_Array_U32 => System_Compare_Array_Unsigned_32, |
| |
| RE_Compare_Array_U64 => System_Compare_Array_Unsigned_64, |
| |
| RE_Compare_Array_U128 => System_Compare_Array_Unsigned_128, |
| |
| RE_Str_Concat_2 => System_Concat_2, |
| RE_Str_Concat_3 => System_Concat_3, |
| RE_Str_Concat_4 => System_Concat_4, |
| RE_Str_Concat_5 => System_Concat_5, |
| RE_Str_Concat_6 => System_Concat_6, |
| RE_Str_Concat_7 => System_Concat_7, |
| RE_Str_Concat_8 => System_Concat_8, |
| RE_Str_Concat_9 => System_Concat_9, |
| |
| RE_Str_Concat_Bounds_2 => System_Concat_2, |
| RE_Str_Concat_Bounds_3 => System_Concat_3, |
| RE_Str_Concat_Bounds_4 => System_Concat_4, |
| RE_Str_Concat_Bounds_5 => System_Concat_5, |
| RE_Str_Concat_Bounds_6 => System_Concat_6, |
| RE_Str_Concat_Bounds_7 => System_Concat_7, |
| RE_Str_Concat_Bounds_8 => System_Concat_8, |
| RE_Str_Concat_Bounds_9 => System_Concat_9, |
| |
| RE_Get_Active_Partition_Id => System_DSA_Services, |
| RE_Get_Local_Partition_Id => System_DSA_Services, |
| RE_Get_Passive_Partition_Id => System_DSA_Services, |
| |
| RE_Any_Container_Ptr => System_DSA_Types, |
| |
| RE_Check_Standard_Allocator => System_Elaboration_Allocators, |
| |
| RE_Register_Exception => System_Exception_Table, |
| |
| RE_Local_Raise => System_Exceptions_Debug, |
| |
| RE_Exn_Integer => System_Exn_Int, |
| |
| RE_Exn_Float => System_Exn_Flt, |
| |
| RE_Exn_Long_Float => System_Exn_LFlt, |
| |
| RE_Exn_Long_Long_Float => System_Exn_LLF, |
| |
| RE_Exn_Long_Long_Integer => System_Exn_LLI, |
| |
| RE_Exn_Long_Long_Long_Integer => System_Exn_LLLI, |
| |
| RE_Exp_Integer => System_Exp_Int, |
| |
| RE_Exp_Long_Long_Integer => System_Exp_LLI, |
| |
| RE_Exp_Long_Long_Long_Integer => System_Exp_LLLI, |
| |
| RE_Exp_Long_Long_Unsigned => System_Exp_LLU, |
| |
| RE_Exp_Long_Long_Long_Unsigned => System_Exp_LLLU, |
| |
| RE_Exp_Modular => System_Exp_Mod, |
| |
| RE_Exp_Unsigned => System_Exp_Uns, |
| |
| RE_Attr_Float => System_Fat_Flt, |
| |
| RE_Attr_Long_Float => System_Fat_LFlt, |
| |
| RE_Attr_Long_Long_Float => System_Fat_LLF, |
| |
| RE_Attr_VAX_D_Float => System_Fat_VAX_D_Float, |
| RE_Fat_VAX_D => System_Fat_VAX_D_Float, |
| |
| RE_Attr_VAX_F_Float => System_Fat_VAX_F_Float, |
| RE_Fat_VAX_F => System_Fat_VAX_F_Float, |
| |
| RE_Attr_VAX_G_Float => System_Fat_VAX_G_Float, |
| RE_Fat_VAX_G => System_Fat_VAX_G_Float, |
| |
| RE_Add_Offset_To_Address => System_Finalization_Masters, |
| RE_Attach => System_Finalization_Masters, |
| RE_Base_Pool => System_Finalization_Masters, |
| RE_Finalization_Master => System_Finalization_Masters, |
| RE_Finalization_Master_Ptr => System_Finalization_Masters, |
| RE_Set_Base_Pool => System_Finalization_Masters, |
| RE_Set_Finalize_Address => System_Finalization_Masters, |
| RE_Set_Is_Heterogeneous => System_Finalization_Masters, |
| |
| RE_Root_Controlled => System_Finalization_Root, |
| RE_Root_Controlled_Ptr => System_Finalization_Root, |
| |
| RE_Fore_Decimal32 => System_Fore_Decimal_32, |
| |
| RE_Fore_Decimal64 => System_Fore_Decimal_64, |
| |
| RE_Fore_Decimal128 => System_Fore_Decimal_128, |
| |
| RE_Fore_Fixed => System_Fore_Real, |
| |
| RE_Fore_Fixed32 => System_Fore_Fixed_32, |
| |
| RE_Fore_Fixed64 => System_Fore_Fixed_64, |
| |
| RE_Fore_Fixed128 => System_Fore_Fixed_128, |
| |
| RE_Image_Boolean => System_Img_Bool, |
| |
| RE_Image_Character => System_Img_Char, |
| RE_Image_Character_05 => System_Img_Char, |
| |
| RE_Image_Decimal32 => System_Img_Decimal_32, |
| |
| RE_Image_Decimal64 => System_Img_Decimal_64, |
| |
| RE_Image_Decimal128 => System_Img_Decimal_128, |
| |
| RE_Image_Enumeration_8 => System_Img_Enum_8, |
| |
| RE_Image_Enumeration_16 => System_Img_Enum_16, |
| |
| RE_Image_Enumeration_32 => System_Img_Enum_32, |
| |
| RE_Image_Float => System_Img_Flt, |
| |
| RE_Image_Integer => System_Img_Int, |
| |
| RE_Image_Long_Float => System_Img_LFlt, |
| |
| RE_Image_Long_Long_Float => System_Img_LLF, |
| |
| RE_Image_Long_Long_Integer => System_Img_LLI, |
| |
| RE_Image_Long_Long_Long_Integer => System_Img_LLLI, |
| |
| RE_Image_Long_Long_Unsigned => System_Img_LLU, |
| |
| RE_Image_Long_Long_Long_Unsigned => System_Img_LLLU, |
| |
| RE_Image_Fixed => System_Img_LFlt, |
| |
| RE_Image_Fixed32 => System_Img_Fixed_32, |
| |
| RE_Image_Fixed64 => System_Img_Fixed_64, |
| |
| RE_Image_Fixed128 => System_Img_Fixed_128, |
| |
| RE_Image_Unsigned => System_Img_Uns, |
| |
| RE_Image_Wide_Character => System_Img_WChar, |
| RE_Image_Wide_Wide_Character => System_Img_WChar, |
| |
| RE_Bind_Interrupt_To_Entry => System_Interrupts, |
| RE_Default_Interrupt_Priority => System_Interrupts, |
| RE_Dynamic_Interrupt_Protection => System_Interrupts, |
| RE_Install_Handlers => System_Interrupts, |
| RE_Install_Restricted_Handlers => System_Interrupts, |
| RE_Register_Interrupt_Handler => System_Interrupts, |
| RE_Static_Interrupt_Protection => System_Interrupts, |
| RE_System_Interrupt_Id => System_Interrupts, |
| |
| RE_Expon_LLF => System_Long_Long_Float_Expon, |
| |
| RE_Asm_Insn => System_Machine_Code, |
| RE_Asm_Input_Operand => System_Machine_Code, |
| RE_Asm_Output_Operand => System_Machine_Code, |
| |
| RE_Mantissa_Value => System_Mantissa, |
| |
| RE_Free => System_Memory, |
| |
| RE_CPU_Range => System_Multiprocessors, |
| |
| RE_Bits_03 => System_Pack_03, |
| RE_Get_03 => System_Pack_03, |
| RE_Set_03 => System_Pack_03, |
| |
| RE_Bits_05 => System_Pack_05, |
| RE_Get_05 => System_Pack_05, |
| RE_Set_05 => System_Pack_05, |
| |
| RE_Bits_06 => System_Pack_06, |
| RE_Get_06 => System_Pack_06, |
| RE_GetU_06 => System_Pack_06, |
| RE_Set_06 => System_Pack_06, |
| RE_SetU_06 => System_Pack_06, |
| |
| RE_Bits_07 => System_Pack_07, |
| RE_Get_07 => System_Pack_07, |
| RE_Set_07 => System_Pack_07, |
| |
| RE_Bits_09 => System_Pack_09, |
| RE_Get_09 => System_Pack_09, |
| RE_Set_09 => System_Pack_09, |
| |
| RE_Bits_10 => System_Pack_10, |
| RE_Get_10 => System_Pack_10, |
| RE_GetU_10 => System_Pack_10, |
| RE_Set_10 => System_Pack_10, |
| RE_SetU_10 => System_Pack_10, |
| |
| RE_Bits_11 => System_Pack_11, |
| RE_Get_11 => System_Pack_11, |
| RE_Set_11 => System_Pack_11, |
| |
| RE_Bits_12 => System_Pack_12, |
| RE_Get_12 => System_Pack_12, |
| RE_GetU_12 => System_Pack_12, |
| RE_Set_12 => System_Pack_12, |
| RE_SetU_12 => System_Pack_12, |
| |
| RE_Bits_13 => System_Pack_13, |
| RE_Get_13 => System_Pack_13, |
| RE_Set_13 => System_Pack_13, |
| |
| RE_Bits_14 => System_Pack_14, |
| RE_Get_14 => System_Pack_14, |
| RE_GetU_14 => System_Pack_14, |
| RE_Set_14 => System_Pack_14, |
| RE_SetU_14 => System_Pack_14, |
| |
| RE_Bits_15 => System_Pack_15, |
| RE_Get_15 => System_Pack_15, |
| RE_Set_15 => System_Pack_15, |
| |
| RE_Bits_17 => System_Pack_17, |
| RE_Get_17 => System_Pack_17, |
| RE_Set_17 => System_Pack_17, |
| |
| RE_Bits_18 => System_Pack_18, |
| RE_Get_18 => System_Pack_18, |
| RE_GetU_18 => System_Pack_18, |
| RE_Set_18 => System_Pack_18, |
| RE_SetU_18 => System_Pack_18, |
| |
| RE_Bits_19 => System_Pack_19, |
| RE_Get_19 => System_Pack_19, |
| RE_Set_19 => System_Pack_19, |
| |
| RE_Bits_20 => System_Pack_20, |
| RE_Get_20 => System_Pack_20, |
| RE_GetU_20 => System_Pack_20, |
| RE_Set_20 => System_Pack_20, |
| RE_SetU_20 => System_Pack_20, |
| |
| RE_Bits_21 => System_Pack_21, |
| RE_Get_21 => System_Pack_21, |
| RE_Set_21 => System_Pack_21, |
| |
| RE_Bits_22 => System_Pack_22, |
| RE_Get_22 => System_Pack_22, |
| RE_GetU_22 => System_Pack_22, |
| RE_Set_22 => System_Pack_22, |
| RE_SetU_22 => System_Pack_22, |
| |
| RE_Bits_23 => System_Pack_23, |
| RE_Get_23 => System_Pack_23, |
| RE_S
|