forked from streetsidesoftware/cspell-dicts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.txt
7081 lines (7081 loc) · 83.3 KB
/
go.txt
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
386
ADD
ADD_ASSIGN
AEAD
AF_APPLETALK
AF_CCITT
AF_CHAOS
AF_CNT
AF_COIP
AF_DATAKIT
AF_DECnet
AF_DLI
AF_E164
AF_ECMA
AF_HYLINK
AF_IEEE80211
AF_IMPLINK
AF_INET
AF_INET6
AF_IPX
AF_ISDN
AF_ISO
AF_LAT
AF_LINK
AF_LOCAL
AF_MAX
AF_NATM
AF_NDRV
AF_NETBIOS
AF_NS
AF_OSI
AF_PPP
AF_PUP
AF_RESERVED_36
AF_ROUTE
AF_SIP
AF_SNA
AF_SYSTEM
AF_UNIX
AF_UNSPEC
AL
AN
AND
AND_ASSIGN
AND_NOT
AND_NOT_ASSIGN
ANSIC
AOffset
ARM64_RELOC_ADDEND
ARM64_RELOC_BRANCH26
ARM64_RELOC_GOT_LOAD_PAGE21
ARM64_RELOC_GOT_LOAD_PAGEOFF12
ARM64_RELOC_PAGE21
ARM64_RELOC_PAGEOFF12
ARM64_RELOC_POINTER_TO_GOT
ARM64_RELOC_SUBTRACTOR
ARM64_RELOC_TLVP_LOAD_PAGE21
ARM64_RELOC_TLVP_LOAD_PAGEOFF12
ARM64_RELOC_UNSIGNED
ARM_MAGIC_TRAMP_NUMBER
ARM_RELOC_BR24
ARM_RELOC_HALF
ARM_RELOC_HALF_SECTDIFF
ARM_RELOC_LOCAL_SECTDIFF
ARM_RELOC_PAIR
ARM_RELOC_PB_LA_PTR
ARM_RELOC_SECTDIFF
ARM_RELOC_VANILLA
ARM_THUMB_32BIT_BRANCH
ARM_THUMB_RELOC_BR22
ARROW
ASCII_Hex_Digit
ASSIGN
Above
Abs
Acc
Accept
AcceptTCP
AcceptUnix
Access
AccessTime
Accuracy
Acos
Acosh
ActionNode
Add
AddASN1
AddASN1BigInt
AddASN1BitString
AddASN1Boolean
AddASN1Enum
AddASN1GeneralizedTime
AddASN1Int64
AddASN1NULL
AddASN1ObjectIdentifier
AddASN1OctetString
AddASN1Uint64
AddBytes
AddCert
AddCookie
AddDate
AddExtensionType
AddFile
AddFloat
AddFromString
AddHost
AddIP
AddInt32
AddInt64
AddLine
AddLineInfo
AddMethod
AddNetwork
AddParseTree
AddTypes
AddUint16
AddUint16LengthPrefixed
AddUint24
AddUint24LengthPrefixed
AddUint32
AddUint32LengthPrefixed
AddUint64
AddUint8
AddUint8LengthPrefixed
AddUintptr
AddValue
AddZone
Addr
AddrError
AddrType
Address
AddressList
AddressParser
AddressSize
Addressable
Addrs
Adjtime
AdjustStream
Adlam
After
AfterFunc
Ahom
Alert
AlgorithmIdentifier
Align
AlignRight
Alignof
AllDecls
AllErrors
AllMethods
AllocedBytesPerOp
AllocsPerOp
AllocsPerRun
AllowBinary
Alpha
Alpha16
Alpha16At
Alpha16Model
AlphaAt
AlphaModel
Anatolian_Hieroglyphs
And
AndNot
Anonymous
Append
AppendBool
AppendCertsFromPEM
AppendFloat
AppendFormat
AppendHuffmanString
AppendInt
AppendQuote
AppendQuoteRune
AppendQuoteRuneToASCII
AppendQuoteRuneToGraphic
AppendQuoteToASCII
AppendQuoteToGraphic
AppendReverse
AppendSlice
AppendString
AppendUint
April
Arabic
ArbitraryType
ArchChar
Arg
Args
Armenian
Array
ArrayOf
ArrayType
Asin
Asinh
AssertableTo
Assign
AssignComputeBounds
AssignDecimal
AssignStmt
Assignable
AssignableTo
At
Atan
Atan2
Atanh
Atoi
Attr
AttrAbstractOrigin
AttrAccessibility
AttrAddrClass
AttrAllocated
AttrArtificial
AttrAssociated
AttrBaseTypes
AttrBitOffset
AttrBitSize
AttrByteSize
AttrCallColumn
AttrCallFile
AttrCallLine
AttrCalling
AttrCommonRef
AttrCompDir
AttrConstValue
AttrContainingType
AttrCount
AttrDataLocation
AttrDataMemberLoc
AttrDeclColumn
AttrDeclFile
AttrDeclLine
AttrDeclaration
AttrDefaultValue
AttrDescription
AttrDiscr
AttrDiscrList
AttrDiscrValue
AttrEncoding
AttrEntrypc
AttrExtension
AttrExternal
AttrField
AttrFrameBase
AttrFriend
AttrHighpc
AttrIdentifierCase
AttrImport
AttrInline
AttrIsOptional
AttrLanguage
AttrLocation
AttrLowerBound
AttrLowpc
AttrMacroInfo
AttrName
AttrNamelistItem
AttrOrdering
AttrPriority
AttrProducer
AttrPrototyped
AttrRanges
AttrReturnAddr
AttrSegment
AttrSibling
AttrSpecification
AttrStartScope
AttrStaticLink
AttrStmtList
AttrStride
AttrStrideSize
AttrStringLength
AttrTrampoline
AttrType
AttrUpperBound
AttrUseLocation
AttrUseUTF8
AttrVarParam
AttrVirtuality
AttrVisibility
AttrVtableElemLoc
AttributeTypeAndValue
AttributeTypeAndValueSET
August
Auth
Available
Avestan
AwayFromZero
AzeriCase
B
B0
B110
B115200
B1200
B134
B14400
B150
B1800
B19200
B200
B230400
B2400
B28800
B300
B38400
B4800
B50
B57600
B600
B7200
B75
B76800
B9600
BEncoding
BIOCFLUSH
BIOCGBLEN
BIOCGDLT
BIOCGDLTLIST
BIOCGETIF
BIOCGHDRCMPLT
BIOCGRSIG
BIOCGRTIMEOUT
BIOCGSEESENT
BIOCGSTATS
BIOCIMMEDIATE
BIOCPROMISC
BIOCSBLEN
BIOCSDLT
BIOCSETF
BIOCSETIF
BIOCSHDRCMPLT
BIOCSRSIG
BIOCSRTIMEOUT
BIOCSSEESENT
BIOCVERSION
BIT_STRING
BLAKE2b_256
BLAKE2b_384
BLAKE2b_512
BLAKE2s_256
BN
BOOLEAN
BPF_A
BPF_ABS
BPF_ADD
BPF_ALIGNMENT
BPF_ALU
BPF_AND
BPF_B
BPF_DIV
BPF_H
BPF_IMM
BPF_IND
BPF_JA
BPF_JEQ
BPF_JGE
BPF_JGT
BPF_JMP
BPF_JSET
BPF_K
BPF_LD
BPF_LDX
BPF_LEN
BPF_LSH
BPF_MAJOR_VERSION
BPF_MAXBUFSIZE
BPF_MAXINSNS
BPF_MEM
BPF_MEMWORDS
BPF_MINBUFSIZE
BPF_MINOR_VERSION
BPF_MISC
BPF_MSH
BPF_MUL
BPF_NEG
BPF_OR
BPF_RELEASE
BPF_RET
BPF_RSH
BPF_ST
BPF_STX
BPF_SUB
BPF_TAX
BPF_TXA
BPF_W
BPF_X
BREAK
BRKINT
Back
Background
Bad
BadDecl
BadExpr
BadStmt
Balinese
Bamum
Base
BaseName
Basic
BasicAuth
BasicInfo
BasicKind
BasicLit
BasicType
Bassa_Vah
Batak
Before
Begin
BeginTx
Below
Benchmark
BenchmarkResult
Bengali
BestCompression
BestSpeed
Bhaiksuki
BidiRule
Bidi_Control
BigEndian
BinaryExpr
BinaryMarshaler
BinaryOp
BinaryUnmarshaler
Bind
Binomial
Bit
BitLen
BitString
Bits
Black
Block
BlockMode
BlockProfile
BlockProfileRecord
BlockSize
BlockStmt
Bool
BoolNode
BoolType
BoolVal
BoolVar
Bopomofo
BothDir
Boundary
BoundaryAfter
BoundaryBefore
Bounds
BpfBuflen
BpfDatalink
BpfHdr
BpfHeadercmpl
BpfInsn
BpfInterface
BpfJump
BpfProgram
BpfStat
BpfStats
BpfStmt
BpfTimeout
BpfVersion
Brahmi
Braille
BranchNode
BranchStmt
BreakWithError
Breakpoint
Broadcast
Buffer
BufferPool
Buffered
Buffers
Buginese
Buhid
BuildError
BuildNameToCertificate
Builder
BuilderContinuation
Builtin
Byte
ByteOrder
BytePtrFromString
ByteReader
ByteScanner
ByteSliceFromString
ByteWriter
Bytes
BytesOrPanic
C
CANotAuthorizedForExtKeyUsage
CANotAuthorizedForThisName
CASE
CCC
CFLUSH
CHAN
CHAR
CIDRMask
CLOCAL
CMYK
CMYKAt
CMYKModel
CMYKToRGB
COFFSymbol
COFFSymbolSize
COLON
COMMA
COMMENT
COMPRESS_HIOS
COMPRESS_HIPROC
COMPRESS_LOOS
COMPRESS_LOPROC
COMPRESS_ZLIB
CONST
CONTINUE
COffset
CPUProfile
CRAMMD5Auth
CREAD
CRTValue
CS
CS5
CS6
CS7
CS8
CSIZE
CSS
CSTART
CSTATUS
CSTOP
CSTOPB
CSUSP
CTL_MAXNAME
CTL_NET
Call
CallExpr
CallSlice
Caller
Callers
CallersFrames
CanAddr
CanBackquote
CanInterface
CanSet
CanTakeNewRequest
Canadian_Aboriginal
CancelFunc
CancelRequest
Canceled
Canon
CanonicalHeaderKey
CanonicalMIMEHeaderKey
Cap
CapNames
Carian
CaseClause
CaseRange
CaseRanges
Castagnoli
Categories
Caucasian_Albanian
Cbrt
Cc
Ceil
CertPool
Certificate
CertificateInvalidError
CertificateList
CertificateRequest
CertificateRequestInfo
Cf
Chain
ChainNode
Chakma
Cham
Chan
ChanDir
ChanOf
ChanType
ChangeTime
Char
CharData
CharType
Chdir
Chdr32
Chdr64
Check
CheckBpfVersion
CheckCRLSignature
CheckEqual
CheckEqualError
CheckError
CheckNamedValue
CheckSignature
CheckSignatureFrom
Checker
Checksum
ChecksumIEEE
Cherokee
Chflags
Child
Chksum
Chmod
Chown
Chroot
Chtimes
Cipher
Class
ClassAddress
ClassApplication
ClassBlock
ClassConstant
ClassContextSpecific
ClassExprLoc
ClassFlag
ClassLinePtr
ClassLocListPtr
ClassMacPtr
ClassNL
ClassPrivate
ClassRangeListPtr
ClassReference
ClassReferenceAlt
ClassReferenceSig
ClassString
ClassStringAlt
ClassUniversal
ClassUnknown
Classify
Clean
Clearenv
Client
ClientAuthType
ClientCodec
ClientConn
ClientHelloInfo
ClientSessionCache
ClientSessionState
ClientTrace
Clock
Clone
Close
CloseClientConnections
CloseConn
CloseIdleConnections
CloseNotifier
CloseNotify
CloseOnExec
CloseRead
CloseStream
CloseWithError
CloseWrite
Closer
Cmd
Cmdline
Cmp
CmpAbs
CmsgLen
CmsgSpace
Cmsghdr
Co
Color
ColorIndexAt
ColorModel
ColumnConverter
ColumnType
ColumnTypes
Columns
CombinedMult
CombinedOutput
CommClause
Command
CommandContext
CommandLine
CommandNode
Comment
CommentGroup
CommentMap
CommentedNode
Comments
Commit
Common
CommonType
Compact
Comparable
Compare
CompareAndSwapInt32
CompareAndSwapInt64
CompareAndSwapPointer
CompareAndSwapUint32
CompareAndSwapUint64
CompareAndSwapUintptr
Compile
CompilePOSIX
Compiler
Complete
Complex
Complex128
Complex64
ComplexType
CompositeLit
CompressionLevel
CompressionType
Compressor
ComputeChecksum
Con
Cond
Config
Conj
Conn
ConnBeginTx
ConnPrepareContext
ConnState
Connect
ConnectionState
Connector
Const
ConstantTimeByteEq
ConstantTimeCompare
ConstantTimeCopy
ConstantTimeEq
ConstantTimeLessOrEq
ConstantTimeSelect
ConstantTimeSum
ConstraintViolationError
Constructed
Consume
Contains
ContainsAny
ContainsRune
Context
ContextClientTrace
ContextSpecific
ContinueOnError
Continued
Control
Convert
ConvertValue
ConvertibleTo
Cookie
CookieJar
Cookies
Coptic
Copy
CopyBuffer
CopyBytes
CopyConditional
CopyList
CopyN
CopyPipe
CopyToken
Copysign
CoreDump
CorruptInputError
Cos
Cosh
Cot
Count
Cover
CoverBlock
CoverMode
Coverage
Cpu
Cpu386
CpuAmd64
CpuArm
CpuPpc
CpuPpc64
Create
CreateCRL
CreateCertificate
CreateCertificateRequest
CreateFormField
CreateFormFile
CreateHeader
CreatePart
Credential
Crit
CryptBlocks
Cs
Cuneiform
Current
Curve
CurveID
CurveP256
CurveP384
CurveP521
CurveParams
Cypriot
Cyrillic
DB
DBStats
DEC
DEFAULT
DEFER
DEFINE
DF_BIND_NOW
DF_ORIGIN
DF_STATIC_TLS
DF_SYMBOLIC
DF_TEXTREL
DLT_APPLE_IP_OVER_IEEE1394
DLT_ARCNET
DLT_ATM_CLIP
DLT_ATM_RFC1483
DLT_AX25
DLT_CHAOS
DLT_CHDLC
DLT_C_HDLC
DLT_EN10MB
DLT_EN3MB
DLT_FDDI
DLT_IEEE802
DLT_IEEE802_11
DLT_IEEE802_11_RADIO
DLT_IEEE802_11_RADIO_AVS
DLT_LINUX_SLL
DLT_LOOP
DLT_NULL
DLT_PFLOG
DLT_PFSYNC
DLT_PPP
DLT_PPP_BSDOS
DLT_PPP_SERIAL
DLT_PRONET
DLT_RAW
DLT_SLIP
DLT_SLIP_BSDOS
DNSConfigError
DNSDoneInfo
DNSError
DNSStartInfo
DSA
DSAWithSHA1
DSAWithSHA256
DT_BIND_NOW
DT_BLK
DT_CHR
DT_DEBUG
DT_DIR
DT_ENCODING
DT_FIFO
DT_FINI
DT_FINI_ARRAY
DT_FINI_ARRAYSZ
DT_FLAGS
DT_HASH
DT_HIOS
DT_HIPROC
DT_INIT
DT_INIT_ARRAY
DT_INIT_ARRAYSZ
DT_JMPREL
DT_LNK
DT_LOOS
DT_LOPROC
DT_NEEDED
DT_NULL
DT_PLTGOT
DT_PLTREL
DT_PLTRELSZ
DT_PREINIT_ARRAY
DT_PREINIT_ARRAYSZ
DT_REG
DT_REL
DT_RELA
DT_RELAENT
DT_RELASZ
DT_RELENT
DT_RELSZ
DT_RPATH
DT_RUNPATH
DT_SOCK
DT_SONAME
DT_STRSZ
DT_STRTAB
DT_SYMBOLIC
DT_SYMENT
DT_SYMTAB
DT_TEXTREL
DT_UNKNOWN
DT_VERNEED
DT_VERNEEDNUM
DT_VERSYM
DT_WHT
DWARF
Dash
Data
DataDirectory
DataErrReader
DataOffset
DataSize
DatabaseTypeName
Date
Day
Deadline
DeadlineExceeded
Debug
DebugData
December
DecimalSize
Decl
DeclStmt
DeclarationErrors
Decode
DecodeAll
DecodeConfig
DecodeElement
DecodeError
DecodeFull
DecodeHeader
DecodeLastRune
DecodeLastRuneInString
DecodeRune
DecodeRuneInString
DecodeString
DecodeValue
DecodedLen
Decoder
DecodingError
Decomposition
Decompressor
Decrypt
DecryptOAEP
DecryptPEMBlock
DecryptPKCS1v15
DecryptPKCS1v15SessionKey
Decrypter
DecrypterOpts
DeepEqual
DefPredeclaredTestFuncs
Default
DefaultAddr
DefaultClient
DefaultCompression
DefaultDebugPath
DefaultDirection
DefaultMask
DefaultMaxHeaderBytes
DefaultMaxIdleConnsPerHost
DefaultParameterConverter
DefaultQuality
DefaultRPCPath
DefaultRemoteAddr
DefaultResolver
DefaultServeMux
DefaultServer
DefaultTransport
DeferStmt
DefinedTemplates
Deflate
Defn
Del
Delete
Delim
Delims
Denom
Deprecated
Deseret
DetectContentType
DevMajor
DevMinor
DevNull
Devanagari
Diacritic
Dial
DialContext
DialHTTP
DialHTTPPath
DialIP
DialTCP
DialTimeout
DialUDP
DialUnix
DialWithDialer
Dialer
Digit
Dim
Dir
Direct
Direction
DirectionString
Directive
Dirent
DisallowUnknownFields
Discard
DiscardEmptyColumns
Display
DisposalBackground
DisposalNone
DisposalPrevious
Div
DivMod
Do
Done
DotDotDotType
DotNL
DotNode
DotReader
DotWriter
Double
Draw
DrawMask
Drawer