~ubuntu-branches/ubuntu/utopic/vera/utopic

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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
@c -*-texinfo-*-
@c This is part of the GNU edition of V.E.R.A.
@c Copyright (C) 1993/2014 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 A4WP
Alliance for Wireless Power (org.), http://www.a4wp.org/

@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), http://www.aaai.org

@item AAAS
American Association for the Advancement of Science (org., USA), http://www.aaas.org

@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), http://www.domains.org

@item AAE
Allgemeine AnschaltErlaubnis (DTAG)

@item AAF
Advanced Authoring Format (MS), http://www.microsoft.com/aaf

@item AAIM
Association for Applied Interactive Multimedia (org.), http://www.aaim.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), http://www.aba.com

@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, http://www.wob11.de

@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), ftp://ftp.rfc-editor.org/in-notes/rfc2234.txt

@item ABP
Address Book Provider (Internet)

@item ABR
Available Bit Rate (ATM, CBR, VBR, UBR, QOS, BIT)

@item ABS
Albatron BIOS Security (BIOS)

@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), http://www.amiga-club.de

@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, ACL)

@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)

@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), http://ach.stg.brown.edu

@item ACIA
Associacio Catalana d'Intelligencia Artificial (org., Spain, AI), http://www.iiia.csic.es/acia/acia.html

@item ACIA
Asynchronous Communications Interface Adapter

@item ACID
Analysis Console for Intrusion Databases (IDS, CERT), http://www.cert.org/kb/acid

@item ACID
ANSI Creators in Demand (ANSI), "ACiD"

@item ACID
Atomicity - Consistency - Isolation - Durability (DB, TP)

@item ACIS
American Committee for Interoperable Systems (org., USA), http://www.sun.com/acis/facts.html

@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), http://www.cs.columbia.edu/~acl/home.html

@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), http://info.acm.org

@item ACMC
Australian CEFACT Management Committee (Australia, org., CEFACT)

@item ACMDSD
Architecture Centric Model Driven Software Development (MDSD), "AC-MDSD"

@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", http://www.gigabyte.com.tw/acops.html

@item ACOT
Apple Classrooms Of Tomorrow (Apple)

@item ACP
Active Configuration Profile (MODEM)

@item ACP
Analog Content Protection (WPE)

@item ACP
Auxillary Control Process

@item ACP
Average CPU Power (CPU, TDP)

@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), http://www.acs.org.au

@item ACS
Auto Configuration Server (ISP, DSL, CPE)

@item ACSAC
Annual Computer Security Applications Conference

@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
Application Compatibility Toolkit (MS, Windows, Vista)

@item ACT
Architecture Characterization Template (DISA)

@item ACTA
America's Carriers Telecommunications Association (USA)

@item ACTEF
ACcess TEchnologies Forum (org.), http://www.actef.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), http://www.acuta.org/homepage.html

@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 ADAC
Active Directory Administrative Center (AD)

@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 ADBA
Active Directory Based Activation (AD, KMS)

@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 ADDS
Active Directory Domain Services (AD), "AD DS"

@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 ADFS
Active Directory Federation Services (AD)

@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 ADK
Additional Decryption Key (PGP)

@item ADL
[international conference on the] Advances in Digital Libraries (IEEE)

@item ADL
Adventure Description Language

@item ADLC
Asynchronous Data Link Control

@item ADLDS
Active Directory Lightweight Directory Services (MS), "AD LDS"

@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 ADRT
Adaptive Document Recognition Technology (OCR, Abbyy)

@item ADS
Active Directory Services (MS)

@item ADS
Advanced Digital System

@item ADS
Application Development System

@item ADS
Automated Deployment Service (MS, RIS)

@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), http://www.adsl.com/

@item ADSL
Asymmetric Digital Subscriber Loop [modulation]

@item ADSP
Advanced Digital Signal Processor (DSP)

@item ADSP
Appletalk Data Stream Protocol (Apple, AppleTalk)

@item ADSP
Author Domain Signing Practices (DKIM), ftp://ftp.rfc-editor.org/in-notes/rfc5617.txt

@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), http://www.adv-boeblingen.de

@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), http://www.aeanet.org

@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), http://aepia.dsic.upv.es:1080

@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), http://www.aniel.es

@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), http://www.afa-france.com

@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), http://www.isc.rit.edu/~afii

@item AFIN
Air Force Information Network (network, USA, mil.)

@item AFIPS
American Federation of Information Processing Societies (org.)

@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), http://www.afuu.fr

@item AGA
Advanced Graphics Adapter

@item AGAST
Adventure Game Authoring SysTem

@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), http://www.agpforum.org

@item AGPS
Advanced / Assisted Global Positioning System (GPS), "A-GPS"

@item AH
[IP] Authentication Header (IPSEC, IPV6, RFC 1826, VPN), ftp://ftp.rfc-editor.org/in-notes/rfc1826.txt

@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), http://www.ahima.org

@item AHP
Analytical Hierachy Process

@item AHPCRC
Army High Performance Computing Research Center (org., USA, HPC), http://www.arc.umn.edu/html/ahpcrc.html

@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), http://www.world.sony.com/robot/top.html

@item AIC
[SRI] Artificial Intelligence Center (SRI, AI), http://www.ai.sri.com

@item AIC
AIX windows Interface Composer (AIX, IBM)

@item AICA
Associazione Italiana per l'Informatica ed il Calcolo Automatico (org., Italy), http://www.aicanet.it

@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), http://www.africa.com/pages/aidat

@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-Windows)

@item AII
Active Input Interface (UNI, PMD, FDDI)

@item AIIA
Associazione Italiana per l'Intelligenza Artificiale (org., Italy, AI), http://www.di.unito.it/aiia.html

@item AIIM
Association for Information and Image Management (org., USA), http://www.aiim.org

