~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
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
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
@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 S360
System /360 (IBM), "S/360"

@item S370
System /370 (IBM), "S/370"

@item S5
Simple Standards-based Slide Show System (XHTML, CSS, JavaScript)

@item SA
Security Associations (IPSec)

@item SA
Software Assurance (MS)

@item SA
Source [MAC] Address (SNA, Token Ring, ATM, FDDI, ...)

@item SA
Source Active (PIM, MSDP, Multicast)

@item SA
Spare Area (CD-MRW, DA)

@item SA
Storage Array

@item SA
Structured Analysis / Strukturierte Analyse (CASE)

@item SA
System Administrator

@item SA
Systems Analyst

@item SAA
Standard Application Architecture (IBM)

@item SAA
Standards Association of Australia (org., Australia), http://www.standards.com.au/~sicsaa

@item SAAJ
SOAP with Attachments API for Java (SOAP, Java, API)

@item SAAL
Signalling ATM Adaptation Layer (ATM)

@item SAAS
Software As A Service, "SaaS"

@item SABB
Storage Array Building Block

@item SABM
Set Asynchronous Balanced Mode (LABM, LAPB, HDLC)

@item SABME
Set Asynchronous Balanced Mode Extension (SABM)

@item SABRE
Semi-Automatic Business Related Environment (OS, IBM 7090)

@item SAC
Service / Special Area Code

@item SAC
Single Attachment Concentrator (FDDI)

@item SAC
Spatial Audio Coding

@item SAC
Strict Avalanche Criterion (cryptography)

@item SACCH
Slow Associated Control CHannel (GSM, DCCH, mobile-systems)

@item SACRED
Securely Available CREDential (RFC 3760), ftp://ftp.rfc-editor.org/in-notes/rfc3760.txt

@item SACT
SPARC Application Conformance Test (SI, SPARC)

@item SAD
Security Association Database (SA, IPSec)

@item SAD
Serial Analog Delay

@item SADF
Semi-Automatic Document Feeder

@item SADT
Structured Analysis and Design Techniques (SA)

@item SAF
Service Access Facilities (Unix)

@item SAFE
Security And Freedom through Encryption [law] (USA, cryptography)

@item SAFTE
SCSI Accessed Fault-Tolerant Enclose (SCSI, RAID, Intel, NStor), "SAF-TE"

@item SAG
SQL Access Group (org., manufacturer, DB)

@item SAGA
Standards und Architekturen fuer eGovernment Anwendungen (IDA)

@item SAGE
Semi-Automatic Ground Environment system (OS, IBM AN/FSQ7, mil.)

@item SAGE
Software Aided Group Environment (GSS, NUS)

@item SAHF
Store AH Into Flags (assembler)

@item SAIL
Stanford Artificial Intelligence Laboratory [language] (USA, AI)

@item SAIT
Samsung Advanced Institute of Technology (org., Samsung)

@item SAIT
Super Advanced Intelligent Tape (Sony, AIT, Streamer), "S-AIT"

@item SAL
Security Access List

@item SAL
Semware Applications Language (Semware)

@item SAL
SQL windows Application Language (SQL, Gupta)

@item SAL
Symbolic Assembly Language (assembler)

@item SAL
System Abstraction Layer

@item SALT
Script Application Language for Telix

@item SALT
Speech Application Language Tag (MS)

@item SALT
Suse Advanced Linux Technology (Suse, Linux)

@item SALU
Structured Assembly Language Utilities

@item SAM
SCSI-3 Architecture Model

@item SAM
Security Access Manager (MS, Windows, XP)

@item SAM
Security Accounts Manager

@item SAM
Sequential Access Method / Mode (SAM, DAM)

@item SAM
Sort And Merge

@item SAM
Standard Application Model (XTM)

@item SAM
Storage Application Model (Seagate)

@item SAM
Symantec Anti-virus for Macintosh (Apple)

@item SAM
System Activity Monitor

@item SAMATE
Software Assurance Metrics And Tool Evaluation (NIST)

@item SAMI
Synchronized Accessible Media Interchange (MS)

@item SAML
Security Assertion Markup Language (OASIS, cryptography)

@item SAN
Schulen ans Netz [e.v.] (org.)

@item SAN
Storage Area Network

@item SANDRA
System ANalyzer Diagnostic and Reporting Assistant

@item SANE
Scanner Access Now Easy (OSS)

@item SANE
Standard Apple Numeric Environment (Apple)

@item SANET
Slowak Academic NETwork (org., Network), http://www.sanet.sk

@item SAO
Server Activated Object

@item SAO
Session At Once (CD)

@item SAO
Source Address Omitted [flag] (CATNIP)

@item SAP
Service Access Point (OSI)

@item SAP
Service Advertising Protocol (Novell, Netware, IPX)

@item SAP
Session Announcement Protocol (Internet, RFC 2974), ftp://ftp.rfc-editor.org/in-notes/rfc2974.txt

@item SAP
Symbolic Assembler Program (IBM, IBM 704)

@item SAP
SystemAnalyse und Programmentwicklung (manufacturer, predecessor)

@item SAP
Systems, Applications and Products [in data processing] [ag] (manufacturer), http://www.sap-ag.de

@item SAQ
Service, Access, Quality (ISP, UK)

@item SAR
Segmentation And Reassembly

@item SAR
Store Address Register (IC)

@item SARAH
Standard Automated Remote-to-AUTODIN Host (AUTODIN, mil.)

@item SARPDU
Segmentation And Reassembly Protocol Data Unit (ATM, PDU), "SAR PDU"

@item SART
Structured Analysis / Real Time (SA, CASE), "SA/RT"

@item SARTS
Switched Access Remote Test System

@item SAS
Session Active Screen (IBM)

@item SAS
Simulation Automation System

@item SAS
Single Attachment Station (FDDI)

@item SAS
Statistical Analysis System, http://www.sas.com

@item SASD
Sequential Access Storage Device

@item SASE
Specific Application Service Element (ISO, OSI, CASE)

@item SASI
Shugart Associates System Interface

@item SASL
Simple Authentication and Security Layer

@item SAST
South Australia Standard Time [+0930] (TZ)

@item SAT
SIM Application Toolkit (SIM, GSM)

@item SAT
Standard AUTODIN Terminal (AUTODIN, mil.)

@item SAT
Summed Area Table (3D, MIP)

@item SATA
Serial Advanced Technology Attachment (HDD, ATA, SATA)

@item SATAN
Security Administrator Tool for Analyzing Networks (Internet)

@item SATCOM
SATellite COMmunications

@item SATF
Shared Access Transport Facility

@item SAU
Secure Access Unit

@item SAX
Simple API for XML (API, XML)

@item SAX
SUSE Advanced X [configuration tool] (SUSE, Linux)

@item SB
Sound Blaster [audio card] (audio, Creative)

@item SB
System Builder [software] (MS)

@item SBA
SideBand Address [port / bus] (AGP)

@item SBA
Standards-Based Architectures

@item SBA
Synchronous Bandwidth Allocation (SMT, FDDI)

@item SBA
System For Business Automation

@item SBC
SCSI Block Commands (SAM)

@item SBC
Single Board Computer

@item SBC
Small Business Computer

@item SBC
Smart Bitrate Control (DivX, video, BIT)

@item SBCCS
Single Byte Command Code Set [protocol]

@item SBCL
Steel Bank Common LISP (LISP)

@item SBCS
Single Byte Character Set (ASCII, DBCS)

@item SBE
System Builder Edition (MS, Windows)

@item SBF
Sequential Block Filemanager (OS-9)

@item SBF
Simple Boot Flag (Linux, POST)

@item SBH
Secure Backbone Hub (Accton)

@item SBI
Storage Bus Interconnect

@item SBI
Synchronous Bus Interface

@item SBIS
Sustaining Base Information System

@item SBL
Super BASIC Language (BASIC)

@item SBLC
Sustaining Base Level Computer

@item SBMS
Southwestern Bell Mobile Service

@item SBOD
Switched Bunch Of Disks (Xyratex, FC)

@item SBP
SCSI-3 serial Bus Protocol (SAM)

@item SBR
Spectral Bandwidth Replication (MP3, AAC, EAC)

@item SBS
Small Business Server (MS)

@item SBUS
Sun [i/o interface] BUS (Sun, SPARC), "SBus"

@item SC
SubCommittee (ISO, TC, IEC, ...)

@item SCA
Scalable Cooperative Architecture

@item SCA
Software Corporation of America (manufacturer, USA), http://sca.talkthru.com

@item SCA
Synchronous Clock Adjustment

@item SCADA
Supervisory Control And Data Acquisition

@item SCAF
Service Control Agent Function (IN)

@item SCAI
Scandinavian Conference on Artificial Intelligence (conference, FAIS, AI)

@item SCAM
SCSI Configured AutoMatically (SCSI)

@item SCAMC
Symposium on Computer Applications in Medical Care (Konferenz)

@item SCAN
Switched-Circuit Automatic Network

@item SCAP
Security Content Automation Protocol (CVE, NIST)

@item SCART
Syndicat des Constructeurs d' Appareils Radiorecepteurs et Televiseurs (org., video)

@item SCB
Shell Control Box (Balabit)

@item SCB
Subsystem Control Block (OS/2, IBM)

@item SCC
SCSI Controller Commands (SAM)

@item SCC
Serial Communication Controller (FCC, MCC)

@item SCC
Serial Controller-Chip (IC)

@item SCC
Softarc Certified Consulter (SoftArc)

@item SCC
Specialized Common Carrier

@item SCC
Standards Council of Canada (org., Canada), http://www.scc.ca

@item SCC
Storage Connecting Circuit

@item SCC
System Configuration Card (Sun)

