~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
@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 E1
European digital transmission format 1 [2.048 Mbps]

@item E2
European digital transmission format 2 [8.448 Mbps]

@item E2E
End To End

@item E3
End-to-End Encryption (cryptography)

@item E3
European digital transmission format 3 [34.368 Mbps]

@item E4
European digital transmission format 4 [139.264 Mbps]

@item E4X
Ecmascript for XML (ECMA, XML)

@item E5
European digital transmission format 5 [565.148 Mbps]

@item EA
[Visio for] Enterprise Architects (MS, .NET)

@item EA
Effective Address (Power4, IBM, CPU)

@item EA
Eingabe/Ausgabe, "E/A" 

@item EA
Enterprise Agreement (Adobe)

@item EA
Enterprise Agreement (MS)

@item EA
Escrowed Authenticator (cryptography, EES)

@item EA
Extended Attribute (OS/2, Apple)

@item EAB
Enterprise Access Builder (IBM, Java)

@item EAC
Enhanced Audio CODEC (EVD, CODEC)

@item EACEM
European Association of Consumer Electronics Manufacturers (org., Europe)

@item EAD
Encoded Archival Description (SGML)

@item EADAS
Engineering and Administrative Data Acquisition System (EADAS)

@item EADASNM
EADAS/Network Management (EADAS), "EADAS/NM" 

@item EADF
Elliptical Aperture with Dynamic Focus

@item EAF
Export address table Access Filtering

@item EAI
Enterprise Application Integration

@item EAI
External Authoring Interface (VRML)

@item EAL
Evaluation Assurance Level (CC)

@item EAM
Evanescent Access Method (BS2000)

@item EAN
European Article Numbering [system]

@item EANTC
European Advanced Networking Test Center (org., Berlin, Germany, ANTC, FDDI)

@item EAP
Extensible Authentication Protocol (Cisco, cryptography, RADIUS, WPA)

@item EAPAKA
Extensible Authentication Protocol method for 3rd generation Authentication and Key Management (EAP, RFC 4187), "EAP-AKA", ftp://ftp.rfc-editor.org/in-notes/rfc4187.txt

@item EAPD
External Amplifier Power Down

@item EAPMD5
Extensible Authentication Protocol - Message Digest 5 (EAP, cryptography), "EAP-MD5"

@item EAPOL
Extensible Authentication Protocol Over LAN (EAP, LAN, cryptography), "EAPoL"

@item EAPOW
Extensible Authentication Protocol Over Wireless (EAP, WLAN, cryptography), "EAPoW"

@item EAPS
Ethernet Automatic Protection Switching (LAN, MAN, RFC 3619), ftp://ftp.rfc-editor.org/in-notes/rfc3619.txt

@item EAPTLS
TLS over EAP (TLS, EAP, WLAN), "EAP-TLS"

@item EAPTTLS
Extensible Authentication Protocol - Tunneled Transport Layer Security (EAP, cryptography), "EAP-TTLS"

@item EAPTTSL
Tunneled Transport Layer Security EAP (TTSL, EAP, cryptography, WLAN), "EAP-TTSL"

@item EAR
Enterprise ARchive (IBM, WBISF)

@item EARN
European Academic Research Network (network)

@item EAROM
Electrically Alterable Read Only Memory (ROM, IC)

@item EAS
Enterprise Access System (Dynatech)

@item EAS
Enterprise Agreement Subscription (MS, OSL)

@item EASE
Easy Access System Europe (Novell, FTP), ftp://ftp.novell.de

@item EASEL
	Emergent Algorithm Simulator and Evaluation Language

@item EASEL
Educator Access to Services in the Electronic Landscape (CORDIS)

@item EASI
Enhanced Asynchronous SCSI Interface

@item EASY
ErmittlungsAbhaengiges SYstem (Bavaria)

@item EATA
Enhanced AT Bus Attachment

@item EATCS
European Association for Theoretical Computer Science (org., Europe)

@item EATX
Extended Advanced Technology eXtended [form factor] (ATX), "E-ATX"

@item EAX
Environmental Audio eXtension (audio, Creative Labs), http://eax.creative.com

@item EAZ
EndgeraeteAuswahlZiffer (ISDN)

@item EB
Electronic Banking (banking)

@item EBA
Electronic Business Assurance, "eBA"

@item EBAM
Electronic Beam-Addressable Memory (IC)

@item EBAS
Elektronisches teile-BestellAbwicklungsSystem (MBAG)

@item EBC
EISA Bus Controller (Wyse)

@item EBCDIC
Extended Binary-Coded Decimal Interchange Code

@item EBCOT
Embedded Block Coding with Optimal Truncation (JPEG)

@item EBCS
European Committee for Banking Standards (org., Europe, banking)

@item EBGA
Enhanced Ball Grid Array (BGA, CPU, IC)

@item EBGP
External Border Gateway Protocol (BGP, iBGP), "eBGP"

@item EBMS
ebXML Message Service (ebXML, XML), "ebMS"

