-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvera.o
1244 lines (831 loc) · 21.4 KB
/
vera.o
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 OA
Object Adapter (ORB, IDL)
@item OA
Office Automation
@item OA
Open Access (SPI, DB)
@item OAA
Open Arcade Architecture (Intel)
@item OACIS
Oregon Advanced Computing InStitute (org.)
@item OAD
Open Architecture Driver (Iomega)
@item OADG
Open Architecture Development Group (org.)
@item OAG
Online Airline Guide (CIS)
@item OAG
Open Application Group (org., USA)
@item OAI
Open Applications Interface
@item OAI
Open Archives Initiative (org.)
@item OAK
Object Application Kernel (Java, predecessor, Sun)
@item OAM
Object Attribute Memory (Gameboy)
@item OAM
Operations, Administration and Management [cell] (ATM)
@item OARNET
Ohio Academic Resources NETwork (network, USA), "OARnet"
@item OAS
Office Automation System
@item OASF
Office Automation System Facilities (OA)
@item OASIS
Online Application System Interactive Software
@item OASIS
Open And Secure Information Systems (Eureka)
@item OASIS
Organization for the Advancement of Structured Information Standards (org.)
@item OASYS
Office Automation SYStem
@item OATS
Office Automation Technology and Services (OA)
@item OAW
Optically Assisted Winchester (HDD, Seagate)
@item OBAK
OBjektAbbildungskatalog (ATKIS)
@item OBD
Online Bugs Database (Sun, DB)
@item OBDH
On-Board Data Handling (ESA, Venus-Express)
@item OBDR
One Button Disaster Recovery (HP, Streamer)
@item OBEX
OBject EXchange (WordPerfect)
@item OBGA
Organic Ball Grid Array (BGA, IC, CPU)
@item OBI
Open Buying on the Internet (Internet, WWW)
@item OBM
Original Brand Manufacturer
@item OBS
Online Book Store (Internet, WWW)
@item OBST
OBject management system of STONE (STONE)
@item OBTWIAVBP
OBligatory The World Is A Very Big Place (telecommunication, Usenet, IRC), "ObTWIAVBP"
@item OBU
On-Board-Unit
@item OC
Object Class (OOP)
@item OC1
Optical Carrier level 1 [51,48 Mbps] (SONET), "OC-1"
@item OC12
Optical Carrier level 12 [622,08 Mbps] (SONET, STM-4), "OC-12"
@item OC18
Optical Carrier level 18 [933,12 Mbps] (SONET, STM-6), "OC-18"
@item OC24
Optical Carrier level 24 [1244,16 Mbps] (SONET, STM-8), "OC-24"
@item OC3
Optical Carrier level 3 [155,52 Mbps] (SONET, STM-1), "OC-3"
@item OC36
Optical Carrier level 36 [1866,24 Mbps] (SONET, STM-12), "OC-36"
@item OC48
Optical Carrier level 48 [2488,32 Mbps] (SONET, STM-16), "OC-48"
@item OC768
Optical Carrier level 768 [39813,12 Mbps] (SONET, STM-256), "OC-768"
@item OC9
Optical Carrier level 9 [466,56 Mbps] (SONET, STM-3), "OC-9"
@item OC96
Optical Carrier level 96 [4976,64 Mbps] (SONET, STM-32), "OC-96"
@item OCC
Operations Control Center
@item OCC
Other Common Carrier
@item OCCA
Open Cooperative Computing Architecture
@item OCD
Off-Chip-Driver [calibration]
@item OCD
Out-of-Cell Delineation (UNI)
@item OCE
Open Collaborative Environment (Apple)
@item OCF
Open Clustering Framework
@item OCF
Open Computing Facility
@item OCFS
Oracle Cluster File System (Oracle, DB)
@item OCG
OEstereichische Computer Gesellschaft (org., Austria)
@item OCL
Object Constraint Language (DB, OO, UML, CASE)
@item OCL
Open Content License (OPL)
@item OCL
Operation Control Language
@item OCL
OS/2 inside Class Library (OS/2)
@item OCLC
Online Computer Library Center (org., Internet, USA)
@item OCO
Object Code Only (OOP)
@item OCPA
Open Content Platform Association (org., Amiga, Sharp, JVC, Kyocera, ...)
@item OCR
Optical Character Recognition
@item OCS
Object Compatibility Standard (Motorola)
@item OCS
Open Cabling System
@item OCSP
Online Certificate Status [revocation] Protocol (cryptography)
@item OCX
OLE Control eXtensions (MS)
@item OD
Optical Disk
@item ODA
Office Document Architecture [protocol] (RFC 1197, ISO 8613, JTC1, ECMA)
@item ODA
Open Document Architecture (CCITT T.410)
@item ODAPI
Open Database Application Programming Interface (Borland, DB, API), "Odapi"
@item ODBC
Open DataBase Connectivity (WOSA, DB, API)
@item ODBMS
Object orientated Database Management System (DBMS, DB)
@item ODC
Optical Disc Corporation (manufacturer)
@item ODD
Operator Distance-Dialing
@item ODE
Object Database and Environment (AT&T, DB)
@item ODE
Online Data Entry
@item ODETTE
Organization for Data Exchange by Tele-Transmission in Europe (org., Europe)
@item ODF
Open Document Format [for Office Applications] (OASIS, ISO/IEC 26300)
@item ODF
Opendoc Development Framework (Apple, OpenDoc)
@item ODF
Opendoc Part Framework (OpenDoc)
@item ODI
Open Data link Interface (Novell)
@item ODI
Open Device Interconnect
@item ODIA
OpenDoc Internet Adapter (Apple, ALOE, predecessor)
@item ODIF
Office Document Interchange Format (ISO 8613, ASN.1, ODA)
@item ODIN
Optimale Datenmodelle und algorithmen fuer Ingenieur- und Naturwissenschaften [auf hochleistungsrechnern] (Uni Karlsruhe, Germany, SNI)
@item ODINSUP
Open Data link Interface - Network driver interface specification SUPport (ODI, NDIS)
@item ODISS
Optical Digital Image Storage System
@item ODK
Office Development Kit
@item ODL
Object Description Language
@item ODL
Open Document Language (ODA, SGML)
@item ODLI
Open Data Link Interface
@item ODM
Object Database Manager (AIX, IBM)
@item ODM
Original Design Manufacturer (OEM)
@item ODMA
Open Document Management API (API)
@item ODMG
Object Database Management Group (org., DB)
@item ODP
Open Directory Project (WWW, Netscape)
@item ODP
Open Distributed Processing (ISO)
@item ODP
OverDrive Processor (Intel)
@item ODPR
OverDrive Processor Replacement (Intel)
@item ODR
Octal Data Rate (SDR, GDR, QDR)
@item ODR
Ontrack Data Recovery (Ontrack, Software, Netware)
@item ODR
Optimized Dynamic Routing (SNI)
@item ODS
Offenes Deutsches Schulnetz (network)
@item ODS
Office Dialog System (OA)
@item ODS
Open Data Services
@item ODS
Optical Data Systems [inc.] (manufacturer)
@item ODS
Output Delivery Database
@item ODS
Overhead Data Stream
@item ODSI
Open Directory Service Interfaces (MS, Windows NT)
@item ODSPE
Optical-based Digital Signal Processing Engine (DSP)
@item ODT
On-Die-Termination
@item ODT
Online Debugging Technique
@item ODT
Open DeskTop (SCO, GUI)
@item ODVA
Open DeviceNet Vendor Association (org.)
@item OE
Outlook Express (MS, Internet)
@item OEB
Open eBook [standard] (MS, NuvoMedia, ...)
@item OECOS
Organizational Engineering for Communications and Organizational Systems (SNI, OA)
@item OEM
Original Equipment Manufacturer (ODM)
@item OEP
Operand Execution Pipelines (Motorola, CPU)
@item OES
Olivetti EntsorgungsService (Olivetti)
@item OES
Open Enterprise Server (Novell, Linux)
@item OF
Overflow Flag (assembler)
@item OFA
Optimal Flexible Architecture (Oracle)
@item OFC
Open Financial Connectivity (MS, banking)
@item OFDM
Orthogonal Frequency Division Multiplexing (FDM, DVB-T, WIMAX)
@item OFDMA
Orthogonal Frequency Division Multiple Access (WIMAX)
@item OFET
Organic Field Effect Transistor
@item OFFIS
Oldenburg Forschungsinstitut Fuer Informatikwerkzeuge und -Systeme (org., Uni Oldenburg)
@item OFFSAP
Oracle Fusion For SAP (Oracle, SAP)
@item OFS
Object File System
@item OFS
Output Field Separator (AWK)
@item OFTA
OFfice of the Telecommunications Authority (org., Hongkong)
@item OFTP
ODETTE File Transfer Protocol (ODETTE)
@item OFX
Open Financial eXchange (banking, Intuit, MS, Checkfree, USA)
@item OGC
Office of Government Commerce (org., UK)
@item OGM
Ogg Media Streams (DivX, video)
@item OGRAN
OpenGate - Router Access Node ??? (RND), "OG-RAN"
@item OGSA
Open Grid Services Architecture (grid, GGF)
@item OGSADAI
Open Grid Services Architecture - Database Access and Integration (OGSA, grid, IBM, Oracle), "OGSA-DAI"
@item OGSI
Open Grid Service Infrastructure (OGSA, GGF, WG, grid)
@item OH
Off-Hook (MODEM)
@item OHCI
Open Host Controller Interface (USB, Compaq, OPTI, Apple, UHCI)
@item OIA
Operator Information Area (IBM)
@item OIC
Oh, I See (telecommunication, Usenet, IRC)
@item OID
Object IDentifier (OSI)
@item OIDL
Object Interface Definition Language
@item OIDP
Oracle Internet Development Pack (Oracle, Internet)
@item OIF
Outgoing InterFace (PIM, IIF, Multicast)
@item OII
Operations-Intelligence Interface (mil.)
@item OIIC
Optically Interconnected Integrated Circuits [project] (ESPRIT)
@item OIL
Operator Identification Language (ELI)
@item OIM
Open Information Model
@item OIP
Open Internet Platform (Caldera, Linux, SCO)
@item OIT
Onboard Information Terminal (Airbus, A380)
@item OIW
Open Information Warehouse (SAP, R/3)
@item OIW
OSI Implementors Workshop (OSI)
@item OLAP
OnLine Analytical Processing (DB)
@item OLE
Object Linking and Embedding
@item OLED
Organic Light Emitting Display (OLED, LED)
@item OLEDB
Object Linking and Embedding - DataBase ??? (DB), "OLE DB"
@item OLEDS
Object Linking and Embedding Directory Services (ODSI, MS), "OLE DS"
@item OLEO
Open Linking and Embedding of Objects (OLE, OpenDoc)
@item OLEP
Organic Light-Emitting Polymer [display]
@item OLI
Originating Line Information
@item OLIS
Oxford Library Information System
@item OLIT
OpenLook Interface Toolkit (OpenLook)
@item OLIVR
OnLine Interactive Virtual Reality, "OLiVR"
@item OLLI
OnLine Library Information
@item OLM
OnLine Monitor
@item OLMC
Output Logic Macro Cell (GAL)
@item OLOCA
Official List of Cygwin Acronyms (Cygwin)
@item OLPS
OnLine Programming System
@item OLRT
OnLine Real-Time
@item OLS
Online Library System
@item OLSR
Optimized Link State Routing (MANET, OLSR, RFC 3626)
@item OLTEP
OnLine Test Executive Program
@item OLTM
Optical Line Terminating Multiplexer, "O-LTM"
@item OLTP
OnLine Transaction Processing
@item OLWM
OpenLook Window Manager (OpenLook)
@item OM1
Open MPEG consortium 1 (org., MPEG), "OM-1"
@item OMA
Object Management Architecture (OMG)
@item OMA
Open Mobile Alliance (org., mobile-systems)
@item OMA
Outlock Mobile Access (mobile-systems, PDA, WAP)
@item OMAP
Open Multimedia Application Platform (TI)
@item OMC
Operation and Maintenance Center (PLMN, GSM, mobile-systems)
@item OME
Open Messaging Environment (Novell)
@item OMF
Object Management Framework (DME)
@item OMF
Object Module Format (IBM, MS)
@item OMF
Open Media Framework (org.)
@item OMFI
Open Media Framework Interchange (OMF)
@item OMG
Object Management Group (IBM, HP, DEC, Tandem, Sun, org.)
@item OMG
Oh My G-d (slang, Usenet, IRC)
@item OMI
Open Messaging Interface
@item OMISTN
Optical Mode Interface SuperTwisted Nematic (LCD), "OMI-STN"
@item OMN
Open Network Management
@item OMR
Optical Mark Reader (Fax)
@item OMR
Optical Mark Recognition
@item OMS
Object Management System
@item OMS
Onboard Maintenance System (Airbus, A380)
@item OMS
Open Music System (MIDI, Opcode Systems)
@item OMT
Object Management Technique (Westmount, CASE)
@item OMT
Object Modelling Technique (CASE)
@item ON
Ordinary Node (Kazaa, P2P)
@item ONA
Open Network Architecture
@item ONAC
Operations Network Administration Center
@item ONAL
Off Network Access Line
@item ONC
Open Network Computing (Sun)
@item ONCXDR
Open Network Computing eXternal Data Representation (Sun), "ONC XDR"
@item ONE
Omnifunctional Networking Environment (Panasonic)
@item ONE
Open Network Environment (Netscape)
@item ONI
Operator Number Identification
@item ONIX
ONline Information eXchange [guidelines]
@item ONMS
Open-Network Management System
@item ONS
Object Numbering System (EPC)
@item OO
Object Orientated
@item OOA
Object Orientated [system] Analysis (OOP)
@item OOAD
Object Orientated Analysis and Design (OOP)
@item OOB
Out Of Band (S-ATA), "OoB"
@item OOCTG
Object Orientated COBOL Task Group (CODASYL, org., OOP)
@item OOD
Object-Oriented Design
@item OODB
Object Oriented Data Base (OOP, DB)
@item OODBMS
Object Orientated Database Management System (DBMS, DB)
@item OODL
Object Orientated Dynamic Language (OOP)
@item OOF
Office of The Future (OA)
@item OOF
Out of Frame (DS3/E3)
@item OOL
Object-Oriented Language (OOP)
@item OOL
Open Objects Library (OS/2)
@item OOM
Object Orientated Modelling (OO)
@item OOM
Object-Oriented Methodology (OOP)
@item OOM
Out Of Memory
@item OOO
Out Of Order [execution] (Intel, Pentium, CPU)
@item OOP
Object Orientated Programming (OOP)
@item OOPL
Object-Oriented Programming Language (OOP)
@item OOPS
Object Oriented Program Support (OOP)
@item OOPS
Object-Oriented Programming System (OOP)
@item OOPSLA
[conference on] Object Orientated Programming Systems, Languages and Applications (ACM, OOP, conference)
@item OOPSTAD
Object Orientated Programming for SmallTalk Application Development association (org., OOP)
@item OOS
Object-Oriented Systems
@item OOS
Out-Of-Sequence
@item OOSA
Object Orientated System Analysis (OOP)
@item OOSH
Object-Oriented SHell (OOP, Shell)
@item OOT
Object-Oriented Technology (OOP)
@item OOTB
Out Of The Box (slang, Cygwin)
@item OOUI
Object Orientated User Interface (UI, OO, WPS)
@item OP
Oracle9iAS Personalization (Oracle, DB)
@item OP
Original Poster (slang, Usenet)
@item OPA
Open Publishing Architecture
@item OPAC
Online Public Access Catalogue (Internet)
@item OPC
OLE for Process Control (OLE, HMI, SCADA)
@item OPC
OpenGL Performance Characterization [project group] (OpenGL, org.)
@item OPC
Optical Proximity Correction [lithography]
@item OPC
Organic Photo Conductor
@item OPC
Overall Performance Category
@item OPCOS
OPerating COuntrieS
@item OPCR
Original Program Clock Reference
@item OPDU
Operation Protocol Data Units
@item OPEN
[You-R] OPerating ENvironment (Infineon, RFID)
@item OPEN
Open Protocol Enhanced Networks
@item OPENEXR
OPEN EXtended Range ??? (HDR), "OpenEXR"
@item OPENGL
OPEN Graphics Language (OpenGL), "OpenGL"
@item OPENHCI
Open Host Controller Interface (USB), "OpenHCI"
@item OPERA
Open PLC European Research Alliance (org., PLC, Europe)
@item OPES
Open Pluggable Edge Services
@item OPI
Open Prepress Interface (DTP)
@item OPIE
Open Palmtop Integrated Environment (Linux, PIM)
@item OPK
OEM Pre-installation Kit (MS, Windows, OEM)
@item OPL
Open Publication License (OCL)
@item OPL
Organizer Programming Language (Psion, PDA)
@item OPM
Operations-Per-Minute
@item OPM
Optimized Power Management (AMD, Opteron)
@item OPML
Outline Processor Markup Language (XML, RSS)
@item OPP
Object Push Profile (Bluetooth)
@item OPQ
Optimal Picture Quality [mode] (CRT, Iiyama)
@item OPS
Operations Per Second (CPU)
@item OPS
Oracle Parallel Server (Oracle)
@item OPS
Outbreak Prevention Service (Firewall, TrendMicro)
@item OPSEC
Open Platform for Secure Enterprise Connectivity (org., manufacturer, IDS)
@item OPT
Open Protocol Technology
@item OQL
Object Query Language (ODMG)
@item OR
Observation Report (CC)
@item OR
Originator / Recipient (X.400, MOTIS), "O/R"
@item ORAIS
Opportunities and Risks of Artificial Intelligent Systems (conference, GI)
@item ORB
Object Request Broker (OMA, OMG, CORBA, ORB)
@item ORCA
Online Resource Control Aid
@item ORDB
Open Relay DataBase (SPAM)
@item ORDBMS
Object Relational Database Management System (DBMS, DB)
@item ORK
Office Resource Kit (MS, Windows)
@item ORM
Object Role Modeling (OO, DB)
@item ORM
Optical Remote Module
@item OROM
Optical Read Only Memory (ROM), "O-ROM"
@item ORS
Output Record Separator (AWK)
@item ORT
Ongoing Reliability Test
@item OS
Operating System
@item OS2
Operating System /2 (IBM, OS), "OS/2"
@item OS200
Operating System 200 (Honeywell), "OS/200"
@item OS2000
Operating System 2000 (Honeywell), "OS/2000"
@item OS3
Oregon State Open Shop Operating System (OS, CDC 3300), "OS-3"
@item OS32MT
Operating System /32 - Multitasking Time (OS, Interdata), "OS/32-MT"
@item OS32ST
Operating System /32 - Serial Time (OS, Interdata), "OS/32-ST"
@item OS360
Operating System /360 (IBM, OS), "OS/360"
@item OS4
Operating System /4 (OS, UNIVAC 9700), "OS/4"
@item OS400
Operating System /400 (IBM, OS), "OS/400"
@item OS7
Operating System /7 (OS, UNIVAC 9700), "OS/7"
@item OS700
Operating System /700 (OS, Honeywell), "OS/700"
@item OS8
Operating System /8 (OS, DEC, PDP 8), "OS/8"
@item OS9
Operating System - 9 (Microware, OS), "OS-9"
@item OSA
Object System Adaptor (SOM)
@item OSA
Office Systems Administrator (OA)
@item OSA
Open Scripting Architecture (Apple, OS/2)
@item OSAC
Operator Services Assistance Center
@item OSADL
Open Source Automation Development Lab (org., OSS)
@item OSAIA
Open Source And Industry Alliance (org.)
@item OSAK
Open Systems Application Kernel
@item OSAM
Overflow Sequential Access Method (SAM)
@item OSAR
Optical Storage and Retrieval
@item OSC
Ohio Supercomputer Center (org., USA)
@item OSCA
Only Specifically Cygwin-list Acronyms (OLOCA, Cygwin)
@item OSCAR
OnScreen Configuration & Activity Reporting (Apex)
@item OSCRL
Operating System Command Response Language
@item OSD
OnScreen Display
@item OSD
Open Software Description [manifest / standard] (MS, Marimba, XML, DU, DUP, MSIE)
@item OSDB
Open Source DataBase benchmark (benchmark)
@item OSDL
Open Source Development Lab (org., OSS)
@item OSDN
Open Source Development Network (OSS, Network)
@item OSDS
Operating System for Distributed Switching
@item OSE
Open Software / System Environment
@item OSEIA
Open System Environment profile for Imminent Acquisitions (OSE), "OSE/IA"
@item OSF
Open Software Foundation (HP, DEC, IBM, org.)