File: vera.r

package info (click to toggle)
vera 1.23-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 996 kB
  • ctags: 1,139
  • sloc: asm: 1,212; fortran: 809; ansic: 555; yacc: 65; sh: 30; perl: 26; makefile: 25
file content (1561 lines) | stat: -rw-r--r-- 25,496 bytes parent folder | download
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
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
@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 RA
Real Address (Power4, IBM, CPU)

@item RA
Registration Authority (PKI, ITU, cryptography)

@item RA
Remote Access (BBS)

@item RABF
Redundant Accumulative Backhitchless Flush (IBM, Streamer)

@item RAC
Random Access Channel (HiperLAN/2)

@item RAC
Real Application Cluster (Oracle)

@item RACE
Research and technology development in Advanced Communications technologies in Europe (Europe, predecessor, CORDIS)

@item RACE
Rowbased ASCII Compatible Encoding (ASCII, Internet, VeriSign/NSI)

@item RACER
Renamed Abox and Concept Expression Reasoner

@item RACF
Resource Access Control Facility (IBM, MVS/ESA)

@item RACH
Random Access CHannel (GSM, CCCH, mobile-systems)

@item RAD
Rapid Access Disk

@item RAD
Rapid Application Development [toolkit] (Delphi, Borland)

@item RAD
Research And Development [data communications] (manufacturer)

@item RADIUS
Remote Authentication Dial-In User Service (RFC 2865)

@item RADSL
Rate Adaptive Digital Subscriber Line (ADSL)

@item RAFF
Rotary Acceleration Feed Forward (WD, HDD)

@item RAI
Remote Alarm Indication (DS3/E3)

@item RAID
Redundant Array of Independent / Inexpensive Disks (HDD, RAID)

@item RAIDIOS
RAID I/O Steering (Intel, RAID)

@item RAII
Resource Acquisition Is Initialization

@item RAIR
Random Access Information Retrieval

@item RAL
ReichsAusschuss fuer Lieferbedingungen (IEC 12119)

@item RAL
Rutherford Appleton Laboratory (org., UK)

@item RAM
Random Access Memory (RAM, IC)

@item RAM
Rarely Adequate Memory (slang)

@item RAM
Rate Adaptive Mode (DSL)

@item RAMDAC
Random Access Memory Digital to Analog Converter (RAM)

@item RAMIS
Rapid Access Management Information System

@item RAMP
Remote Access Maintenance Protocol

@item RAMPS
Reliability, Availability, Manageability, Performance and Scalability (DB)

@item RAMS
Record Archival Management System

@item RAN
Radio Access Network

@item RAND
Rural Area Network Design

@item RAP
[internet] Route Access Protocol (RFC 1476, Internet)

@item RAP
Remote Access Point

@item RAP
Rich Ajax Platform (RCP, Eclipse)

@item RAPID
Resource And Performance Interactive Display system

@item RAPS
Real Application on Parallel Systems

@item RARE
Reseaux Associes pour la Recherche Europeenne (org.)

@item RARP
Reverse Address Resolution Protocol (Internet, RFC 903)

@item RAS
Reliability, Availability and Serviceability (IBM)

@item RAS
Remote Access Software

@item RAS
Row Address Strobe (IC, DRAM)

@item RAT
Register Allocation Table (Intel, CPU)

@item RAT
Remote Access Tool

@item RAT
Remote Access Trojan

@item RATP
Reliable Asynchronous Transfer Protocol (RFC 916)

@item RATS
Radio-Amateur Telecommunications Society (org., USA)

@item RATS
Rough Auditing Tool for Security (WWW, CGI, PERL, PHP,...)

@item RAVE
Relational Advanced Visual Environment

@item RAW
Read-After-Write (WAW, WAR)

@item RBA
Relative Byte Address

@item RBAC
Role Based Access Control (SELinux)

@item RBBS
Remote Bulletin Board System (BBS)

@item RBF
Random Block Filemanager (OS-9)

@item RBH
Remote Bridge Hub

