Coverage Report

Created: 2026-06-12 06:50

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/tmux/compat/tree.h
Line
Count
Source
1
/*  $OpenBSD: tree.h,v 1.13 2011/07/09 00:19:45 pirofti Exp $ */
2
/*
3
 * Copyright 2002 Niels Provos <provos@citi.umich.edu>
4
 * All rights reserved.
5
 *
6
 * Redistribution and use in source and binary forms, with or without
7
 * modification, are permitted provided that the following conditions
8
 * are met:
9
 * 1. Redistributions of source code must retain the above copyright
10
 *    notice, this list of conditions and the following disclaimer.
11
 * 2. Redistributions in binary form must reproduce the above copyright
12
 *    notice, this list of conditions and the following disclaimer in the
13
 *    documentation and/or other materials provided with the distribution.
14
 *
15
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25
 */
26
27
#ifndef _SYS_TREE_H_
28
#define _SYS_TREE_H_
29
30
/*
31
 * This file defines data structures for different types of trees:
32
 * splay trees and red-black trees.
33
 *
34
 * A splay tree is a self-organizing data structure.  Every operation
35
 * on the tree causes a splay to happen.  The splay moves the requested
36
 * node to the root of the tree and partly rebalances it.
37
 *
38
 * This has the benefit that request locality causes faster lookups as
39
 * the requested nodes move to the top of the tree.  On the other hand,
40
 * every lookup causes memory writes.
41
 *
42
 * The Balance Theorem bounds the total access time for m operations
43
 * and n inserts on an initially empty tree as O((m + n)lg n).  The
44
 * amortized cost for a sequence of m accesses to a splay tree is O(lg n);
45
 *
46
 * A red-black tree is a binary search tree with the node color as an
47
 * extra attribute.  It fulfills a set of conditions:
48
 *  - every search path from the root to a leaf consists of the
49
 *    same number of black nodes,
50
 *  - each red node (except for the root) has a black parent,
51
 *  - each leaf node is black.
52
 *
53
 * Every operation on a red-black tree is bounded as O(lg n).
54
 * The maximum height of a red-black tree is 2lg (n+1).
55
 */
56
57
#define SPLAY_HEAD(name, type)            \
58
struct name {               \
59
  struct type *sph_root; /* root of the tree */     \
60
}
61
62
#define SPLAY_INITIALIZER(root)           \
63
  { NULL }
64
65
#define SPLAY_INIT(root) do {           \
66
  (root)->sph_root = NULL;          \
67
} while (0)
68
69
#define SPLAY_ENTRY(type)           \
70
struct {                \
71
  struct type *spe_left; /* left element */     \
72
  struct type *spe_right; /* right element */     \
73
}
74
75
#define SPLAY_LEFT(elm, field)    (elm)->field.spe_left
76
#define SPLAY_RIGHT(elm, field)   (elm)->field.spe_right
77
#define SPLAY_ROOT(head)    (head)->sph_root
78
#define SPLAY_EMPTY(head)   (SPLAY_ROOT(head) == NULL)
79
80
/* SPLAY_ROTATE_{LEFT,RIGHT} expect that tmp hold SPLAY_{RIGHT,LEFT} */
81
#define SPLAY_ROTATE_RIGHT(head, tmp, field) do {     \
82
  SPLAY_LEFT((head)->sph_root, field) = SPLAY_RIGHT(tmp, field);  \
83
  SPLAY_RIGHT(tmp, field) = (head)->sph_root;     \
84
  (head)->sph_root = tmp;           \
85
} while (0)
86
  
87
#define SPLAY_ROTATE_LEFT(head, tmp, field) do {      \
88
  SPLAY_RIGHT((head)->sph_root, field) = SPLAY_LEFT(tmp, field);  \
89
  SPLAY_LEFT(tmp, field) = (head)->sph_root;      \
90
  (head)->sph_root = tmp;           \
91
} while (0)
92
93
#define SPLAY_LINKLEFT(head, tmp, field) do {       \
94
  SPLAY_LEFT(tmp, field) = (head)->sph_root;      \
95
  tmp = (head)->sph_root;           \
96
  (head)->sph_root = SPLAY_LEFT((head)->sph_root, field);   \
97
} while (0)
98
99
#define SPLAY_LINKRIGHT(head, tmp, field) do {        \
100
  SPLAY_RIGHT(tmp, field) = (head)->sph_root;     \
101
  tmp = (head)->sph_root;           \
102
  (head)->sph_root = SPLAY_RIGHT((head)->sph_root, field);  \
103
} while (0)
104
105
#define SPLAY_ASSEMBLE(head, node, left, right, field) do {   \
106
  SPLAY_RIGHT(left, field) = SPLAY_LEFT((head)->sph_root, field); \
107
  SPLAY_LEFT(right, field) = SPLAY_RIGHT((head)->sph_root, field);\
108
  SPLAY_LEFT((head)->sph_root, field) = SPLAY_RIGHT(node, field); \
109
  SPLAY_RIGHT((head)->sph_root, field) = SPLAY_LEFT(node, field); \
110
} while (0)
111
112
/* Generates prototypes and inline functions */
113
114
#define SPLAY_PROTOTYPE(name, type, field, cmp)       \
115
void name##_SPLAY(struct name *, struct type *);      \
116
void name##_SPLAY_MINMAX(struct name *, int);       \
117
struct type *name##_SPLAY_INSERT(struct name *, struct type *);   \
118
struct type *name##_SPLAY_REMOVE(struct name *, struct type *);   \
119
                  \
120
/* Finds the node with the same key as elm */       \
121
static __inline struct type *           \
122
name##_SPLAY_FIND(struct name *head, struct type *elm)      \
123
{                 \
124
  if (SPLAY_EMPTY(head))            \
125
    return(NULL);           \
126
  name##_SPLAY(head, elm);          \
127
  if ((cmp)(elm, (head)->sph_root) == 0)        \
128
    return (head->sph_root);        \
129
  return (NULL);              \
130
}                 \
131
                  \
132
static __inline struct type *           \
133
name##_SPLAY_NEXT(struct name *head, struct type *elm)      \
134
{                 \
135
  name##_SPLAY(head, elm);          \
136
  if (SPLAY_RIGHT(elm, field) != NULL) {        \
137
    elm = SPLAY_RIGHT(elm, field);        \
138
    while (SPLAY_LEFT(elm, field) != NULL) {    \
139
      elm = SPLAY_LEFT(elm, field);     \
140
    }             \
141
  } else                \
142
    elm = NULL;           \
143
  return (elm);             \
144
}                 \
145
                  \