@item SCCP
Signaling Connection Control Part (MSC, GSM, mobile-systems)

@item SCCP
Skinny Client Control Protocol (Cisco, VoIP, TCP)

@item SCCS
Source Code Control System (Unix, AT&T, CM)

@item SCCS
Specialized Common Carrier Service

@item SCCS
Switching Control Center System

@item SCD
SPARC Compliance Definition (SI, SPARC)

@item SCDE
Significant CALS Data Elements

@item SCDJWS
Sun Certified Developer for Java Web Services (Sun, Java)

@item SCDMA
Synchronous Code Division Multiple Access (CDMA, mobile-systems)

@item SCDMS
Society for Clinical Data Management Systems (org., USA)

@item SCE
Sony Computer Entertainment (manufacturer, Sony), http://www.scei.co.jp/index_e.html

@item SCE
Structure Chart Editor

@item SCEA
Sony Computer Entertainment America (Sony, manufacturer)

@item SCEF
Service Creation Environment Function (IN)

@item SCEIO
Societe Canadienne pour l'Etude de l'Intelligence par Ordinateur (org., Canada, AI), http://ai.iit.nrc.ca/cscsi_point.html

@item SCF
Selective Call-Forwarding

@item SCF
Sequential Character Filemanager (OS-9)

@item SCF
Service Control Function (IN)

@item SCG
Security Classification Guide

@item SCH
Synchronization CHannel (GSM, mobile-systems)

@item SCHWAFEL
Self Constructing Hyper Wavelet Algorithms For Extrapolating Linguistics

@item SCI
Scalable Coherent Interface (ANSI)

@item SCID
Service Channel IDentifier

@item SCIT
Semi-Conductor and Interconnect Technologies

@item SCL
System Control Language

@item SCLT
Suse Certified Linux Trainer (SuSE, Linux)

@item SCM
Segment Control Module

@item SCM
Service Circuit Modul Mil., Germany

@item SCM
Service Configuration Manager (TR-069, ISP)

@item SCM
Service Control Manager (Windows NT)

@item SCM
Small Core Memory

@item SCM
Software Configuration Management

@item SCM
Supply Chain Management

@item SCMAD
Sun Certified Mobile Application Developer (Sun, Java, J2ME, JTWI)

@item SCMP
Stream Control Message Protocol (ST2)

@item SCMS
[scrambling] (DAT)

@item SCMS
Serial Copy Management System

@item SCN
Specifications Change Notice

@item SCNR
Sorry, Could Not Resist (slang, Usenet)

@item SCO
Santa Cruz Operation (manufacturer, Unix), http://www.sco.com

@item SCO
Synchronous ConnectionLess (HCI, Bluetooth)

@item SCOOPS
SCheme Object Oriented Programming System (OOP)

@item SCOPE
SCalable Object Processing Environment (Creamware)

@item SCOPE
Simple COmmunications Programming Environment (telecommunication)

@item SCOPE
Supervisory Control Of Program Execution (OS, CDC 6000)

@item SCP
Secondary Communications Processors

@item SCP
Secure CoPy (SSH)

@item SCP
Service Control Point (OSI)

@item SCP
Standard Configuration Profile (MODEM)

@item SCP
System Control Program (OS)

@item SCPC
Single Channel Per Carrier

@item SCPDOS
Seattle Computer Products Dis Operating System (OS, DOS, MS-DOS, predecessor), "SCP-DOS"

@item SCPM
SUSE Configuration Profile Management (Linux, SUSE)

@item SCR
Selective Call Rejection

@item SCR
Sustainable Cell Rate (UNI, ATM, VBR)

@item SCRI
Supercomputer Computations Research Institute (org., USA, HPC), http://www.scri.fsu.edu

@item SCS
[systimax] Structured Cabling System (AT&T)

@item SCS
Silicon Controlled Switch

@item SCS
Singapore Computer Society (org., Singapur)

@item SCS
Small Computer System

@item SCS
SNA Character String (IBM)

@item SCS
Sun Control Station (Sun)

@item SCS
Switch Control Software (ForeRunner, ATM)

@item SCSA
Signal Computing System Architecture

@item SCSA
Sun Common SCSI Architecture (Sun)

@item SCSI
Small Computer Systems Interface (SCSI)

@item SCSL
Sun Community Source License (Sun)

@item SCST
SCSI Target framework for linux (SCSI, Linux)

@item SCSU
Standard Compression Scheme for Unicode (Unicode)

@item SCT
Subroutine Call Table

@item SCTE
Society of Cable Telecommunications Engineers (org.), http://www.scte.org/

@item SCTP
Stream Control Transmission Protocol (IETF)

@item SCTS
Secondary Clear to Send

@item SCU
Selector Control Unit

@item SCU
Snoop Control Unit (ARM, MPCore)

@item SCU
System Control Unit (CPU, POWER)

@item SCUMM
Script Creation Utility for Maniac Mansion

@item SCVP
Simple Certificate Validation Protocol (cryptography)

@item SCWCD
Sun Certified Web Component Developer (Sun)

@item SCX
Specialized Communications eXchange

@item SD
Secure Digital [card] (CPRM)

@item SD
Self-Describing [file] (HP)

@item SD
Starting Delimiter (FDDI, Token Ring)

@item SD
Structured Design (CASE)

@item SD
Super Density [disk] (CD, Toshiba, Time Warner)

@item SD
System Display (Airbus, A380)

@item SDA
Screen Design Aid (IBM, ADT)

@item SDA
Shared Data Architecture

@item SDA
Software Design Automation

@item SDA
Source Data Automation

@item SDA
Static Data Authentication (EMV, cryptography)

@item SDA
Swappable Data Area (DOS)

@item SDA
System Display Architecture

@item SDAO
Simulated Data Access Object (DAO, J2EE, Java, DB)

@item SDAP
Service Discovery Application Profile (Bluetooth)

@item SDAV
Systems Design Automation Vendor

@item SDC
Sample Data Collection

@item SDC
Secure Digital Card (PDA), http://www.sdcard.org

@item SDC
Software Development Control [system] (CMU, CM)

@item SDC
Software Distribution Center

@item SDCB
Shared File Control Block (Apollo, DOMAIN)

@item SDCCH
Stand-alone Dedicated Control CHannel (GSM, DCCH, mobile-systems)

@item SDCD
Secondary Data Carrier Detect

@item SDD
Software Design Document

@item SDD
Super Density Disk (Toshiba, Time Warner, ...)

@item SDDAS
Southwest research Data Display and Analysis System

@item SDDI
Shielded Distributed Data Interface (FDDI, STP)

@item SDE
Service Data Element (grid)

@item SDE
Software Development Engineer

@item SDE
Software Development Environment

@item SDF
Screen Definition Facility

@item SDF
Standard Data Format

@item SDF
System Dialog Facility (BS2000)

@item SDFI
Secure Digital Forensic Imaging

@item SDH
Synchronous Digital Hierarchy (FDDI, ATM, SDH)

@item SDHC
Secure Digital High Capacity (SD)

@item SDI
Single Document Interface

@item SDI
Slovensko Drustvo Informatika (org., Slowakien), http://www.drustvo-informatika.si/

@item SDI
Source Data Information

@item SDI
Standard Data Interface

@item SDI
Standard Disk Interconnect

@item SDI
Standard Disk Interface

@item SDI
Standard Drive Interface

@item SDI
Storage Device Interconnect

@item SDI
Storage Device Interface (Novell, Netware, SMS)

@item SDI
Super Data Interchange

@item SDIF
SGML Document Interchange Format (SGML, ISO, IS 9069)

@item SDIF
System Independent Data Format (Novell, SMS)

@item SDILINE
Selective Dissemination of Information onLINE

@item SDIMM
Single [RAS] Dual Inline Memory Module (DIMM, RAS), "S-DIMM"

@item SDIO
Secure Digital Input Output (SD)

@item SDIS
Switched Digital Integrated Service

@item SDK
Software Development Kit (MS, IBM)

@item SDL
Security Development Lifecycle (MS)

@item SDL
Simple Directmedia Layer

@item SDL
Specification and Description Language (CCITT)

@item SDL
System Design Language

@item SDLC
Synchronous Data Link Control (IBM, SNA)

@item SDLGR
Specification and Description Language / Graphical Representation, "SDL/GR" 

@item SDLLC
Synchronous Data Link Control Conversion (SNA, IBM)

@item SDLP
Standard Device Level Protocol

@item SDLT
Super Digital Line Tape (DLT, Streamer), http://www.sdlt.com

@item SDM
Short Data Message

@item SDM
Spatial Data Management

@item SDM
Sun Download Manager (Sun)

@item SDM
System Development Multitasking [benchmark] (DB, SPEC)

@item SDMA
Space Division Multiple Access

@item SDMA
Storage Device Migration Aid

@item SDMI
Secure Digital Music Initiative (org.), http://www.sdmi.org

@item SDMS
SCSI Device Management System (BIOS)

@item SDN
Software Defined Network

@item SDN
Software Distribution Net (FidoNet)

@item SDNS
Secure Data Network Service / System (USA, mil.)

@item SDOC
Selective Dynamic Overload Controls

@item SDOS
Software Dynamics Operating System (OS)

@item SDP
Service Delivery Point

@item SDP
Service Discovery Profile (Bluetooth)

@item SDP
Session Description Protocol (RFC 2327), ftp://ftp.rfc-editor.org/in-notes/rfc2327.txt

@item SDP
Shared Development Process (MS)

@item SDP
Software Development Plan

@item SDP
Specialized Data Point (IN)

@item SDP
Streaming Data Procedure

@item SDQ
Store Data Queue (Power4, IBM, CPU, SRQ)

@item SDR
Service DiRectory [tool] (SAP)

@item SDR
Shared Data Research

