~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
@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 F2C
FORTRAN to C [converter]

@item F2F
Frequency - Double Frequency

@item F2FS
Flash-Friendly File System (Linux, Samsung, FS), "F2fs"

@item FA
FernmeldeAmt (DTAG)

@item FAA
Flow Admission Acknowledge [message] (LFAP)

@item FABS
Fast Access Btree Structure

@item FAC
Final Assembly Code (IMEI, GSM, mobile-systems)

@item FACCH
Fast Associated Control CHannel (GSM, DCCH, mobile-systems)

@item FACE
Framed Access Command Environment (Unix, SVR4)

@item FACS
Firmware ACPI Control Structure (ACPI)

@item FADOS
Fast Amsterdam Distributed (???) Operating System (OS, FAMP)

@item FADT
Fixed ACPI Description Table (ACPI)

@item FADU
File Access Data Unit (FTAM)

@item FAE
Field Application Engineer

@item FAG
FernmeldeAnlagenGesetz telecommunication, Germany

@item FAI
Fully Automatic Installation

@item FAID
Flash Authority Identification Data (EEPROM)

@item FAIS
Finnish Artificial Intelligence Society (org., Finland, AI), http://www.uwasa.fi/stes/eindex.html

@item FAL
File Access Listener (DEC, DNA)

@item FAME
FORMEX Applied to Multilingualism in Europe (SGML, Europe)

@item FAMOS
Floating gate Avalanche injection Metal Oxide Semiconductor (IC)

@item FAMP
Fast Amsterdam MultiProcessor

@item FANP
Flow Attribute Notification Protocol (Toshiba, RFC 2129), ftp://ftp.rfc-editor.org/in-notes/rfc2129.txt

@item FAP
Flight Attendant Panel (Airbus, A380, CIDS, LCD)

@item FAPI
Family Application Programmer Interface (DOS, VDM, API)

@item FAQ
Frequently Asked Questions (slang, Usenet)

@item FAR
False Acception Rate

@item FAR
Fixed Alternative Routing (SNI)

@item FAR
Flow Admission Request [message] (LFAP)

@item FARE
Film Automatic Retouching and Enhancement (Canon, Scanner)

@item FARNET
Federation of American Research NETworks (network)

@item FAS
Flow Admission Service

@item FASMI
Fast Analysis of Shared Multidimensional Information (OLAP)

@item FAST
Fast ARM Solutions Toolkit (ARM, Palm, PDA)

@item FAST
First Application System Test

@item FAST
Forschungsinstitut fuer Angewandte Software-Technologie [e.v.] (org.), http:/www.fast.de

@item FAT
File Allocation Table (DOS)

@item FATA
Fibre-Attached Technology Adapted (HP, SATA, HDD)

@item FAU
Flow Admission Update [message] (LFAP)

@item FAU
Friedrich-Alexander-Universitaet (org., Erlangen, Germany, Nuernberg, Germany), http://www.uni-erlangen.de

@item FAW
Forschungsinstitut fuer Anwendungsorientierte Wissensverarbeitung (org., KI, Ulm), http://merlin.faw.uni-ulm.de/faw

@item FAXP
FAX Profile (Bluetooth, SPP), "FaxP"

@item FB
Fiber optic Backbone

@item FBAS
FarbBild-AustastSystem / Farb-Bild-Austast-Synchron-signal (video)

@item FBDIMM
Fully Buffered Dual Inline Memory Module (DIMM, IC, RAM), "FB-DIMM"

@item FBL
Frame Burst error Length (CD)

@item FBM
Flexible Buffer Management (QMS)

@item FBPP
Federal Biometeric Protection Profile (NIAP)

@item FBS
Flexible Bandwidth Service (ATM, SDH)

@item FC
Federal Criteria [for information technology security] (NIST, USA)

@item FC
Feedback Control

@item FC
Fibre Channel (FC)

@item FC
Frame Control (FDDI, Token Ring)

