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
|
/* C code produced by gperf version 3.0.3 */
/* Command-line: gperf --output-file atoms.c atoms.gperf */
/* Computed positions: -k'3,6,9,$' */
#if !((' ' == 32) && ('!' == 33) && ('"' == 34) && ('#' == 35) \
&& ('%' == 37) && ('&' == 38) && ('\'' == 39) && ('(' == 40) \
&& (')' == 41) && ('*' == 42) && ('+' == 43) && (',' == 44) \
&& ('-' == 45) && ('.' == 46) && ('/' == 47) && ('0' == 48) \
&& ('1' == 49) && ('2' == 50) && ('3' == 51) && ('4' == 52) \
&& ('5' == 53) && ('6' == 54) && ('7' == 55) && ('8' == 56) \
&& ('9' == 57) && (':' == 58) && (';' == 59) && ('<' == 60) \
&& ('=' == 61) && ('>' == 62) && ('?' == 63) && ('A' == 65) \
&& ('B' == 66) && ('C' == 67) && ('D' == 68) && ('E' == 69) \
&& ('F' == 70) && ('G' == 71) && ('H' == 72) && ('I' == 73) \
&& ('J' == 74) && ('K' == 75) && ('L' == 76) && ('M' == 77) \
&& ('N' == 78) && ('O' == 79) && ('P' == 80) && ('Q' == 81) \
&& ('R' == 82) && ('S' == 83) && ('T' == 84) && ('U' == 85) \
&& ('V' == 86) && ('W' == 87) && ('X' == 88) && ('Y' == 89) \
&& ('Z' == 90) && ('[' == 91) && ('\\' == 92) && (']' == 93) \
&& ('^' == 94) && ('_' == 95) && ('a' == 97) && ('b' == 98) \
&& ('c' == 99) && ('d' == 100) && ('e' == 101) && ('f' == 102) \
&& ('g' == 103) && ('h' == 104) && ('i' == 105) && ('j' == 106) \
&& ('k' == 107) && ('l' == 108) && ('m' == 109) && ('n' == 110) \
&& ('o' == 111) && ('p' == 112) && ('q' == 113) && ('r' == 114) \
&& ('s' == 115) && ('t' == 116) && ('u' == 117) && ('v' == 118) \
&& ('w' == 119) && ('x' == 120) && ('y' == 121) && ('z' == 122) \
&& ('{' == 123) && ('|' == 124) && ('}' == 125) && ('~' == 126))
/* The character set is not based on ISO-646. */
error "gperf generated tables don't work with this execution character set. Please report a bug to <bug-gnu-gperf@gnu.org>."
#endif
#line 1 "atoms.gperf"
/* Rely on vasprintf (GNU extension) instead of vsnprintf if
possible... */
#ifdef HAVE_VASPRINTF
#define _GNU_SOURCE
#include <stdio.h>
#endif
#include <xcb/xcb.h>
#include <stdlib.h>
#include <stdarg.h>
#include "xcb_atom.h"
#line 25 "atoms.gperf"
struct atom_map { int name; xcb_atom_t value; };
#include <string.h>
/* maximum key range = 146, duplicates = 0 */
#ifdef __GNUC__
__inline
#else
#ifdef __cplusplus
inline
#endif
#endif
static unsigned int
hash (str, len)
register const char *str;
register unsigned int len;
{
static const unsigned char asso_values[] =
{
150, 150, 150, 150, 150, 150, 150, 150, 150, 150,
150, 150, 150, 150, 150, 150, 150, 150, 150, 150,
150, 150, 150, 150, 150, 150, 150, 150, 150, 150,
150, 150, 150, 150, 150, 150, 150, 150, 150, 150,
150, 150, 150, 150, 150, 150, 150, 150, 75, 70,
65, 60, 40, 35, 20, 5, 150, 150, 150, 150,
150, 150, 150, 150, 150, 35, 0, 45, 15, 0,
150, 50, 0, 5, 150, 150, 15, 35, 0, 40,
5, 150, 10, 15, 0, 25, 150, 20, 70, 40,
55, 150, 150, 150, 150, 15, 150, 150, 150, 150,
150, 150, 150, 150, 150, 150, 150, 150, 150, 150,
150, 150, 150, 150, 150, 150, 150, 150, 150, 150,
150, 150, 150, 150, 150, 150, 150, 150, 150, 150,
150, 150, 150, 150, 150, 150, 150, 150, 150, 150,
150, 150, 150, 150, 150, 150, 150, 150, 150, 150,
150, 150, 150, 150, 150, 150, 150, 150, 150, 150,
150, 150, 150, 150, 150, 150, 150, 150, 150, 150,
150, 150, 150, 150, 150, 150, 150, 150, 150, 150,
150, 150, 150, 150, 150, 150, 150, 150, 150, 150,
150, 150, 150, 150, 150, 150, 150, 150, 150, 150,
150, 150, 150, 150, 150, 150, 150, 150, 150, 150,
150, 150, 150, 150, 150, 150, 150, 150, 150, 150,
150, 150, 150, 150, 150, 150, 150, 150, 150, 150,
150, 150, 150, 150, 150, 150, 150, 150, 150, 150,
150, 150, 150, 150, 150, 150, 150, 150, 150, 150,
150, 150, 150, 150, 150, 150
};
register int hval = len;
switch (hval)
{
default:
hval += asso_values[(unsigned char)str[8]];
/*FALLTHROUGH*/
case 8:
case 7:
case 6:
hval += asso_values[(unsigned char)str[5]];
/*FALLTHROUGH*/
case 5:
case 4:
case 3:
hval += asso_values[(unsigned char)str[2]];
break;
}
return hval + asso_values[(unsigned char)str[len - 1]];
}
struct stringpool_t
{
char stringpool_str4[sizeof("FONT")];
char stringpool_str6[sizeof("NOTICE")];
char stringpool_str9[sizeof("FONT_NAME")];
char stringpool_str10[sizeof("POINT")];
char stringpool_str11[sizeof("WEIGHT")];
char stringpool_str14[sizeof("MIN_SPACE")];
char stringpool_str15[sizeof("CAP_HEIGHT")];
char stringpool_str16[sizeof("BITMAP")];
char stringpool_str17[sizeof("INTEGER")];
char stringpool_str19[sizeof("COPYRIGHT")];
char stringpool_str24[sizeof("FULL_NAME")];
char stringpool_str26[sizeof("STRIKEOUT_ASCENT")];
char stringpool_str27[sizeof("STRIKEOUT_DESCENT")];
char stringpool_str28[sizeof("RGB_GREEN_MAP")];
char stringpool_str29[sizeof("END_SPACE")];
char stringpool_str32[sizeof("RGB_BEST_MAP")];
char stringpool_str33[sizeof("CARDINAL")];
char stringpool_str36[sizeof("CURSOR")];
char stringpool_str37[sizeof("WM_CLIENT_MACHINE")];
char stringpool_str38[sizeof("WM_HINTS")];
char stringpool_str41[sizeof("CUT_BUFFER7")];
char stringpool_str42[sizeof("RGB_GRAY_MAP")];
char stringpool_str43[sizeof("DRAWABLE")];
char stringpool_str45[sizeof("RGB_DEFAULT_MAP")];
char stringpool_str46[sizeof("WINDOW")];
char stringpool_str47[sizeof("RGB_BLUE_MAP")];
char stringpool_str48[sizeof("UNDERLINE_POSITION")];
char stringpool_str51[sizeof("RGB_RED_MAP")];
char stringpool_str53[sizeof("VISUALID")];
char stringpool_str54[sizeof("RECTANGLE")];
char stringpool_str56[sizeof("CUT_BUFFER6")];
char stringpool_str57[sizeof("WM_NAME")];
char stringpool_str58[sizeof("X_HEIGHT")];
char stringpool_str61[sizeof("SUBSCRIPT_Y")];
char stringpool_str62[sizeof("PRIMARY")];
char stringpool_str63[sizeof("COLORMAP")];
char stringpool_str64[sizeof("UNDERLINE_THICKNESS")];
char stringpool_str65[sizeof("QUAD_WIDTH")];
char stringpool_str66[sizeof("RESOURCE_MANAGER")];
char stringpool_str67[sizeof("WM_ICON_NAME")];
char stringpool_str68[sizeof("RGB_COLOR_MAP")];
char stringpool_str70[sizeof("WM_NORMAL_HINTS")];
char stringpool_str71[sizeof("CUT_BUFFER5")];
char stringpool_str73[sizeof("WM_CLASS")];
char stringpool_str75[sizeof("WM_COMMAND")];
char stringpool_str76[sizeof("CUT_BUFFER4")];
char stringpool_str78[sizeof("SUPERSCRIPT_Y")];
char stringpool_str79[sizeof("ATOM")];
char stringpool_str80[sizeof("NORM_SPACE")];
char stringpool_str81[sizeof("WM_TRANSIENT_FOR")];
char stringpool_str82[sizeof("WM_ICON_SIZE")];
char stringpool_str83[sizeof("WM_ZOOM_HINTS")];
char stringpool_str84[sizeof("MAX_SPACE")];
char stringpool_str85[sizeof("POINT_SIZE")];
char stringpool_str86[sizeof("PIXMAP")];
char stringpool_str90[sizeof("RESOLUTION")];
char stringpool_str91[sizeof("SUBSCRIPT_X")];
char stringpool_str92[sizeof("ITALIC_ANGLE")];
char stringpool_str93[sizeof("ARC")];
char stringpool_str96[sizeof("CUT_BUFFER3")];
char stringpool_str98[sizeof("WM_SIZE_HINTS")];
char stringpool_str101[sizeof("CUT_BUFFER2")];
char stringpool_str106[sizeof("CUT_BUFFER1")];
char stringpool_str108[sizeof("SUPERSCRIPT_X")];
char stringpool_str111[sizeof("CUT_BUFFER0")];
char stringpool_str116[sizeof("STRING")];
char stringpool_str121[sizeof("FAMILY_NAME")];
char stringpool_str149[sizeof("SECONDARY")];
};
static const struct stringpool_t stringpool_contents =
{
"FONT",
"NOTICE",
"FONT_NAME",
"POINT",
"WEIGHT",
"MIN_SPACE",
"CAP_HEIGHT",
"BITMAP",
"INTEGER",
"COPYRIGHT",
"FULL_NAME",
"STRIKEOUT_ASCENT",
"STRIKEOUT_DESCENT",
"RGB_GREEN_MAP",
"END_SPACE",
"RGB_BEST_MAP",
"CARDINAL",
"CURSOR",
"WM_CLIENT_MACHINE",
"WM_HINTS",
"CUT_BUFFER7",
"RGB_GRAY_MAP",
"DRAWABLE",
"RGB_DEFAULT_MAP",
"WINDOW",
"RGB_BLUE_MAP",
"UNDERLINE_POSITION",
"RGB_RED_MAP",
"VISUALID",
"RECTANGLE",
"CUT_BUFFER6",
"WM_NAME",
"X_HEIGHT",
"SUBSCRIPT_Y",
"PRIMARY",
"COLORMAP",
"UNDERLINE_THICKNESS",
"QUAD_WIDTH",
"RESOURCE_MANAGER",
"WM_ICON_NAME",
"RGB_COLOR_MAP",
"WM_NORMAL_HINTS",
"CUT_BUFFER5",
"WM_CLASS",
"WM_COMMAND",
"CUT_BUFFER4",
"SUPERSCRIPT_Y",
"ATOM",
"NORM_SPACE",
"WM_TRANSIENT_FOR",
"WM_ICON_SIZE",
"WM_ZOOM_HINTS",
"MAX_SPACE",
"POINT_SIZE",
"PIXMAP",
"RESOLUTION",
"SUBSCRIPT_X",
"ITALIC_ANGLE",
"ARC",
"CUT_BUFFER3",
"WM_SIZE_HINTS",
"CUT_BUFFER2",
"CUT_BUFFER1",
"SUPERSCRIPT_X",
"CUT_BUFFER0",
"STRING",
"FAMILY_NAME",
"SECONDARY"
};
#define stringpool ((const char *) &stringpool_contents)
#ifdef __GNUC__
__inline
#ifdef __GNUC_STDC_INLINE__
__attribute__ ((__gnu_inline__))
#endif
#endif
const struct atom_map *
in_word_set (str, len)
register const char *str;
register unsigned int len;
{
enum
{
TOTAL_KEYWORDS = 68,
MIN_WORD_LENGTH = 3,
MAX_WORD_LENGTH = 19,
MIN_HASH_VALUE = 4,
MAX_HASH_VALUE = 149
};
static const struct atom_map wordlist[] =
{
{-1}, {-1}, {-1}, {-1},
#line 44 "atoms.gperf"
{(int)(long)&((struct stringpool_t *)0)->stringpool_str4,18},
{-1},
#line 88 "atoms.gperf"
{(int)(long)&((struct stringpool_t *)0)->stringpool_str6,62},
{-1}, {-1},
#line 89 "atoms.gperf"
{(int)(long)&((struct stringpool_t *)0)->stringpool_str9,63},
#line 47 "atoms.gperf"
{(int)(long)&((struct stringpool_t *)0)->stringpool_str10,21},
#line 84 "atoms.gperf"
{(int)(long)&((struct stringpool_t *)0)->stringpool_str11,58},
{-1}, {-1},
#line 69 "atoms.gperf"
{(int)(long)&((struct stringpool_t *)0)->stringpool_str14,43},
#line 92 "atoms.gperf"
{(int)(long)&((struct stringpool_t *)0)->stringpool_str15,66},
#line 31 "atoms.gperf"
{(int)(long)&((struct stringpool_t *)0)->stringpool_str16,5},
#line 45 "atoms.gperf"
{(int)(long)&((struct stringpool_t *)0)->stringpool_str17,19},
{-1},
#line 87 "atoms.gperf"
{(int)(long)&((struct stringpool_t *)0)->stringpool_str19,61},
{-1}, {-1}, {-1}, {-1},
#line 91 "atoms.gperf"
{(int)(long)&((struct stringpool_t *)0)->stringpool_str24,65},
{-1},
#line 79 "atoms.gperf"
{(int)(long)&((struct stringpool_t *)0)->stringpool_str26,53},
#line 80 "atoms.gperf"
{(int)(long)&((struct stringpool_t *)0)->stringpool_str27,54},
#line 55 "atoms.gperf"
{(int)(long)&((struct stringpool_t *)0)->stringpool_str28,29},
#line 72 "atoms.gperf"
{(int)(long)&((struct stringpool_t *)0)->stringpool_str29,46},
{-1}, {-1},
#line 51 "atoms.gperf"
{(int)(long)&((struct stringpool_t *)0)->stringpool_str32,25},
#line 32 "atoms.gperf"
{(int)(long)&((struct stringpool_t *)0)->stringpool_str33,6},
{-1}, {-1},
#line 34 "atoms.gperf"
{(int)(long)&((struct stringpool_t *)0)->stringpool_str36,8},
#line 62 "atoms.gperf"
{(int)(long)&((struct stringpool_t *)0)->stringpool_str37,36},
#line 61 "atoms.gperf"
{(int)(long)&((struct stringpool_t *)0)->stringpool_str38,35},
{-1}, {-1},
#line 42 "atoms.gperf"
{(int)(long)&((struct stringpool_t *)0)->stringpool_str41,16},
#line 54 "atoms.gperf"
{(int)(long)&((struct stringpool_t *)0)->stringpool_str42,28},
#line 43 "atoms.gperf"
{(int)(long)&((struct stringpool_t *)0)->stringpool_str43,17},
{-1},
#line 53 "atoms.gperf"
{(int)(long)&((struct stringpool_t *)0)->stringpool_str45,27},
#line 59 "atoms.gperf"
{(int)(long)&((struct stringpool_t *)0)->stringpool_str46,33},
#line 52 "atoms.gperf"
{(int)(long)&((struct stringpool_t *)0)->stringpool_str47,26},
#line 77 "atoms.gperf"
{(int)(long)&((struct stringpool_t *)0)->stringpool_str48,51},
{-1}, {-1},
#line 56 "atoms.gperf"
{(int)(long)&((struct stringpool_t *)0)->stringpool_str51,30},
{-1},
#line 58 "atoms.gperf"
{(int)(long)&((struct stringpool_t *)0)->stringpool_str53,32},
#line 48 "atoms.gperf"
{(int)(long)&((struct stringpool_t *)0)->stringpool_str54,22},
{-1},
#line 41 "atoms.gperf"
{(int)(long)&((struct stringpool_t *)0)->stringpool_str56,15},
#line 65 "atoms.gperf"
{(int)(long)&((struct stringpool_t *)0)->stringpool_str57,39},
#line 82 "atoms.gperf"
{(int)(long)&((struct stringpool_t *)0)->stringpool_str58,56},
{-1}, {-1},
#line 76 "atoms.gperf"
{(int)(long)&((struct stringpool_t *)0)->stringpool_str61,50},
#line 27 "atoms.gperf"
{(int)(long)&((struct stringpool_t *)0)->stringpool_str62,1},
#line 33 "atoms.gperf"
{(int)(long)&((struct stringpool_t *)0)->stringpool_str63,7},
#line 78 "atoms.gperf"
{(int)(long)&((struct stringpool_t *)0)->stringpool_str64,52},
#line 83 "atoms.gperf"
{(int)(long)&((struct stringpool_t *)0)->stringpool_str65,57},
#line 49 "atoms.gperf"
{(int)(long)&((struct stringpool_t *)0)->stringpool_str66,23},
#line 63 "atoms.gperf"
{(int)(long)&((struct stringpool_t *)0)->stringpool_str67,37},
#line 50 "atoms.gperf"
{(int)(long)&((struct stringpool_t *)0)->stringpool_str68,24},
{-1},
#line 66 "atoms.gperf"
{(int)(long)&((struct stringpool_t *)0)->stringpool_str70,40},
#line 40 "atoms.gperf"
{(int)(long)&((struct stringpool_t *)0)->stringpool_str71,14},
{-1},
#line 93 "atoms.gperf"
{(int)(long)&((struct stringpool_t *)0)->stringpool_str73,67},
{-1},
#line 60 "atoms.gperf"
{(int)(long)&((struct stringpool_t *)0)->stringpool_str75,34},
#line 39 "atoms.gperf"
{(int)(long)&((struct stringpool_t *)0)->stringpool_str76,13},
{-1},
#line 74 "atoms.gperf"
{(int)(long)&((struct stringpool_t *)0)->stringpool_str78,48},
#line 30 "atoms.gperf"
{(int)(long)&((struct stringpool_t *)0)->stringpool_str79,4},
#line 70 "atoms.gperf"
{(int)(long)&((struct stringpool_t *)0)->stringpool_str80,44},
#line 94 "atoms.gperf"
{(int)(long)&((struct stringpool_t *)0)->stringpool_str81,68},
#line 64 "atoms.gperf"
{(int)(long)&((struct stringpool_t *)0)->stringpool_str82,38},
#line 68 "atoms.gperf"
{(int)(long)&((struct stringpool_t *)0)->stringpool_str83,42},
#line 71 "atoms.gperf"
{(int)(long)&((struct stringpool_t *)0)->stringpool_str84,45},
#line 85 "atoms.gperf"
{(int)(long)&((struct stringpool_t *)0)->stringpool_str85,59},
#line 46 "atoms.gperf"
{(int)(long)&((struct stringpool_t *)0)->stringpool_str86,20},
{-1}, {-1}, {-1},
#line 86 "atoms.gperf"
{(int)(long)&((struct stringpool_t *)0)->stringpool_str90,60},
#line 75 "atoms.gperf"
{(int)(long)&((struct stringpool_t *)0)->stringpool_str91,49},
#line 81 "atoms.gperf"
{(int)(long)&((struct stringpool_t *)0)->stringpool_str92,55},
#line 29 "atoms.gperf"
{(int)(long)&((struct stringpool_t *)0)->stringpool_str93,3},
{-1}, {-1},
#line 38 "atoms.gperf"
{(int)(long)&((struct stringpool_t *)0)->stringpool_str96,12},
{-1},
#line 67 "atoms.gperf"
{(int)(long)&((struct stringpool_t *)0)->stringpool_str98,41},
{-1}, {-1},
#line 37 "atoms.gperf"
{(int)(long)&((struct stringpool_t *)0)->stringpool_str101,11},
{-1}, {-1}, {-1}, {-1},
#line 36 "atoms.gperf"
{(int)(long)&((struct stringpool_t *)0)->stringpool_str106,10},
{-1},
#line 73 "atoms.gperf"
{(int)(long)&((struct stringpool_t *)0)->stringpool_str108,47},
{-1}, {-1},
#line 35 "atoms.gperf"
{(int)(long)&((struct stringpool_t *)0)->stringpool_str111,9},
{-1}, {-1}, {-1}, {-1},
#line 57 "atoms.gperf"
{(int)(long)&((struct stringpool_t *)0)->stringpool_str116,31},
{-1}, {-1}, {-1}, {-1},
#line 90 "atoms.gperf"
{(int)(long)&((struct stringpool_t *)0)->stringpool_str121,64},
{-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},
{-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},
{-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1}, {-1},
#line 28 "atoms.gperf"
{(int)(long)&((struct stringpool_t *)0)->stringpool_str149,2}
};
if (len <= MAX_WORD_LENGTH && len >= MIN_WORD_LENGTH)
{
register int key = hash (str, len);
if (key <= MAX_HASH_VALUE && key >= 0)
{
register int o = wordlist[key].name;
if (o >= 0)
{
register const char *s = o + stringpool;
if (*str == *s && !strncmp (str + 1, s + 1, len - 1) && s[len] == '\0')
return &wordlist[key];
}
}
}
return 0;
}
#line 95 "atoms.gperf"
static const char atom_names[] =
"PRIMARY\0"
"SECONDARY\0"
"ARC\0"
"ATOM\0"
"BITMAP\0"
"CARDINAL\0"
"COLORMAP\0"
"CURSOR\0"
"CUT_BUFFER0\0"
"CUT_BUFFER1\0"
"CUT_BUFFER2\0"
"CUT_BUFFER3\0"
"CUT_BUFFER4\0"
"CUT_BUFFER5\0"
"CUT_BUFFER6\0"
"CUT_BUFFER7\0"
"DRAWABLE\0"
"FONT\0"
"INTEGER\0"
"PIXMAP\0"
"POINT\0"
"RECTANGLE\0"
"RESOURCE_MANAGER\0"
"RGB_COLOR_MAP\0"
"RGB_BEST_MAP\0"
"RGB_BLUE_MAP\0"
"RGB_DEFAULT_MAP\0"
"RGB_GRAY_MAP\0"
"RGB_GREEN_MAP\0"
"RGB_RED_MAP\0"
"STRING\0"
"VISUALID\0"
"WINDOW\0"
"WM_COMMAND\0"
"WM_HINTS\0"
"WM_CLIENT_MACHINE\0"
"WM_ICON_NAME\0"
"WM_ICON_SIZE\0"
"WM_NAME\0"
"WM_NORMAL_HINTS\0"
"WM_SIZE_HINTS\0"
"WM_ZOOM_HINTS\0"
"MIN_SPACE\0"
"NORM_SPACE\0"
"MAX_SPACE\0"
"END_SPACE\0"
"SUPERSCRIPT_X\0"
"SUPERSCRIPT_Y\0"
"SUBSCRIPT_X\0"
"SUBSCRIPT_Y\0"
"UNDERLINE_POSITION\0"
"UNDERLINE_THICKNESS\0"
"STRIKEOUT_ASCENT\0"
"STRIKEOUT_DESCENT\0"
"ITALIC_ANGLE\0"
"X_HEIGHT\0"
"QUAD_WIDTH\0"
"WEIGHT\0"
"POINT_SIZE\0"
"RESOLUTION\0"
"COPYRIGHT\0"
"NOTICE\0"
"FONT_NAME\0"
"FAMILY_NAME\0"
"FULL_NAME\0"
"CAP_HEIGHT\0"
"WM_CLASS\0"
"WM_TRANSIENT_FOR\0"
;
static const uint16_t atom_name_offsets[] = {
0,
8,
18,
22,
27,
34,
43,
52,
59,
71,
83,
95,
107,
119,
131,
143,
155,
164,
169,
177,
184,
190,
200,
217,
231,
244,
257,
273,
286,
300,
312,
319,
328,
335,
346,
355,
373,
386,
399,
407,
423,
437,
451,
461,
472,
482,
492,
506,
520,
532,
544,
563,
583,
600,
618,
631,
640,
651,
658,
669,
680,
690,
697,
707,
719,
729,
740,
749,
};
xcb_atom_t xcb_atom_get_predefined(uint16_t name_len, const char *name)
{
const struct atom_map *value = in_word_set(name, name_len);
xcb_atom_t ret = XCB_NONE;
if(value)
ret = value->value;
return ret;
}
const char *xcb_atom_get_name_predefined(xcb_atom_t atom)
{
if(atom <= 0 || atom > (sizeof(atom_name_offsets) / sizeof(*atom_name_offsets)))
return 0;
return atom_names + atom_name_offsets[atom - 1];
}
static char *makename(const char *fmt, ...)
{
char *ret;
int n;
va_list ap;
#ifndef HAVE_VASPRINTF
char *np;
int size = 64;
/* First allocate 'size' bytes, should be enough usually */
if((ret = malloc(size)) == NULL)
return NULL;
while(1)
{
va_start(ap, fmt);
n = vsnprintf(ret, size, fmt, ap);
va_end(ap);
if(n < 0)
return NULL;
if(n < size)
return ret;
size = n + 1;
if((np = realloc(ret, size)) == NULL)
{
free(ret);
return NULL;
}
ret = np;
}
#else
va_start(ap, fmt);
n = vasprintf(&ret, fmt, ap);
va_end(ap);
if(n < 0)
return NULL;
return ret;
#endif
}
char *xcb_atom_name_by_screen(const char *base, uint8_t screen)
{
return makename("%s_S%u", base, screen);
}
char *xcb_atom_name_by_resource(const char *base, uint32_t resource)
{
return makename("%s_R%08X", base, resource);
}
char *xcb_atom_name_unique(const char *base, uint32_t id)
{
if(base)
return makename("%s_U%lu", base, id);
else
return makename("U%lu", id);
}
|