@item RBL
Realtime Blackhole / Block List (Internet, SPAM)

@item RBM
Realtime Batch Monitor (OS, Xerox)

@item RBMS
Remote Bridge Management Software

@item RBOC
Regional Bell Operating Company (USA)

@item RC
Reconfigurable Computer / Computing (RL)

@item RC
Region Co-ordinator (FidoNet)

@item RC
Release Candidate (MS)

@item RC
Return Code (REXX, ...)

@item RC
Routing Control

@item RC2
Rivest Cipher / Ron's Code 2 (cryptography)

@item RC4
Rivest Cipher / Ron's Code 4 (cryptography)

@item RC5
Rivest Cipher 5 (RFC 2040, cryptography)

@item RCAS
Reserve Component Automation System

@item RCC
Radio Common Carrier

@item RCC
Regional Control Center

@item RCC
Remote Cluster Controller

@item RCC
Routing Control Center

@item RCD
Receiver-Carrier Detector

@item RCE
Regional Code Enhancement (DVD)

@item RCE
Resident Command Extension (DOS)

@item RCF
Reader's Comment Form (IBM)

@item RCF
Remote Call-Forwarding

@item RCGI
Remote Common Gateway Interface (CGI, WWW, Novell)

@item RCL
Runtime Control Library

@item RCM
Remote Carrier Module

@item RCP
Remote Copy Program

@item RCP
Rich Client Platform (Eclipse, Java)

@item RCS
Reloadable Control Storage

@item RCS
Remote Connection Service (IBM, OS/2, LAN)

@item RCS
Resource Construction Set

@item RCS
Revision Control System (Unix, CM, GNU)

@item RCTC
Rewritable Consumer Time Code (video)

@item RCTL
Resistor-Capacitor-Transistor Logic

@item RCW
Runtime Callable Wrapper (.NET, COM, DLL)

@item RD
Receive Data (MODEM)

@item RD
Recursive Design (CASE)

@item RD
Remove Directory (DOS, OS/2)

@item RD
Research and Development, "R&D"

@item RD
Route Descriptor

@item RDA
Remote Database Access (ISO, OSI)

@item RDB
Receive Data Buffer

@item RDB
Relational DataBase (DB)

@item RDB
Rigid Disk Block (Amiga, Commodore)

@item RDBMS
Relational DataBase Management System (DBMS, DB)

@item RDBMSMIB
Relational DataBase Management System - Management Information Base (DB), "RDBMS-MIB" 

@item RDC
Remote Data Connector

@item RDD
Random Digital Dial

@item RDD
Replaceable Database Driver (Clipper, CA-VO, DB)

@item RDDL
Resource Directory Description Language (XHTML, XML)

@item RDE
Received Data Enable

@item RDE
Redundant Data Elimination (Falconstor, VTL)

@item RDE
Ruby Development Environment (Ruby, IDE)

@item RDES
Remote Data Entry System

@item RDF
Rate Decrease Factor

@item RDF
Record Definition Field

@item RDF
Resource Description Framework (XML, IBM, Netscape, MS, ..., WWW)

@item RDFS
Resource Description Framework Scheme (RDF)

@item RDH
RSA-DES-Hybridverschluesselung (cryptography, HBCI)

@item RDI
Remote Defect Identification / Indicator (UNI)

@item RDL
Relational Database Language (DB)

@item RDL
Remote Digital Loopback

@item RDLAP
Radio Data Link Access Protocol (MODACOM), "RD-LAP"

@item RDM
Relational Data Modeler

@item RDM
Reliably Delivered Message

@item RDMA
Remote Direct Memory Access (VI, Infiniband)

@item RDN
Relative Distinguished Name (X.500)

@item RDNCRC
Research Data Network Cooperative Research Centre (org., Australia)

@item RDO
Remote Data Objects (DB)

@item RDO
Resource Definition Online (CICS, IBM)

@item RDP
Reliable Datagram Protocol

@item RDP
Remote Desktop Protocol (MS)

