github-linguist 2.10.5 → 2.10.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/bin/linguist +1 -2
- data/lib/linguist.rb +1 -0
- data/lib/linguist/classifier.rb +1 -1
- data/lib/linguist/heuristics.rb +36 -0
- data/lib/linguist/language.rb +15 -1
- data/lib/linguist/languages.yml +10 -1
- data/lib/linguist/samples.json +1936 -361
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1fa9c8152766a4f57398c603e394844b48198850
|
4
|
+
data.tar.gz: f96b99de94475f299cceaab4bc9e3f08dba6d80d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 53ba483c79d162cb3053afdd3553160b02862e9b582b29dc56202157fa4b5b1c8d6a42651917e8599440042f6dc834790a19b12d2d8f36f9436bb174df6b11e7
|
7
|
+
data.tar.gz: 2be372b09e5ada13c4dee402bd68a722973e9a3bbccd41095d244e14a023e7c0265eb996de0770c6c2e9001df31f19c57861de488447985b641db7d7e8d6cfb6
|
data/bin/linguist
CHANGED
data/lib/linguist.rb
CHANGED
data/lib/linguist/classifier.rb
CHANGED
@@ -130,7 +130,7 @@ module Linguist
|
|
130
130
|
@verbosity ||= (ENV['LINGUIST_DEBUG'] || 0).to_i
|
131
131
|
end
|
132
132
|
|
133
|
-
def debug_dump_probabilities
|
133
|
+
def debug_dump_probabilities(tokens, language)
|
134
134
|
printf("%10s = %10.3f + %7.3f = %10.3f\n",
|
135
135
|
language, tokens_probability(tokens, language), language_probability(language), scores[language])
|
136
136
|
end
|
@@ -0,0 +1,36 @@
|
|
1
|
+
module Linguist
|
2
|
+
# A collection of simple heuristics that can be used to better analyze languages.
|
3
|
+
class Heuristics
|
4
|
+
ACTIVE = false
|
5
|
+
|
6
|
+
# Public: Given an array of String language names,
|
7
|
+
# apply heuristics against the given data and return an array
|
8
|
+
# of matching languages, or nil.
|
9
|
+
#
|
10
|
+
# data - Array of tokens or String data to analyze.
|
11
|
+
# languages - Array of language name Strings to restrict to.
|
12
|
+
#
|
13
|
+
# Returns an array of Languages or []
|
14
|
+
def self.find_by_heuristics(data, languages)
|
15
|
+
if active?
|
16
|
+
if languages.all? { |l| ["Objective-C", "C++"].include?(l) }
|
17
|
+
disambiguate_h(data, languages)
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
# .h extensions are ambigious between C, C++, and Objective-C.
|
23
|
+
# We want to shortcut look for Objective-C.
|
24
|
+
#
|
25
|
+
# Returns an array of Languages or []
|
26
|
+
def self.disambiguate_h(data, languages)
|
27
|
+
matches = []
|
28
|
+
matches << Language["Objective-C"] if data.include?("@interface")
|
29
|
+
matches
|
30
|
+
end
|
31
|
+
|
32
|
+
def self.active?
|
33
|
+
!!ACTIVE
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
data/lib/linguist/language.rb
CHANGED
@@ -7,6 +7,7 @@ rescue LoadError
|
|
7
7
|
end
|
8
8
|
|
9
9
|
require 'linguist/classifier'
|
10
|
+
require 'linguist/heuristics'
|
10
11
|
require 'linguist/samples'
|
11
12
|
|
12
13
|
module Linguist
|
@@ -113,19 +114,32 @@ module Linguist
|
|
113
114
|
name += ".script!"
|
114
115
|
end
|
115
116
|
|
117
|
+
# First try to find languages that match based on filename.
|
116
118
|
possible_languages = find_by_filename(name)
|
117
119
|
|
120
|
+
# If there is more than one possible language with that extension (or no
|
121
|
+
# extension at all, in the case of extensionless scripts), we need to continue
|
122
|
+
# our detection work
|
118
123
|
if possible_languages.length > 1
|
119
124
|
data = data.call() if data.respond_to?(:call)
|
125
|
+
possible_language_names = possible_languages.map(&:name)
|
120
126
|
|
127
|
+
# Don't bother with emptiness
|
121
128
|
if data.nil? || data == ""
|
122
129
|
nil
|
130
|
+
# Check if there's a shebang line and use that as authoritative
|
123
131
|
elsif (result = find_by_shebang(data)) && !result.empty?
|
124
132
|
result.first
|
125
|
-
|
133
|
+
# No shebang. Still more work to do. Try to find it with our heuristics.
|
134
|
+
elsif (determined = Heuristics.find_by_heuristics(data, possible_language_names)) && !determined.empty?
|
135
|
+
determined.first
|
136
|
+
# Lastly, fall back to the probablistic classifier.
|
137
|
+
elsif classified = Classifier.classify(Samples::DATA, data, possible_language_names ).first
|
138
|
+
# Return the actual Language object based of the string language name (i.e., first element of `#classify`)
|
126
139
|
Language[classified[0]]
|
127
140
|
end
|
128
141
|
else
|
142
|
+
# Simplest and most common case, we can just return the one match based on extension
|
129
143
|
possible_languages.first
|
130
144
|
end
|
131
145
|
end
|
data/lib/linguist/languages.yml
CHANGED
@@ -90,6 +90,8 @@ AppleScript:
|
|
90
90
|
aliases:
|
91
91
|
- osascript
|
92
92
|
primary_extension: .applescript
|
93
|
+
extensions:
|
94
|
+
- .scpt
|
93
95
|
|
94
96
|
Arc:
|
95
97
|
type: programming
|
@@ -785,6 +787,11 @@ JSON:
|
|
785
787
|
- .jshintrc
|
786
788
|
- composer.lock
|
787
789
|
|
790
|
+
JSON5:
|
791
|
+
type: data
|
792
|
+
lexer: JavaScript
|
793
|
+
primary_extension: .json5
|
794
|
+
|
788
795
|
Jade:
|
789
796
|
group: HTML
|
790
797
|
type: markup
|
@@ -1289,6 +1296,8 @@ Python:
|
|
1289
1296
|
- .xpy
|
1290
1297
|
filenames:
|
1291
1298
|
- wscript
|
1299
|
+
- SConstruct
|
1300
|
+
- SConscript
|
1292
1301
|
interpreters:
|
1293
1302
|
- python
|
1294
1303
|
|
@@ -1340,7 +1349,7 @@ RHTML:
|
|
1340
1349
|
primary_extension: .rhtml
|
1341
1350
|
|
1342
1351
|
RMarkdown:
|
1343
|
-
type:
|
1352
|
+
type: prose
|
1344
1353
|
lexer: Text only
|
1345
1354
|
wrap: true
|
1346
1355
|
ace_mode: markdown
|
data/lib/linguist/samples.json
CHANGED
@@ -163,6 +163,9 @@
|
|
163
163
|
".json",
|
164
164
|
".lock"
|
165
165
|
],
|
166
|
+
"JSON5": [
|
167
|
+
".json5"
|
168
|
+
],
|
166
169
|
"Julia": [
|
167
170
|
".jl"
|
168
171
|
],
|
@@ -270,8 +273,7 @@
|
|
270
273
|
".org"
|
271
274
|
],
|
272
275
|
"Oxygene": [
|
273
|
-
".oxygene"
|
274
|
-
".pas"
|
276
|
+
".oxygene"
|
275
277
|
],
|
276
278
|
"Parrot Assembly": [
|
277
279
|
".pasm"
|
@@ -333,6 +335,9 @@
|
|
333
335
|
"Rebol": [
|
334
336
|
".r"
|
335
337
|
],
|
338
|
+
"RMarkdown": [
|
339
|
+
".rmd"
|
340
|
+
],
|
336
341
|
"RobotFramework": [
|
337
342
|
".robot"
|
338
343
|
],
|
@@ -506,8 +511,8 @@
|
|
506
511
|
".gemrc"
|
507
512
|
]
|
508
513
|
},
|
509
|
-
"tokens_total":
|
510
|
-
"languages_total":
|
514
|
+
"tokens_total": 436395,
|
515
|
+
"languages_total": 507,
|
511
516
|
"tokens": {
|
512
517
|
"ABAP": {
|
513
518
|
"*/**": 1,
|
@@ -8555,52 +8560,1652 @@
|
|
8555
8560
|
"yajl_free_error": 1
|
8556
8561
|
},
|
8557
8562
|
"C++": {
|
8558
|
-
"class":
|
8563
|
+
"class": 40,
|
8559
8564
|
"Bar": 2,
|
8560
|
-
"{":
|
8565
|
+
"{": 580,
|
8561
8566
|
"protected": 4,
|
8562
|
-
"char":
|
8567
|
+
"char": 127,
|
8563
8568
|
"*name": 6,
|
8564
|
-
";":
|
8565
|
-
"public":
|
8566
|
-
"void":
|
8569
|
+
";": 2471,
|
8570
|
+
"public": 33,
|
8571
|
+
"void": 225,
|
8567
8572
|
"hello": 2,
|
8568
|
-
"(":
|
8569
|
-
")":
|
8570
|
-
"}":
|
8571
|
-
"
|
8573
|
+
"(": 2729,
|
8574
|
+
")": 2731,
|
8575
|
+
"}": 580,
|
8576
|
+
"//": 278,
|
8577
|
+
"///": 843,
|
8578
|
+
"mainpage": 1,
|
8579
|
+
"C": 6,
|
8580
|
+
"library": 14,
|
8581
|
+
"for": 98,
|
8582
|
+
"Broadcom": 3,
|
8583
|
+
"BCM": 14,
|
8584
|
+
"as": 28,
|
8585
|
+
"used": 17,
|
8586
|
+
"in": 165,
|
8587
|
+
"Raspberry": 6,
|
8588
|
+
"Pi": 5,
|
8589
|
+
"This": 18,
|
8590
|
+
"is": 100,
|
8591
|
+
"a": 156,
|
8592
|
+
"RPi": 17,
|
8593
|
+
".": 16,
|
8594
|
+
"It": 7,
|
8595
|
+
"provides": 3,
|
8596
|
+
"access": 17,
|
8597
|
+
"to": 253,
|
8598
|
+
"GPIO": 87,
|
8599
|
+
"and": 118,
|
8600
|
+
"other": 17,
|
8601
|
+
"IO": 2,
|
8602
|
+
"functions": 19,
|
8603
|
+
"on": 55,
|
8604
|
+
"the": 537,
|
8605
|
+
"chip": 9,
|
8606
|
+
"allowing": 3,
|
8607
|
+
"pins": 40,
|
8608
|
+
"pin": 90,
|
8609
|
+
"IDE": 4,
|
8610
|
+
"plug": 3,
|
8611
|
+
"board": 2,
|
8612
|
+
"so": 2,
|
8613
|
+
"you": 29,
|
8614
|
+
"can": 21,
|
8615
|
+
"control": 17,
|
8616
|
+
"interface": 9,
|
8617
|
+
"with": 32,
|
8618
|
+
"various": 4,
|
8619
|
+
"external": 3,
|
8620
|
+
"devices.": 1,
|
8621
|
+
"reading": 3,
|
8622
|
+
"digital": 2,
|
8623
|
+
"inputs": 2,
|
8624
|
+
"setting": 2,
|
8625
|
+
"outputs": 1,
|
8626
|
+
"using": 11,
|
8627
|
+
"SPI": 44,
|
8628
|
+
"I2C": 29,
|
8629
|
+
"accessing": 2,
|
8630
|
+
"system": 9,
|
8631
|
+
"timers.": 1,
|
8632
|
+
"Pin": 65,
|
8633
|
+
"event": 3,
|
8634
|
+
"detection": 2,
|
8635
|
+
"supported": 3,
|
8636
|
+
"by": 53,
|
8637
|
+
"polling": 1,
|
8638
|
+
"interrupts": 1,
|
8639
|
+
"are": 36,
|
8640
|
+
"not": 26,
|
8641
|
+
"+": 60,
|
8642
|
+
"compatible": 1,
|
8643
|
+
"installs": 1,
|
8644
|
+
"header": 7,
|
8645
|
+
"file": 31,
|
8646
|
+
"non": 2,
|
8647
|
+
"-": 349,
|
8648
|
+
"shared": 2,
|
8649
|
+
"any": 23,
|
8650
|
+
"Linux": 2,
|
8651
|
+
"based": 4,
|
8652
|
+
"distro": 1,
|
8653
|
+
"but": 5,
|
8654
|
+
"clearly": 1,
|
8655
|
+
"no": 7,
|
8656
|
+
"use": 34,
|
8657
|
+
"except": 2,
|
8658
|
+
"or": 44,
|
8659
|
+
"another": 1,
|
8660
|
+
"The": 50,
|
8661
|
+
"version": 38,
|
8662
|
+
"of": 211,
|
8663
|
+
"package": 1,
|
8664
|
+
"that": 33,
|
8665
|
+
"this": 52,
|
8666
|
+
"documentation": 3,
|
8667
|
+
"refers": 1,
|
8668
|
+
"be": 35,
|
8669
|
+
"downloaded": 1,
|
8670
|
+
"from": 91,
|
8671
|
+
"http": 11,
|
8672
|
+
"//www.airspayce.com/mikem/bcm2835/bcm2835": 1,
|
8673
|
+
"tar.gz": 1,
|
8674
|
+
"You": 9,
|
8675
|
+
"find": 2,
|
8676
|
+
"latest": 2,
|
8677
|
+
"at": 20,
|
8678
|
+
"//www.airspayce.com/mikem/bcm2835": 1,
|
8679
|
+
"Several": 1,
|
8680
|
+
"example": 3,
|
8681
|
+
"programs": 4,
|
8682
|
+
"provided.": 1,
|
8683
|
+
"Based": 1,
|
8684
|
+
"data": 26,
|
8685
|
+
"//elinux.org/RPi_Low": 1,
|
8686
|
+
"level_peripherals": 1,
|
8687
|
+
"//www.raspberrypi.org/wp": 1,
|
8688
|
+
"content/uploads/2012/02/BCM2835": 1,
|
8689
|
+
"ARM": 5,
|
8690
|
+
"Peripherals.pdf": 1,
|
8691
|
+
"//www.scribd.com/doc/101830961/GPIO": 2,
|
8692
|
+
"Pads": 3,
|
8693
|
+
"Control2": 2,
|
8694
|
+
"also": 3,
|
8695
|
+
"online": 1,
|
8696
|
+
"help": 1,
|
8697
|
+
"discussion": 1,
|
8698
|
+
"//groups.google.com/group/bcm2835": 1,
|
8699
|
+
"Please": 4,
|
8700
|
+
"group": 23,
|
8701
|
+
"all": 11,
|
8702
|
+
"questions": 1,
|
8703
|
+
"discussions": 1,
|
8704
|
+
"topic.": 1,
|
8705
|
+
"Do": 1,
|
8706
|
+
"contact": 1,
|
8707
|
+
"author": 3,
|
8708
|
+
"directly": 2,
|
8709
|
+
"unless": 1,
|
8710
|
+
"it": 19,
|
8711
|
+
"discuss": 1,
|
8712
|
+
"commercial": 1,
|
8713
|
+
"licensing.": 1,
|
8714
|
+
"Tested": 1,
|
8715
|
+
"debian6": 1,
|
8716
|
+
"wheezy": 3,
|
8717
|
+
"raspbian": 3,
|
8718
|
+
"Occidentalisv01": 2,
|
8719
|
+
"CAUTION": 1,
|
8720
|
+
"has": 29,
|
8721
|
+
"been": 14,
|
8722
|
+
"observed": 1,
|
8723
|
+
"when": 22,
|
8724
|
+
"detect": 3,
|
8725
|
+
"enables": 3,
|
8726
|
+
"such": 4,
|
8727
|
+
"bcm2835_gpio_len": 5,
|
8728
|
+
"pulled": 1,
|
8729
|
+
"LOW": 8,
|
8730
|
+
"cause": 1,
|
8731
|
+
"temporary": 1,
|
8732
|
+
"hangs": 1,
|
8733
|
+
"Occidentalisv01.": 1,
|
8734
|
+
"Reason": 1,
|
8735
|
+
"yet": 1,
|
8736
|
+
"determined": 1,
|
8737
|
+
"suspect": 1,
|
8738
|
+
"an": 23,
|
8739
|
+
"interrupt": 1,
|
8740
|
+
"handler": 1,
|
8741
|
+
"hitting": 1,
|
8742
|
+
"hard": 1,
|
8743
|
+
"loop": 2,
|
8744
|
+
"those": 3,
|
8745
|
+
"OSs.": 1,
|
8746
|
+
"If": 11,
|
8747
|
+
"must": 6,
|
8748
|
+
"friends": 2,
|
8749
|
+
"make": 6,
|
8750
|
+
"sure": 3,
|
8751
|
+
"disable": 2,
|
8752
|
+
"bcm2835_gpio_cler_len": 1,
|
8753
|
+
"after": 18,
|
8754
|
+
"use.": 1,
|
8755
|
+
"par": 9,
|
8756
|
+
"Installation": 1,
|
8757
|
+
"consists": 1,
|
8758
|
+
"single": 2,
|
8759
|
+
"which": 14,
|
8760
|
+
"will": 15,
|
8761
|
+
"installed": 1,
|
8762
|
+
"usual": 3,
|
8763
|
+
"places": 1,
|
8764
|
+
"install": 3,
|
8765
|
+
"code": 12,
|
8766
|
+
"#": 1,
|
8767
|
+
"download": 2,
|
8768
|
+
"say": 1,
|
8769
|
+
"bcm2835": 7,
|
8770
|
+
"xx.tar.gz": 2,
|
8771
|
+
"then": 15,
|
8772
|
+
"tar": 1,
|
8773
|
+
"zxvf": 1,
|
8774
|
+
"cd": 1,
|
8775
|
+
"xx": 2,
|
8776
|
+
"./configure": 1,
|
8777
|
+
"sudo": 2,
|
8778
|
+
"check": 3,
|
8779
|
+
"endcode": 2,
|
8780
|
+
"Physical": 21,
|
8781
|
+
"Addresses": 6,
|
8782
|
+
"bcm2835_peri_read": 3,
|
8783
|
+
"bcm2835_peri_write": 3,
|
8784
|
+
"bcm2835_peri_set_bits": 2,
|
8785
|
+
"low": 2,
|
8786
|
+
"level": 10,
|
8787
|
+
"peripheral": 14,
|
8788
|
+
"register": 17,
|
8789
|
+
"functions.": 4,
|
8790
|
+
"They": 1,
|
8791
|
+
"designed": 3,
|
8792
|
+
"physical": 4,
|
8793
|
+
"addresses": 4,
|
8794
|
+
"described": 1,
|
8795
|
+
"section": 6,
|
8796
|
+
"BCM2835": 2,
|
8797
|
+
"Peripherals": 1,
|
8798
|
+
"manual.": 1,
|
8799
|
+
"range": 3,
|
8800
|
+
"FFFFFF": 1,
|
8801
|
+
"peripherals.": 1,
|
8802
|
+
"bus": 4,
|
8803
|
+
"peripherals": 2,
|
8804
|
+
"set": 18,
|
8805
|
+
"up": 18,
|
8806
|
+
"map": 3,
|
8807
|
+
"onto": 1,
|
8808
|
+
"address": 13,
|
8809
|
+
"starting": 1,
|
8810
|
+
"E000000.": 1,
|
8811
|
+
"Thus": 1,
|
8812
|
+
"advertised": 1,
|
8813
|
+
"manual": 8,
|
8814
|
+
"Ennnnnn": 1,
|
8815
|
+
"available": 6,
|
8816
|
+
"nnnnnn.": 1,
|
8817
|
+
"base": 4,
|
8818
|
+
"registers": 12,
|
8819
|
+
"following": 2,
|
8820
|
+
"externals": 1,
|
8821
|
+
"bcm2835_gpio": 2,
|
8822
|
+
"bcm2835_pwm": 2,
|
8823
|
+
"bcm2835_clk": 2,
|
8824
|
+
"bcm2835_pads": 2,
|
8825
|
+
"bcm2835_spio0": 1,
|
8826
|
+
"bcm2835_st": 1,
|
8827
|
+
"bcm2835_bsc0": 1,
|
8828
|
+
"bcm2835_bsc1": 1,
|
8829
|
+
"Numbering": 1,
|
8830
|
+
"numbering": 1,
|
8831
|
+
"different": 5,
|
8832
|
+
"inconsistent": 1,
|
8833
|
+
"underlying": 4,
|
8834
|
+
"numbering.": 1,
|
8835
|
+
"//elinux.org/RPi_BCM2835_GPIOs": 1,
|
8836
|
+
"some": 4,
|
8837
|
+
"well": 1,
|
8838
|
+
"power": 1,
|
8839
|
+
"ground": 1,
|
8840
|
+
"pins.": 1,
|
8841
|
+
"Not": 4,
|
8842
|
+
"header.": 1,
|
8843
|
+
"Version": 40,
|
8844
|
+
"P5": 6,
|
8845
|
+
"connector": 1,
|
8846
|
+
"V": 2,
|
8847
|
+
"Gnd.": 1,
|
8848
|
+
"passed": 4,
|
8849
|
+
"number": 52,
|
8850
|
+
"_not_": 1,
|
8851
|
+
"number.": 1,
|
8852
|
+
"There": 1,
|
8853
|
+
"symbolic": 1,
|
8854
|
+
"definitions": 3,
|
8855
|
+
"each": 7,
|
8856
|
+
"should": 10,
|
8857
|
+
"convenience.": 1,
|
8858
|
+
"See": 7,
|
8859
|
+
"ref": 32,
|
8860
|
+
"RPiGPIOPin.": 22,
|
8861
|
+
"Pins": 2,
|
8862
|
+
"bcm2835_spi_*": 1,
|
8863
|
+
"allow": 5,
|
8864
|
+
"SPI0": 17,
|
8865
|
+
"send": 3,
|
8866
|
+
"received": 3,
|
8867
|
+
"Serial": 3,
|
8868
|
+
"Peripheral": 6,
|
8869
|
+
"Interface": 2,
|
8870
|
+
"For": 6,
|
8871
|
+
"more": 4,
|
8872
|
+
"information": 3,
|
8873
|
+
"about": 6,
|
8874
|
+
"see": 14,
|
8875
|
+
"//en.wikipedia.org/wiki/Serial_Peripheral_Interface_Bus": 1,
|
8876
|
+
"When": 12,
|
8877
|
+
"bcm2835_spi_begin": 3,
|
8878
|
+
"called": 13,
|
8879
|
+
"changes": 2,
|
8880
|
+
"bahaviour": 1,
|
8881
|
+
"their": 6,
|
8882
|
+
"default": 14,
|
8883
|
+
"behaviour": 1,
|
8884
|
+
"order": 14,
|
8885
|
+
"support": 4,
|
8886
|
+
"SPI.": 1,
|
8887
|
+
"While": 1,
|
8888
|
+
"able": 2,
|
8889
|
+
"state": 22,
|
8890
|
+
"through": 4,
|
8891
|
+
"bcm2835_spi_gpio_write": 1,
|
8892
|
+
"bcm2835_spi_end": 4,
|
8893
|
+
"revert": 1,
|
8894
|
+
"configured": 1,
|
8895
|
+
"controled": 1,
|
8896
|
+
"bcm2835_gpio_*": 1,
|
8897
|
+
"calls.": 1,
|
8898
|
+
"P1": 56,
|
8899
|
+
"MOSI": 8,
|
8900
|
+
"MISO": 6,
|
8901
|
+
"CLK": 6,
|
8902
|
+
"CE0": 5,
|
8903
|
+
"CE1": 6,
|
8904
|
+
"bcm2835_i2c_*": 2,
|
8905
|
+
"BSC": 10,
|
8906
|
+
"generically": 1,
|
8907
|
+
"referred": 1,
|
8908
|
+
"I": 4,
|
8909
|
+
"//en.wikipedia.org/wiki/I": 1,
|
8910
|
+
"%": 6,
|
8911
|
+
"C2": 1,
|
8912
|
+
"B2C": 1,
|
8913
|
+
"V2": 2,
|
8914
|
+
"SDA": 3,
|
8915
|
+
"SLC": 1,
|
8916
|
+
"Real": 1,
|
8917
|
+
"Time": 1,
|
8918
|
+
"performance": 2,
|
8919
|
+
"constraints": 2,
|
8920
|
+
"user": 3,
|
8921
|
+
"i.e.": 1,
|
8922
|
+
"they": 2,
|
8923
|
+
"run": 1,
|
8924
|
+
"Such": 1,
|
8925
|
+
"part": 1,
|
8926
|
+
"kernel": 4,
|
8927
|
+
"usually": 2,
|
8928
|
+
"subject": 1,
|
8929
|
+
"paging": 1,
|
8930
|
+
"swapping": 2,
|
8931
|
+
"while": 12,
|
8932
|
+
"does": 4,
|
8933
|
+
"things": 1,
|
8934
|
+
"besides": 1,
|
8935
|
+
"running": 1,
|
8936
|
+
"your": 12,
|
8937
|
+
"program.": 1,
|
8938
|
+
"means": 8,
|
8939
|
+
"expect": 2,
|
8940
|
+
"get": 5,
|
8941
|
+
"real": 4,
|
8942
|
+
"time": 10,
|
8943
|
+
"timing": 3,
|
8944
|
+
"programs.": 1,
|
8945
|
+
"In": 2,
|
8946
|
+
"particular": 1,
|
8947
|
+
"there": 4,
|
8948
|
+
"guarantee": 1,
|
8949
|
+
"bcm2835_delay": 5,
|
8950
|
+
"bcm2835_delayMicroseconds": 6,
|
8951
|
+
"return": 164,
|
8952
|
+
"exactly": 2,
|
8953
|
+
"requested.": 1,
|
8954
|
+
"fact": 2,
|
8955
|
+
"depending": 1,
|
8956
|
+
"activity": 1,
|
8957
|
+
"host": 1,
|
8958
|
+
"etc": 1,
|
8959
|
+
"might": 1,
|
8960
|
+
"significantly": 1,
|
8961
|
+
"longer": 1,
|
8962
|
+
"delay": 9,
|
8963
|
+
"times": 2,
|
8964
|
+
"than": 5,
|
8965
|
+
"one": 73,
|
8966
|
+
"asked": 1,
|
8967
|
+
"for.": 1,
|
8968
|
+
"So": 1,
|
8969
|
+
"please": 2,
|
8970
|
+
"dont": 1,
|
8971
|
+
"request.": 1,
|
8972
|
+
"Arjan": 2,
|
8973
|
+
"reports": 1,
|
8974
|
+
"prevent": 4,
|
8975
|
+
"fragment": 2,
|
8976
|
+
"struct": 12,
|
8977
|
+
"sched_param": 1,
|
8978
|
+
"sp": 4,
|
8979
|
+
"memset": 3,
|
8980
|
+
"&": 149,
|
8981
|
+
"sizeof": 15,
|
8982
|
+
"sp.sched_priority": 1,
|
8983
|
+
"sched_get_priority_max": 1,
|
8984
|
+
"SCHED_FIFO": 2,
|
8985
|
+
"sched_setscheduler": 1,
|
8986
|
+
"mlockall": 1,
|
8987
|
+
"MCL_CURRENT": 1,
|
8988
|
+
"|": 14,
|
8989
|
+
"MCL_FUTURE": 1,
|
8990
|
+
"Open": 2,
|
8991
|
+
"Source": 2,
|
8992
|
+
"Licensing": 2,
|
8993
|
+
"GPL": 2,
|
8994
|
+
"appropriate": 7,
|
8995
|
+
"option": 1,
|
8996
|
+
"if": 306,
|
8997
|
+
"want": 5,
|
8998
|
+
"share": 2,
|
8999
|
+
"source": 12,
|
9000
|
+
"application": 2,
|
9001
|
+
"everyone": 1,
|
9002
|
+
"distribute": 1,
|
9003
|
+
"give": 2,
|
9004
|
+
"them": 1,
|
9005
|
+
"right": 9,
|
9006
|
+
"who": 1,
|
9007
|
+
"uses": 4,
|
9008
|
+
"it.": 3,
|
9009
|
+
"wish": 2,
|
9010
|
+
"software": 1,
|
9011
|
+
"under": 2,
|
9012
|
+
"contribute": 1,
|
9013
|
+
"open": 6,
|
9014
|
+
"community": 1,
|
9015
|
+
"accordance": 1,
|
9016
|
+
"distributed.": 1,
|
9017
|
+
"//www.gnu.org/copyleft/gpl.html": 1,
|
9018
|
+
"COPYING": 1,
|
9019
|
+
"Acknowledgements": 1,
|
9020
|
+
"Some": 1,
|
9021
|
+
"inspired": 2,
|
9022
|
+
"Dom": 1,
|
9023
|
+
"Gert.": 1,
|
9024
|
+
"Alan": 1,
|
9025
|
+
"Barr.": 1,
|
9026
|
+
"Revision": 1,
|
9027
|
+
"History": 1,
|
9028
|
+
"Initial": 1,
|
9029
|
+
"release": 1,
|
9030
|
+
"Minor": 1,
|
9031
|
+
"bug": 1,
|
9032
|
+
"fixes": 1,
|
9033
|
+
"Added": 11,
|
9034
|
+
"bcm2835_spi_transfern": 3,
|
9035
|
+
"Fixed": 4,
|
9036
|
+
"problem": 2,
|
9037
|
+
"prevented": 1,
|
9038
|
+
"being": 4,
|
9039
|
+
"used.": 2,
|
9040
|
+
"Reported": 5,
|
9041
|
+
"David": 1,
|
9042
|
+
"Robinson.": 1,
|
9043
|
+
"bcm2835_close": 4,
|
9044
|
+
"deinit": 1,
|
9045
|
+
"library.": 3,
|
9046
|
+
"Suggested": 1,
|
9047
|
+
"sar": 1,
|
9048
|
+
"Ortiz": 1,
|
9049
|
+
"Document": 1,
|
9050
|
+
"testing": 1,
|
9051
|
+
"Functions": 1,
|
9052
|
+
"bcm2835_gpio_ren": 3,
|
9053
|
+
"bcm2835_gpio_fen": 3,
|
9054
|
+
"bcm2835_gpio_hen": 3,
|
9055
|
+
"bcm2835_gpio_aren": 3,
|
9056
|
+
"bcm2835_gpio_afen": 3,
|
9057
|
+
"now": 4,
|
9058
|
+
"only": 6,
|
9059
|
+
"specified.": 1,
|
9060
|
+
"Other": 1,
|
9061
|
+
"were": 1,
|
9062
|
+
"already": 1,
|
9063
|
+
"previously": 10,
|
9064
|
+
"enabled": 4,
|
9065
|
+
"stay": 1,
|
9066
|
+
"enabled.": 1,
|
9067
|
+
"bcm2835_gpio_clr_ren": 2,
|
9068
|
+
"bcm2835_gpio_clr_fen": 2,
|
9069
|
+
"bcm2835_gpio_clr_hen": 2,
|
9070
|
+
"bcm2835_gpio_clr_len": 2,
|
9071
|
+
"bcm2835_gpio_clr_aren": 2,
|
9072
|
+
"bcm2835_gpio_clr_afen": 2,
|
9073
|
+
"clear": 3,
|
9074
|
+
"enable": 3,
|
9075
|
+
"individual": 1,
|
9076
|
+
"suggested": 3,
|
9077
|
+
"Andreas": 1,
|
9078
|
+
"Sundstrom.": 1,
|
9079
|
+
"bcm2835_spi_transfernb": 2,
|
9080
|
+
"buffers": 3,
|
9081
|
+
"read": 21,
|
9082
|
+
"write.": 1,
|
9083
|
+
"Improvements": 3,
|
9084
|
+
"barrier": 3,
|
9085
|
+
"maddin.": 1,
|
9086
|
+
"contributed": 1,
|
9087
|
+
"mikew": 1,
|
9088
|
+
"noticed": 1,
|
9089
|
+
"was": 6,
|
9090
|
+
"mallocing": 1,
|
9091
|
+
"memory": 14,
|
9092
|
+
"mmaps": 1,
|
9093
|
+
"/dev/mem.": 1,
|
9094
|
+
"ve": 4,
|
9095
|
+
"removed": 1,
|
9096
|
+
"mallocs": 1,
|
9097
|
+
"frees": 1,
|
9098
|
+
"found": 1,
|
9099
|
+
"calling": 8,
|
9100
|
+
"nanosleep": 7,
|
9101
|
+
"takes": 1,
|
9102
|
+
"least": 2,
|
9103
|
+
"us.": 1,
|
9104
|
+
"need": 3,
|
9105
|
+
"link": 3,
|
9106
|
+
"version.": 1,
|
9107
|
+
"s": 18,
|
9108
|
+
"doc": 1,
|
9109
|
+
"Also": 1,
|
9110
|
+
"added": 2,
|
9111
|
+
"define": 2,
|
9112
|
+
"passwrd": 1,
|
9113
|
+
"value": 50,
|
9114
|
+
"Gert": 1,
|
9115
|
+
"says": 1,
|
9116
|
+
"needed": 3,
|
9117
|
+
"change": 3,
|
9118
|
+
"pad": 4,
|
9119
|
+
"settings.": 1,
|
9120
|
+
"Changed": 1,
|
9121
|
+
"names": 3,
|
9122
|
+
"collisions": 1,
|
9123
|
+
"wiringPi.": 1,
|
9124
|
+
"Macros": 2,
|
9125
|
+
"delayMicroseconds": 3,
|
9126
|
+
"disabled": 2,
|
9127
|
+
"defining": 1,
|
9128
|
+
"BCM2835_NO_DELAY_COMPATIBILITY": 2,
|
9129
|
+
"incorrect": 2,
|
9130
|
+
"New": 6,
|
9131
|
+
"mapping": 3,
|
9132
|
+
"Hardware": 1,
|
9133
|
+
"pointers": 2,
|
9134
|
+
"initialisation": 2,
|
9135
|
+
"externally": 1,
|
9136
|
+
"bcm2835_spi0.": 1,
|
9137
|
+
"Now": 4,
|
9138
|
+
"compiles": 1,
|
9139
|
+
"even": 2,
|
9140
|
+
"CLOCK_MONOTONIC_RAW": 1,
|
9141
|
+
"CLOCK_MONOTONIC": 1,
|
9142
|
+
"instead.": 1,
|
9143
|
+
"errors": 1,
|
9144
|
+
"divider": 15,
|
9145
|
+
"frequencies": 2,
|
9146
|
+
"MHz": 14,
|
9147
|
+
"clock.": 6,
|
9148
|
+
"Ben": 1,
|
9149
|
+
"Simpson.": 1,
|
9150
|
+
"end": 23,
|
9151
|
+
"examples": 1,
|
9152
|
+
"Mark": 5,
|
9153
|
+
"Wolfe.": 1,
|
9154
|
+
"bcm2835_gpio_set_multi": 2,
|
9155
|
+
"bcm2835_gpio_clr_multi": 2,
|
9156
|
+
"bcm2835_gpio_write_multi": 4,
|
9157
|
+
"mask": 20,
|
9158
|
+
"once.": 1,
|
9159
|
+
"Requested": 2,
|
9160
|
+
"Sebastian": 2,
|
9161
|
+
"Loncar.": 2,
|
9162
|
+
"bcm2835_gpio_write_mask.": 1,
|
9163
|
+
"Changes": 1,
|
9164
|
+
"timer": 2,
|
9165
|
+
"counter": 1,
|
9166
|
+
"instead": 1,
|
9167
|
+
"clock_gettime": 1,
|
9168
|
+
"improved": 1,
|
9169
|
+
"accuracy.": 1,
|
9170
|
+
"No": 2,
|
9171
|
+
"lrt": 1,
|
9172
|
+
"now.": 1,
|
9173
|
+
"Contributed": 1,
|
9174
|
+
"van": 1,
|
9175
|
+
"Vught.": 1,
|
9176
|
+
"Removed": 1,
|
9177
|
+
"inlines": 1,
|
9178
|
+
"previous": 6,
|
9179
|
+
"patch": 1,
|
9180
|
+
"since": 3,
|
9181
|
+
"don": 1,
|
9182
|
+
"t": 15,
|
9183
|
+
"seem": 1,
|
9184
|
+
"work": 1,
|
9185
|
+
"everywhere.": 1,
|
9186
|
+
"olly.": 1,
|
9187
|
+
"Patch": 2,
|
9188
|
+
"Dootson": 2,
|
9189
|
+
"close": 3,
|
9190
|
+
"/dev/mem": 4,
|
9191
|
+
"granted.": 1,
|
9192
|
+
"susceptible": 1,
|
9193
|
+
"bit": 19,
|
9194
|
+
"overruns.": 1,
|
9195
|
+
"courtesy": 1,
|
9196
|
+
"Jeremy": 1,
|
9197
|
+
"Mortis.": 1,
|
9198
|
+
"definition": 3,
|
9199
|
+
"BCM2835_GPFEN0": 2,
|
9200
|
+
"broke": 1,
|
9201
|
+
"ability": 1,
|
9202
|
+
"falling": 4,
|
9203
|
+
"edge": 8,
|
9204
|
+
"events.": 1,
|
9205
|
+
"Dootson.": 2,
|
9206
|
+
"bcm2835_i2c_set_baudrate": 2,
|
9207
|
+
"bcm2835_i2c_read_register_rs.": 1,
|
9208
|
+
"bcm2835_i2c_read": 4,
|
9209
|
+
"bcm2835_i2c_write": 4,
|
9210
|
+
"fix": 1,
|
9211
|
+
"ocasional": 1,
|
9212
|
+
"reads": 2,
|
9213
|
+
"completing.": 1,
|
9214
|
+
"Patched": 1,
|
9215
|
+
"p": 6,
|
9216
|
+
"[": 274,
|
9217
|
+
"atched": 1,
|
9218
|
+
"his": 1,
|
9219
|
+
"submitted": 1,
|
9220
|
+
"high": 1,
|
9221
|
+
"load": 1,
|
9222
|
+
"processes.": 1,
|
9223
|
+
"Updated": 1,
|
9224
|
+
"distribution": 1,
|
9225
|
+
"location": 6,
|
9226
|
+
"details": 1,
|
9227
|
+
"airspayce.com": 1,
|
9228
|
+
"missing": 1,
|
9229
|
+
"unmapmem": 1,
|
9230
|
+
"pads": 7,
|
9231
|
+
"leak.": 1,
|
9232
|
+
"Hartmut": 1,
|
9233
|
+
"Henkel.": 1,
|
9234
|
+
"Mike": 1,
|
9235
|
+
"McCauley": 1,
|
9236
|
+
"mikem@airspayce.com": 1,
|
9237
|
+
"DO": 1,
|
9238
|
+
"NOT": 3,
|
9239
|
+
"CONTACT": 1,
|
9240
|
+
"THE": 2,
|
9241
|
+
"AUTHOR": 1,
|
9242
|
+
"DIRECTLY": 1,
|
9243
|
+
"USE": 1,
|
9244
|
+
"LISTS": 1,
|
9245
|
+
"#ifndef": 27,
|
9246
|
+
"BCM2835_H": 3,
|
9247
|
+
"#define": 341,
|
9248
|
+
"#include": 120,
|
9249
|
+
"<stdint.h>": 2,
|
9250
|
+
"defgroup": 7,
|
9251
|
+
"constants": 1,
|
9252
|
+
"Constants": 1,
|
9253
|
+
"passing": 1,
|
9254
|
+
"values": 3,
|
9255
|
+
"here": 1,
|
9256
|
+
"@": 14,
|
9257
|
+
"HIGH": 12,
|
9258
|
+
"true": 41,
|
9259
|
+
"volts": 2,
|
9260
|
+
"pin.": 21,
|
9261
|
+
"false": 45,
|
9262
|
+
"Speed": 1,
|
9263
|
+
"core": 1,
|
9264
|
+
"clock": 21,
|
9265
|
+
"core_clk": 1,
|
9266
|
+
"BCM2835_CORE_CLK_HZ": 1,
|
9267
|
+
"<": 247,
|
9268
|
+
"Base": 17,
|
9269
|
+
"Address": 10,
|
9270
|
+
"BCM2835_PERI_BASE": 9,
|
9271
|
+
"System": 10,
|
9272
|
+
"Timer": 9,
|
9273
|
+
"BCM2835_ST_BASE": 1,
|
9274
|
+
"BCM2835_GPIO_PADS": 2,
|
9275
|
+
"Clock/timer": 1,
|
9276
|
+
"BCM2835_CLOCK_BASE": 1,
|
9277
|
+
"BCM2835_GPIO_BASE": 6,
|
9278
|
+
"BCM2835_SPI0_BASE": 1,
|
9279
|
+
"BSC0": 2,
|
9280
|
+
"BCM2835_BSC0_BASE": 1,
|
9281
|
+
"PWM": 2,
|
9282
|
+
"BCM2835_GPIO_PWM": 1,
|
9283
|
+
"C000": 1,
|
9284
|
+
"BSC1": 2,
|
9285
|
+
"BCM2835_BSC1_BASE": 1,
|
9286
|
+
"ST": 1,
|
9287
|
+
"registers.": 10,
|
9288
|
+
"Available": 8,
|
9289
|
+
"bcm2835_init": 11,
|
9290
|
+
"extern": 72,
|
9291
|
+
"volatile": 13,
|
9292
|
+
"uint32_t": 37,
|
9293
|
+
"*bcm2835_st": 1,
|
9294
|
+
"*bcm2835_gpio": 1,
|
9295
|
+
"*bcm2835_pwm": 1,
|
9296
|
+
"*bcm2835_clk": 1,
|
9297
|
+
"PADS": 1,
|
9298
|
+
"*bcm2835_pads": 1,
|
9299
|
+
"*bcm2835_spi0": 1,
|
9300
|
+
"*bcm2835_bsc0": 1,
|
9301
|
+
"*bcm2835_bsc1": 1,
|
9302
|
+
"Size": 2,
|
9303
|
+
"page": 5,
|
9304
|
+
"BCM2835_PAGE_SIZE": 1,
|
9305
|
+
"*1024": 2,
|
9306
|
+
"block": 4,
|
9307
|
+
"BCM2835_BLOCK_SIZE": 1,
|
9308
|
+
"offsets": 2,
|
9309
|
+
"BCM2835_GPIO_BASE.": 1,
|
9310
|
+
"Offsets": 1,
|
9311
|
+
"into": 6,
|
9312
|
+
"bytes": 29,
|
9313
|
+
"per": 3,
|
9314
|
+
"Register": 1,
|
9315
|
+
"View": 1,
|
9316
|
+
"BCM2835_GPFSEL0": 1,
|
9317
|
+
"Function": 8,
|
9318
|
+
"Select": 49,
|
9319
|
+
"BCM2835_GPFSEL1": 1,
|
9320
|
+
"BCM2835_GPFSEL2": 1,
|
9321
|
+
"BCM2835_GPFSEL3": 1,
|
9322
|
+
"c": 62,
|
9323
|
+
"BCM2835_GPFSEL4": 1,
|
9324
|
+
"BCM2835_GPFSEL5": 1,
|
9325
|
+
"BCM2835_GPSET0": 1,
|
9326
|
+
"Output": 6,
|
9327
|
+
"Set": 2,
|
9328
|
+
"BCM2835_GPSET1": 1,
|
9329
|
+
"BCM2835_GPCLR0": 1,
|
9330
|
+
"Clear": 18,
|
9331
|
+
"BCM2835_GPCLR1": 1,
|
9332
|
+
"BCM2835_GPLEV0": 1,
|
9333
|
+
"Level": 2,
|
9334
|
+
"BCM2835_GPLEV1": 1,
|
9335
|
+
"BCM2835_GPEDS0": 1,
|
9336
|
+
"Event": 11,
|
9337
|
+
"Detect": 35,
|
9338
|
+
"Status": 6,
|
9339
|
+
"BCM2835_GPEDS1": 1,
|
9340
|
+
"BCM2835_GPREN0": 1,
|
9341
|
+
"Rising": 8,
|
9342
|
+
"Edge": 16,
|
9343
|
+
"Enable": 38,
|
9344
|
+
"BCM2835_GPREN1": 1,
|
9345
|
+
"Falling": 8,
|
9346
|
+
"BCM2835_GPFEN1": 1,
|
9347
|
+
"BCM2835_GPHEN0": 1,
|
9348
|
+
"High": 4,
|
9349
|
+
"BCM2835_GPHEN1": 1,
|
9350
|
+
"BCM2835_GPLEN0": 1,
|
9351
|
+
"Low": 5,
|
9352
|
+
"BCM2835_GPLEN1": 1,
|
9353
|
+
"BCM2835_GPAREN0": 1,
|
9354
|
+
"Async.": 4,
|
9355
|
+
"BCM2835_GPAREN1": 1,
|
9356
|
+
"BCM2835_GPAFEN0": 1,
|
9357
|
+
"BCM2835_GPAFEN1": 1,
|
9358
|
+
"BCM2835_GPPUD": 1,
|
9359
|
+
"Pull": 11,
|
9360
|
+
"up/down": 10,
|
9361
|
+
"BCM2835_GPPUDCLK0": 1,
|
9362
|
+
"Clock": 11,
|
9363
|
+
"BCM2835_GPPUDCLK1": 1,
|
9364
|
+
"brief": 12,
|
9365
|
+
"bcm2835PortFunction": 1,
|
9366
|
+
"Port": 1,
|
9367
|
+
"function": 18,
|
9368
|
+
"select": 9,
|
9369
|
+
"modes": 1,
|
9370
|
+
"bcm2835_gpio_fsel": 2,
|
9371
|
+
"typedef": 50,
|
9372
|
+
"enum": 17,
|
9373
|
+
"BCM2835_GPIO_FSEL_INPT": 1,
|
9374
|
+
"b000": 1,
|
9375
|
+
"Input": 2,
|
9376
|
+
"BCM2835_GPIO_FSEL_OUTP": 1,
|
9377
|
+
"b001": 1,
|
9378
|
+
"BCM2835_GPIO_FSEL_ALT0": 1,
|
9379
|
+
"b100": 1,
|
9380
|
+
"Alternate": 6,
|
9381
|
+
"BCM2835_GPIO_FSEL_ALT1": 1,
|
9382
|
+
"b101": 1,
|
9383
|
+
"BCM2835_GPIO_FSEL_ALT2": 1,
|
9384
|
+
"b110": 1,
|
9385
|
+
"BCM2835_GPIO_FSEL_ALT3": 1,
|
9386
|
+
"b111": 2,
|
9387
|
+
"BCM2835_GPIO_FSEL_ALT4": 1,
|
9388
|
+
"b011": 1,
|
9389
|
+
"BCM2835_GPIO_FSEL_ALT5": 1,
|
9390
|
+
"b010": 1,
|
9391
|
+
"BCM2835_GPIO_FSEL_MASK": 1,
|
9392
|
+
"bits": 11,
|
9393
|
+
"bcm2835FunctionSelect": 2,
|
9394
|
+
"bcm2835PUDControl": 4,
|
9395
|
+
"Pullup/Pulldown": 1,
|
9396
|
+
"defines": 3,
|
9397
|
+
"bcm2835_gpio_pud": 5,
|
9398
|
+
"BCM2835_GPIO_PUD_OFF": 1,
|
9399
|
+
"b00": 1,
|
9400
|
+
"Off": 3,
|
9401
|
+
"pull": 1,
|
9402
|
+
"BCM2835_GPIO_PUD_DOWN": 1,
|
9403
|
+
"b01": 1,
|
9404
|
+
"Down": 1,
|
9405
|
+
"BCM2835_GPIO_PUD_UP": 1,
|
9406
|
+
"b10": 1,
|
9407
|
+
"Up": 1,
|
9408
|
+
"Pad": 11,
|
9409
|
+
"BCM2835_PADS_GPIO_0_27": 1,
|
9410
|
+
"BCM2835_PADS_GPIO_28_45": 1,
|
9411
|
+
"BCM2835_PADS_GPIO_46_53": 1,
|
9412
|
+
"Control": 6,
|
9413
|
+
"masks": 1,
|
9414
|
+
"BCM2835_PAD_PASSWRD": 1,
|
9415
|
+
"A": 7,
|
9416
|
+
"<<": 29,
|
9417
|
+
"Password": 1,
|
9418
|
+
"BCM2835_PAD_SLEW_RATE_UNLIMITED": 1,
|
9419
|
+
"Slew": 1,
|
9420
|
+
"rate": 3,
|
9421
|
+
"unlimited": 1,
|
9422
|
+
"BCM2835_PAD_HYSTERESIS_ENABLED": 1,
|
9423
|
+
"Hysteresis": 1,
|
9424
|
+
"BCM2835_PAD_DRIVE_2mA": 1,
|
9425
|
+
"mA": 8,
|
9426
|
+
"drive": 8,
|
9427
|
+
"current": 26,
|
9428
|
+
"BCM2835_PAD_DRIVE_4mA": 1,
|
9429
|
+
"BCM2835_PAD_DRIVE_6mA": 1,
|
9430
|
+
"BCM2835_PAD_DRIVE_8mA": 1,
|
9431
|
+
"BCM2835_PAD_DRIVE_10mA": 1,
|
9432
|
+
"BCM2835_PAD_DRIVE_12mA": 1,
|
9433
|
+
"BCM2835_PAD_DRIVE_14mA": 1,
|
9434
|
+
"BCM2835_PAD_DRIVE_16mA": 1,
|
9435
|
+
"bcm2835PadGroup": 4,
|
9436
|
+
"specification": 1,
|
9437
|
+
"bcm2835_gpio_pad": 2,
|
9438
|
+
"BCM2835_PAD_GROUP_GPIO_0_27": 1,
|
9439
|
+
"BCM2835_PAD_GROUP_GPIO_28_45": 1,
|
9440
|
+
"BCM2835_PAD_GROUP_GPIO_46_53": 1,
|
9441
|
+
"Numbers": 1,
|
9442
|
+
"Here": 1,
|
9443
|
+
"we": 4,
|
9444
|
+
"terms": 4,
|
9445
|
+
"numbers.": 1,
|
9446
|
+
"These": 6,
|
9447
|
+
"requiring": 1,
|
9448
|
+
"bin": 1,
|
9449
|
+
"connected": 1,
|
9450
|
+
"adopt": 1,
|
9451
|
+
"alternate": 7,
|
9452
|
+
"function.": 3,
|
9453
|
+
"slightly": 1,
|
9454
|
+
"pinouts": 1,
|
9455
|
+
"these": 1,
|
9456
|
+
"RPI_V2_*.": 1,
|
9457
|
+
"At": 1,
|
9458
|
+
"bootup": 1,
|
9459
|
+
"UART0_TXD": 3,
|
9460
|
+
"UART0_RXD": 3,
|
9461
|
+
"ie": 3,
|
9462
|
+
"alt0": 1,
|
9463
|
+
"respectively": 1,
|
9464
|
+
"dedicated": 1,
|
9465
|
+
"cant": 1,
|
9466
|
+
"controlled": 1,
|
9467
|
+
"independently": 1,
|
9468
|
+
"RPI_GPIO_P1_03": 6,
|
9469
|
+
"RPI_GPIO_P1_05": 6,
|
9470
|
+
"RPI_GPIO_P1_07": 1,
|
9471
|
+
"RPI_GPIO_P1_08": 1,
|
9472
|
+
"defaults": 4,
|
9473
|
+
"alt": 4,
|
9474
|
+
"RPI_GPIO_P1_10": 1,
|
9475
|
+
"RPI_GPIO_P1_11": 1,
|
9476
|
+
"RPI_GPIO_P1_12": 1,
|
9477
|
+
"RPI_GPIO_P1_13": 1,
|
9478
|
+
"RPI_GPIO_P1_15": 1,
|
9479
|
+
"RPI_GPIO_P1_16": 1,
|
9480
|
+
"RPI_GPIO_P1_18": 1,
|
9481
|
+
"RPI_GPIO_P1_19": 1,
|
9482
|
+
"RPI_GPIO_P1_21": 1,
|
9483
|
+
"RPI_GPIO_P1_22": 1,
|
9484
|
+
"RPI_GPIO_P1_23": 1,
|
9485
|
+
"RPI_GPIO_P1_24": 1,
|
9486
|
+
"RPI_GPIO_P1_26": 1,
|
9487
|
+
"RPI_V2_GPIO_P1_03": 1,
|
9488
|
+
"RPI_V2_GPIO_P1_05": 1,
|
9489
|
+
"RPI_V2_GPIO_P1_07": 1,
|
9490
|
+
"RPI_V2_GPIO_P1_08": 1,
|
9491
|
+
"RPI_V2_GPIO_P1_10": 1,
|
9492
|
+
"RPI_V2_GPIO_P1_11": 1,
|
9493
|
+
"RPI_V2_GPIO_P1_12": 1,
|
9494
|
+
"RPI_V2_GPIO_P1_13": 1,
|
9495
|
+
"RPI_V2_GPIO_P1_15": 1,
|
9496
|
+
"RPI_V2_GPIO_P1_16": 1,
|
9497
|
+
"RPI_V2_GPIO_P1_18": 1,
|
9498
|
+
"RPI_V2_GPIO_P1_19": 1,
|
9499
|
+
"RPI_V2_GPIO_P1_21": 1,
|
9500
|
+
"RPI_V2_GPIO_P1_22": 1,
|
9501
|
+
"RPI_V2_GPIO_P1_23": 1,
|
9502
|
+
"RPI_V2_GPIO_P1_24": 1,
|
9503
|
+
"RPI_V2_GPIO_P1_26": 1,
|
9504
|
+
"RPI_V2_GPIO_P5_03": 1,
|
9505
|
+
"RPI_V2_GPIO_P5_04": 1,
|
9506
|
+
"RPI_V2_GPIO_P5_05": 1,
|
9507
|
+
"RPI_V2_GPIO_P5_06": 1,
|
9508
|
+
"RPiGPIOPin": 1,
|
9509
|
+
"BCM2835_SPI0_CS": 1,
|
9510
|
+
"Master": 12,
|
9511
|
+
"BCM2835_SPI0_FIFO": 1,
|
9512
|
+
"TX": 5,
|
9513
|
+
"RX": 7,
|
9514
|
+
"FIFOs": 1,
|
9515
|
+
"BCM2835_SPI0_CLK": 1,
|
9516
|
+
"Divider": 2,
|
9517
|
+
"BCM2835_SPI0_DLEN": 1,
|
9518
|
+
"Data": 9,
|
9519
|
+
"Length": 2,
|
9520
|
+
"BCM2835_SPI0_LTOH": 1,
|
9521
|
+
"LOSSI": 1,
|
9522
|
+
"mode": 24,
|
9523
|
+
"TOH": 1,
|
9524
|
+
"BCM2835_SPI0_DC": 1,
|
9525
|
+
"DMA": 3,
|
9526
|
+
"DREQ": 1,
|
9527
|
+
"Controls": 1,
|
9528
|
+
"BCM2835_SPI0_CS_LEN_LONG": 1,
|
9529
|
+
"Long": 1,
|
9530
|
+
"word": 7,
|
9531
|
+
"Lossi": 2,
|
9532
|
+
"DMA_LEN": 1,
|
9533
|
+
"BCM2835_SPI0_CS_DMA_LEN": 1,
|
9534
|
+
"BCM2835_SPI0_CS_CSPOL2": 1,
|
9535
|
+
"Chip": 9,
|
9536
|
+
"Polarity": 5,
|
9537
|
+
"BCM2835_SPI0_CS_CSPOL1": 1,
|
9538
|
+
"BCM2835_SPI0_CS_CSPOL0": 1,
|
9539
|
+
"BCM2835_SPI0_CS_RXF": 1,
|
9540
|
+
"RXF": 2,
|
9541
|
+
"FIFO": 25,
|
9542
|
+
"Full": 1,
|
9543
|
+
"BCM2835_SPI0_CS_RXR": 1,
|
9544
|
+
"RXR": 3,
|
9545
|
+
"needs": 3,
|
9546
|
+
"Reading": 1,
|
9547
|
+
"full": 9,
|
9548
|
+
"BCM2835_SPI0_CS_TXD": 1,
|
9549
|
+
"TXD": 2,
|
9550
|
+
"accept": 2,
|
9551
|
+
"BCM2835_SPI0_CS_RXD": 1,
|
9552
|
+
"RXD": 2,
|
9553
|
+
"contains": 2,
|
9554
|
+
"BCM2835_SPI0_CS_DONE": 1,
|
9555
|
+
"Done": 3,
|
9556
|
+
"transfer": 8,
|
9557
|
+
"BCM2835_SPI0_CS_TE_EN": 1,
|
9558
|
+
"Unused": 2,
|
9559
|
+
"BCM2835_SPI0_CS_LMONO": 1,
|
9560
|
+
"BCM2835_SPI0_CS_LEN": 1,
|
9561
|
+
"LEN": 1,
|
9562
|
+
"LoSSI": 1,
|
9563
|
+
"BCM2835_SPI0_CS_REN": 1,
|
9564
|
+
"REN": 1,
|
9565
|
+
"Read": 3,
|
9566
|
+
"BCM2835_SPI0_CS_ADCS": 1,
|
9567
|
+
"ADCS": 1,
|
9568
|
+
"Automatically": 1,
|
9569
|
+
"Deassert": 1,
|
9570
|
+
"BCM2835_SPI0_CS_INTR": 1,
|
9571
|
+
"INTR": 1,
|
9572
|
+
"Interrupt": 5,
|
9573
|
+
"BCM2835_SPI0_CS_INTD": 1,
|
9574
|
+
"INTD": 1,
|
9575
|
+
"BCM2835_SPI0_CS_DMAEN": 1,
|
9576
|
+
"DMAEN": 1,
|
9577
|
+
"BCM2835_SPI0_CS_TA": 1,
|
9578
|
+
"Transfer": 3,
|
9579
|
+
"Active": 2,
|
9580
|
+
"BCM2835_SPI0_CS_CSPOL": 1,
|
9581
|
+
"BCM2835_SPI0_CS_CLEAR": 1,
|
9582
|
+
"BCM2835_SPI0_CS_CLEAR_RX": 1,
|
9583
|
+
"BCM2835_SPI0_CS_CLEAR_TX": 1,
|
9584
|
+
"BCM2835_SPI0_CS_CPOL": 1,
|
9585
|
+
"BCM2835_SPI0_CS_CPHA": 1,
|
9586
|
+
"Phase": 1,
|
9587
|
+
"BCM2835_SPI0_CS_CS": 1,
|
9588
|
+
"bcm2835SPIBitOrder": 3,
|
9589
|
+
"Bit": 1,
|
9590
|
+
"Specifies": 5,
|
9591
|
+
"ordering": 4,
|
9592
|
+
"bcm2835_spi_setBitOrder": 2,
|
9593
|
+
"BCM2835_SPI_BIT_ORDER_LSBFIRST": 1,
|
9594
|
+
"LSB": 1,
|
9595
|
+
"First": 2,
|
9596
|
+
"BCM2835_SPI_BIT_ORDER_MSBFIRST": 1,
|
9597
|
+
"MSB": 1,
|
9598
|
+
"Specify": 2,
|
9599
|
+
"bcm2835_spi_setDataMode": 2,
|
9600
|
+
"BCM2835_SPI_MODE0": 1,
|
9601
|
+
"CPOL": 4,
|
9602
|
+
"CPHA": 4,
|
9603
|
+
"BCM2835_SPI_MODE1": 1,
|
9604
|
+
"BCM2835_SPI_MODE2": 1,
|
9605
|
+
"BCM2835_SPI_MODE3": 1,
|
9606
|
+
"bcm2835SPIMode": 2,
|
9607
|
+
"bcm2835SPIChipSelect": 3,
|
9608
|
+
"BCM2835_SPI_CS0": 1,
|
9609
|
+
"BCM2835_SPI_CS1": 1,
|
9610
|
+
"BCM2835_SPI_CS2": 1,
|
9611
|
+
"CS1": 1,
|
9612
|
+
"CS2": 1,
|
9613
|
+
"asserted": 3,
|
9614
|
+
"BCM2835_SPI_CS_NONE": 1,
|
9615
|
+
"CS": 5,
|
9616
|
+
"yourself": 1,
|
9617
|
+
"bcm2835SPIClockDivider": 3,
|
9618
|
+
"generate": 2,
|
9619
|
+
"Figures": 1,
|
9620
|
+
"below": 1,
|
9621
|
+
"period": 1,
|
9622
|
+
"frequency.": 1,
|
9623
|
+
"divided": 2,
|
9624
|
+
"nominal": 2,
|
9625
|
+
"reported": 2,
|
9626
|
+
"contrary": 1,
|
9627
|
+
"may": 9,
|
9628
|
+
"shown": 1,
|
9629
|
+
"have": 4,
|
9630
|
+
"confirmed": 1,
|
9631
|
+
"measurement": 2,
|
9632
|
+
"BCM2835_SPI_CLOCK_DIVIDER_65536": 1,
|
9633
|
+
"us": 12,
|
9634
|
+
"kHz": 10,
|
9635
|
+
"BCM2835_SPI_CLOCK_DIVIDER_32768": 1,
|
9636
|
+
"BCM2835_SPI_CLOCK_DIVIDER_16384": 1,
|
9637
|
+
"BCM2835_SPI_CLOCK_DIVIDER_8192": 1,
|
9638
|
+
"/51757813kHz": 1,
|
9639
|
+
"BCM2835_SPI_CLOCK_DIVIDER_4096": 1,
|
9640
|
+
"BCM2835_SPI_CLOCK_DIVIDER_2048": 1,
|
9641
|
+
"BCM2835_SPI_CLOCK_DIVIDER_1024": 1,
|
9642
|
+
"BCM2835_SPI_CLOCK_DIVIDER_512": 1,
|
9643
|
+
"BCM2835_SPI_CLOCK_DIVIDER_256": 1,
|
9644
|
+
"BCM2835_SPI_CLOCK_DIVIDER_128": 1,
|
9645
|
+
"ns": 9,
|
9646
|
+
"BCM2835_SPI_CLOCK_DIVIDER_64": 1,
|
9647
|
+
"BCM2835_SPI_CLOCK_DIVIDER_32": 1,
|
9648
|
+
"BCM2835_SPI_CLOCK_DIVIDER_16": 1,
|
9649
|
+
"BCM2835_SPI_CLOCK_DIVIDER_8": 1,
|
9650
|
+
"BCM2835_SPI_CLOCK_DIVIDER_4": 1,
|
9651
|
+
"BCM2835_SPI_CLOCK_DIVIDER_2": 1,
|
9652
|
+
"fastest": 1,
|
9653
|
+
"BCM2835_SPI_CLOCK_DIVIDER_1": 1,
|
9654
|
+
"same": 3,
|
9655
|
+
"/65536": 1,
|
9656
|
+
"BCM2835_BSC_C": 1,
|
9657
|
+
"BCM2835_BSC_S": 1,
|
9658
|
+
"BCM2835_BSC_DLEN": 1,
|
9659
|
+
"BCM2835_BSC_A": 1,
|
9660
|
+
"Slave": 1,
|
9661
|
+
"BCM2835_BSC_FIFO": 1,
|
9662
|
+
"BCM2835_BSC_DIV": 1,
|
9663
|
+
"BCM2835_BSC_DEL": 1,
|
9664
|
+
"Delay": 4,
|
9665
|
+
"BCM2835_BSC_CLKT": 1,
|
9666
|
+
"Stretch": 2,
|
9667
|
+
"Timeout": 2,
|
9668
|
+
"BCM2835_BSC_C_I2CEN": 1,
|
9669
|
+
"BCM2835_BSC_C_INTR": 1,
|
9670
|
+
"BCM2835_BSC_C_INTT": 1,
|
9671
|
+
"BCM2835_BSC_C_INTD": 1,
|
9672
|
+
"DONE": 2,
|
9673
|
+
"BCM2835_BSC_C_ST": 1,
|
9674
|
+
"Start": 4,
|
9675
|
+
"new": 13,
|
9676
|
+
"BCM2835_BSC_C_CLEAR_1": 1,
|
9677
|
+
"BCM2835_BSC_C_CLEAR_2": 1,
|
9678
|
+
"BCM2835_BSC_C_READ": 1,
|
9679
|
+
"BCM2835_BSC_S_CLKT": 1,
|
9680
|
+
"stretch": 1,
|
9681
|
+
"timeout": 1,
|
9682
|
+
"BCM2835_BSC_S_ERR": 1,
|
9683
|
+
"ACK": 1,
|
9684
|
+
"error": 2,
|
9685
|
+
"BCM2835_BSC_S_RXF": 1,
|
9686
|
+
"BCM2835_BSC_S_TXE": 1,
|
9687
|
+
"TXE": 1,
|
9688
|
+
"BCM2835_BSC_S_RXD": 1,
|
9689
|
+
"BCM2835_BSC_S_TXD": 1,
|
9690
|
+
"BCM2835_BSC_S_RXR": 1,
|
9691
|
+
"BCM2835_BSC_S_TXW": 1,
|
9692
|
+
"TXW": 1,
|
9693
|
+
"writing": 2,
|
9694
|
+
"BCM2835_BSC_S_DONE": 1,
|
9695
|
+
"BCM2835_BSC_S_TA": 1,
|
9696
|
+
"BCM2835_BSC_FIFO_SIZE": 1,
|
9697
|
+
"size": 13,
|
9698
|
+
"bcm2835I2CClockDivider": 3,
|
9699
|
+
"BCM2835_I2C_CLOCK_DIVIDER_2500": 1,
|
9700
|
+
"BCM2835_I2C_CLOCK_DIVIDER_626": 1,
|
9701
|
+
"BCM2835_I2C_CLOCK_DIVIDER_150": 1,
|
9702
|
+
"reset": 1,
|
9703
|
+
"BCM2835_I2C_CLOCK_DIVIDER_148": 1,
|
9704
|
+
"bcm2835I2CReasonCodes": 5,
|
9705
|
+
"reason": 4,
|
9706
|
+
"codes": 1,
|
9707
|
+
"BCM2835_I2C_REASON_OK": 1,
|
9708
|
+
"Success": 1,
|
9709
|
+
"BCM2835_I2C_REASON_ERROR_NACK": 1,
|
9710
|
+
"Received": 4,
|
9711
|
+
"NACK": 1,
|
9712
|
+
"BCM2835_I2C_REASON_ERROR_CLKT": 1,
|
9713
|
+
"BCM2835_I2C_REASON_ERROR_DATA": 1,
|
9714
|
+
"sent": 1,
|
9715
|
+
"/": 14,
|
9716
|
+
"BCM2835_ST_CS": 1,
|
9717
|
+
"Control/Status": 1,
|
9718
|
+
"BCM2835_ST_CLO": 1,
|
9719
|
+
"Counter": 4,
|
9720
|
+
"Lower": 2,
|
9721
|
+
"BCM2835_ST_CHI": 1,
|
9722
|
+
"Upper": 1,
|
9723
|
+
"BCM2835_PWM_CONTROL": 1,
|
9724
|
+
"BCM2835_PWM_STATUS": 1,
|
9725
|
+
"BCM2835_PWM0_RANGE": 1,
|
9726
|
+
"BCM2835_PWM0_DATA": 1,
|
9727
|
+
"BCM2835_PWM1_RANGE": 1,
|
9728
|
+
"BCM2835_PWM1_DATA": 1,
|
9729
|
+
"BCM2835_PWMCLK_CNTL": 1,
|
9730
|
+
"BCM2835_PWMCLK_DIV": 1,
|
9731
|
+
"BCM2835_PWM1_MS_MODE": 1,
|
9732
|
+
"Run": 4,
|
9733
|
+
"MS": 2,
|
9734
|
+
"BCM2835_PWM1_USEFIFO": 1,
|
9735
|
+
"BCM2835_PWM1_REVPOLAR": 1,
|
9736
|
+
"Reverse": 2,
|
9737
|
+
"polarity": 3,
|
9738
|
+
"BCM2835_PWM1_OFFSTATE": 1,
|
9739
|
+
"Ouput": 2,
|
9740
|
+
"BCM2835_PWM1_REPEATFF": 1,
|
9741
|
+
"Repeat": 2,
|
9742
|
+
"last": 6,
|
9743
|
+
"empty": 2,
|
9744
|
+
"BCM2835_PWM1_SERIAL": 1,
|
9745
|
+
"serial": 2,
|
9746
|
+
"BCM2835_PWM1_ENABLE": 1,
|
9747
|
+
"Channel": 2,
|
9748
|
+
"BCM2835_PWM0_MS_MODE": 1,
|
9749
|
+
"BCM2835_PWM0_USEFIFO": 1,
|
9750
|
+
"BCM2835_PWM0_REVPOLAR": 1,
|
9751
|
+
"BCM2835_PWM0_OFFSTATE": 1,
|
9752
|
+
"BCM2835_PWM0_REPEATFF": 1,
|
9753
|
+
"BCM2835_PWM0_SERIAL": 1,
|
9754
|
+
"BCM2835_PWM0_ENABLE": 1,
|
9755
|
+
"x": 48,
|
9756
|
+
"#endif": 89,
|
9757
|
+
"#ifdef": 19,
|
9758
|
+
"__cplusplus": 12,
|
9759
|
+
"init": 2,
|
9760
|
+
"Library": 1,
|
9761
|
+
"management": 1,
|
9762
|
+
"intialise": 1,
|
9763
|
+
"Initialise": 1,
|
9764
|
+
"opening": 1,
|
9765
|
+
"getting": 1,
|
9766
|
+
"internal": 47,
|
9767
|
+
"device": 7,
|
9768
|
+
"call": 4,
|
9769
|
+
"successfully": 1,
|
9770
|
+
"before": 7,
|
9771
|
+
"bcm2835_set_debug": 2,
|
9772
|
+
"fails": 1,
|
9773
|
+
"returning": 1,
|
9774
|
+
"result": 2,
|
9775
|
+
"crashes": 1,
|
9776
|
+
"failures.": 1,
|
9777
|
+
"Prints": 1,
|
9778
|
+
"messages": 1,
|
9779
|
+
"stderr": 1,
|
9780
|
+
"case": 34,
|
9781
|
+
"errors.": 1,
|
9782
|
+
"successful": 2,
|
9783
|
+
"else": 48,
|
9784
|
+
"int": 161,
|
9785
|
+
"Close": 1,
|
9786
|
+
"deallocating": 1,
|
9787
|
+
"allocated": 2,
|
9788
|
+
"closing": 1,
|
9789
|
+
"Sets": 24,
|
9790
|
+
"debug": 6,
|
9791
|
+
"prevents": 1,
|
9792
|
+
"makes": 1,
|
9793
|
+
"print": 5,
|
9794
|
+
"out": 5,
|
9795
|
+
"what": 2,
|
9796
|
+
"would": 2,
|
9797
|
+
"do": 9,
|
9798
|
+
"rather": 2,
|
9799
|
+
"causes": 1,
|
9800
|
+
"normal": 1,
|
9801
|
+
"operation.": 2,
|
9802
|
+
"Call": 2,
|
9803
|
+
"param": 72,
|
9804
|
+
"]": 273,
|
9805
|
+
"level.": 3,
|
9806
|
+
"uint8_t": 43,
|
9807
|
+
"lowlevel": 2,
|
9808
|
+
"provide": 1,
|
9809
|
+
"generally": 1,
|
9810
|
+
"Reads": 5,
|
9811
|
+
"done": 3,
|
9812
|
+
"twice": 3,
|
9813
|
+
"therefore": 6,
|
9814
|
+
"always": 3,
|
9815
|
+
"safe": 4,
|
9816
|
+
"precautions": 3,
|
9817
|
+
"correct": 3,
|
9818
|
+
"paddr": 10,
|
9819
|
+
"from.": 6,
|
9820
|
+
"etc.": 5,
|
9821
|
+
"sa": 30,
|
9822
|
+
"uint32_t*": 7,
|
9823
|
+
"without": 3,
|
9824
|
+
"within": 4,
|
9825
|
+
"occurred": 2,
|
9826
|
+
"since.": 2,
|
9827
|
+
"bcm2835_peri_read_nb": 1,
|
9828
|
+
"Writes": 2,
|
9829
|
+
"write": 8,
|
9830
|
+
"bcm2835_peri_write_nb": 1,
|
9831
|
+
"Alters": 1,
|
9832
|
+
"regsiter.": 1,
|
9833
|
+
"valu": 1,
|
9834
|
+
"alters": 1,
|
9835
|
+
"deines": 1,
|
9836
|
+
"according": 1,
|
9837
|
+
"value.": 2,
|
9838
|
+
"All": 1,
|
9839
|
+
"unaffected.": 1,
|
9840
|
+
"Use": 8,
|
9841
|
+
"alter": 2,
|
9842
|
+
"subset": 1,
|
9843
|
+
"register.": 3,
|
9844
|
+
"masked": 2,
|
9845
|
+
"mask.": 1,
|
9846
|
+
"Bitmask": 1,
|
9847
|
+
"altered": 1,
|
9848
|
+
"gpio": 1,
|
9849
|
+
"interface.": 3,
|
9850
|
+
"input": 12,
|
9851
|
+
"output": 21,
|
9852
|
+
"state.": 1,
|
9853
|
+
"given": 16,
|
9854
|
+
"configures": 1,
|
9855
|
+
"RPI_GPIO_P1_*": 21,
|
9856
|
+
"Mode": 1,
|
9857
|
+
"BCM2835_GPIO_FSEL_*": 1,
|
9858
|
+
"specified": 27,
|
9859
|
+
"HIGH.": 2,
|
9860
|
+
"bcm2835_gpio_write": 3,
|
9861
|
+
"bcm2835_gpio_set": 1,
|
9862
|
+
"LOW.": 5,
|
9863
|
+
"bcm2835_gpio_clr": 1,
|
9864
|
+
"first": 13,
|
9865
|
+
"Mask": 6,
|
9866
|
+
"affect.": 4,
|
9867
|
+
"eg": 5,
|
9868
|
+
"returns": 4,
|
9869
|
+
"either": 4,
|
9870
|
+
"Works": 1,
|
9871
|
+
"whether": 4,
|
9872
|
+
"output.": 1,
|
9873
|
+
"bcm2835_gpio_lev": 1,
|
9874
|
+
"Status.": 7,
|
9875
|
+
"Tests": 1,
|
9876
|
+
"detected": 7,
|
9877
|
+
"requested": 1,
|
9878
|
+
"flag": 1,
|
9879
|
+
"bcm2835_gpio_set_eds": 2,
|
9880
|
+
"status": 1,
|
9881
|
+
"th": 1,
|
9882
|
+
"true.": 2,
|
9883
|
+
"bcm2835_gpio_eds": 1,
|
9884
|
+
"effect": 3,
|
9885
|
+
"clearing": 1,
|
9886
|
+
"flag.": 1,
|
9887
|
+
"afer": 1,
|
9888
|
+
"seeing": 1,
|
9889
|
+
"rising": 3,
|
9890
|
+
"sets": 8,
|
9891
|
+
"GPRENn": 2,
|
9892
|
+
"synchronous": 2,
|
9893
|
+
"detection.": 2,
|
9894
|
+
"signal": 4,
|
9895
|
+
"sampled": 6,
|
9896
|
+
"looking": 2,
|
9897
|
+
"pattern": 2,
|
9898
|
+
"signal.": 2,
|
9899
|
+
"suppressing": 2,
|
9900
|
+
"glitches.": 2,
|
9901
|
+
"Disable": 6,
|
9902
|
+
"Asynchronous": 6,
|
9903
|
+
"incoming": 2,
|
9904
|
+
"As": 2,
|
9905
|
+
"edges": 2,
|
9906
|
+
"very": 2,
|
9907
|
+
"short": 5,
|
9908
|
+
"duration": 2,
|
9909
|
+
"detected.": 2,
|
9910
|
+
"bcm2835_gpio_pudclk": 3,
|
9911
|
+
"resistor": 1,
|
9912
|
+
"However": 3,
|
9913
|
+
"convenient": 2,
|
9914
|
+
"bcm2835_gpio_set_pud": 4,
|
9915
|
+
"pud": 4,
|
9916
|
+
"desired": 7,
|
9917
|
+
"mode.": 4,
|
9918
|
+
"One": 3,
|
9919
|
+
"BCM2835_GPIO_PUD_*": 2,
|
9920
|
+
"Clocks": 3,
|
9921
|
+
"earlier": 1,
|
9922
|
+
"remove": 2,
|
9923
|
+
"group.": 2,
|
9924
|
+
"BCM2835_PAD_GROUP_GPIO_*": 2,
|
9925
|
+
"BCM2835_PAD_*": 2,
|
9926
|
+
"bcm2835_gpio_set_pad": 1,
|
9927
|
+
"Delays": 3,
|
9928
|
+
"milliseconds.": 1,
|
9929
|
+
"Uses": 4,
|
9930
|
+
"CPU": 5,
|
9931
|
+
"until": 1,
|
9932
|
+
"up.": 1,
|
9933
|
+
"mercy": 2,
|
9934
|
+
"From": 2,
|
9935
|
+
"interval": 4,
|
9936
|
+
"req": 2,
|
9937
|
+
"exact": 2,
|
9938
|
+
"multiple": 2,
|
9939
|
+
"granularity": 2,
|
9940
|
+
"rounded": 2,
|
9941
|
+
"next": 9,
|
9942
|
+
"multiple.": 2,
|
9943
|
+
"Furthermore": 2,
|
9944
|
+
"sleep": 2,
|
9945
|
+
"completes": 2,
|
9946
|
+
"still": 3,
|
9947
|
+
"becomes": 2,
|
9948
|
+
"free": 4,
|
9949
|
+
"once": 5,
|
9950
|
+
"again": 2,
|
9951
|
+
"execute": 3,
|
9952
|
+
"thread.": 2,
|
9953
|
+
"millis": 2,
|
9954
|
+
"milliseconds": 1,
|
9955
|
+
"unsigned": 22,
|
9956
|
+
"microseconds.": 2,
|
9957
|
+
"combination": 2,
|
9958
|
+
"busy": 2,
|
9959
|
+
"wait": 2,
|
9960
|
+
"timers": 1,
|
9961
|
+
"less": 1,
|
9962
|
+
"microseconds": 6,
|
9963
|
+
"Timer.": 1,
|
9964
|
+
"RaspberryPi": 1,
|
9965
|
+
"Your": 1,
|
9966
|
+
"mileage": 1,
|
9967
|
+
"vary.": 1,
|
9968
|
+
"micros": 5,
|
9969
|
+
"uint64_t": 8,
|
9970
|
+
"required": 2,
|
9971
|
+
"bcm2835_gpio_write_mask": 1,
|
9972
|
+
"clocking": 1,
|
9973
|
+
"spi": 1,
|
9974
|
+
"let": 2,
|
9975
|
+
"device.": 2,
|
9976
|
+
"operations.": 4,
|
9977
|
+
"Forces": 2,
|
9978
|
+
"ALT0": 2,
|
9979
|
+
"funcitons": 1,
|
9980
|
+
"complete": 2,
|
9981
|
+
"End": 2,
|
9982
|
+
"returned": 5,
|
9983
|
+
"INPUT": 2,
|
9984
|
+
"behaviour.": 2,
|
9985
|
+
"NOTE": 1,
|
9986
|
+
"effect.": 1,
|
9987
|
+
"SPI0.": 1,
|
9988
|
+
"Defaults": 1,
|
9989
|
+
"BCM2835_SPI_BIT_ORDER_*": 1,
|
9990
|
+
"speed.": 2,
|
9991
|
+
"BCM2835_SPI_CLOCK_DIVIDER_*": 1,
|
9992
|
+
"bcm2835_spi_setClockDivider": 1,
|
9993
|
+
"uint16_t": 2,
|
9994
|
+
"polariy": 1,
|
9995
|
+
"phase": 1,
|
9996
|
+
"BCM2835_SPI_MODE*": 1,
|
9997
|
+
"bcm2835_spi_transfer": 5,
|
9998
|
+
"made": 1,
|
9999
|
+
"selected": 13,
|
10000
|
+
"during": 4,
|
10001
|
+
"transfer.": 4,
|
10002
|
+
"cs": 4,
|
10003
|
+
"activate": 1,
|
10004
|
+
"slave.": 7,
|
10005
|
+
"BCM2835_SPI_CS*": 1,
|
10006
|
+
"bcm2835_spi_chipSelect": 4,
|
10007
|
+
"occurs": 1,
|
10008
|
+
"currently": 12,
|
10009
|
+
"active.": 1,
|
10010
|
+
"transfers": 1,
|
10011
|
+
"happening": 1,
|
10012
|
+
"complement": 1,
|
10013
|
+
"inactive": 1,
|
10014
|
+
"affect": 1,
|
10015
|
+
"active": 3,
|
10016
|
+
"Whether": 1,
|
10017
|
+
"bcm2835_spi_setChipSelectPolarity": 1,
|
10018
|
+
"Transfers": 6,
|
10019
|
+
"byte": 6,
|
10020
|
+
"Asserts": 3,
|
10021
|
+
"simultaneously": 3,
|
10022
|
+
"clocks": 2,
|
10023
|
+
"MISO.": 2,
|
10024
|
+
"Returns": 2,
|
10025
|
+
"polled": 2,
|
10026
|
+
"Peripherls": 2,
|
10027
|
+
"len": 15,
|
10028
|
+
"slave": 8,
|
10029
|
+
"placed": 1,
|
10030
|
+
"rbuf.": 1,
|
10031
|
+
"rbuf": 3,
|
10032
|
+
"long": 11,
|
10033
|
+
"tbuf": 4,
|
10034
|
+
"Buffer": 10,
|
10035
|
+
"send.": 5,
|
10036
|
+
"put": 1,
|
10037
|
+
"buffer": 9,
|
10038
|
+
"Number": 8,
|
10039
|
+
"send/received": 2,
|
10040
|
+
"char*": 24,
|
10041
|
+
"bcm2835_spi_transfernb.": 1,
|
10042
|
+
"replaces": 1,
|
10043
|
+
"transmitted": 1,
|
10044
|
+
"buffer.": 1,
|
10045
|
+
"buf": 14,
|
10046
|
+
"replace": 1,
|
10047
|
+
"contents": 3,
|
10048
|
+
"eh": 2,
|
10049
|
+
"bcm2835_spi_writenb": 1,
|
10050
|
+
"i2c": 1,
|
10051
|
+
"Philips": 1,
|
10052
|
+
"bus/interface": 1,
|
10053
|
+
"January": 1,
|
10054
|
+
"SCL": 2,
|
10055
|
+
"bcm2835_i2c_end": 3,
|
10056
|
+
"bcm2835_i2c_begin": 1,
|
10057
|
+
"address.": 2,
|
10058
|
+
"addr": 2,
|
10059
|
+
"bcm2835_i2c_setSlaveAddress": 4,
|
10060
|
+
"BCM2835_I2C_CLOCK_DIVIDER_*": 1,
|
10061
|
+
"bcm2835_i2c_setClockDivider": 2,
|
10062
|
+
"converting": 1,
|
10063
|
+
"baudrate": 4,
|
10064
|
+
"parameter": 1,
|
10065
|
+
"equivalent": 1,
|
10066
|
+
"divider.": 1,
|
10067
|
+
"standard": 2,
|
10068
|
+
"khz": 1,
|
10069
|
+
"corresponds": 1,
|
10070
|
+
"its": 1,
|
10071
|
+
"driver.": 1,
|
10072
|
+
"Of": 1,
|
10073
|
+
"course": 2,
|
10074
|
+
"nothing": 1,
|
10075
|
+
"driver": 1,
|
10076
|
+
"const": 170,
|
10077
|
+
"*": 161,
|
10078
|
+
"receive.": 2,
|
10079
|
+
"received.": 2,
|
10080
|
+
"Allows": 2,
|
10081
|
+
"slaves": 1,
|
10082
|
+
"require": 3,
|
10083
|
+
"repeated": 1,
|
10084
|
+
"start": 12,
|
10085
|
+
"prior": 1,
|
10086
|
+
"stop": 1,
|
10087
|
+
"set.": 1,
|
10088
|
+
"popular": 1,
|
10089
|
+
"MPL3115A2": 1,
|
10090
|
+
"pressure": 1,
|
10091
|
+
"temperature": 1,
|
10092
|
+
"sensor.": 1,
|
10093
|
+
"Note": 1,
|
10094
|
+
"combined": 1,
|
10095
|
+
"better": 1,
|
10096
|
+
"choice.": 1,
|
10097
|
+
"Will": 1,
|
10098
|
+
"regaddr": 2,
|
10099
|
+
"containing": 2,
|
10100
|
+
"bcm2835_i2c_read_register_rs": 1,
|
10101
|
+
"st": 1,
|
10102
|
+
"delays": 1,
|
10103
|
+
"Counter.": 1,
|
10104
|
+
"bcm2835_st_read": 1,
|
10105
|
+
"offset.": 1,
|
10106
|
+
"offset_micros": 2,
|
10107
|
+
"Offset": 1,
|
10108
|
+
"bcm2835_st_delay": 1,
|
10109
|
+
"@example": 5,
|
10110
|
+
"blink.c": 1,
|
10111
|
+
"Blinks": 1,
|
10112
|
+
"off": 1,
|
10113
|
+
"input.c": 1,
|
10114
|
+
"event.c": 1,
|
10115
|
+
"Shows": 3,
|
10116
|
+
"how": 3,
|
10117
|
+
"spi.c": 1,
|
10118
|
+
"spin.c": 1,
|
10119
|
+
"#pragma": 3,
|
10120
|
+
"<string>": 4,
|
10121
|
+
"<vector>": 4,
|
10122
|
+
"<fstream>": 2,
|
10123
|
+
"namespace": 30,
|
10124
|
+
"std": 52,
|
10125
|
+
"DEFAULT_DELIMITER": 1,
|
10126
|
+
"CsvStreamer": 5,
|
10127
|
+
"private": 16,
|
10128
|
+
"ofstream": 1,
|
10129
|
+
"File": 1,
|
10130
|
+
"stream": 6,
|
10131
|
+
"vector": 16,
|
10132
|
+
"row_buffer": 1,
|
10133
|
+
"stores": 3,
|
10134
|
+
"row": 12,
|
10135
|
+
"flushed/written": 1,
|
10136
|
+
"fields": 4,
|
10137
|
+
"columns": 2,
|
10138
|
+
"rows": 3,
|
10139
|
+
"records": 2,
|
10140
|
+
"including": 2,
|
10141
|
+
"delimiter": 2,
|
10142
|
+
"Delimiter": 1,
|
10143
|
+
"character": 10,
|
10144
|
+
"comma": 2,
|
10145
|
+
"string": 24,
|
10146
|
+
"sanitize": 1,
|
10147
|
+
"ready": 1,
|
10148
|
+
"Empty": 1,
|
10149
|
+
"CSV": 4,
|
10150
|
+
"streamer...": 1,
|
10151
|
+
"Same": 1,
|
10152
|
+
"...": 1,
|
10153
|
+
"Opens": 3,
|
10154
|
+
"path/name": 3,
|
10155
|
+
"Ensures": 1,
|
10156
|
+
"closed": 1,
|
10157
|
+
"saved": 1,
|
10158
|
+
"delimiting": 1,
|
10159
|
+
"add_field": 1,
|
10160
|
+
"line": 11,
|
10161
|
+
"adds": 1,
|
10162
|
+
"field": 5,
|
10163
|
+
"save_fields": 1,
|
10164
|
+
"save": 1,
|
10165
|
+
"writes": 2,
|
10166
|
+
"append": 8,
|
10167
|
+
"Appends": 5,
|
10168
|
+
"quoted": 1,
|
10169
|
+
"leading/trailing": 1,
|
10170
|
+
"spaces": 3,
|
10171
|
+
"trimmed": 1,
|
10172
|
+
"bool": 104,
|
10173
|
+
"Like": 1,
|
10174
|
+
"specify": 1,
|
10175
|
+
"trim": 2,
|
10176
|
+
"keep": 1,
|
10177
|
+
"float": 8,
|
10178
|
+
"double": 25,
|
10179
|
+
"writeln": 1,
|
10180
|
+
"Flushes": 1,
|
10181
|
+
"Saves": 1,
|
10182
|
+
"closes": 1,
|
10183
|
+
"field_count": 1,
|
10184
|
+
"Gets": 2,
|
10185
|
+
"row_count": 1,
|
8572
10186
|
"<QCoreApplication>": 1,
|
8573
10187
|
"<QString>": 1,
|
8574
10188
|
"<QVariantMap>": 2,
|
8575
|
-
"static":
|
10189
|
+
"static": 262,
|
8576
10190
|
"Env": 13,
|
8577
10191
|
"*env_instance": 1,
|
8578
|
-
"
|
8579
|
-
"NULL": 108,
|
10192
|
+
"NULL": 109,
|
8580
10193
|
"*Env": 1,
|
8581
10194
|
"instance": 4,
|
8582
|
-
"if": 295,
|
8583
10195
|
"env_instance": 3,
|
8584
|
-
"new": 9,
|
8585
|
-
"return": 147,
|
8586
10196
|
"QObject": 2,
|
8587
10197
|
"QCoreApplication": 1,
|
8588
10198
|
"parse": 3,
|
8589
|
-
"const": 166,
|
8590
10199
|
"**envp": 1,
|
8591
10200
|
"**env": 1,
|
8592
10201
|
"**": 2,
|
8593
10202
|
"QString": 20,
|
8594
10203
|
"envvar": 2,
|
8595
|
-
"name":
|
8596
|
-
"value": 18,
|
8597
|
-
"int": 144,
|
10204
|
+
"name": 25,
|
8598
10205
|
"indexOfEquals": 5,
|
8599
|
-
"for": 18,
|
8600
10206
|
"env": 3,
|
8601
10207
|
"envp": 4,
|
8602
10208
|
"*env": 1,
|
8603
|
-
"+": 50,
|
8604
10209
|
"envvar.indexOf": 1,
|
8605
10210
|
"continue": 2,
|
8606
10211
|
"envvar.left": 1,
|
@@ -8609,20 +10214,19 @@
|
|
8609
10214
|
"QVariantMap": 3,
|
8610
10215
|
"asVariantMap": 2,
|
8611
10216
|
"m_map": 2,
|
8612
|
-
"#ifndef": 23,
|
8613
10217
|
"ENV_H": 3,
|
8614
|
-
"#define": 190,
|
8615
10218
|
"<QObject>": 1,
|
8616
10219
|
"Q_OBJECT": 1,
|
8617
10220
|
"*instance": 1,
|
8618
|
-
"
|
8619
|
-
"
|
8620
|
-
"
|
10221
|
+
"Field": 2,
|
10222
|
+
"Free": 1,
|
10223
|
+
"Black": 1,
|
10224
|
+
"White": 1,
|
10225
|
+
"Illegal": 1,
|
10226
|
+
"Player": 1,
|
8621
10227
|
"GDSDBREADER_H": 3,
|
8622
10228
|
"<QDir>": 1,
|
8623
10229
|
"GDS_DIR": 1,
|
8624
|
-
"enum": 6,
|
8625
|
-
"level": 1,
|
8626
10230
|
"LEVEL_ONE": 1,
|
8627
10231
|
"LEVEL_TWO": 1,
|
8628
10232
|
"LEVEL_THREE": 1,
|
@@ -8632,14 +10236,10 @@
|
|
8632
10236
|
"depth": 1,
|
8633
10237
|
"userIndex": 1,
|
8634
10238
|
"QByteArray": 1,
|
8635
|
-
"data": 2,
|
8636
|
-
"This": 6,
|
8637
|
-
"is": 35,
|
8638
10239
|
"COMPRESSED": 1,
|
8639
10240
|
"optimize": 1,
|
8640
10241
|
"ram": 1,
|
8641
|
-
"
|
8642
|
-
"disk": 1,
|
10242
|
+
"disk": 2,
|
8643
10243
|
"space": 2,
|
8644
10244
|
"decompressed": 1,
|
8645
10245
|
"quint64": 1,
|
@@ -8652,29 +10252,17 @@
|
|
8652
10252
|
"dbDataStructure*": 1,
|
8653
10253
|
"father": 1,
|
8654
10254
|
"fatherIndex": 1,
|
8655
|
-
"bool": 99,
|
8656
10255
|
"noFatherRoot": 1,
|
8657
|
-
"Used":
|
8658
|
-
"to": 75,
|
10256
|
+
"Used": 2,
|
8659
10257
|
"tell": 1,
|
8660
|
-
"this": 22,
|
8661
10258
|
"node": 1,
|
8662
|
-
"the": 178,
|
8663
10259
|
"root": 1,
|
8664
|
-
"so": 1,
|
8665
10260
|
"hasn": 1,
|
8666
|
-
"t": 13,
|
8667
|
-
"in": 9,
|
8668
10261
|
"argument": 1,
|
8669
|
-
"list":
|
8670
|
-
"of": 48,
|
8671
|
-
"an": 3,
|
10262
|
+
"list": 3,
|
8672
10263
|
"operator": 10,
|
8673
10264
|
"overload.": 1,
|
8674
|
-
"A": 1,
|
8675
10265
|
"friend": 10,
|
8676
|
-
"stream": 5,
|
8677
|
-
"<<": 18,
|
8678
10266
|
"myclass.label": 2,
|
8679
10267
|
"myclass.depth": 2,
|
8680
10268
|
"myclass.userIndex": 2,
|
@@ -8688,19 +10276,12 @@
|
|
8688
10276
|
"myclass.firstLineData": 4,
|
8689
10277
|
"myclass.linesNumbers": 2,
|
8690
10278
|
"QDataStream": 2,
|
8691
|
-
"&": 146,
|
8692
10279
|
"myclass": 1,
|
8693
10280
|
"//Don": 1,
|
8694
|
-
"read": 1,
|
8695
|
-
"it": 2,
|
8696
|
-
"either": 1,
|
8697
10281
|
"qUncompress": 2,
|
8698
|
-
"<iostream>":
|
8699
|
-
"using": 1,
|
8700
|
-
"namespace": 26,
|
8701
|
-
"std": 49,
|
10282
|
+
"<iostream>": 2,
|
8702
10283
|
"main": 2,
|
8703
|
-
"cout":
|
10284
|
+
"cout": 2,
|
8704
10285
|
"endl": 1,
|
8705
10286
|
"<map>": 1,
|
8706
10287
|
"<openssl/ecdsa.h>": 1,
|
@@ -8725,7 +10306,6 @@
|
|
8725
10306
|
"err": 26,
|
8726
10307
|
"pub_key": 6,
|
8727
10308
|
"EC_POINT_new": 4,
|
8728
|
-
"group": 12,
|
8729
10309
|
"EC_POINT_mul": 3,
|
8730
10310
|
"priv_key": 2,
|
8731
10311
|
"EC_KEY_set_private_key": 1,
|
@@ -8735,11 +10315,9 @@
|
|
8735
10315
|
"ECDSA_SIG_recover_key_GFp": 3,
|
8736
10316
|
"ECDSA_SIG": 3,
|
8737
10317
|
"*ecsig": 1,
|
8738
|
-
"unsigned": 20,
|
8739
10318
|
"*msg": 2,
|
8740
10319
|
"msglen": 2,
|
8741
10320
|
"recid": 3,
|
8742
|
-
"check": 2,
|
8743
10321
|
"ret": 24,
|
8744
10322
|
"*x": 1,
|
8745
10323
|
"*e": 1,
|
@@ -8754,41 +10332,34 @@
|
|
8754
10332
|
"*zero": 1,
|
8755
10333
|
"n": 28,
|
8756
10334
|
"i": 47,
|
8757
|
-
"/": 13,
|
8758
|
-
"-": 225,
|
8759
10335
|
"BN_CTX_start": 1,
|
8760
|
-
"order": 8,
|
8761
10336
|
"BN_CTX_get": 8,
|
8762
10337
|
"EC_GROUP_get_order": 1,
|
8763
|
-
"x": 44,
|
8764
10338
|
"BN_copy": 1,
|
8765
10339
|
"BN_mul_word": 1,
|
8766
10340
|
"BN_add": 1,
|
8767
10341
|
"ecsig": 3,
|
8768
10342
|
"r": 36,
|
8769
|
-
"field": 3,
|
8770
10343
|
"EC_GROUP_get_curve_GFp": 1,
|
8771
10344
|
"BN_cmp": 1,
|
8772
10345
|
"R": 6,
|
8773
10346
|
"EC_POINT_set_compressed_coordinates_GFp": 1,
|
8774
|
-
"%": 4,
|
8775
10347
|
"O": 5,
|
8776
10348
|
"EC_POINT_is_at_infinity": 1,
|
8777
10349
|
"Q": 5,
|
8778
10350
|
"EC_GROUP_get_degree": 1,
|
8779
|
-
"e":
|
10351
|
+
"e": 15,
|
8780
10352
|
"BN_bin2bn": 3,
|
8781
10353
|
"msg": 1,
|
8782
10354
|
"*msglen": 1,
|
8783
10355
|
"BN_rshift": 1,
|
8784
|
-
"zero":
|
10356
|
+
"zero": 5,
|
8785
10357
|
"BN_zero": 1,
|
8786
10358
|
"BN_mod_sub": 1,
|
8787
10359
|
"rr": 4,
|
8788
10360
|
"BN_mod_inverse": 1,
|
8789
10361
|
"sor": 3,
|
8790
10362
|
"BN_mod_mul": 2,
|
8791
|
-
"s": 9,
|
8792
10363
|
"eor": 3,
|
8793
10364
|
"BN_CTX_end": 1,
|
8794
10365
|
"CKey": 26,
|
@@ -8797,9 +10368,7 @@
|
|
8797
10368
|
"pkey": 14,
|
8798
10369
|
"POINT_CONVERSION_COMPRESSED": 1,
|
8799
10370
|
"fCompressedPubKey": 5,
|
8800
|
-
"true": 39,
|
8801
10371
|
"Reset": 5,
|
8802
|
-
"false": 42,
|
8803
10372
|
"EC_KEY_new_by_curve_name": 2,
|
8804
10373
|
"NID_secp256k1": 2,
|
8805
10374
|
"throw": 4,
|
@@ -8811,30 +10380,23 @@
|
|
8811
10380
|
"b.fSet": 2,
|
8812
10381
|
"EC_KEY_copy": 1,
|
8813
10382
|
"hash": 20,
|
8814
|
-
"sizeof": 14,
|
8815
10383
|
"vchSig": 18,
|
8816
|
-
"[": 201,
|
8817
|
-
"]": 201,
|
8818
10384
|
"nSize": 2,
|
8819
10385
|
"vchSig.clear": 2,
|
8820
10386
|
"vchSig.resize": 2,
|
8821
10387
|
"Shrink": 1,
|
8822
10388
|
"fit": 1,
|
8823
10389
|
"actual": 1,
|
8824
|
-
"size": 9,
|
8825
10390
|
"SignCompact": 2,
|
8826
10391
|
"uint256": 10,
|
8827
|
-
"vector": 14,
|
8828
10392
|
"<unsigned>": 19,
|
8829
10393
|
"fOk": 3,
|
8830
10394
|
"*sig": 2,
|
8831
10395
|
"ECDSA_do_sign": 1,
|
8832
|
-
"char*": 14,
|
8833
10396
|
"sig": 11,
|
8834
10397
|
"nBitsR": 3,
|
8835
10398
|
"BN_num_bits": 2,
|
8836
10399
|
"nBitsS": 3,
|
8837
|
-
"<": 53,
|
8838
10400
|
"&&": 23,
|
8839
10401
|
"nRecId": 4,
|
8840
10402
|
"<4;>": 1,
|
@@ -8867,12 +10429,9 @@
|
|
8867
10429
|
"key2.GetPubKey": 1,
|
8868
10430
|
"BITCOIN_KEY_H": 2,
|
8869
10431
|
"<stdexcept>": 1,
|
8870
|
-
"<vector>": 2,
|
8871
10432
|
"<openssl/ec.h>": 1,
|
8872
|
-
"definition": 1,
|
8873
10433
|
"runtime_error": 2,
|
8874
|
-
"explicit":
|
8875
|
-
"string": 10,
|
10434
|
+
"explicit": 4,
|
8876
10435
|
"str": 2,
|
8877
10436
|
"CKeyID": 5,
|
8878
10437
|
"uint160": 8,
|
@@ -8880,7 +10439,6 @@
|
|
8880
10439
|
"CPubKey": 11,
|
8881
10440
|
"vchPubKey": 6,
|
8882
10441
|
"vchPubKeyIn": 2,
|
8883
|
-
"a": 84,
|
8884
10442
|
"a.vchPubKey": 3,
|
8885
10443
|
"b.vchPubKey": 3,
|
8886
10444
|
"IMPLEMENT_SERIALIZE": 1,
|
@@ -8895,7 +10453,6 @@
|
|
8895
10453
|
"||": 17,
|
8896
10454
|
"IsCompressed": 2,
|
8897
10455
|
"Raw": 1,
|
8898
|
-
"typedef": 38,
|
8899
10456
|
"secure_allocator": 2,
|
8900
10457
|
"CPrivKey": 3,
|
8901
10458
|
"EC_KEY*": 1,
|
@@ -8909,7 +10466,141 @@
|
|
8909
10466
|
"GetPrivKey": 1,
|
8910
10467
|
"SetPubKey": 1,
|
8911
10468
|
"Sign": 1,
|
8912
|
-
"
|
10469
|
+
"LIBCANIH": 2,
|
10470
|
+
"<stdlib.h>": 1,
|
10471
|
+
"<cstring>": 1,
|
10472
|
+
"int64": 1,
|
10473
|
+
"//#define": 1,
|
10474
|
+
"DEBUG": 5,
|
10475
|
+
"dout": 2,
|
10476
|
+
"#else": 25,
|
10477
|
+
"cerr": 1,
|
10478
|
+
"libcanister": 2,
|
10479
|
+
"//the": 8,
|
10480
|
+
"canmem": 22,
|
10481
|
+
"object": 3,
|
10482
|
+
"generic": 1,
|
10483
|
+
"container": 2,
|
10484
|
+
"commonly": 1,
|
10485
|
+
"//throughout": 1,
|
10486
|
+
"canister": 14,
|
10487
|
+
"framework": 1,
|
10488
|
+
"hold": 1,
|
10489
|
+
"uncertain": 1,
|
10490
|
+
"//length": 1,
|
10491
|
+
"contain": 1,
|
10492
|
+
"null": 3,
|
10493
|
+
"bytes.": 1,
|
10494
|
+
"raw": 2,
|
10495
|
+
"absolute": 1,
|
10496
|
+
"length": 10,
|
10497
|
+
"//creates": 3,
|
10498
|
+
"unallocated": 1,
|
10499
|
+
"allocsize": 1,
|
10500
|
+
"blank": 1,
|
10501
|
+
"strdata": 1,
|
10502
|
+
"//automates": 1,
|
10503
|
+
"creation": 1,
|
10504
|
+
"limited": 2,
|
10505
|
+
"canmems": 1,
|
10506
|
+
"//cleans": 1,
|
10507
|
+
"zeromem": 1,
|
10508
|
+
"//overwrites": 2,
|
10509
|
+
"fragmem": 1,
|
10510
|
+
"notation": 1,
|
10511
|
+
"countlen": 1,
|
10512
|
+
"//counts": 1,
|
10513
|
+
"strings": 1,
|
10514
|
+
"//removes": 1,
|
10515
|
+
"nulls": 1,
|
10516
|
+
"//returns": 2,
|
10517
|
+
"singleton": 2,
|
10518
|
+
"//contains": 2,
|
10519
|
+
"caninfo": 2,
|
10520
|
+
"path": 8,
|
10521
|
+
"//physical": 1,
|
10522
|
+
"internalname": 1,
|
10523
|
+
"//a": 1,
|
10524
|
+
"numfiles": 1,
|
10525
|
+
"files": 6,
|
10526
|
+
"//necessary": 1,
|
10527
|
+
"type": 7,
|
10528
|
+
"canfile": 7,
|
10529
|
+
"//this": 1,
|
10530
|
+
"holds": 2,
|
10531
|
+
"//canister": 1,
|
10532
|
+
"canister*": 1,
|
10533
|
+
"parent": 1,
|
10534
|
+
"//internal": 1,
|
10535
|
+
"id": 1,
|
10536
|
+
"//use": 1,
|
10537
|
+
"own.": 1,
|
10538
|
+
"newline": 2,
|
10539
|
+
"delimited": 2,
|
10540
|
+
"container.": 1,
|
10541
|
+
"TOC": 1,
|
10542
|
+
"info": 2,
|
10543
|
+
"general": 1,
|
10544
|
+
"canfiles": 1,
|
10545
|
+
"recommended": 1,
|
10546
|
+
"modify": 1,
|
10547
|
+
"//these": 1,
|
10548
|
+
"enforced.": 1,
|
10549
|
+
"canfile*": 1,
|
10550
|
+
"readonly": 3,
|
10551
|
+
"//if": 1,
|
10552
|
+
"routines": 1,
|
10553
|
+
"anything": 1,
|
10554
|
+
"//maximum": 1,
|
10555
|
+
"//time": 1,
|
10556
|
+
"whatever": 1,
|
10557
|
+
"suits": 1,
|
10558
|
+
"application.": 1,
|
10559
|
+
"cachemax": 2,
|
10560
|
+
"cachecnt": 1,
|
10561
|
+
"//number": 1,
|
10562
|
+
"cache": 2,
|
10563
|
+
"modified": 3,
|
10564
|
+
"//both": 1,
|
10565
|
+
"initialize": 1,
|
10566
|
+
"fspath": 3,
|
10567
|
+
"//destroys": 1,
|
10568
|
+
"flushing": 1,
|
10569
|
+
"modded": 1,
|
10570
|
+
"//open": 1,
|
10571
|
+
"//does": 1,
|
10572
|
+
"exist": 2,
|
10573
|
+
"//close": 1,
|
10574
|
+
"flush": 1,
|
10575
|
+
"clean": 2,
|
10576
|
+
"//deletes": 1,
|
10577
|
+
"inside": 1,
|
10578
|
+
"delFile": 1,
|
10579
|
+
"//pulls": 1,
|
10580
|
+
"getFile": 1,
|
10581
|
+
"otherwise": 1,
|
10582
|
+
"overwrites": 1,
|
10583
|
+
"operation": 1,
|
10584
|
+
"succeeded": 2,
|
10585
|
+
"writeFile": 2,
|
10586
|
+
"//get": 1,
|
10587
|
+
"//list": 1,
|
10588
|
+
"paths": 1,
|
10589
|
+
"getTOC": 1,
|
10590
|
+
"//brings": 1,
|
10591
|
+
"back": 1,
|
10592
|
+
"limit": 1,
|
10593
|
+
"//important": 1,
|
10594
|
+
"sCFID": 2,
|
10595
|
+
"CFID": 2,
|
10596
|
+
"avoid": 1,
|
10597
|
+
"uncaching": 1,
|
10598
|
+
"//really": 1,
|
10599
|
+
"just": 1,
|
10600
|
+
"internally": 1,
|
10601
|
+
"harm.": 1,
|
10602
|
+
"cacheclean": 1,
|
10603
|
+
"dFlush": 1,
|
8913
10604
|
"Q_OS_LINUX": 2,
|
8914
10605
|
"<QApplication>": 1,
|
8915
10606
|
"#if": 44,
|
@@ -8918,17 +10609,14 @@
|
|
8918
10609
|
"#error": 9,
|
8919
10610
|
"Something": 1,
|
8920
10611
|
"wrong": 1,
|
8921
|
-
"with": 6,
|
8922
10612
|
"setup.": 1,
|
8923
|
-
"
|
8924
|
-
"report": 2,
|
10613
|
+
"report": 3,
|
8925
10614
|
"mailing": 1,
|
8926
10615
|
"argc": 2,
|
8927
10616
|
"char**": 2,
|
8928
10617
|
"argv": 2,
|
8929
10618
|
"google_breakpad": 1,
|
8930
10619
|
"ExceptionHandler": 1,
|
8931
|
-
"eh": 1,
|
8932
10620
|
"Utils": 4,
|
8933
10621
|
"exceptionHandler": 2,
|
8934
10622
|
"qInstallMsgHandler": 1,
|
@@ -8951,6 +10639,80 @@
|
|
8951
10639
|
"phantom.execute": 1,
|
8952
10640
|
"app.exec": 1,
|
8953
10641
|
"phantom.returnValue": 1,
|
10642
|
+
"NINJA_METRICS_H_": 3,
|
10643
|
+
"int64_t.": 1,
|
10644
|
+
"Metrics": 2,
|
10645
|
+
"module": 1,
|
10646
|
+
"dumps": 1,
|
10647
|
+
"stats": 2,
|
10648
|
+
"actions.": 1,
|
10649
|
+
"To": 1,
|
10650
|
+
"METRIC_RECORD": 4,
|
10651
|
+
"below.": 1,
|
10652
|
+
"metrics": 2,
|
10653
|
+
"hit": 1,
|
10654
|
+
"path.": 2,
|
10655
|
+
"count": 1,
|
10656
|
+
"Total": 1,
|
10657
|
+
"spent": 1,
|
10658
|
+
"int64_t": 3,
|
10659
|
+
"sum": 1,
|
10660
|
+
"scoped": 1,
|
10661
|
+
"recording": 1,
|
10662
|
+
"metric": 2,
|
10663
|
+
"across": 1,
|
10664
|
+
"body": 1,
|
10665
|
+
"macro.": 1,
|
10666
|
+
"ScopedMetric": 4,
|
10667
|
+
"Metric*": 4,
|
10668
|
+
"metric_": 1,
|
10669
|
+
"Timestamp": 1,
|
10670
|
+
"started.": 1,
|
10671
|
+
"Value": 24,
|
10672
|
+
"platform": 2,
|
10673
|
+
"dependent.": 1,
|
10674
|
+
"start_": 1,
|
10675
|
+
"prints": 1,
|
10676
|
+
"report.": 1,
|
10677
|
+
"NewMetric": 2,
|
10678
|
+
"Print": 2,
|
10679
|
+
"summary": 1,
|
10680
|
+
"stdout.": 1,
|
10681
|
+
"Report": 1,
|
10682
|
+
"<Metric*>": 1,
|
10683
|
+
"metrics_": 1,
|
10684
|
+
"Get": 1,
|
10685
|
+
"relative": 2,
|
10686
|
+
"epoch.": 1,
|
10687
|
+
"Epoch": 1,
|
10688
|
+
"varies": 1,
|
10689
|
+
"between": 1,
|
10690
|
+
"platforms": 1,
|
10691
|
+
"useful": 1,
|
10692
|
+
"measuring": 1,
|
10693
|
+
"elapsed": 1,
|
10694
|
+
"time.": 1,
|
10695
|
+
"GetTimeMillis": 1,
|
10696
|
+
"simple": 1,
|
10697
|
+
"stopwatch": 1,
|
10698
|
+
"seconds": 1,
|
10699
|
+
"Restart": 3,
|
10700
|
+
"called.": 1,
|
10701
|
+
"Stopwatch": 2,
|
10702
|
+
"started_": 4,
|
10703
|
+
"Seconds": 1,
|
10704
|
+
"call.": 1,
|
10705
|
+
"Elapsed": 1,
|
10706
|
+
"static_cast": 8,
|
10707
|
+
"<double>": 1,
|
10708
|
+
"primary": 1,
|
10709
|
+
"metrics.": 1,
|
10710
|
+
"top": 1,
|
10711
|
+
"recorded": 1,
|
10712
|
+
"metrics_h_metric": 2,
|
10713
|
+
"g_metrics": 3,
|
10714
|
+
"metrics_h_scoped": 1,
|
10715
|
+
"Metrics*": 1,
|
8954
10716
|
"INTERNAL_SUPPRESS_PROTOBUF_FIELD_DEPRECATION": 1,
|
8955
10717
|
"<algorithm>": 1,
|
8956
10718
|
"<google/protobuf/stubs/common.h>": 2,
|
@@ -8966,13 +10728,11 @@
|
|
8966
10728
|
"protobuf": 72,
|
8967
10729
|
"Descriptor*": 3,
|
8968
10730
|
"Person_descriptor_": 6,
|
8969
|
-
"internal": 46,
|
8970
10731
|
"GeneratedMessageReflection*": 1,
|
8971
10732
|
"Person_reflection_": 4,
|
8972
10733
|
"protobuf_AssignDesc_protocol_2dbuffer_2eproto": 4,
|
8973
10734
|
"protobuf_AddDesc_protocol_2dbuffer_2eproto": 6,
|
8974
10735
|
"FileDescriptor*": 1,
|
8975
|
-
"file": 6,
|
8976
10736
|
"DescriptorPool": 3,
|
8977
10737
|
"generated_pool": 2,
|
8978
10738
|
"FindFileByName": 1,
|
@@ -9004,20 +10764,17 @@
|
|
9004
10764
|
"InternalRegisterGeneratedFile": 1,
|
9005
10765
|
"InitAsDefaultInstance": 3,
|
9006
10766
|
"OnShutdown": 1,
|
9007
|
-
"struct": 8,
|
9008
10767
|
"StaticDescriptorInitializer_protocol_2dbuffer_2eproto": 2,
|
9009
10768
|
"static_descriptor_initializer_protocol_2dbuffer_2eproto_": 1,
|
9010
10769
|
"_MSC_VER": 3,
|
9011
10770
|
"kNameFieldNumber": 2,
|
9012
10771
|
"Message": 7,
|
9013
10772
|
"SharedCtor": 4,
|
9014
|
-
"from": 25,
|
9015
10773
|
"MergeFrom": 9,
|
9016
10774
|
"_cached_size_": 7,
|
9017
10775
|
"const_cast": 3,
|
9018
10776
|
"string*": 11,
|
9019
10777
|
"kEmptyString": 12,
|
9020
|
-
"memset": 2,
|
9021
10778
|
"SharedDtor": 3,
|
9022
10779
|
"SetCachedSize": 2,
|
9023
10780
|
"GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN": 2,
|
@@ -9025,26 +10782,20 @@
|
|
9025
10782
|
"descriptor": 2,
|
9026
10783
|
"*default_instance_": 1,
|
9027
10784
|
"Person*": 7,
|
9028
|
-
"New": 4,
|
9029
|
-
"Clear": 5,
|
9030
10785
|
"xffu": 3,
|
9031
10786
|
"has_name": 6,
|
9032
|
-
"clear": 2,
|
9033
10787
|
"mutable_unknown_fields": 4,
|
9034
10788
|
"MergePartialFromCodedStream": 2,
|
9035
10789
|
"io": 4,
|
9036
10790
|
"CodedInputStream*": 2,
|
9037
|
-
"input": 6,
|
9038
10791
|
"DO_": 4,
|
9039
10792
|
"EXPRESSION": 2,
|
9040
10793
|
"uint32": 2,
|
9041
10794
|
"tag": 6,
|
9042
|
-
"while": 11,
|
9043
10795
|
"ReadTag": 1,
|
9044
10796
|
"switch": 3,
|
9045
10797
|
"WireFormatLite": 9,
|
9046
10798
|
"GetTagFieldNumber": 1,
|
9047
|
-
"case": 33,
|
9048
10799
|
"GetTagWireType": 2,
|
9049
10800
|
"WIRETYPE_LENGTH_DELIMITED": 1,
|
9050
10801
|
"ReadString": 1,
|
@@ -9054,16 +10805,13 @@
|
|
9054
10805
|
".data": 3,
|
9055
10806
|
".length": 3,
|
9056
10807
|
"PARSE": 1,
|
9057
|
-
"else": 46,
|
9058
10808
|
"handle_uninterpreted": 2,
|
9059
10809
|
"ExpectAtEnd": 1,
|
9060
|
-
"default": 4,
|
9061
10810
|
"WIRETYPE_END_GROUP": 1,
|
9062
10811
|
"SkipField": 1,
|
9063
10812
|
"#undef": 3,
|
9064
10813
|
"SerializeWithCachedSizes": 2,
|
9065
10814
|
"CodedOutputStream*": 2,
|
9066
|
-
"output": 5,
|
9067
10815
|
"SERIALIZE": 2,
|
9068
10816
|
"WriteString": 1,
|
9069
10817
|
"unknown_fields": 7,
|
@@ -9079,7 +10827,6 @@
|
|
9079
10827
|
"StringSize": 1,
|
9080
10828
|
"ComputeUnknownFieldsSize": 1,
|
9081
10829
|
"GOOGLE_CHECK_NE": 2,
|
9082
|
-
"source": 9,
|
9083
10830
|
"dynamic_cast_if_available": 1,
|
9084
10831
|
"<const>": 12,
|
9085
10832
|
"ReflectionOps": 1,
|
@@ -9092,7 +10839,6 @@
|
|
9092
10839
|
"CopyFrom": 5,
|
9093
10840
|
"IsInitialized": 3,
|
9094
10841
|
"Swap": 2,
|
9095
|
-
"other": 7,
|
9096
10842
|
"swap": 3,
|
9097
10843
|
"_unknown_fields_.Swap": 1,
|
9098
10844
|
"Metadata": 3,
|
@@ -9101,19 +10847,12 @@
|
|
9101
10847
|
"metadata.descriptor": 1,
|
9102
10848
|
"metadata.reflection": 1,
|
9103
10849
|
"PROTOBUF_protocol_2dbuffer_2eproto__INCLUDED": 3,
|
9104
|
-
"<string>": 1,
|
9105
10850
|
"GOOGLE_PROTOBUF_VERSION": 1,
|
9106
|
-
"was": 3,
|
9107
10851
|
"generated": 2,
|
9108
|
-
"by": 5,
|
9109
10852
|
"newer": 2,
|
9110
|
-
"version": 4,
|
9111
10853
|
"protoc": 2,
|
9112
|
-
"which": 2,
|
9113
10854
|
"incompatible": 2,
|
9114
|
-
"your": 3,
|
9115
10855
|
"Protocol": 2,
|
9116
|
-
"Buffer": 2,
|
9117
10856
|
"headers.": 3,
|
9118
10857
|
"update": 1,
|
9119
10858
|
"GOOGLE_PROTOBUF_MIN_PROTOC_VERSION": 1,
|
@@ -9138,7 +10877,6 @@
|
|
9138
10877
|
"clear_has_name": 5,
|
9139
10878
|
"mutable": 1,
|
9140
10879
|
"u": 9,
|
9141
|
-
"|": 8,
|
9142
10880
|
"*name_": 1,
|
9143
10881
|
"assign": 3,
|
9144
10882
|
"reinterpret_cast": 7,
|
@@ -9146,46 +10884,26 @@
|
|
9146
10884
|
"SWIG": 2,
|
9147
10885
|
"QSCICOMMAND_H": 2,
|
9148
10886
|
"__APPLE__": 4,
|
9149
|
-
"extern": 4,
|
9150
10887
|
"<qstring.h>": 1,
|
9151
10888
|
"<Qsci/qsciglobal.h>": 2,
|
9152
10889
|
"<Qsci/qsciscintillabase.h>": 1,
|
9153
10890
|
"QsciScintilla": 7,
|
9154
|
-
"brief": 2,
|
9155
|
-
"The": 8,
|
9156
10891
|
"QsciCommand": 7,
|
9157
10892
|
"represents": 1,
|
9158
10893
|
"editor": 1,
|
9159
10894
|
"command": 9,
|
9160
|
-
"that": 7,
|
9161
|
-
"may": 2,
|
9162
|
-
"have": 1,
|
9163
|
-
"one": 42,
|
9164
|
-
"or": 10,
|
9165
10895
|
"two": 1,
|
9166
10896
|
"keys": 3,
|
9167
10897
|
"bound": 4,
|
9168
|
-
"it.": 2,
|
9169
10898
|
"Methods": 1,
|
9170
|
-
"are": 3,
|
9171
10899
|
"provided": 1,
|
9172
|
-
"change": 1,
|
9173
|
-
"remove": 1,
|
9174
10900
|
"binding.": 1,
|
9175
10901
|
"Each": 1,
|
9176
|
-
"has": 2,
|
9177
|
-
"user": 2,
|
9178
10902
|
"friendly": 2,
|
9179
10903
|
"description": 3,
|
9180
|
-
"use": 1,
|
9181
|
-
"mapping": 1,
|
9182
10904
|
"dialogs.": 1,
|
9183
10905
|
"QSCINTILLA_EXPORT": 2,
|
9184
|
-
"defines": 1,
|
9185
|
-
"different": 1,
|
9186
10906
|
"commands": 1,
|
9187
|
-
"can": 3,
|
9188
|
-
"be": 9,
|
9189
10907
|
"assigned": 1,
|
9190
10908
|
"key.": 1,
|
9191
10909
|
"Command": 4,
|
@@ -9206,7 +10924,6 @@
|
|
9206
10924
|
"view": 2,
|
9207
10925
|
"LineScrollDown": 1,
|
9208
10926
|
"SCI_LINESCROLLDOWN": 1,
|
9209
|
-
"up": 13,
|
9210
10927
|
"LineUp": 1,
|
9211
10928
|
"SCI_LINEUP": 1,
|
9212
10929
|
"LineUpExtend": 1,
|
@@ -9215,16 +10932,13 @@
|
|
9215
10932
|
"SCI_LINEUPRECTEXTEND": 1,
|
9216
10933
|
"LineScrollUp": 1,
|
9217
10934
|
"SCI_LINESCROLLUP": 1,
|
9218
|
-
"start": 11,
|
9219
10935
|
"document.": 8,
|
9220
10936
|
"ScrollToStart": 1,
|
9221
10937
|
"SCI_SCROLLTOSTART": 1,
|
9222
|
-
"end": 18,
|
9223
10938
|
"ScrollToEnd": 1,
|
9224
10939
|
"SCI_SCROLLTOEND": 1,
|
9225
10940
|
"vertically": 1,
|
9226
10941
|
"centre": 1,
|
9227
|
-
"current": 9,
|
9228
10942
|
"VerticalCentreCaret": 1,
|
9229
10943
|
"SCI_VERTICALCENTRECARET": 1,
|
9230
10944
|
"paragraph.": 4,
|
@@ -9244,7 +10958,6 @@
|
|
9244
10958
|
"SCI_CHARLEFTEXTEND": 1,
|
9245
10959
|
"CharLeftRectExtend": 1,
|
9246
10960
|
"SCI_CHARLEFTRECTEXTEND": 1,
|
9247
|
-
"right": 8,
|
9248
10961
|
"CharRight": 1,
|
9249
10962
|
"SCI_CHARRIGHT": 1,
|
9250
10963
|
"CharRightExtend": 1,
|
@@ -9260,17 +10973,14 @@
|
|
9260
10973
|
"SCI_WORDRIGHT": 1,
|
9261
10974
|
"WordRightExtend": 1,
|
9262
10975
|
"SCI_WORDRIGHTEXTEND": 1,
|
9263
|
-
"previous": 5,
|
9264
10976
|
"WordLeftEnd": 1,
|
9265
10977
|
"SCI_WORDLEFTEND": 1,
|
9266
10978
|
"WordLeftEndExtend": 1,
|
9267
10979
|
"SCI_WORDLEFTENDEXTEND": 1,
|
9268
|
-
"next": 6,
|
9269
10980
|
"WordRightEnd": 1,
|
9270
10981
|
"SCI_WORDRIGHTEND": 1,
|
9271
10982
|
"WordRightEndExtend": 1,
|
9272
10983
|
"SCI_WORDRIGHTENDEXTEND": 1,
|
9273
|
-
"word": 6,
|
9274
10984
|
"part.": 4,
|
9275
10985
|
"WordPartLeft": 1,
|
9276
10986
|
"SCI_WORDPARTLEFT": 1,
|
@@ -9296,9 +11006,7 @@
|
|
9296
11006
|
"SCI_HOMEWRAP": 1,
|
9297
11007
|
"HomeWrapExtend": 1,
|
9298
11008
|
"SCI_HOMEWRAPEXTEND": 1,
|
9299
|
-
"first": 8,
|
9300
11009
|
"visible": 6,
|
9301
|
-
"character": 8,
|
9302
11010
|
"VCHome": 1,
|
9303
11011
|
"SCI_VCHOME": 1,
|
9304
11012
|
"VCHomeExtend": 1,
|
@@ -9359,8 +11067,6 @@
|
|
9359
11067
|
"SCI_CLEAR": 1,
|
9360
11068
|
"DeleteBack": 1,
|
9361
11069
|
"SCI_DELETEBACK": 1,
|
9362
|
-
"not": 1,
|
9363
|
-
"at": 4,
|
9364
11070
|
"DeleteBackNotLine": 1,
|
9365
11071
|
"SCI_DELETEBACKNOTLINE": 1,
|
9366
11072
|
"left.": 2,
|
@@ -9371,7 +11077,6 @@
|
|
9371
11077
|
"SCI_DELWORDRIGHT": 1,
|
9372
11078
|
"DeleteWordRightEnd": 1,
|
9373
11079
|
"SCI_DELWORDRIGHTEND": 1,
|
9374
|
-
"line": 10,
|
9375
11080
|
"DeleteLineLeft": 1,
|
9376
11081
|
"SCI_DELLINELEFT": 1,
|
9377
11082
|
"DeleteLineRight": 1,
|
@@ -9392,11 +11097,9 @@
|
|
9392
11097
|
"Duplicate": 2,
|
9393
11098
|
"LineDuplicate": 1,
|
9394
11099
|
"SCI_LINEDUPLICATE": 1,
|
9395
|
-
"Select": 33,
|
9396
11100
|
"whole": 2,
|
9397
11101
|
"SelectAll": 1,
|
9398
11102
|
"SCI_SELECTALL": 1,
|
9399
|
-
"selected": 2,
|
9400
11103
|
"lines": 3,
|
9401
11104
|
"MoveSelectedLinesUp": 1,
|
9402
11105
|
"SCI_MOVESELECTEDLINESUP": 1,
|
@@ -9424,7 +11127,6 @@
|
|
9424
11127
|
"EditToggleOvertype": 1,
|
9425
11128
|
"SCI_EDITTOGGLEOVERTYPE": 1,
|
9426
11129
|
"Insert": 2,
|
9427
|
-
"platform": 1,
|
9428
11130
|
"dependent": 1,
|
9429
11131
|
"newline.": 1,
|
9430
11132
|
"Newline": 1,
|
@@ -9433,7 +11135,6 @@
|
|
9433
11135
|
"Formfeed": 1,
|
9434
11136
|
"SCI_FORMFEED": 1,
|
9435
11137
|
"Indent": 1,
|
9436
|
-
"level.": 2,
|
9437
11138
|
"Tab": 1,
|
9438
11139
|
"SCI_TAB": 1,
|
9439
11140
|
"De": 1,
|
@@ -9441,11 +11142,8 @@
|
|
9441
11142
|
"Backtab": 1,
|
9442
11143
|
"SCI_BACKTAB": 1,
|
9443
11144
|
"Cancel": 2,
|
9444
|
-
"any": 5,
|
9445
|
-
"operation.": 1,
|
9446
11145
|
"SCI_CANCEL": 1,
|
9447
11146
|
"Undo": 2,
|
9448
|
-
"last": 4,
|
9449
11147
|
"command.": 5,
|
9450
11148
|
"SCI_UNDO": 1,
|
9451
11149
|
"Redo": 2,
|
@@ -9458,22 +11156,16 @@
|
|
9458
11156
|
"ZoomOut": 1,
|
9459
11157
|
"SCI_ZOOMOUT": 1,
|
9460
11158
|
"Return": 3,
|
9461
|
-
"will": 2,
|
9462
11159
|
"executed": 1,
|
9463
11160
|
"instance.": 2,
|
9464
11161
|
"scicmd": 2,
|
9465
11162
|
"Execute": 1,
|
9466
|
-
"execute": 1,
|
9467
11163
|
"Binds": 2,
|
9468
|
-
"If": 4,
|
9469
|
-
"then": 6,
|
9470
11164
|
"binding": 3,
|
9471
11165
|
"removed.": 2,
|
9472
11166
|
"invalid": 5,
|
9473
11167
|
"unchanged.": 1,
|
9474
11168
|
"Valid": 1,
|
9475
|
-
"control": 1,
|
9476
|
-
"c": 50,
|
9477
11169
|
"Key_Down": 1,
|
9478
11170
|
"Key_Up": 1,
|
9479
11171
|
"Key_Left": 1,
|
@@ -9489,20 +11181,15 @@
|
|
9489
11181
|
"Key_Tab": 1,
|
9490
11182
|
"Key_Return.": 1,
|
9491
11183
|
"Keys": 1,
|
9492
|
-
"modified": 2,
|
9493
|
-
"combination": 1,
|
9494
11184
|
"SHIFT": 1,
|
9495
11185
|
"CTRL": 1,
|
9496
11186
|
"ALT": 1,
|
9497
11187
|
"META.": 1,
|
9498
|
-
"sa": 8,
|
9499
11188
|
"setAlternateKey": 3,
|
9500
11189
|
"validKey": 3,
|
9501
11190
|
"setKey": 3,
|
9502
|
-
"alternate": 3,
|
9503
11191
|
"altkey": 3,
|
9504
11192
|
"alternateKey": 3,
|
9505
|
-
"currently": 2,
|
9506
11193
|
"returned.": 4,
|
9507
11194
|
"qkey": 2,
|
9508
11195
|
"qaltkey": 2,
|
@@ -9529,13 +11216,10 @@
|
|
9529
11216
|
"sub": 2,
|
9530
11217
|
"Qt": 1,
|
9531
11218
|
"QPrinter": 3,
|
9532
|
-
"able": 1,
|
9533
|
-
"print": 4,
|
9534
11219
|
"text": 5,
|
9535
11220
|
"Scintilla": 2,
|
9536
11221
|
"further": 1,
|
9537
11222
|
"classed": 1,
|
9538
|
-
"alter": 1,
|
9539
11223
|
"layout": 1,
|
9540
11224
|
"adding": 2,
|
9541
11225
|
"headers": 3,
|
@@ -9544,75 +11228,45 @@
|
|
9544
11228
|
"Constructs": 1,
|
9545
11229
|
"printer": 1,
|
9546
11230
|
"paint": 1,
|
9547
|
-
"device": 1,
|
9548
|
-
"mode": 4,
|
9549
|
-
"mode.": 1,
|
9550
11231
|
"PrinterMode": 1,
|
9551
11232
|
"ScreenResolution": 1,
|
9552
11233
|
"Destroys": 1,
|
9553
11234
|
"Format": 1,
|
9554
|
-
"page": 4,
|
9555
|
-
"example": 1,
|
9556
|
-
"before": 1,
|
9557
11235
|
"drawn": 2,
|
9558
|
-
"on": 1,
|
9559
11236
|
"painter": 4,
|
9560
|
-
"used": 4,
|
9561
11237
|
"add": 3,
|
9562
11238
|
"customised": 2,
|
9563
11239
|
"graphics.": 2,
|
9564
11240
|
"drawing": 4,
|
9565
11241
|
"actually": 1,
|
9566
|
-
"being": 2,
|
9567
|
-
"rather": 1,
|
9568
|
-
"than": 1,
|
9569
11242
|
"sized.": 1,
|
9570
11243
|
"methods": 1,
|
9571
|
-
"must": 1,
|
9572
|
-
"only": 1,
|
9573
|
-
"called": 1,
|
9574
|
-
"when": 5,
|
9575
|
-
"true.": 1,
|
9576
11244
|
"area": 5,
|
9577
11245
|
"draw": 1,
|
9578
11246
|
"text.": 3,
|
9579
|
-
"should": 1,
|
9580
11247
|
"necessary": 1,
|
9581
11248
|
"reserve": 1,
|
9582
11249
|
"By": 1,
|
9583
|
-
"relative": 1,
|
9584
11250
|
"printable": 1,
|
9585
|
-
"Use": 1,
|
9586
11251
|
"setFullPage": 1,
|
9587
11252
|
"because": 2,
|
9588
|
-
"calling": 1,
|
9589
11253
|
"printRange": 2,
|
9590
|
-
"you": 1,
|
9591
|
-
"want": 2,
|
9592
11254
|
"try": 1,
|
9593
11255
|
"over": 1,
|
9594
11256
|
"pagenr": 2,
|
9595
|
-
"number": 3,
|
9596
11257
|
"numbered": 1,
|
9597
11258
|
"formatPage": 1,
|
9598
11259
|
"points": 2,
|
9599
|
-
"each": 2,
|
9600
11260
|
"font": 2,
|
9601
11261
|
"printing.": 2,
|
9602
11262
|
"setMagnification": 2,
|
9603
11263
|
"magnification": 3,
|
9604
11264
|
"mag": 2,
|
9605
|
-
"Sets": 2,
|
9606
11265
|
"printing": 2,
|
9607
11266
|
"magnification.": 1,
|
9608
|
-
"Print": 1,
|
9609
|
-
"range": 1,
|
9610
11267
|
"qsb.": 1,
|
9611
11268
|
"negative": 2,
|
9612
11269
|
"signifies": 2,
|
9613
|
-
"returned": 2,
|
9614
|
-
"there": 1,
|
9615
|
-
"no": 1,
|
9616
11270
|
"error.": 1,
|
9617
11271
|
"*qsb": 1,
|
9618
11272
|
"wrap": 4,
|
@@ -9622,6 +11276,8 @@
|
|
9622
11276
|
"wrapMode": 2,
|
9623
11277
|
"wmode.": 1,
|
9624
11278
|
"wmode": 1,
|
11279
|
+
"rpc_init": 1,
|
11280
|
+
"rpc_server_loop": 1,
|
9625
11281
|
"v8": 9,
|
9626
11282
|
"Scanner": 16,
|
9627
11283
|
"UnicodeCache*": 4,
|
@@ -9642,7 +11298,6 @@
|
|
9642
11298
|
"ScanHexNumber": 2,
|
9643
11299
|
"expected_length": 4,
|
9644
11300
|
"ASSERT": 17,
|
9645
|
-
"prevent": 1,
|
9646
11301
|
"overflow": 1,
|
9647
11302
|
"digits": 3,
|
9648
11303
|
"c0_": 64,
|
@@ -9654,7 +11309,6 @@
|
|
9654
11309
|
"STATIC_ASSERT": 5,
|
9655
11310
|
"Token": 212,
|
9656
11311
|
"NUM_TOKENS": 1,
|
9657
|
-
"byte": 1,
|
9658
11312
|
"one_char_tokens": 2,
|
9659
11313
|
"ILLEGAL": 120,
|
9660
11314
|
"LPAREN": 2,
|
@@ -9669,12 +11323,10 @@
|
|
9669
11323
|
"LBRACE": 2,
|
9670
11324
|
"RBRACE": 2,
|
9671
11325
|
"BIT_NOT": 2,
|
9672
|
-
"Value": 23,
|
9673
11326
|
"Next": 3,
|
9674
11327
|
"current_": 2,
|
9675
11328
|
"next_": 2,
|
9676
11329
|
"has_multiline_comment_before_next_": 5,
|
9677
|
-
"static_cast": 7,
|
9678
11330
|
"token": 64,
|
9679
11331
|
"<Token::Value>": 1,
|
9680
11332
|
"pos": 12,
|
@@ -9697,7 +11349,6 @@
|
|
9697
11349
|
"ScanHtmlComment": 3,
|
9698
11350
|
"LT": 2,
|
9699
11351
|
"next_.literal_chars": 13,
|
9700
|
-
"do": 4,
|
9701
11352
|
"ScanString": 3,
|
9702
11353
|
"LTE": 1,
|
9703
11354
|
"ASSIGN_SHL": 1,
|
@@ -9713,7 +11364,6 @@
|
|
9713
11364
|
"ASSIGN": 1,
|
9714
11365
|
"NE_STRICT": 1,
|
9715
11366
|
"NE": 1,
|
9716
|
-
"NOT": 1,
|
9717
11367
|
"INC": 1,
|
9718
11368
|
"ASSIGN_ADD": 1,
|
9719
11369
|
"ADD": 1,
|
@@ -9747,11 +11397,8 @@
|
|
9747
11397
|
"IsCarriageReturn": 2,
|
9748
11398
|
"IsLineFeed": 2,
|
9749
11399
|
"fall": 2,
|
9750
|
-
"through": 2,
|
9751
11400
|
"v": 3,
|
9752
|
-
"xx": 1,
|
9753
11401
|
"xxx": 1,
|
9754
|
-
"error": 1,
|
9755
11402
|
"immediately": 1,
|
9756
11403
|
"octal": 1,
|
9757
11404
|
"escape": 1,
|
@@ -9759,11 +11406,9 @@
|
|
9759
11406
|
"consume": 2,
|
9760
11407
|
"LiteralScope": 4,
|
9761
11408
|
"literal": 2,
|
9762
|
-
".": 2,
|
9763
11409
|
"X": 2,
|
9764
11410
|
"E": 3,
|
9765
11411
|
"l": 1,
|
9766
|
-
"p": 5,
|
9767
11412
|
"w": 1,
|
9768
11413
|
"y": 13,
|
9769
11414
|
"keyword": 1,
|
@@ -9782,7 +11427,6 @@
|
|
9782
11427
|
"CLASSIC_MODE": 2,
|
9783
11428
|
"STRICT_MODE": 2,
|
9784
11429
|
"EXTENDED_MODE": 2,
|
9785
|
-
"detect": 1,
|
9786
11430
|
"x16": 1,
|
9787
11431
|
"x36.": 1,
|
9788
11432
|
"Utf16CharacterStream": 3,
|
@@ -9832,7 +11476,6 @@
|
|
9832
11476
|
"backing_store_.Dispose": 3,
|
9833
11477
|
"INLINE": 2,
|
9834
11478
|
"AddChar": 2,
|
9835
|
-
"uint32_t": 8,
|
9836
11479
|
"ExpandBuffer": 2,
|
9837
11480
|
"kMaxAsciiCharCodeU": 1,
|
9838
11481
|
"<byte>": 6,
|
@@ -9847,7 +11490,6 @@
|
|
9847
11490
|
"utf16_literal": 3,
|
9848
11491
|
"backing_store_.start": 5,
|
9849
11492
|
"ascii_literal": 3,
|
9850
|
-
"length": 8,
|
9851
11493
|
"kInitialCapacity": 2,
|
9852
11494
|
"kGrowthFactory": 2,
|
9853
11495
|
"kMinConversionSlack": 1,
|
@@ -9879,7 +11521,6 @@
|
|
9879
11521
|
"kNoOctalLocation": 1,
|
9880
11522
|
"scanner_contants": 1,
|
9881
11523
|
"current_token": 1,
|
9882
|
-
"location": 4,
|
9883
11524
|
"current_.location": 2,
|
9884
11525
|
"literal_ascii_string": 1,
|
9885
11526
|
"ASSERT_NOT_NULL": 9,
|
@@ -9915,7 +11556,6 @@
|
|
9915
11556
|
"ScanRegExpFlags": 1,
|
9916
11557
|
"IsIdentifier": 1,
|
9917
11558
|
"CharacterStream*": 1,
|
9918
|
-
"buffer": 1,
|
9919
11559
|
"TokenDesc": 3,
|
9920
11560
|
"LiteralBuffer*": 2,
|
9921
11561
|
"literal_chars": 1,
|
@@ -9931,9 +11571,10 @@
|
|
9931
11571
|
"LiteralScope*": 1,
|
9932
11572
|
"ScanIdentifierUnicodeEscape": 1,
|
9933
11573
|
"desc": 2,
|
9934
|
-
"as": 1,
|
9935
11574
|
"look": 1,
|
9936
11575
|
"ahead": 1,
|
11576
|
+
"<cstdint>": 1,
|
11577
|
+
"smallPrime_t": 1,
|
9937
11578
|
"UTILS_H": 3,
|
9938
11579
|
"<QtGlobal>": 1,
|
9939
11580
|
"<QWebFrame>": 1,
|
@@ -9941,12 +11582,10 @@
|
|
9941
11582
|
"QTemporaryFile": 1,
|
9942
11583
|
"showUsage": 1,
|
9943
11584
|
"QtMsgType": 1,
|
9944
|
-
"type": 6,
|
9945
11585
|
"dump_path": 1,
|
9946
11586
|
"minidump_id": 1,
|
9947
11587
|
"void*": 1,
|
9948
11588
|
"context": 8,
|
9949
|
-
"succeeded": 1,
|
9950
11589
|
"QVariant": 1,
|
9951
11590
|
"coffee2js": 1,
|
9952
11591
|
"script": 1,
|
@@ -9972,10 +11611,6 @@
|
|
9972
11611
|
"QTemporaryFile*": 2,
|
9973
11612
|
"m_tempHarness": 1,
|
9974
11613
|
"We": 1,
|
9975
|
-
"make": 1,
|
9976
|
-
"sure": 1,
|
9977
|
-
"clean": 1,
|
9978
|
-
"after": 1,
|
9979
11614
|
"ourselves": 1,
|
9980
11615
|
"m_tempWrapper": 1,
|
9981
11616
|
"V8_DECLARE_ONCE": 1,
|
@@ -10019,8 +11654,6 @@
|
|
10019
11654
|
"UnregisterAll": 1,
|
10020
11655
|
"OS": 3,
|
10021
11656
|
"seed_random": 2,
|
10022
|
-
"uint32_t*": 2,
|
10023
|
-
"state": 15,
|
10024
11657
|
"FLAG_random_seed": 2,
|
10025
11658
|
"val": 3,
|
10026
11659
|
"ScopedLock": 1,
|
@@ -10064,9 +11697,7 @@
|
|
10064
11697
|
"IncrementCallDepth": 1,
|
10065
11698
|
"DecrementCallDepth": 1,
|
10066
11699
|
"union": 1,
|
10067
|
-
"double": 23,
|
10068
11700
|
"double_value": 1,
|
10069
|
-
"uint64_t": 2,
|
10070
11701
|
"uint64_t_value": 1,
|
10071
11702
|
"double_int_union": 2,
|
10072
11703
|
"Object*": 4,
|
@@ -10083,8 +11714,6 @@
|
|
10083
11714
|
"SetUp": 4,
|
10084
11715
|
"FLAG_crankshaft": 1,
|
10085
11716
|
"Serializer": 1,
|
10086
|
-
"enabled": 1,
|
10087
|
-
"CPU": 2,
|
10088
11717
|
"SupportsCrankshaft": 1,
|
10089
11718
|
"PostSetUp": 1,
|
10090
11719
|
"RuntimeProfiler": 1,
|
@@ -10102,10 +11731,8 @@
|
|
10102
11731
|
"V8_V8_H_": 3,
|
10103
11732
|
"defined": 21,
|
10104
11733
|
"GOOGLE3": 2,
|
10105
|
-
"DEBUG": 3,
|
10106
11734
|
"NDEBUG": 4,
|
10107
11735
|
"both": 1,
|
10108
|
-
"set": 1,
|
10109
11736
|
"Deserializer": 1,
|
10110
11737
|
"AllStatic": 1,
|
10111
11738
|
"IsRunning": 1,
|
@@ -10121,15 +11748,10 @@
|
|
10121
11748
|
"PY_SSIZE_T_CLEAN": 1,
|
10122
11749
|
"Py_PYTHON_H": 1,
|
10123
11750
|
"Python": 1,
|
10124
|
-
"needed": 1,
|
10125
11751
|
"compile": 1,
|
10126
|
-
"C": 1,
|
10127
11752
|
"extensions": 1,
|
10128
|
-
"please": 1,
|
10129
|
-
"install": 1,
|
10130
11753
|
"development": 1,
|
10131
11754
|
"Python.": 1,
|
10132
|
-
"#else": 24,
|
10133
11755
|
"<stddef.h>": 1,
|
10134
11756
|
"offsetof": 2,
|
10135
11757
|
"member": 2,
|
@@ -10186,9 +11808,7 @@
|
|
10186
11808
|
"*buf": 1,
|
10187
11809
|
"PyObject": 221,
|
10188
11810
|
"*obj": 2,
|
10189
|
-
"len": 1,
|
10190
11811
|
"itemsize": 2,
|
10191
|
-
"readonly": 2,
|
10192
11812
|
"ndim": 2,
|
10193
11813
|
"*format": 1,
|
10194
11814
|
"*shape": 1,
|
@@ -10313,7 +11933,6 @@
|
|
10313
11933
|
"PyObject_DelAttrString": 2,
|
10314
11934
|
"__Pyx_NAMESTR": 3,
|
10315
11935
|
"__Pyx_DOCSTR": 3,
|
10316
|
-
"__cplusplus": 10,
|
10317
11936
|
"__PYX_EXTERN_C": 2,
|
10318
11937
|
"_USE_MATH_DEFINES": 1,
|
10319
11938
|
"<math.h>": 1,
|
@@ -10330,7 +11949,6 @@
|
|
10330
11949
|
"CYTHON_UNUSED": 7,
|
10331
11950
|
"**p": 1,
|
10332
11951
|
"*s": 1,
|
10333
|
-
"long": 5,
|
10334
11952
|
"encoding": 1,
|
10335
11953
|
"is_unicode": 1,
|
10336
11954
|
"is_str": 1,
|
@@ -10407,10 +12025,8 @@
|
|
10407
12025
|
"npy_longdouble": 1,
|
10408
12026
|
"__pyx_t_5numpy_longdouble_t": 1,
|
10409
12027
|
"complex": 2,
|
10410
|
-
"float": 7,
|
10411
12028
|
"__pyx_t_float_complex": 27,
|
10412
12029
|
"_Complex": 2,
|
10413
|
-
"real": 2,
|
10414
12030
|
"imag": 2,
|
10415
12031
|
"__pyx_t_double_complex": 27,
|
10416
12032
|
"npy_cfloat": 1,
|
@@ -10520,7 +12136,6 @@
|
|
10520
12136
|
"cabs": 1,
|
10521
12137
|
"cpow": 1,
|
10522
12138
|
"__Pyx_PyInt_AsUnsignedChar": 1,
|
10523
|
-
"short": 3,
|
10524
12139
|
"__Pyx_PyInt_AsUnsignedShort": 1,
|
10525
12140
|
"__Pyx_PyInt_AsUnsignedInt": 1,
|
10526
12141
|
"__Pyx_PyInt_AsChar": 1,
|
@@ -10742,7 +12357,6 @@
|
|
10742
12357
|
"NPY_F_CONTIGUOUS": 1,
|
10743
12358
|
"__pyx_k_tuple_8": 1,
|
10744
12359
|
"__pyx_L7": 2,
|
10745
|
-
"buf": 1,
|
10746
12360
|
"PyArray_DATA": 1,
|
10747
12361
|
"strides": 5,
|
10748
12362
|
"malloc": 2,
|
@@ -10789,7 +12403,6 @@
|
|
10789
12403
|
"__pyx_L2": 2,
|
10790
12404
|
"__pyx_pf_5numpy_7ndarray_1__releasebuffer__": 2,
|
10791
12405
|
"PyArray_HASFIELDS": 1,
|
10792
|
-
"free": 2,
|
10793
12406
|
"*__pyx_f_5numpy_PyArray_MultiIterNew1": 1,
|
10794
12407
|
"*__pyx_v_a": 5,
|
10795
12408
|
"PyArray_MultiIterNew": 5,
|
@@ -10816,11 +12429,9 @@
|
|
10816
12429
|
"__pyx_v_fields": 7,
|
10817
12430
|
"__pyx_v_childname": 4,
|
10818
12431
|
"__pyx_v_new_offset": 5,
|
10819
|
-
"names": 2,
|
10820
12432
|
"PyTuple_GET_SIZE": 2,
|
10821
12433
|
"PyTuple_GET_ITEM": 3,
|
10822
12434
|
"PyObject_GetItem": 1,
|
10823
|
-
"fields": 1,
|
10824
12435
|
"PyTuple_CheckExact": 1,
|
10825
12436
|
"tuple": 3,
|
10826
12437
|
"__pyx_ptype_5numpy_dtype": 1,
|
@@ -23374,6 +24985,50 @@
|
|
23374
24985
|
"}": 73,
|
23375
24986
|
"true": 3
|
23376
24987
|
},
|
24988
|
+
"JSON5": {
|
24989
|
+
"{": 6,
|
24990
|
+
"foo": 1,
|
24991
|
+
"while": 1,
|
24992
|
+
"true": 1,
|
24993
|
+
"this": 1,
|
24994
|
+
"here": 1,
|
24995
|
+
"//": 2,
|
24996
|
+
"inline": 1,
|
24997
|
+
"comment": 1,
|
24998
|
+
"hex": 1,
|
24999
|
+
"xDEADbeef": 1,
|
25000
|
+
"half": 1,
|
25001
|
+
".5": 1,
|
25002
|
+
"delta": 1,
|
25003
|
+
"+": 1,
|
25004
|
+
"to": 1,
|
25005
|
+
"Infinity": 1,
|
25006
|
+
"and": 1,
|
25007
|
+
"beyond": 1,
|
25008
|
+
"finally": 1,
|
25009
|
+
"oh": 1,
|
25010
|
+
"[": 3,
|
25011
|
+
"]": 3,
|
25012
|
+
"}": 6,
|
25013
|
+
"name": 1,
|
25014
|
+
"version": 1,
|
25015
|
+
"description": 1,
|
25016
|
+
"keywords": 1,
|
25017
|
+
"author": 1,
|
25018
|
+
"contributors": 1,
|
25019
|
+
"main": 1,
|
25020
|
+
"bin": 1,
|
25021
|
+
"dependencies": 1,
|
25022
|
+
"devDependencies": 1,
|
25023
|
+
"mocha": 1,
|
25024
|
+
"scripts": 1,
|
25025
|
+
"build": 1,
|
25026
|
+
"test": 1,
|
25027
|
+
"homepage": 1,
|
25028
|
+
"repository": 1,
|
25029
|
+
"type": 1,
|
25030
|
+
"url": 1
|
25031
|
+
},
|
23377
25032
|
"Julia": {
|
23378
25033
|
"##": 5,
|
23379
25034
|
"Test": 1,
|
@@ -33346,7 +35001,7 @@
|
|
33346
35001
|
"xmlns=": 1,
|
33347
35002
|
"<PropertyGroup>": 3,
|
33348
35003
|
"<RootNamespace>": 1,
|
33349
|
-
"Loops":
|
35004
|
+
"Loops": 2,
|
33350
35005
|
"</RootNamespace>": 1,
|
33351
35006
|
"<OutputType>": 1,
|
33352
35007
|
"exe": 1,
|
@@ -33369,19 +35024,19 @@
|
|
33369
35024
|
"Release": 2,
|
33370
35025
|
"</Configuration>": 1,
|
33371
35026
|
"<ProjectGuid>": 1,
|
33372
|
-
"{":
|
35027
|
+
"{": 1,
|
33373
35028
|
"BD89C": 1,
|
33374
35029
|
"-": 4,
|
33375
35030
|
"B610": 1,
|
33376
35031
|
"CEE": 1,
|
33377
35032
|
"CAF": 1,
|
33378
35033
|
"C515D88E2C94": 1,
|
33379
|
-
"}":
|
35034
|
+
"}": 1,
|
33380
35035
|
"</ProjectGuid>": 1,
|
33381
35036
|
"</PropertyGroup>": 3,
|
33382
35037
|
"<DefineConstants>": 1,
|
33383
35038
|
"DEBUG": 1,
|
33384
|
-
";":
|
35039
|
+
";": 2,
|
33385
35040
|
"TRACE": 1,
|
33386
35041
|
"</DefineConstants>": 1,
|
33387
35042
|
"<OutputPath>": 2,
|
@@ -33402,9 +35057,9 @@
|
|
33402
35057
|
"<Reference>": 5,
|
33403
35058
|
"Include=": 12,
|
33404
35059
|
"<HintPath>": 5,
|
33405
|
-
"(":
|
35060
|
+
"(": 5,
|
33406
35061
|
"Framework": 5,
|
33407
|
-
")":
|
35062
|
+
")": 5,
|
33408
35063
|
"mscorlib.dll": 1,
|
33409
35064
|
"</HintPath>": 5,
|
33410
35065
|
"</Reference>": 5,
|
@@ -33430,108 +35085,7 @@
|
|
33430
35085
|
"<None>": 1,
|
33431
35086
|
"SettingsSingleFileGenerator": 1,
|
33432
35087
|
"</None>": 1,
|
33433
|
-
"</Project>": 1
|
33434
|
-
"namespace": 1,
|
33435
|
-
"interface": 1,
|
33436
|
-
"uses": 1,
|
33437
|
-
"System.Linq": 1,
|
33438
|
-
"type": 3,
|
33439
|
-
"ConsoleApp": 2,
|
33440
|
-
"class": 4,
|
33441
|
-
"public": 3,
|
33442
|
-
"method": 6,
|
33443
|
-
"Main": 1,
|
33444
|
-
"loopsTesting": 1,
|
33445
|
-
"fillData": 2,
|
33446
|
-
"sequence": 3,
|
33447
|
-
"of": 6,
|
33448
|
-
"Country": 11,
|
33449
|
-
"var": 2,
|
33450
|
-
"Countries": 4,
|
33451
|
-
"end": 10,
|
33452
|
-
"property": 2,
|
33453
|
-
"Name": 2,
|
33454
|
-
"String": 6,
|
33455
|
-
"Capital": 2,
|
33456
|
-
"constructor": 2,
|
33457
|
-
"setName": 3,
|
33458
|
-
"setCapital": 3,
|
33459
|
-
"implementation": 1,
|
33460
|
-
"ConsoleApp.Main": 1,
|
33461
|
-
"begin": 8,
|
33462
|
-
"Console.WriteLine": 19,
|
33463
|
-
"with": 2,
|
33464
|
-
"myConsoleApp": 1,
|
33465
|
-
"new": 7,
|
33466
|
-
"do": 6,
|
33467
|
-
"myConsoleApp.loopsTesting": 1,
|
33468
|
-
"ConsoleApp.loopsTesting": 1,
|
33469
|
-
"loop": 6,
|
33470
|
-
"taking": 1,
|
33471
|
-
"every": 1,
|
33472
|
-
"th": 1,
|
33473
|
-
"item": 1,
|
33474
|
-
"for": 4,
|
33475
|
-
"i": 4,
|
33476
|
-
"Int32": 2,
|
33477
|
-
"to": 2,
|
33478
|
-
"step": 1,
|
33479
|
-
"Console.Write": 4,
|
33480
|
-
"going": 1,
|
33481
|
-
"from": 2,
|
33482
|
-
"high": 1,
|
33483
|
-
"low": 1,
|
33484
|
-
"value": 1,
|
33485
|
-
"downto": 1,
|
33486
|
-
"defined": 1,
|
33487
|
-
"variable": 1,
|
33488
|
-
"which": 1,
|
33489
|
-
"will": 1,
|
33490
|
-
"count": 1,
|
33491
|
-
"through": 1,
|
33492
|
-
"the": 2,
|
33493
|
-
"number": 1,
|
33494
|
-
"elements": 1,
|
33495
|
-
"looped": 1,
|
33496
|
-
"each": 2,
|
33497
|
-
"c": 2,
|
33498
|
-
"in": 2,
|
33499
|
-
"index": 1,
|
33500
|
-
"num": 2,
|
33501
|
-
"Convert.ToString": 1,
|
33502
|
-
"+": 5,
|
33503
|
-
"c.Name": 2,
|
33504
|
-
"ind": 12,
|
33505
|
-
"Integer": 1,
|
33506
|
-
"simple": 1,
|
33507
|
-
"construct": 1,
|
33508
|
-
"that": 1,
|
33509
|
-
"loops": 1,
|
33510
|
-
"endlessly": 1,
|
33511
|
-
"until": 2,
|
33512
|
-
"broken": 1,
|
33513
|
-
"out": 1,
|
33514
|
-
"Countries.ElementAt": 3,
|
33515
|
-
".Capital": 2,
|
33516
|
-
"Inc": 3,
|
33517
|
-
"if": 1,
|
33518
|
-
"Countries.Count": 3,
|
33519
|
-
"then": 1,
|
33520
|
-
"break": 1,
|
33521
|
-
"is": 1,
|
33522
|
-
"inferred": 1,
|
33523
|
-
"automatically": 1,
|
33524
|
-
"c.Capital": 1,
|
33525
|
-
"repeat": 1,
|
33526
|
-
"while": 1,
|
33527
|
-
"<": 1,
|
33528
|
-
".Name": 1,
|
33529
|
-
"Console.ReadLine": 1,
|
33530
|
-
"ConsoleApp.fillData": 1,
|
33531
|
-
"result": 1,
|
33532
|
-
"[": 1,
|
33533
|
-
"]": 1,
|
33534
|
-
"end.": 1
|
35088
|
+
"</Project>": 1
|
33535
35089
|
},
|
33536
35090
|
"Parrot Assembly": {
|
33537
35091
|
"SHEBANG#!parrot": 1,
|
@@ -38524,6 +40078,23 @@
|
|
38524
40078
|
"func": 1,
|
38525
40079
|
"print": 1
|
38526
40080
|
},
|
40081
|
+
"RMarkdown": {
|
40082
|
+
"Some": 1,
|
40083
|
+
"text.": 1,
|
40084
|
+
"##": 1,
|
40085
|
+
"A": 1,
|
40086
|
+
"graphic": 1,
|
40087
|
+
"in": 1,
|
40088
|
+
"R": 1,
|
40089
|
+
"{": 1,
|
40090
|
+
"r": 1,
|
40091
|
+
"}": 1,
|
40092
|
+
"plot": 1,
|
40093
|
+
"(": 3,
|
40094
|
+
")": 3,
|
40095
|
+
"hist": 1,
|
40096
|
+
"rnorm": 1
|
40097
|
+
},
|
38527
40098
|
"RobotFramework": {
|
38528
40099
|
"***": 16,
|
38529
40100
|
"Settings": 3,
|
@@ -44771,7 +46342,7 @@
|
|
44771
46342
|
"Bluespec": 1298,
|
44772
46343
|
"Brightscript": 579,
|
44773
46344
|
"C": 58858,
|
44774
|
-
"C++":
|
46345
|
+
"C++": 31175,
|
44775
46346
|
"Ceylon": 50,
|
44776
46347
|
"Clojure": 510,
|
44777
46348
|
"COBOL": 90,
|
@@ -44805,6 +46376,7 @@
|
|
44805
46376
|
"Java": 8987,
|
44806
46377
|
"JavaScript": 76934,
|
44807
46378
|
"JSON": 183,
|
46379
|
+
"JSON5": 57,
|
44808
46380
|
"Julia": 247,
|
44809
46381
|
"Kotlin": 155,
|
44810
46382
|
"KRL": 25,
|
@@ -44838,7 +46410,7 @@
|
|
44838
46410
|
"OpenCL": 144,
|
44839
46411
|
"OpenEdge ABL": 762,
|
44840
46412
|
"Org": 358,
|
44841
|
-
"Oxygene":
|
46413
|
+
"Oxygene": 157,
|
44842
46414
|
"Parrot Assembly": 6,
|
44843
46415
|
"Parrot Internal Representation": 5,
|
44844
46416
|
"Pascal": 30,
|
@@ -44856,6 +46428,7 @@
|
|
44856
46428
|
"Ragel in Ruby Host": 593,
|
44857
46429
|
"RDoc": 279,
|
44858
46430
|
"Rebol": 11,
|
46431
|
+
"RMarkdown": 19,
|
44859
46432
|
"RobotFramework": 483,
|
44860
46433
|
"Ruby": 3862,
|
44861
46434
|
"Rust": 3566,
|
@@ -44905,7 +46478,7 @@
|
|
44905
46478
|
"Bluespec": 2,
|
44906
46479
|
"Brightscript": 1,
|
44907
46480
|
"C": 26,
|
44908
|
-
"C++":
|
46481
|
+
"C++": 26,
|
44909
46482
|
"Ceylon": 1,
|
44910
46483
|
"Clojure": 7,
|
44911
46484
|
"COBOL": 4,
|
@@ -44939,6 +46512,7 @@
|
|
44939
46512
|
"Java": 6,
|
44940
46513
|
"JavaScript": 20,
|
44941
46514
|
"JSON": 4,
|
46515
|
+
"JSON5": 2,
|
44942
46516
|
"Julia": 1,
|
44943
46517
|
"Kotlin": 1,
|
44944
46518
|
"KRL": 1,
|
@@ -44972,7 +46546,7 @@
|
|
44972
46546
|
"OpenCL": 2,
|
44973
46547
|
"OpenEdge ABL": 5,
|
44974
46548
|
"Org": 1,
|
44975
|
-
"Oxygene":
|
46549
|
+
"Oxygene": 1,
|
44976
46550
|
"Parrot Assembly": 1,
|
44977
46551
|
"Parrot Internal Representation": 1,
|
44978
46552
|
"Pascal": 1,
|
@@ -44990,6 +46564,7 @@
|
|
44990
46564
|
"Ragel in Ruby Host": 3,
|
44991
46565
|
"RDoc": 1,
|
44992
46566
|
"Rebol": 1,
|
46567
|
+
"RMarkdown": 1,
|
44993
46568
|
"RobotFramework": 3,
|
44994
46569
|
"Ruby": 17,
|
44995
46570
|
"Rust": 1,
|
@@ -45025,5 +46600,5 @@
|
|
45025
46600
|
"Xtend": 2,
|
45026
46601
|
"YAML": 1
|
45027
46602
|
},
|
45028
|
-
"md5": "
|
46603
|
+
"md5": "7ab5683c610f7e81d6ea5fb470111bbe"
|
45029
46604
|
}
|