-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvera.d
2525 lines (1685 loc) · 43.4 KB
/
vera.d
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 D2B
Domestic Digital Bus
@item D2D2T
Disk To Disk To Tape (Streamer, LTO)
@item D3D
Direct3D (DirectX, MS)
@item D3DRM
Direct3D Retained Mode (DirectX, MS)
@item DA
Data Area (CD-MRW, SA)
@item DA
Destination [MAC] Address (SNA, Token Ring, ATM, FDDI, ...)
@item DA
Digital-to-Analog (D/A), "D/A"
@item DA11
DatenAustauschphase 11 [allgemeine bauabrechnung] (GAEB)
@item DA81
DatenAustauschphase 81 [leistungsverzeichnis] (GAEB)
@item DA82
DatenAustauschphase 82 [kostenanschlag] (GAEB)
@item DA83
DatenAustauschphase 83 [angebotsanforderung] (GAEB)
@item DA84
DatenAustauschphase 84 [angebotsabgabe] (GAEB)
@item DA85
DatenAustauschphase 85 [nebenangebot] (GAEB)
@item DA86
DatenAustauschphase 86 [zuschlag/auftragserteilung] (GAEB)
@item DAA
Device Access Architecture (Vireo)
@item DAA
Digest Access Authentication (HTTP)
@item DAAP
Digital Audio Access Protocol (DMAP, Apple)
@item DAB
Digital Audio Broadcasting
@item DAC
Digital to Analog Converter
@item DAC
Discretionary Access Control (Unix, Linux, MAC)
@item DAC
Dual Address Cycle (PCI)
@item DAC
Dual Attached Concentrator (FDDI)
@item DACAPO
??? [hardware description language] (HDL)
@item DACNOS
Distributed Academic Computing Network Operating System (OS, HECTOR)
@item DACS
Digital Access Control System (ISDN, DES, cryptography)
@item DACT
DAta Compression Technology
@item DAD
Desktop Application Director (WordPerfect)
@item DAE
Digital Audio Extraction (CD, audio)
@item DAEMON
Disk And Execution MONitor (Unix)
@item DAF
Distributed Application Framework (CCITT)
@item DAG
DatenAnschaltGeraet
@item DAG
Directed Acyclic Graph (NVSG)
@item DAI
??? (Sun)
@item DAI
Device Application Interface (Novell, Netware, SMS)
@item DAI
Distributed Artificial Intelligence (AI)
@item DAIDALOS
Designing Advanced network Interfaces for the Delivery and Administration of Location independent, Optimized personal Services (Europe)
@item DAINET
Deutsches AgrarInformationsNETz (WWW, org.)
@item DAIS
Database Access and Integration Services (GGF, WG, grid, OGSA)
@item DAIS
Distributed Application Integration System (ORB)
@item DAISGR
Database Access and Integration Service Group Registry (DAIS, grid)
@item DAL
Data Access Language (Apple)
@item DALI
Distributed Artificial LIfe (AI), "DALi"
@item DAM
Debian Account Manager (Linux, Debian)
@item DAM
Direct Access Method / Mode (DAM, SAM)
@item DAM
Distributed Abstract Machine
@item DAM
Draft AMendment (ISO)
@item DAMLOIL
DARPA Agent Markup Language and Ontology Inference Layer (DARPA, RDF, KM), "DAML+OIL"
@item DAMQAM
Dynamically Adaptive Multicarrier Quadrature Amplitude Modulation
@item DANA
De.Admin.News.Announce (Usenet), "D.A.N.A."
@item DANTE
Delivery of Advanced Network Technology to Europe (org., Europe)
@item DANTE
Deutschsprachige ANwendervereinigung TEx [e.v.] (TeX, user group, org.)
@item DAO
Data Access Objects (DB)
@item DAO
Destination Address Omitted [flag] (CATNIP)
@item DAO
Disk At Once (CD-R, SAO)
@item DAP
Data Access Protocol (DEC, DNA)
@item DAP
Developers Assistance Program (IBM)
@item DAP
Directory Access Protocol (X.500, DS)
@item DAP
Directory Application Protocol (IN)
@item DAP
Document Application Profile (JTC1, ODIF, ODA)
@item DAPE
Distributed Application Programming Environment (ORB)
@item DAPHNE
Document Application Processing in a Heterogeneous Network Environment
@item DAPIE
Developer API Extensions (IBM, OS/2, API)
@item DARI
Database Application Remote Interface (IBM, DB)
@item DARMP
Defense Automation Resources Management Program (mil., USA)
@item DARPA
Defense Advanced Research Projects Agency (org., USA)
@item DART
Dynamic Advertising Reporting & Targeting [technology] (WWW, Doubleclick)
@item DAS
Database Access Service (MS, MOM)
@item DAS
Direct Attached Storage
@item DAS
Directory Assistance Service [protocol] (RFC 1202)
@item DAS
Disk Array Subsystem (Unix, HP-UX)
@item DAS
Dual Attached Station (FDDI)
@item DAS
Dual Attachment Station (FDDI, Schneider & Koch)
@item DAS
Dynamic Allocation Scheme [protocol]
@item DASD
Direct Access Storage Device
@item DASI
Dial Access Signaling Interface
@item DASP
Drive Active, Slave Present (IDE)
@item DASS
Digital Access Signaling System
@item DASS
Distributed Authentication Security Service (RFC 1507)
@item DAT
Digital Audio Tape (Digital audio)
@item DATEV
DATEnVerarbeitungszentrale der steuerberatenden Berufe (org., Nuernberg, Germany)
@item DATEX
DATa EXchange
@item DATEXJ
DATa EXchange - Jedermann (DTAG), "DATEX-J"
@item DATEXL
DATa EXchange - Leitungsvermittlung
@item DATEXM
DATa EXchange - Multimegabit (DTAG, SMDS, BIT), "DATEX-M"
@item DATEXP
DATa EXchange - Packetized / Packetvermittlung (DTAG, X.25), "DATEX-P"
@item DAU
Duemmster Anzunehmender User (slang, Usenet, IRC)
@item DAV
[WWW] Distributed Authoring and Versioning (WWW, HTTP)
@item DAV
Digital Audio Video (Apple, Digital audio)
@item DAVIC
Digital Audio Visual Interoperatibility Council (org., Digital audio)
@item DAVID
Digital Audio Video Interactive Decoder (Digital audio)
@item DAVIS
DAimler-Benz Vertragspartner-InformationsSystem (MBAG)
@item DAWN
Defense Attache Worldwide Network (network, mil.)
@item DAX
Developer API eXtension (OS/2, IBM, API)
@item DB
DataBase
@item DB2
DataBase 2 (IBM, DB)
@item DB2CS
DataBase 2 Client/Server (IBM, DB2, DB), "DB2 C/S"
@item DB2SDK
DataBase 2 Software Development Toolkit (DB2, IBM, DB), "DB2 SDK"
@item DBA
DataBase Administrator (DB)
@item DBA
Drei Buchstaben Akronym
@item DBAC
DataBase Administration Center (DB)
@item DBAS
DataBase Administration System (DB)
@item DBC
Device Bay Controller
@item DBCS
Double-Byte Character Set
@item DBD
DataBase Description (IBM, DB)
@item DBDMA
Descriptor Based Direct Memory Access (Apple, DMA)
@item DBEF
Dual Brightness Enhancement Foile (LCD)
@item DBI
DataBase Interface (DB)
@item DBL
DataBase Language (DB)
@item DBLO
Dual Beam Landing Optimizer
@item DBLT
Dynamic Back Link Technology (WWW)
@item DBM
DataBase Manager (DB)
@item DBME
DataBase Management Environment (DB)
@item DBMS
DataBase Management System (DB)
@item DBOS
Disk/Drum Based Operating System (OS)
@item DBP
DataBase Publishing (DB)
@item DBP
Delay Bandwidth Product
@item DBRAD
Data Base Relational Application Directory (DB)
@item DBRM
Data Base Request Module (DB)
@item DBS
Demand-Based Switching (Intel, Xeon)
@item DBS
Deutscher Bildungs-Server (DFN, WWW)
@item DBS
Duplex Bus Selector
@item DBSC
Dynamic Beam Spot Control (Eizo)
@item DBTG
Data Base Task Group (CODASYL, DB)
@item DBVS
DatenBankVerwaltungsSystem (DB)
@item DC
Data Cartridge
@item DC
Data-to-Clock [jitter] (DVD)
@item DC
Device Context
@item DC
Dublin Core [meta data]
@item DCA
Data Center Automation
@item DCA
Defense Communications Agency (org., USA, mil., predecessor, DISA)
@item DCA
Digital Communication Associates
@item DCA
Digital Controlled Amplifier (VCA)
@item DCA
Distributed Communication Architecture (Sperry Univac)
@item DCA
Document Center Architecture
@item DCA
Document Content Architecture (IBM, CCS)
@item DCA2
Dynamic Cache Architecture [level] 2
@item DCAF
Distributed Console Access Facility
@item DCAP
Data link switching Client Access Protocol (DLSW, RFC 2114)
@item DCB
Data Control Block
@item DCB
Disk Coprocessor Board (Novell, SCSI, HBA)
@item DCC
Data Communications Computer
@item DCC
Data Country Code (ATM)
@item DCC
Desktop Control Center (Intel)
@item DCC
Digital Content Creation
@item DCC
Direct Client to Client (IRC)
@item DCC
Display Combination Code
@item DCC
DOS Command Center
@item DCCA
Dependable Computing for Critical Applications (conference)
@item DCCA
Distributed Component Computing Architecture (Star, C/S)
@item DCCH
Dedicated Control CHannel (GSM, mobile-systems)
@item DCCS
DisContiguous Shared Segments
@item DCD
Data Carrier Detect (MODEM, RS-232)
@item DCDB
DOMAIN Control DataBase (DOMAIN)
@item DCE
[picture publisher] Digital Camera Edition (Micrografx)
@item DCE
Data Circuit terminating Equipment (X.25, CCITT, IBM, HP, DEC, Tandem, Sun)
@item DCE
Data Communications Equipment
@item DCE
Distributed Computing Environment (OSF)
@item DCERPC
Distributed Computing Environment / Remote Procedure Call (DCE, RPC), "DCE/RPC" , "DCE RPC"
@item DCF
Design rule for Camera File system (JEIDA, photo)
@item DCF
Distributed Coordination Function (MAC, 802.11a, WLAN)
@item DCI
Data Capture Interface (UMA)
@item DCI
Device Control Interface
@item DCI
Digital Cinema Initiative (DCI, org.)
@item DCI
Display Control Interface (MS, Windows, Intel)
@item DCL
Data Center Linux (Linux, OSDL)
@item DCL
Data Control Language
@item DCL
DEC Control Language (DEC)
@item DCL
Digital Command [scripting] Language (DEC, VMS)
@item DCLU
Digital Carrier Line Unit
@item DCLZ
Data Compression Lempel-Ziv
@item DCM
Digital Carrier Module
@item DCM
DOMAIN Controller Master (Debian, Univention)
@item DCM
Dual Chip Modul
@item DCM
Dual Core Modul (IBM, QCM)
@item DCME
Digital Circuit Multiplication Equipment
@item DCNA
Data Communication Network Architecture
@item DCO
Digital Controlled Oscillator
@item DCOF
Digital Print Order Format
@item DCOM
Distributed Component Object Model (COM, MS, OLE, ActiveX)
@item DCOP
Desktop COmmunication Protocol (Linux, KDE)
@item DCP
Data Compression Protocol (Motorola)
@item DCP
Digital Cinema Package (DCI)
@item DCPS
Data Communications Protocol Standards
@item DCR
Design Change Request (AIX, IBM)
@item DCRC
Digital Cellular Radio Conference (GSM, conference, mobile-systems)
@item DCS
Damage Cleanup Service (Firewall, TrendMicro)
@item DCS
Data sharing Control System (NEC)
@item DCS
Defense Communications System (mil., USA)
@item DCS
Desktop Color Separation
@item DCS
Digital Cellular System (mobile-systems)
@item DCS
Digital Colour System (Adobe, Photoshop)
@item DCS
Digital Control System (NEC)
@item DCS
Digital Cross-connect System (DEC)
@item DCS
Distributed Control System
@item DCSDFS
Dynamic Channel Selection/Dynamic Frequency Selection (HiperLAN/2, WLAN), "DCS/DFS"
@item DCT
Data Collection Terminator (BTX)
@item DCT
Defect-and-Change-Management (CICS, IBM)
@item DCT
Discrete Cosine Transformation (MPEG, JPEG)
@item DCTN
Defense Commercial Telephone Network (mil., USA, network)
@item DCU
Data Cache Unit (CPU, POWER)
@item DD
Dansk Dataforening (org., Denmark)
@item DD
Data Dictionary (SA, CASE, DB)
@item DD
Depacketization Delay
@item DD
Double Density [disks] (FDD)
@item DDA
DOMAIN Defined Attribute (DOMAIN)
@item DDBAC
Data-Design HBCI Banking Application Components (HBCI)
@item DDBMS
Distributed DataBase Management System (DBMS, DB)
@item DDC
Device Color Characterization (XCMS)
@item DDC
Display Data Channel (VESA)
@item DDC2B
Device Data Channel [standard], level 2B (DDC)
@item DDCD
Double Density Compact Disk (CD, Sony)
@item DDCDR
Double Density Compact Disk - Read (Sony, CD), "DDCD-R"
@item DDCDRW
Double Density Compact Disk - Read Write (Sony, CD), "DDCD-RW"
@item DDCMP
Digital Data Communication Message Protocol
@item DDCS2
Distributed Database Connection Services /2 (IBM, DB, DRDA), "DDCS/2"
@item DDD
Data Display Debugger (GNU)
@item DDD
DOMAIN Driven Design (MDA, DOMAIN)
@item DDDS
Dynamic Delegation Discovery System (ENUM, RFC 3401/3402/3403/3404/3405)
@item DDE
DatenenDEinrichtung
@item DDE
Dynamic Data Exchange
@item DDES
Digital Data Exchange System (ANSI)
@item DDF
Data Decryption Field (cryptography)
@item DDI
Device Dependent Interface
@item DDI
Device Driver Interface
@item DDIMM
Dual [RAS] Dual Inline Memory Module (DIMM, RAS), "D-DIMM"
@item DDK
Device Development / Driver Kit (MS)
@item DDL
Data Definition Language
@item DDL
Document Description Language
@item DDM
Distributed Data Management (IBM, CCS)
@item DDML
Display Driver Management Layer
@item DDN
Defense Data Network (USA, network, mil.)
@item DDNS
Distributed DOMAIN Naming Service (TCP/IP)
@item DDNS
Dynamic DOMAIN Name Service (OS/2, IBM)
@item DDO
Dynamic Drive Overlay (HDD, Ontrack)
@item DDOS
Distributed Denial Of Service [attack], "DDoS"
@item DDP
Datagram Delivery Protocol (AppleTalk)
@item DDP
Distributed Data Processing
@item DDR
Double Data Rate (SDR, QDR, ODR)
@item DDR
Dynamic Desktop Router (Cogent)
@item DDRAID
Distributed Data RAID (GFS, RAID, HDD), "DDRaid"
@item DDRS
Defense Data Repository System (mil., USA)
@item DDRSDRAM
Double Data Rate Synchronous Dynamic Random Access Memory (DRAM, RAM, IC), "DDR-SDRAM"
@item DDRSRAM
Double Data Rate Static Random Access Memory (RAM, IC)
@item DDS
Digital Data Service / System
@item DDS
Digital Data Storage (Sony, HP, DAT, ISO, ANSI, ECMA, Streamer)
@item DDS
Direct Digital Sampling (CD-RW, SCSI)
@item DDS
Distributed Directory Service (DCE)
@item DDSA
Digital Data Service Adapter
@item DDSDC
Digital Data Storage - Data Compression (DDS, DCLZ), "DDS-DC"
@item DDSS
Double Dynamic Suspension System (Asus, CD-ROM)
@item DDT
Dynamic Debugging Tool (DEC)
@item DDU
Dialog Data Unit (BTX)
@item DDV
DatenDirektVerbindung (DTAG)
@item DDV
DES-DES-Verfahren (cryptography, HBCI)
@item DDV
Dialog Data Validation
@item DDVS
Daimler-benz DatenVerbundSystem (MBAG)
@item DDVT
Dynamic Dispatch Virtual Tables
@item DDWG
Digital Display Working Group (org., LCD)
@item DDX
Distributed Data eXchange
@item DE
DatenElement (HBCI)
@item DEA
Deterministischer Endlicher Automat
@item DEBI
DMA Extended Bus Interface (Acorn, DMA)
@item DEC
Digital Equipment Corporation (manufacturer)
@item DECIX
DEutscher Commercial Internet eXchange (Internet), "DE-CIX"
@item DECNET
Digital Equipment Corporation NETwork (DEC)
@item DECS
Domino Enterprise Connection Services (Lotus)
@item DECT
Digital European Cordless Telecommunications (telecommunication)
@item DECUS
Digital Equipment Computer Users Society (org., DEC, user group)
@item DEE
DatenEndEinrichtung
@item DEG
DatenElementGruppen (HBCI)
@item DELNI
Digital Ethernet Local Network Interconnect (ethernet)
@item DELQA
Digital Ethernet Lowpower Q-bus network Adapter (ethernet)
@item DELTA
Developing European Learning through Technology Advance
@item DELUA
Digital Ethernet Lowpower Unibus network Adapter (ethernet)
@item DELUG
DEutsche Linux User Group (org., user group, Linux)
@item DEMARC
Distributed Enterprise Management ARChitecture (Banyan, VINES), "DeMarc"
@item DEMPR
Digital Ethernet Multi-Port Repeater (ethernet)
@item DEMUDI
DEbian MUltimedia DIstribution (Debian, Linux), "DeMuDi"
@item DEN
Directory Enabled Networking (MS)
@item DEN
Document Enabled Networking (Novell, Xerox)
@item DENIC
DEutsches Network Information Center, (org., Internet), "DE-NIC"
@item DENIM
Directory-Enabled Net Infrastructure Model (Novell)
@item DEP
Data Execution Prevention (MS, Windows, XP, SP2)
@item DEPCA
Digital Ethernet Personal Computer-bus Adapter (ethernet)
@item DEQNA
Digital Ethernet Q-bus Network Adapter (ethernet)
@item DER
Distinguished Encoding Rules
@item DERAT
Data cache Effective to Real Address Translation [table] (Power4, IBM, CPU, ERAT)
@item DEREP
Digital Ethernet REPeater (ethernet)
@item DES
Data Encryption Standard (cryptography, NIST, IBM)
@item DES
Destination End System
@item DESCBC
Data Encryption Standard/Cipher Block Chaining (DES), "DES/CBC"
@item DESE
[PPP] Data Encryption Standard Encryption protocol (PPP, RFC 1969)
@item DESIRE
DEsign by Simulation and REndering om parallel architectures [project] (ESPRIT)
@item DESP
Data Element Standardization Program
@item DESPR
Digital Ethernet Single Port Repeater (ethernet)
@item DESRT
DEStek [group] Real Time (OS, Destek Group), "DES RT"
@item DESTA
Digital Ethernet thin-wire STation Adapter (ethernet)
@item DESX
Data Encryption Standard eXtended (DES, cryptography)
@item DET
Directory Entry Table (Novell, Netware)
@item DETEBERKOM
DEutsche TElekom BERliner KOMmunikationssystem, "DeTeBerkom"
@item DEUNA
Digital Ethernet Unibus Network Adapter (ethernet)
@item DEVFS
DEVice File System (Linux, DRI), "DevFS"
@item DF
Direction Flag (assembler)
@item DF
Disk Free (Unix)
@item DFCL
Debian Free Content License (Debian, Linux)
@item DFD
Data Flow Diagram / DatenFlussDiagramm (CASE, SA)
@item DFD
Deutsches FernerkundungsDatenzentrum (org.)
@item DFDSM
Data Facility Distributed Storage Management (IBM)
@item DFG
Deutsche ForschungsGemeinschaft (org.)
@item DFI
Digital Facility Interface
@item DFKI
Deutsches Forschungszentrum fuer Kuenstliche Intelligenz (org., KI, AI)
@item DFM
Dynamic Frequency Management (PDA)
@item DFN
Deutsches ForschungsNetz [e.V.] (org., ISP)
@item DFNCERT
Deutsches ForschungsNetz Computer Emergency Response Team (DFN, Internet), "DFN CERT"
@item DFP
Data Facility Product
@item DFP
Digital Flat Panel [group / port] (LCD, org., Compaq, Acer, Fujitsu, ATI, Matrox, Samsung, ...)
@item DFP
Distributed Functional Plane (IN)
@item DFPP
Digital Flat Panel Port (LCD, DFP)
@item DFS
Direct File System (Novell, Oracle)
@item DFS
Distributed File System (DCE)
@item DFS
Dynamic Frequency Selection (WLAN)
@item DFS
Dynamic Frequency Selection (WLAN)
@item DFSA
Direct File System Access
@item DFSG
Debian Free Software Guidelines (Linux, Debian)
@item DFT
Discrete Fourier Transformation
@item DFT
Distributed Function Terminal (IBM)
@item DFT
Drive Fitness Test (IBM, IDE, HDD)
@item DFU
Data File Utility (IBM, ADT)
@item DFUE
DatenFernUEbertragung
@item DFV
DatenFernVerarbeitung