@item EBNF
Extended Backus-Naur-Form

@item EBR
Enterprise Backup and Restore (ENS, Banyan, VINES)

@item EBR
Extended Boot Record (MBR)

@item EBR
External Backup Restore (IDS, Informix, DB)

@item EBROM
Electronic Book - Read Only Memory (ROM), "EB-ROM" 

@item EBU
European Broadcasting Union (org., Europe)

@item EBUS
Elektronisches teile-BUchungsSystem (MBAG)

@item EBV
Elektronische BildVerarbeitung

@item EBXML
Electronic Business eXtensible Markup Language (XML, OASIS, UN/CEFACT, B2B), "ebXML", http://www.ebxml.org

@item EC
Electronic Commerce

@item EC
Error Correction (MODEM)

@item EC
Evolutionary Computation

@item ECAI
European Conference on Artificial Intelligence (conference, AI, ECCAI, Europe)

@item ECAL
European Conference on Artificail Life (Europe, AI)

@item ECASO
Enhanced Cooling After System Off

@item ECB
Electronic CodeBook [mode] (cryptography, DES)

@item ECB
Event Control Block (IPX)

@item ECC
Electrical Connectivity Checks (CAD)

@item ECC
Elliptic Curve Cryptosystem (Certicom, cryptography)

@item ECC
Error Checking and Correction

@item ECC
Error Correction Circuit (CPU, POWER)

@item ECC
Error Correction Code (CD, EDC)

@item ECCAI
European Coordinating Committee for Artificial Intelligence (org., AI, Europe), http://www.eccai.org

@item ECCO
Execute with Correct Checksum Only

@item ECCRAM
Error Checking and Correction ??? Random Access Memory (RAM)

@item ECD
Energy Conversion Devices (manufacturer, OUM)

@item ECDC
Electronic Commerce for Developing Countries (ITU)

@item ECDL
European Computer Driving License, http://www.ecdl.com

@item ECDSA
Elliptic Curve Digital Signature Algorithm (cryptography)

@item ECEDI
Electronic Commerce/Electronic Data Interchange (EC, EDI), "EC/EDI"

@item ECF
Enhanced Connectivity Facilities (IBM)

@item ECHO
European Community Host Organisation (org., Europe), http://www.echo.lu/echo/en/menuecho.html

@item ECHT
European Conference on Hypermedia Technology (INRIA, conference)

@item ECI
Efficient Channel Integration (ADC, EDI)

@item ECI
European Color Initiative (org., Europe, DTP), http://www.eci.org

@item ECIS
European Committee for Interoperable Systems (org.), http://www.e-c-i-s.org

@item ECIX
European Commercial Internet eXchange (company), http://www.ecix.de

@item ECL
EClectic Language (Harvard, TOPS)

@item ECL
Emitter Coupled Logic

@item ECM
Enterprise Content Management

@item ECM
Entity Coordination Management (FDDI, SMT)

@item ECM
Error Correction / Correcting Mode (FAX, HDLC)

@item ECMA
European Computer Manufacturers Association (org., Europe), http://www.ecma-international.org/

@item ECMP
Electroning Commerce Modeling Language (RFC 4112), ftp://ftp.rfc-editor.org/in-notes/rfc4112.txt

@item ECMS
Enterprise Content Management System (CMS)

@item ECN
European Counter Network

@item ECN
Explicit Congestion Notification (IP, RFC 2481), ftp://ftp.rfc-editor.org/in-notes/rfc2481.txt

@item ECNE
Enterprise Certified Novell Engineer (Novell, Netware)

@item ECOC
European Conference on Optical Communications (Konferenz)

@item ECOM
Electronic Computer Originated Mail, "E-COM" 

@item ECOOP
European Conference on Object Orientated Programming (OOP, conference)

@item ECP
[PPP] Encryption Control Protocol (PPP, RFC 1968), ftp://ftp.rfc-editor.org/in-notes/rfc1968.txt

@item ECP
Enhanced Capability Port (MS)

@item ECP
Enhanced Communication Port / Protocol

@item ECP
Excessive CrossPosting (Usenet, EMP, spam)

@item ECPA
Electronic Communications Privacy Act (USA)

@item ECR
Engineering Change Request (PCI)

@item ECRC
[cable & wireless] European Computer industry Research Centre [gmbh] (ISP, org.), http://www.ecrc.de

@item ECRM
Electronic Customer Relationship Management (Internet), "eCRM"

@item ECS
EComStation (OS/2), "eCS"

@item ECS
Elitegroup Computer Systems (manufacturer, Taiwan), http://www.ecs.com.tw

@item ECS
Enhanced Chip Set (Amiga, Commodore)

@item ECSA
Exchange Carriers Standards Association (org.)

@item ECSC
European Customer Support Centre (HP)

@item ECSD
Enhanced Circuit Switched Data (8-PSK, mobile-systems)

@item ECTS
European Computer Trade Show (fair, London)

@item ECU
EISA Configuration Utility (EISA)