@item AIK
Attestation Identity Key (TCPA)

@item AIM
Advanced Invar Mask (Display, ViewSonic)

@item AIM
Alternate Input Method (OS/2)

@item AIM
AOL Instant Messenger [protocol] (AOL, IM)

@item AIM
Apple, IBM, Motorola [consortium] (Apple, IBM, Motorola, org.)

@item AIM
Association of Imaging Manufacturers (org.)

@item AIM
ATM / Ascend Inverse Multiplexing [protocol] (ATM)

@item AIM
Automatic Interface Management (Brother)

@item AIMD
Additive-Increase Multiplicative-Decrease (TCP)

@item AIMS
Apple Internet Mail Server (Apple)

@item AIMSRCF
Advanced Information Manager/Shared Resource Control Facility (Fujitsu), "AIM/SRCF"

@item AIN
Advanced Intelligent Network (IN)

@item AIN
Auto Insert Notification (CD-R)

@item AIO
Asynchronous Input/Output

@item AIP
Association of Internet Professionals (org., Internet), http://www.association.org

@item AIP
Associazione Informatici Professionisti (org., Italy), http://www.a-i-p.it

@item AIP
ATM Interface Processor (ATM)

@item AIR
Adobe Intergrated Runtime (Adobe)

@item AIR
Automatic Image Refinement (Canon), "A.I.R."

@item AIRTC
[international symposium on] Artificial Intelligence in Real-Time Control (IFAC, IFIP, IMACS, conference)

@item AIS
Account Information Security

@item AIS
Alarm Indication Signal (UNI, ATM, OAM, DS3/E3)

@item AIS
Application Information Service (MS, Windows, Vista)

@item AIS
Applied Information Sciences (manufacturer)

@item AIS
Applied Information Systems (manufacturer), http://www.ais.com

@item AIS
Arbeitgeber-Informations-Service (WWW), http://www.arbeitsamt.de

@item AIS
Automated Information System

@item AIS
Autonomous Intelligent System

@item AISB
Association of Imaging Service Bureaus (org.)

@item AISE
Alarm Indication Signal-External (UNI, ATM), "AIS-E"

@item AISIG
[south australian] Artificial Intelligence Special Interest Group (org., Australia, AI), http://www.cs.adelaide.edu.au/~peter/asig.html

@item AISM
Asia International Symposium on Mechatronics (Konferenz)

@item AISP
Association for Internet Service Providers (org., USA, ISP), http://www.aisp.org

@item AISP
Association of Information Systems Professionals (org., USA)

@item AISSO
Automated Information Systems Security Officer (mil., USA)

@item AIST
Agency of Industrial Science and Technology (org., Japan), http://www.aist.go.jp:80/index_e.html

@item AIT
Advanced Intelligent Tape (Sony, Streamer)

@item AIT
Angewandte InformationsTechnik [verlags gmbh] (manufacturer)

@item AITEC
[research institute for] Advanced Information TEChnology (org., Japan)

@item AITO
Association Internationale pour les Technologies Objets (org.), http://iamwww.unibe.ch/~www/www/ecoop/aito

@item AIUI
As I Understand It (slang, Usenet, IRC)

@item AIW
All In Wonder [graphic card] (ATI)

@item AIW
APPN Implementers Workshop (org., APPN)

@item AIX
Advanced Interactive eXecutive (IBM, Unix, OS)

@item AIXESA
Advanced Interactive eXecutive/Enterprise Systems Architecture (IBM, AIX), "AIX/ESA"

@item AJAX
Asynchronous Javascript And XML (XML, XHTML, CSS, XSLT)

@item AJBS
Association of Japanese Business Studies (org., Japan)

@item AK
Application Kit (NextStep, OpenStep, Apple, Rhapsody)

@item AKA
Also Known As

@item AKI
Arbeitsgemeinschaft der deutschen KI Institute (org., KI), http://www.cs.uni-bonn.de/~kinrw/aki.html

@item AKI
Authority Key Identifier (X509v3, RFC 3280)

@item AKID
Authority Key IDentifier (X509v3, RFC 3280)

@item AKNN
Arbeitskreis fuer Numerierung und Netzzusammenschaltung (org.), http://www.aknn.de

@item AL
Artificial Life

@item AL
Assembly Language

@item ALAC
Apple Lossless Audio CODEC (Apple, CODEC, audio)

@item ALAN
Audio Local Area Network (audio), "A-LAN"

@item ALAP
Appletalk Link Access Protocol (Apple, AppleTalk)

@item ALAP
As Late As Possible (slang, Usenet)

@item ALAS
Asociacion Latinoamericana de Seguridad (org.), http://www.alas-la.org

@item ALC
Adaptation Layer Controller (ATM)

@item ALC
Arithmetic and Logic Circuits (IC)

@item ALC
Automatic Level Control

@item ALDC
Adaptive Lossless Data Compression (IBM)

@item ALE
Address Lifetime Expectation (org., IETF, IP)

@item ALE
Application Link Enabling (R/3, SAP)

@item ALE
Atlanta Linux Enthusiasts (org., Linux, user group), http://www.ale.org

@item ALE
Atomic Layer Epitaxy (IC)

@item ALEC
Authorized Linux Education Center (Linux, Caldera)

@item ALF
Accelerator Library and Framework (IBM)

@item ALG
Application Level Gateway (Balabit)

@item ALGOL
ALGOrithmic Language

@item ALIWEB
Archie Like Indexing in the WEB (WWW)

@item ALK
Automatisierte LiegenschaftsKarte (ALTIS)

@item ALM
Application / Appware Loadable Module (Novell, Netware)

@item ALM
Application Lifecycle Management

@item ALM
Asynchronous Line Module

@item ALM
Asynchronous Line Multiplexer

@item ALOE
Apple Library for Object Embedding (Apple, OpenDoc)