146
static __inline struct type *           \
147
name##_SPLAY_MIN_MAX(struct name *head, int val)      \
148
{                 \
149
  name##_SPLAY_MINMAX(head, val);         \
150
        return (SPLAY_ROOT(head));          \
151
}
152
153
/* Main splay operation.
154
 * Moves node close to the key of elm to top
155
 */
156
#define SPLAY_GENERATE(name, type, field, cmp)        \
157
struct type *               \
158
name##_SPLAY_INSERT(struct name *head, struct type *elm)    \
159
{                 \
160
    if (SPLAY_EMPTY(head)) {            \
161
      SPLAY_LEFT(elm, field) = SPLAY_RIGHT(elm, field) = NULL;  \
162
    } else {                \
163
      int __comp;             \
164
      name##_SPLAY(head, elm);          \
165
      __comp = (cmp)(elm, (head)->sph_root);      \
166
      if(__comp < 0) {            \
167
        SPLAY_LEFT(elm, field) = SPLAY_LEFT((head)->sph_root, field);\
168
        SPLAY_RIGHT(elm, field) = (head)->sph_root;   \
169
        SPLAY_LEFT((head)->sph_root, field) = NULL;   \
170
      } else if (__comp > 0) {          \
171
        SPLAY_RIGHT(elm, field) = SPLAY_RIGHT((head)->sph_root, field);\
172
        SPLAY_LEFT(elm, field) = (head)->sph_root;    \
173
        SPLAY_RIGHT((head)->sph_root, field) = NULL;  \
174
      } else              \
175
        return ((head)->sph_root);        \
176
    }                 \
177
    (head)->sph_root = (elm);           \
178
    return (NULL);              \
179
}                 \
180
                  \
181
struct type *               \
182
name##_SPLAY_REMOVE(struct name *head, struct type *elm)    \
183
{                 \
184
  struct type *__tmp;           \
185
  if (SPLAY_EMPTY(head))            \
186
    return (NULL);            \
187
  name##_SPLAY(head, elm);          \
188
  if ((cmp)(elm, (head)->sph_root) == 0) {      \
189
    if (SPLAY_LEFT((head)->sph_root, field) == NULL) {  \
190
      (head)->sph_root = SPLAY_RIGHT((head)->sph_root, field);\
191
    } else {            \
192
      __tmp = SPLAY_RIGHT((head)->sph_root, field); \
193
      (head)->sph_root = SPLAY_LEFT((head)->sph_root, field);\
194
      name##_SPLAY(head, elm);      \
195
      SPLAY_RIGHT((head)->sph_root, field) = __tmp; \
196
    }             \
197
    return (elm);           \
198
  }               \
199
  return (NULL);              \
200
}                 \
201
                  \
202
void                  \
203
name##_SPLAY(struct name *head, struct type *elm)     \
204
{                 \
205
  struct type __node, *__left, *__right, *__tmp;      \
206
  int __comp;             \
207
\
208
  SPLAY_LEFT(&__node, field) = SPLAY_RIGHT(&__node, field) = NULL;\
209
  __left = __right = &__node;         \
210
\
211
  while ((__comp = (cmp)(elm, (head)->sph_root))) {   \
212
    if (__comp < 0) {         \
213
      __tmp = SPLAY_LEFT((head)->sph_root, field);  \
214
      if (__tmp == NULL)        \
215
        break;          \
216
      if ((cmp)(elm, __tmp) < 0){     \
217
        SPLAY_ROTATE_RIGHT(head, __tmp, field); \
218
        if (SPLAY_LEFT((head)->sph_root, field) == NULL)\
219
          break;        \
220
      }           \
221
      SPLAY_LINKLEFT(head, __right, field);   \
222
    } else if (__comp > 0) {        \
223
      __tmp = SPLAY_RIGHT((head)->sph_root, field); \
224
      if (__tmp == NULL)        \
225
        break;          \
226
      if ((cmp)(elm, __tmp) > 0){     \
227
        SPLAY_ROTATE_LEFT(head, __tmp, field);  \
228
        if (SPLAY_RIGHT((head)->sph_root, field) == NULL)\
229
          break;        \
230
      }           \
231
      SPLAY_LINKRIGHT(head, __left, field);   \
232
    }             \
233
  }               \
234
  SPLAY_ASSEMBLE(head, &__node, __left, __right, field);    \
235
}                 \
236
                  \
237
/* Splay with either the minimum or the maximum element     \
238
 * Used to find minimum or maximum element in tree.     \
239
 */                 \
240
void name##_SPLAY_MINMAX(struct name *head, int __comp) \
241
{                 \
242
  struct type __node, *__left, *__right, *__tmp;      \
243
\
244
  SPLAY_LEFT(&__node, field) = SPLAY_RIGHT(&__node, field) = NULL;\
245
  __left = __right = &__node;         \
246
\
247
  while (1) {             \
248
    if (__comp < 0) {         \
249
      __tmp = SPLAY_LEFT((head)->sph_root, field);  \
250
      if (__tmp == NULL)        \
251
        break;          \
252
      if (__comp < 0){        \
253
        SPLAY_ROTATE_RIGHT(head, __tmp, field); \
254
        if (SPLAY_LEFT((head)->sph_root, field) == NULL)\
255
          break;        \
256
      }           \
257
      SPLAY_LINKLEFT(head, __right, field);   \
258
    } else if (__comp > 0) {        \
259
      __tmp = SPLAY_RIGHT((head)->sph_root, field); \
260
      if (__tmp == NULL)        \
261
        break;          \
262
      if (__comp > 0) {       \
263
        SPLAY_ROTATE_LEFT(head, __tmp, field);  \
264
        if (SPLAY_RIGHT((head)->sph_root, field) == NULL)\
265
          break;        \
266
      }           \
267
      SPLAY_LINKRIGHT(head, __left, field);   \
268
    }             \
269
  }               \
270
  SPLAY_ASSEMBLE(head, &__node, __left, __right, field);    \
271
}
272
273
#define SPLAY_NEGINF  -1
274
#define SPLAY_INF 1
275
276
#define SPLAY_INSERT(name, x, y)  name##_SPLAY_INSERT(x, y)
277
#define SPLAY_REMOVE(name, x, y)  name##_SPLAY_REMOVE(x, y)
278
#define SPLAY_FIND(name, x, y)    name##_SPLAY_FIND(x, y)
279
#define SPLAY_NEXT(name, x, y)    name##_SPLAY_NEXT(x, y)
280
#define SPLAY_MIN(name, x)    (SPLAY_EMPTY(x) ? NULL  \
281
          : name##_SPLAY_MIN_MAX(x, SPLAY_NEGINF))