@item FCA
Flow Control Ack (DLSW)

@item FCAL
Fibre Channel - Arbitrated Loop, "FC-AL" 

@item FCAPS
Fault, Configuration, Accounting, Performance, Security [management areas]

@item FCB
File Control Block (DOS)

@item FCBS
File Control BlockS (DOS)

@item FCC
Fast Communication Controller (SCC, MCC)

@item FCC
Federal Communications Commission (org., USA), http://www.fcc.gov

@item FCC
Forward Carbon Copy (telecommunication)

@item FCCH
Frequency Correction CHannel (GSM, mobile-systems)

@item FCCN
Fundacao para a Computacao Cientifica Nacional (org., Portugal), http://www.fccn.pt

@item FCD
Floating Car Data

@item FCDAE
Fibre Channel Disk Array Enclosure (FC), "FC-DAE"

@item FCFS
First Come, First Served

@item FCGC
Flight Control and Guidance Computer (Airbus, A380)

@item FCGS4
Fibre Channel Generic Service 4 (FC, SAN, ANSI), "FC-GS-4"

@item FCH
Frame Control Channel (HiperLAN/2)

@item FCI
Fibre Channel Interface

@item FCI
Flow Control Indicator (DLSW)

@item FCI
Forward Cache Identifier (CATNIP)

@item FCIA
Fibre Channel Industry Association (org.), http://fibrechannel.org/

@item FCIP
Fibre Channel over Internet Protocol (SAN, FC, IP)

@item FCL
Framework Class Library (MS, .NET)

@item FCMI
Fibre Channel Methodology for Interconnects (FC, SAN, ANSI), "FC-MI"

@item FCO
Flow Control Operator Bits (DLSW, BIT)

@item FCOS
Flip Chip on Substrate

@item FCP
[SCSI-3] Fibre Channel Protocol (SAM)

@item FCPGA
Flip Chip Pin Grid Array (IC, CPU), "FC-PGA"

@item FCPH
Fibre Channel PHysical and signaling interface (SAM), "FC-PH"

@item FCR
Flow Change Request [message] (LFAP)

@item FCS
Fast Circuit Switching

@item FCS
First Customer Ship (IBM)

@item FCS
Frame Check Sequence (FDDI, Token Ring)

@item FCS
Frame Check Sum (MODEM)

@item FCSAN
Fibre Channel Storage Area Network (FC, SAN)

@item FCSC
Flight Control Secondary Computer (Airbus, A380)

@item FDA
FORTRAN Design Aid (FORTRAN)

@item FDAD
Functional Data ADministrator

@item FDC
Floppy Disk Controller (FDD)

@item FDCC
Federal Desktop Core Configuration (NVD, SCAP)

@item FDCT
Fast Discrete Cosine Transformation (DCT)

@item FDD
Floppy Disk Drive

@item FDD
Frequency Division Duplex (mobile-systems)

@item FDDI
Fiber Distributed Data Interface (ANSI, ISO 8314)

@item FDDITPPMD
FDDI Twisted Pair-Physical layer, Medium Dependent, "FDDI TP-PMD" 

@item FDE
Full Duplex Ethernet (ethernet)

@item FDES
Full Duplex EtherSwitch (Kalpana)

@item FDI
[fachverband der ] Fuehrungskraefte der Druckindustrie und Informationsverarbeitung (org.)

@item FDIS
Final Draft International Standard (MPEG)

@item FDL
File Definition Language

@item FDL
Free Documentation License (GNU)

@item FDM
Frequency Division Multiplexing (FDM)

@item FDMA
Frequency Division Multiple Access (mobile-systems)

@item FDMI
Flat Display Mounting Interface (VESA, MIS)

@item FDO
Functional Device Object

@item FDSN
Federation of Digital Seismograph Networks (org.), http://www.fdsn.org/

@item FDT
Formal Description Technique