@item ALP
Access Linux Platform (Linux, PDA, Palm)

@item ALP
Assembly Language Processor (IBM)

@item ALPA
Association de Lutte contre la Piraterie Audiovisuelle (org., France), http://www.alpa.asso.fr

@item ALR
Advanced Logic Research, inc (manufacturer), http://www.alr.com

@item ALS
Adjacent Link Station (IBM)

@item ALSA
Advanced Linux Sound Architecture (Linux, audio), http://www.alsa-project.org

@item ALSI
Associazione nazionale Laureati in Scienze dell'informazione e Informatica (org., Italy), http://www.litta.lv

@item ALTEL
Association of Long-distance TELephone companies (org., USA)

@item ALTERNIC
ALTERnative Network Information Center (Internet, USA), http://www.alternic.net

@item ALTPSM
ALTernating Phase Shift Mask [lithography]

@item ALTS
Association for Local Telecommunications Services (org., USA), http://www.alts.org

@item ALU
Arithmetic and Logic Unit (CPU)

@item AM
Active Matrix (LCD)

@item AM
Amplitude Modulation

@item AM
Asynchronous Mode

@item AMA
Automatic Message Accounting

@item AMACS
AMA Collection System (AMA)

@item AMAP
As Much As Possible (telecommunication, Usenet, IRC)

@item AMARC
AMA Recording Center (AMA)

@item AMASE
AMA Standard Entry (AMA)

@item AMAT
AMA Transmitter (AMA)

@item AMATPS
AMA TeleProcessing System (AMA)

@item AMB
Advanced Memory Buffer (IC, RAM, FB-DIMM)

@item AMBA
Advanced Microcontroller Bus Architecture (ARM, AMBA)

@item AMBAAXI
Advanced Microcontroller Bus Architecture -Advanced eXtensible Interface (AMBA), "AMBA AXI"

@item AMC
Adaptive Modulation and Coding (UMTS, HSDPA, mobile-systems)

@item AMCD
Active Matrix Color Display (AMD, LCD)

@item AMCD
Activity Monitoring Completion Detection

@item AMD
Active Matrix Display (LCD)

@item AMD
Advanced MicroDevices [inc.] (manufacturer), http://www.amd.com

@item AMD
AutoMounterDAEMON (Macintosh, Apple)

@item AME
Advanced Metal Evaporated [tape] (Seagate, Streamer, Sony)

@item AME
Advanced Modeling Extension (carCAD)

@item AMEL
Active Matrix Electro Luminescent (AMD, LCD)

@item AMF
Action Message Format (Macromedia, Flash)

@item AMH
Automated Material Handling

@item AMHS
Automated Message Handling System (MHS)

@item AMI
Alternate Mark Inversion [encoding] (ISDN, T1)

@item AMI
American Megatrends Incorporation (manufacturer), http://www.ami.com

@item AMI
ATM Management Interface (ForeRunner)

@item AMIA
American Medical Informatics Association (org., USA), http://www.amia.org

@item AMIA
Australian Medical Informatics Association (org., Australia)

@item AMIC
Apple Memory-mapped I/O Controller (Apple)

@item AMIC
Automotive Multimedia Interface Collaboration (USA, org.), "AMI-C"

@item AMIGADE
Amiga Digital Environment (Amiga), "AmigaDE"

@item AMIGOS
Advanced Mobile Integration in General Operating Systems, http://www.diku.dk/research-groups/distlab/amigos

@item AMIS
Adaptive Multimedia Information System (DAISY)

@item AMIS
Audio Message Interface Standard

@item AML
ACPI Machine Language (ACPI, ASL, BIOS)

@item AMLCD
Active Matrix Liquid Crystal Display (AMD, LCD)

@item AMMA
Advanced Memory Management Architecture

@item AMME
Automated Multi-Media Exchange

@item AMNET
Allgemeines Mailbox NETzwerk (BBS, network)

@item AMOK
A Modular Operating Kernel (OS, Cray)

@item AMOR
Amusing Misuse of Resources (Linux, KDE)

@item AMOS
Alpha Microsystems Operating System (OS)

@item AMP
Airwave Management Platform (Linux)

@item AMP
Asymmetric MultiProcessor [system] (SMP)

@item AMPE
Automated Message Processing Exchange

@item AMPS
Advanced Mobile Phone Service (mobile-systems, Motorola)

@item AMPSK
Amplitude Modulation with Phase Shift Keying, "AM/PSK"

@item AMR
Audio MODEM Riser [slot] (Intel)

@item AMS
Advanced Monitor System (OS, DEC, PDP 9, PDP 15)

@item AMS
American Mathematical Society (org., USA), http://e-math.ams.org

@item AMS
Andrew Mail / Message System (Unix)

@item AMS
Asymmetric Multiprocessing System

@item AMS
AUTODIN Mail Server (AUTODIN, mil., USA)

@item AMSDOS
AMStrad Disk Operating System (Amstrad, OS), "AMS-DOS"

@item AMT
Active Management Technology (Intel)

@item AMT
Active Matrix Technology (AMD, LDC)

@item AMT
Apple Media Toolkit (Apple)

@item AMTC
Advanced Mask Technology Center (org., EuropeVL, Infineon, AMD, ...)

@item AMTF
Average Modulation Transfer Function

@item AMTFT
Active Matrix Thin Film Transistor (AMD, LCD, TFT)

@item AMTPE
Apple Media Tool Programming Environment (Apple), "AMT PE"

@item AMWG
Architecture Methodology Working Group (org., DISA)

@item AN
Access Node

@item AN
Alternating Network

@item ANAIS
Architecture Not Allowed In Source (Linux, Debian, slang)

@item ANAT
Alternative Network Address Types

@item ANBU
ANlagenBUchhaltung

@item ANCS
AT&T Netware Connect Services (AT&T, Netware)