@item SDR
Signal-to-Distortion Ratio

@item SDR
Single Data Rate (GDR, QDR, ODR)

@item SDR
Store Data Register (IC)

@item SDR
Streaming Data Request

@item SDR
System Design Review

@item SDRAM
Synchronous Dynamic Random Access Memory (RAM, DRAM, IC, Intel, Samsung)

@item SDRP
Source Demand Routing Protocol

@item SDRSDRAM
Single Data Rate Synchronous Dynamic Random Access Memory (DRAM, RAM, IC), "SDR-SDRAM"

@item SDS
SubDivision Surfaces (3D)

@item SDS
Switched Data Service

@item SDS
Synchronous Data Set

@item SDS
Sysops Distribution System (BBS)

@item SDSAF
Switched Digital Services Applications Forum (org.)

@item SDSC
San Diego Supercomputer Center (org., USA), http://www.sdsc.edu

@item SDSC
Synchronous Data Set Controller

@item SDSCNET
San Diego Supercomputer Center NETwork (network, USA), "SDSCnet"

@item SDSL
Single line Digital Subscriber Line (DSL)

@item SDSMA
Slotted Digital Sense Multiple Access (MODACOM), "S-DSMA"

@item SDSN
Secure Data System Network

@item SDT
Service Description Table (DVB)

@item SDT
Software Development Tools

@item SDT
Source Data Terminal

@item SDT
Systems Development Tool

@item SDTP
[PPP] Serial Data Transport Protocol (PPP, RFC 1963), ftp://ftp.rfc-editor.org/in-notes/rfc1963.txt

@item SDU
Service Data Unit (OSI)

@item SDU
Software Distribution Utilities (IBM, HP)

@item SDV
Switched Digital Video (VOD)

@item SDX
Storage Data ACceleration (ATAPI, WD, CD, DVD)

@item SDXC
Secure Digital eXtended Capacity (SD)

@item SE
Security Enhanced [linux] (Linux)

@item SE
Service / Systems Engineer

@item SE
Software Engineering

@item SE
Standard / Special Edition (IBM, OS/2)

@item SE
Switching Element

@item SE
System Extension

@item SEA
Self-Extracting Archive

@item SEA
Society for Electronic Access (org.)

@item SEA
System Enhancement Associates (manufacturer)

@item SEAC
Standards Eastern Automatic Computer

@item SEAL
Simple and Efficient Adaptation Layer (ATM)

@item SEAP
Service Element Access Point

@item SEB
Seat Electronic Box (Airbus, A380)

@item SEC
Single Edge Contact [card]

@item SECAM
SEquentiel Couleur Avec Memoire

@item SECB
Severely Errored Cell Block (UNI)

@item SECC
Single Edge Connector Case (CPU)

@item SECCOS
SEcure Chip Card Operating System (OS)

@item SED
Self-Encrypting Drive (Seagate)

@item SED
Stream EDitor (Unix)

@item SED
Surface-conducting electron Emitter Display (Toshiba)

@item SEDAS
Standardisiertes Einheitliches DatenAustauschSystem (EDI)

@item SEDISI
Asociacion Espanola de Empresas de Tecnologias de la Informacion (org., Spain, AETIC, predecessor)

@item SEE
Safenet Ethernet Encryptor (cryptography)

@item SEE
Societe des Electriciens et Electroniciens (org., France)

@item SEE
Software Engineering Environments

@item SEE
Systems Equipment Engineering

@item SEF
Source Explicit Forwarding

@item SEFS
Severely Errored Framing Seconds (DS1/E1, DS3/E3)

@item SEH
Structured Exception Header

@item SEHOP
Structured Exception Handler Overwrite Protection

@item SEI
Software Engineering Institute

@item SEL
Software Engineering Laboratory

@item SEL
Standard Elektrik Lorenz [ag] (manufacturer)

@item SEL
System Event Log (IPMI)

@item SELHPC
South East London - High Performance Computing [centre] (org.), "SEL-HPC", http://www.lpac.ac.uk/sel-hpc

@item SELINUX
Security Enhanced Linux (Linux, NSA, FLASK), "SELinux"

@item SEM
Secure Extension Mode (AMD, TCB)

@item SEM
Security Event Management (SIM)

@item SEM
Server Enhancement Module

@item SEM
Standard Error of the Mean

@item SEMS
SIP Express MediaServer (SIP, iptel)

@item SEO
Search Engine Optimization (WWW)

@item SEP
Someone Else's Problem (slang, Usenet, IRC)

@item SEPP
Secure Electronic Payment Protocol (banking, IBM, Netscape, GTE)

@item SEQUEL
Structured English QUEry Language (IBM, DB, SQL, predecessor)

@item SERM
Structured Entity Relationship Model (DB, ERM)

@item SERT
Security Emergency Response Team (org., Australia, Internet), http://www.ug.oz.au/pcc/sert.html

@item SES
SCSI Enclosure Services (SCSI)

@item SES
Security Enabling Services (IBM)

@item SES
Severely Errored Seconds (DS1/E1)

@item SESAM
Synergetische Erkennung mittels Standbild, Akustik und Motorik (IIS)

@item SET
Secure Electronic Transactions (IBM, Visa, MS, IBM, Mastercard, Netscape, banking), http://www.setco.org

@item SET
Single Electronic Transistor

@item SET
Software Engineering Technology

@item SET
Standard d'Echange et de Transfert (AFNOR, France)

@item SETA
Systems Engineering and Technical Assistance

@item SETL
SEt Theory Language (New York Uni.), "SetL"

@item SETP
Secure Electronic Transactions Process

@item SETP
Stream Environment Transport Protocol

@item SEU
Software-Entwicklungs-Umgebung (CASE)

@item SEU
Source Entry Utility (IBM, ADT)

@item SF
Service Feature (IN)

@item SF
Sign Flag (assembler)

@item SF
Software Factories

@item SF
Standard Form

@item SF
Switching Fabric

@item SFBI
Shared Frame Buffer Interconnect

@item SFC
System File Checker (MS, Windows)

@item SFCC
Slat Flap Control Computer (Airbus, A380)

@item SFD
Simple Formattable Document (CCITT, MHS, X.420)

@item SFD
Start Frame Delimiter (ethernet)

@item SFD
Symbolic File Directory

@item SFF
Small Form Factor [committee] (org.)

@item SFLC
Software Freedon Law Center (org., GPL)

@item SFMJI
Sorry For My Jumping In (slang, Usenet, IRC)

@item SFP
Saved Frame Pointer (CPU, RAM)

@item SFP
Small Form-factor Pluggable (FC)

@item SFP
System File Protection (MS, WIndows)

@item SFPRNSB
Select a File for Processing and Read Next Spool Buffer (IBM, VM/ESA, CP)

@item SFPS
Secure Fast Packet Switching (Cabletron)

@item SFQL
Structured Full-text Query Language

@item SFS
Shared File System (IBM. CMS, VM/ESA)

@item SFS
Stepless Frequency Selection (ASUS)

@item SFS
Suomen Standardisoimisliitto [Standards Association of Finland] (org., Finland), http://www.sfs.fi

@item SFT
System Fault Tolerance (Novell)

@item SFT
System File Table (DOS)

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

@item SFTP
Simple File Transfer Protocol (RFC 913), ftp://ftp.rfc-editor.org/in-notes/rfc913.txt

@item SFUG
Security Features User's Guide

@item SG
Signal Ground (MODEM)

@item SGA
Shared Global Array (DEC, VMS)

@item SGC
SCSI Graphic Commands (SAM)

@item SGCP
Simple Gateway Control Protocol (MGCP)

@item SGEMM
Single precision GEneral Matrix Multiply (GEMM, BLAS)

@item SGI
Silicon Graphics Incorporated (manufacturer, SGI), http://www.sgi.com, http://www.sgi.de

@item SGM
SeGmentation Message

@item SGML
Standard Generalized Markup Language (ISO 8879, JTC1, RFC 1874, SGML), ftp://ftp.rfc-editor.org/in-notes/rfc1874.txt

@item SGMLB
Standard Generalized Markup Language - Binary version (SGML), "SGML-B"

@item SGMP
Simple Gateway Monitoring Protocol (RFC 1028), ftp://ftp.rfc-editor.org/in-notes/rfc1028.txt

@item SGRAM
Synchronous Graphics Random Access Memory (DRAM, RAM)

@item SGSN
Serving GPRS Support Node (GPRS, mobile-systems)

@item SGT
Surrounding Gate Transistor (IC)

@item SGTSI
Semi-Graphical Tree Structure Interface

@item SHA
Secure Hash Algorithm (cryptography, NIST)

@item SHA
Super High Aperture [LCD] (LCD)

@item SHA1
Secure Hash Algorithm 1 (cryptography, SHA), ftp://ftp.rfc-editor.org/in-notes/rfc3174.txt

@item SHED
Segmented Hypergraphics EDitor (MS, Windows, ADT)

@item SHF
Super-High Frequency

@item SHOE
Simple HTML Ontology Extensions (HTML, WWW)

@item SHTSI
Somebody Had To Say It (slang, Usenet)

@item SHTTP
Secure HyperText Transfer Protocol (HTTP), "S-HTTP" 

@item SHV
Standard High Volume [motherboard] (SMP, Intel)

@item SI
Schweizer Informatikergesellschaft (org., Switzerland), http://www.s-i.ch

@item SI
Skyrslutaeknifelags Islands (org., Iceland), http://www.sky.is

@item SI
Source Index [register] (CPU, Intel, assembler)

@item SI
SPARC International (org., manufacturer), http://www.sparc.com

@item SI
System Identifier (DTD, URI, SGML, FPI)

@item SI
System Information

