-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvera.l
956 lines (639 loc) · 15.2 KB
/
vera.l
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
@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 L1
Level 1 [cache]
@item L2
Level 2 [cache]
@item L2F
Layer 2 Forwarding [protocol] (Shiva, Cisco, IP, IPX, LLC)
@item L2TP
Layer 2 Tunneling Protocol (PPP, VPN, IP, RFC 2661)
@item L3VPN
Layer 3 Virtual Private Network (VPN)
@item LA
[MPEG] Licensing Administration (MPEG)
@item LA
Limited Availability (IBM, OS/2)
@item LA
Location Area (MSC, GSM, mobile-systems)
@item LAC
Lotus Authorized Consultants (Lotus)
@item LADT
Lexikon der Abkuerzungen in der Datentechnik und Telekommunikation (WWW)
@item LADT
Local Access Data Transport
@item LAEC
Lotus Authorized Education Center (Lotus)
@item LAG
Logical Address Group (ION)
@item LAM
Local Area Multicomputer (Parallel Computing)
@item LAME
LAME Ain't an MP3 Encoder (MP3)
@item LAMP
Linux, Apache, MySQL, PHP (Linux, Apache, PHP, DB, SQL)
@item LAMPP
Linux, Apache, MySQL, PHP and PERL (Linux, Apache, DB, SQL, PHP, PERL)
@item LAN
Local Area Network (LAN)
@item LANANA
Linux Assigned Names And Numbers Authority (Linux, org.)
@item LANCE
LAN Controller for Ethernet (LAN)
@item LANE
Local Area Network Emulation [over ATM specification] (ATM)
@item LANL
Los Alamos National Laboratory (org., USA)
@item LAP
LAN Access Profile (Bluetooth, SPP, LAN)
@item LAP
Link Access Procedure / Protocol (CCITT, X.25)
@item LAPB
Link Access Procedure - Balanced (CCITT, LAP, X.25)
@item LAPD
Link Access Procedure on the D channel (X.21, ISDN, TA)
@item LAPIC
Local Advanced Programmable Interrupt Controller (PIC)
@item LAPM
Link Access Procedure for Modem
@item LAPS
LAN Adapter and Protocol Support
@item LASER
Light Amplification by Stimulated Emission of Radiation
@item LASS
Local Area Signaling Service
@item LAT
Local Area Transport (DEC)
@item LATA
Local Access Transport Area
@item LATM
Local Asynchronous Transfer Mode
@item LAVAS
LAger- und VersandAbwicklungsSystem (MBAG)
@item LAVC
Local Area VAX Cluster (VAX, DEC)
@item LAW
Local Authority Workstation
@item LAWN
Local Area Wireless Network
@item LBA
Logical Block Addressing (EIDE)
@item LBCAST
Lateral Buried Charge Accumulator and Sensing Transistor array (Nikon, photo)
@item LBM
Local Bus Master
@item LBN
Logical Block Number (LBA)
@item LBS
Location Based Service (mobile-systems)
@item LBT
Local Bus Targets
@item LBX
Low-Band with X
@item LC
Linux Computer (Corel)
@item LC
Loopback Capability (UNI, ATM, OAM)
@item LCA
[Sair] Linux [and GNU] Certified Administrator (Linux, GNU, Unix)
@item LCA
Logic Cell Array
@item LCC
Local Control Center
@item LCCM
LAN Client Control Manager (IBM, LAN)
@item LCD
Liquid-Crystal Display (LCD)
@item LCD
LISP Code Directory (EMACS)
@item LCD
Loss of Cell Delineation (UNI, ATM)
@item LCGI
Local Common Graphics Interface (CGI, WWW)
@item LCM
LEAF Creation Method (EES, cryptography)
@item LCN
Local Control Network (Issendorf)
@item LCN
Logical Channel Numbers
@item LCOS
Liquid Crystal On Silicon (LCD)
@item LCP
[PPP] Link Control Protocol (PPP, RFC 1570)
@item LCP
[Sair] Linux [and GNU] Certified Professional (Linux, GNU, Unix)
@item LCR
Least Cost Routing
@item LCS
Laboratory for Computer Science (MIT)
@item LCS
Linux Compatibility Standard (Linux)
@item LCS
Liquid Crystal Shutter
@item LCS
Lotus Communication Server
@item LCSS
Liquid Crystal Stereoscopic Shutter [display]
@item LCT
Last Compliance Time (GCRA)
@item LCU
LAN CID Utility (LAN, CID, IBM)
@item LCV
Line Coding Violation [error event] (DS1/E1, DS3/E3)
@item LD
LAN Destination (ATM)
@item LDA
Local Delivery Agent
@item LDAP
Lightweight Directory Access Protocol (RFC 1777, X.500, DS, AD)
@item LDAPAPI
Lightweight Directory Access Protocol Application Program Interface (LDAP, RFC 1823, API), "LDAP API"
@item LDCM
LANDesk Client Manager
@item LDD
Lightly Doped Drain (IC, MOSFET)
@item LDDM
Longhorn Display Driver Model (MS, Windows, Vista)
@item LDID
Logical Disk IDentifier (MS)
@item LDP
Label Distribution Protocol (IETF, RFC 3036, MPLS)
@item LDP
Linux Documentation Project (Linux)
@item LDP
Loader Debugger Protocol (RFC 909)
@item LDR
Light Detect Resistor
@item LDT
Lightning Data Transfer [bus] (AMD)
@item LDT
Local Descriptor Table (CPU, Intel)
@item LDTR
Load Descriptor Table Register (CPU, Intel, assembler, IC)
@item LDTRC
Local Descriptor Table Register Cache (LDT, Intel, CPU)
@item LDVA
LaenderDatenVerareitungsAnlage
@item LDW
Lane Departure Warning (car)
@item LE
LAN Emulation (LANE, ATM)
@item LEA
Law Enforcement Agency (ETSI, ETSI 201 671)
@item LEAF
Law Enforcement Access Field (EES, cryptography)
@item LEAP
Lightweight Extensible Authentication Protocol (Cisco, EAP, cryptography, WLAN)
@item LEARP
LAN Emulation Address Resolution Protocol (LANE, ARP, ATM), "LE-ARP"
@item LEAS
LATA Equal Access System
@item LEC
LAN Emulation Client (LANE, ATM)
@item LEC
Layered Error Correction (CD)
@item LEC
Local Exchange Carrier (FCC, LATA, IEC)
@item LECID
LAN Emulation Client IDentifier (LANE, ATM, LEC)
@item LECS
Local area network Emulation Configuration Server (ATM, LANE, LEC)
@item LED
Light-Emitting Diode
@item LEI
Lotus Enterprise Integrator (Lotus)
@item LEL
Link, Embed and Launch (UNIX)
@item LEMP
Lightning ElectroMagnetic Pulse
@item LEN
Loi pour la confiance dans l'Economie Numerique (France)
@item LEN
Low Entry Networking (IBM, SNA, PU)
@item LENS
Laser Engineered Net-Shaping
@item LEO
LeitungsEndgeraet, Optisch Mil., Germany
@item LEO
Link Everything Online (WWW, TUM)
@item LES
LAN Emulation Server (LANE, ATM)
@item LES
Line Errored Seconds (DS1/E1, DS3/E3)
@item LF
Line Feed (ASCII)
@item LF
Login Facility (DCE)
@item LFA
Link Field Address (Forth)
@item LFA
Local Feature Analysis
@item LFAP
Light-weight Flow Admission Protocol (Cabletron, RFC 2124)
@item LFB
Linear Frame Buffer (CPU, VESA)
@item LFCC
Linux Federation for Commercial Customers (Linux)
@item LFE
Low Frequency Effect (audio)
@item LFN
Long File Names
@item LFNBK
Long File Name BacKup (MS)
@item LFO
Low Frequency Oscillator
@item LFS
Linux From Scratch (Linux, org.)
@item LFS
Loopback File System
@item LFSR
Linear Feedback Shift Register (IC)
@item LFU
Least Frequently Used
@item LGPL
Lesser General Public License (GPL, GNU)
@item LGPO
Local Group Policy Object (AD, GPO)
@item LGX
Linux/GNU/X [distribution] (Yggdrasil, Linux, GNU)
@item LHS
Left Hand Side (NGSCB, MS, Palladium)
@item LI
Lawful Interception (ETSI)
@item LIB
Linear Incremental Backoff (CSMA/CD, BEB)
@item LIC
Licensed Internal Code
@item LID
Local IDentifier (Infiniband)
@item LIDO
LInux cluster DOrtmund, "LiDO"
@item LIF
Low Insertion Force (IC)
@item LIFD
Last In First Drop
@item LIFE
Laboratory for International Fuzzy Engineering [research] (MITI)
@item LIFE
Logistics Interface For manufacturing Environment
@item LIFO
Last In First Out
@item LIJP
Leaf Initiated Join Parameter
@item LIKS
Lietuvos kompiuterininko Sajunga (org., Litauen)
@item LILO
LInux [boot] LOader (Linux)
@item LIM
Lotus - Intel - Microsoft (manufacturer)
@item LIMAD
Linear MAgnetic Drive [technology]
@item LIMDOW
Laser / Light Intensity Modulation, Direct OverWrite (MOD)
@item LIMEMS
Lotus - Intel - Microsoft Expanded Memory Specification (Lotus, Intel, MS, EMS), "LIM EMS"
@item LINCAT
LINux Compatibility Assurance Toolkit (Linux, Sun, Solaris)
@item LINQ
Language INtegrated Query (MS, VB, C#)
@item LIP
Large Internet Packet
@item LIP
Loop Initialization Primitive (SCSI)
@item LIPKEY
Low Infrastructure Public KEY [meachanism]
@item LIPS
Logical Inferences Per Second (AI, KI, XPS)
@item LIR
Link Incident Report (Cisco)
@item LIR
Local Internet Registry (Internet)
@item LIRC
Linux Infrared Remote Control (Linux)
@item LIS
Logical IP Subnet (RFC 1577, ION)
@item LISA
Linux Installation & System Administration (Linux, LST)
@item LISA
Localization Industry Standards Association (org.)
@item LISP
LISt Processor (LISP)
@item LISP
Lots of Isolated Silly Parentheses (LISP, slang)
@item LISUAF
[thueringer] LandesInformationsSystem Umwelt, Agrar und Forst (UIS), "LIS-UAF"
@item LITA
Library and Information Technology Association (org., USA)
@item LITTA
Latvijas Informacijas Tehnologiju un Telekomunikaciju Asociacija (org., Lettland)
@item LIU
Line Interface Unit
@item LIV
Link Integrity Verification
@item LIVE
LInux VErband (Linux, org.)
@item LIVID
Language Identification and Voice IDentification
@item LIW
Long Instruction Word (CPU)
@item LKI
Labor fuer Kuenstliche Intelligenz (org., KI, Hamburg, Germany)
@item LLAP
Localtalk Link Access Protocol (AppleTalk, LAP)
@item LLATMI
Lower Layer ATM Interface (ATM)
@item LLB
Local Location Broker (NCS)
@item LLC
Logical Link Control (IEEE 802.2, ISO, OSI)
@item LLCSNAP
Logical Link Control/SubNetwork Access Protocol (LLC, SNAP), "LLC/SNAP"
@item LLN
Line Link Network
@item LLNL
Lawrence Livermore National Laboratory (org., USA)
@item LLP
Link Level Protocol (BTX)
@item LLP64
Long [32 bit], Long [32 bit], Pointer 64 [bit] (BIT)
@item LMDS
Local Multi-point Distribution System
@item LME
Large Memory Enabled [devices and drivers] (DAC)
@item LME
Layer Management Entity (OSI)
@item LMFAO
Laughing My Fucking Ass Off (Usenet, IRC, slang)
@item LMI
Layer Management Interface (ATM)
@item LMML
Learning Material Markup Language
@item LMQ
Load Miss Queue (Power4, IBM, CPU)
@item LMS
Library Maintenance System (BS2000)
@item LMU
LAN Manager for Unix (Unix), "LM/U"
@item LMX
LAN Manager for uniX (LAN, Unix, MS), "LM/X"
@item LNA
Low Noise Amplifier (GPS)
@item LNB
Line Number Block
@item LNN
Lotus Notes Network (Lotus)
@item LOC
LAN Operations Center (LAN)
@item LOC
Lines Of Code
@item LOC
Loss of Cell delineation (UNI, ATM)
@item LOCIS
Library Of Congress Information System (Internet)
@item LOCT
Layered Open Crypto Toolkit (RSA, cryptography)
@item LOD
Level Of Detail (3D)
@item LOF
Loss of Frame (UNI, ATM, DS3/E3)
@item LOL
Laughing Out Loud (slang, Usenet, IRC)
@item LOLITA
Language for the On-Line Investigation and Transformation of Abstractions
@item LOM
Laminated Object Manufacturing
@item LON
Local Operation Network
@item LOOPS
LISP Object Oriented Programming System (Xerox, OOP, LISP)
@item LOP
Loss of Pointer (UNI)
@item LOS
Line Of Sight (WIMAX, NLOS)
@item LOS
Local Operating System
@item LOS
Loss of Signal (UNI, ATM)
@item LOSP
LOw SPeed channel connector (Cray, I/O)
@item LOV
List Of Values (DB, Oracle, Java)
@item LOVIS
LagerOrtVerwaltungs- und InformationsSystem (MBAG)
@item LP
Line Printer (Unix)
@item LP
Linear Programming
@item LP
Logical Partition (LVM)
@item LP32
Long and Pointer 32 [bit] (BIT)
@item LPAN
Logical Processing Area Network
@item LPAR
[conference on] Logic for Programming, Artificial intelligence and Reasoning (AI, conference)
@item LPB
[S3] Local Peripheral Bus
@item LPC
Linear Predictive Coding (voice processing)
@item LPC
Low Pin Count [interface] (ICH)
@item LPD
Line Printer DAEMON
@item LPDA
Link Problem Determination Aid
@item LPDP
Line Printer DAEMON Protocol (RFC 1179)
@item LPDU
Link Protocol Data Unit
@item LPEX
Live Parsing eXtensible Editor (IBM, OS/2)
@item LPF
League for Programming Freedom (org.)
@item LPI
Lines Per Inch
@item LPI
Linux Professional Institute (Linux, org.)
@item LPP
Licensed Program Product (IBM)
@item LPPB
Land Pre Pit level Before [recording] (DVD-R)
@item LPPL
Latex Project Public License
@item LPR
Line Printer Remote / Request (printing)
@item LPR
Low Priority Request (VUMA)
@item LPS
Lines Per Second
@item LPS
Lotus Professional Services (Lotus)
@item LPT
Line PrinTer
@item LPX
Lean Packet eXchange (Ximeta, IDE, LAN)
@item LPX
Low Profile eXtended [motherboard/form factor]
@item LQ
Letter Quality
@item LQM
Link Quality Monitoring (PPP)
@item LR
Location Register (LA, GSM, mobile-systems)
@item LRC
Longitudinal Redundancy Check
@item LRH
Local Route Header (Infiniband)
@item LRPC
Lightweight Remote Procedure Calls (OLE)
@item LRQ
Load Reorder Queue (Power4, IBM, CPU)
@item LRS
Line Repeater Station
@item LRU
Least Recently Used
@item LRZ
Leibniz RechenZentrum (org., BADW)
@item LS
LAN Server (IBM)
@item LSA
Link State Advertisement (OSPF)
@item LSA
Lotus Solution Architecture (Lotus)
@item LSAPI
Licensed Services Application Program Interface (MS, API)
@item LSASS
Local Security Authority Subsystem Service (MS, Windows)
@item LSB
Least Significant Bit (BIT)
@item LSB
Linux Standard Base (Linux, FSG)
@item LSDU
Link Service Data Unit
@item LSE
Linux Scalability Effort (Linux)
@item LSE
Local Subscriber Environment
@item LSF
Load Sharing Facility
@item LSI
Large Scale Integration
@item LSI
Latent Semantic Indexing
@item LSL
Link Support Layer (ODI)
@item LSM
Linux Security Modules (Linux)
@item LSM
Linux Software Map (Linux)
@item LSN
Logical Sector Numbers (OS-9)
@item LSO
Linux Standards Organization (org., Linux)
@item LSP
Label Switched Path
@item LSP
Layered Service Provider (MS, Windows, TCP, UDP, NetBIOS)
@item LSPP
Labeled Security Protection Profile (CC, SELinux)
@item LSR
Leaf Setup Request
@item LST
Linux Support Team [distribution] (Linux)
@item LSU
LAN Service Unit (LAN)
@item LSU
Load/Store Unit (Power4, IBM, CPU)
@item LT
Lagrande Technology (Intel, Pentium, CPU)
@item LT
Line Termination (ADSL)
@item LT
Logical Terminal (IBM)
@item LT
Lower Tester (ISO 9646-1)
@item LTC
Line Termination Coordinator
@item LTC
Linux Technology Center (Linux, Unix, IBM)
@item LTC
Longitudinal Time Code (video)
@item LTE
Line Terminating Equipment (SONET)
@item LTERM
Logical TERMinal (IBM), "LTerm"
@item LTID
Logical Terminal IDentifier (IBM)
@item LTO
Linear Tape Open (Streamer, IBM, HP, Seagate)
@item LTPS
Low Temperature PolySilicon (LCD)
@item LTPSTFT
Low Temperature PolySilicon Thin Film Transistor (TFT, LCD)
@item LTSS
Lawrence TimeSharing System (OS, LLNL)
@item LU
Logical Unit (NAU)
@item LU62
Logical Unit 6.2 (IBM), "LU6.2"
@item LUA
Least-priviledged User Account [old term] (MS, Windows, Vista, UAP)
@item LUG
Local Users Group
@item LUN
Logical Unit Number (SCSI)
@item LUNA
Leuchtendatei fuer UnfallfluchtNAchforschungen (INPOL)
@item LUNI
LANE User Network Interface (LANE, ATM)
@item LUP
Language UPgrade (MS)
@item LUT
Look-Up Table (RAMDAC, FPGA, RL)
@item LV
Logical Volume (LVM)
@item LV
Low Voltage
@item LVD
Low Voltage Differential [technology] (SCSI, Symbois Logic)
@item LVDS
Low Voltage Differential Signal (TI, NSC)
@item LVE
Live Video Extension (video)
@item LVM
Logical Volume Manager (AIX, HP/UX, OSF/1, HDD)
@item LVN
LandesVerwaltungsNetz (Baden-Wuerttemberg)
@item LVS
Layout Versus Schematic [check] (DRC, IC)
@item LVTTL
Low Voltage Transistor Transistor Level (IC)
@item LW
Living Worlds (VRML)
@item LWC
Last Working Configuration (ESCD, PNP, BIOS)
@item LWE
LinuxWorld Conference & Expo (Linux, Europe)
@item LWL
LichtWellenLeiter (cable)
@item LWP
Library for WWW in PERL (PERL, WWW)
@item LWP
Light Weight Process (Sun, OS)
@item LX
Linear eXecutable (OS/2)
@item LZS
Lempel-Ziv-Stac [compression]
@item LZSDCP
[PPP] Lempel-Ziv-Stac - Data Compression Protocol (PPP, RFC 1967), "LZS-DCP"
@item LZW
Lempel-Ziv-Welch [compression]
@end table