-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.viminfo
1500 lines (1385 loc) · 23.8 KB
/
.viminfo
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# This viminfo file was generated by Vim 7.4.
# You may edit it if you are careful!
# Value of 'encoding' when this file was written
*encoding=utf-8
# hlsearch on (H) or off (h):
~h
# Last Search Pattern:
~MSle0~/command
# Last Substitute Search Pattern:
~MSle0&COHERENTTRAFFICCHIREPLICATORCHECK
# Last Substitute String:
$COHERENTTRAFFICCHIREPLICATORRACECACHECHECK
# Command Line History (newest to oldest):
:q
:wq
:/
:/command
:w
:/GOT_RG
:/commanmd
:/module_grepper
:/PROMPT
:wxit
:/return
:/returm
:/PS1
:12
:12\
:q!
:/start
:n
:/module_find_all
:/update
:/BOOST
:/system
:/SYSTEM
:/SYSTEM_ARCH
:/alias
:/invalid
:/evict
:!
:tag
:h tags
:tags
# Search String History (newest to oldest):
? command
? GOT_RG
? commanmd
? module_grepper
? PROMPT
? return
? returm
? PS1
? start
? module_find_all
? update
? BOOST
? system
? SYSTEM
? SYSTEM_ARCH
? alias
? invalid
? evict
? ::allocate
? tags
? get_next
? invalid_lines
? line_id
? get_line_state
? lkasjdlksaj
?/Resp
? resp
??Resp:
# Expression History (newest to oldest):
# Input Line History (newest to oldest):
# Input Line History (newest to oldest):
# Registers:
"0 LINE 0
export LD_LIBRARY_PATH="${ROOT_ENV_PATH}/lib:${LD_LIBRARY_PATH}"
""1 LINE 0
fi
"2 LINE 0
return
"3 LINE 0
else
"4 LINE 0
fi
"5 LINE 0
export GOT_RG=1
"6 LINE 0
then
"7 LINE 0
if [ -z "${GOT_RG}" ]
"8 LINE 0
unset PS1
"9 LINE 0
colorscheme industry
"a CHAR 0
kra
"q CHAR 0
:q!
"- CHAR 0
# File marks:
'0 23 0 ~/.bashfuncs
'1 36 9 ~/.bashfuncs
'2 50 0 ~/.bashrc
'3 13 23 ~/.profile
'4 9 8 ~/.profile
'5 54 0 ~/.bashfuncs
'6 188 0 ~/.bashfuncs
'7 191 5 ~/.bashfuncs
'8 170 13 ~/.bashfuncs
'9 19 4 ~/.profile
# Jumplist (newest first):
-' 23 0 ~/.bashfuncs
-' 36 8 ~/.bashfuncs
-' 54 4 ~/.bashfuncs
-' 50 0 ~/.bashrc
-' 1 0 ~/.bashrc
-' 13 23 ~/.profile
-' 9 0 ~/.profile
-' 19 4 ~/.profile
-' 188 0 ~/.bashfuncs
-' 170 7 ~/.bashfuncs
-' 169 30 ~/.bashfuncs
-' 153 16 ~/.bashfuncs
-' 85 7 ~/.bashfuncs
-' 53 7 ~/.bashfuncs
-' 49 9 ~/.bashfuncs
-' 191 4 ~/.bashfuncs
-' 31 9 ~/.bashfuncs
-' 26 9 ~/.bashfuncs
-' 410 3 ~/.bashfuncs
-' 396 5 ~/.bashfuncs
-' 383 3 ~/.bashfuncs
-' 362 3 ~/.bashfuncs
-' 355 3 ~/.bashfuncs
-' 243 13 ~/.bashfuncs
-' 201 9 ~/.bashfuncs
-' 196 48 ~/.bashfuncs
-' 189 5 ~/.bashfuncs
-' 52 8 ~/.bashfuncs
-' 20 4 ~/.profile
-' 1 0 ~/.profile
-' 222 12 ~/.bashfuncs
-' 234 12 ~/.bashfuncs
-' 172 0 ~/.bashfuncs
-' 142 8 ~/.bashfuncs
-' 13 4 ~/.bashfuncs
-' 240 0 ~/.bashfuncs
-' 6 15 ~/.vimrc
-' 7 0 ~/.vimrc
-' 5 0 ~/.vimrc
-' 6 0 ~/bin/start_urxvt.sh
-' 1 0 ~/bin/start_urxvt.sh
-' 179 8 ~/.bashfuncs
-' 17 10 ~/bin/start_urxvt_aarch64.sh
-' 3 0 ~/bin/start_urxvt_aarch64.sh
-' 3 33 ~/bin/start_urxvt_x86_64.sh
-' 1 0 ~/bin/start_urxvt_x86_64.sh
-' 1 0 ~/bin/start_urxvt_aarch64.sh
-' 184 4 ~/.bashfuncs
-' 1 0 ~/.bashfuncs
-' 178 0 /arm/projectscratch/ssg/perf_models/users/ryahar02/nci_booker/CMakeLists.txt
-' 178 0 /arm/projectscratch/ssg/perf_models/users/ryahar02/nci_booker/CMakeLists.txt
-' 178 0 /arm/projectscratch/ssg/perf_models/users/ryahar02/nci_booker/CMakeLists.txt
-' 178 0 /arm/projectscratch/ssg/perf_models/users/ryahar02/nci_booker/CMakeLists.txt
-' 178 0 /arm/projectscratch/ssg/perf_models/users/ryahar02/nci_booker/CMakeLists.txt
-' 178 0 /arm/projectscratch/ssg/perf_models/users/ryahar02/nci_booker/CMakeLists.txt
-' 178 0 /arm/projectscratch/ssg/perf_models/users/ryahar02/nci_booker/CMakeLists.txt
-' 178 0 /arm/projectscratch/ssg/perf_models/users/ryahar02/nci_booker/CMakeLists.txt
-' 149 4 /arm/projectscratch/ssg/perf_models/users/ryahar02/nci_booker/CMakeLists.txt
-' 149 4 /arm/projectscratch/ssg/perf_models/users/ryahar02/nci_booker/CMakeLists.txt
-' 149 4 /arm/projectscratch/ssg/perf_models/users/ryahar02/nci_booker/CMakeLists.txt
-' 149 4 /arm/projectscratch/ssg/perf_models/users/ryahar02/nci_booker/CMakeLists.txt
-' 149 4 /arm/projectscratch/ssg/perf_models/users/ryahar02/nci_booker/CMakeLists.txt
-' 149 4 /arm/projectscratch/ssg/perf_models/users/ryahar02/nci_booker/CMakeLists.txt
-' 149 4 /arm/projectscratch/ssg/perf_models/users/ryahar02/nci_booker/CMakeLists.txt
-' 149 4 /arm/projectscratch/ssg/perf_models/users/ryahar02/nci_booker/CMakeLists.txt
-' 4 0 ~/.vimrc
-' 2 0 ~/.vimrc
-' 6 0 ~/bin/start_urxvt.sh
-' 1 0 ~/bin/start_urxvt.sh
-' 17 10 ~/bin/start_urxvt_aarch64.sh
-' 3 0 ~/bin/start_urxvt_aarch64.sh
-' 3 33 ~/bin/start_urxvt_x86_64.sh
-' 1 0 ~/bin/start_urxvt_x86_64.sh
-' 1 0 ~/bin/start_urxvt_aarch64.sh
-' 178 0 /arm/projectscratch/ssg/perf_models/users/ryahar02/nci_booker/CMakeLists.txt
-' 178 0 /arm/projectscratch/ssg/perf_models/users/ryahar02/nci_booker/CMakeLists.txt
-' 178 0 /arm/projectscratch/ssg/perf_models/users/ryahar02/nci_booker/CMakeLists.txt
-' 178 0 /arm/projectscratch/ssg/perf_models/users/ryahar02/nci_booker/CMakeLists.txt
-' 178 0 /arm/projectscratch/ssg/perf_models/users/ryahar02/nci_booker/CMakeLists.txt
-' 178 0 /arm/projectscratch/ssg/perf_models/users/ryahar02/nci_booker/CMakeLists.txt
-' 178 0 /arm/projectscratch/ssg/perf_models/users/ryahar02/nci_booker/CMakeLists.txt
-' 178 0 /arm/projectscratch/ssg/perf_models/users/ryahar02/nci_booker/CMakeLists.txt
-' 149 4 /arm/projectscratch/ssg/perf_models/users/ryahar02/nci_booker/CMakeLists.txt
-' 149 4 /arm/projectscratch/ssg/perf_models/users/ryahar02/nci_booker/CMakeLists.txt
-' 149 4 /arm/projectscratch/ssg/perf_models/users/ryahar02/nci_booker/CMakeLists.txt
-' 149 4 /arm/projectscratch/ssg/perf_models/users/ryahar02/nci_booker/CMakeLists.txt
-' 414 3 ~/.bashfuncs
-' 173 7 ~/.bashfuncs
-' 156 16 ~/.bashfuncs
-' 88 7 ~/.bashfuncs
-' 56 7 ~/.bashfuncs
-' 194 4 ~/.bashfuncs
-' 413 3 ~/.bashfuncs
-' 399 5 ~/.bashfuncs
-' 386 3 ~/.bashfuncs
-' 365 3 ~/.bashfuncs
-' 358 3 ~/.bashfuncs
-' 246 13 ~/.bashfuncs
# History of marks within files (newest to oldest):
> ~/.bashfuncs
" 23 0
^ 36 10
. 36 9
+ 169 98
+ 172 96
+ 178 15
+ 177 1
+ 178 21
+ 180 7
+ 179 39
+ 183 5
+ 184 45
+ 184 59
+ 240 232
+ 13 30
+ 170 13
+ 243 25
+ 243 7
+ 243 3
+ 244 7
+ 245 11
+ 246 3
+ 247 7
+ 247 67
+ 249 5
+ 247 26
+ 7 6
+ 191 20
+ 196 32
+ 243 4
+ 244 4
+ 245 7
+ 246 4
+ 247 7
+ 247 0
+ 249 0
+ 248 3
+ 247 56
+ 243 7
+ 410 3
+ 189 5
+ 194 5
+ 49 39
+ 52 5
+ 30 0
+ 36 9
> ~/.bashrc
" 50 0
^ 248 89
. 248 89
+ 53 0
+ 54 0
+ 69 5
+ 69 0
+ 69 3
+ 69 0
+ 69 7
+ 67 89
+ 69 3
+ 69 0
+ 69 3
+ 69 0
+ 87 1
+ 69 23
+ 70 0
+ 71 57
+ 72 0
+ 71 59
+ 74 26
+ 76 0
+ 69 4
+ 76 3
+ 79 0
+ 77 0
+ 79 0
+ 79 92
+ 76 61
+ 84 0
+ 79 8
+ 77 1
+ 72 1
+ 84 29
+ 80 0
+ 81 76
+ 82 0
+ 84 8
+ 82 1
+ 85 0
+ 86 77
+ 87 0
+ 86 78
+ 88 0
+ 71 38
+ 69 0
+ 52 38
+ 71 15
+ 72 15
+ 114 64
+ 116 66
+ 248 89
> ~/.profile
" 13 23
^ 13 24
. 14 0
+ 20 0
+ 19 9
+ 9 31
+ 15 1
+ 14 4
+ 13 7
+ 11 4
+ 14 0
> ~/.vimrc
" 6 15
^ 6 15
. 6 0
+ 72 1
+ 3 0
+ 2 0
+ 3 0
+ 4 19
+ 2 14
+ 4 13
+ 5 0
+ 5 13
+ 4 0
+ 7 9
+ 7 0
+ 6 0
> ~/bin/start_urxvt.sh
" 6 0
^ 6 40
. 6 39
+ 6 39
> ~/bin/start_urxvt_aarch64.sh
" 17 10
^ 17 11
. 3 30
+ 3 30
> ~/bin/start_urxvt_x86_64.sh
" 3 33
^ 3 34
. 3 33
+ 3 33
> /arm/projectscratch/ssg/perf_models/users/ryahar02/nci_booker/CMakeLists.txt
* 1707754068 0
" 178 0
^ 165 11
. 165 10
+ 23 17
+ 23 38
+ 25 10
+ 24 0
+ 24 26
+ 25 11
+ 26 26
+ 27 24
+ 29 0
+ 148 66
+ 149 7
+ 150 11
+ 151 3
+ 152 7
+ 153 11
+ 154 3
+ 155 7
+ 156 3
+ 157 7
+ 158 3
+ 159 7
+ 160 11
+ 161 15
+ 162 3
+ 163 7
+ 164 15
+ 165 10
> /arm/projectscratch/ssg/perf_models/users/ryahar02/nci_build.sh
* 1707753789 0
" 55 1
^ 67 30
. 67 29
+ 45 52
+ 46 58
+ 64 34
+ 67 27
+ 68 32
+ 67 29
> /arm/projectscratch/ssg/perf_models/users/ryahar02/nci_booker/dotbashrc
* 1707752821 0
" 131 90
> /projects/ssg/perf_models/users/ryahar02/reg/opt/source_opt
" 1 0
^ 14 34
. 14 33
+ 4 0
+ 12 25
+ 16 0
+ 12 62
+ 8 37
+ 2 45
+ 18 15
+ 17 0
+ 18 0
+ 18 37
+ 21 33
+ 22 1
+ 21 18
+ 20 6
+ 20 18
+ 18 0
+ 24 15
+ 19 0
+ 13 0
+ 14 0
+ 13 15
+ 14 9
+ 13 45
+ 14 33
> /projects/ssg/perf_models/users/ryahar02/reg/source_reg
" 1 6
^ 1 7
. 1 6
+ 61 21
+ 64 50
+ 64 0
+ 63 0
+ 64 0
+ 99 19
+ 158 0
+ 158 7
+ 158 19
+ 158 0
+ 106 23
+ 114 5
+ 101 17
+ 157 16
+ 105 0
+ 117 10
+ 116 17
+ 117 36
+ 119 0
+ 117 35
+ 107 19
+ 108 0
+ 109 7
+ 110 11
+ 113 12
+ 113 11
+ 111 21
+ 114 0
+ 112 26
+ 107 18
+ 124 0
+ 157 7
+ 125 28
+ 125 4
+ 157 0
+ 125 25
+ 137 7
+ 138 25
+ 138 23
+ 137 6
+ 117 0
+ 131 8
+ 132 7
+ 133 11
+ 134 21
+ 136 12
+ 137 0
+ 123 0
+ 135 11
+ 130 27
+ 134 31
+ 122 48
+ 117 44
+ 116 18
+ 141 0
+ 142 19
+ 146 23
+ 149 0
+ 280 100
+ 281 98
+ 107 16
+ 111 20
+ 148 12
+ 149 0
+ 242 39
+ 129 21
+ 150 0
+ 150 4
+ 151 0
+ 150 0
+ 114 0
+ 118 0
+ 117 40
+ 122 68
+ 130 47
+ 134 51
+ 142 49
+ 146 53
+ 34 7
+ 34 22
+ 35 0
+ 101 7
+ 101 22
+ 102 0
+ 11 7
+ 11 22
+ 12 0
+ 8 0
+ 11 0
+ 294 7
+ 11 4
+ 12 0
+ 11 9
+ 34 0
+ 35 0
+ 34 9
+ 101 0
+ 102 0
+ 101 9
+ 1 6
> /projects/ssg/perf_models/users/ryahar02/systems/models/CoherentTraffic/CoherentTrafficReplicatorCHIParams.cpp
" 42 0
> /projects/ssg/perf_models/users/ryahar02/systems/models/CoherentTraffic/CoherentTrafficReplicatorCHIL2Params.cpp
" 140 4
> /projects/ssg/perf_models/users/ryahar02/systems/.git/COMMIT_EDITMSG
" 1 0
^ 1 44
. 1 44
+ 1 29
+ 3 0
+ 1 40
+ 2 70
+ 2 43
+ 1 45
+ 2 0
+ 1 9
+ 1 43
+ 1 44
> /projects/ssg/perf_models/users/ryahar02/systems/include/ARM/ModelBits/CoherentTraffic/CoherentTrafficCHIInitiatorAdapter.h
" 144 0
> /projects/ssg/perf_models/users/ryahar02/systems/apis/ModelBits/CoherentTraffic/CoherentTrafficReplicatorCHIL2InitiatorAdapter.h
" 158 0
> /projects/ssg/perf_models/users/ryahar02/systems/apis/ModelBits/CoherentTraffic/CoherentTrafficCHIInitiatorAdapter.cpp
" 1098 4
^ 378 113
. 1066 0
+ 82 25
+ 83 68
+ 84 0
+ 379 0
+ 378 98
+ 557 0
+ 556 0
+ 378 50
+ 556 137
+ 1021 0
+ 1020 130
+ 1064 0
+ 1065 0
+ 1064 86
+ 83 51
+ 378 55
+ 556 63
+ 1020 55
+ 1064 55
+ 378 112
+ 1067 0
+ 1066 0
> /projects/ssg/perf_models/users/ryahar02/systems/apis/ModelBits/CoherentTraffic/CoherentTrafficCHITraceCacheInitiatorAdapter.cpp
" 1124 8
. 70 0
+ 1307 92
+ 970 12
+ 1325 0
+ 1325 6
+ 1325 0
+ 1325 4
+ 1325 11
+ 1325 6
+ 1325 0
+ 1307 29
+ 1334 33
+ 1324 0
+ 1323 7
+ 1322 14
+ 1320 0
+ 1322 15
+ 1320 25
+ 1321 27
+ 1323 71
+ 1314 26
+ 1315 30
+ 1316 67
+ 1323 72
+ 1324 0
+ 1316 68
+ 1320 0
+ 1319 66
+ 1317 25
+ 1318 25
+ 1324 0
+ 1314 0
+ 1310 5
+ 1314 0
+ 1313 65
+ 1312 24
+ 1311 24
+ 1324 0
+ 1325 0
+ 1324 0
+ 1336 99
+ 1356 0
+ 1354 0
+ 1336 33
+ 1348 0
+ 1341 30
+ 1344 86
+ 1353 8
+ 1341 52
+ 1329 39
+ 1330 40
+ 1341 73
+ 1346 60
+ 1351 54
+ 1351 55
+ 1355 156
+ 1311 28
+ 1312 28
+ 1314 28
+ 1315 28
+ 1317 28
+ 1318 28
+ 1320 28
+ 1321 28
+ 1313 68
+ 1314 0
+ 1314 66
+ 1314 30
+ 1314 0
+ 1334 0
+ 1332 4
+ 1333 4
+ 1336 0
+ 1331 0
+ 1332 49
+ 1333 7
+ 1334 55
+ 1335 0
+ 1340 58
+ 1342 58
+ 1347 58
+ 1352 78
+ 1355 120
+ 1352 58
+ 68 42
+ 68 12
+ 70 0
+ 68 44
+ 70 82
+ 71 0
+ 71 47
+ 70 53
+ 71 0
+ 70 0
> /projects/ssg/perf_models/users/ryahar02/systems/apis/ModelBits/CHI/CacheStructure.cpp
* 1663158229 0
" 766 0
^ 377 54
. 377 53
+ 1694 104
+ 1662 90
+ 1101 0
+ 1209 0
+ 1694 104
+ 1662 91
+ 1630 104
+ 1601 108
+ 1572 111
+ 1524 104
+ 1661 8
+ 1209 0
+ 1101 0
+ 26 38
+ 21 67
+ 25 0
+ 26 0
+ 25 56
+ 21 0
+ 25 0
+ 26 0
+ 28 0
+ 100 104
+ 104 76
+ 114 87
+ 100 30
+ 104 34
+ 114 23
+ 100 31
+ 104 35
+ 114 0
+ 100 0
+ 104 0
+ 114 0
+ 376 35
+ 377 0
+ 190 16
+ 377 53
> /projects/ssg/perf_models/users/ryahar02/systems/apis/ModelBits/CoherentTraffic/CachePipeline.h
* 1663157728 0
" 27 0
> ~/.ctags
* 1663077009 0
" 20 15
^ 20 16
. 20 0
+ 20 0
> /arm/tools/vim/vim/8.2/rhe7-x86_64/share/vim/vim82/doc/tagsrch.txt
* 1663076703 0
" 169 0
> /projects/ssg/perf_models/users/ryahar02/reg/opt/build/Makefile
* 1663076533 0
" 836 1
> ~./vimrc
* 1663073894 0
" 1 0
> /projects/ssg/perf_models/users/ryahar02/systems/experiments/Fornax/test_tracecache_reps/dsu_out0_network_dsu0_s.c5i
* 1663073631 0
" 70 69
> /projects/ssg/perf_models/users/ryahar02/systems/experiments/Fornax/test_tracecache_reps/run.out
* 1663073439 0
" 1980142 0
> /projects/ssg/perf_models/users/ryahar02/systems/apis/ModelBits/CHI/CacheStructure.h
* 1663061921 0
" 609 0
^ 608 0
. 604 89
+ 69 0
+ 70 0
+ 69 0
+ 606 95
+ 606 0
+ 603 78
+ 604 89
> /projects/ssg/perf_models/users/ryahar02/systems/experiments/Fornax/test_tracecache_reps/run.sh
* 1662999556 0
" 14 0
^ 14 15
. 14 14
+ 20 46
+ 21 27
+ 22 27
+ 23 27
+ 15 18
+ 15 0
+ 15 10
+ 24 0
+ 23 47
+ 15 0
+ 13 58
+ 14 14
> /projects/ssg/perf_models/users/ryahar02/systems/apis/ModelBits/CoherentTraffic/CoherentTrafficCHITraceCacheInitiatorAdapter.h
* 1662995969 0
" 212 4
^ 212 88
. 212 87
+ 4 0
+ 12 0
+ 1 59
+ 2 59
+ 23 0
+ 345 64
+ 95 0
+ 103 0
+ 22 0
+ 9 0
+ 7 0
+ 6 35
+ 1 0
+ 20 33
+ 167 32
+ 160 31
+ 6 0
+ 7 0
+ 6 0
+ 7 0
+ 6 0
+ 9 0
+ 8 24
+ 226 0
+ 225 32
+ 210 90
+ 210 64
+ 137 25
+ 142 0
+ 140 23
+ 142 5
+ 141 17
+ 210 85
+ 210 21
+ 213 0
+ 143 0
+ 158 85
+ 158 0
+ 158 9
+ 158 0
+ 159 0
+ 257 0
+ 258 72
+ 137 14
+ 258 0
+ 137 9
+ 144 73
+ 157 0
+ 148 0
+ 150 25
+ 152 25
+ 147 0
+ 148 3
+ 150 7
+ 152 40
+ 156 0
+ 155 32
+ 157 0
+ 149 34
+ 151 41
+ 153 35
+ 148 16
+ 150 16
+ 152 17
+ 211 70
+ 212 4
+ 212 87
> /projects/ssg/perf_models/users/ryahar02/systems/CoherentTrafficCHITraceCacheInitiatorAdapter.h
* 1662995954 0
" 1 0
> /projects/ssg/perf_models/users/ryahar02/systems/models/CHINetwork/src/Network/CHINetworkHNFParams.cpp
* 1662995920 0
" 227 8
> /projects/ssg/perf_models/users/ryahar02/systems/models/CHINetwork/src/Network/CHINetworkHNFL3SF.cpp
* 1662995873 0
" 118 1
> /projects/ssg/perf_models/users/ryahar02/systems/apis/ModelBits/CoherentTraffic/CachePipeline.cpp
* 1662995814 0
" 115 4
> /projects/ssg/perf_models/users/ryahar02/reg/opt/install/amba-tlm/include/ARM/TLM/arm_chi_phase.h
* 1662992330 0
" 229 0
. 124 0
+ 124 0
> /projects/ssg/perf_models/users/ryahar02/systems/include/ARM/ModelBase/CHI/CHI.cpp
* 1662991573 0
" 376 0
> /projects/ssg/perf_models/users/ryahar02/systems/include/ARM/ModelBase/CHI/CHI.h
* 1662991236 0
" 682 0
> /projects/ssg/perf_models/users/ryahar02/systems/experiments/Fornax/test_tracecache_reps/chi_c5i_traffic.repo
* 1662644164 0
" 77 16
^ 73 59
. 73 58
+ 19 36
+ 63 19
+ 78 0
+ 63 18
+ 78 32
+ 63 18
+ 78 0
+ 65 34
+ 66 71
+ 65 0
+ 68 0
+ 65 0
+ 68 0
+ 77 15
+ 64 16
+ 69 41
+ 75 54
+ 198 18
+ 199 0
+ 198 17
+ 200 32
+ 204 42
+ 210 37
+ 214 0
+ 114 27
+ 115 0
+ 114 26
+ 116 42
+ 119 0
+ 70 44
+ 73 58
> /projects/ssg/perf_models/users/ryahar02/reg/opt/source_reg
* 1662634628 0
" 1 0
> /projects/ssg/perf_models/users/ryahar02/source_reg
* 1662634503 0
" 1 0
> /projects/ssg/perf_models/source_reg
* 1662634485 0
" 1 0
> /projects/ssg/perf_models/users/source_reg
* 1662634480 0
" 1 0
> /projects/ssg/perf_models/users/ryahar02/systems/source_reg
* 1662634469 0
" 1 0
> /projects/ssg/perf_models/users/ryahar02/systems/experiments/source_reg
* 1662634463 0
" 1 0
> /projects/ssg/perf_models/users/ryahar02/systems/examples/native/chi_c5i_traffic/run.sh
* 1662565445 0
" 19 9
^ 19 10
. 19 9
+ 20 0
+ 19 9
> /projects/ssg/perf_models/users/ryahar02/systems/experiments/Fornax/test_replicator_ebm_DMC500_3reps_cache_spec2k6/repos/dsu/tc2023_ebm.repo
* 1662565340 0
" 140 20
> /projects/ssg/perf_models/users/ryahar02/systems/models/CoherentTraffic/CoherentTrafficReplicatorCHITraceCacheParams.cpp
* 1662562082 0
" 145 71