@item ED
End Delimiter (FDDI, Token Ring)

@item ED
Enhanced Density

@item EDA
Electronic Design Automation (RL, IC)

@item EDAC
Electromechanical Digital Adapter Circuit

@item EDAC
European Conference on Design Automation (IEEE-CS, conference)

@item EDBS
Einheitliche DatenBank-Schnittstelle (DB)

@item EDC
Error Detection Code (CD, ECC)

@item EDCF
Enhanced Distributed Coordination Function (MAC, 802.11a, DCF, QOS)

@item EDD
Enhanced Disk Device [polling] (BIOS, Linux)

@item EDD
Enterprise Data Distribution (ENS, Banyan, VINES)

@item EDFA
Erbuim Doped Fiber Amplifier (FO)

@item EDGAR
Electronic Data Gathering, Analysis, and Retrieval [system] (DB, Internet)

@item EDGE
Enhanced Data rate for GSM / Global Evolution (GSM, mobile-systems)

@item EDI
Electronic Data Interchange (GOSIP)

@item EDID
Extended Display Identification Data [standard] (VESA, DDC)

@item EDIF
Electronic Design Interchange Format, http://www.edif.org

@item EDIFACT
Electronic Data Interchange For Administration, Commerce and Transport

@item EDL
Edit Decision List (video)

@item EDLC
Ethernet Data Link Control (ethernet)

@item EDM
Engineering Data Management

@item EDM
Extended Data Message

@item EDMCC
European Distributed Memory Computing Conference (GI, ITG, IFIP, conference)

@item EDMS
Engineering Document Management System

@item EDO
Extended Data Out [RAM] (RAM, DRAM, IC)

@item EDODRAM
Extended Data Out Dynamic Random Access Memory (RAM), "EDO-DRAM" 

@item EDORAM
Extended Data Out Random Access Memory (RAM, IC), "EDO-RAM"

@item EDOS
Elektronisches DateiOrganisationsSystem (MBAG)

@item EDP
Electronic Data Processing

@item EDP
Electronic Data Processing

@item EDP
Enhanced Dot Pitch (Hitachi)

@item EDPS
Electronic Data Processing System

@item EDPS
European Data Protection Supervisor, http://www.edps.eu.int

@item EDR
External Developer Release

@item EDRAM
Enhanced Dynamic Random Access Memory (RAM, DRAM, IC)

@item EDRI
European Digital RIghts (org., Europe), "EDRi", http://www.edri.org/

@item EDS
Electronic Data Systems [corporation] (provider, USA)

@item EDSAC
Electronic Delay Storage Automatic Calculator

@item EDSRA
Earth Data System Reference Application (ISH, USA)

@item EDT
Eastern Daylight Time [-0400] (TZ, EST, USA)

@item EDV
Elektronische DatenVerarbeitung

@item EDVAC
Electronic Discrete Variable Automatic Computer

@item EDX
Event-Driven eXecutive (OS, IBM)

@item EE
Emotion Engine (Sony, Playstation)

@item EE
Energy Efficient (AMD, TDP)

@item EEAG
Elektro- und ElektronikAltGeraete

@item EEE
[UDB] Enterprise Extended Edition (IBM, DB2, DB, UDB)

@item EEE
Energy Efficient Ethernet (IEEE)

@item EEI
Equipment to Equipment Interface

@item EEI
External Environment Interface (mil., USA)

@item EELS
Engineering Electronic Library, Sweden (org., WWW, Sweden), http://www.ub2.lu.se/eel/eelhome.html

@item EEM
External Expansion Module (Sun)

@item EEMS
Enhanced Expanded Memory Specification

@item EEP
Early Experience Program (Borland)

@item EEP
Entry Exit Procedure (R:Base, DB)

@item EEPROM
Electrically Erasable Programmable Read Only Memory (ROM, IC, RL, EPROM)

@item EES
Escrowed Encryption Standard (cryptography, NSA)

@item EESA
Enterprise Extensions SMART Accessed (WD, ATA)

@item EESC
European EDIF Steering Committee (org., EDIF, Europe)

@item EESSI
European Electronic Signature Standardization Initiative (org., ETSI), http://www.ict.etsi.fr/eessi/EESSI-homepage.htm

@item EET
Eastern European Time [+0200] (TZ)

@item EET
Edge Enhancement Technology (Seikosha, Itoh)

@item EFAKS
Elektronisches FAKturierungs- und abrechnungsSystem (MBAG)

@item EFB
Electronic Flight Bag (Airbus, A380)

@item EFCI
Explicit Forward Congestion Indication (ATM)

@item EFF
Electronic Frontier Foundation (Internet, org.), http://www.eff.org

@item EFI
Electronics For Imaging (manufacturer), http://www.efi.com

@item EFI
Extended Firmware Interface (Intel, MS)

@item EFI
Extensible Firmware Interface [old term] (Intel, Itanium, MS)

@item EFL
Eiffel Forum License (Eiffel)