@item SIA
Semiconductor Industry Association (org., USA), http://www.semichips.org

@item SIAM
Society for Industrial and Applied Mathematics (org., USA), http://www.siam.org

@item SIB
Service Independent building Block (IN)

@item SIBO
SIxteen Bit Organizer or SIngle Board Organizer (Psion, PDA, BIT)

@item SIC
Silicon Integrated Circuit

@item SIC
Standard Industry Classification

@item SIC
Subject Indicator Code

@item SICE
Society of Instrument and Control Engineers (org., Japan)

@item SICS
Swedish Institute of Computer Sciences (org., Sweden)

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

@item SID
Signaling IDentifier

@item SID
Society for Information Displays (org.)

@item SID
Sound Interface Device (audio, C64)

@item SID
SWIFT Interface Device (SWIFT)

@item SID
Symbolic Instruction Debugger (CP/M)

@item SID
System IDentification

@item SID
System Integration & Development, "SI&D"

@item SIDF
System Independent Data Format (Novell, SMS)

@item SIDM
Serial Impact Dot Matrix [printer]

@item SIDR
Service Independent Data Requester (Novell, Netware)

@item SIETEM
Siemens TTCN Test Manager (TTCN, Tektronix, SNI)

@item SIF
Significant Pel Field (MPEG)

@item SIFS
Short InterFrame Space (MAC, 802.11a, IFS, WLAN)

@item SIFT
Software Implemented Fault Tolerance (HIFT)

@item SIFTUFT
Sender-Initiated File Transfer/Unsolicited File Transfer (RFC 1440), "SIFT/UFT", ftp://ftp.rfc-editor.org/in-notes/rfc1440.txt

@item SIG
Special Interest Group

@item SIGART
[ACM] Special Interest Group on ARTificial intelligence (org., ACM, AI), http://sigart.acm.org

@item SIGBIT
Special Interest Group on Business Information Technology

@item SIGCAT
Special Interest Group for CD-ROM Applications Technology (CD)

@item SIGCPR
Special Interest Group on Computer Personal Research (org., ACM), http://www.acm.org/sigcpr

@item SIGCSE
Special Interest Group on Computer Science Education (org., ACM), http://www.acm.org/sigcse

@item SIGDA
Special Interest Group on Design Automation (org., ACM), http://www.acm.org/sigda/

@item SIGG
SIGnaturGesetz telecommunication, Germany, "SigG"

@item SIGL
SIGnal Line (REXX)

@item SIGMA
Software Industrialized Generator and Maintenance Aids system (MITI)

@item SIGNC
Special Internet Group Name Cache

@item SIGPLAN
Special Interest Group for Programming LANguages

@item SIGV
SIGnaturVerordnung (telecommunication), "SigV"

@item SIGWEB
Special Interest Group on the world wide WEB (org., UK), http://www.qub.ac.uk/sigweb/index.html

@item SII
Static Invocation Interface

@item SIIA
Software and Information Industry Association (org., USA), http://www.siia.net

@item SILC
Secure Internet Live Conferencing

@item SILS
Secure Interoperable LAN/MAN Standard (LAN, MAN)

@item SILS
Standard for Interoperable LAN Security (LAN)

@item SIM
Security Information Management (SEM)

@item SIM
Signal Interface Module

@item SIM
Subscriber Identity Module (GSM, mobile-systems)

@item SIMD
Single Instruction [stream], Multiple Data [stream] (CPU)

@item SIMDIS
SIMulation DISposition (MBAG)

@item SIMIS
SIcheres MIkroprozessor System (SNI)

@item SIMM
Single Inline Memory Module (IC)

@item SIMNET
SIMulation NETwork (network)

@item SIMSA
	Swiss Interactive Media and Software Association (org.), http://simsa.ch/

@item SINA
Sichere Inter-Netzwerk Architektur (BSI)

@item SIO
Simultan Input Output (QMS)

@item SIP
SCSI-3 Interlocked Protocol (SAM)

@item SIP
Session Initiation Protocol (IETF, VoIP, ENUM, RFC 2543), ftp://ftp.rfc-editor.org/in-notes/rfc2543.txt

@item SIP
Simulated Input Processor

@item SIP
SMDS Interface Protocol (SMDS)

@item SIP
Strategische InformationsPlanung (IM)

@item SIP
Symbolic Input Program

@item SIPC
Simply Interactive Personal Computer

@item SIPO
Serial In Parallel Out

@item SIPP
Simple Internet Protocol Plus (IP, IPV6, RFC 1710, Internet), ftp://ftp.rfc-editor.org/in-notes/rfc1710.txt

@item SIPP
SImple Polygone Processor (Unix)

@item SIPP
Single Inline Package Pin (IC)

@item SIPRNET
Secret IP Router NETwork (DISN, mil.)

@item SIPS
Session Initiation Protocol Secure (SIP, SSL, TCP)

@item SIPS
Super InPlane Switching (LCD, IPS), "S-IPS"

@item SIQ
Single Input Queue (IBM, OS/2)

@item SIR
Save Instruction Recognition

@item SIR
Selective Information Retrieval

@item SIR
Serial InfraRed (HP)

@item SIR
Sicherheit im Rechenzentrum (TPS)

@item SIR
Statistical Information Retrieval

@item SIR
Sustained Information Rate (SMDS)

@item SIRENE
Supplementary Information REquest at the National Entry (SIS, Europe)

@item SIS
Schengen Information System (police, Europe)

@item SIS
Silicon Integrated Systems [corp.] (manufacturer, Taiwan), http://www.sis.com.tw

@item SIS
Software Information Services

@item SIS
Stellen-Informations-Service (WWW), http://www.arbeitsamt.de

@item SIS
Strategic Information System

@item SISAL
Streams and Iteration in a Single-Assignment Language

@item SISD
Single Instruction [stream], Single Data [stream] (CPU)

@item SISO
Single Input, Single Output (WLAN)

@item SISSL
Sun Industry Standards Source License (Sun)

@item SIT
institut fuer SIchere Telekommunikation (GMD, org.), http://sit.gmd.de

@item SITD
Still In The Dark (slang)

@item SIWPS
Simple Internet White Pages Service (Internet)

@item SIZ
Sparkassen-Informatik-Zentrum (org., banking), http://www.SIZ.de

@item SJF
Shortest Job First

@item SKI
Service Key Identifier (X509v3, RFC 3280)

@item SKIA
Secure Key Issuing Authority (TESS)

@item SKID
Service Key IDentifier (X509v3, RFC 3280)

@item SKIMS
Schichtenuebergreifendes Kooperatives Immunsystem fuer Mobile, mehrseitige Sicherheit

@item SKIP
Simple Key-management for Internet Protocols (Internet, cryptography, Sun)

@item SKS
Synchronizing Key Server (PGP, GPG, PKS, KKS)

@item SLA
Service Level Agreement (ITIL, SLM)

@item SLAC
Secure Linux Administration Conference (Linux)

@item SLAD
Security Local Auditing DAEMON (BOSS, BSI)

@item SLAM
Simulation Language for Alternative Modeling

@item SLB
Segment Lookaside Buffer (CPU, Power4, IBM)

@item SLC
Service Level Contract

@item SLC
Short Length Cartridge (IBM, Streamer)

@item SLC
Simple Line Code [modulation]

@item SLC
Single Level Cell (IC, Flash, SLC)

@item SLD
Second Level Domain (Internet, ICANN)

@item SLDC
Synchronous Data Link Control

@item SLDRAM
SyncLink Dynamic Random Access Memory (DRAM, RAM)

@item SLE
Screen List Editing

@item SLED
Single Large Expensive Drive

@item SLED
SuSE Linux Enterprise Destop (SuSE, Linux)

@item SLES
SuSE Linux Enterprise Server (Linux, SUSE)

@item SLFP
Shared Frame Buffer Interconnect (ATI, Intel)

@item SLI
Scalable Link Interface (PCIe, Nvidia)

@item SLI
Scan Line Interleave (3D)

@item SLIC
Serial Link and Interrupt Controller (TSMP, Wyse)

@item SLIC
Subscriber Line Interface Circuit (PBX)

@item SLIK
SimpLIstic sKin interface (GTK)

@item SLIP
Serial Line Internet Protocol (Internet, RFC 1055), "SL/IP", ftp://ftp.rfc-editor.org/in-notes/rfc1055.txt

@item SLM
Service Level Management (ITIL)

@item SLM
Single Lock Manager (GFS)

@item SLMR
Silly Little Mail Reader

@item SLOS
SuSE Linux Office Server (SuSE, Linux)

@item SLOX
SuSE Linux Open eXchange server (SuSE, Linux)

@item SLP
Service Location Protocol (IP), ftp://ftp.rfc-editor.org/in-notes/rfc3224.txt

@item SLP
Service Logic Program (IN)

@item SLP
Symposium on Logic Programming (Konferenz)

@item SLP
System Locked Preinstallation (MS, Windows, XP, OEM)

@item SLQ
Super Letter Quality [fonts] (Star)

@item SLR
Scalable Linear Recording (Streamer, Tandberg)

@item SLS
Softlanding Linux System (Linux)

@item SLS
Storage Library System

@item SLSI
Super Large Scale Integration

@item SLT
Solid-Logic Technology

@item SLU
Secondary Logical Unit

@item SLU
Serial Line Unit

@item SM
Smart Media [card]

@item SM
Sparse Mode (PIM, Multicast)

@item SMA
Shared Memory Architecture

@item SMA
Standardization Management Activity

@item SMAE
System Management Application Entity (OSI)

@item SMAF
Service Management Agent Function (IN)

@item SMAF
Synthetic Music Mobile Application Format (Yamaha, mobile-systems)

@item SMAP
System Management Application Process (OSI)