@item ANDF
Architecture Neutral Distribution Format (OSF)

@item ANFSCD
And Now For Something Completely Different (slang, Usenet, IRC)

@item ANHR
Access Node Hub Router (AN)

@item ANI
Automatic Number Identification

@item ANI
Automatische Netzwerk Installation

@item ANIEL
Asociacion Nacional de Industrias Electronicas y de teLecomunicaciones (org., Spain, AETIC, predecessor)

@item ANMA
Apple Network Managers Association (org., Apple), http://www.hsas.washington.edu/anma/anma.html

@item ANMP
Account Network Management Program

@item ANMP
Ad hoc Network Management Protocol

@item ANN
Artificial Neural Networks (NN)

@item ANO
Advanced Network Option (CA)

@item ANR
Access Node Router

@item ANS
Advanced Network & Services Inc. (IBM, MCI. Merit, NFSnet)

@item ANS
American National Standard (ANSI, ISO, USA)

@item ANSA
Advanced Networked Systems Architecture (ISA)

@item ANSI
American National Standard Institute (org., USA), http://www.ansi.org

@item ANSN
Advertised Neighbor Sequence Number (OLSR)

@item ANSPAG
Advanced Network System Performance and Application Group (RDN-CRC), http://www.anspag.monash.edu.au

@item ANT
Another Neat Tool (Java)

@item ANTC
Advanced Networking Test Center (org., USA, AMD, FDDI)

@item ANTLR
ANother Tool for Language Recognition, "Antlr"

@item ANTS
Advanced .NET Testing System (.NET, Red-Gate)

@item ANTS
AT&T Novell Telephone Services (AT&T, Novell), "A/NTS" 

@item ANUML
Australian National University Meta Language, "ANU ML" 

@item AO
Arvutikasutaja Oskustunnistus (Org, Estonia), http://www.ao.ee/

@item AOA
American Optometric Association (org., USA)

@item AOAC
Always On, Always Connected (NBS)

@item AOCD
Advice Of Charge, During the call

@item AOCE
Advice Of Charge, at the End of the call

@item AOCE
Apple Open Collaboration Environment (Apple)

@item AOCS
Attitude and Orbit Control System (ESA, Venus-Express)

@item AOD
Advanced Optical Disc (HD-DVD, predecessor)

@item AODI
Always On / Dynamic ISDN (ISDN, ACTEF), "AO/DI"

@item AOE
Application Operating Environment (AT&T)

@item AOI
Active Output Interface (UNI, PMD, FDDI)

@item AOL
Alert On LAN (LAN, Intel, IBM, BIOS), "AoL"

@item AOL
America OnLine (network, AOL), http://www.aol.com

@item AOP
Aspect Orientated Programming

@item AOS
[LambdaRouter] All Optical Switch (Lucent, LambdaXtreme)

@item AOS
Advanced Operating System (OS)

@item AOS
Algebraic Operating System (IBM)

@item AOSS
Airstation One-touch Secure System (WLAN)

@item AOTC
Australian Overseas Telecommunications Corporation (org., Australia)

@item AOU
Arithmetic Output Unit

@item AOW
Asia and Oceania Workshop (OSI)

@item AP
Access Point (WLAN)

@item AP
Access Provider (ETSI, ETSI 201 671)

@item AP
Application Processor

@item AP
Auto Precharge (SDRAM)

@item AP
Automatic Pagination

@item APA
Adaptive Packet Assembly

@item APA
All Points Addressable

@item APA
Arithmetic Processing Accelerator

@item APACI
APache AutoConf-style Interface (HTTP, Apache)

@item APAR
Authorized Program Analysis Report (IBM)

@item APB
Advanced Peripheral Bus (AMBA, ARM)

@item APC
American Power Conversion (manufacturer, UPS), http://www.apcc.com

@item APC
ArbeitsPlatz Computer (SNI)

@item APC
Association for Progressive Communications (org., network), http://www.apc.org

@item APCUG
Association of Personal Computer User Groups (org.), http://www.apcug.org

@item APD
Additional Product Documentation

@item APDA
Apple Programmers and Developers Association (org., Apple)

@item APDPR
Advanced PDF Password Recovery (PDF)

@item APDU
Application Protocol Data Unit (OSI, PDU, OSI/RM, APDU, ICC)

@item APE
Adaptable Persistence Engine (ZOPE)

@item APE
APplication Engineering

@item APEL
A Portable EMACS Library (EMACS, GNU)

@item APEX
Advanced Packet EXchange

@item APF
Advanced Printer Function (IBM, ADT)

@item API
Application Program Interface (API)

@item API
Associacao Portuguesa de Informatica (org., Portugal), http://www.api.pt

@item APIC
Advanced Programmable Interrupt Controller (Intel, PIC)

@item APIPA
Automatic Private IP Addressing (MS, IP), http://www.apipa.org

@item APIS
Arbeitsdatei PIOS Innere Sicherheit (INPOL, PIOS)

@item APL
A Perspicuous Language / Alles Parallel Loesbar (APL, slang)

@item APL
A Programming Language (IBM)

@item APLSF
A Programming Language with Shared Files (CMU, DEC)

@item APLSF
A Programming Language with Shared Variables (IBM)

@item APLV
Arbeitsdatei PIOS LandesVerrat (INPOL, PIOS)

@item APM
Advanced Power Management

@item APM
Application Programming Model (J2EE)

@item APM
Automated Precision Manufacturing

@item APMS
Automated Program Management information System

@item APN
Access Point Name (GPRS, mobile-systems)

@item APNIC
Asian Pacific Network Information Center (org., Internet), http://www.apnic.net

@item APO
Advanced Planner and Optimizer (SAP, SCM)

@item APOC
A Single Point Of Control (Sun, Linux)

