-
Notifications
You must be signed in to change notification settings - Fork 1
/
vera.m
1994 lines (1331 loc) · 33.5 KB
/
vera.m
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 MAC
Mandatory Access Control (MLS, DAC)
@item MAC
Media Access Control (ISO, OSI, LAN, , WLAN, ...)
@item MAC
Membership Advisory Committee (ICANN)
@item MAC
Message Authentication Code (SSL, SRT, cryptography)
@item MACH
Multilayer ACtuator Head
@item MACID
Media Access Control IDentifier, "MAC-ID"
@item MACOS
MACintosh Operating System (Apple, OS), "MacOS"
@item MACS
Manufacturing Application Control System (SNI)
@item MACS
MODEM Access Control System (MODEM, DES, cryptography), "M.A.C.S."
@item MACSBUG
Motorola Advanced Computer Symbolic deBUGger (Motorola)
@item MAD
Memory Address Driver strength (BIOS)
@item MAD
Message Address Directory
@item MAD
Militaerischer AbschirmDienst (mil., org.)
@item MADCAP
Multicast Address Dynamic Client Allocation Protocol (RFC 2730, Multicast)
@item MADE
Multimedia Application Development Environment (CWI)
@item MADK
Microsoft Activex Development Kit (ActiveX, MS)
@item MADT
Multiple APIC Description Table (ACPI, APIC)
@item MAE
Macintosh Application Environment (Apple, Sun, HPUX)
@item MAE
Metropolitan Area Exchange (Internet)
@item MAINSAIL
MAchine INdependent SAIL (SAIL)
@item MAJC
Microprocessor Architecture for Java Computing [pronounced 'magic'] (Sun, Java)
@item MAJOUR
Modular Application for JOURnals (EWS, SGML)
@item MAM
Multi Access Module
@item MAME
Multiple Arcade Machine Emulator, "M.A.M.E."
@item MAN
Metropolitan Area Network
@item MANET
Mobile Ad-hoc NETwork (Internet)
@item MAP
Maintenance Analysis Procedure (IBM)
@item MAP
Manufacturing Automation Protocol (General Motors)
@item MAP
Microsoft Academic Program (MS)
@item MAP
Mobile Application Part (MSC, GSM, mobile-systems)
@item MAP27
Mobile Access Protocol [for MPT 1327] (MPT 1327), "MAP 27"
@item MAPASE
Mobile Application Part - Application Service Elements (MAP, MSC, GSM, mobile-systems), "MAP-ASE"
@item MAPI
Messaging Application Program Interface (MS, WOSA, API)
@item MAPOS
Multiple Access Protocol over SONET/SDH (SONET, SDH, RFC 2171)
@item MAPTOP
Manufacturing Automation Protocol/Technical Office Protocol, "MAP/TOP"
@item MAR
Microprogram Address Register (IC)
@item MARC
MAchine Readable Cataloging [record]
@item MARID
MTA Authorization Records in DNS (MTA, DNS, SPAM, IETF, WG)
@item MAS
Multi Agent Systems (AI)
@item MAS90
Mittelstands-Anwendungs-System 90 (IBM)
@item MASC
Multicast Address-Set Claim [protocol] (RFC 2909, Multicast)
@item MASE
Message Administration Service Element
@item MASM
Microsoft ASseMbler (MS, assembler)
@item MASS
Message Authentication Signature Standards (MTA, SPAM, WG)
@item MAU
Medium Access Unit
@item MAU
Medium Attachment Unit (IEEE 802.3, Transceiver)
@item MAU
Multistation Access Unit (Token Ring, Hub)
@item MAUS
Muensters Apple User Service (BBS, network), "M.A.U.S."
@item MAW
Microsoft At Work
@item MAWI
MAterialWIrtschaft
@item MAX
MAssively parallel uniX (Cray, OS, MIMD, MPP, Unix)
@item MAX
Media Access Exchange (Ascend)
@item MAX
Multimodaler AssemblierungseXperte (VR, Uni Bielefield)
@item MB
MailBox
@item MB
MegaByte
@item MBAG
Mercedes-Benz AktienGesellschaft (user)
@item MBC
Multi Bit Cell (IC, PCMCIA, Flash, AMD, BIT)
@item MBCMS
Mercedes-Benz-Computer-Mikrofilm-System (MBAG), "MB-CMS"
@item MBE
Molecular Beam Epitaxy (IC; MOSFET)
@item MBIT
Mega Binary digIT (BIT), "MBit"
@item MBOA
MultiBand OFDM Alliance (org., OFDM)
@item MBPS
MegaBits Per Second (BIT)
@item MBR
Master Boot Record
@item MBS
Maximum Burst Size
@item MBSA
Microsoft Baseline Security Analyzer (MS, Windows)
@item MBUS
Module BUS [standard] (Sun, SPARC), "MBus"
@item MCA
Micro Channel Architecture (IBM, PS/2)
@item MCA
Mission Critical Applications
@item MCA
Model Centric Architecture (Skynamics)
@item MCAD
Mechanical CAD (carCAD, CAD)
@item MCAV
Modified Constant Angular Velocity
@item MCB
Memory Control Block (DOS, TPA)
@item MCBF
Mean Cycle Between Failure
@item MCC
Manchester Code Converter
@item MCC
Manchester Computing Centre (Linux)
@item MCC
Mitteldeutsches Communication Center (Leipzig)
@item MCC
Multichannel Communication Controller (SCC, FCC)
@item MCD
Mini Client Driver (MS, Windows NT)
@item MCD
Multimedia Cartridge Drive (Nomai)
@item MCE
Media Center Edition (MS, Windows, XP, OEM)
@item MCEB
Military Communications-Electronics Board (org., mil., USA)
@item MCERT
Mittelstand Computer Emergency Response Team Germany
@item MCF
Meta Content Framework / Format (Apple, WWW)
@item MCF
MOM Connector Framework (MS, MOM)
@item MCGA
Multi Color Graphics Adapter (IBM, PS/2)
@item MCH
Memory Controller Hub [aka Northbridge] (Intel)
@item MCI
Measurement Layer Interface (UMA)
@item MCI
Media Control Interface
@item MCI
Microwave Communications Incorporated
@item MCL
Media Communication Lab (org., Uni Boston, USA)
@item MCM
Multi Carrier Modulation
@item MCM
MultiChip Module (CPU)
@item MCN
Metropolitan Campus Network
@item MCNE
Master Certified Netware Engineer (Novell, Netware)
@item MCNS
Multimedia Cable Network System (org.)
@item MCP
Master Control Program (OS)
@item MCP
Media and Communications Processor (IC)
@item MCP
Merlin Convenience Pack (IDB, OS/2)
@item MCP
Multiple-Chip Product (Intel)
@item MCP
Multiport / Multiprotocol Communication Processor
@item MCPAS
Master Control Program/Advanced System, "MCP/AS"
@item MCPC
Multi Channel Per Carrier
@item MCPS
Microsoft Certified Product Specialist (MS, ATEC)
@item MCR
Minimum Cell Rate (UNI, ATM, PCR, ABR)
@item MCS
Material Control System
@item MCS
Message Conversion System
@item MCS
Modulation and Coding Scheme (EGPRS, mobile-systems)
@item MCS
Multi-Category Security (SELinux)
@item MCS
MultiCast Server
@item MCS
Multichannel Communications System (Mac)
@item MCS
Multivender Customer Services (DEC)
@item MCSD
Microsoft Certified Solution Developer (MS, ATEC)
@item MCSE
Microsoft Certified System Engineer (MS, ATEC)
@item MCSMP
Message Conversion System Message Processor (MCS)
@item MCSS
Mitac Computer Security System (Mitac)
@item MCT
Microsoft Certified Trainer (MS, ATEC)
@item MCTD
Mean Cell Transfer Delay (UNI, ATM)
@item MCTS
Multiple Console Time Sharing System (OS, CAD)
@item MCU
Management & Cascade Unit (Hub)
@item MCU
Master Control Unit (Nokia, OS)
@item MCU
Micro Controller Unit (SIA, RL)
@item MCU
Multipoint Controller Unit (VoiP)
@item MCVA
Modified Constant Angular Velocity (Optical Disk)
@item MD
Make Directory (DOS, OS/2)
@item MD
Management DOMAIN
@item MD
Mini Disk (Sony)
@item MD2
Message Digest [algorithm] 2 (RFC 1115/1319)
@item MD4
Message Digest [algorithm] 4 (RFC 1320)
@item MD5
Message Digest [algorithm] 5 (RFC 1321)
@item MDA
Mail Delivery Agent
@item MDA
Medicated Digest Authentication (HTTP)
@item MDA
Model Driven Architecture (CASE, OMG)
@item MDA
Monochrome Display Adapter (IBM, PC)
@item MDAC
Microsoft Data Access Components (MS)
@item MDBMS
Multidimensional DataBase Management System (DBMS, DB)
@item MDBS
Micro Data Base System (DB)
@item MDC
Message conversion system directory Component (MCS)
@item MDC
Meta Data Coalition
@item MDCT
Modified Discrete Cosine Transformation
@item MDD
Model Driven Design (MDS)
@item MDDB
MultiDimensional DataBase (DB)
@item MDE
Mobile DatenErfassung, "mDE"
@item MDEF
Menu DEfinition Functions (Apple, CDEF)
@item MDI
Medium Dependent Interface (ethernet)
@item MDI
Mobile Data Initiative (org., GSM, mobile-systems)
@item MDI
Multiple Document Interface (MS, Windows)
@item MDI
Multiplex Device Interface
@item MDIS
MetaData Interchange Specification
@item MDIX
Medium Dependent Interface - crossed (MDI), "MDI-X"
@item MDK
MODEM Developers Kit (MODEM, MS)
@item MDL
Microstation Development Language (CAD)
@item MDM
Master Data Management
@item MDM
MicroDiskModule
@item MDM
Mobile Device Management (CA, Unicenter)
@item MDRAM
Multibank Dynamic Random Access Memory (RAM, DRAM, IC)
@item MDRC
Manufacturing Design Rule Checker
@item MDS
Manufacturing Design System
@item MDSD
Model Driven Software Development
@item MDSE
Message Delivery Service Element
@item MDSP
Mobile Device Sync Protocol (Lotus)
@item MDT
Mechanical DeskTop (SGI)
@item MDT
Message Distribution Terminal
@item MDT
Mittlere DatenTechnik
@item MDT
Mountain Daylight Time [-0600] (TZ, MST, USA)
@item ME
Mapping Entity
@item ME
Millennium Edition (MS, Windows)
@item MEBI
MEgaBInary [(2^10)^2] (IEC)
@item MEC
Memory Expansion Card
@item MEG
Mega Evil Grin (slang, Usenet, IRC)
@item MEGA
MessdatenErfassung und Graphische Auswertung
@item MEI
Matsushita Electronics Incorporated (manufacturer, Japan)
@item MEL
Maya Embedded Language (Maya)
@item MEMS
Micro-ElectroMechanical System
@item MERS
Most Economic Route Selection
@item MERT
Multiple Environment, Real Time (OS)
@item MES
Manufacturing Execution System
@item MES
Menue-EntwicklungsSystem (Sinix, SNI)
@item MES
Minimum European Set (UTF, ISO 10646)
@item MESA
MetaEmailSearchAgent (WWW, Internet)
@item MESCH
Multi-WAIS Engine for Searching Commercial Hosts (WAIS, WWW)
@item MESFET
MEtal Semiconductor Field Effect Transistor (IC, FET)
@item MESH
Macintosh Enhanced SCSI Hardware (Apple, SCSI)
@item MESI
Modified - Exclusive - Shared - Invalid (SMP)
@item MESN
Media Event Status Notification
@item MESZ
MittelEuropaeische SommerZeit [+0200] (TZ)
@item MET
Memory Enhancement Technology (HP), "MEt"
@item MET
Micro Exposure Tool (Intel, EuropeV)
@item MET
Middle European Time [+0100] (TZ, CET, METDST, MEZ)
@item METAL
Machine Evaluation and Translation Language (Siemens)
@item METAL
Macro Expansion Template Attribute Language (TAL, ZPT, ZOPE)
@item METDST
Middle European Time Daylight Saving Time [+0200] (TZ, MET, MEZ)
@item MEU
Multiformat Engine Unit (LCD, Sony)
@item MEZ
MittelEuropaeische [sommer] Zeit [+0200] (TZ)
@item MF
Multi Frequency
@item MFAST
Mwave Folded Array Signal Transform [DSP] (IBM, DSP)
@item MFC
Microsoft Foundation Classes (MS)
@item MFC
Music Feature Card (IBM, Yamaha, MIDI)
@item MFD
Multi-Functional Display (Airbus, A380)
@item MFENET
Magnetic Fusion Energy NETwork
@item MFG
Mit Freundlichen Gruessen [= best wishes]
@item MFG
Multi-Function Gateway
@item MFI
MainFrame Interactive (IBM)
@item MFII
Multi-Functional [keyboard] II (IBM)
@item MFIP
Multi-Function Interoperability Processor
@item MFKS
MultiFunktionales KonferenzSystem
@item MFLOPS
Million FLoating-point Operations Per Second (CPU)
@item MFM
Modified Frequency Modulation
@item MFP
MultiFunction Product (HP)
@item MFS
Macintosh File System (Apple)
@item MFS
Message Format Service (IBM, IMS)
@item MFS
Mobile File Sync (IBM)
@item MFS
MOSIX File System (MOSIX, DFSA)
@item MFT
Master File Table (NTFS)
@item MFT
Multiprogramming with a Fixed number of Tasks (IBM, OS, OS/MFT, OS/MVT)
@item MFV
MehrFrequenzwahlVerfahren
@item MGA
Matrox Graphics Adapter (Matrox)
@item MGA
Monochrome Graphics Adapter
@item MGCP
Media Gateway Control Protocol (VoIP, RFC 2705)
@item MGI
Multi-Function Interpreter
@item MGM
Memory Grant Manager (Informix, DB)
@item MH
Mobile Host (MHP)
@item MH
Modified Huffman (Fax)
@item MHDL
MIMIC Hardware Description Language
@item MHEG
Multimedia and Hypermedia information coding Expert Group (JTC1, ISO)
@item MHP
[columbia] Mobile Host Protocol
@item MHP
Multimedia Home Platform (ETSI)
@item MHPCC
Maui High Performance Computing Center (org., USA)
@item MHS
Message Handling System (GOSIP, X.400, Novell, SPX, IPX)
@item MHTML
Messaging HyperText Markup Language (HTML)
@item MHTML
MIME [e-mail encapsulation of aggregate documents, such as] HTML (MIME, HTML, RFC 2110)
@item MI
Management Interface
@item MIA
Missing In Action (telecommunication, Usenet, IRC)
@item MIAW
Movie In A Window
@item MIB
Management Information Base (OSI, SNMP)
@item MIC
Media Interface Connector (FDDI, PMD)
@item MIC
Memory in Cassette (Seagate, EEPROM, Streamer, AIT)
@item MIC
Memory Interface Controller (IBM, Cell)
@item MIC
Message Integrity Check / Code
@item MIC
Multiple Interface Connection (Kyocera)
@item MICA
MODEM ISDN Channel Integration (Telebit, MODEM, ISDN)
@item MICE
Modular Integrated Communications Environment
@item MICO
MICO Is CORBA (ORB, CORBA, Uni Frankfurt)
@item MID
Message IDentifier (ATM)
@item MID
Mobile Information Device
@item MID
Multiple Interface Declaration (OLSR)
@item MIDI
Musical Instruments Digital Interface (MIDI)
@item MIDL
Microsoft Interface Definition Language (NT)
@item MIDP
Mobile Information Device Profile (J2ME, Java)
@item MIDPEG
Mobile Information Device Profile Expert Group (Sun, AOL, Motorola, NEC, Nokia, Palm, Samsung, Sharp, ...)
@item MIF
Module Interconnection Facility (Proteus)
@item MIG
Mach Interface Generator (Mach)
@item MII
Media Independent Interface
@item MIKEY
Multimedia Internet KEYing (cryptography, VoIP)
@item MIL
Matrox Imaging Library
@item MILNET
MILitary NETwork (USA, mil., network)
@item MILOS
Maschinelle Indizierung auf Linguistischer Grundlage fuer OPAC Systeme (OPAC)
@item MILSTAR
Military Strategic TActical Relay (mil., USA)
@item MILSTD
Military STandarD (mil., USA), "MIL-STD"
@item MIMD
Multiple Instruction [stream], Multiple Data [stream] (CPU)
@item MIME
Multipurpose Internet Mail Extensions (RFC 2045/2046/2047/2048/2049, IETF)
@item MIMO
Multiple Input, Multiple Output (Agere-Systems, WLAN, Bell)
@item MIMO
Multiple Input, Multiple Output (WLAN)
@item MIMOLA
Machine Independent MicrOprogramming LAnguage (HDL)
@item MIN
Multistage Interconnection Networks
@item MINC
Multilingual Internet Names Consortium (org., Internet, DOMAIN)
@item MINISTREL
Models for INformatIon STorage and REtrievaL (OA, BIS, ESPRIT)
@item MINT
Mint is Not TOS (Atari), "MiNT"
@item MINT
Multimedia-kommunikation aif Integrierten Netzen und Terminals
@item MINX
Multimedia Information Network eXchange
@item MIO
Memory Input/Output (Motorola)
@item MIO
Modular Input/Output [architecture] (HP)
@item MIP
Main Information Packet (CD-MRW)
@item MIP
Multimission Interactive Picture
@item MIP
Multum In Parvo (3D, SAT)
@item MIPS
Microprocessor without Interlocked Piped Stages
@item MIPS
Million Instructions Per Second (CPU)
@item MIR
Maximum Information Rate
@item MIR
Micro-Instruction Register (IC)
@item MIS
Management Information System
@item MIS
Mega Iterations per Second
@item MISD
Multiple Instruction [stream], Single Data [stream] (CPU)
@item MISO
Multiple Input, Single Output (WLAN)
@item MISRA
Motor Industry Software Reliability Association (UK)
@item MISS
Mecklenburg Internet Service System (ISP)
@item MISSI
Multilevel Information System Security Initiative (org.)
@item MISX
Metered Services Information eXchange (Internet)
@item MIT
Management Information Tree
@item MIT
Massachusetts Institute of Technology (org., USA)
@item MIT
Mobile Internet Toolkit (MS, .NET)
@item MJ
Modular Jack
@item MKS
Mortice Kern Systems (manufacturer)
@item MKT
Multifunktionelles KartenTerminal (CT, ICC)
@item ML
Mail List
@item ML
Maintenance Lead (JCP)
@item ML
Meta Language
@item ML2
MaskLess Lithography
@item MLA
Mail List Agent
@item MLA
Micro Lens Array
@item MLC
MultiLevel Cell (IC, PCMCIA, Flash, Intel)
@item MLD
Multicast Listener Discovery [protocol] (IPV6, Multicast, RFC 2710)
@item MLE
MultiLine Entry field (IBM, OS/2)
@item MLI
Measurement Layer Interface (UMA)
@item MLI
Multiple Link Interface (ODI)
@item MLIA
[symposium on] Machine Learning in Information Access (AAAI, AI, conference)
@item MLID
Multiple Link Interface Driver (ODI, LAN)
@item MLM
Mailing List Manager [software]
@item MLMA
Multi-Level Multi-Access (MAC)
@item MLP
Meridian Lossless Packaging (DVD, audio)
@item MLP
Mozilla Localization Project (Mozilla)
@item MLP
MultiLink Point-to-Point Protocol (PPP)
@item MLR
Multi-channel Linear Recording [technology] (Tandberg, Streamer)
@item MLS
MultiLevel Secure [operating systems / platforms] (SELinux)
@item MLT
Master Lower Tester (ISO 9646-3, TTCN)
@item MLT3
MuLTilevel-3 [encoding] (Schneider & Koch, FDDI), "MLT-3"
@item MM
Media Manager (Novell, Netware, SMS)
@item MM
Military Message (mil.)
@item MM
Mobile Management (RR, CM, GSM, mobile-systems)
@item MMA
Microcomputer Managers Association (org., USA)
@item MMA
MIDI Manufacturer Association (org., IMA)
@item MMAPI
Mobile Media API (Java, Sun, JMF, API)
@item MMC
Microsoft Management Console (MS, Windows NT, XP)
@item MMC
MIDI Machine Control
@item MMC
MultiMedia Commands (SAM)
@item MMC
MultiMediaCard
@item MMCA
MultiMediaCard Association (org.)
@item MMCD
MultiMedia Compact Disk (Sony, Philips, CD)
@item MMCDE
MultiMedia Compact Disk - Erasable (Sony, Philips, CD), "MMCD-E"
@item MMCF
MultiMedia Communications Forum (org.)
@item MMDO
Magnetic Modulation Direct Overwrite
@item MMDS
Multi-channel, Multi-point Distribution System