282
#define SPLAY_MAX(name, x)    (SPLAY_EMPTY(x) ? NULL  \
283
          : name##_SPLAY_MIN_MAX(x, SPLAY_INF))
284
285
#define SPLAY_FOREACH(x, name, head)          \
286
  for ((x) = SPLAY_MIN(name, head);       \
287
       (x) != NULL;           \
288
       (x) = SPLAY_NEXT(name, head, x))
289
290
/* Macros that define a red-black tree */
291
#define RB_HEAD(name, type)           \
292
struct name {               \
293
  struct type *rbh_root; /* root of the tree */     \
294
}
295
296
#define RB_INITIALIZER(root)            \
297
  { NULL }
298
299
81
#define RB_INIT(root) do {           \
300
81
  (root)->rbh_root = NULL;          \
301
81
} while (0)
302
303
749
#define RB_BLACK  0
304
1.37k
#define RB_RED    1
305
#define RB_ENTRY(type)              \
306
struct {                \
307
  struct type *rbe_left;    /* left element */    \
308
  struct type *rbe_right;   /* right element */   \
309
  struct type *rbe_parent;  /* parent element */    \
310
  int rbe_color;      /* node color */    \
311
}
312
313
2.93k
#define RB_LEFT(elm, field)   (elm)->field.rbe_left
314
4.85k
#define RB_RIGHT(elm, field)    (elm)->field.rbe_right
315
2.19k
#define RB_PARENT(elm, field)   (elm)->field.rbe_parent
316
2.12k
#define RB_COLOR(elm, field)    (elm)->field.rbe_color
317
849
#define RB_ROOT(head)     (head)->rbh_root
318
0
#define RB_EMPTY(head)      (RB_ROOT(head) == NULL)
319
320
248
#define RB_SET(elm, parent, field) do {         \
321
248
  RB_PARENT(elm, field) = parent;          \
322
248
  RB_LEFT(elm, field) = RB_RIGHT(elm, field) = NULL;    \
323
248
  RB_COLOR(elm, field) = RB_RED;         \
324
248
} while (0)
325
326
339
#define RB_SET_BLACKRED(black, red, field) do {       \
327
339
  RB_COLOR(black, field) = RB_BLACK;       \
328
339
  RB_COLOR(red, field) = RB_RED;         \
329
339
} while (0)
330
331
#ifndef RB_AUGMENT
332
905
#define RB_AUGMENT(x) do {} while (0)
333
#endif
334
335
174
#define RB_ROTATE_LEFT(head, elm, tmp, field) do {     \
336
174
  (tmp) = RB_RIGHT(elm, field);         \
337
174
  if ((RB_RIGHT(elm, field) = RB_LEFT(tmp, field))) {   \
338
64
    RB_PARENT(RB_LEFT(tmp, field), field) = (elm);   \
339
64
  }                \
340
174
  RB_AUGMENT(elm);            \
341
174
  if ((RB_PARENT(tmp, field) = RB_PARENT(elm, field))) {   \
342
159
    if ((elm) == RB_LEFT(RB_PARENT(elm, field), field)) \
343
159
      RB_LEFT(RB_PARENT(elm, field), field) = (tmp); \
344
159
    else              \
345
159
      RB_RIGHT(RB_PARENT(elm, field), field) = (tmp); \
346
159
  } else               \
347
174
    (head)->rbh_root = (tmp);       \
348
174
  RB_LEFT(tmp, field) = (elm);         \
349
174
  RB_PARENT(elm, field) = (tmp);         \
350
174
  RB_AUGMENT(tmp);            \
351
174
  if ((RB_PARENT(tmp, field)))          \
352
174
    RB_AUGMENT(RB_PARENT(tmp, field));      \
353
174
} while (0)
354
355
53
#define RB_ROTATE_RIGHT(head, elm, tmp, field) do {     \
356
53
  (tmp) = RB_LEFT(elm, field);         \
357
53
  if ((RB_LEFT(elm, field) = RB_RIGHT(tmp, field))) {   \
358
27
    RB_PARENT(RB_RIGHT(tmp, field), field) = (elm);    \
359
27
  }                \
360
53
  RB_AUGMENT(elm);            \
361
53
  if ((RB_PARENT(tmp, field) = RB_PARENT(elm, field))) {   \
362
52
    if ((elm) == RB_LEFT(RB_PARENT(elm, field), field)) \
363
52
      RB_LEFT(RB_PARENT(elm, field), field) = (tmp); \
364
52
    else              \
365
52
      RB_RIGHT(RB_PARENT(elm, field), field) = (tmp); \
366
52
  } else               \
367
53
    (head)->rbh_root = (tmp);       \
368
53
  RB_RIGHT(tmp, field) = (elm);         \
369
53
  RB_PARENT(elm, field) = (tmp);         \
370
53
  RB_AUGMENT(tmp);            \
371
53
  if ((RB_PARENT(tmp, field)))          \
372
53
    RB_AUGMENT(RB_PARENT(tmp, field));      \
373
53
} while (0)
374
375
/* Generates prototypes and inline functions */
376
#define RB_PROTOTYPE(name, type, field, cmp)        \
377
  RB_PROTOTYPE_INTERNAL(name, type, field, cmp,)
378
#define RB_PROTOTYPE_STATIC(name, type, field, cmp)     \
379
  RB_PROTOTYPE_INTERNAL(name, type, field, cmp, __attribute__((__unused__)) static)
380
#define RB_PROTOTYPE_INTERNAL(name, type, field, cmp, attr)   \
381
attr void name##_RB_INSERT_COLOR(struct name *, struct type *);   \
382
attr void name##_RB_REMOVE_COLOR(struct name *, struct type *, struct type *);\
383
attr struct type *name##_RB_REMOVE(struct name *, struct type *); \
384
attr struct type *name##_RB_INSERT(struct name *, struct type *); \
385
attr struct type *name##_RB_FIND(struct name *, struct type *);   \
386
attr struct type *name##_RB_NFIND(struct name *, struct type *);  \
387
attr struct type *name##_RB_NEXT(struct type *);      \
388
attr struct type *name##_RB_PREV(struct type *);      \
389
attr struct type *name##_RB_MINMAX(struct name *, int);     \
390
                  \
391
392
/* Main rb operation.
393
 * Moves node close to the key of elm to top
394
 */
395
#define RB_GENERATE(name, type, field, cmp)       \
396
  RB_GENERATE_INTERNAL(name, type, field, cmp,)
397
#define RB_GENERATE_STATIC(name, type, field, cmp)      \
398
  RB_GENERATE_INTERNAL(name, type, field, cmp, __attribute__((__unused__)) static)