@item SMART
Self-Monitoring, Analysis and Reporting Technology (HDD, IDE, Conner, IBM, Quantum, Seagate, WD), "S.M.A.R.T."

@item SMASE
System Management Application Service Element (OSI)

@item SMB
Server Message Block [protocol] (IBM, Intel, MS)

@item SMB
Small Medium Business and enterprise [market]

@item SMB
Standards Managing Board (PIMA, I3C)

@item SMB
System Management Bus

@item SMBA
Shared Memory Buffer Architecture (Intel)

@item SMBP
Sever Message Block Protocol

@item SMC
SCSI-3 Medium changer Commands (SAM, SCSI)

@item SMC
Standard Microsystems Corporation (manufacturer), http://www.smc.com

@item SMD
Storage Module Device

@item SMD
Surface Mounted Device

@item SMD
System Management Bus ??? (Intel), http://www.sbs-forum.org

@item SMDAC
Single MAC Dual Attached Concentrator (FDDI, DAC, MAC)

@item SMDI
Simplified Message Desk Interface (Bell Labs)

@item SMDI
Storage Module Disk Interconnect

@item SMDL
Standard Music Description Language (ISO, IEC, CD 10743)

@item SMDR
Station Message Detail Recording

@item SMDR
Storage Management Data Requester (Novell, Netware, SMS)

@item SMDS
Switched Multimegabit Data Service (BELLCORE, BIT)

@item SMDSCNM
SMDS Customer Network Management (SMDS), "SMDS CNM"

@item SME
Society of Manufacturing Engineering (org., USA)

@item SME
Storage Management Engine (Novell, Netware, SMS)

@item SMEP
Supervisory Mode Execution Prevention (AMT, Intel)

@item SMF
Service Management Framework (IBM)

@item SMF
Service Management Function (IN)

@item SMF
Single Mode Fiberoptic cable (FDDI, MMF)

@item SMF
Standard MIDI File (MIDI)

@item SMF
System Management Function (MS, MOF)

@item SMFA
Special / System Management Functional Area (OSI)

@item SMFF
Script Mathematical Formula Formatter

@item SMG
Special Mobile Group (GSM, org., mobile-systems)

@item SMI
Storage Management Initiative (org., SAN, Bluetooth, SNIA)

@item SMI
Structure and identification of Management Information (OSI, RFC 1155/1902), ftp://ftp.rfc-editor.org/in-notes/rfc1902.txt, ftp://ftp.rfc-editor.org/in-notes/rfc1155.txt

@item SMI
Sun Microsystems Inc. (manufacturer), http://www.sun.com

@item SMI
System Management Interrupt (SMB)

@item SMI
System Memory Interface (Power4, IBM)

@item SMI
System Monitoring Interface (Informix, DB)

@item SMIL
Synchronized Multimedia Integration Language (W3C, WWW)

@item SMIME
Secure/Multipurpose Internet Mail Extensions (MIME, MS, Lotus, Qualcomm, RSA, cryptography), "S/MIME"

@item SMING
Structure of Management Information - Next Generation (RFC 3780), "SMIng", ftp://ftp.rfc-editor.org/in-notes/rfc3780.txt

@item SMIOS
System Management Basic Input Output System (DMTF, BIOS)

@item SMIS
Service-Marketing-InformationsSystem (MBAG)

@item SMIS
Storage Management Initiative Specification (SMI, SAN, WBEM, CIM, SLP, SNIA), "SMI-S"

@item SMIT
System Management Interface Tool (IBM, AIX)

@item SMK
Software Migration Kit

@item SMK
Structured Meta-Knowledge

@item SML
Service Management Layer (TMN)

@item SML
Shared Memory Link (TCP/IP)

@item SML
Siemens Modular Link

@item SML
Standard Machine Language

@item SML
Standard Meta Language

@item SMLNJ
Standard Meta Language / New Jersey, "SML/NJ" 

@item SMM
System Management Mode (CPU)

@item SMM
System Manager's Manual (BSD, Unix)

@item SMOLED
Small Molecules Organic Light Emitting Display (OLED, LED)

@item SMP
Software Motion Picture (DEC)

@item SMP
Symmetric MultiProcessor [system] (SMP, AMP)

@item SMP
Symmetrisches MultiProzessor [system]

@item SMP
System Modification Program

@item SMPC
Shared Memory Parallel Computer (HPC)

@item SMPPPD
Suse Meta Point-To-Point DAEMON (SuSE, Linux, PPP, DAEMON)

@item SMPTE
Society of Motion Picture and Television Engineers (org.)

@item SMPU
Switch Module Processor Unit

@item SMR
Shingled Magnetic Recording (Seagate)

@item SMR
Source Maintainability and Reliability

@item SMR
Specialized Mobile Radio [systems]

@item SMRT
Signal Message Rate Timing

@item SMS
Service Management System

@item SMS
Short Message Service (GSM, mobile-systems)

@item SMS
Storage Management Services (Novell, Netware)

@item SMS
System-Managed Storage

@item SMS
Systems Management Server (MS, MOM)

@item SMSAC
Society of Management Science and Applied Cybernetics (org., India)

@item SMSC
Short Message Service Center (SMS, GSM, mobile-systems)

@item SMSCB
Short Message Service Cell Broadcast (SMS), "SMS CB"

@item SMSCEMI
Short Message Service Center External Machine Interface [protocol] (SMS)

@item SMSP
Storage Management Services Protocol (Novell, SMS)

@item SMT
Segment Table Map

@item SMT
Shared Memory Transport (X-Windows)

@item SMT
Simultaneous MultiThreading (CPU)

@item SMT
Staroffice Migration Toolkit (Sun)

@item SMT
Station ManagemenT (FDDI)

@item SMT
Surface-Mount Technology

@item SMTA
Subordinate Message Transfer Agent (MTA)

@item SMTP
Simple Mail Transfer Protocol (RFC 821, TCP/IP), ftp://ftp.rfc-editor.org/in-notes/rfc821.txt

@item SMUG
Seldom Met Users Group [book] (HP, HP 3000)

@item SMUX
SNMP MUltipleXing protocol (SNMP, MUX, RFC 1227), ftp://ftp.rfc-editor.org/in-notes/rfc1227.txt

@item SN
Sequence Number

@item SN
Serial Number

@item SN
Subscriber Number (MS-ISDN, GSM, mobile-systems)

@item SN
Super Node (Kazaa, P2P)

@item SNA
Systems Network Architecture (IBM)

@item SNAC
SNA Network Access Controller (SNA, SDLC, IDS)

@item SNAC
SubNetwork ACcess [functions]

@item SNACP
[PPP] Systems Network Architecture Control Protocol (PPP, SNA, RFC 2043), ftp://ftp.rfc-editor.org/in-notes/rfc2043.txt

@item SNACP
SubNetwork ACcess Procedure (ISO, IS 8648, SNAC), "SNAcP"

@item SNADS
Systems Network Architecture Distribution Service (IBM, CCS)

@item SNAFU
Situation Normal All Fouled Up (slang)

@item SNAIP
[advanced] Systems Network Architecture/Internet Protocol (SNA, IP, RFC 1538), "SNA/IP", ftp://ftp.rfc-editor.org/in-notes/rfc1538.txt

@item SNAP
SubNetwork Access Protocol (LAN, ethernet)

@item SNAP
SubNetwork Attachment Point (IEEE 802.1a)

@item SNAP
System and Network Administration Program

@item SNAP
System Neutral Access Protocol (SciTech)

@item SNCP
Single Node Control Point (IBM, SNA)

@item SNDC
SubNetwork Dependent Convergence [functions] (OSI)

@item SNDCP
SubNetwork Dependent Convergence Procedure (ISO, IS 8648, OSI, SNDC)

@item SNEPS
Semantic NEtwork Processing System (GNU, LISP), "SNePS"

@item SNF
Server Natural Format (Fonts, X)

@item SNF
Shared Network Facilities

@item SNG
Satellite News Gathering

@item SNI
Service Name Indicator (TLS, RFC 3546)

@item SNI
Siemens Nixdorf Informationssysteme [AG] (manufacturer), http://www.sni.de

@item SNI
SNA Network Interconnection (IBM, VTAM, SNA)

@item SNI
Subscriber Network Interface (SMDS)

@item SNIA
Storage Networking Industry Association (org., NAS, SAN), http://www.snia.org

@item SNIC
SubNetwork Independent Convergence [functions] (OSI)

@item SNICP
SubNetwork Independent Convergence Procedure (ISO, IS 8648, OSI, SNIC)

@item SNK
Shin Nihon Kikaku [old term] (manufacturer, Japan)

@item SNL
Sandia National Laboratories (org., USA), http://www.sandia.gov

@item SNMP
Simple Network Management Protocol (RFC 1157/1902, TCP/IP, IETF), ftp://ftp.rfc-editor.org/in-notes/rfc1902.txt, ftp://ftp.rfc-editor.org/in-notes/rfc1157.txt

@item SNMPOID
SNMP Object IDentifier (SNMP), "SNMP OID"

@item SNNS
Stuttgart Neural Network Simulator (IPVR, NN)

@item SNOBOL
StriNg Orientated symBOlic Language

@item SNP
SubNetwork Protocol

@item SNPA
Sub-Network Point of Attachment

@item SNPP
Simple Network Paging Protocol (RFC 1861, SMS), ftp://ftp.rfc-editor.org/in-notes/rfc1861.txt

@item SNR
Serial NumbeR (IMEI, GSM, mobile-systems)

@item SNR
Signal-to-Noise Ratio

@item SNRM
Set Normal Response Mode (SDLC, HDLC, ADDCP, LAPB)

@item SNRME
Set Normal Response Mode Extension (SNRME)

@item SNS
Secure Network Server