@item FDTDMA
Frequency Division/Time Division Multiple Access (mobile-systems, GSM), "FD/TDMA"

@item FDX
Full DupleX

@item FE
Focus Error (DVD)

@item FE
Forschung und Entwicklung, "F&E"

@item FE
Functional Entity (IN)

@item FEA
Functional Entity Action (IN, UNI)

@item FEAL
Fast Data Encipherment Algorithm (DES, cryptography)

@item FEAST
Fast Data Enciphering Algorithm (cryptography)

@item FEBE
Far End Block Error (SONET)

@item FEC
Forward Error Correction (GSM, mobile-systems)

@item FECN
Forward Explicit Congestion Notification (ATM)

@item FEDRAMP
FEDeral Risk and Authorization Management Program (USA), "FedRAMP"

@item FEFCO
???

@item FEIT
Fujitsu Enhanced Imaging Technology (Fujitsu)

@item FEK
File Encryption Key (cryptography)

@item FEM
Finite Elemente Methode

@item FEN
Free-net Erlangen/Nuernberg

@item FEP
Firewall Enhancement Protocol (RFC 3093), ftp://ftp.rfc-editor.org/in-notes/rfc3093.txt

@item FEP
Flight Envelope Protection (Airbus, A380)

@item FEP
Front End Processor

@item FER
Forward Error Correction (satellite)

@item FERF
Far End Receive Failure (UNI, ATM, SONET, OAM)

@item FESI
Federacion Espanola de Sociedades de Informatica (org., Spain), http://www.fesi.fi.upm.es/

@item FET
Field Effect Transistor

@item FF
Form(ular) Feed

@item FFAPI
File Format API (MS, API)

@item FFC
Fully Formed Character [printer]

@item FFDC
First Failure Data Capture

@item FFDT
FDDI Full Duplexing Technology (FDDI)

@item FFFS
Failsafe Flash File System (FS, Flash), "F3S"

@item FFII
Foerderverein fuer Freie Informationelle Infrastruktur (org.)

@item FFOL
FDDI Follow-On-LAN

@item FFS
Fallback Fault-tolerant Server (IBM, OS/2)

@item FFS
Fast File System (Unix, Amiga, Commodore)

@item FFS
Fast Filing System (BSD, Unix)

@item FFS
Flexible Fertigungs-Systeme

@item FFST2
First Failure Support Technology /2 (IBM), "FFST/2"

@item FFT
Final Form Text

@item FGA
Future Graphics Adapter (Spea)

@item FGCS
Fifth Generation Computer Systems [project] (ICOT)

@item FGPP
Fine Grained Password Policy (AD)

@item FGREP
Fixed Global Regular Expression Print (Unix, GREP)

@item FHGS
FreeHand Graphics Studio (Macromedia, DTP)

@item FHS
File system Hierarchy Standard (Linux, LSB)

@item FHSS
Frequency Hopping Spread Spectrum (WLAN)

@item FIA
Fiberoptic Industry Association (org.), http://www.netwales.co.uk/fia/welcome.htm

@item FIB
Forwarding Information Base (router, LAN, Internet)

@item FIBU
FInanzBUchhaltung

@item FIC
First International Computer [inc.] (manufacturer), http://www.fic.com.tw

@item FICS
Free Internet Chess Server

@item FID
File IDentifier (APDU)

@item FID
File Identifier Descriptor (UDF, CD-R)

@item FIDO
Fast IDentity Online (org.), http://fidoalliance.org/

@item FIDO
FIlter Device Object, "FiDO"

@item FIF
Fractal Interchange Format

@item FIFF
Forum Informatikerinnen Fuer den Frieden (org.)

@item FIFO
First In First Out (CPU)

@item FIG
Forth Interest Group (org., Forth)

@item FIGLET
Frank, Ian and Glenn's LETters (ASCII, fonts)

@item FILE
Free Internet Lexicon and Encyclopedia (WWW, DICT), http://www.dict.org/file.html