@item EFL
Emitter Follower Logic (IC)

@item EFL
Enlightenment Foundation Libraries (GUI)

@item EFM
Eight-to-Fourteen-Modulation (CD-DA, CD-ROM, CD)

@item EFNET
Eris Free NETwork (Network, IRC), "EFnet"

@item EFS
Encrypting File System (cryptography, Windows, MS, DESX)

@item EFSM
Extended Finite State Machine (TTCN, ...)

@item EFT
Electronic Funds Transfer

@item EFT
Euro-FileTransfer (ISDN, ETS 300 075)

@item EFTPOS
Electronic Funds Transfer at the Point-Of-Sale (EFT, banking), "EFT-POS"

@item EFTS
Electronic Funds Transfer System

@item EFUE
EmmissionsdatenFernUEbertragung (telecommunication)

@item EG
Evil Grin (slang, Usenet, IRC)

@item EGA
Enhanced Graphics Adapter (predecessor, VGA)

@item EGA
Enterprsie Grid Alliance (org., grid, EMC, FSC, HP, Intel, Oracle, ...)

@item EGB
Elektrostatisch gefaehrdete Bauelemente

@item EGD
Entropy Gathering Daemon (Unix, GNU, GnuPG)

@item EGD
Ethernet Global Data

@item EGEE
Enabling Grids for E-sciencE (Europe, Europe)

@item EGG
Elektronischer Geschaeftsverkehr-Gesetz Germany

@item EGMS
E-Government Metadata Standard (RSS, UK)

@item EGO
Enterprsie Grid Orchestrator

@item EGOV
Electronic GOVernment

@item EGP
Exterior Gateway Protocol (RFC 904), ftp://ftp.rfc-editor.org/in-notes/rfc904.txt

@item EGPA
Erlangen General Purpose Array (MP)

@item EGPRS
Enhanced General Packet Radio Service (8-PSK, mobile-systems)

@item EGREP
Extended Global Regular Expression Print (Unix, GREP)

@item EGS
Enhanced Graphics System (Commodore)

@item EHCI
Enhanced Host Controller Interface (USB, Intel)

@item EHDI
Environmental Human Interface Devices

@item EHF
Encoding Header Field (Internet, RFC 1154), ftp://ftp.rfc-editor.org/in-notes/rfc1154.txt

@item EHKP
Einheitliche Hoehere KommunikationsProtokolle (BTX, ER, DTAG)

@item EHLLAPI
Emulator High Level Language API (IBM, 3270, API)

@item EHS
European Home Systems [concept]

@item EHSA
European Home Systems Association (org., Europe)

@item EHW
Evolvable HardWare

@item EIA
Electronics Industry Association (USA, org.), http://www.eia.org

@item EIB
Element Interconnect Bus (IBM, Cell)

@item EIB
European Installation Bus

@item EIBA
European Installation Bus Association (org., Europe)

@item EICAVR
European Institute for Computer Anti-Virus Research (org., Europe)

@item EICL
European Informatics Continuous Learning (CEPIS)

@item EICTA
European Information & Communications Technology Industry Association [old term] (org., Europe), http://www.eicta.org

@item EIDA
European Integrated Data Archive

@item EIDE
Enhanced Integrated Drive Electronics (HDD, IDE), "E-IDE"

@item EIEIO
Enforce In-order Execution of Input/Output (PowerPC, I/O, CPU)

@item EIF
Enterprise Instrumentation Framework (MS)

@item EIFS
Extended InterFrame Space (MAC, PCF, IFS, WLAN)

@item EIGRP
Enhanced Interior Gateway Routing Protocol (IGRP)

@item EINE
EINE Is Not EMACS (EMACS, LISP)

@item EIO
Enhanced Input/Output [architecture] (HP)

@item EIP
Extended Instruction Pointer [register] (CPU, Intel, assembler)

@item EIP
Extended Internet Protocol (Internet, RFC 1385), ftp://ftp.rfc-editor.org/in-notes/rfc1385.txt

@item EIRP
Effective Isotropic Radiated Power (Bluetooth)

@item EIS
Electronic Information Systems (manufacturer)

@item EIS
Enterprise Information System

@item EIS
European Information System (Europe)

@item EIS
Executive Information System (IM)

@item EISA
Enhanced Industry Standard Architecture (ISA)

@item EISA
European Imaging and Sound Association (org., Europe)

@item EISB
Electronic Imaging Standards Board (org.)

@item EISS
Europaeisches Institut fuer SystemSicherheit (org., Karlsruhe, Germany, Europe), http://avalon.ira.uka.de

@item EIST
Enhanced Intel Speedstep Technology (Intel, Pentium)

@item EIT
Encoded Information Type

@item EIT
Event Information Table (DVB, EPG)

@item EITO
European Information Technology Observatory (org.), http://www.eito.com

@item EITS
Eesti InfoTehnoloogia Seltsi (org., Estland), http://www.eits.ee

@item EJB
Enterprise Java Beans (Java, Sun, CORBA)