399
#define RB_GENERATE_INTERNAL(name, type, field, cmp, attr)    \
400
attr void               \
401
248
name##_RB_INSERT_COLOR(struct name *head, struct type *elm)   \
402
248
{                 \
403
248
  struct type *parent, *gparent, *tmp;        \
404
587
  while ((parent = RB_PARENT(elm, field)) &&      \
405
587
      RB_COLOR(parent, field) == RB_RED) {     \
406
339
    gparent = RB_PARENT(parent, field);      \
407
339
    if (parent == RB_LEFT(gparent, field)) {   \
408
57
      tmp = RB_RIGHT(gparent, field);     \
409
57
      if (tmp && RB_COLOR(tmp, field) == RB_RED) { \
410
11
        RB_COLOR(tmp, field) = RB_BLACK; \
411
11
        RB_SET_BLACKRED(parent, gparent, field);\
412
11
        elm = gparent;        \
413
11
        continue;       \
414
11
      }            \
415
57
      if (RB_RIGHT(parent, field) == elm) {   \
416
43
        RB_ROTATE_LEFT(head, parent, tmp, field);\
417
43
        tmp = parent;       \
418
43
        parent = elm;       \
419
43
        elm = tmp;        \
420
43
      }            \
421
46
      RB_SET_BLACKRED(parent, gparent, field); \
422
46
      RB_ROTATE_RIGHT(head, gparent, tmp, field);  \
423
282
    } else {           \
424
282
      tmp = RB_LEFT(gparent, field);     \
425
282
      if (tmp && RB_COLOR(tmp, field) == RB_RED) { \
426
151
        RB_COLOR(tmp, field) = RB_BLACK; \
427
151
        RB_SET_BLACKRED(parent, gparent, field);\
428
151
        elm = gparent;        \
429
151
        continue;       \
430
151
      }            \
431
282
      if (RB_LEFT(parent, field) == elm) {   \
432
7
        RB_ROTATE_RIGHT(head, parent, tmp, field);\
433
7
        tmp = parent;       \
434
7
        parent = elm;       \
435
7
        elm = tmp;        \
436
7
      }            \
437
131
      RB_SET_BLACKRED(parent, gparent, field); \
438
131
      RB_ROTATE_LEFT(head, gparent, tmp, field);  \
439
131
    }              \
440
339
  }                \
441
248
  RB_COLOR(head->rbh_root, field) = RB_BLACK;     \
442
248
}                  \
Unexecuted instantiation: arguments.c:args_tree_RB_INSERT_COLOR
Unexecuted instantiation: cmd-wait-for.c:wait_channels_RB_INSERT_COLOR
Unexecuted instantiation: control.c:control_panes_RB_INSERT_COLOR
Unexecuted instantiation: control.c:control_subs_RB_INSERT_COLOR
Unexecuted instantiation: control.c:control_sub_panes_RB_INSERT_COLOR
Unexecuted instantiation: control.c:control_sub_windows_RB_INSERT_COLOR
Unexecuted instantiation: environ.c:environ_RB_INSERT_COLOR
Unexecuted instantiation: client_files_RB_INSERT_COLOR
Unexecuted instantiation: format.c:format_entry_tree_RB_INSERT_COLOR
Unexecuted instantiation: format.c:format_job_tree_RB_INSERT_COLOR
Unexecuted instantiation: hyperlinks.c:hyperlinks_by_uri_tree_RB_INSERT_COLOR
Unexecuted instantiation: hyperlinks.c:hyperlinks_by_inner_tree_RB_INSERT_COLOR
Unexecuted instantiation: input-keys.c:input_key_tree_RB_INSERT_COLOR
Unexecuted instantiation: key-bindings.c:key_tables_RB_INSERT_COLOR
Unexecuted instantiation: key-bindings.c:key_bindings_RB_INSERT_COLOR
options.c:options_tree_RB_INSERT_COLOR
Line
Count
Source
401
222
name##_RB_INSERT_COLOR(struct name *head, struct type *elm)   \
402
222
{                 \
403
222
  struct type *parent, *gparent, *tmp;        \
404
541
  while ((parent = RB_PARENT(elm, field)) &&      \
405
541
      RB_COLOR(parent, field) == RB_RED) {     \
406
319
    gparent = RB_PARENT(parent, field);      \
407
319
    if (parent == RB_LEFT(gparent, field)) {   \
408
57
      tmp = RB_RIGHT(gparent, field);     \
409
57
      if (tmp && RB_COLOR(tmp, field) == RB_RED) { \
410
11
        RB_COLOR(tmp, field) = RB_BLACK; \
411
11
        RB_SET_BLACKRED(parent, gparent, field);\
412
11
        elm = gparent;        \
413
11
        continue;       \
414
11
      }            \
415
57
      if (RB_RIGHT(parent, field) == elm) {   \
416
43
        RB_ROTATE_LEFT(head, parent, tmp, field);\
417
43
        tmp = parent;       \
418
43
        parent = elm;       \
419
43
        elm = tmp;        \
420
43
      }            \
421
46
      RB_SET_BLACKRED(parent, gparent, field); \
422
46
      RB_ROTATE_RIGHT(head, gparent, tmp, field);  \
423
262
    } else {           \
424
262
      tmp = RB_LEFT(gparent, field);     \
425
262
      if (tmp && RB_COLOR(tmp, field) == RB_RED) { \
426
143
        RB_COLOR(tmp, field) = RB_BLACK; \
427
143
        RB_SET_BLACKRED(parent, gparent, field);\
428
143
        elm = gparent;        \
429
143
        continue;       \
430
143
      }            \
431
262
      if (RB_LEFT(parent, field) == elm) {   \
432
7
        RB_ROTATE_RIGHT(head, parent, tmp, field);\
433
7
        tmp = parent;       \
434
7
        parent = elm;       \
435
7
        elm = tmp;        \
436
7
      }            \
437
119
      RB_SET_BLACKRED(parent, gparent, field); \
438
119
      RB_ROTATE_LEFT(head, gparent, tmp, field);  \
439
119
    }              \
440
319
  }                \
441
222
  RB_COLOR(head->rbh_root, field) = RB_BLACK;     \
442
222
}                  \
options.c:options_array_RB_INSERT_COLOR
Line
Count
Source
401
26
name##_RB_INSERT_COLOR(struct name *head, struct type *elm)   \
402
26
{                 \
403
26
  struct type *parent, *gparent, *tmp;        \
404
46
  while ((parent = RB_PARENT(elm, field)) &&      \
405
46
      RB_COLOR(parent, field) == RB_RED) {     \
406
20
    gparent = RB_PARENT(parent, field);      \
407
20
    if (parent == RB_LEFT(gparent, field)) {   \
408
0
      tmp = RB_RIGHT(gparent, field);     \
409
0
      if (tmp && RB_COLOR(tmp, field) == RB_RED) { \
410
0
        RB_COLOR(tmp, field) = RB_BLACK; \
411
0
        RB_SET_BLACKRED(parent, gparent, field);\
412
0
        elm = gparent;        \
413
0
        continue;       \
414
0
      }           \
415
0
      if (RB_RIGHT(parent, field) == elm) {   \
416
0
        RB_ROTATE_LEFT(head, parent, tmp, field);\
417
0
        tmp = parent;       \
418
0
        parent = elm;       \
419
0
        elm = tmp;        \
420
0
      }           \
421
0
      RB_SET_BLACKRED(parent, gparent, field); \
422
0
      RB_ROTATE_RIGHT(head, gparent, tmp, field);  \
423
20
    } else {           \
424
20
      tmp = RB_LEFT(gparent, field);     \
425
20
      if (tmp && RB_COLOR(tmp, field) == RB_RED) { \
426
8
        RB_COLOR(tmp, field) = RB_BLACK; \
427
8
        RB_SET_BLACKRED(parent, gparent, field);\
428
8
        elm = gparent;        \
429
8
        continue;       \
430
8
      }            \
431
20
      if (RB_LEFT(parent, field) == elm) {   \
432
0
        RB_ROTATE_RIGHT(head, parent, tmp, field);\
433
0
        tmp = parent;       \
434
0
        parent = elm;       \
435
0
        elm = tmp;        \
436
0
      }            \
437
12
      RB_SET_BLACKRED(parent, gparent, field); \
438
12
      RB_ROTATE_LEFT(head, gparent, tmp, field);  \
439
12
    }              \
440
20
  }                \
441
26
  RB_COLOR(head->rbh_root, field) = RB_BLACK;     \
442
26
}                  \
Unexecuted instantiation: paste.c:paste_name_tree_RB_INSERT_COLOR
Unexecuted instantiation: paste.c:paste_time_tree_RB_INSERT_COLOR
Unexecuted instantiation: server-acl.c:server_acl_entries_RB_INSERT_COLOR
Unexecuted instantiation: client_windows_RB_INSERT_COLOR
Unexecuted instantiation: sessions_RB_INSERT_COLOR
Unexecuted instantiation: session_groups_RB_INSERT_COLOR
Unexecuted instantiation: utf8.c:utf8_width_cache_RB_INSERT_COLOR
Unexecuted instantiation: utf8.c:utf8_index_tree_RB_INSERT_COLOR
Unexecuted instantiation: utf8.c:utf8_data_tree_RB_INSERT_COLOR
Unexecuted instantiation: windows_RB_INSERT_COLOR
Unexecuted instantiation: winlinks_RB_INSERT_COLOR
Unexecuted instantiation: window_pane_tree_RB_INSERT_COLOR
443
                  \