@item FILO
First In Last Out

@item FIMAS
Financial Institution Message Authentication Standard (banking, ANSI)

@item FINTS
FINancial Transaction Services (banking, HBCI), "FinTS"

@item FIOC
Frame Input/Output Controller

@item FIP
Facility Interface Processor

@item FIP
Factory Instrumentation Protocol

@item FIP
Fluorescent Indicator Panel

@item FIPA
Foundation for Intelligent Physical Agents (org., Agents)

@item FIPS
Federal Information Processing Standard (NIST, USA)

@item FIQ
Fast Interrupt reQuest (ARM, RISC)

@item FIR
Fast IRDA (IRDA)

@item FIR
Finite Impulse Response (DSP)

@item FIRE
Flexible Intelligent Routing Engine (3Com)

@item FIRE
Future Internet Research and Experimentation (Europe, CORDIS)

@item FIRMR
Federal Information Resources Management Regulations (USA)

@item FIRP
Federal Internet Requirements Panel (Internet, USA)

@item FIRS
Federated Internet Registry Service (LDAP, Internet)

@item FIRST
ForschungsInstitut fuer Rechnerarchitektur und SoftwareTechnik (org., GMD, Berlin, Germany), http://www.gmd.de/first/firsthome.html

@item FIRST
Forum of Incident Response and SecuriTy (org., NIST), http://first.org

@item FIS
FachInformationsSystem

@item FIS
FuehrungsInformationsSysteme

@item FISH
FIle transfer with a SHell, "FiSH"

@item FISMA
Federal Information Security Management Act (USA)

@item FIT
Failures In Time

@item FIT
Fraunhofer institut fuer angewandte InformationsTechnik (org.)

@item FITS
Functional Interpolating Transformation System

@item FITUG
Foerderverein Informationstechnik und Gesellschaft [e.V.] (org.), http://www.fitug.de

@item FIU
Fingerprint Identification Unit (Sony)

@item FIZ
FachInformationsZentrum karlsruhe Org., Germany, http://www.fiz-karlsruhe.de

@item FK
Foundation Kit (NextStep, OpenStep, Apple, Rhapsody)

@item FKS
Fernmelde-Klein-Steckverbindung (Westernstecker)

@item FL
Fiber optic Link

@item FLAC
Free Lossless Audio CODEC (CODEC, audio)

@item FLACC
Full Level Algol Checkout Compiler

@item FLAME
FLexible API for Module-based Environments (RL, API)

@item FLASK
FLux Advanced Security Kernel (DTOS)

@item FLC
Ferroelectric Liquid Crystal

@item FLEA
Four Letter Extended Acronym

@item FLEXIP
FLEXible Internet Protocol (Novell, Netware), "FLeX/IP"

@item FLIM
Faithful Library about Internet Message (EMACS, GNU)

@item FLOPS
FLoating-point Operations Per Second (CPU)

@item FLOWR
For, Let, Order by, Where, Return [principle] (DB, XML)

@item FLP
Fast Link Pulse (ethernet, LAN, NLP)

@item FLS
???

@item FM
Frequenz-Modulation

@item FMA
Federated Management Architecture (Java)

@item FMA
Fused Multiply Add [operation]

@item FMB
Flexible MotherBoard [design]

@item FMM
Flash Memory Manager (Intel)

@item FMO
Flexible Macroblock Ordering (AVC, video)

@item FMS
FernMeldeSystem

@item FMS
FORTRAN Monitor System (OS, IBM 709)

@item FMSB
Flip Mount Super Back-plate (Scythe), F.M.S.B.

@item FMTEYEWTK
Far More Than Everything You Ever Wanted To Know (slang, PERL)

@item FNC
Federal Networking Council (org., USA)

@item FNI
FachNormenausschuss Informationsverarbeitung [1962-1987] (DIN, NI, predecessor)

@item FO
Fiber Optic