@item RDP
Remote Display Protocol (MS, Windows NT, ASP)

@item RDQL
Resource Description Query Language (RDF, HP, Java)

@item RDR
Remote Data Recovery (Ontrack)

@item RDR
Request Data with Reply (Feldbus)

@item RDRAM
Rambus Dynamic Random Access Memory (RAM, IC, Rambus)

@item RDRN
Rapidly Deployable Radio Networks (USA, Uni Kansas)

@item RDS
Radio Digital System

@item RDS
Rapid Development System (DB, Informix)

@item RDS
Remote Data Services

@item RDSN
Region Digital Switched Network

@item RDT
Radio Digital Terminal

@item RDT
Restricted Data Transmissions

@item RDTP
[secure] Raw Data Transfer Protocol

@item RE
RAID Edition (WD, RAID)

@item RE
Recommendation Engine (OP, Oracle, DB)

@item RE
Research and Engineering, "R&E"

@item REACH
Research and Educational Applications of Computers in the Humanities

@item READ
Relative Element Address Designate (cryptography)

@item READSL
Reach Extended Asymmetric Digital Subscriber Line (ADSL, DSL), "RE ADSL"

@item REBOL
Relative Expression Based Object Language

@item REGEX
REGular EXpressions (GREP, EMACS, ...)

@item REGIS
REmote Graphics Instruction Set

@item REGTP
REGulierungsbehoerde fuer Telekommunikation und Post Org., Germany, "RegTP"

@item REHMUDI
REdHat MUltimedia Distribution (RedHat, Linux), "ReHMuDi"

@item REM
Remote Equipment Module

@item REM
Ring Error Monitor

@item REMIS
Real Estate Management Information System

@item REMOS
Resources Management On-Line System

@item REPL
Read Eval Print Loop

@item RES
Remote Entry Services

@item REST
REpresentational State Transfer (URL, AWS)

@item RESTENA
RESeau Teleinformatique de l'Education NAtionale et de la recherce (network, Luxembourg)

@item RET
Report Engine Technology (CA, DB)

@item RET
Resolution Enhancement Technology (HP), "REt"

@item RETM
Rare Earth / Transition Metal (MO), "RE/TM"

@item REXX
Restructured EXtended eXecutor [language] (IBM, SAA, ANSI)

@item RF
Radio Frequency (mobile-systems)

@item RFA
Request for Assistance (Internet)

@item RFB
Remote FrameBuffer [protocol]

@item RFC
Remote Function Call (SAP, CPIC)

@item RFC
Request For Change (PERL, ITIL)

@item RFC
Request For Comments (Internet, RFC)

@item RFD
Ready-For-Data

@item RFD
Report Fragmentation Done [bit] (CATNIP, BIT)

@item RFD
Request For Discussion (Internet, Usenet), "RfD"

@item RFE
Request For Enhancement (Internet)

@item RFI
Radio Frequency Interference

@item RFI
Remote File Inclusion

@item RFI
Request For Information (Internet)

@item RFIC
Radio Frequency Integrated Circuit (IC)

@item RFID
Radio Frequency IDentification (ANSI, NCITS)

@item RFMS
Remote File Management System

@item RFNM
Request For Next Message (IMP)

@item RFOG
Radio Frequency Over Glass (HFC, ANSI/SCTE 174 2010), "RFoG"

@item RFP
Request for Package (Linux, Debian)

@item RFP
Request For Proposal (Internet)

@item RFQ
Request for Quatation

@item RFS
Remote File Sharing (AT&T, Unix)

@item RFS
Remote File System

@item RFS
Remote Forensic Software

@item RFS
Request For Sponsor (Linux, Debian)

@item RFS
REXX File System (REXX, CICS, VSAM, IBM)

@item RFT
Request For Technology (OSF)

@item RFT
Revisable Form Text

@item RFTS
Remote File Transfer System (DDVS)

@item RGB
Rot Gruen Blau / Red Green Blue (color system, DTP)