@item APOK
Arbeitsdatei PIOS Organisierte Kriminalitaet (INPOL, PIOS)

@item APOP
Authenticated Post Office Protocol (Internet, POP, RFC 1734)

@item APP
Accelerated Parallel Processing (AMD)

@item APP
Application Portability Profile

@item APPC
Advanced Peer-to-Peer Communications (IBM, SNA, LU 6.2)

@item APPC
Advanced Program to Program Communication (IBM)

@item APPC
Application Program to Program Converter (IBM)

@item APPCM
Access Protection and Priority Control Mechanism (DQDB)

@item APPCP
Advanced Program to Program Communications Protocol (APPC, IBM)

@item APPEL
A P3P Preference Exchange Language (P3P)

@item APPI
Advanced Peer to Peer Internetworking (Cisco)

@item APPN
Advanced Peer to Peer Networking (IBM)

@item APPS
Application Packaging Problems & Solutions (Cygwin)

@item APR
Apache Portable Runtime (Apache)

@item APR
Arbeitsdatei PIOS Rauschgift (INPOL, PIOS)

@item APS
Active Pixel Sensor

@item APS
Application Page Server

@item APS
Application Service Provider (WAN)

@item APS
Asynchronous Protocol Specification

@item APSE
Ada Programming Support Environment

@item APSE
Agfa Publishing Systems Environment (Agfa, DTP)

@item APSL
Apple Public Source License (Apple), http://www.opensource.apple.com/apsl

@item APT
Address Pass Through

@item APT
Advanced Package Tool (Linux, Debian)

@item APT
Advanced Photoscale Technology (Brother)

@item APT
Automatically Programmed Tools

@item APTC
Advanced Processor Temperature Control (Chaintech)

@item APTM
Application Program to Transaction Manager (TP)

@item APU
Accelerated Processing Unit (AMD, CPU, GPU)

@item APU
Auxiliary Processing Unit

@item APVE
[Parhelia] Audio, Photo, Video, Express (Matrox), "APVe"

@item APW
Arbeitsdatei PIOS Waffen (INPOL, PIOS)

@item APWG
Anti-Pishing Working Group (org.), http://www.aintipishing.org

@item AQM
Active Queue Management

@item AR
Administrative Request [message] (LFAP)

@item AR
Aperture Ratio (DVD)

@item AR
Augmented Reality

@item ARA
Administrative Request Acknowledge [message] (LFAP)

@item ARA
Affiliate Registration Authority (RA, PKI, ITU)

@item ARA
Apple[talk] Remote Access (Apple, AppleTalk)

@item ARAG
AntiReflection AntiGlare (ViewSonic)

@item ARAP
Apple Remote Access Protocol (Apple, AppleTalk)

@item ARAT
Always Running APIC Timer (Intel, APIC)

@item ARB
Architecture Review Board (OpenGL, manufacturer, org.), http://www.opengl.org/about/arb/

@item ARC
Advanced RISC Computing [architecture] (ACE, RISC)

@item ARCA
Advanced RISC Computing Architecture (ACE, RISC)

@item ARCNET
Attached Resource Computer NETwork (Datapoint), "ARCnet" 

@item ARD
Apple Remote Desktop (Apple, Macintosh)

@item ARE
All Routes Explorer (ATM)

@item AREXX
Amiga Restructured EXtended eXecutor [language] (Amiga, Commodore, REXX)

@item ARIA
Accessible Rich Internet Applications (W3C, WAI)

@item ARIN
American Registry for Internet Numbers (org., Internet, USA), http://www.arin.net

@item ARKD
Abuse Resistant Key Distribution (Arcade)

@item ARL
Access Rights List (Banyan, VINES)

@item ARLL
Advanced Run-Length Limited [encoding]

@item ARM
Adobe Reader and acrobat Manager (Adobe)

@item ARM
Advanced RISC Machines (manufacturer, Acorn, Apple, VLSI, RISC), http://www.arm.com

@item ARM
Annotated [c++] Reference Manual

@item ARM
Application Response Measurement [working group]

@item ARM
Asynchronous Response Mode

@item ARMA
Association of Records Managers and Administrators, inc. (org.), http://www.arma.org/hq/home.html

@item ARMS
Architecture for Reliable Managed Storage (Cheyenne)

@item ARMS
Automation Resources Management System

@item ARNS
Appletalk Remote Network Server (Apple, AppleTalk)

@item ARO
Affiliate Registration Organization (RA, PKI, ITU)

@item AROM
Alterable Read Only Memory (ROM)

@item ARP
Address Resolution Protocol (Internet, RFC 826), ftp://ftp.rfc-editor.org/in-notes/rfc826.txt

@item ARPA
Advanced Research Projects Agency (org., USA), http://www.arpa.mil

@item ARPANET
Advanced Research Projects Agency NETwork (USA, network), http://www.arpanet.net

@item ARPDP
Association of Rehabilitation Programs in Data Processing (org., USA)

@item ARPG
Actionb Role Playing Game (RPG)

@item ARQ
Automatic Re-transmission reQuest (MODEM)

@item ARQAPDU
Associate ReQuest Application Protocol Data Unit (APDU)

@item ARRA
Announced Retransmission Random Access (MAC)

@item ARS
Action Request System

@item ARS
Automatic Route Selection (PBX, LCR)

@item ART
Adaptive Resonance Theory (NN)

@item ART
Advanced Resolution Technology (Minolta)

@item ARTS
Accelerated Ray-Tracing System (raytracing)

@item ARTS
Action Real-Time Strategy [game] (RTS)

@item ARTS
Asynchronous Remote Takeover Server

@item ARTT
Asynchronous Remote Takeover Terminal

@item AS
[Red Hat Enterprise Linux] Advanced Server (RedHat, Linux, RHEL)

@item AS
Advanced Server (MS, Windows NT)