444
attr void               \
445
0
name##_RB_REMOVE_COLOR(struct name *head, struct type *parent, struct type *elm) \
446
0
{                 \
447
0
  struct type *tmp;           \
448
0
  while ((elm == NULL || RB_COLOR(elm, field) == RB_BLACK) &&  \
449
0
      elm != RB_ROOT(head)) {         \
450
0
    if (RB_LEFT(parent, field) == elm) {     \
451
0
      tmp = RB_RIGHT(parent, field);      \
452
0
      if (RB_COLOR(tmp, field) == RB_RED) {   \
453
0
        RB_SET_BLACKRED(tmp, parent, field); \
454
0
        RB_ROTATE_LEFT(head, parent, tmp, field);\
455
0
        tmp = RB_RIGHT(parent, field);    \
456
0
      }           \
457
0
      if ((RB_LEFT(tmp, field) == NULL ||   \
458
0
          RB_COLOR(RB_LEFT(tmp, field), field) == RB_BLACK) &&\
459
0
          (RB_RIGHT(tmp, field) == NULL ||   \
460
0
          RB_COLOR(RB_RIGHT(tmp, field), field) == RB_BLACK)) {\
461
0
        RB_COLOR(tmp, field) = RB_RED;   \
462
0
        elm = parent;       \
463
0
        parent = RB_PARENT(elm, field);   \
464
0
      } else {         \
465
0
        if (RB_RIGHT(tmp, field) == NULL || \
466
0
            RB_COLOR(RB_RIGHT(tmp, field), field) == RB_BLACK) {\
467
0
          struct type *oleft;   \
468
0
          if ((oleft = RB_LEFT(tmp, field)))\
469
0
            RB_COLOR(oleft, field) = RB_BLACK;\
470
0
          RB_COLOR(tmp, field) = RB_RED; \
471
0
          RB_ROTATE_RIGHT(head, tmp, oleft, field);\
472
0
          tmp = RB_RIGHT(parent, field);  \
473
0
        }         \
474
0
        RB_COLOR(tmp, field) = RB_COLOR(parent, field);\
475
0
        RB_COLOR(parent, field) = RB_BLACK; \
476
0
        if (RB_RIGHT(tmp, field))   \
477
0
          RB_COLOR(RB_RIGHT(tmp, field), field) = RB_BLACK;\
478
0
        RB_ROTATE_LEFT(head, parent, tmp, field);\
479
0
        elm = RB_ROOT(head);     \
480
0
        break;          \
481
0
      }           \
482
0
    } else {           \
483
0
      tmp = RB_LEFT(parent, field);      \
484
0
      if (RB_COLOR(tmp, field) == RB_RED) {   \
485
0
        RB_SET_BLACKRED(tmp, parent, field); \
486
0
        RB_ROTATE_RIGHT(head, parent, tmp, field);\
487
0
        tmp = RB_LEFT(parent, field);    \
488
0
      }           \
489
0
      if ((RB_LEFT(tmp, field) == NULL ||   \
490
0
          RB_COLOR(RB_LEFT(tmp, field), field) == RB_BLACK) &&\
491
0
          (RB_RIGHT(tmp, field) == NULL ||   \
492
0
          RB_COLOR(RB_RIGHT(tmp, field), field) == RB_BLACK)) {\
493
0
        RB_COLOR(tmp, field) = RB_RED;   \
494
0
        elm = parent;       \
495
0
        parent = RB_PARENT(elm, field);   \
496
0
      } else {         \
497
0
        if (RB_LEFT(tmp, field) == NULL || \
498
0
            RB_COLOR(RB_LEFT(tmp, field), field) == RB_BLACK) {\
499
0
          struct type *oright;    \
500
0
          if ((oright = RB_RIGHT(tmp, field)))\
501
0
            RB_COLOR(oright, field) = RB_BLACK;\
502
0
          RB_COLOR(tmp, field) = RB_RED; \
503
0
          RB_ROTATE_LEFT(head, tmp, oright, field);\
504
0
          tmp = RB_LEFT(parent, field);  \
505
0
        }         \
506
0
        RB_COLOR(tmp, field) = RB_COLOR(parent, field);\
507
0
        RB_COLOR(parent, field) = RB_BLACK; \
508
0
        if (RB_LEFT(tmp, field))   \
509
0
          RB_COLOR(RB_LEFT(tmp, field), field) = RB_BLACK;\
510
0
        RB_ROTATE_RIGHT(head, parent, tmp, field);\
511
0
        elm = RB_ROOT(head);     \
512
0
        break;          \
513
0
      }           \
514
0
    }             \
515
0
  }               \
516
0
  if (elm)             \
517
0
    RB_COLOR(elm, field) = RB_BLACK;     \
518
0
}                  \
Unexecuted instantiation: input-keys.c:input_key_tree_RB_REMOVE_COLOR
Unexecuted instantiation: utf8.c:utf8_data_tree_RB_REMOVE_COLOR
Unexecuted instantiation: utf8.c:utf8_index_tree_RB_REMOVE_COLOR
519
                  \