@item RGBA
Red Green Blue Alpha-[byte] (color system, RGB)

@item RGBE
Red Green Blue Emerald (color system, photo, Sony)

@item RGMS
Rotated Grid MultiSampling (graphics)

@item RGP
Raster Graphics Processor

@item RGP
Remote Graphics Processor

@item RH
Request Header

@item RHCE
Red Hat Certified Engineer (RedHat, Linux)

@item RHCT
Red Hat Certified Technician (RedHat, Linux)

@item RHCX
Red Hat Certified eXaminer

@item RHEL
Red Hat Enterprise Linux (Linux, RedHat)

@item RHS
Right Hand Side (NGSCB, MS, Palladium)

@item RI
Reference Implementation (JCP)

@item RI
Ring Indicator (RS-232, MODEM)

@item RI
Routing Information

@item RIA
Rich Internet Application (WWW, Macromedia)

@item RIACS
Research Institute for Advanced Computer Science (org.)

@item RID
Relative IDentifier (AD, SID, ACL)

@item RIDE
Research Issues in Data Engineering (IEEE-CS)

@item RIE
Reactive Ion Etching (IC)

@item RIF
Requirements Interchange Format (HIS)

@item RIF
Routing Information Field (Token Ring)

@item RIFF
Resource Interchange File Format (MS, IBM, MM)

@item RIG
Related Interest Group

@item RIG
Rochester Intelligent Gateway (OS)

@item RII
Routing Information Indicator

@item RIM
Registry Information Model (ebXML)

@item RIM
Remote Installation and Maintenance

@item RIME
Relaynet International Message Exchange

@item RIML
Renderer Independent Markup Language (XML, Consensus)

@item RIMM
Rambus Inline Memory Module (Rambus, IC)

@item RINEX
Receiver INdependent EXchange [format] (GPS)

@item RIO
Redistributed Internet Objects (S3, VRML, Internet)

@item RIO
Remote Input/Output (Power4, IBM)

@item RIOCP
??? (OS), "RIO/CP "

@item RIP
Raster Image Processor (DTP)

@item RIP
Remote Imaging Protocol (BBS)

@item RIP
Return Instruction Pointer (CPU, RAM)

@item RIP
Routing Information Protocol (BSD, IGP, RFC 1721, IP)

@item RIPE
Reseaux IP Europeenne (Europenet)

@item RIPL
Remote Initial Program Load (IBM)

@item RIPNG
Routing Information Protocol Next Generation (RIP, IPV6, RFC 2080), "RIPng"

@item RIPS
Raster Image Processing Systems corporation (manufacturer)

@item RIR
Regional Internet Registry (Internet)

@item RIS
Remote Installation Service (MS, ADS)

@item RISC
Reduced Instruction Set Code (CPU)

@item RISC
Research Institute for Symbolic Computation (org., Austria)

@item RISCOS
RISC Operating System (MIPS, Acorn, OS), "RISC OS"

@item RISLU
Remote Integrated Services Line Unit

@item RISS
[StorageWorks] Reference Information Storage System (HP)

@item RITECH
Resolution Improvement TECHnology (Epson)

@item RITSEC
Regional Information Technology and Software Engineering Center

@item RJ45
Registered Jack 45 (cable)

@item RJE
Remote Job Entry (IBM, Internet, RFC 407)

@item RJEF
Remote Job Entry Function

@item RJP
Remote Job Processing

@item RKO
RootKey Operator (DNS)

@item RKRM
ROM Kernel Reference Manual (Amiga, Commodore)

@item RL
Real Life (telecommunication, Usenet, IRC)

@item RL
Reconfigurable Logic (RL)

@item RLC
Radio Link Control (GPRS, mobile-systems)

@item RLDRAM
Reduced-Latency Dynamic Random Access Memory (RAM, DRAM, IC)

@item RLE
Run-Length Encoded

@item RLIN
Research Libraries Information Network (network)

@item RLL
Run Length Limited [encoding]

@item RLM
Redundant Lock Manager (GFS)

