-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvera.a
2624 lines (1751 loc) · 47.1 KB
/
vera.a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
@c -*-texinfo-*-
@c This is part of the GNU edition of V.E.R.A.
@c Copyright (C) 1993/2006 Oliver Heidelbach
@c See the file vera.texi for copying conditions.
@c
@c Syntax:
@c ACRONYM
@c Expansion[ (Reference)][, "Style"]
@c Additional explanations are included in [square brackets]
@table @asis
@item A2DP
Advanced Audio Distribution Profile (Bluetooth)
@item A4C
Authentication, Authorization, Accounting, Auditing and Charging
@item AA
Auto Answer (MODEM)
@item AAA
Authentication, Authorization and Accounting [= Triple A]
@item AAAAA
Anonym Association Against Acronym Abuse (slang)
@item AAAI
American Association for Artificial Intelligence (org., AI, USA)
@item AAAS
American Association for the Advancement of Science (org., USA)
@item AAC
Advanced Audio Coding (IIS, MPEG, AT&T, Dolby, Sony, ...)
@item AAC
Authorization and Access Control (IETF)
@item AACLC
Advanced Audio Coding - Low Complexity [profile] (AAC), "AAC-LC"
@item AACLTP
Advanced Audio Coding - Long Term Production (AAC), "AAC-LTP"
@item AAD
Authorized AutoCAD Dealer (carCAD, CAD)
@item AADN
American Association of DOMAIN Names (org., USA, Internet)
@item AAE
Allgemeine AnschaltErlaubnis (DTAG)
@item AAF
Advanced Authoring Format (MS)
@item AAIM
Association for Applied Interactive Multimedia (org.)
@item AAIS
Allied command europe ACCIS Implementation Strategy (ACCIS, NATO, mil.)
@item AAL
ATM Adaption Layer (ATM)
@item AAL
Authentication Assurance Level (CC)
@item AAM
Automatic Acoustic Management (ATA, HDD)
@item AAMOF
As A Matter Of Fact (slang, Usenet, IRC)
@item AAMSI
American Association for Medical Systems Informatics (org., USA)
@item AAP
Address Allocation Protocol (Multicast)
@item AAP
Applications Access Point
@item AAP
Association of American Publishers (org., USA)
@item AARP
Appletalk Address Resolution Protocol (Apple, AppleTalk)
@item AASP
ASCII Asynchronous Support Package (ASCII)
@item AAT
Average Access Time
@item AATP
Authorized Academic Training Program (MS, MCSD)
@item AAUI
Apple Attachment Unit Interface (Apple, AppleTalk)
@item ABA
American Bankers Association (org., USA, banking)
@item ABAP4
Advanced Business Application Programming/4 (SAP, R/3, 4GL), "ABAP/4"
@item ABATS
Automatic Bit Access Test System (BIT)
@item ABBS
Apple Bulletin Board System (Apple)
@item ABC
Atanasoff-Berry-Computer
@item ABCD
Altavista Business Card Directory (WWW)
@item ABEL
Advanced Boolean Expression Language
@item ABEND
ABnormal END (Netware)
@item ABI
Aktionsbuendnis fuer Barrierefreie Informaionstechnik Org., Germany
@item ABI
Application Binary Interface (POE)
@item ABIOS
Advanced Basic Input Output System (IBM)
@item ABIST
Automatic Built In Self Test (IBM)
@item ABM
Asynchronous Balanced Mode
@item ABNF
Augmented Backus-Naur Form (BNF, RFC 733/2234)
@item ABP
Address Book Provider (Internet)
@item ABR
Available Bit Rate (ATM, CBR, VBR, UBR, QOS, BIT)
@item ABS
Apple Business Systems (Apple)
@item ABUI
Association of Banyan Users International (org., Banyan, VINES, user group, predecessor, ENA)
@item AC
Access Concentrator (PPPoE, ADSL)
@item AC
Access Control (Token Ring, ...)
@item AC
Amiga Club (org., user group, Amiga)
@item AC
Area Code
@item AC
Automatic Computer
@item AC3
[digital] Audio Compression - 3 (Dolby, DVD, Digital audio), "AC-3"
@item AC97
Audio CODEC 97 (Intel, CODEC)
@item ACA
Asynchronous Communications Adapter
@item ACAD
AutoCAD (carCAD, CAD)
@item ACAS
Application Control Architecture Services (DEC)
@item ACAU
Automatic Calling and Answering Unit
@item ACC
Adaptive Cruise Control (car)
@item ACC
Area Communication Controller (MODACOM)
@item ACC
Atari Competence Center
@item ACCIS
Automated Command and Control Information System (mil., USA)
@item ACCM
Asynchronous Character Control Map (PPP)
@item ACCS
Army Command and Control System (mil., USA)
@item ACCU
Association of C and C++ Users (org., UK)
@item ACD
Automated Call Distribution (CTI)
@item ACDC
Alternating Current/Direct Current, "AC/DC"
@item ACDI
Asynchronous Communications Device Interface (IBM, CM/2)
@item ACE
Access Control Entry (AD)
@item ACE
Actuator Control Electronics (Airbus, A380)
@item ACE
Adobe Color Engine (Adobe)
@item ACE
Advanced Computing Environment (manufacturer)
@item ACE
ASCII Compatible Encoding (ASCII, Internet, DOMAIN)
@item ACE
Autonomous Computer Engine (WD)
@item ACES
APEC Cooperation for Earthquake Simulation (org., Australia, China, Japan, USA)
@item ACF
Access Control Field
@item ACF
Advanced Communications Function (IBM)
@item ACF
Apple Communications Framework (Apple)
@item ACFC
Address and Control Field Compression (PPP)
@item ACFNCP
Advanced Communication Function / Network Control Program (IBM, ACF), "ACF/NCP"
@item ACFTCAM
Advanced Communication Function / Telecommunications Access Method (IBM, ACF), "ACF/TCAM"
@item ACFVTAM
Advanced Communication Function / Virtual Telecommunications Access Method (IBM, ACF), "ACF/VTAM"
@item ACH
Association for Computers and the Humanities (org., USA)
@item ACIA
Associacio Catalana d'Intelligencia Artificial (org., Spain, AI)
@item ACIA
Asynchronous Communications Interface Adapter
@item ACID
Analysis Console for Intrusion Databases (IDS, CERT)
@item ACID
Atomicity - Consistency - Isolation - Durability (DB, TP)
@item ACIS
American Committee for Interoperable Systems (org., USA)
@item ACL
[MS] Access Compatibility Layer (MS, DB)
@item ACL
Access Control List (DCE, DFS, NDS, AD)
@item ACL
Advanced CMOS Logic
@item ACL
Agent Control Language (Agents)
@item ACL
Association for Computational Linguistics (org., USA)
@item ACL
Asynchronous ConnectionLess (HCI, Bluetooth)
@item ACL
Autodesk Campus License (cardesk)
@item ACLF
Access Control List Facility (DCE)
@item ACM
Address Complete Message (ATM)
@item ACM
Association for Computing Machinery (org., USA)
@item ACMC
Australian CEFACT Management Committee (Australia, org., CEFACT)
@item ACME
A Company that Makes Everything (slang)
@item ACMS
Application Control Management System
@item ACNS
Application and Content Networking System (Cisco)
@item ACO
AMP Communications Outlet
@item ACOPS
Automatic CPU Overheating Prevention System (GigaByte), "A-COPS"
@item ACOT
Apple Classrooms Of Tomorrow (Apple)
@item ACP
Active Configuration Profile (MODEM)
@item ACP
Auxillary Control Process
@item ACPA
Audio Capture and Playback Adapter (IBM)
@item ACPC
Apple Communications Protocol Card (Apple)
@item ACPI
Advanced Configuration and Power Interface (Intel, MS, Toshiba, ACPI, OSPM, BIOS)
@item ACPICA
Advanced Configuration and Power Interface - Component Architecture (ACPI, Intel), "ACPI-CA"
@item ACPT
Automated Corporate Planning Tool
@item ACR
Adobe Camera Raw
@item ACR
Anonymous Call Rejection
@item ACR
Artificial Content Recognition (Puresight, WWW, AI)
@item ACR
Attenuation to Crosstalk Ratio (cable)
@item ACR
Automatic Call Recording
@item ACRONYM
Abbreviated Coded Rendition Of Name Yielding Meaning (slang)
@item ACRONYM
Abbreviation by CROping Names that Yield Meaning (slang)
@item ACS
Access Control System (DISA)
@item ACS
Advanced Communications System
@item ACS
Advanced Console Server (Cyclades)
@item ACS
Alternate Character Set
@item ACS
Architekten, Computer, Systeme (fair)
@item ACS
Asynchronous Communication Server
@item ACS
Australian Computer Science
@item ACS
Australian Computer Society (org., Australia)
@item ACSE
Association Control Service Element (OSI, ISO, DIS 8649)
@item ACSI
Advanced/Atari Computer System Interface (Atari)
@item ACSMIB
ATM Circuit Steering Management Information Base (ATM, MIB), "ACS-MIB"
@item ACSNET
Academic Computing Services NETwork
@item ACSS
Aural Cascading Style Sheets (CSS, HTML, WWW)
@item ACT
Architecture Characterization Template (DISA)
@item ACTA
America's Carriers Telecommunications Association (USA)
@item ACTEF
ACcess TEchnologies Forum (org.)
@item ACTP
Adobe Certified Training Provider (Adobe)
@item ACTPU
ACTivate Physical Unit (SNA)
@item ACTS
Advanced Communications Technologies and Services (Europe, ACTS)
@item ACU
Automatic Calling Unit
@item ACU
Automatic Client Update (Novell, Netware)
@item ACUTA
Association of College and University Telecommunication Administrators (org., USA)
@item ACUTE
Airbus Cockpit Universal Thrust Emulator (Airbus, A380)
@item AD
Active Directory (MS, Windows, AD, DS)
@item AD
Analog-to-Digital (D/A), "A/D"
@item AD
Authorized Distributor (DEC)
@item AD
Autonomous DOMAIN
@item ADA
Automatic Data Acquisitions
@item ADAPSO
Association of Data Processing Service Organisation (org., USA)
@item ADAPT
Architecture Design, Analysis, and Planning Tool
@item ADATP
Allied DATa processing Publication (mil., USA)
@item ADB
A DeBugger (Unix)
@item ADB
Apple Desktop Bus (Apple)
@item ADBS
Advanced Data Broadcasting System (DirecPC)
@item ADC
Adaptive Data Compression (MODEM)
@item ADC
Analog to Digital Converter
@item ADC
Apple Display Connector (Apple)
@item ADC
Apple Distribution Center (Apple)
@item ADC
Automatic Data Capture
@item ADCCP
Advanced Data Communications Control Procedure (ANSI)
@item ADD
Adapter Device Driver (OS/2)
@item ADD
AGP Digital Display [adapter] (AGP)
@item ADDC
Automatic Data Direction Control (RS-485)
@item ADDDC
Automatic Direct Distance Dialing System
@item ADE
Application Development Environment
@item ADE
Aufforderung zur DatenEingabe (BTX)
@item ADEPT
Administrative Data Entry for Processing Transmission (mil., USA)
@item ADES
Automatic Digital Encoding System
@item ADEW
Andrew Development Environment Workbench (ATK, Unix)
@item ADF
Access control Decision Function (mil., USA)
@item ADF
Automatic Document Feeder
@item ADG
[RAID] Advanced Data Guarding (RAID, HP)
@item ADI
Autocad Device Interface (CAD, carCAD)
@item ADI
AUTODIN-to-DISN Interface (AUTODIN, DISN, mil., USA)
@item ADIMM
Asynchronous Dual Inline Memory Module (DIMM, IC, Leadtek)
@item ADIRU
Air Data Inertial Reference Unit (Airbus, A380, Honeywell)
@item ADL
[international conference on the] Advances in Digital Libraries (IEEE)
@item ADL
Adventure Description Language
@item ADLC
Asynchronous Data Link Control
@item ADM
Add-Drop-Multiplexer
@item ADMA
Area Division Multiple Access (mobile-systems)
@item ADMD
ADministration Management DOMAIN (X.400)
@item ADMF
ADMinistration Function (UMTS)
@item ADMS
Access Device Messaging Specification (banking, Visa)
@item ADMT
Active Directory Migration Tool (MS, AD)
@item ADO
ActiveX Data Objects (ASP, ODBC, MS, IIS)
@item ADODB
ActiveX Data Objects DataBase [library] (ADO, PHP), "ADOdb"
@item ADONIS
ADvanced On-Screen Information System, "AdonIS"
@item ADP
Administrative Data Processing
@item ADP
Advanced Data Processing
@item ADP
Automatic Data Processing (ADP)
@item ADPCM
Adaptive Delta Pulse Code Modulation
@item ADPE
Automatic Data Processing Equipment (ADP)
@item ADPLO
Automated Data Processing Liaison Office (ADP)
@item ADPS
Automatic Data Processing System (ADP)
@item ADPT
Automated Data Processing/Telecommunications (ADP), "ADP/T"
@item ADR
Advanced Digital Recording (Streamer, Philips, OnStream)
@item ADR
Automated Distance Regulation (car)
@item ADS
Advanced Digital System
@item ADS
Application Development System
@item ADS
Automatic Distribution System
@item ADS
Automatic Documenting System (LAN)
@item ADS
Auxiliary Data System
@item ADSA
Advanced Driver Software Architecture (C-Media, audio)
@item ADSI
Active Directory Service Interface (MS, COM, AD)
@item ADSIA
Allied Data Systems Interoperability Agency (org., NATO, mil.)
@item ADSL
Asymmetric Digital Subscriber Line [technology] (BELLCORE, AT&T, DSL, ADSL)
@item ADSL
Asymmetric Digital Subscriber Loop [modulation]
@item ADSP
Advanced Digital Signal Processor (DSP)
@item ADSP
Appletalk Data Stream Protocol (Apple, AppleTalk)
@item ADSR
Attack, Decay, Sustain, Release [generator] (VCA, audio)
@item ADSU
ATM Data Service Unit (ATM)
@item ADT
Abstract Data Type
@item ADT
Access Developer's Toolkit (MS, DB, Windows)
@item ADT
Application Data Type
@item ADT
Application Development Tools (IBM, AS/400)
@item ADT
Atlantic Daylight Time [-0300] (TZ, AST)
@item ADU
Automatic Dialing Unit
@item ADUA
Administrative Directory User Agent
@item ADV
Automatisierte DatenVerarbeitung
@item ADV
staatliche Akademie fuer DatenVerarbeitung (org., Uni Boeblingen, Germany)
@item ADVS
Automatisiertes DatenVerarbeitungsSystem
@item ADX
Automatic Data eXchange
@item AE
Apple Events (Apple)
@item AE
Application Entity / Environment / Execution / Engineering (APE)
@item AEA
American Electronics Association (org., USA)
@item AEA
Asynchroner EmulationsAdapter (IBM)
@item AEB
Analog Expansion Bus
@item AEC
Advanced Error Correction (CD)
@item AECBF
Acoustic Echo Cancellation / Beam Forming (audio), "AEC/BF"
@item AEF
Access control Enforcement Function
@item AEGIS
Advanced Electronic Guidance and Instrumentation System
@item AEI
Application Enabling Interface (IBM)
@item AEI
Automatic Equipment Identification
@item AEIMP
Apple Event Interprocess Messaging Protocol (Apple)
@item AEL
Asterisk Extension Language (VoIP)
@item AEM
Automatic Emulation Management (Brother)
@item AEOM
Apple Events Object Model (Apple)
@item AEPIA
Asociacion Espanola Para la Inteligencia Artificial (org., Spain, AI)
@item AERO
Authentic, Energetic, Reflective, Open (MS, Windows, Vista, GUI)
@item AES
Advanced Encryption Standard (cryptography)
@item AES
Application Environment Service / Specification (OSF)
@item AES
Automatic Emulation Switching (Lexmark)
@item AESCCMP
AES Counter mode CBC MAC Protocol (AES, CBC, MAC, cryptography, IEEE 802.11i, WLAN), "AES-CCMP"
@item AESEBU
Auto Engineering Society/European Broadcasting Union (Digital audio), "AES/EBU"
@item AETE
Apple Event Terminology Extension (Apple)
@item AETIC
Asociacion de empresas de Electronica, Tecnologias de la Informacion y teleComunicaciones de espana (org., Spain)
@item AEUT
Apple Event User Terminology (Apple)
@item AF
Anisotropic Filter
@item AF
Auxiliary carry Flag (assembler)
@item AFA
Association Fournisseur d'Access et service internet (org., ISP, France)
@item AFAIC
As Far As I'm Concerned (slang, Usenet, IRC)
@item AFAICR
As Far As I Can Recall (telecommunication, Usenet, IRC)
@item AFAICT
As Far As I Can Tell (telecommunication, Usenet, IRC)
@item AFAIK
As Far As I Know (slang, Usenet, IRC)
@item AFAIR
As Far As I Recall / Remember (slang, Usenet, IRC)
@item AFAMPE
[u.s.] Air Force Automated Message Processing Exchange (org., USA. mil.)
@item AFC
Alkaline Fuel Cell
@item AFC
AntiFerromagnetically Coupled [technology] (IBM, HDD)
@item AFC
Application Foundation Classes (MS, GUI, Java)
@item AFC
Automatic Font Change
@item AFCET
Association Francaise pour la Cybernetique Economique et Technique (org., France)
@item AFD
Automatic File Distribution
@item AFDX
Avionics Full DupleX switched ethernet system (Airbus, A380, ethernet)
@item AFE
Apple File Exchange (Apple)
@item AFEB
AFrican EDIFACT Board (org., EDIFACT), "AF/EB"
@item AFF
Antigen File Filtering (Sybari)
@item AFFS
Advanced Fringe Field Switching (LCD, IPS), "A-FFS"
@item AFH
Adaptive Frequency Hopping (Bluetooth)
@item AFI
Authority and Format Indicator (NSAP, IDP)
@item AFI
Authority Frame Identifier
@item AFII
Association for Font Information Interchange (org., USA)
@item AFIN
Air Force Information Network (network, USA, mil.)
@item AFIS
AutomatisiertesFingerabdruck-InformationsSystem (INPOL)
@item AFK
Away from Keyboard (slang, Usenet, IRC)
@item AFM
Atomic Force Microscopy [technology] (HDD, MEMS)
@item AFN
Advanced Fiber Network
@item AFNET
Air Force Network (network, USA, mil.)
@item AFP
Advanced Function Presentation (IBM)
@item AFP
Appletalk Filing Protocol (Apple, AppleTalk)
@item AFPA
Advanced Function Printing Architecture (IBM)
@item AFPDS
Advanced Function Printing Data Stream (IBM)
@item AFPL
Aladdin Free Public License
@item AFPL
Artifex Free Public License
@item AFR
Annualized Failure Rate (Maxtor, HDD)
@item AFS
Andrew File System (IBM, Unix)
@item AFT
Authenticated Firewall Traversal (IETF)
@item AFTP
Anonymous File Transfer Protocol (FTP)
@item AFUU
Association Francaise des Utilisateurs d'Unix (org., France, Unix)
@item AGA
Advanced Graphics Adapter
@item AGC
Automatic Gain Control (audio)
@item AGCH
Access Grant CHannel (GSM, CCCH, mobile-systems)
@item AGE
Adobe Graphics Engine (Adobe)
@item AGEP
ArbeitsGemeinschaft Elektronisches Publizieren [e.v.] (org., DTP), "AgEP"
@item AGF
Arbeitsgemeinschaft der GrossForschungseinrichtungen [deutschlands] (org.)
@item AGFMB
ArbeitsGemeinschaft Freier MailBoxen (org.)
@item AGI
Asterisk Gateway Interface (VoIP)
@item AGNS
AT&T Global Network Services (AT&T)
@item AGNULA
A GNU/Linux Audio distribution (GNU, Linux, Europe)
@item AGP
Advanced / Accelerated Graphics Port (Intel, MMX, AGP)
@item AGPS
Advanced / Assisted Global Positioning System (GPS), "A-GPS"
@item AH
[IP] Authentication Header (IPSEC, IPV6, RFC 1826, VPN)
@item AHB
Advanced High performance Bus (AMBA, ARM)
@item AHCI
Advanced Host Controller Interface (SATA)
@item AHFG
ATM-attached Host Functional Group (ATM, MPOA)
@item AHIMA
American Health Information Management Association (org., USA)
@item AHP
Analytical Hierachy Process
@item AHPCRC
Army High Performance Computing Research Center (org., USA, HPC)
@item AI
Adobe Illustrator (Adobe)
@item AI
Artificial Intelligence
@item AIA
Application Integration Architecture
@item AIAF
Artificial Intelligence AutoFocus (AI, Canon)
@item AIBO
Artificial Intelligence roBOt (Sony, AI)
@item AIC
[SRI] Artificial Intelligence Center (SRI, AI)
@item AIC
AIX windows Interface Composer (AIX, IBM)
@item AICA
Associazione Italiana per l'Informatica ed il Calcolo Automatico (org., Italy)
@item AID
Application IDentifier (APDU)
@item AID
Attention Interrupt Device [key] (IBM)
@item AID
AUTODIN Interface Device (AUTODIN, mil., USA)
@item AIDA
Aktuelle Informationen in Deutsch zum Amiga (AC, Amiga)
@item AIDAT
African Internet Development Action Team (org., Internet)
@item AIDS
Automatic Installation and Diagnostic Service
@item AIFF
Audio Interchange File Format
@item AIFS
Arbitrary InterFrame Space (MAC, PCF, IFS, WLAN)
@item AIGLX
Accelerated Indirect OpenGL extension for the X window system (GLX, X-Wondows, RedHat)
@item AII
Active Input Interface (UNI, PMD, FDDI)
@item AIIA
Associazione Italiana per l'Intelligenza Artificiale (org., Italy, AI)
@item AIIM
Association for Information and Image Management (org., USA)
@item AIK
Attestation Identity Key (TCPA)
@item AIM
Advanced Invar Mask (Display, ViewSonic)