@item SNTP
Simple Network Time Protocol (NTP, RFC 2030), ftp://ftp.rfc-editor.org/in-notes/rfc2030.txt

@item SNW
Storage Networking World [conference]

@item SOA
Service Orientated Architecture

@item SOA
Start Of Authority record (DNS)

@item SOA
State Of the Art (slang)

@item SOAP
Simple Object Access Protocol (W3C, XML, HTML)

@item SOAP
Symbolic Optimal Assembly Program (IBM)

@item SOB
Start Of Block

@item SOBA
Service-Orientated Business Applications (SODA, SOA)

@item SOC
Security Operations Center

@item SOC
System-On-a-Chip

@item SOC
Systems and Option Catalog

@item SOCKS
SOCKet Secure

@item SOCO
Service Office/Central Office, "SO/CO"

@item SODA
Service-Orientated Developmenrt of Applications (SOA, SOBA)

@item SODA
Simplified OS for Distributed Applications (OS)

@item SODA
System Optimization and Design Algorithm

@item SODIMM
Small Outline Dual Inline Memory Module (DRAM, DIMM)

@item SODIS
SOftware Dokumentations- und InformationsSystem

@item SOE
Sony Online Entertainment (Sony)

@item SOE
Standard Operating Environment

@item SOE
Standards of Excellence

@item SOEP
Secondary Operand Execution Pipeline (Motorola, CPU), "sOEP"

@item SOF
Start Of Frame (S-ATA)

@item SOFABED
[davenport] Standard Open Formal Architecture for Browsable Electronic Documents

@item SOH
Section OverHead

@item SOH
Start Of Header

@item SOHO
Small Office / Home Office [market]

@item SOI
Silicon-On-Insulator [technology/wafer] (IC, IBM)

@item SOIF
Summary Object Interchange Format (WWW)

@item SOJ
Small-Outline J-lead [chip] (IC, DRAM)

@item SOL
Simulation-Oriented Language

@item SOLSA
Support of Localized Service Areas (ETSI), "SoLSA"

@item SOM
Self-Organizing Machine

@item SOM
Structured Object Method

@item SOM
System Object Model (IBM, ORB, CORBA)

@item SONDS
Small Office Network Data System

@item SONET
Synchronous Optical NETwork (FDDI, ATM, SDH)

@item SOOO
Star Office / Open Office, "SO/OO"

@item SOP
Standard Operating Procedure

@item SORM
Service Orientated Resource Management

@item SOS
Share Operating System (OS)

@item SOS
Sophisticated Operating System (OS, Apple)

@item SOS
Standards and Open Systems

@item SOS
Support On Site

@item SOS
Symbolic Operating System (OS)

@item SOSP
System Operational and Support Plan

@item SOTA
State of the Art (slang)

@item SOX
Sound EXchange [software]

@item SP
Security Policies (IPSec)

@item SP
Service Pack (MS, Windows NT, XP)

@item SP
Service Processor (Power4, IBM, IC)

@item SP
Service Processor (EMC)

@item SP
Service Provider (DMI)

@item SP
Signal Processor

@item SP
Simple visual Profile (MPEG)

@item SP
SPare (IMEI, GSM, mobile-systems)

@item SP
Speculative Precomputation

@item SP
Speech Processing

@item SP
Stack Pointer [register] (CPU, Intel, assembler)

@item SP
Structured Programming

@item SP
Support Pack (SAP)

@item SP
System Product

@item SP1
Service Pack 1 (MS, Windows, XP)

@item SP2
Service Pack 2 (MS, Windows, XP)

@item SPA
Software Publishers Association (org., USA), http://www.spa.org

@item SPA
Storage Pool Allocator (ZFS)

@item SPADE
Statistical Packet Anomaly Detection Engine (Snort, IDS)

@item SPAG
[european] Standards Promotion and Application Group (org., manufacturer, Europe)

@item SPAM
Send Phenomenal Amounts of Mail (Usenet, EMP, slang)

@item SPAM
Spiced Pork and hAM (Usenet, EMP)

@item SPANS
Simple Protocol for ATM Network Signalling (ForeRunner, ATM)

@item SPAP
Secure Password Authentication Protocol

@item SPAP
Shiva Password Authentication Protocol (PAP, 3Com)

@item SPARC
Scalable Processor ARChitecture (Sun), http://www.sparc.com

@item SPARC
Standard Planning And Requirement Committee (ANSI, org.)

@item SPARQL
???

@item SPAT
Speech Pronunciation Analysis Training (Uni Mainz), "S.P.A.T."

@item SPC
SCSI-3 Primary Commands (SAM, SCSI)

@item SPC
Solution Partner Center (IBM)

@item SPC
Stored Program Command

@item SPC
Stored Program Control

@item SPCF
Service Point Command Facility (IBM)

@item SPCS
Stored Program Control Systems

@item SPD
Security Policy Database (SP, IPSec)

@item SPD
Serial Presence Detect (EEPROM, SDRAM)

@item SPD
Software Product Description

@item SPD
Software Products Division

@item SPDEEPROM
Serial Presence Detect - Electronical Erasable Programmable Read Only MemorySerial Presence Detect (EPROM, IC, ROM), "SPD-EEPROM"

@item SPDIF
Sony/Philips - Digital Interface Format (audio, Sony, Philips), "S/P-DIF"

@item SPDL
Standard Page Description Language (ISO, IEC, IS 10180)

@item SPDN
Shared Private Data Network

@item SPDU
Session Protocol Data Unit (OSI, PDU, OSI/RM)

@item SPE
Symbolic Programming Environment

@item SPE
Synchronous Payload Envelope

@item SPE
Synergistic Processor Elements (IBM, Cell, PPE)

@item SPEC
System Performance Evaluation Corporation (org., RISC)

@item SPF
Sender Permitted From [old term] (SPAM)

@item SPF
Sender Policy Framework (SPAM), http://spf.pobox.com

@item SPF
Structured Programming Facility

@item SPI
SCSI-3 Parallel Interface (SAM, SCSI)

@item SPI
Security Parameter Index

@item SPI
Serial / Synchronous Peripheral Interface

@item SPI
Service Provider Interface (WOSA)

@item SPI
Software in the Public Interest, inc. (org.), http://www.spi-inc.org

@item SPI
Software Products International (manufacturer)

@item SPI
Stateful Packet Inspection (TCP/IP)

@item SPICE
Scalable Parallel Intelligent Communications Engine

@item SPICE
Simulation Program with Integrated Circuit Emphasis

@item SPICS
Spare Parts Inventory Control System (MBAG)

@item SPID
Service Profile IDentifier (ISDN)

@item SPID
Service Protocol IDentifier

@item SPIM
SPAM over Instant Messaging (SPAM, IM)

@item SPIN
Sponsored Programs Information Network

@item SPIT
SPAM over Internet Telephony (SPAM, VoiP)

@item SPKM
Simple Public-Key [GSS-API] Mechanism (GSS, RFC 2025), ftp://ftp.rfc-editor.org/in-notes/rfc2025.txt

@item SPL
Samsung Printer Language

@item SPL
Set Priority Level (Unix)

@item SPL
Simple Programming Language

@item SPL
Sound Pressure Level

@item SPL
Sun Public License (Sun)

@item SPL
Systems Programming Language (HP, MPE, ALGOL, HP 3000)

@item SPL1
Simple visual Profile @@ Level 1 (MPEG, QCIF), "SP@@L1"

@item SPM
Session Protocol Machine (OSI, ISO 8327)

@item SPM
Set Program Mask

@item SPM
Software Performance Monitor

@item SPM
Source Program Maintenance

@item SPM
System Performance Monitor

@item SPM2
System Performance Monitor /2 (IBM, OS/2), "SPM/2"

@item SPMIDI
Scalable Polyphony MIDI (MIDI), "SP-MIDI"

@item SPML
Service Provisioning Markup Language (OASIS)

@item SPN
Substitution Permutation Network (cryptography)

@item SPOF
Single Point Of Failure

@item SPOOL
Simultaneous Peripheral Operations OnLine

@item SPOT
Smart Personal Object Technology (MS, Internet)

@item SPP
Scalable Parallel Processing (Intel)

@item SPP
Sequenced Packet Protocol

@item SPP
Serial Port Profile (Bluetooth, GAP, SPP)

@item SPP
Software Protection Platform (MS, Windows, Vista)

@item SPP
Standard Parallel Port

@item SPP
System Platform Processor (Nvidia)

@item SPPI
Structure of Policy Provisioning Information (RFC 3159), ftp://ftp.rfc-editor.org/in-notes/rfc3159.txt

@item SPR
Software Problem Report

@item SPREAD
Systems, Programming, Review, Engineering And Development

@item SPS
Semiconductor Product Sector (Motorola)

@item SPS
SpeicherProgrammierbare Steuerungstechnik

@item SPS
String Processing System

@item SPS
Support Package Stack (SAP, EP)

@item SPS
Symbolic Programming System

@item SPSL
Special-Purpose Simulation Language

@item SPSS
Statistical Package of the Social Sciences, http://www.spss.com

@item SPT
Sectors Per Track

@item SPT
Shortest Path Tree (PIM, ST, Multicast)

@item SPTS
Single Program Transport Stream

@item SPU
Synergistic Processing Unit (IBM, Cell)

@item SPU
System Processing Unit

@item SPUCDL
Serial Peripheral Unit Controller/Data Link, "SPUC/DL" 

@item SPUD
Storage Pedestal Upgrade Disk / Drive

@item SPUR
Supercomputing Program for Undergraduate Research

@item SPX
Sequenced Packet eXchange (Novell, Netware)

@item SQ
Shielded Quart [cable]

@item SQ
Signal Quality (MODEM)