@item RLN
Remote LAN Nodes (LAN)

@item RLP
Radio Link Protocol (GSM, mobile-systems)

@item RLP
Resource Location Protocol (Internet, RFC 887)

@item RLPR
Remote Line Printing Request (LPR, printing)

@item RLS
Read Link error Status (FCP)

@item RLS
Received Line Signal

@item RLSD
Received Line Signal Detector

@item RLSFB
Read Last Spool File Buffer (IBM, VM/ESA, CP)

@item RLT
Remote Line Test

@item RLV
RingLeitungsVerteiler

@item RM
Resource Management

@item RM
Retention Module

@item RMA
Remote Memory Access

@item RMAS
Remote Memory Administration System

@item RMATS
Remote Maintenance Administration and Traffic

@item RMC
Rambus Memory Controller (Rambus)

@item RMC
Rational Method Composer (RUP, IBM)

@item RMCOS
Ryan-McFarland COBOL (????) Operating System (OS, COBOL), "RM/COS"

@item RMCP
Remote Management Control Protocol

@item RMF
Resource Measurement Facility (IBM, MVS)

@item RMI
Remote Method Invocation (Java, API)

@item RMIC
Remote Memory In Cassette (IBM, Streamer, WORM, MIC), "R-MIC"

@item RMM
Ring Management Module (Token Ring)

@item RMODP
Reference Model - Open Distributed Processing (RUP), "RM-ODP"

@item RMON
Remote MONitoring

@item RMOS
Realtime Multitasking Operating System (SNI, OS)

@item RMS
Reason Maintenance System (AI)

@item RMS
Reliant Monitor Services (FSC)

@item RMS
Remote Monitoring System [bus]

@item RMS
Richard Matthew Stallman (FSF, EMACS)

@item RMS
Rights Management Services (MS, Windows, NGSCB)

@item RMT
Raw Magnetic Tape (Unix)

@item RMT
Reliable Multicast Transport (IETF, WG, Multicast)

@item RMT
REXXware Migration Tool (Simware, REXX)

@item RMT
Ring ManagemenT (FDDI, SMT)

@item RMX
Reverse Mail eXchange (DNS, SPAM)

@item RNA
Remote Network Access

@item RNC
Radio Network Controller (mobile-systems, UMTS, RAN)

@item RND
RAD Network Devices (RAD, manufacturer)

@item RNG
Random Number Generation

@item RNI
Raw Native Interface (MS, Java)

@item RNID
Request Node IDentification (FCP, SNIA, HBA, API)

@item RNM
Resistors Network Method (audio)

@item RNOC
Regional Network Operations Center

@item RNPRSFP
Read Next PRint Spool File Block (IBM, VM/ESA, CP)

@item RNPUFSB
Read Next PUnch Spool File Block (IBM, VM/ESA, CP)

@item RNR
Receive Not Ready (LAPB)

@item RNSB
Read Next Spool Buffer (IBM, VM/ESA, CP)

@item RNUI
Remote Network User Identification (Datex-P)

@item RO
Read-Only (I/O)

@item ROAMS
Reusable Object Access and Management System

@item ROC
RAID On a Chip (RAID)

@item ROC
Reconstruction Of Color (ICE, Scanner)

@item ROCF
Remote Object Class Factory

@item ROD
Rewritable Optical Disk (OD)

@item RODC
Read-Only Domain Controller (MS, AD)

@item ROFL
Roar Out From Laughing (slang, Usenet, IRC)

@item ROHC
RObust Header Compression (RFC 3095/3759, RTP, UDP, ESP)

@item ROHS
Restriction Of the use of certain Hazardous Substances in electrical and electronical equipment (Europe), "RoHS"

@item ROLAP
Relational OnLine Analytical Processing (OLAP, DB)

@item ROLC
Routing Over Large Clouds

@item ROM
Read Only Memory (ROM)

@item ROMB
RAID On MotherBoard (RAID)