520
attr struct type *              \
521
0
name##_RB_REMOVE(struct name *head, struct type *elm)     \
522
0
{                 \
523
0
  struct type *child, *parent, *old = elm;      \
524
0
  int color;              \
525
0
  if (RB_LEFT(elm, field) == NULL)       \
526
0
    child = RB_RIGHT(elm, field);       \
527
0
  else if (RB_RIGHT(elm, field) == NULL)       \
528
0
    child = RB_LEFT(elm, field);       \
529
0
  else {               \
530
0
    struct type *left;          \
531
0
    elm = RB_RIGHT(elm, field);       \
532
0
    while ((left = RB_LEFT(elm, field)))      \
533
0
      elm = left;         \
534
0
    child = RB_RIGHT(elm, field);       \
535
0
    parent = RB_PARENT(elm, field);       \
536
0
    color = RB_COLOR(elm, field);       \
537
0
    if (child)           \
538
0
      RB_PARENT(child, field) = parent;   \
539
0
    if (parent) {           \
540
0
      if (RB_LEFT(parent, field) == elm)   \
541
0
        RB_LEFT(parent, field) = child;   \
542
0
      else            \
543
0
        RB_RIGHT(parent, field) = child; \
544
0
      RB_AUGMENT(parent);       \
545
0
    } else              \
546
0
      RB_ROOT(head) = child;       \
547
0
    if (RB_PARENT(elm, field) == old)     \
548
0
      parent = elm;         \
549
0
    (elm)->field = (old)->field;        \
550
0
    if (RB_PARENT(old, field)) {       \
551
0
      if (RB_LEFT(RB_PARENT(old, field), field) == old)\
552
0
        RB_LEFT(RB_PARENT(old, field), field) = elm;\
553
0
      else            \
554
0
        RB_RIGHT(RB_PARENT(old, field), field) = elm;\
555
0
      RB_AUGMENT(RB_PARENT(old, field));    \
556
0
    } else              \
557
0
      RB_ROOT(head) = elm;       \
558
0
    RB_PARENT(RB_LEFT(old, field), field) = elm;   \
559
0
    if (RB_RIGHT(old, field))       \
560
0
      RB_PARENT(RB_RIGHT(old, field), field) = elm; \
561
0
    if (parent) {           \
562
0
      left = parent;          \
563
0
      do {           \
564
0
        RB_AUGMENT(left);     \
565
0
      } while ((left = RB_PARENT(left, field)));  \
566
0
    }             \
567
0
    goto color;           \
568
0
  }               \
569
0
  parent = RB_PARENT(elm, field);         \
570
0
  color = RB_COLOR(elm, field);         \
571
0
  if (child)             \
572
0
    RB_PARENT(child, field) = parent;     \
573
0
  if (parent) {             \
574
0
    if (RB_LEFT(parent, field) == elm)     \
575
0
      RB_LEFT(parent, field) = child;     \
576
0
    else              \
577
0
      RB_RIGHT(parent, field) = child;   \
578
0
    RB_AUGMENT(parent);         \
579
0
  } else                \
580
0
    RB_ROOT(head) = child;         \
581
0
color:                  \
582
0
  if (color == RB_BLACK)           \
583
0
    name##_RB_REMOVE_COLOR(head, parent, child);    \
584
0
  return (old);             \
585
0
}                  \
Unexecuted instantiation: input-keys.c:input_key_tree_RB_REMOVE
Unexecuted instantiation: utf8.c:utf8_data_tree_RB_REMOVE
Unexecuted instantiation: utf8.c:utf8_index_tree_RB_REMOVE
586
                  \
587
/* Inserts a node into the RB tree */         \
588
attr struct type *              \
589
248
name##_RB_INSERT(struct name *head, struct type *elm)     \
590
248
{                 \
591
248
  struct type *tmp;           \
592
248
  struct type *parent = NULL;         \
593
248
  int comp = 0;             \
594
248
  tmp = RB_ROOT(head);           \
595
1.81k
  while (tmp) {             \
596
1.56k
    parent = tmp;           \
597
1.56k
    comp = (cmp)(elm, parent);        \
598
1.56k
    if (comp < 0)           \
599
1.56k
      tmp = RB_LEFT(tmp, field);     \
600
1.56k
    else if (comp > 0)         \
601
1.20k
      tmp = RB_RIGHT(tmp, field);     \
602
1.20k
    else              \
603
1.20k
      return (tmp);         \
604
1.56k
  }                \
605
248
  RB_SET(elm, parent, field);         \
606
248
  if (parent != NULL) {           \
607
240
    if (comp < 0)           \
608
240
      RB_LEFT(parent, field) = elm;     \
609
240
    else              \
610
240
      RB_RIGHT(parent, field) = elm;     \
611
240
    RB_AUGMENT(parent);         \
612
240
  } else               \
613
248
    RB_ROOT(head) = elm;         \
614
248
  name##_RB_INSERT_COLOR(head, elm);        \
615
248
  return (NULL);              \
616
248
}                  \
617
                  \