@item EJC
Electronic Journal of Communication

@item EKMS
Electronic Key Management System (cryptography)

@item EKO
Every Known Optimization [compiler] (PathScale)

@item EKOS
Elektronisches KOmmunikationsSystem (MBAG)

@item EL
Electro Luminescent [display]

@item EL1
Extensible Language one (ECLogic)

@item ELAN
Education LANguage

@item ELAN
Emulated Local Area Network (ATM, LANE)

@item ELAP
Embedded Linux Applications Platform (Linux, PDA), "e-LAP"

@item ELAP
Ethernet Link Access Protocol (LAP, ethernet)

@item ELF
Executable and Linkable Format (Unix, OS/2)

@item ELH
Entity Life History (DB)

@item ELI
Embedded LISP Interpreter (Andrew mail system)

@item ELK
Extension Language Kit (Scheme)

@item ELLIS
EuLisp LInda System (LISP)

@item ELM
ELectronic Mailer (Unix)

@item ELO
Elektronischer Leitz Ordner (OA), http://www.leitz.de/elo

@item ELOD
Erasable Laser Optical Disk (OD)

@item ELP
Equational Logic Programming [language]

@item ELRAD
[magazin fuer] ELektronik und technische RechnerAnwenDungen

@item ELS
Entry Level Solution (Novell, Netware)

@item EM
Extensions Manager (Apple)

@item EM64T
Extended Memory [64] Technology (Intel)

@item EMA
Electronic Messaging Association (org., USA), http://www.ema.org

@item EMA
Enterprise Management Architecture (DEC)

@item EMA
Extended Mercury Autocode

@item EMACS
Editing MACroS (GNU)

@item EMACS
Eight Megabytes And Constantly Swapping (slang, EMACS)

@item EMAS
Edinburgh Multi-Access System (OS, ICL 4-75)

@item EMB
Enhanced Master Burst (EISA)

@item EMBI
Excuse My Butting In (slang, Usenet, IRC)

@item EMC
[Richard J.] Egan [Roger] Marino Company [unconfirmed] (EMC, manufacturer), http://www.emc.com

@item EMC
ElectroMagnetic Compatibility

@item EMEA
[IBM] Europe, Middle East, Africa (IBM)

@item EMET
Enhanced Mitigation Experience Toolkit (MS)

@item EMF
Eclipse Modelling Framework (Eclipse)

@item EMI
ElectroMagnetic Interference

@item EMI
External Machine Interface [protocol] (SMS)

@item EMISA
EntwicklungsMethoden fuer InformationsSysteme und deren Anwendung (org., GI)

@item EML
Element Management Layer (TMN)

@item EMM
Expanded Memory Manager

@item EMMA
European MultiMedia Award

@item EMP
Excessive Multiple Posting (Usenet, ECP, spam)

@item EMR
Electro-Magnetic Radiation

@item EMRL
EMbedded RAID Logic (Adaptec, RAID)

@item EMS
Energy Management System

@item EMS
Enhanced Messaging Service (mobile-systems)

@item EMS
European Mathematical Society (org.), http://www.emis.de

@item EMS
Expanded Memory Specification (DOS, Intel)

@item EMSC
Electronic Mail Standards Committee (org.)

@item EMU
EAP Method Update (EAP)

@item EMV
ElektroMagnetische Vertraeglichkeit (EN 55022, DIN, VDE 0878)

@item EMV
Europay, MasterCard and VISA (org., banking)

@item EMX
Enterprise Messaging eXchange [switch]

@item EN
Europa Norm (Europe)

@item ENA
Electronic Networking Association (org., Internet)

@item ENA
Enterprise Networking Association (Banyan, VINES, user group, org.), http://www.abui.org

@item ENA
European Networking Associates (org., Europe), http://www.ena.net

@item ENA
Extended Network Addressing (IBM, SNA)

@item ENDC
European Network Design Center (3COM)

@item ENDIVE
Enhanced Direct Interface Video Extensions (OS/2, MMPM/2, IBM), "EnDIVE"

@item ENF
Embedded NAS Firmware (RAID, NAS, ArtStor)

@item ENIAC
Electronic Numerical Integrator And Computer

@item ENISA
European Network and Information Security Agency (org.), http://www.enisa.europa.eu/

@item ENP
Embedded NPrinter (NEST, Novell)

@item ENS
Enterprise Network Services (Banyan, VINES)

@item ENSA
Enterprise Network Storage Architecture (HP)

@item ENSIQ
ENS - Information Query (Banyan, VINES, ENS), "ENS IQ"

@item ENSMT
ENS - Management Tool (ENS, Banyan, VINES), "ENS-MT"

@item ENUM
tElephone NUmber Mapping (VoiP)

@item EO
Europe Online (network)

@item EOA
End Of Address

@item EOB
End Of Block

@item EOCB
Electrical Optical Circuit Board [project] (Bosch, Siemens, IZM, ...)