@item ROMBIOS
Read-Only Memory - Basic Input Output System (ROM, BIOS), "ROM-BIOS"

@item ROMC
Required Operational Messaging Characteristics

@item ROMP
Research Office products division MultiProcessor (IBM, AIX)

@item ROP
Remote Operations Service (IBM, OS/2)

@item ROP
Return Orientated Programming

@item ROS
Read-Only Storage

@item ROS
Resident Operating System (OS)

@item ROSE
[CAE] Real-time Object-based Simulation Environment

@item ROSE
Remote Operations Service Element (OSI, RPC)

@item ROT
Running Object Table (MS, Windows)

@item ROTFL
Rolling On The Floor Laughing (slang, Usenet, IRC)

@item ROTFLBTC
Rolling On The Floor Laughing and Biting The Carpet (slang, Usenet, IRC)

@item ROTFLMAO
Rolling On The Floor Laughing My Ass Off (slang, Usenet, IRC)

@item RP
Rapid Prototyping (CNC, CAD)

@item RP
Relay Party (IRC)

@item RP
Rendezvous Point (PIM, Multicast)

@item RPA
Remote Phrase Authentication

@item RPC
Region Playback Control (DVD)

@item RPC
Remote Procedure Call (Sun, Xerox, OSF, ECMA, RFC 1831)

@item RPC2
Region code Playback Control phase 2 (DVD), "RPC-2"

@item RPCL
Remote Procedure Call Language (ONC, Sun)

@item RPCS
Refined Printing Command Stream (Ricoh)

@item RPDFP
Remote Physical Device Finger Printing (NAT, IP)

@item RPE
Remote Peripheral Equipment

@item RPELTP
Regular Pulse Excitation with Long-Term Prediction [loop] (LPC), "RPE-LTP"

@item RPF
Rendezvous Point Forwarding (PIM, MSDP, Multicast, RP)

@item RPF
RePeat active File (IBM, VM/ESA, CP)

@item RPF
Reverse Path Forwarding (PIM, Multicast)

@item RPG
Report Program Generator

@item RPG
Role Playing Game

@item RPL
Remote Program Load

@item RPL
Requested Privilege Level

@item RPL
Resident Programming Language

@item RPM
Radio Packet Modem (Motorola)

@item RPM
Redhat Package Manager (Linux)

@item RPM
Remote Port Module (Ascend)

@item RPN
Reverse Polish Notation

@item RPP
Relative Processor Performance (CPU, Cray)

@item RPS
Read Port Status (FCP)

@item RPS
Realtime Programming System (OS, IBM)

@item RQBE
Relational Query By Example (DB, QBE)

@item RR
Radio Resource management (MM, CM, GSM, mobile-systems)

@item RRAS
Routing and Remote Access Service (MS, Windows NT)

@item RRCM
Reservation Request Control Mechanism (DQDB)

@item RRDS
Relative Record Data Set (VSAM)

@item RRIP
Rock Ridge Interchange Protocol (CD, Unix)

@item RRO
Radial Run Out (DVD)

@item RROD
Red Ring Of Death (MS, Xbox)

@item RRP
Registry Registrar Protocol (VeriSign, RFC 2832/3632)

@item RRZE
Regionales RechenZentrum Erlangen (org.)

@item RRZN
Regionales RechenZentrum fuer Niedersachsen (org.)

@item RS
Recommended Standard

@item RS
Reconciliation Sublayer (10GE, OSI)

@item RS
Registry Service (DCE, ebXML, ...)

@item RSA
Random Scheduling Algorithm [protocol]

@item RSA
Reference System Architecture

@item RSA
Reusable Software Assets

@item RSA
Rivest, Shamir and Adleman (cryptography, RSA)

@item RSAC
Recreational Software Advisory Council (org.)

@item RSAP
Remote Service Access Point (SAP)

@item RSAT
Reliability and System Architecture Testing

@item RSAT
Remote Server Administration Tools (AD)

@item RSB
Remote view Service Board (FSC)

@item RSBAC
Rule Set Base Access Control (Linux)