618
/* Finds the node with the same key as elm */       \
619
attr struct type *              \
620
590
name##_RB_FIND(struct name *head, struct type *elm)     \
621
590
{                 \
622
590
  struct type *tmp = RB_ROOT(head);       \
623
590
  int comp;             \
624
3.87k
  while (tmp) {             \
625
3.37k
    comp = cmp(elm, tmp);         \
626
3.37k
    if (comp < 0)           \
627
3.37k
      tmp = RB_LEFT(tmp, field);     \
628
3.37k
    else if (comp > 0)         \
629
2.60k
      tmp = RB_RIGHT(tmp, field);     \
630
2.60k
    else              \
631
2.60k
      return (tmp);         \
632
3.37k
  }                \
633
590
  return (NULL);             \
634
590
}                  \
635
                  \
636
/* Finds the first node greater than or equal to the search key */  \
637
attr struct type *              \
638
0
name##_RB_NFIND(struct name *head, struct type *elm)      \
639
0
{                 \
640
0
  struct type *tmp = RB_ROOT(head);       \
641
0
  struct type *res = NULL;          \
642
0
  int comp;             \
643
0
  while (tmp) {             \
644
0
    comp = cmp(elm, tmp);         \
645
0
    if (comp < 0) {           \
646
0
      res = tmp;          \
647
0
      tmp = RB_LEFT(tmp, field);     \
648
0
    }             \
649
0
    else if (comp > 0)         \
650
0
      tmp = RB_RIGHT(tmp, field);     \
651
0
    else              \
652
0
      return (tmp);         \
653
0
  }               \
654
0
  return (res);             \
655
0
}                  \
Unexecuted instantiation: arguments.c:args_tree_RB_NFIND
Unexecuted instantiation: cmd-wait-for.c:wait_channels_RB_NFIND
Unexecuted instantiation: control.c:control_panes_RB_NFIND
Unexecuted instantiation: control.c:control_subs_RB_NFIND
Unexecuted instantiation: control.c:control_sub_panes_RB_NFIND
Unexecuted instantiation: control.c:control_sub_windows_RB_NFIND
Unexecuted instantiation: environ.c:environ_RB_NFIND
Unexecuted instantiation: format.c:format_job_tree_RB_NFIND
Unexecuted instantiation: format.c:format_entry_tree_RB_NFIND
Unexecuted instantiation: hyperlinks.c:hyperlinks_by_uri_tree_RB_NFIND
Unexecuted instantiation: hyperlinks.c:hyperlinks_by_inner_tree_RB_NFIND
Unexecuted instantiation: input-keys.c:input_key_tree_RB_NFIND
Unexecuted instantiation: key-bindings.c:key_bindings_RB_NFIND
Unexecuted instantiation: key-bindings.c:key_tables_RB_NFIND
Unexecuted instantiation: options.c:options_array_RB_NFIND
Unexecuted instantiation: options.c:options_tree_RB_NFIND
Unexecuted instantiation: paste.c:paste_name_tree_RB_NFIND
Unexecuted instantiation: paste.c:paste_time_tree_RB_NFIND
Unexecuted instantiation: server-acl.c:server_acl_entries_RB_NFIND
Unexecuted instantiation: utf8.c:utf8_width_cache_RB_NFIND
Unexecuted instantiation: utf8.c:utf8_data_tree_RB_NFIND
Unexecuted instantiation: utf8.c:utf8_index_tree_RB_NFIND
656
                  \
657
/* ARGSUSED */                \
658
attr struct type *              \
659
6
name##_RB_NEXT(struct type *elm)          \
660
6
{                 \
661
6
  if (RB_RIGHT(elm, field)) {         \
662
3
    elm = RB_RIGHT(elm, field);       \
663
4
    while (RB_LEFT(elm, field))       \
664
3
      elm = RB_LEFT(elm, field);     \
665
3
  } else {             \
666
3
    if (RB_PARENT(elm, field) &&       \
667
3
        (elm == RB_LEFT(RB_PARENT(elm, field), field)))  \
668
3
      elm = RB_PARENT(elm, field);     \
669
3
    else {             \
670
4
      while (RB_PARENT(elm, field) &&     \
671
4
          (elm == RB_RIGHT(RB_PARENT(elm, field), field)))\
672
3
        elm = RB_PARENT(elm, field);   \
673
1
      elm = RB_PARENT(elm, field);     \
674
1
    }              \
675
3
  }                \
676
6
  return (elm);             \
677
6
}                  \
Unexecuted instantiation: arguments.c:args_tree_RB_NEXT
Unexecuted instantiation: cmd-wait-for.c:wait_channels_RB_NEXT
Unexecuted instantiation: control.c:control_panes_RB_NEXT
Unexecuted instantiation: control.c:control_subs_RB_NEXT
Unexecuted instantiation: control.c:control_sub_panes_RB_NEXT
Unexecuted instantiation: control.c:control_sub_windows_RB_NEXT
Unexecuted instantiation: environ.c:environ_RB_NEXT
Unexecuted instantiation: client_files_RB_NEXT
Unexecuted instantiation: format.c:format_job_tree_RB_NEXT
Unexecuted instantiation: format.c:format_entry_tree_RB_NEXT
Unexecuted instantiation: hyperlinks.c:hyperlinks_by_inner_tree_RB_NEXT
Unexecuted instantiation: hyperlinks.c:hyperlinks_by_uri_tree_RB_NEXT
Unexecuted instantiation: input-keys.c:input_key_tree_RB_NEXT
Unexecuted instantiation: key-bindings.c:key_tables_RB_NEXT
Unexecuted instantiation: key-bindings.c:key_bindings_RB_NEXT
Unexecuted instantiation: options.c:options_tree_RB_NEXT
options.c:options_array_RB_NEXT
Line
Count
Source
659
6
name##_RB_NEXT(struct type *elm)          \
660
6
{                 \
661
6
  if (RB_RIGHT(elm, field)) {         \
662
3
    elm = RB_RIGHT(elm, field);       \
663
4
    while (RB_LEFT(elm, field))       \
664
3
      elm = RB_LEFT(elm, field);     \
665
3
  } else {             \
666
3
    if (RB_PARENT(elm, field) &&       \
667
3
        (elm == RB_LEFT(RB_PARENT(elm, field), field)))  \
668
3
      elm = RB_PARENT(elm, field);     \
669
3
    else {             \
670
4
      while (RB_PARENT(elm, field) &&     \
671
4
          (elm == RB_RIGHT(RB_PARENT(elm, field), field)))\
672
3
        elm = RB_PARENT(elm, field);   \
673
1
      elm = RB_PARENT(elm, field);     \
674
1
    }              \
675
3
  }                \
676
6
  return (elm);             \
677
6
}                  \
Unexecuted instantiation: paste.c:paste_time_tree_RB_NEXT
Unexecuted instantiation: paste.c:paste_name_tree_RB_NEXT
Unexecuted instantiation: server-acl.c:server_acl_entries_RB_NEXT
Unexecuted instantiation: client_windows_RB_NEXT
Unexecuted instantiation: sessions_RB_NEXT
Unexecuted instantiation: session_groups_RB_NEXT
Unexecuted instantiation: utf8.c:utf8_width_cache_RB_NEXT
Unexecuted instantiation: utf8.c:utf8_data_tree_RB_NEXT
Unexecuted instantiation: utf8.c:utf8_index_tree_RB_NEXT
Unexecuted instantiation: windows_RB_NEXT
Unexecuted instantiation: winlinks_RB_NEXT
Unexecuted instantiation: window_pane_tree_RB_NEXT
678
                  \