@item EOD
End Of Discussion (slang, Usenet, IRC)

@item EOD
Erasable Optical Disk (OD)

@item EOF
End Of File

@item EOF
End Of Frame (S-ATA)

@item EOF
Enterprise Objects Framework (NeXT)

@item EOI
End Of Input

@item EOI
End Of Interrupt

@item EOI
End Or Identify (GPIB)

@item EOJ
End Of Job

@item EOL
End Of Line

@item EOLAS
Embedded Objects Linked Across Systems (manufacturer, USA)

@item EOM
End Of Message

@item EON
Enhanced Other Networks (RDS)

@item EOP
End Of Procedure (Fax)

@item EOS
Electrical OverStress

@item EOS
Extended Operating System (OS)

@item EOSL
End Of Service Life

@item EOT
End Of Text

@item EOT
End Of Thread (slang, Usenet, IRC)

@item EOT
End Of Transmission

@item EOTD
Enhanced Observed Time Difference (LBS, GPS), "E-OTS"

@item EOUG
European Oracle User Group (org., DB, Oracle, user group, Europe)

@item EOWG
[WAI] Education and Outreach Working Group (WAI)

@item EP
Enterprise Portal (SAP)

@item EP3
[the] Extensible PERL PreProcessor (PERL)

@item EPA
Enhanced Performance Architecture

@item EPA
Environmental Protection Agency (USA, org.)