@item FOA
Fiber Optic Association (org.), http://www.std.com/fotec/foa.htm

@item FOAF
Friend Of A Friend [vocabulary] (RDF), http://www.foaf-project.org/

@item FOC
Fiber Optic Cable / Communications

@item FOCS
[symposium on] Foundations Of Computer Science (Konferenz)

@item FOD
Flexible Optical Disk (OD)

@item FODA
Formal specification of ODA document structures (ODA, ISO)

@item FODO
[international conference on] Foundations Of Data Organization and algorithms (conference, INRIA)

@item FOEBUD
[verein zur] Foerderung des OEffentlichen Bewegten und Unbewegten Datenverkehrs [e.v.] (org.), "FoeBuD", http://www.foebud.org

@item FOIRL
Fiber Optic InterRepeater Link (OWG)

@item FOKUS
Forschungszentrum fuer Offene KommUnikationsSysteme (org., GMD, Berlin, Germany), http://www.fokus.gmd.de

@item FOLDOC
Free OnLine Dictionary Of Computing (WWW, UK), http://wombat.doc.ic.ac.uk

@item FOLED
Flexible Organic Light Emitting Display (OLED)

@item FOMA
Freedom Of Multimedia Access (Japan, mobile-systems)

@item FOMAU
Fiber Optic MAU (ethernet, MAU)

@item FON
Fiber Optics Network

@item FOO
Friends Of O'reilly [meeting]

@item FOOBAR
FTP Operation Over Big Address Records (RFC 1639, FTP), ftp://ftp.rfc-editor.org/in-notes/rfc1639.txt

@item FOOT
Forum for Object Oriented Technology (CERN, OOP)

@item FOP
Feature Orientated Programming

@item FOP
Formatting Object Processor (Apache, XSL-FO), http://xml.apache.org/fop/

@item FORMEX
FORMalised EXchange of electronic publications (SGML, Europe)

@item FORML
Formal Object Role Modelling Language

@item FORTRAN
FORmula TRANslation

@item FORTWIHR
FORschungsverbund fuer Technisch-WIssenschaftliches HochleistungsRechnen (org., Bavaria), http://www5.informatik.tu-muenchen.de/forschung/fortwihr

@item FORWISS
bayerisches FORschungszentrum fuer WISsensbasierte Systeme (org., KI), http://www.forwiss.tu-muenchen.de, http://www.fmi.uni-passau.de/forwiss/uebersicht.html

@item FOSI
Format Output Specification Instance (SGML, CALS)

@item FOSS
Free and Open Source Software

@item FOSSFA
Free Software and Open Source Foundation for Africa (org., Africa), http://www.fossfa.net/

@item FOSSIL
Fido Opus Seadog Standard Interface Layer

@item FOT
Fiber Optic Transceiver

@item FOTA
Firmware Over The Air

@item FOTE
Follow-on Operational Test and Evaluation, "FOT & E"

@item FOUC
Flash Of Unstyled Content (CSS)

@item FOURCC
FOUR Character Code (RIFF, TIFF, VFW, DivX)

@item FOV
Field Of View (VRML)

@item FOX
Field Operational X.500

@item FPA
Fast Packet Adaption (FPS, FPR)

@item FPA
Floating Point Accelerator

@item FPAA
Field Programmable ALU Array (IC, ALU, RL)

@item FPBGA
Fine Pitch Ball Grid Array (IC, CPU)

@item FPC
Floating Point Coprocessor

@item FPD
Flat Panel Display

@item FPDI
Flat Panel Display Interface (VESA)

@item FPDU
FTAM Protocol Data Unit (PDU)

@item FPE
Floating Point Engine

@item FPFA
Field Programmable Function Array

@item FPGA
Field Programmable Gate Array (RL), http://www.mrc.uidaho.edu/fpga/fpga.html

@item FPI
Flux Changes per Inch (HDD)

@item FPI
Formal Public Identifier (DTD, SGML, SI)

