-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathvera.p
More file actions
2201 lines (1469 loc) · 35.2 KB
/
vera.p
File metadata and controls
2201 lines (1469 loc) · 35.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
@c -*-texinfo-*-
@c This is part of the GNU edition of V.E.R.A.
@c Copyright (C) 1993/2006 Oliver Heidelbach
@c See the file vera.texi for copying conditions.
@c
@c Syntax:
@c ACRONYM
@c Expansion[ (Reference)][, "Style"]
@c Additional explanations are included in [square brackets]
@table @asis
@item P2CC2P
PCI to CPU / CPU tp PCI [concurrency] (BIOS, PC, PCI, CPU), "P2C/C2P"
@item P2P
Peer to Peer [network]
@item P3P
Platform for Privacy Preferences (WWW)
@item P64
Pointer 64 [bit] (BIT)
@item PA
Precision Architecture (HP)
@item PABX
Private Automatic Branch eXchange
@item PAC
PCI AGP Controller (Intel, IC, PCI, AGP)
@item PAC
Privilege Attribute Certificate (DCE)
@item PAC
Proxy Auto-Config (WWW, Mozilla)
@item PACE
Priority Access Control Enabled (3Com, ethernet)
@item PACER
Public Access to Court Electronic Records
@item PACS
Picture Archiving and Communications Systems
@item PACS
Public-Access Computing Systems
@item PACT
Partnership in Advanced Computing Technologies (org. UK)
@item PACT
Personal Air Communications Technology, "pACT"
@item PACT
Production Analyses Control Technique
@item PACX
Private Automatic Computer eXchange
@item PAD
Packet Assembling Disassembling (CCITT, X.3, X.28, X.29, PSDN)
@item PADS
Programmer's Advanced Debugging System
@item PAE
Physical Address Extension (Intel, Pentium, PAE)
@item PAEB
Pan American EDIFACT Board (UN/EDIFACT)
@item PAEB
Pan American EDIFACT Board (org., EDIFACT), "PA/EB"
@item PAI
Process After Input (R/3)
@item PAL
Paradox Application Language (Borland, DB)
@item PAL
Phase Alternating Line
@item PAL
Privileged Architecture Library (DEC, Alpha)
@item PAL
Programmable Array Logic
@item PALCD
Plasma Addressable Liquid Crystal Display (LCD)
@item PAM
Paging Area Memory
@item PAM
Pluggable Authentication Module (Linux, LISA)
@item PAM
Primary Access Method (BS2000)
@item PAM
Programmable Attribute Maps (DRAM, PCI)
@item PAM
Pulse Amplification Modulation
@item PAML
Publicly Accessible Mailing Lists (Internet, BBS)
@item PAN
Personal Account Number
@item PAN
Personal Area Network (IBM, Bluetooth)
@item PAN
Personal Area Networking [profile] (Bluetooth)
@item PANDORA
Preserving and Accessing Networked Documentary Resources of Australia
@item PANIX
Public Access internet/uNIX [system] (Unix, Internet, network)
@item PAP
Password Authentication Protocol (RFC 1334)
@item PAP
Printer Access Protocol (AppleTalk)
@item PAP
ProgrammAblaufPlan (DIN 66001)
@item PAPI
PC voice API (API, PC)
@item PAR
Portal ARchive (SAP, EP)
@item PAR
Positive Acknowledgement with Retransmission [protocols]
@item PAR
Project Authorization Request (IEEE)
@item PARC
Palo Alto Research Center (org., USA, Xerox)
@item PARISC
Precision Architecture, Reduced Instruction Set Computing (RISC, HP), "PA-RISC"
@item PARLE
[conference on] Parallel ARchitecture and Languages Europe (ECRC, conference)
@item PARTS
Parts Assembly and Reuse Tool Set (Visual Smalltalk)
@item PAS
Publicly Available Specifications (ISO)
@item PAS2
Personal Application System /2 (IBM, DB2/2), "PAS/2"
@item PASC
Portable Application Standards Committee (org., IEEE)
@item PASM
Parrot ASseMbly language (PERL)
@item PAT
Performance Acceleration Technique (Intel, MCH)
@item PAT
Port and Address Translation (IOS, Cisco, LAN, IP)
@item PAT
Program Association Table (DVB)
@item PAUSE
PERL Authors Upload SErver (PERL, CPAN)
@item PAWS
Protection Against Wrapped Sequence space (TCP, satellite)
@item PAX
Pixel Addressing eXtensions (Intel, RISC, CPU)
@item PAX
Portable Archive eXchange (SCO, Unix)
@item PAX
Private Automatic eXchange
@item PB
Pipeline Burst [cache]
@item PBC
Peripheral Bus Computer
@item PBE
Prompt By Example
@item PBI
Pacific Bell Internet (ISP)
@item PBI
Phone Based Interface
@item PBM
Play By Mail [game]
@item PBO
Process Before Output (R/3)
@item PBS
Portable Batch System (Unix)
@item PBX
Private Branch eXchange
@item PC
Personal Computer
@item PC
Printed Circuit (IC)
@item PC
Priority Control
@item PC
Protocol Control
@item PC
Punched Card
@item PC97
Personal Computer 97 (MS), "PC 97"
@item PCA
Policy Certification Authority (DFN, PGP, cryptography)
@item PCA
Power Calibration Area (CD)
@item PCAT
Personal Computer - Advanced Technology, "PC-AT"
@item PCB
Printed Circuit Board
@item PCB
Process Control Block (BS2000)
@item PCB
Program Communication Block (IBM)
@item PCB
Protocol Control Block (TCP)
@item PCC
Portable C Compiler
@item PCCA
Personal Computer Communications Associations (org., USA)
@item PCD
Photo CD (Kodak, CD)
@item PCD
Portal Content Directory (SAP, EP)
@item PCD
Process Control Device
@item PCDA
Program Controlled Data Acquisition
@item PCDATA
Parsed Character DATA (DTD, CDATA)
@item PCDOS
Personal Computer DOS (OS, DOS, IBM, PC), "PC-DOS"
@item PCELS
Policy Core Extension lightweight directory access protocol Schema (LDAP, RFC 3703/4104)
@item PCERT
Purdue Computer Emergency Response Team
@item PCF
Point Coordination Function (MAC, 802.11a, WLAN)
@item PCF
Portable Compiled Font
@item PCH
Paging CHannel (GSM, CCCH, mobile-systems)
@item PCH
Pre-Compiled Headers
@item PCI
Peripheral Component Interconnect (PCI)
@item PCI
Protocol Control Information (OSI, ETSI)
@item PCIA
Personal Communications Industry Association (org., USA, SMS)
@item PCIAS
Peripheral Component Interconnect Advanced Switching (PCI, PCIe, ASI), "PCI AS"
@item PCIC
PC card I/O Card (PCMCIA, I/O)
@item PCIE
Peripheral Component Interconnect Express, "PCIe"
@item PCIE
Permis de Conduire Informatique Europeen (ECDL)
@item PCIEAS
PCI Express Advanced Switching (PCI, ASI-SIG), "PCI-EAS"
@item PCIPM
PCI Power Management [specification] (PCI), "PCI PM"
@item PCIS
Portable Common Interface Set
@item PCISIG
Peripheral Component Interconnect - Special Interest Group (org., PCI, SIG), "PCI-SIG"
@item PCIX
Peripheral Component Interconnect - eXtended (PCI), "PCI-X"
@item PCIX
Personal Computer / unIX (IBM, PC), "PC/IX"
@item PCIXF
Personal Computer Integrated eXchange Format (OS/2), "PC/IXF"
@item PCL
Portable Common LOOPS (CLOS)
@item PCL
Printer Control Language (HP, PJL)
@item PCL
Programmable Command Language (CMU, DEC, TOPS)
@item PCM
Personal Computer Manufacturer
@item PCM
Physical Connection Management (FDDI, SMT)
@item PCM
Plug Compatible Machine
@item PCM
Pulse Coded Modulation
@item PCMCIA
People Can't Memorize Computer Industries Acronyms (slang)
@item PCMCIA
Personal Computer Memory Card International Association (org.)
@item PCMS
Project & Configuration Management System
@item PCMT
Personal Computer Message Terminal
@item PCN
Personal Communications Network
@item PCN
Public Communications Network (mobile-systems)
@item PCNFS
Personal Computer Network File System
@item PCNOS
Personal Computer / Network Operating System (OS, MS-DOS, CP/M), "PC/NOS"
@item PCO
Point of Control and Observation (ISO 9646-1, IUT)
@item PCP
Primary Control Program (IBM, OS, OS/PCP)
@item PCP
Printer Control Protocol
@item PCPC
Personal Computers Peripheral Corporation (manufacturer)
@item PCR
Peak Cell Rate (UNI, ATM, SCR)
@item PCR
Platform Configuration Registers (TPM)
@item PCR
Processor Configuration Register (Motorola, CPU)
@item PCR
Program Clock Reference
@item PCRAM
Phase-Change Random Access Memory (RAM, IC), "PC-RAM"
@item PCRE
Perl Compatible Regular Expression Library (PERL)
@item PCRW
Phase Change ReWritable (DVD, EMCA), "PC-RW"
@item PCS
Personal Communication System (Sony, Panasonic, Motorola)
@item PCS
Personal Communications Services
@item PCS
Programmable Communications Subsystem
@item PCS
Punched Card System (PC)
@item PCSA
Personal Computing Systems Architecture [= Pathworks] (DEC, NOS)
@item PCSC
Personal Computer / Smard Card (PC, PCMCIA), "PC/SC"
@item PCSD
Printer Control Sequence Description
@item PCSI
Pacific Communication Sciences, Inc. (manufacturer)
@item PCT
Private Communication Technology (Internet, MS, Visa)
@item PCT
Probe Control Table (FFST/2)
@item PCTCP
Personal Computer/Transmission Control Protocol, "PC/TCP"
@item PCTE
Portable Common Tool Environment (CASE, ESPRIT)
@item PCTS
POSIX Compliance Test Suite (POSIX)
@item PCV
P-bit Coding Violation [error event] (DS3/E3, BIT)
@item PCV
Path Coding Violation [error event] (DS1/E1)
@item PCXT
Personal Computer - eXtended Technology, "PC-XT"
@item PD
Packetization Delay
@item PD
Plug & Display [standard] (LCD, VESA), "P&D"
@item PD
Public DOMAIN
@item PDA
Personal Digital Assistant
@item PDB
Per-DOMAIN Behaviour (DOMAIN, Internet)
@item PDB
Professional Disk for Broadcast (Sony, BD)
@item PDC
Personal Digital Cellular [network] (GSM)
@item PDC
Power Disk Cartridge (ECMA)
@item PDC
Primary DOMAIN Controller (MS, Windows NT, BDC)
@item PDC
PROLOG Development Center (manufacturer, Denmark, PROLOG)
@item PDD
PERL Design Document (PERL)
@item PDD
Professional Disk for Data (Sony, BD)
@item PDE
Partial Differential Equation
@item PDE
Personal Digital Entertainment
@item PDE
Plug-in Development Environment (Eclipse)
@item PDES
Product Data / Definition Exchange Standards (USA, STEP, CIM)
@item PDF
Portable Document Format (Adobe)
@item PDF
Program Development Facility (IBM)
@item PDFX
Portable Document Format / eXchange (PDF, CGATS, DTP), "PDF/X"
@item PDH
Plesiochronous Digital Hierarchy (ATM)
@item PDI
Power and Data Interface
@item PDK
Patterns Development Kit (WWW, IBM)
@item PDK
Peripheral Developers Kit (MS)
@item PDK
Portal Development Kit (SAP, EP)
@item PDL
Page Description Language (printing)
@item PDL
PERL Data Language (PERL)
@item PDL
Program Design Language
@item PDL
Program Development Language
@item PDLT
Process Dispatch Latency Time
@item PDM
Program Development Manager (IBM, ADT)
@item PDN
Programmer's Distribution Network (Fido)
@item PDN
Public Data Network (mobile-systems)
@item PDO
Portable Distributed Objects (NeXT)
@item PDOP
Positional Dilution Of Precision (GPS)
@item PDOS
Parallel and Distributed Operating System (OS, MIT)
@item PDP
Parallel Distributed Processing (AI)
@item PDP
Peripheral Data Processing
@item PDP
Plasma Display Panel
@item PDP
Programmable Data Processor (DEC)
@item PDQ
Parallel Data Query (Informix, DB)
@item PDS
Partitioned Data Set
@item PDS
Portable Display Shell (Shell)
@item PDS
Processor Direct Slot / Socket (Motorola, Apple)
@item PDS
Professional Development System (MS)
@item PDS
Public DOMAIN Software (PD)
@item PDSP
Peripheral Data Storage Processor
@item PDSS
Post Development and Software Support
@item PDT
Pacific Daylight Time [-0700] (TZ, PST, USA)
@item PDTR
Proposed Draft Technical Report
@item PDU
Packet Data Unit
@item PDU
Product Development Unit
@item PDU
Protocol Data Unit (OSI)
@item PDV
Photorealistic Data Visualization
@item PDV
ProzessDatenVerarbeitung
@item PE
Phase Encoding
@item PE
Portable eXecutable (Win32, Java)
@item PE
Preinstallation Environment (MS, Windows, XP)
@item PE
Processing Element (MPP)
@item PEA
Pocket Ethernet Adapter (LAN, ethernet)
@item PEAK
Python Enterprise Application Kit (Python)
@item PEAP
Protected Extensible Authentication Protocol (EAP, WPA, WLAN)
@item PEAR
PHP Extension and Application Repository (PHP)
@item PEARL
Process and Experiment Automation Realtime Language
@item PEBCAK
Problem Exists Between Chair And Keyboard (slang)
@item PEBI
PEtaBInary [(2^10)^5] (IEC)
@item PEBKAC
Problem Exists Between Keyboard And Chair (telecommunication, Usenet, IRC)
@item PEC
Program Execution Control (IBM, OS/2)
@item PECL
PHP Extension Code Library (PHP, PEAR)
@item PEDS
Planning, programming, budget, and execution Electronic Delivery System
@item PEEK
Partners Early Experience Kit (Taligent)
@item PEF
Preferred Executable Format (CFM, Apple)
@item PEG
PCI Express for Graphics (PCIe, Intel)
@item PEG
Platform European Grid [conference] (grid)
@item PEL
Picture ELement
@item PEM
Privacy Enhanced Mail (PSRG, RFC 1421/1422/1423/1424)
@item PEM
Proton Exchange Membrane fuel cell
@item PEN
Public Education Network
@item PEP
Packetized Ensemble Protocol (Telebit)
@item PEP
Personal Employee Portal (IBM)
@item PEP
Personal Exam Prep (MS, ATEC)
@item PEP
Polymer Electronic Printing
@item PEP
Python Enhancement Proposal (Python)
@item PER
Packed Encoding Rules (ASN.1)
@item PER
Program Event Recording
@item PERCS
Productive, Easy-to use, Reliable Comouting Systems (IBM)
@item PERL
Pathologically Eclectic Rubbish Lister (slang)
@item PERL
Practical Extraction and Report Language (PERL)
@item PERM
Pre-Embossed Rigid Magnetic (Sony, HDD)
@item PERMIS
PERManentes InventurabwicklungsSystem (MBAG)
@item PEROM
Programmable Erasable Read Only Memory (IC)
@item PERPOS
PERpetual Processing Operating System (OS, Unix)
@item PERT
Program Evaluation / Evolution and Review Technique
@item PES
P-bit Errored Seconds (DS3/E3, BIT)
@item PES
Packetized Elementary Stream (DVB, ISO, IEC 13818-2/13818-3)
@item PES
Photo-Electric Scanning (DTP)
@item PES
Programmed Electrical Stimulation
@item PES
Proposed Encryption Standard (cryptography)
@item PEST
Parameter Estimation by Sequential Testing
@item PET
Personal Electronic Translator
@item PET
Print Enhancement Technology (Compaq)
@item PET
Progressive Educational Technology
@item PEX
PHIGS Extension for X (X-Windows, PHIGS)
@item PFA
Parameter Field Address (Forth)
@item PFA
Predictive Failure Analysis (HDD)
@item PFC
Power Factor Correction
@item PFC
Protocol Field Compression (PPP)
@item PFD
Primary Flight Display (Airbus, A380)
@item PFE
Page Fault Error (Windows, MS)
@item PFK
Program Function Key
@item PFM
Printer Font Metrics (Adobe)
@item PFN
Page Frame Number (Linux, VPFN)
@item PFPU
Processor Frame Power Unit
@item PFR
Portable Font Resource (Netscape)
@item PFRAM
Polymeric Ferroelectric Random Access Memory (RAM, IC)
@item PFWG
[WAI] Protocols and Formats Working Group (WAI)
@item PGA
Patches Gratefully Accepted (slang, Cygwin, PTC)
@item PGA
Pin Grid Array (IC, CPU)
@item PGA
Professional Graphics Adapter (IBM)
@item PGC
Professional Graphics Controller
@item PGC
ProGram Chain (DVD)
@item PGD
Page Global Directory
@item PGFNA
Prince George Free-Net Association (org., USA)
@item PGI
Parameter Group Identifier (SPDU)
@item PGM
Practical General Multicast (Cisco, Multicast)
@item PGML
Precision Graphics Markup Language (XML, IBM, Netscape, Sun, Adobe)
@item PGO
Profile Guided Optimization (Intel)
@item PGP
Pretty Good Privacy
@item PGS
Program Generation System
@item PHB
PCI Host Bridge (Power4, IBM)
@item PHBT
Pseudomorphic Heterojunction Bipolar Transistor
@item PHIGS
Programmer's Hierarchical Interactive Graphics System
@item PHIGSPLUS
PHIGS Plus Lumiere and Surfaces (PHIGS), "PHIGS-PLUS"
@item PHIPS
Professional High-Resolution Image Processing System (CA)
@item PHLAK
Professional Hackers Linux Assault Kit (Linux)
@item PHOTON
paneuropean PHOtonic Transport Overlay Network (ACTS)
@item PHP
PHP Hypertext Preprocessor (PHP/FI, HTML, CGI, successorr)
@item PHPFI
Personal Home Page [construction kit]/Form Interpreter (HTML, CGI, PHP, predecessor), "PHP/FI"
@item PHUN
Phreakers and Hackers Underground Network (network)
@item PHY
PHYsical Layer Control (FDDI)
@item PI
Placement and Interconnect [system] (VLSI, MIT)
@item PI
Portable Interceptor (CORBA)
@item PIA
Peripheral Interface Adapter
@item PIA
Plug-In Administrator
@item PIA
Primary Interop Assembly (VSTO, MS)
@item PIC
Personal Intelligent Communicator
@item PIC
Point in Call (IN)
@item PIC
Position Independent Code (DLL)
@item PIC
Primary Independent Carrier
@item PIC
Priority Interrupt Controller (IC)
@item PIC
Programmable Interrupt Controller (PIC)
@item PICC
Proximity Integrated Circuit Card (RFID)
@item PICG
PCTE Interface Control Group (org., PCTE)
@item PICMG
PCI Industrial Computer Manufacturers Group (org., PCI)
@item PICS
Platform for Internet Content Selection (org., Internet)
@item PICS
Plug-in Inventory Control System
@item PICS
Protocol Implementation Conformance Statements
@item PICSDCPR
PICS Detailed Continuing Property Record, "PICS/DCPR"
@item PICU
Priority Interrupt Control Unit
@item PID
Packet IDentification (DVB)
@item PID
Process IDentification number (Unix)
@item PID
Protocol IDentifier [governing connection types]
@item PIE
Personal Interactive Electronics [division] (Apple)
@item PIF
Parity Inner Failure (DVD)
@item PIFS
Point Coordination Function - InterFrame Space (MAC, 802.11a, PCF, IFS, WLAN)
@item PIG
Psion Interest Group (Psion)
@item PIIX
PCI IDE/ISA eXcelerator (Intel, IC, PCI, IDE, ISA)
@item PIKT
Problem Informant/Killer Tool (GNU, Linux)
@item PIL
Python Imaging Library (Python)
@item PIM
Parallel Inference Machine (FGCS, AI)
@item PIM
Personal Information Manager / Management
@item PIM
Platform Independent Model (MDA)
@item PIM
Protocol Independent Multicast (ACM, Multicast)
@item PIMA
Photographic & Imaging Manufacturers Association (org., predecessor, I3C)
@item PIMB
PCTE Interface Management Board (org., PCTE)
@item PIMDM
Protocol Independent Multicast-Dense Mode [protocol] (PIM, ACM, Multicast), "PIM-DM"
@item PIMF
Paar [kabel] In MetallFolie (VDE, STP), "PiMF"