@item EPAC
Ein-Platinen-Allzweck-Computer (IC, C'T)

@item EPAC
Electronic Packaging and Assembly Concept

@item EPAL
Enterprise Privacy Authorization Language (W3C)

@item EPBR
Extended Partition Boot Record (PowerQuest)

@item EPC
Electronic Product Code (RFID)

@item EPCC
Edinburgh Parallel Computing Center (org., UK, HPC), http://www.epcc.ed.ac.uk

@item EPDF
Embedded Portable Document Format (Adobe, PDF, HTML)

@item EPEL
Extra Packages for Enterprise Linux (Linux, RHEL, Fedora)

@item EPG
Electronic Program Guide (DVB)

@item EPH
Electronic Payment Handling (banking)

@item EPHOS
European Procurement Handbook for Open Systems

@item EPIA
Embedded Platform Innovative Architecture [motherboard] (VIA)

@item EPIC
Eclipse PERL Integration Project (Eclipse, PERL)

@item EPIC
Electronic Privacy Information Center (cryptography), http://www.EPIC.org

@item EPIC
Embedded Platform for Industrial Computing

@item EPIC
European Public sector Information systems Conference

@item EPIC
Explicit Parallelism Instruction Computing (Intel, CPU, VLIW)

@item EPIM
Ethernet Port Interface Module (ethernet)

@item EPIX
Enhanced Performance unIX (Unix), "EP/IX"

@item EPK
Ereignisgesteuerte ProzessKette

@item EPL
Elektronenstrahl-ProjektionsLithographie

@item EPLD
Erasable Programmable Logic Device

@item EPN
Electronic-highway Platform Netherlands (ISP, Netherlands), http://www.epn.net

@item EPOC
[not an acronym] (Psion, OS, PDA), http://www.ew.software.psion.com

@item EPOC
EPON Over Coax (DOCSIS, EPON), "EPoC"

@item EPON
Ethernet Passive Optical Network (DOCSIS, IEEE 802.3)

@item EPP
Easy PhotoPrint (Canon)

@item EPP
Education Purchase Plan (Adobe)

@item EPP
Enhanced Parallel Port / Protocol (Intel, Zenith, Xircom, IEEE 1284)

@item EPP
Enhanced Performance Profiles (Nvidia)

@item EPP
Extensible Provisioning Protocol (RFC 3730/3731/3732/3733/3734/3735), ftp://ftp.rfc-editor.org/in-notes/rfc3730.txt, ftp://ftp.rfc-editor.org/in-notes/rfc3731.txt

@item EPROM
Erasable Programmable Read Only Memory (ROM, IC, RL, EPROM)

@item EPS
Electronic Publishing Systems

@item EPS
Embedded PServer (NEST, Novell)

@item EPS
Enterprise Protection Strategy (TrendMicro)

@item EPSA
Early Page Space Allocation (AIX, IBM)

@item EPSI
Encapsulated PostScript Interchange

@item EPSIG
Electronic Publishing Special Interest Group (org.)

@item EPSS
Experimental Packet-Switching System (UK)

@item EQAM
Edge QAM (QAM)

@item ER
Enterprise Replication (IDS, Informix, DB)

@item ER
Externer Rechner (T-Online)

@item ERAT
Effective to Real Address Translation [table] (Power4, IBM, CPU, EA, RA)

@item ERC
European Radiocommunications Committee (WLAN)

@item ERCIM
European Research Consortium for Information and Mathematics (org., GMD, INRIA, CWI, RAL, ..., Europe), http://www-ercim.inria.fr

@item ERD
Entity-Relationship Diagram

@item ERIN
Environmental Resources Information Network (Australia, network)

@item ERL
Electronic Research Lab (Volkswagen, USA)

@item ERM
Enterprise Resource Management

@item ERM
Entity Relationship Model (DB)

@item ERO
European Radiocommunications Office (org., Europe, CEPT), http://www.ero.dk

@item EROM
Erasable Read Only Memory (ROM, IC)

@item ERP
Enterprise Resource Planning [software]

@item ERS
Enterprise Resource Sharing (ENS, Banyan, VINES)

@item ERS
Error Report Suppression [flag] (CATNIP)

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

@item ES
Embedded Systems

@item ES
End System (ATM)

@item ES
Errored Seconds (DS1/E1)

@item ES
European Standard (ETSI)

@item ES
Extended Services (OS/2)

@item ES
Extra Segment [register] (CPU, Intel, assembler)

@item ES1
EliteSwitch/1 (SMC, FDDI), "ES/1"

@item ESA
Enterprise Systems Architecture (IBM, MVS/XA, VM, CMS)

@item ESA
Entertainment Software Association (org., USA), http://www.theesa.com

@item ESANN
European Symposium on Artificial Neural Networks (conference, NN), http://www.dice.ucl.ac.be/neural-nets/esann/esann.html

@item ESAXA
Enterprise Systems Architecture / eXtended Architecture (IBM, ESA, XC), "ESA/XA"

@item ESAXC
Enterprise Systems Architecture / eXtended Configuration (IBM, ESA, XA), "ESA/XC"

@item ESB
Enterprise Service Bus (Iona, OSS, IBM, SOA)

@item ESCD
Extended System Configuration Data (BIOS, PNP)

@item ESCO
Extended Synchronous Connection Orientated (Bluetooth), eSCO

@item ESCON
Enterprise Systems CONnect(ion) (IBM, I/O)

@item ESCP2
Epson Specific/Standard Code / Protocol 2 (printing), "ESC/P2"

@item ESD
Electronic Software Distribution

@item ESD
ElectroStatic Discharge

@item ESDC
Extra Segment Descriptor Cache [register] (ES, Intel, CPU)

@item ESDI
Enhanced Standard Device Interface

@item ESDS
Entry Sequenced Data Set (VSAM)

@item ESE
Extensible Storage Engine (AD, MS)

@item ESEC
European Software Engineering Conference (GI, BCS, AFCET, AICA, OEGI, SI, conference)

@item ESER
Einheitliches System dEr Rechentechnik (GDR)

@item ESF
Extended Super Frame (ISDN, T1)

@item ESI
End System IDentifier (ATM)

@item ESIOP
Environment Specific Inter-ORB Protocol (OMG, CORBA, ORB, DCE)

@item ESIS
Element Structure Information Set (SGML)

@item ESIS
End System to Intermediate System [protocol / routing] (OSI), "ES-IS"

@item ESK
[Fraunhofer] Einrichtung Systeme der Kommunikationstechnik (org.), http://www.esk.fraunhofer.de

@item ESM
External Storage Module (Sun)

@item ESMD
Embedded Storage Module Disk

@item ESMD
Enhanced Storage Module Device

@item ESMTP
Extended Simple Message Transport Protocol (SMTP, RFC 1425/1869), ftp://ftp.rfc-editor.org/in-notes/rfc1869.txt, ftp://ftp.rfc-editor.org/in-notes/rfc1425.txt

@item ESN
Electronic Serial Number

@item ESN
Electronic Switched Network

@item ESNET
Energy Sciences NETwork (network, USA, Internet)

@item ESORICS
European Symposium On Research In Computer Security (Konferenz)

@item ESP
[IP] Encapsulating Security Payload (IPSEC, IP, RFC 1825/1827/2406, VPN), ftp://ftp.rfc-editor.org/in-notes/rfc2406.txt

@item ESP
Easy Software Products (manufacturer, CUPS)

@item ESP
EFI System Partition (EFI)

@item ESP
Electronic Stability Program (car)

@item ESP
Emulation Sensing Processor (QMS)

@item ESP
Ethernet Serial Port (ethernet)

@item ESP
Extreme Support through Personalization (IBM)

@item ESPCM
Electronic Speech systems Pulse Code Modulation (PCM)

@item ESPRIT
European Strategic Program of Research and Development in Information Technology (Europe)

@item ESR
Event Service Routine (IPX)

@item ESR
Extended Support Release

@item ESRAM
??? Static Random Access Memory (RAM, IC, RL), "eSRAM"

@item ESRB
Entertainment Software Rating Board (ESA)

@item ESS
Embedded Security System (IBM, TPM)

@item ESS
Extended Service Set (WLAN)

@item ESSBASE
Extended Spread Sheet dataBASE (MDBMS, DB)

@item ESSI
European Software and Systems Initiative

@item ESSID
Extended Service Set IDentification (SSID, WLAN)

@item EST
Eastern Standard Time [-0500] (TZ, EDT, USA)

@item ESTO
Electronic Systems Technology Office (org., ARPA), http://esto.sysplan.com/esto

@item ETA
Estimated Time of Arrival (SCP)

@item ETAI
Electronic Transactions on Artificial Intelligence (AI)

@item ETANN
Electrically Trainable Analog Neural Network (NN)

@item ETAS
Elektronisches Teile-AuskunftsSystem (MBAG)

@item ETB
Elektronisches TelefonBuch (T-Online)

@item ETB
End of Transmission Blank / Block

@item ETC
European Test Conference (VDE, IEEE-CS, conference)

@item ETE
End-To-End

@item ETG
Enterprise Transaction Gateway (EDI, NT)

@item ETH
Eidgenoessische Technische Hochschule

@item ETHZ
Eidgenoessische Technische Hochschule Zuerich (org., Switzerland), http://www-ir.inf.ethz.ch

@item ETK
Embedded ToolKit [for Windows CE] (MS, Windows, CE)

@item ETL
Extraction, Transformation and Loading

@item ETLA
Extended Three Letter Acronym

@item ETNO
European Telecommunications Network Operators Association (org., ISP), http://www.etno.be

@item ETO
Essentials - Tools - Objects (Apple), "E.T.O."

@item ETR
Early Token Release (Token Ring)

@item ETR
Evaluation Technical Report (CC)

@item ETS
Embedded ToolSuite (Phar Lap)

@item ETS
Emergency Telecommunication Service (RFC 3689), ftp://ftp.rfc-editor.org/in-notes/rfc3689.txt

@item ETS
European Telecommunication Standard (ETSI)

@item ETS
Executable Test Suite (ISO 9646-1)

@item ETSI
European Telecommunication Standards Institute (org., Europe, ETSI), http://www.etsi.org

@item ETX
End of Transmission teXt

@item EU
Execution Unit (CPU)

@item EUC
Extended Unix Code (Unix, AT&T)

@item EUD
End User Development

@item EUDC
EMACS Unified Directory Client (EMACS)

@item EULA
End User License Agreement (MS, DRM)

@item EUNET
European Unix NETwork (network, Internet, ISP, Unix), http://www.eu.net

@item EURID
European Registry of Internet Domain names (org., Internet, Europe), http://www.eurid.org

@item EUROISPA
EUROpean Internet Service Provider Association (org., ISP), "EuroISPA", http://www.euroispa.org

@item EUS
EntscheidungsUnterstuetzende Systeme

@item EUSES
End Users Shaping Effective Software [initiative] (USA)

@item EUSIDIC
??? [European Association of Information Services] (org., Europe), http://www.eusidic.org

@item EUSUVP
EntscheidungsUnterstuetzendes System UmweltVertraeglichkeitsPruefung (EuropeS, XPS, Uni Hamburg, Germany)

@item EUUG
European Unix User Group (org., user group, Unix, Europe)

@item EUV
Extreme UltraViolet

@item EUVL
Extreme UltraViolet Lithography

@item EV
EtagenVerteiler (cable, EN 50 173)

@item EVA
[StorageWorks] Enterprise Virtual Array (HP, HDD)

@item EVBIT
Ergaenzende VertragsBedingugen - InformationsTechnik, "EVB-IT"

@item EVC
Enhanced Video Connector (VESA)

@item EVD
Enhanced Versatile Disk (China)

@item EVDO
Enhanced Voice-Data Optimized / Only (mobile-systems, Qualcomm, ITU), "EV-DO"

@item EVE
Extended Virtual Environment

@item EVMS
Enterprise Volume Management System (OSS, IBM)

@item EVN
EinzelVerbindungsNachweis (DTAG)

@item EVP
Enhanced Virus Protection (AMD, CPU)

@item EWAS
Elektronisches WareneingangsAbwicklungsSystem (MBAG)

@item EWD
Engine and Warming Display (Airbus, A380), "E/WD"

@item EWIKO
[verein zur foerderung] Elektronischer WIssenschaftsKOmmunikation (org.)

@item EWOS
European Workshop for Open Systems (OSI, ODA), http://www.ewos.be

@item EWS
Employee Written Software (IBM)

@item EWS
European Workshop on SGML (org., SGML)

@item EXBI
EXaBInary [(2^10)^6] (IEC)

@item EXCA
EXchangeable Card Architecture, "ExCA"

@item EXFAT
Extended File Allocation Table (FAT), "exFAT"

@item EXFCB
EXtended File Control Block

@item EXIF
Exchangeable Image File Format (DCF, photo, CIPA), http://www.exif.org

@item EXSLT
Enhanced eXtensible Stylesheet Language Transformations (XSL, XML, XSLT)

@item EXTRA
EXecutionTRace Analyser (IBM, OS/2)

@item EXUG
European X Users Group (org., user group, Europe), http://www.nads.de/exug/exug.html

@item EXZ
EXcessive Zeros [error event] (DS1/E1, DS3/E3)

@item EZ
EchtZeit (fair)

@end table