@item FPI
Functional Process Improvement

@item FPK
Fast Packet Keying (WLAN, WEP, RSA, cryptography)

@item FPLA
Field Programmable Logic Array

@item FPLMTS
Future Public Land Mobile Telecommunications System (IN, mobile-systems)

@item FPM
Fast Page Mode [DRAM] (RAM, DRAM)

@item FPM
Fast Page Mode [ram] (RAM, DRAM, IC)

@item FPMDRAM
Fast Page Mode DRAM (RAM, DRAM, IC), "FPM-DRAM"

@item FPMPMI
Flat Panel Monitor Physical Mounting Interface [standard] [old term] (LCD, VESA, FDMI)

@item FPNW
File and Print service for NetWare (MS, Windows NT, DSMN)

@item FPODA
Fixed Priority Orientated Demand Assignment (MAC, PODA)

@item FPP
Fast-Parallel-Port

@item FPP
Floating Point Processor

@item FPP
FORTRAN Pre-Processor (FORTRAN)

@item FPP
Full Packaged Product (MS)

@item FPR
Fast Packet Relay (FPS, FPA)

@item FPR
Film Patterned Retarder (LCD)

@item FPR
Floating Point Register (FPU)

@item FPS
Fast Packet Switching (X.25, Datex-J)

@item FPS
First Person Shooter [game]

@item FPS
Frames Per Second

@item FPSE
Free PlayStation Emulator, "FPSe"

@item FPSE
FrontPage Server Extensions (Microsoft, IIS)

@item FPU
Floating Point Unit (CPU)

@item FQDN
Fully Qualified Domain Name (Internet)

@item FRAD
Frame Relay Access Device

@item FRAM
Ferroelectric Random Access Memory (RAM, IC)

@item FRC
Frame Rate Control (PDP)

@item FRD
Functional Requirements Description

@item FRF
Floatingpoint Register File (DEC, Alpha, CPU)

@item FRICC
Federal Research Internet Coordinating Committee (org.)

@item FRL
Frame Representation Language (AI)

@item FRMR
FRaMe Reject (HDLC, LAPB, SDLC)

@item FROM
Factory Read Only Memory (ROM)

@item FRR
False Rejection Rate

@item FRR
Functional Recovery Routine

@item FRS
Flexible Route Selection

@item FRS
Frame Relay Service (ATM, UNI)

@item FS
File System (LVM)

@item FS
Frame Status (FDDI, Token Ring)

@item FSAG
Free Software Association of Germany (org.)

@item FSB
For Small Business (Novell)

@item FSB
Front Side Bus

@item FSC
Fujitsu Siemens Computer (manufacturer)

@item FSCK
File System Consistency checK (Unix)

@item FSD
File System Driver

@item FSF
Free Software Foundation (org., GNU), http://www.gnu.org

@item FSFE
Free Software Foundation Europe (org., FSF), http://www.fsfeurope.org

@item FSG
Free Standards Group (org.), http://www.freestandards.org

@item FSH
File System Hierarchy (Linux, LSB)

@item FSIP
Full Scale InPut (FSOP)

@item FSK
Frequency Shift Keying (telecommunication)

@item FSM
Finite State Machine (TTCN, ...)

@item FSM
Freiwillige Selbstkontrolle Multimedia Org., Germany

@item FSMGDOS
Font Scaling Manager - Graphics Device Operating System (OS, Atari), "FSM-GDOS"

@item FSMO
Flexible Single Master Operations (AD)

@item FSO
[scripting runtime library] File System Objects (MS, WSH)

@item FSOP
Full Scale OutPut (FSIP)

@item FSOS
Free Standing Operating System (OS)

@item FSP
File Slurping Protocol

@item FSRM
File Server Resource Manager (AD)

@item FSRTL
File System RunTime Library

@item FSS
Fair Share Scheduler (Solaris, Sun)