@item AS
Authentication Service (DCE)

@item AS
Autonomous System (IP, Internet, RFC 1930), ftp://ftp.rfc-editor.org/in-notes/rfc1930.txt

@item AS400
Application System/400 (IBM), "AS/400"

@item ASA
Adaptive Security Appliance (Cisco)

@item ASA
Advanced SCSI Architecture (SCSI)

@item ASA
American Standards Association (org., USA, ANSI, predecessor)

@item ASAP
As Soon As Possible (slang, Usenet, IRC)

@item ASAP
Automatic Switching And Processing

@item ASB
Advanced System Bus (AMBA, ARM)

@item ASBR
Autonomous System Border / Boundary Router (AS)

@item ASC
Accredited Standards Committee (org., ANSI)

@item ASC
Additional Sense Code

@item ASC
American Society for Cybernetics (org., USA), http://www.gwu.edu/~asc

@item ASC
Authorized Support Center

@item ASC
Automatic Contrast Selection (FAX)

@item ASCC
Automatic Sequence Controlled Calculator (IBM), http://www-1.ibm.com/ibm/history/exhibits/markI/markI_reference.html

@item ASCI
Accelerated Strategic Computing Initiative, http://www.llnl.gov/asci

@item ASCI
Agent to Server Communication Interval (McAfee, ePolicy)

@item ASCII
American Standard Code of Information Interchange

@item ASCSI
Advanced Small Computer Systems Interface (SCSI)

@item ASD
Architecture Summary Design

@item ASDR
Application Security Desk Reference (OWASP)

@item ASDSP
Application-Specific Digital Signal Processor

@item ASE
Active Storage Element (GigaB, IP-router)

@item ASE
Aladdin Smartcard Environment (Fast, Aladdin)

@item ASE
Amplified Spontaneous Emission (FO, EDFA)

@item ASE
Application Service Element (ATM)

@item ASEB
ASian EDIFACT Board (org., EDIFACT), "AS/EB"

@item ASEMH
Army Standards Electronic Mail Host (mil., USA)

@item ASES
Application Software Entity Security

@item ASES
Australian Solid Earth Simulator (ACES), http://quakes.earth.uq.edu.au/ASES/

@item ASF
Advanced Streaming Format (MS), http://www.microsoft.com/asf

@item ASF
Apache Software Foundation (org., Apache)

@item ASH
Almquist SHell (BSD, Unix, Shell), "ash"

@item ASHLI
Advanced Shading Language Interface (ATI)

@item ASI
Adapter Support Interface (IBM, LAN)

@item ASI
Advanced Switching Interconnect

@item ASI
Amorphous SIlicon drum (Kyocera), "aSI"

@item ASI
Aquarius Systems International (manufacturer)

@item ASI
Asynchronous SCSI Interface

@item ASI
Automatic System Installation

@item ASIC
Application Specific Integrated Circuit (IC, RL)

@item ASIM
Arbeitskreis Simulation und Kuenstliche Intelligenz (org., GI)

@item ASIO
Audio Stream Input/Output

@item ASIP
Application Specific Instruction-set Processor (IC)

@item ASIS
American Society for Information Science (org.)

@item ASISIG
Advanced Switching Interconnect Special Interest Group (org., SIG), "ASI SIG", http://www.asi-sig.org

@item ASK
Akademische Software Kooperation (org., Karlsruhe, Germany), http://www.ask.uni-karlsruhe.de

@item ASK
Amplitude Shift Keying

@item ASKSAM
Access Stored Knowledge via Symbolic Access Method (DB), "askSam"

@item ASL
ACPI Source Language (ACPI, AML)

@item ASL
Adaptive Speed Levelling (US Robotics)

@item ASL
Astaro Security Linux (Linux)

@item ASLR
Address Space Layout Randomization

@item ASLT
Advanced Solid Logic Technology (IC)

@item ASM
Advanced Server Management (Acer)

@item ASM
Association of Systems Management (org.)

@item ASM
Automatic Storage Management (DB, Oracle)

@item ASMA
Administratively Scoped IP Multicast (RFC 2365, Multicast), ftp://ftp.rfc-editor.org/in-notes/rfc2365.txt

@item ASMA
Asus System Monitoring Agent (Asus, ASWM)

@item ASMO
Advanced Storage Magneto Optical [disk] (Hitachi, Maxell, Matsushita, Fujitsu, Olympus, Philips, Sanyo, Sharp, Sony, LG Electronics)

@item ASMONIA
Angriffsanalyse und Schutzkonzepte fuer MObilfunkbasierte Netzinfrastrukturen unterstuetzt durch kooperativen InformationsAustausch

@item ASMP
ASymetric MultiProcessing [system]

@item ASMP
ASymmetrisches MultiProzessor [system]

@item ASN1
Abstract Syntax Notation One (OSI, ISO, IS 8824), "ASN.1"

@item ASNM
AdvanceStack Network Management (HP)

@item ASO
Address Supporting Organization (Internet)

@item ASP
Abstract Service Primitive (OSI)

@item ASP
Active Server Pages (HTTP, MS)

@item ASP
Advanced Signal Processing / Processor

@item ASP
Advanced Simple Profile

@item ASP
Appletalk Session Protocol (Apple, AppleTalk)

@item ASP
Application Service Provider / Providing (ISP, Internet)

@item ASP
Association of Shareware Professionals (org., USA), http://www.asp-shareware.org

@item ASP
Authorized Service Provider (Sun)

@item ASPEC
Advanced SPectre Entropy Coding (MPEG, Digital audio)

@item ASPEN
Automatic System for Performance Evaluation of the Network

@item ASPI
Advanced SCSI Programming Interface (Adaptec, API, SCSI)

@item ASPIC
Advanced SCSI Programmable Interrupt Controller (PIC, SCSI)