@item SQA
Software Quality Assurance

@item SQD
Signal Quality Detector

@item SQFP
Shrink Quad Flat Package (CPU)

@item SQL
Structured Query Language (ISO 9075, DB, 4GL)

@item SQLCLI
SQL Call Level Interface (SAG, SQL), "SQL/CLI"

@item SQLDA
Structured Query Language Descriptor Area (SQL)

@item SQLDMO
SQL Distributed Management Objects (MS, SQL Server, OLE, DB)

@item SQLDS
Structured Query Language/Data System (IBM, VMS), "SQL/DS"

@item SQLJ
Structured Query Language - Java (SQL, Java, DB, ANSI, NCITS)

@item SQLMED
Structured Query Language / Management of External Data (SQL, ISO, IEC), "SQL/MED"

@item SQLXML
Structured Query Language / eXtensible Markup Language (SQL, XML, ISO, IEC), "SQL/XML"

@item SQM
Software Quality Management

@item SR
Sensitivity Range (Fuji, photo, CCD)

@item SR
Service Release (MS)

@item SR
Source Routing [bridging]

@item SR
Status Register (IC, assembler)

@item SRAM
Static Random Access Memory (RAM, IC, RL)

@item SRAS
Secure Remote AccesS

@item SRAT
Static Resource Affinity Table (ACPI)

@item SRB
Stream Request Block

@item SRC
Sample Rate Converter (audio)

@item SRC
Semiconductor Research Council (org., USA), http://www.src.org

@item SRC
Standard Context Routing (MODACOM)

@item SRC
System Resource Controller (AIX, IBM)

@item SRD
Screen Reader System

@item SRD
Secondary Received Data

@item SRD
Send and Request Data (Feldbus)

@item SRDF
Symmetrix Remote Data Facility (EMC)

@item SRE
Self Routing switch Element (ATM)

@item SRF
Science Research Foundation (org., UK)

@item SRF
Service Resource Function (IN)

@item SRF
Specifically Routed Frame

@item SRGB
Standardized Red Green Blue [colorspace] (RGB, Windows)

@item SRI
Stanford Research Institute (org., USA), http://www.sri.com

@item SRK
Storage Root Key (TPM, RSA)

@item SRL
Serial number revocation List (TCPA)

@item SRM
Security Reference Monitor (MS, Windows, ACL)

@item SRM
Storage Resource Management (SAN)

@item SRM
System Resources Manager

@item SRN
Source/Recipient Node (IBM)

@item SRP
Security Rollup Package (MS)

@item SRP
Software Reuse Program

@item SRP
Source Routing Protocol (IBM)

@item SRPI
Server Requester Programming Interface (IBM, API)

@item SRPM
Scalable Reverse Path Multicast (Multicast)

@item SRQ
Service ReQuest (GPIB)

@item SRQ
Store Reorder Queue (Power4, IBM, CPU)

@item SRS
Sound Retrieval System (Digital audio), http://www.srslabs.com

@item SRS
Sun Ray Software (Sun)

@item SRT
Secure Request Technology (banking, cryptography, Java)

@item SRT
Signal Requests Terminal

@item SRT
Source Route Transparent [bridges] (ethernet, Token Ring, IEEE 802.1D)

@item SRT
Speech Reception Threshold

@item SRTCP
Secure Real-Time Transport Control Protocol (SRTP)

@item SRTP
Secure Real-time Transport Protocol (RFC 3711, RTP), ftp://ftp.rfc-editor.org/in-notes/rfc3711.txt

@item SRTS
Synchronous Residual Time Stamp

@item SRVIFS
SeRVer Installable File System (IBM)

@item SS
Single Sided [disk] (FDD)

@item SS
Spread Spectrum (WLAN)

@item SS
Stack Segment [register] (CPU, Intel, assembler)

@item SS7
Signaling System 7 (ISDN)

@item SSA
Serial Storage Architecture (IBM)

@item SSAC
Security and Stability Advisory Committee (ICANN)

@item SSADM
Structured System Analysis and Design Method (DB)

@item SSAO
Screen-Space Ambient Occlusion (HBAO)

@item SSAP
Session Service Access Point (SAP, LLC, OSI/RM)

@item SSAP
Source link Service Access Point (SAP, LLC)

@item SSAS
Station Signaling and Announcement System

@item SSB
Single SideBand

@item SSBA
Suite Synthetique des Benchmarks de l'AFFU (MP)

@item SSBAM
Single SideBand Amplitude Modulation

@item SSC
Science Supercomputing Center (Uni Karlsruhe, Germany)

@item SSC
SCSI Stream Commands (SAM, SCSI)

@item SSC
Security Support Component (NGSCB, TCP)

@item SSC
Specialized Systems Consultants

@item SSCF
Service Specific Coordination Function (ATM)

@item SSCOP
Service Specific Connection Orientated Protocol (ATM)

@item SSCP
Service Switching & Control Point (IN)

@item SSCP
System Services Control Point (NAU, SNA, SSCP)

@item SSCP
Systems Security Certified Professional (ISC2)

@item SSCPNS
System Services Control Point Network Services (SSCP)

@item SSCS
Service Specific Convergence Sublayer (ATM)

@item SSD
Solid State Disk (HDD, RAM)

@item SSDA
Synchronous Serial Data Adapter

@item SSDC
Stack Segment Descriptor Cache [register] (SS, Intel, CPU)

@item SSDD
Single-Sided/Double-Density [disk] (FDD), "SS/DD"

@item SSDD
Solid State Disk Drive

@item SSDP
Simple Service Discovery Protocol (UPnP, UDP)

@item SSDU
Session Service Data Unit

@item SSE
Simple Screen Editor

@item SSE
Software Support Engineer

@item SSE
Streaming SIMD Extensions (Intel, Pentium, SIMD)

@item SSE
Structured Source Editing (Eclipse)

@item SSF
Service Switching Function (IN)

@item SSFDC
Solid State Floppy Disk Card (PCMCIA)

@item SSH
Secure SHell (Unix, Shell)

@item SSHD
Solid State Hybrid Drive (SSD)

@item SSI
[Schwedisches Strahlenschutzinstitut] (Sweden, org.)

@item SSI
Server Side Include [script] (HTTPD, CGI)

@item SSI
Small Scale Integration

@item SSI
Software Systems Interface

@item SSIA
Subject Says It All (slang)

@item SSID
Service Set IDentification (WLAN)

@item SSIMM
Single [RAS] Single Inline Memory Module (IC, RAS), "S-SIMM"

@item SSL
Secure Socket Layer (Netscape, RSA, WWW, cryptography)

@item SSLTLS
Secure Socket Layer / Transport Layer Security (RSA, cryptography, TLS), "SSL/TLS"

@item SSM
Set System Mask

@item SSM
Simplified Storage Management (HSM)

@item SSM
Source Specific Multicast (IETF, WG, Multicast, RFC 3569), http://www.ietf.org/html.charters/ssm-charter.html, ftp://ftp.rfc-editor.org/in-notes/rfc3569.txt

@item SSMA
SQL Server Migration Assistant (MS, SQL)

@item SSO
Single Sign On

@item SSP
Service Switching Point (IN)

@item SSP
Silicon Switch Processor (Cisco)

@item SSP
Standard Printer Port

@item SSP
Storage Service Provider

@item SSP
Structured Support Program

@item SSP
Switch to Switch Protocol (DLSW, RFC 1795), ftp://ftp.rfc-editor.org/in-notes/rfc1795.txt

@item SSP
Symposium on Security and Privacy (IEEE)

@item SSP
System Stack Pointer

@item SSP
System Support Program (OS, IBM)

@item SSPI
Security Support Provider Interface

@item SSR
Small Screen Rendering (WWW, Opera)

@item SSR
Solid-State Relay

@item SSSD
Single-Sided/Single-Density [disk] (FDD), "SS/SD"

@item SSSNA
Server to Server Systems Network Architecture (Banyan, VINES), "SS/SNA"

@item SST
Saitek Smart Technology

@item SST
Secure & Smart Technology (TPM), "S&ST"

@item SST
Simple SIPP Transition (Internet, SIPP)

@item SST
South Sumatra Time [+0700] (TZ)

@item SSTP
Screened Shielded Twisted Pair [cable] (STP, TP), "S/STP" 

@item ST
Seagate Technology (HDD)

@item ST
Security Target (CC)

@item ST
Segment Table / Type

@item ST
Shared Tree (PIM, SPT, CBT, Multicast)

@item ST
Stuffing Table (DVB)

@item ST2
[internet] STream protocol 2 (Internet, ATM, RFC 1819, Multicast), ftp://ftp.rfc-editor.org/in-notes/rfc1819.txt

@item STA
Spanning Tree Algorithm

@item STA
Static Timing Analysis

@item STACS
Symposium on Theoretical Aspects of Computer Science (Konferenz)

@item STAIRS
STorage And Information Retrieval System

@item STAM
Shared-Time Allocation Manager

@item STAR
Shareware Trade Association and Resources (org.)

@item STARS
Software Technology for Adaptable Reliable Systems

@item STAX
STreaming API for XML (XML, API), "StAX"

@item STB
Software Technical Bulletin

@item STC
Science and Technology Center (NSF, USA)

@item STC
Secure Transaction Channel (banking, V-One, cryptography)

@item STC
SeT Carry [flag] (assembler)

@item STC
Space Time Coding (WIMAX, 802.16e)

@item STC
Standard Transmission Code

@item STC
Sub-Technical Committee (ETSI)

@item STCIUR
Sub-Technical Committee International User Requirements (ETSI), "STC IUR"

@item STCP
Stream Control Transport Protocol

@item STD
Secondary Transmitted Data

@item STD
SeT Direction [flag] (assembler)