@item RSCN
Registered State Change Notification (FCP)

@item RSCS
Remote Source Control System

@item RSCS
Remote Spooling Communications Subsystem (IBM, VM, NJE)

@item RSCT
Reliable Scalable Cluster Technology (IBM)

@item RSD
Really Simple Discoverability

@item RSDP
Root System Description Pointer (ACPI)

@item RSDT
Root System Description Table (ACPI)

@item RSE
Removable Storage Elements

@item RSE
Research and Systems Engineering

@item RSF
Remote Service Facility (IBM)

@item RSF
Remote Support Facility

@item RSF
ReStart active File (IBM, VM/ESA, CP)

@item RSFD
Retrieve Subsequent File Descriptor (IBM, VM/ESA, CP)

@item RSFDNPR
Retrieve Subsequent File Descriptor Not Previously Retrieved (IBM, VM/ESA, CP)

@item RSFQ
Rapid Single Flux Quantum [logic]

@item RSH
Remote SHell (Unix, BSD, Shell)

@item RSH
Restricted SHell (Unix, Shell)

@item RSI
Repetitive Strain Injury

@item RSIS
Relocateable Screen Interface Specification

@item RSLM
Remote Subscriber Line Module

@item RSM
Remote Switching Module

@item RSMMC
Reduced Size MultiMediaCard (MMC), "RS-MMC"

@item RSN
Real Soon Now (slang)

@item RSN
Robust Security Network (WLAN, cryptography)

@item RSP
Reality Signal Processor (Nintendo)

@item RSPC
Reed Solomon Product Code (SDD, CD), "RS-PC"

@item RSS
Rich / RDF Site Summary (XML, RDF)

@item RSSCP
Remote System Services Control Point (SSCP)

@item RST
Rapid Storage Technology

@item RST
Running Status Table (DVB)

@item RSTS
Resource Sharing Time Sharing (DEC)

@item RSTSE
Resource System Time Sharing/Enhanced (DEC), "RSTS/E"

@item RSU
Remote Software Update (IBDM, OS/2, ...)

@item RSU
Remote Switching Unit

@item RSVP
Resource reSerVation Protocol (IP, RFC 2205)

@item RSX
Realistic Sound eXperience (Intel, audio)

@item RSX11
Resource Sharing eXecutive - 11 (DEC, OS, PDP 11), "RSX-11"

@item RSX3D
Realistic Sound eXperience - 3D (Intel, audio, VRML), "RSX-3D"

@item RT
Register Transfer

@item RT
Remote Terminal

@item RT
Research and Technology, "R&T"

@item RT
Routing Type

@item RTA
Rapid Thermal Annealling (IC, MOSFET)

@item RTA
Real Time Adherence

@item RTA
Real-Time Accelerator

@item RTAM
Remote Teleprocessing Access Method

@item RTB
Read Tape Binary

@item RTBM
Real Time Bit Mapping (BIT)

@item RTC
Real Time Clock

@item RTC
Real-Time Command

@item RTCP
Real Time Control Protocol (RTP)

@item RTCS
Real Time Computer System

@item RTCU
Real Time Control Unit

@item RTD
Real Time Display

@item RTDAT
RealTime Deformation And Tessellation [engine] (3D, Shiny), "RT-DAT"

@item RTDHS
Real Time Data Handling System

@item RTE
Real Time Execution

@item RTE
Real Time Executive (OS, HP, HP 2000)

@item RTE
Remote Terminal Emulation

@item RTE
Run Time Environment

@item RTE6VM
Real Time Executive - 6 / Virtual Memory (OS, HP, RTE, HP 1000), "RTE-6/VM"

@item RTEMS
Real-Time Executive for Multiprocessor Systems (RTOS)

@item RTEX
Real Time EXecutive (OS, Interdata)

@item RTF
Rich Text Format

@item RTFF
Read The Fucking FAQ (slang, Usenet)

@item RTFM
Read The Flaming / Fucking Manual (slang, Usenet, IRC)