@item ASPIK
Algebraic Specifications and Implementations ??? (ISDV)

@item ASPL3
Advanced Simple Profile @@ Level 3 (MPEG, CIF), "ASP@@L3"

@item ASPP
Application Specific Programmable Product (ASIC, ASSP, FPGA, RL)

@item ASPS
Advanced Signal Processing System

@item ASQ
Automated Software Quality

@item ASQC
American Society of Quality Control (org., USA), http://www.asqc.org

@item ASQF
Arbeitskreis Software-Qualitaet Franken [e.V.] Org., Germany, http://asqf.de

@item ASR
Automated System Recovery (MS, Windows, XP)

@item ASR
Automatic Server Restart (HP)

@item ASR
Automatic Speech Recognition

@item ASSERT
ADEPT Subsystem for Scanning of Electronic Received Traffic (ADEPT, mil., USA)

@item ASSIST
Automated Special Security Information System Terminal (mil., USA)

@item ASSP
Application Specific Standard Product (RL)

@item ASSPA
ASsociation Suisse pour l'Automatique (org., Switzerland)

@item ASSR
Agreed Set of Security Rules (mil., USA)

@item ASSUME
Association of Statistics Specialists Using Microsoft Excel (org., user group)

@item AST
Abstract Syntax Tree (GCC)

@item AST
Atlantic Standard Time [-0400] (TZ, ADT)

@item ASTA
Advanced Software Technology and Algorithms (HPCC)

@item ASTRAL
Alliance fuer Strategic Token Ring Advancement and Leadership (manufacturer)

@item ASU
Asynchron-Synchron Umsetzer

@item ASV
Adobe SVG Viewer (Adobe, SVG)

@item ASV
Advanced Super-View (LCD, Sharp, MVA)

@item ASVD
Analog Simultaneous Voice and Data (MODEM)

@item ASWM
Asus System Web-based Management (Asus, DMI, SNMP, ASMA)

@item AT
Advanced Technology (IBM, PC)

@item ATA
Advanced Technology Attachment (ATA, HDD)

@item ATA
Analog Telephone Adaptor (VoIP)

@item ATAG
Authoring Tool Accessibility Guidelines (WAI)

@item ATAP
ARM Technology Access Program (ARM)

@item ATAPI
Advanced Technology Attachment Packet Interface (ATA)

@item ATASPI
Advanced Technology Attachment Software Programming Interface (ATA)

@item ATC
Address Translation Cache (CPU)

@item ATC
Address Translation Controller (ATM)

@item ATC
Advanced Thermo Concept (Cooler-Master)

@item ATC
Authorized Testing Center (MS)

@item ATC
Automatic Transmission Control

@item ATCA
Advanced Telecommunications Computing Architecture (Intel, PICMG)

@item ATCA
Allied Tactical Communications Agency (org., NATO, mil.)

@item ATCP
[PPP] AppleTalk Control Protocol (Apple, AppleTalk, PPP, NCP, RFC 1378), ftp://ftp.rfc-editor.org/in-notes/rfc1378.txt

@item ATD
AntiTerrorDatei (INPOL)

@item ATD
Asynchronous Time Division (ATM)

@item ATDM
Asynchronous Time Division Multiplexer (ATD)

@item ATDMA
Asynchronous Time Division Multiple Access (ATD)

@item ATDP
ATtention Dial Pulse (MODEM)

@item ATDT
ATtention Dial Tone (MODEM)

@item ATE
Asynchronous Terminal Emulation (Banyan, VINES)

@item ATE
ATM Terminating Equipment (SONET, ATM)

@item ATEC
Authorized Training and Education Center (MS, MOCS, MCSD, ATEC), http://www.atec.de

@item ATES
Advanced Techniques integration into Efficient scientific Software (ESPRIT, CASE)

@item ATF
Automatic Track Finding (DDS)

@item ATH
Absolute Threshold of Hearing (MP3)

@item ATH
ATtention Hang up (MODEM)

@item ATI
Advanced Telecomunications Institute (org., USA), http://www.ati.stevens-tech.edu

@item ATI
Asociacion de Tecnicos de Informatica (org., Spain), http://www.ati.es

@item ATIP
Absolute Time In Pregroove (CD)

@item ATIS
Alliance for Telecommunications Industry Solutions (org., USA), http://www.atis.org

@item ATK
Andrew ToolKit (Unix)

@item ATKIS
Amtliches Topographisch-Kartographisches InformationsSystem

@item ATL
Activex Template Library (MS, ActiceX, MSVC)

@item ATL
Adaptive Threshold Learning (neural nets)

@item ATLAS
Automatically Tuned Linear Algebra Software (BLAS, API)

@item ATM
Abstract Test Method (ISO 9646-1)

@item ATM
Adobe Type Manager

@item ATM
Asynchronous Transfer Mode (ATM), http://www.atmforum.com

@item ATM
At The Moment (slang, Usenet, IRC)

@item ATM
Automatic Teller Machine

@item ATMARP
ATM Address Resolution Protocol (ATM, ARP)

@item ATMP
Ascend Tunnel Management Protocol (Ascend, RFC 2107), ftp://ftp.rfc-editor.org/in-notes/rfc2107.txt

@item ATMS
Assumption based Truth Maintenance System (AI)

@item ATN
Augmented Transition Network

@item ATOB
ASCII TO Binary (ASCII)

@item ATOMM
Advanced super Thinlayer and high-Output Metal Media (Fuji)

@item ATP
[Macromedia] Authorized Training Program (Macromedia)

@item ATP
Advanced Technology Partner

@item ATP
Appletalk Transaction Protocol (Apple)

@item ATP
Application Transaction Program (IBM, APPC)

@item ATP
Available To Promise (SCM)

@item ATP2
AppleTalk Phase 2 (Apple, AppleTalk)

@item ATPH
Authorized Teamspeak Host Provider