@item STD
State Transition Diagram

@item STD
Subscriber Trunk Dialing

@item STD
Suspend To Disk (BIOS, ACPI)

@item STDA
StreetTalk Directory Assistance (Banyan, VINES)

@item STDIN
STandarD INput

@item STDM
Synchronous Time Division Multiplexer

@item STDOUT
STandarD OUTput

@item STE
Section Terminating Equipment (SONET)

@item STE
Secure Terminal Equipment

@item STE
Spanning Tree Explorer

@item STE
Standard Terminal Equipment

@item STEP
STandard for the External representation / Exchange of Product data definition (ISO, DP 10303, CAD)

@item STF
Specialist Task Forces (ETSI)

@item STFT
Short Time Fourier Transformation

@item STFU
Shut The Fuck Up (slang, Usenet, IRC)

@item STGT
SCSI TarGeT framework (SCSI, Linux)

@item STI
SeT Interrupt [flag] (assembler)

@item STI
Sony - Toshiba - IBM [cell] (Sony, Toshiba, IBM, IC, SOC)

@item STI
Standard Tape Interface

@item STI
Still Image Architecture (Windows 98, WIA)

@item STIDC
Sony Toshiba IBM Design Center (Sony, Toshiba, IBM, Cell)

@item STII
[internet] STream protocol II (RFC 1819), ftp://ftp.rfc-editor.org/in-notes/rfc1819.txt

@item STING
Software Technology Interest Group (CERN, org.)

@item STIX
SmallTalk Interface to X (GNU)

@item STIX
Structured Threat Information eXpression (TAXII), http://stix.mitre.org/

@item STL
Standard Template Library

@item STL
Standard Triangulation Language (CAD)

@item STLP
Secure Transport Layer Protocol

@item STM
Synchronous Transfer Mode (ATM, SDH)

@item STM
System Master Tape

@item STM1
Synchronous Transport Mode 1 [155,52 Mbps] (ATM, STM, SDH, OC-3), "STM-1"

@item STM12
Synchronous Transport Mode 12 [1866,24 Mbps] (ATM, STM, SDH, OC-36), "STM-12"

@item STM128
Synchronous Transport Mode 128 [39813,12 Mbps] (ATM, STM, SDH, OC-768), "STM-256"

@item STM16
Synchronous Transport Mode 16 [2488,32 Mbps] (ATM, STM, SDH, OC-48), "STM-16"

@item STM3
Synchronous Transport Mode 3 [466,56 Mbps] (ATM, STM, SDH, OC-9), "STM-3"

@item STM32
Synchronous Transport Mode 32 [4976,64 Mbps] (ATM, STM, SDH, OC-96), "STM-32"

@item STM4
Synchronous Transport Mode 4 [622,08 Mbps] (ATM, STM, SDH, OC-12), "STM-4"

@item STM6
Synchronous Transport Mode 6 [933,12 Mbps] (ATM, STM, SDH, OC-18), "STM-6"

@item STM64
Synchronous Transport Mode 64 [9953,28 Mbps] (ATM, STM, SDH, OC-192), "STM-64"

@item STM8
Synchronous Transport Mode 8 [1244,16 Mbps] (ATM, STM, SDH, OC-24), "STM-8"

@item STN
Scientific and Technical Network (network, JICST, FIZ)

@item STNLCD
SuperTwisted Nematic Liquid Crystal Display (LCD), "STN-LCD" 

@item STOC
Symposium on Theory Of Computing (Konferenz)

@item STONE
STructured and OpeN Environment (FZI Karlsruhe, Germany)

@item STORK
Secure indenTity acrOss boRders acKnowledged

@item STORM
Statistically-Oriented Matrix Program

@item STP
SATA Tunneling Protocol (SATA)

@item STP
Selective Tape Print

@item STP
Service Transaction Program (IBM)

@item STP
Shielded Twisted Pair [cable] (TP)

@item STP
Signaling Transfer Point (IN)

@item STP
Software Technology Park

@item STP
Software Through Pictures, "StP" 

@item STP
Spanning Tree Protocol (IEEE 802.1)

@item STP
System Training Program

@item STR
Synchronous Transmit Receive

@item STRD
STatistical Reference Datasets (NIST), "StRD"

@item STS
Synchronous Time Stamps (SDH)

@item STS
Synchronous Transport Signal

@item STS3C
Synchronous Transport System - level 3 Concatenated (SDH), "STS-3c"

@item STT
Secure Transaction Technology (MS, banking)

@item STT
Surface Tunnel Transistor (IC, DRAM, NEC)

@item STTL
Standard Transistor-Transistor Logic (TTL)

@item STTS
Secure Tape Transport Service

@item STU
Secure Telephone Unit

@item STUN
Simple Traversal of UDP through NAT (SIP, UDP, NAT, VoIP)

@item STV
Sprint Telecommunications Venture (org.)

@item STX
Start of TeXt

@item STX
Streaming Transformations for XML (XML)

@item SU
Screening Units

@item SU
Selectable Unit

@item SU
Signalling Unit

@item SU
Storage Unit

@item SU
Switch User (Unix)

@item SUA
Single User Account [feature] (Internet, NAT)

@item SUDS
Software Update and Distribution System

@item SUG
Sun User's Group (org., Sun, user group), http://sug.org

@item SUGA
Swedish User Group of Amiga (user group, Sweden, org.)

@item SUGD
Sun User's Group Deutschland (Sun, org., user group), http://sugwww.uni-paderborn.de

@item SUMC
Space Ultrareliable Modular Computer (RCA)

@item SUNET
Swedish University NETwork

@item SUNONE
Sun Open Network Environment (Sun, ONE)

@item SUNOS
SUN Operating System (Sun, OS, SPARC), "SunOS"

@item SUNVIEW
SUN's Visual Integrated Environment for Workstations (Sun, GUI)

@item SUPL
Secure User Plane Location (OMA, A-GPS)

@item SURANET
Southeastern Universities Research Association NETwork (network, USA), "SURAnet"

@item SURF
System Utilization Reporting Facility

@item SUS
Single Unix Specification (Unix)

@item SUS
Software Update Server / Service (MS)

@item SUSE
Software Und SystemEntwicklung [distribution] (Linux), "S.u.S.E.", http://www.suse.de

@item SUSP
System Use Sharing Protocol

@item SUT
System Under Test

@item SUTP
Screened Unshielded Twisted Pair [cable] (UTP, TP), "S/UTP"

@item SUTT
Single User Test Tools

@item SV
StandortVerteiler (cable, EN 50 173)

@item SVA
Shared Virtual Area

@item SVABI
System V Application Binary Interface (Unix, AT&T, SCD)

@item SVC
SuperVisor Call (IBM, VM, VM/ESA)

@item SVC
Switched Virtual Call / Circuit (IBM, X.25)

@item SVC
Switched Virtual Circuit / Channel / Connection (ATM, PVC)

@item SVCD
Super Video Compact Disk (CD)

@item SVCI
Switched Virtual Circuit Identifier (SVC, ATM)

@item SVD
Schweizerische Vereinigung fuer Datenverarbeitung (org., Switzerland)

@item SVD
Simultaneous Voice/Data

@item SVD
Supplementary Volume Descriptor (CD, IS 9660)

@item SVE
Simple Virtual Environment

@item SVFS
System V File System (Unix)

@item SVG
Scalable Vector Graphics [format] (W3C, XML)

@item SVGA
Super Video Graphics Array (VGA)

@item SVID
System V Interface Definition (Unix, AT&T, SCD)

@item SVIP
Secure Voice Improvement Program

@item SVK
Self Voicing Kit (IBM, Java)

@item SVM
Support Vector Machine [concept] (AI, KI)

@item SVMT
System Virtual Memory Table (BS2000)

@item SVP
SerVice Provider (ETSI, ETSI 201 671), "SvP"

@item SVPC
Single Variable Per Constraint

@item SVPMI
Super VGA Protected Mode Interface (VESA)

@item SVQ
Sorenson Video Quality (video, CODEC)

@item SVR3
System V Release 3 (Unix, OS, AT&T)

@item SVR4
System V Release 4 (Unix, OS, AT&T)

@item SVS
Single Virtual Space (IBM, OS, OS/SVS)

@item SW
Semantic Web (WWW)

@item SWAN
Secure WAN (RSA), "S/WAN"

@item SWAN
Sun Wide Area Network (Sun, WAN)

@item SWAP
Shared Wireless Application Protocol (HomeRF Association, WAP, WLAN)

@item SWAP
Simple Workflow Access Protocol, http://www.ics.uci.edu/~ietfswap/

@item SWEDAC
[Staatliches Amt fuer Technische Akkreditierung] (Sweden, org.)

@item SWF
Small Web Format (Macromedia, Flash)

@item SWI
SoftWare Interrupts (RISC, OS)

@item SWICO
Schweizerischer Wirtschaftsverband der Informations-, Communikations- und Organisationstechnik (org., Switzerland)

@item SWIFT
Society for Worldwide Interbank Financial Telecommunication (org., banking)

@item SWIM
Someone Who Isn't Me (slang, Usenet, IRC)

@item SWIM
Super Woz' Integrated Machine

@item SWISH
Simple Web Indexing System for Humans (WAIS, WWW)

@item SWT
Standard Widget Toolkit (Eclipse, GUI, WTP)

@item SXGA
Super eXtended Graphics Adapter / Array

@item SXU
Synergistic eXecution Unit (IBM, Cell, SPU)

@item SYMM
SYnchronized MultiMedia working group (WAI)

@item SYSAD
SYStem ADministrator, "SysAd" 

@item SYSEX
SYStem EXecutive (OS, IBM, S/360)

@item SYSOP
SYStem OPerator (BBS), "SysOp" 

@end table