-
Notifications
You must be signed in to change notification settings - Fork 1
/
vera.c
2573 lines (1717 loc) · 45.1 KB
/
vera.c
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 C128
Commodore 128 [computer] (Commodore)
@item C2IS
Command and Control Information Systems (mil., USA)
@item C3I
Command, Control, Communications and Intelligence (mil., USA)
@item C3IIS
Command, Control, Communications and Intelligence Information Systems (mil., USA), "C3I/IS"
@item C4
Command, Control, Communications and Computers (mil., USA)
@item C4I
Command, Control, Communications, Computers and Intelligence (mil., USA)
@item C64
Commodore 64 [computer] (Commodore)
@item CA
Cell Arrival (ATM)
@item CA
Certification Authority (cryptography, PKI)
@item CA
Channel Adapter (Infiniband)
@item CA
Computer Animation
@item CA
Computer Associates (manufacturer)
@item CAAD
Computer Aided Architectural Design
@item CABAC
Context Based Adaptive Binary Arithmetic Coding (AVC)
@item CABS
Carrier Access Billing System
@item CABS
Computer Aided Business Simulation
@item CAC
Cantilver Array Chip (IBM, HDD, MEMS)
@item CAC
Channel Access Code (Bluetooth)
@item CAC
Computer Aided Crime
@item CAC
Connection Admission Control (UNI, ATM)
@item CACEAS
Computer-Assisted Circuit Engineering and Allocating System
@item CACTIS
Community Automated Counter-Terrorism Intelligence System (mil., USA)
@item CAD
Computer Aided Dispatch / Drafting
@item CAD
Computer Aided Design (CIM)
@item CADE
Computer Aided Document Engineering (Microstar)
@item CADR
Client Authenticated DNS Request (DNS, Internet)
@item CADS
Computer-Assisted Display System
@item CAE
Client Application Enabler (IBM, DB)
@item CAE
Common Application Environment (X/Open)
@item CAE
Computer Aided Education
@item CAE
Computer Aided Engineering (CIM)
@item CAI
Computer Aided Inspection (CIM)
@item CAI
Computer Aided Instruction
@item CAIP
Computer Analysis of Images and Patterns (conference)
@item CAIS
Common APSE Interface Specification (APSE, API)
@item CAIT
Center for the Application of Information Technology (org., USA)
@item CAIT
Central Academy of Information Technology (org., MITI)
@item CAL
Client Access License (Lotus, MS)
@item CAL
Computer Aided Logistics
@item CAL
Computer Assisted Learning
@item CALEA
Communications Assistance Law Enforcement Act (USA)
@item CALS
Computer aided Acquisition and Logistics Support
@item CALS
Continuous Acquisition and Life-cycle Support
@item CAM
Common Access Method (SCSI)
@item CAM
Computer Aided Manufacturing
@item CAM
Conditional Access Modul (DVB, CI)
@item CAM
Content Addressable Memory (ethernet, Switch)
@item CAMAC
Computer Automated Measurement And Control
@item CAMEL
Customized Applications for Mobile network Enhanced Logic (UMTS)
@item CAMM
Computer Assisted Material Management
@item CAMP
Cygwin Apache MySQL PHP (Cygwin, Apache, SQL, PHP)
@item CAN
Complete Area Networks (SNI)
@item CAN
Controller Area Network [bus] (CAN)
@item CAO
Client Activated Object (SAO)
@item CAO
Computer Aided Office
@item CAO
Control Area Operator (EMS)
@item CAP
Carrierless Amplitude Phase [modulation] (ADSL, AT&T)
@item CAP
Communications-electronics Accommodation Program
@item CAP
Component Approval Process
@item CAP
Computer Aided Planning (CIM)
@item CAP
Computer Aided Publishing
@item CAPE
Computer Applications in Production and Engineering (conference, IFIP)
@item CAPI
Communication Application Program Interface (ISDN, API)
@item CAPI
Cryptography Application Programming Interface (cryptography, API)
@item CAPP
Computer Aided Process Planning
@item CAPPEAL
Controlled Access Protection Profile / Evaluation Assurance Level, "CAPP/EAL"
@item CAPSL
CAnnon Printing System Language (Canon), "CaPSL"
@item CAPTCHA
Completely Automated Public Turing test to tell Computers from Humans Apart (AI)
@item CAPWAP
Control and Provisioning of Wireless Access Points (WAP)
@item CAQ
Computer Aided Quality [control]
@item CAR
Central Access Routing (RND)
@item CAR
Computer Aided Retrieval
@item CAR
Computer Assisted Radiology
@item CAR
Contents of the Address Register (IBM, ELISP, CDR)
@item CARCAS
Computer Aided aRchiving and Change Accounting System
@item CARD
Candidate Access Router Discovery (RFC 4066)
@item CARDS
Central Archive for Reusable Defense Software (mil., USA)
@item CARDVM
Card Virtual Machine (Java, Sun), "CardVM"
@item CARE
Computer Assistance Resource Exchange
@item CARLOS
Computer Aided Real Language Orthographic System
@item CARP
Common Address Redundancy Protocol (BSD)
@item CAS
Code Access Security (VSTO, .NET, MS)
@item CAS
Column Address Strobe (IC, DRAM)
@item CAS
Communicating Applications Specification (FAX, Intel, DCA)
@item CAS
Computer Aided Selling
@item CAS
Computer Algebra System
@item CAS
Computerized Autodial System
@item CAS
Content Addressed Storage (EMC)
@item CASE
Common Application Service Element (ISO, OSI)
@item CASE
Computer Aided Software Engineering
@item CASH
Computer Aided Service Handling (Ashton-Tate), "C.A.S.H."
@item CASID
Condition Access System IDentification (DVB, CAT)
@item CAST
Carlisle Adams and Stafford Tavares (cryptography)
@item CAST
Computer Aided Software Testing
@item CAT
Central Alaska Time [-1000] (TZ)
@item CAT
Common Authentication Technology (IETF, RFC 1511)
@item CAT
Computer Aided Technology (fair)
@item CAT
Computer Aided Telephony
@item CAT
Computer Aided Testing
@item CAT
Condition Access Table (DVB)
@item CATI
Computer Aided Telephone Interviewing
@item CATIS
Computer-Assisted Tactical Information System (mil., USA)
@item CATNIP
Common ArchiTecture for Next generation Internet Protocol (IPNG, RFC 1707)
@item CATOSL
Computer Associates - Trusted Open Source License (CA), "CA-TOSL"
@item CATS
CodeWarrior Analysis Tools
@item CAUCE
Coalition Against Unsolicited Commercial Email (org., Internet, spam, UCE)
@item CAV
Constant Angular Velocity (CD, HDD, MOD)
@item CAVE
Cave for Automated Virtual Environment (VR)
@item CAVLC
Context-Adaptive Variable Length Coding (AVC)
@item CAVO
Computer Associates - Visual Objects (CA, DB), "CA-VO"
@item CBASIC
Commercial Beginners All purpose Symbolic Instruction Code (BASIC)
@item CBC
Cipher Block Chaining [mode] (DES, DESE, RC5, cryptography)
@item CBCMAC
Cipher Block Chaining of Message Authentication Code (CBC, MAC, cryptography, WLAN), "CBC-MAC"
@item CBCP
CallBack Control Protocol
@item CBCS
Computer Based Conversation System (BBS)
@item CBDF
Character Bitmap Distribution Format (Adobe)
@item CBDS
Connectionless Broadband Data Service (Europe)
@item CBDTPA
Consumer Broadband and Digital Television Promotion Act (USA, DRM)
@item CBE
Certified Banyan Engineer (Banyan, VINES)
@item CBEFF
Common Biometric Exchange Format Framework (NIST)
@item CBEMA
Computer & Business Equipment Manufacturers Association (org.)
@item CBF
Code Behind Form (MS, Access, DB)
@item CBGA
Ceramic Ball and Grid Array (IC, CPU)
@item CBIOS
Compatibility Basic Input Output System (IBM, BIOS)
@item CBMS
Connectionless Broadband Data Service
@item CBQ
Class Based Queueing
@item CBR
Constant Bit Rate (ATM, VBR, ABR, UBR, QOS, BIT)
@item CBS
Certified Banyan Specialist (Banyan, VINES)
@item CBSR
Candidate BootStrap Router (PIM, BSR, Multicast), "C-BSR"
@item CBT
Canon Buffer Transmission (Fax)
@item CBT
Computer-Based Training
@item CBT
Core Based Tree [multicast protocol] (IP, RFC 1949/2189, ST, Multicast)
@item CBX
Computerized Branch eXchange (PBX)
@item CC
Carbon Copy
@item CC
Common Criteria [for IT Security Evaluation] (CC)
@item CC
Continuity Cell (ATM)
@item CC
Country Code (MS-ISDN, GSM, mobile-systems)
@item CC
Cross Connector
@item CCA
Clear Channel Assessment (WLAN)
@item CCAF
Call Control Agent Function (IN)
@item CCC
Cablelabs Client Configuration (DHCP)
@item CCC
Catalyst Control Center (ATI, Windows)
@item CCC
Chaos Computer Club (org.)
@item CCC
Computer Control Center
@item CCC
Cube Connected Cycles (MP)
@item CCCA
Campus Computer Communication Association (org., USA)
@item CCCH
Common Control CHannel (GSM, mobile-systems)
@item CCCI
Center for Cyber Communities Initiative (org., Japan)
@item CCD
Charge Coupled Device
@item CCE
[visual basic] Control Creation Edition (VB, ActiveX, MS)
@item CCE
Connection Control Entity
@item CCETT
Centre Commun d'Etudes de Telediffusion et Telecommunications (org., France)
@item CCF
Campus Computing Facilities (org.)
@item CCF
Capsulated Color Filter (NEC)
@item CCF
Central Computer Facility
@item CCF
Connection Control Function (IN)
@item CCF
Controller Configuration Facility
@item CCFL
Cold Cathode Fluorescent Lamp (LCD)
@item CCFT
Cold Cathode Fluorescent Tube (LCD, Display)
@item CCIRN
Coordinating Committee of International Networks (org.)
@item CCIS
Common Channel Interoffice Signaling (AT&T)
@item CCITT
Comite Consultatif International Telegraphique et Telephonique (org., ITU, predecessor)
@item CCL
Cerberus Central Limited (manufacturer)
@item CCM
Change and Configuration Management
@item CCM
CORBA Component Model (CORBA)
@item CCM
Counter with CBC-MAC (cryptography, CBC, MAC, RFC 3610)
@item CCMDB
Change and Configuration Management DataBase (IBM, Tivoli)
@item CCMP
Counter mode CBC MAC Protocol (CBC, MAC, cryptography, WLAN)
@item CCNC
Common Channel Network Controller
@item CCNC
Computer / Communications Network Center
@item CCNUMA
Cache-Coherent Non Uniform Memory Access (SMP, NUMA), "cc-NUMA"
@item CCP
[PPP] Compression Control Protocol (PPP, RFC 1962)
@item CCP
Command Console Processor (CP/M)
@item CCP
Communications Control Program (OS, IBM)
@item CCP
Compact Communication Products (TPS)
@item CCPP
Composite Capability / Preference Profiles (W3C, RDF), "CC/PP"
@item CCR
Commitment, Concurrency and Recovery (OSI)
@item CCR
Current Cell Rate (ATM)
@item CCRA
Common Criteria Recognition Arrangement (CC)
@item CCRMA
Center for Computer Research in Music and Acoustics (org., Stanford, UK)
@item CCS
Cambridge Cybernetic Society (org.)
@item CCS
Cluster Configuration System (GFS)
@item CCS
Coded Character Set (CCS, Unicode)
@item CCS
Common Channel Signaling (IN)
@item CCS
Common Command Set (SCSI)
@item CCS
Common Communications Support (IBM, SAA)
@item CCS
Communications-Computer Systems, "C-CS"
@item CCS
Computerized Charging System
@item CCS
Cyprus Computer Society (Org, Zypern)
@item CCS7
Common Channel signaling System 7 (IN, DTAG, CCITT)
@item CCSID
Coded Character Set IDentification (IBM)
@item CCSY
Cooperative Computing System Program (HP)
@item CCT
China Coast Time [+0800] (TZ)
@item CCTA
Central Computer and Telecommunications Agency (org., UK, predecessor, OGC)
@item CCTLD
Country Code Top Level DOMAIN (Internet, ICANN), "ccTLD"
@item CCU
Cache Control Unit (Wyse)
@item CCU
Customer Control Unit
@item CCV
C-bit Coding Violation [error event] (DS3/E3, BIT)
@item CCW
COM Callable Wrapper (MS, COM, Java)
@item CD
Carrier Detect (MODEM, RS-232)
@item CD
Change Directory (DOS, Unix, OS/2)
@item CD
Committee Draft (ISO)
@item CD
Compact Disk (CD)
@item CDA
Communications Decency Act (Internet, USA)
@item CDA
Compound Document Architecture (DEC)
@item CDATA
Character DATA (DTD, PCDATA)
@item CDB
Command Descriptor Block
@item CDBS
Connectionless Data Bearer Service
@item CDBX
Computerized Digital Branch eXchange (PBX)
@item CDC
Connected Device Configuration (JVM)
@item CDC
Control Data Corporation (manufacturer)
@item CDC
Cult of the Dead Cow (org.), "cDc"
@item CDD
Component Design Document
@item CDDA
Compact Disk - Digital Audio (CD, Digital audio), "CD-DA"
@item CDDI
Copper Distributed Data Interface (FDDI, UTP)
@item CDE
Certified Directory Engineer (Novell, Netware)
@item CDE
Common Desktop Environment
@item CDE
Compact Disk - Erasable (CD), "CD-E"
@item CDE
Cooperative Development Environment (Oracle)
@item CDEF
Control DEfinition Functions (Apple, MDEF)
@item CDF
Channel Definition Format (MS, Internet, XML)
@item CDF
Compound Document Framework (IBM, OLE)
@item CDFS
Compact Disk File System (CD, OS/2, IBM)
@item CDG
Compact Disk + Graphics (CD), "CD+G"
@item CDI
Compact Disk - Interactive (CD), "CD-I"
@item CDIF
CASE Data Interchange Format (CASE)
@item CDK
Control Development Toolkit (MS, VB)
@item CDM
Compressed Data Mode
@item CDMA
Code Division Multiple Access (telecommunication, mobile-systems)
@item CDMIDI
Compact Disk + Musical Instruments Digital Interface (CD, MIDI), "CD+MIDI"
@item CDMO
Compact Disk - Magneto Optical (CD), "CD-MO"
@item CDMRW
Compact Disk - Mount Rainier Washington (CD-RW, CD), "CD-MRW"
@item CDMS
Command and Data Management System (ESA, Venus-Express)
@item CDMS
Communication Driver Maintenance System (ISDN, HST)
@item CDMU
Command and Data Management Unit (ESA, Venus-Express, CDMS)
@item CDNC
Chinese DOMAIN Name Consortium (org., Internet, DOMAIN)
@item CDO
Collaboration Data Objects (WSH, MS)
@item CDO
Common Data Objects (MS, ASP)
@item CDPC
Cellular Digital Packet Data
@item CDPD
Cellular Digital Packet Data (mobile-systems)
@item CDPN
Context Dependent Path Names (CDSL, NFS, GFS)
@item CDR
Compact Disk - Recordable (CD), "CD-R"
@item CDR
Contents of the Decrement Register (IBM, ELISP, CAR)
@item CDRA
Character Data Representation Architecture
@item CDRAM
Cached Dynamic Random Access Memory (RAM, DRAM, IC)
@item CDRM
Cross DOMAIN Resource Manager (VTAM, SSCP, IBM)
@item CDROM
Compact Disk - Read Only Memory (CD, ROM), "CD-ROM"
@item CDROMXA
Compact Disk - ROM / eXtended Architecture (CD, MPC, ROM), "CD-ROM/XA"
@item CDRW
Compact Disk - ReWritable (CD), "CD-RW"
@item CDS
Cell Directory Service (DCE)
@item CDS
Class Data Sharing (Java)
@item CDS
Current Directory Structure (BIOS. DOS)
@item CDSA
Common Data Security Architecture (HP, cryptography)
@item CDSG
Cultural Diversity Steering Group (ISSS)
@item CDSL
Context Dependent Symbolic Links (CDPN, NFS, GFS)
@item CDSS
Creative Decision Stimulation Systems (AI, DSS)
@item CDT
Cell Delay Tolerance (ATN)
@item CDT
Central Daylight Time [-0500] (TZ, CST, USA)
@item CDT
Compressed DOMAIN Transcoder (DVD)
@item CDTV
Commodore Dynamic Total Vision (Commodore)
@item CDV
Cell Delay Variation (UNI, ATM, QOS)
@item CDVT
Cell Delay Variation Tolerance (UNI, ATM, CDV)
@item CDWO
Compact Disk - Write Once (CD), "CD-WO"
@item CE
Communaute / Comunique Europeenne (Europe)
@item CE
Communications-Electronics, "C-E"
@item CE
Compact Edition (MS, Windows)
@item CE
Connection Endpoint (UNI)
@item CEARCH
Cisco Educational ARCHive (Cisco, WWW)
@item CEBIT
welt CEntrum Buero Information Telekommunikation (fair), "CeBIT"
@item CEC
Consumer Electronics Control [protocol]
@item CECI
CICS Enhanced Command Interpreter (IBM, CICS)
@item CECMG
Central Europe Computer Measurement Group (org., Europe), "cecmg"
@item CEDA
??? (CICS, IBM)
@item CEDF
CICS Execution Diagnostic Facility (CICS, IBM)
@item CEDR
[Microsoft Windows] Compact Edition Driver Repository (MS, Windows, CE)
@item CEE
[Linux] Consumer Electronics Edition (MontaVista, Linux, PDA)
@item CEECEB
Central and Eastern European Countries EDIFACT Board (org., EDIFACT), "CEEC/EB"
@item CEFACT
CEntre for Facilitation of procedures and practices in Administration, Commerce and Transport
@item CEG
Continuous Edge Graphics (Grafik, IC)
@item CEI
Connection Endpoint Identifier (UNI)
@item CELL
CIP/Ethernet Library for Linux (Linux, ethernet, CIP, PLC)
@item CELP
Card Edge Low Profile [socket]
@item CELP
Code Excited Linear Prediction
@item CEM
Common [IT Security] Evaluation Methodology (CC)
@item CEM
Contract Equipment Manufacturer
@item CEMT
??? (CICS, IBM)
@item CEN
Comite Europeen de Normalisation (org., Europe, Brussels)
@item CENELEC
Comite Europeen de Normalisation ELECtrotechnique (org., CEN, Europe)
@item CENTR
Council of European National Top level DOMAIN Registries (org., TLD, DOMAIN)
@item CEPAC
CMOS-Ein-Platinen-Allzweck-Computer (IC, CMOS, C'T)
@item CEPIS
Council of European Professional Informatics Societies (org., Europe)
@item CEPT
Conference of European Postal and Telecommunications administrations (org., CCITT, conference, Europe)
@item CER
Cell Error Ratio (ATM)
@item CERFNET
California Educational and Research Federation NETwork (network), "CERFNet"
@item CERN
Conseil Europeenne pour la Recherche Nucleaire (org., Europe, Geneva)
@item CERT
Computer Emergency Response Team (DARPA, CMU, Internet)
@item CES
C-bit Errored Seconds (DS3/E3, BIT)
@item CES
Character Encoding Scheme (CSS, Unicode)
@item CES
Circuit Emulation Service
@item CES
Consumer Electronics Show (fair, USA)
@item CESAR
Central Employment Search And Retrieval (WWW)
@item CESG
Communications-Electronics Security Group (org., UK, GCHQ)
@item CET
Central European Time [+0100] (TZ, MET)
@item CET
Centro de Estudes de Telecomunicoes (org., Portugal)
@item CF
Carry Flag (assembler)
@item CF
Compact Flash [card]
@item CF
Compact Framework (MS, .NET, PocketPC)
@item CFA
Center for Architecture (org., JIEO, DISA)
@item CFA
Code Fields Address (Forth)
@item CFB
Cipher FeedBack [mode] (cryptography, DES)
@item CFC
ColdFusion Component (WWW, HTTPD)
@item CFD
Call For Discussion (Internet)
@item CFD
Computational Fluid Dynamics [applications]
@item CFE
Center for Engineering (org., JIEO, DISA)
@item CFF
Compact Font Format (Adobe)
@item CFI
CAD Framework Initiative (org., CAD)
@item CFM
Clock From Master (CTM, Rambus)
@item CFM
Code Fragment Manager (Apple)
@item CFM
ConFiguration Management (FDDI, SMT)
@item CFMC
Committee to Fight Microsoft Corporation (org., MS)
@item CFML
Cold Fusion Markup Language
@item CFP
Call For Papers
@item CFP
Computers, Freedom & Privacy [conference]
@item CFP
Contention Free Period (PCF, MAC)
@item CFS
Center for Standards (org., JIEO, DISA)
@item CFS
Cryptographic FileSystem (Linux, cryptography)
@item CFT
Call For Testers
@item CFV
Call For Vote (Internet, Usenet), "CfV"
@item CFWS
Comments / Folding White Space (RFC 1822)
@item CG
C for Graphics (Nvidia, MS), "Cg"