@item RTG
Real Time Gambling

@item RTG
Real Time Geometry (manufacturer)

@item RTG
Routing Table Generator

@item RTI
ReTurn from Interrupt

@item RTIN
Request Topology INformation (FCP, SNIA, HBA, API)

@item RTL
Real Time Language

@item RTL
Register Transfer Language (GCC)

@item RTL
Register Transfer Level

@item RTL
Resistor-Transistor Logic

@item RTL
RunTime Library

@item RTLINUX
Real-Time Linux (Linux)

@item RTM
Registered Transfer Module

@item RTM
Release To Manufacture / Market

@item RTM
Remote Test Module

@item RTMOS
Real Time Multiprogramming Operating System (OS, GE)

@item RTMP
Routing Table Maintenance Protocol (AppleTalk)

@item RTMS
Real Time Multiprogramming System (???) (OS)

@item RTOS
Real Time Operating System (OS, Interdata, Prime, ...)

@item RTOS16
Real Time Operating System - 16 (OS, Digico), "RTOS-16"

@item RTOS360
Real Time Operating System /360 (IBM, OS, S/360), "RTOS/360"

@item RTOSUH
Real Time Operating System - Universitaet Hannover (OS), "RTOS-UH"

@item RTP
Real Time Protocol (Internet, RFC 1889/1890, RTCP)

@item RTS
Real Time Strategy [game] (TBS)

@item RTS
Real Time System

@item RTS
Reliable Transfer Service (OSI)

@item RTS
Request To Send (MODEM, RS-232)

@item RTS
Residual Time Stamp

@item RTSE
Reliable Transfer Service Element (OSI)

@item RTSM
RealTime System Manager

@item RTSP
Real Time Streaming Protocol (TV, WWW, UDP, TCP/IP, RDP, Multicast, VoIP, RFC 2326)

@item RTT
Resonant Tunneling Transistor

@item RTT
Round-Trip Time

@item RTTI
Run-Time Type Identification (ANSI)

@item RTTM
Round-Trip Time Measurements (TCP, satellite)

@item RTTS
Real Time Task Scheduler (OS, August Systems)

@item RTTY
Radio Tele TYpe

@item RTU
Real Time Unix (Unix)

@item RTU
Remote Terminal Unit (ESA, Venus-Express)

@item RTUX
Real Time UniX (OS, Emerge Systems)

@item RTV
Real Time Video

@item RTVBR
RealTime Variable Bit Rate (VBR, ATM, BIT), "rt-VBR"

@item RTX
Real Time eXecutive (OS)

@item RTX16
Real Time eXecutive - 16 (OS, Honeywell, ...), "RTX-16"

@item RUA
Remote User Agent

@item RUAC
Remote User Access Centers

@item RUI
Reality User Interface

@item RUM
Real User Monitoring (WWW)

@item RUOW
Remote Unit Of Work (DRDA, IBM), "RUoW"

@item RUP
Rational Unified Process (IBM)

@item RUS
Rechenzentrum der Universitaet Stuttgart (org., Uni Stuttgart, Germany)

@item RUTE
RUTE Users Tutorial and Exposition (Unix), "R.U.T.E."

@item RVC
Ruby VSphere Console (VSAN), "RvC"

@item RVD
Remote Virtual Disk

@item RVPPIP
Rendez-Vous Protocol / Presence Information Protocol (IM), "RVP/PIP"

@item RW
Read/Write (I/O), "R/W"

@item RWCP
Real World Computing Partnership (org., Japan)

@item RWPPI
ReWritable Product Promotion Initiative (org., DVD-R, DVD-RW, DVD)

@item RWS
Remote WinSock (Windows, TCP/IP)

@item RWU
Remote Wake-Up (LAN)

@item RXR
Regular XML RDF (XML, RDF)

@item RZ
RechenZentrum

@item RZ
Return-to-Zero [recording]

@item RZG
RechenZentrum Garching

@item RZM
RootZone Maintainer (DNS)

@end table