@item FSS
Fast System Switch (Unix)

@item FSSUTF
FileSystem Safe UCS Transformation Format (UCS, Unicode), "FSS-UTF"

@item FST
Flat Square Technology (Hitachi)

@item FSTN
Film SuperTwisted Nematic (LCD)

@item FSTP
Foiled Shielded Twisted Pair [cable] (STP, TP), "F/STP"

@item FSU
Free Software Union (org.)

@item FSV
Flexible Sender Validation (SPAM)

@item FSVO
For Some Value Of (slang, Usenet, IRC)

@item FT1
Fractional T1 (ISDN, T1, DS-0, DS-1)

@item FTA
Floptical Technology Association (3M u.a.)

@item FTAM
File Transfer, Access and Management (GOSIP, ISO 8571/8572)

@item FTBFS
Fails To Build From Source (Linux, Debian, slang)

@item FTC
Federal Trade Commission (org., USA)

@item FTE
[DCOM] For The Enterprise (DCOM, SAG)

@item FTL
Flash Translation Layer

@item FTM
File Transfer Manager (PDA, Casio)

@item FTN
Fido Technology Network (FidoNet)

@item FTNA
File Transfer Access and Management

@item FTNEA
File Transfer NEtwork Architecure (SNI)

@item FTOS
File Transfer Open Systems

@item FTOS
File Transfer OSI Support

@item FTP
File Transfer Protocol (Internet, RFC 959), ftp://ftp.rfc-editor.org/in-notes/rfc959.txt

@item FTP
Foiled Twisted Pair [cable] (UTP, TP)

@item FTPD
File Transfer Protocol DAEMON (FTP)

@item FTR
Full Text Retrieval

@item FTS
Fidonet Technical Standard

@item FTS2000
Federal Telecommunications Services - 2000 (USA), "FTS-2000"

@item FTSC
Federal Telecommunications Standards Committee (org., USA)

@item FTSC
Fidonet Technical Standard Conference (Konferenz)

@item FTTC
Fiber To The Curb

@item FTTH
Fibre To The Home (FTTN)

@item FTTLA
Fiber To The Last Amplifier

@item FTTN
Fibre To The Node (FTTH)

@item FTZ
FernmeldeTechnische Zentralamt / Zulassung (DTAG, ZZF, predecessor)

@item FUA
Flow Update Acknowledge [message] (LFAP)

@item FUB
Freie Universitaet Berlin (org.), http://www.inf.fu-berlin.de

@item FUBAB
Fouled / Fucked Up Beyond All Belief (slang, Usenet, IRC)

@item FUBAR
Failed UniBus Address Register (VAX)

@item FUBAR
Fouled / Fucked Up Beyond All Recognition / Repair (slang, Usenet, IRC)

@item FUD
Fear, Uncertainty & Doubt (slang, IBM)

@item FUN
Flow Update Notification [message] (LFAP)

@item FUNI
Frame User Network Interface

@item FUSE
Filesystem in USErspace (Linux)

@item FUSSP
Final Ultimate Solution to the SPAM Problem (SPAM)

@item FUEV
Fernmeldeanlagen-UEberwachungsVerordnung

@item FVD
Forward Versatile Disc (China, WMV)

@item FWH
FirmWare Hub (BIOS, Intel)

@item FWIW
For What It's Worth (slang, Usenet, IRC)

@item FWS
Folding White Space (RFC 1822), ftp://ftp.rfc-editor.org/in-notes/rfc1822.txt

@item FWT
Fast Wavelet Transformation

@item FXO
Foreign eXchange Office (FXS)

@item FXS
Foreign Exchange System / Subscriber (FXO)

@item FXU
FiXed point Unit (POWER, CPU)

@item FYI
For Your Information (slang, Usenet, IRC)

@item FZA
??? [compression]

@item FZI
ForschungsZentrum Informatik (org., Uni Karlsruhe, Germany), http://www.fzi.de

@end table