-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvera.e
1532 lines (1023 loc) · 27.4 KB
/
vera.e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
@c -*-texinfo-*-
@c This is part of the GNU edition of V.E.R.A.
@c Copyright (C) 1993/2006 Oliver Heidelbach
@c See the file vera.texi for copying conditions.
@c
@c Syntax:
@c ACRONYM
@c Expansion[ (Reference)][, "Style"]
@c Additional explanations are included in [square brackets]
@table @asis
@item 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 (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 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"
@item EAPD
External Amplifier Power Down
@item EAPOL
Extensible Authentication Protocol Over LAN (EAP, LAN, cryptography, WLAN, RSN), "EAPoL"
@item EAPS
Ethernet Automatic Protection Switching (LAN, MAN, RFC 3619)
@item EAPTLS
TLS over EAP (TLS, EAP, WLAN), "EAP-TLS"
@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)
@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 EAX
Environmental Audio eXperience ??? (audio)
@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"
@item EC
Electronic Commerce
@item EC
Error Correction (MODEM)
@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)
@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
@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)
@item ECHT
European Conference on Hypermedia Technology (INRIA, conference)
@item ECI
Efficient Channel Integration (ADC, EDI)
@item ECI
European Color Initiative (org., Europe, DTP)
@item ECIS
European Committee for Interoperable Systems (org.)
@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)
@item ECMP
Electroning Commerce Modeling Language (RFC 4112)
@item ECMS
Enterprise Content Management System (CMS)
@item ECN
European Counter Network
@item ECN
Explicit Congestion Notification (IP, RFC 2481)
@item ECNE
Enterprise Certified Novell Engineer (Novell, Netware)
@item ECOC
European Conference on Optical Communications (conference)
@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)
@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.)
@item ECRM
Electronic Customer Relationship Management (Internet), "eCRM"
@item ECS
EComStation (OS/2), "eCS"
@item ECS
Elitegroup Computer Systems (manufacturer, Taiwan)
@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
@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
@item EDR
External Developer Release
@item EDRAM
Enhanced Dynamic Random Access Memory (RAM, DRAM, IC)
@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 EEAG
Elektro- und ElektronikAltGeraete
@item EEE
[UDB] Enterprise Extended Edition (IBM, DB2, DB, UDB)
@item EEI
Equipment to Equipment Interface
@item EEI
External Environment Interface (mil., USA)
@item EELS
Engineering Electronic Library, Sweden (org., WWW, Sweden)
@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)
@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.)
@item EFI
Electronics For Imaging (manufacturer)
@item EFI
Extensible Firmware Interface (Intel, MS)
@item EFL
Eiffel Forum License (Eiffel)
@item EFL
Emitter Follower Logic (IC)
@item EFM
Eight-to-Fourteen-Modulation (CD-DA, CD-ROM, CD)
@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 EGG
Elektronischer Geschaeftsverkehr-Gesetz Germany
@item EGMS
E-Government Metadata Standard (RSS, UK)
@item EGO
Enterprsie Grid Orchestrator
@item EGP
Exterior Gateway Protocol (RFC 904)
@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 EHF
Encoding Header Field (Internet, RFC 1154)
@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.)
@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)
@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)
@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)
@item EIST
Enhanced Intel Speedstep Technology (Intel, Pentium)
@item EIT
Encoded Information Type
@item EIT
Event Information Table (DVB, EPG)
@item EITS
Eesti InfoTehnoloogia Seltsi (org., Estland)
@item EJB
Enterprise Java Beans (Java, Sun)
@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)
@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 System ??? (Novell, Netware)
@item EM
Extensions Manager (Apple)
@item EM64T
Extended Memory [64] Technology (Intel)
@item EMA
Electronic Messaging Association (org., USA)
@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)
@item EMC
ElectroMagnetic Compatibility
@item EMEA
[IBM] Europe, Middle East, Africa (IBM)
@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.)
@item EMS
Expanded Memory Specification (DOS, Intel)
@item EMSC
Electronic Mail Standards Committee (org.)
@item EMV
ElektroMagnetische Vertraeglichkeit (EN 55022, DIN, VDE 0878)
@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.)
@item ENA
European Networking Associates (org., Europe)
@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.)
@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 EOM
End Of Message
@item EON
Enhanced Other Networks (RDS)
@item EOP
End Of Procedure (Fax)