679
/* ARGSUSED */                \
680
attr struct type *              \
681
0
name##_RB_PREV(struct type *elm)          \
682
0
{                 \
683
0
  if (RB_LEFT(elm, field)) {         \
684
0
    elm = RB_LEFT(elm, field);       \
685
0
    while (RB_RIGHT(elm, field))       \
686
0
      elm = RB_RIGHT(elm, field);     \
687
0
  } else {             \
688
0
    if (RB_PARENT(elm, field) &&       \
689
0
        (elm == RB_RIGHT(RB_PARENT(elm, field), field)))  \
690
0
      elm = RB_PARENT(elm, field);     \
691
0
    else {             \
692
0
      while (RB_PARENT(elm, field) &&     \
693
0
          (elm == RB_LEFT(RB_PARENT(elm, field), field)))\
694
0
        elm = RB_PARENT(elm, field);   \
695
0
      elm = RB_PARENT(elm, field);     \
696
0
    }             \
697
0
  }               \
698
0
  return (elm);             \
699
0
}                  \
Unexecuted instantiation: arguments.c:args_tree_RB_PREV
Unexecuted instantiation: cmd-wait-for.c:wait_channels_RB_PREV
Unexecuted instantiation: control.c:control_panes_RB_PREV
Unexecuted instantiation: control.c:control_subs_RB_PREV
Unexecuted instantiation: control.c:control_sub_panes_RB_PREV
Unexecuted instantiation: control.c:control_sub_windows_RB_PREV
Unexecuted instantiation: environ.c:environ_RB_PREV
Unexecuted instantiation: client_files_RB_PREV
Unexecuted instantiation: format.c:format_job_tree_RB_PREV
Unexecuted instantiation: format.c:format_entry_tree_RB_PREV
Unexecuted instantiation: hyperlinks.c:hyperlinks_by_uri_tree_RB_PREV
Unexecuted instantiation: hyperlinks.c:hyperlinks_by_inner_tree_RB_PREV
Unexecuted instantiation: input-keys.c:input_key_tree_RB_PREV
Unexecuted instantiation: key-bindings.c:key_bindings_RB_PREV
Unexecuted instantiation: key-bindings.c:key_tables_RB_PREV
Unexecuted instantiation: options.c:options_array_RB_PREV
Unexecuted instantiation: options.c:options_tree_RB_PREV
Unexecuted instantiation: paste.c:paste_time_tree_RB_PREV
Unexecuted instantiation: paste.c:paste_name_tree_RB_PREV
Unexecuted instantiation: server-acl.c:server_acl_entries_RB_PREV
Unexecuted instantiation: client_windows_RB_PREV
Unexecuted instantiation: sessions_RB_PREV
Unexecuted instantiation: session_groups_RB_PREV
Unexecuted instantiation: utf8.c:utf8_width_cache_RB_PREV
Unexecuted instantiation: utf8.c:utf8_data_tree_RB_PREV
Unexecuted instantiation: utf8.c:utf8_index_tree_RB_PREV
Unexecuted instantiation: windows_RB_PREV
Unexecuted instantiation: winlinks_RB_PREV
Unexecuted instantiation: window_pane_tree_RB_PREV
700
                  \
701
attr struct type *              \
702
3
name##_RB_MINMAX(struct name *head, int val)        \
703
3
{                 \
704
3
  struct type *tmp = RB_ROOT(head);       \
705
3
  struct type *parent = NULL;         \
706
5
  while (tmp) {             \
707
2
    parent = tmp;           \
708
2
    if (val < 0)           \
709
2
      tmp = RB_LEFT(tmp, field);     \
710
2
    else              \
711
2
      tmp = RB_RIGHT(tmp, field);     \
712
2
  }                \
713
3
  return (parent);            \
714
3
}
Unexecuted instantiation: hyperlinks.c:hyperlinks_by_uri_tree_RB_MINMAX
Unexecuted instantiation: paste.c:paste_name_tree_RB_MINMAX
Unexecuted instantiation: utf8.c:utf8_data_tree_RB_MINMAX
Unexecuted instantiation: utf8.c:utf8_index_tree_RB_MINMAX
715
716
3
#define RB_NEGINF -1
717
0
#define RB_INF  1
718
719
248
#define RB_INSERT(name, x, y) name##_RB_INSERT(x, y)
720
0
#define RB_REMOVE(name, x, y) name##_RB_REMOVE(x, y)
721
590
#define RB_FIND(name, x, y) name##_RB_FIND(x, y)
722
#define RB_NFIND(name, x, y)  name##_RB_NFIND(x, y)
723
6
#define RB_NEXT(name, x, y) name##_RB_NEXT(y)
724
0
#define RB_PREV(name, x, y) name##_RB_PREV(y)
725
3
#define RB_MIN(name, x)   name##_RB_MINMAX(x, RB_NEGINF)
726
0
#define RB_MAX(name, x)   name##_RB_MINMAX(x, RB_INF)
727
728
#define RB_FOREACH(x, name, head)         \
729
2
  for ((x) = RB_MIN(name, head);         \
730
2
       (x) != NULL;           \
731
2
       (x) = name##_RB_NEXT(x))
732
733
#define RB_FOREACH_SAFE(x, name, head, y)       \
734
0
  for ((x) = RB_MIN(name, head);         \
735
0
      ((x) != NULL) && ((y) = name##_RB_NEXT(x), 1);    \
736
0
       (x) = (y))
737
738
#define RB_FOREACH_REVERSE(x, name, head)       \
739
  for ((x) = RB_MAX(name, head);          \
740
       (x) != NULL;           \
741
       (x) = name##_RB_PREV(x))
742
743
#define RB_FOREACH_REVERSE_SAFE(x, name, head, y)     \
744
0
  for ((x) = RB_MAX(name, head);         \
745
0
      ((x) != NULL) && ((y) = name##_RB_PREV(x), 1);    \
746
0
       (x) = (y))
747
748
#endif  /* _SYS_TREE_H_ */