@item ATPS
AppleTalk Printing Services (AppleTalk, Apple)

@item ATR
Advanced Telecommunications Research laboratory (org., Japan)

@item ATR
Answer To Reset

@item ATR
Automatic Terminal Recognition

@item ATRAC
Adaptive TRansform Acoustic Coding (Sony, Digital audio, CODEC)

@item ATS
Abstract Test Suite

@item ATS
Adaptive Tape Speed (HP, Streamer, LTO)

@item ATS
Administrative Terminal System

@item ATS
Apple Terminal Services (Apple, AppleTalk)

@item ATSPI
Assistive Technology - Service Provider Interface (GNOME), "AT-SPI"

@item ATSUI
Apple Text Services for Unicode Imaging (Apple, Unicode)

@item ATT
American Telephone and Telegraph, "AT&T" , http://www.att.com

@item ATUS
A Toolkit for Usable Security (Uni Freiburg)

@item ATVEF
Advanced TV Enhancement Forum (org.), http://www.atvef.com

@item ATX
Advanced Technology eXtended [form factor]

@item AU
Access Unit

@item AUAI
Association for Uncertainty in Artificial Intelligence (org., AI), http://ai.eecs.umich.edu/auai

@item AUC
AUthentication Center (GSM, mobile-systems), "AuC"

@item AUDIT
AUtomated Data Input Terminal

@item AUDIUS
AUssenDIenstUnterstuetzungsSystem (CAS)

@item AUE
Andrew User Environment (Unix)

@item AUGCE
Autodesk User Group Central Europe (org., user group)

@item AUGE
Apple User Group Europe (org., Apple, user group)

@item AUI
Access Unit Interface

@item AUI
Asociacion de Usuarios de Internet (Internet, user group, Spain, org.), http://www.aui.es

@item AUI
Attachment Unit Interface (ethernet)

@item AUI
Audible User Interface (UI)

@item AUIS
Andrew User Interface System (Unix, UI)

@item AUP
Acceptable Use Policy (NFSNet)

@item AURP
Appletalk Update-based Routing Protocol (Apple, Appletalk, RFC 1504), ftp://ftp.rfc-editor.org/in-notes/rfc1504.txt

@item AUT
Application Under Test

@item AUTODIN
AUTOmatic DIgital Network (DMS, DISA)

@item AUTOKO
AUTOmatisiertes KOrpsstammnetz (Bundeswehr)

@item AUTOSAR
AUTomotive Open Systems Architecture [initiative] (org.)

@item AUTOSEVOCOM
AUTOmated SEcure VOice COMmunications (predecessor, SVIP, mil., USA)

@item AUTOVON
AUTOmatic VOice Network (predecessor, DSN, DISA)

@item AUU
ATM User-to-User (ATM)

@item AUX
Apple UniX (Apple, Unix), "A/UX" 

@item AUX
Auxiliary Power Unit (Airbus, A380)

@item AV
Audio/Video, "A/V"

@item AV
AudioVisual [macintosh] (Apple)

@item AVA
Audio-Visual Authoring

@item AVAS
teile-Auftragserfassungs-, Verwaltungs- und AbrufSystem (MBAG)

@item AVATAR
Advanced Video Attribute Terminal Assembler and Recreator (BBS)

@item AVC
Access Vector Cache

@item AVC
Advanced Video Coding (VCEG, video)

@item AVC
Audio-Visual Connection

@item AVCD
Audio-Visual Computer Display

@item AVD
Advanced Video Disk [old term] (China, EVD)

@item AVD
Alternation Voice/Data

@item AVDL
Application Vulnerability Description Language (OASIS, XML), http://www.avdl.org

@item AVE
AutoCAD Visualization Extension (carCAD)

@item AVERT
Anti-Virus Emergency Response Team (McAfee)

@item AVGA
Advanced Video Graphics Array (VGA)

@item AVI
Audio Video Interleaved (MS)

@item AVIS
AuftragsVerwaltungs- und InformationsSYstem (MBAG)

@item AVL
Adelson, Veslkij and Laudis [tree]

@item AVM
AudioVisuelles Marketing und computersysteme [gmbh] (manufacturer), http://www.avm.de

@item AVPD
Anchor Volume Descriptor Pointer (CD-R, UDF, ISO 9660)

@item AVR
Automatic Voice Recognition

@item AVR
Automatic Voltage Regulation (USV)

@item AVS
Address Verification System

@item AVS
Adult Verification System (WWW)

@item AVX
Advanced Vector eXtensions (CPU, Intel)

@item AWAC
Audio Waveform Amplifier and Converter (Apple)

@item AWADO
Automatischer Wechselschalter in der AnschlussDose

@item AWD
Automatische Waehleinrichtung fuer Datenverbindungen

@item AWE
Address Windowing Extensions (API, PAE)

@item AWE
Autocad Windows Extension (carCAD)

@item AWG
American Wire Gauge (cable)

@item AWK
al Aho, peter Weinberger, brian Kernighan (Unix)

@item AWL
AnWeisungsListe (DIN 19239)

@item AWOL
Absent WithOut Leave (telecommunication, Usenet, IRC)

@item AWP
Association of Web Professionals (org., WWW), http://www.a-w-p.org

@item AWS
Amazon Web Services (XML, API)

@item AWS
Apple Workgroup Server (Appletalk, Apple)

@item AWT
Abstract Window Toolkit (Java, Sun)

@item AWTAPI
Abstract Windows Toolkit-Application Programmer Interface (AWT, API, Java)

@item AXE
Application eXecution Environment

@item AXIS
Apache eXtensible Interaction System (Apache, SOAP)

@item AYS
Are You Sure (slang, Usenet, IRC)

@item AZEB
Australian/new Zealand EDIFACT Board (org., EDIFACT), "AZ/EB"

@end table