b                 144 lib/intprops-internal.h #    define _GL_INT_ADD_WRAPV(a, b, r)      __builtin_add_overflow (a, b, r)
b                 145 lib/intprops-internal.h #    define _GL_INT_SUBTRACT_WRAPV(a, b, r) __builtin_sub_overflow (a, b, r)
b                 147 lib/intprops-internal.h #    define _GL_INT_ADD_WRAPV(a, b, r)      ckd_add (r, +(a), +(b))
b                 148 lib/intprops-internal.h #    define _GL_INT_SUBTRACT_WRAPV(a, b, r) ckd_sub (r, +(a), +(b))
b                 150 lib/intprops-internal.h #    define _GL_INT_ADD_WRAPV(a, b, r) _GL_INT_OP_WRAPV (a, b, r, +, _GL_INT_ADD_RANGE_OVERFLOW)
b                 151 lib/intprops-internal.h #    define _GL_INT_SUBTRACT_WRAPV(a, b, r)                                                        \
b                 152 lib/intprops-internal.h         _GL_INT_OP_WRAPV (a, b, r, -, _GL_INT_SUBTRACT_RANGE_OVERFLOW)
b                 157 lib/intprops-internal.h #        define _GL_INT_MULTIPLY_WRAPV(a, b, r) __builtin_mul_overflow (a, b, r)
b                 160 lib/intprops-internal.h #        define _GL_INT_MULTIPLY_WRAPV(a, b, r)                                                    \
b                 161 lib/intprops-internal.h             ((!_GL_SIGNED_TYPE_OR_EXPR (*(r)) && _GL_EXPR_SIGNED (a) && _GL_EXPR_SIGNED (b)        \
b                 162 lib/intprops-internal.h               && _GL_INT_MULTIPLY_RANGE_OVERFLOW (a, b, (__typeof__ (*(r))) 0,                     \
b                 164 lib/intprops-internal.h                  ? ((void) __builtin_mul_overflow (a, b, r), 1)                                    \
b                 165 lib/intprops-internal.h                  : __builtin_mul_overflow (a, b, r))
b                 168 lib/intprops-internal.h #    define _GL_INT_MULTIPLY_WRAPV(a, b, r) ckd_mul (r, +(a), +(b))
b                 170 lib/intprops-internal.h #    define _GL_INT_MULTIPLY_WRAPV(a, b, r)                                                        \
b                 171 lib/intprops-internal.h         _GL_INT_OP_WRAPV (a, b, r, *, _GL_INT_MULTIPLY_RANGE_OVERFLOW)
b                 192 lib/intprops-internal.h #    define _GL_INT_OP_WRAPV(a, b, r, op, overflow)                                                \
b                 194 lib/intprops-internal.h              signed char: _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned int, signed char,       \
b                 196 lib/intprops-internal.h              unsigned char: _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned int, unsigned char,   \
b                 198 lib/intprops-internal.h              short int: _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned int, short int, SHRT_MIN, \
b                 200 lib/intprops-internal.h              unsigned short int: _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned int,             \
b                 202 lib/intprops-internal.h              int: _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned int, int, INT_MIN, INT_MAX),    \
b                 203 lib/intprops-internal.h              unsigned int: _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned int, unsigned int, 0,  \
b                 205 lib/intprops-internal.h              long int: _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned long int, long int,        \
b                 207 lib/intprops-internal.h              unsigned long int: _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned long int,         \
b                 209 lib/intprops-internal.h              long long int: _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned long long int,        \
b                 211 lib/intprops-internal.h              unsigned long long int: _GL_INT_OP_CALC (a, b, r, op, overflow,                       \
b                 223 lib/intprops-internal.h #        define _GL_INT_OP_WRAPV_SMALLISH(a, b, r, op, overflow, st, smin, smax, ut, umax)         \
b                 225 lib/intprops-internal.h                  ? _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned int, st, smin, smax)           \
b                 226 lib/intprops-internal.h                  : _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned int, ut, 0, umax))
b                 228 lib/intprops-internal.h #        define _GL_INT_OP_WRAPV_SMALLISH(a, b, r, op, overflow, st, smin, smax, ut, umax)         \
b                 229 lib/intprops-internal.h             (overflow (a, b, smin, smax)                                                           \
b                 230 lib/intprops-internal.h                  ? (overflow (a, b, 0, umax)                                                       \
b                 231 lib/intprops-internal.h                         ? (*(r) = _GL_INT_OP_WRAPV_VIA_UNSIGNED (a, b, op, unsigned, st), 1)       \
b                 232 lib/intprops-internal.h                         : (*(r) = _GL_INT_OP_WRAPV_VIA_UNSIGNED (a, b, op, unsigned, st)) < 0)     \
b                 233 lib/intprops-internal.h                  : (overflow (a, b, 0, umax)                                                       \
b                 234 lib/intprops-internal.h                         ? (*(r) = _GL_INT_OP_WRAPV_VIA_UNSIGNED (a, b, op, unsigned, st)) >= 0     \
b                 235 lib/intprops-internal.h                         : (*(r) = _GL_INT_OP_WRAPV_VIA_UNSIGNED (a, b, op, unsigned, st), 0)))
b                 238 lib/intprops-internal.h #    define _GL_INT_OP_WRAPV(a, b, r, op, overflow)                                                \
b                 240 lib/intprops-internal.h              ? _GL_INT_OP_WRAPV_SMALLISH (a, b, r, op, overflow, signed char, SCHAR_MIN,           \
b                 243 lib/intprops-internal.h              ? _GL_INT_OP_WRAPV_SMALLISH (a, b, r, op, overflow, short int, SHRT_MIN, SHRT_MAX,    \
b                 247 lib/intprops-internal.h                     ? _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned int, int, INT_MIN, INT_MAX) \
b                 248 lib/intprops-internal.h                     : _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned int, unsigned int, 0,       \
b                 250 lib/intprops-internal.h              : _GL_INT_OP_WRAPV_LONGISH (a, b, r, op, overflow))
b                 252 lib/intprops-internal.h #        define _GL_INT_OP_WRAPV_LONGISH(a, b, r, op, overflow)                                    \
b                 255 lib/intprops-internal.h                         ? _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned long int, long int,     \
b                 257 lib/intprops-internal.h                         : _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned long int,               \
b                 260 lib/intprops-internal.h                         ? _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned long long int,          \
b                 262 lib/intprops-internal.h                         : _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned long long int,          \
b                 265 lib/intprops-internal.h #        define _GL_INT_OP_WRAPV_LONGISH(a, b, r, op, overflow)                                    \
b                 266 lib/intprops-internal.h             (_GL_EXPR_SIGNED (*(r)) ? _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned long int,   \
b                 268 lib/intprops-internal.h                                     : _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned long int,   \
b                 279 lib/intprops-internal.h #define _GL_INT_OP_CALC(a, b, r, op, overflow, ut, t, tmin, tmax)                                  \
b                 280 lib/intprops-internal.h     (overflow (a, b, tmin, tmax) ? (*(r) = _GL_INT_OP_WRAPV_VIA_UNSIGNED (a, b, op, ut, t), 1)     \
b                 281 lib/intprops-internal.h                                  : (*(r) = _GL_INT_OP_WRAPV_VIA_UNSIGNED (a, b, op, ut, t), 0))
b                 313 lib/intprops-internal.h #define _GL_INT_OP_WRAPV_VIA_UNSIGNED(a, b, op, ut, t) ((t) ((ut) (a) op (ut) (b)))
b                 321 lib/intprops-internal.h #define _GL_INT_ADD_RANGE_OVERFLOW(a, b, tmin, tmax)                                               \
b                 322 lib/intprops-internal.h     ((b) < 0 ? (((tmin) ? ((_GL_EXPR_SIGNED (_GL_INT_CONVERT (a, (tmin) - (b))) || (b) < (tmin))   \
b                 323 lib/intprops-internal.h                            && (a) < (tmin) - (b))                                                  \
b                 324 lib/intprops-internal.h                         : (a) <= -1 - (b))                                                         \
b                 325 lib/intprops-internal.h                 || ((_GL_EXPR_SIGNED (a) ? 0 <= (a) : (tmax) < (a)) && (tmax) < (a) + (b)))        \
b                 327 lib/intprops-internal.h          ? (((tmin) ? ((_GL_EXPR_SIGNED (_GL_INT_CONVERT (b, (tmin) - (a))) || (a) < (tmin))       \
b                 328 lib/intprops-internal.h                        && (b) < (tmin) - (a))                                                      \
b                 329 lib/intprops-internal.h                     : (b) <= -1 - (a))                                                             \
b                 330 lib/intprops-internal.h             || ((_GL_EXPR_SIGNED (_GL_INT_CONVERT (a, b)) || (tmax) < (b)) && (tmax) < (a) + (b))) \
b                 331 lib/intprops-internal.h          : (tmax) < (b) || (tmax) - (b) < (a))
b                 332 lib/intprops-internal.h #define _GL_INT_SUBTRACT_RANGE_OVERFLOW(a, b, tmin, tmax)                                          \
b                 333 lib/intprops-internal.h     (((a) < 0) == ((b) < 0)                                                                        \
b                 334 lib/intprops-internal.h          ? ((a) < (b) ? !(tmin) || -1 - (tmin) < (b) - (a) - 1 : (tmax) < (a) - (b))               \
b                 335 lib/intprops-internal.h          : (a) < 0 ? ((!_GL_EXPR_SIGNED (_GL_INT_CONVERT ((a) - (tmin), b)) && (a) - (tmin) < 0)   \
b                 336 lib/intprops-internal.h                       || (a) - (tmin) < (b))                                                       \
b                 337 lib/intprops-internal.h                    : ((!(_GL_EXPR_SIGNED (_GL_INT_CONVERT (tmax, b))                               \
b                 338 lib/intprops-internal.h                          && _GL_EXPR_SIGNED (_GL_INT_CONVERT ((tmax) + (b), a)))                   \
b                 339 lib/intprops-internal.h                        && (tmax) <= -1 - (b))                                                      \
b                 340 lib/intprops-internal.h                       || (tmax) + (b) < (a)))
b                 341 lib/intprops-internal.h #define _GL_INT_MULTIPLY_RANGE_OVERFLOW(a, b, tmin, tmax)                                          \
b                 342 lib/intprops-internal.h     ((b) < 0 ? ((a) < 0 ? (_GL_EXPR_SIGNED (_GL_INT_CONVERT (tmax, b))                             \
b                 343 lib/intprops-internal.h                                ? (a) < (tmax) / (b)                                                \
b                 344 lib/intprops-internal.h                                : ((_GL_INT_NEGATE_OVERFLOW (b)                                     \
b                 345 lib/intprops-internal.h                                        ? _GL_INT_CONVERT (b, tmax) >> (_GL_TYPE_WIDTH (+(b)) - 1)  \
b                 346 lib/intprops-internal.h                                        : (tmax) / -(b))                                            \
b                 348 lib/intprops-internal.h                     : _GL_INT_NEGATE_OVERFLOW (_GL_INT_CONVERT (b, tmin)) && (b) == -1             \
b                 350 lib/intprops-internal.h                     : (tmin) / (b) < (a))                                                          \
b                 351 lib/intprops-internal.h          : (b) == 0                                                                                \
b                 354 lib/intprops-internal.h                            ? (_GL_EXPR_SIGNED (b) ? 0 < (b) + (tmin) : -1 - (tmin) < (b) - 1)      \
b                 355 lib/intprops-internal.h                            : (tmin) / (a) < (b))                                                   \
b                 356 lib/intprops-internal.h                     : (tmax) / (b) < (a)))
b                  52 lib/intprops.h #define INT_BITS_STRLEN_BOUND(b) (((b) * 146 + 484) / 485)
b                 110 lib/intprops.h #define INT_ADD_RANGE_OVERFLOW(a, b, min, max) ((b) < 0 ? (a) < (min) - (b) : (max) - (b) < (a))
b                 114 lib/intprops.h #define INT_SUBTRACT_RANGE_OVERFLOW(a, b, min, max)                                                \
b                 115 lib/intprops.h     ((b) < 0 ? (max) + (b) < (a) : (a) < (min) + (b))
b                 125 lib/intprops.h #define INT_MULTIPLY_RANGE_OVERFLOW(a, b, min, max)                                                \
b                 126 lib/intprops.h     ((b) < 0        ? ((a) < 0         ? (a) < (max) / (b)                                         \
b                 127 lib/intprops.h                            : (b) == -1 ? 0                                                         \
b                 128 lib/intprops.h                                        : (min) / (b) < (a))                                        \
b                 129 lib/intprops.h          : (b) == 0 ? 0                                                                            \
b                 130 lib/intprops.h                     : ((a) < 0 ? (a) < (min) / (b) : (max) / (b) < (a)))
b                 134 lib/intprops.h #define INT_DIVIDE_RANGE_OVERFLOW(a, b, min, max) ((min) < 0 && (b) == -1 && (a) < -(max))
b                 141 lib/intprops.h #define INT_REMAINDER_RANGE_OVERFLOW(a, b, min, max) INT_DIVIDE_RANGE_OVERFLOW (a, b, min, max)
b                 150 lib/intprops.h #define INT_LEFT_SHIFT_RANGE_OVERFLOW(a, b, min, max)                                              \
b                 151 lib/intprops.h     ((a) < 0 ? (a) < (min) >> (b) : (max) >> (b) < (a))
b                 158 lib/intprops.h #    define _GL_ADD_OVERFLOW(a, b, min, max)                                                       \
b                 159 lib/intprops.h         __builtin_add_overflow_p (a, b, (__typeof__ ((a) + (b))) 0)
b                 160 lib/intprops.h #    define _GL_SUBTRACT_OVERFLOW(a, b, min, max)                                                  \
b                 161 lib/intprops.h         __builtin_sub_overflow_p (a, b, (__typeof__ ((a) - (b))) 0)
b                 162 lib/intprops.h #    define _GL_MULTIPLY_OVERFLOW(a, b, min, max)                                                  \
b                 163 lib/intprops.h         __builtin_mul_overflow_p (a, b, (__typeof__ ((a) * (b))) 0)
b                 165 lib/intprops.h #    define _GL_ADD_OVERFLOW(a, b, min, max)                                                       \
b                 166 lib/intprops.h         ((min) < 0     ? INT_ADD_RANGE_OVERFLOW (a, b, min, max)                                   \
b                 167 lib/intprops.h              : (a) < 0 ? (b) <= (a) + (b)                                                          \
b                 168 lib/intprops.h              : (b) < 0 ? (a) <= (a) + (b)                                                          \
b                 169 lib/intprops.h                        : (a) + (b) < (b))
b                 170 lib/intprops.h #    define _GL_SUBTRACT_OVERFLOW(a, b, min, max)                                                  \
b                 171 lib/intprops.h         ((min) < 0     ? INT_SUBTRACT_RANGE_OVERFLOW (a, b, min, max)                              \
b                 173 lib/intprops.h              : (b) < 0 ? (a) - (b) <= (a)                                                          \
b                 174 lib/intprops.h                        : (a) < (b))
b                 175 lib/intprops.h #    define _GL_MULTIPLY_OVERFLOW(a, b, min, max)                                                  \
b                 176 lib/intprops.h         (((min) == 0 && (((a) < 0 && 0 < (b)) || ((b) < 0 && 0 < (a))))                            \
b                 177 lib/intprops.h          || INT_MULTIPLY_RANGE_OVERFLOW (a, b, min, max))
b                 179 lib/intprops.h #define _GL_DIVIDE_OVERFLOW(a, b, min, max)                                                        \
b                 180 lib/intprops.h     ((min) < 0     ? (b) == _GL_INT_NEGATE_CONVERT (min, 1) && (a) < -(max)                        \
b                 181 lib/intprops.h          : (a) < 0 ? (b) <= (a) + (b) - 1                                                          \
b                 182 lib/intprops.h                    : (b) < 0 && (a) + (b) <= (a))
b                 183 lib/intprops.h #define _GL_REMAINDER_OVERFLOW(a, b, min, max)                                                     \
b                 184 lib/intprops.h     ((min) < 0     ? (b) == _GL_INT_NEGATE_CONVERT (min, 1) && (a) < -(max)                        \
b                 185 lib/intprops.h          : (a) < 0 ? (a) % (b) != ((max) - (b) + 1) % (b)                                          \
b                 186 lib/intprops.h                    : (b) < 0 && !_GL_UNSIGNED_NEG_MULTIPLE (a, b, max))
b                 192 lib/intprops.h #define _GL_UNSIGNED_NEG_MULTIPLE(a, b, max)                                                       \
b                 193 lib/intprops.h     (((b) < -_GL_SIGNED_INT_MAXIMUM (b)                                                            \
b                 194 lib/intprops.h           ? (_GL_SIGNED_INT_MAXIMUM (b) == (max)                                                   \
b                 196 lib/intprops.h                  : (a) % (_GL_INT_CONVERT (a, _GL_SIGNED_INT_MAXIMUM (b)) + 1))                    \
b                 197 lib/intprops.h           : (a) % -(b))                                                                            \
b                 254 lib/intprops.h #define INT_ADD_OVERFLOW(a, b)       _GL_BINARY_OP_OVERFLOW (a, b, _GL_ADD_OVERFLOW)
b                 255 lib/intprops.h #define INT_SUBTRACT_OVERFLOW(a, b)  _GL_BINARY_OP_OVERFLOW (a, b, _GL_SUBTRACT_OVERFLOW)
b                 257 lib/intprops.h #define INT_MULTIPLY_OVERFLOW(a, b)  _GL_BINARY_OP_OVERFLOW (a, b, _GL_MULTIPLY_OVERFLOW)
b                 258 lib/intprops.h #define INT_DIVIDE_OVERFLOW(a, b)    _GL_BINARY_OP_OVERFLOW (a, b, _GL_DIVIDE_OVERFLOW)
b                 259 lib/intprops.h #define INT_REMAINDER_OVERFLOW(a, b) _GL_BINARY_OP_OVERFLOW (a, b, _GL_REMAINDER_OVERFLOW)
b                 260 lib/intprops.h #define INT_LEFT_SHIFT_OVERFLOW(a, b)                                                              \
b                 261 lib/intprops.h     INT_LEFT_SHIFT_RANGE_OVERFLOW (a, b, _GL_INT_MINIMUM (a), _GL_INT_MAXIMUM (a))
b                 267 lib/intprops.h #define _GL_BINARY_OP_OVERFLOW(a, b, op_result_overflow)                                           \
b                 268 lib/intprops.h     op_result_overflow (a, b, _GL_INT_MINIMUM (_GL_INT_CONVERT (a, b)),                            \
b                 269 lib/intprops.h                         _GL_INT_MAXIMUM (_GL_INT_CONVERT (a, b)))
b                 273 lib/intprops.h #define INT_ADD_WRAPV(a, b, r)      _GL_INT_ADD_WRAPV (a, b, r)
b                 274 lib/intprops.h #define INT_SUBTRACT_WRAPV(a, b, r) _GL_INT_SUBTRACT_WRAPV (a, b, r)
b                 275 lib/intprops.h #define INT_MULTIPLY_WRAPV(a, b, r) _GL_INT_MULTIPLY_WRAPV (a, b, r)
b                 304 lib/intprops.h #define INT_ADD_OK(a, b, r)      (!INT_ADD_WRAPV (a, b, r))
b                 305 lib/intprops.h #define INT_SUBTRACT_OK(a, b, r) (!INT_SUBTRACT_WRAPV (a, b, r))
b                 306 lib/intprops.h #define INT_MULTIPLY_OK(a, b, r) (!INT_MULTIPLY_WRAPV (a, b, r))
b                 698 lib/search/regex.c     char b;
b                 765 lib/search/regex.c         b = 0xC0 | (c >> 6);
b                 766 lib/search/regex.c         g_string_append_c (dest_str, b);
b                 767 lib/search/regex.c         b = 0x80 | (c & 0x3F);
b                 768 lib/search/regex.c         g_string_append_c (dest_str, b);
b                 772 lib/search/regex.c         b = 0xE0 | (c >> 12);
b                 773 lib/search/regex.c         g_string_append_c (dest_str, b);
b                 774 lib/search/regex.c         b = 0x80 | ((c >> 6) & 0x3F);
b                 775 lib/search/regex.c         g_string_append_c (dest_str, b);
b                 776 lib/search/regex.c         b = 0x80 | (c & 0x3F);
b                 777 lib/search/regex.c         g_string_append_c (dest_str, b);
b                 781 lib/search/regex.c         b = 0xF0 | (c >> 16);
b                 782 lib/search/regex.c         g_string_append_c (dest_str, b);
b                 783 lib/search/regex.c         b = 0x80 | ((c >> 12) & 0x3F);
b                 784 lib/search/regex.c         g_string_append_c (dest_str, b);
b                 785 lib/search/regex.c         b = 0x80 | ((c >> 6) & 0x3F);
b                 786 lib/search/regex.c         g_string_append_c (dest_str, b);
b                 787 lib/search/regex.c         b = 0x80 | (c & 0x3F);
b                 788 lib/search/regex.c         g_string_append_c (dest_str, b);
b                  94 lib/skin/ini-file.c string_array_comparator (gconstpointer a, gconstpointer b)
b                  96 lib/skin/ini-file.c     return strcmp (*(char *const *) a, *(char *const *) b);
b                  31 lib/stdckdint.in.h #define ckd_add(r, a, b) ((bool) _GL_INT_ADD_WRAPV (a, b, r))
b                  32 lib/stdckdint.in.h #define ckd_sub(r, a, b) ((bool) _GL_INT_SUBTRACT_WRAPV (a, b, r))
b                  33 lib/stdckdint.in.h #define ckd_mul(r, a, b) ((bool) _GL_INT_MULTIPLY_WRAPV (a, b, r))
b                 540 lib/strutil.h  int filenvercmp (char const *a, ssize_t alen, char const *b, ssize_t blen);
b                 195 lib/strutil/filevercmp.c filenvercmp (const char *a, ssize_t alen, const char *b, ssize_t blen)
b                 204 lib/strutil/filevercmp.c     bempty = blen < 0 ? b[0] == '\0' : blen == 0;
b                 218 lib/strutil/filevercmp.c         if (b[0] != '.')
b                 222 lib/strutil/filevercmp.c         bdot = blen < 0 ? b[1] == '\0' : blen == 1;
b                 230 lib/strutil/filevercmp.c         bdotdot = b[1] == '.' && (blen < 0 ? b[2] == '\0' : blen == 2);
b                 236 lib/strutil/filevercmp.c     else if (b[0] == '.')
b                 241 lib/strutil/filevercmp.c     bprefixlen = file_prefixlen (b, &blen);
b                 246 lib/strutil/filevercmp.c     result = verrevcmp (a, aprefixlen, b, bprefixlen);
b                 250 lib/strutil/filevercmp.c     return (result != 0 || one_pass_only ? result : verrevcmp (a, alen, b, blen));
b                 563 lib/tty/key.c  select_cmp_by_fd_set (gconstpointer a, gconstpointer b)
b                 566 lib/tty/key.c      const fd_set *f = (const fd_set *) b;
b                 574 lib/tty/key.c  select_cmp_by_fd (gconstpointer a, gconstpointer b)
b                 577 lib/tty/key.c      const int fd = GPOINTER_TO_INT (b);
b                  76 lib/util.h     #define DOZ(a, b) ((a) > (b) ? (a) - (b) : 0)
b                 990 lib/vfs/direntry.c vfs_s_entry_compare (const void *a, const void *b)
b                 993 lib/vfs/direntry.c     const char *name = (const char *) b;
b                 113 lib/vfs/gc.c   vfs_stamp_compare (gconstpointer a, gconstpointer b)
b                 116 lib/vfs/gc.c       const struct vfs_stamping *vsb = (const struct vfs_stamping *) b;
b                  34 lib/vfs/xdirentry.h #define ERRNOR(a, b)                                                                               \
b                  38 lib/vfs/xdirentry.h         return b;                                                                                  \
b                 169 lib/vfs/xdirentry.h int vfs_s_entry_compare (const void *a, const void *b);
b                  62 lib/widget/background.c background_adjust (WBackground *b)
b                  64 lib/widget/background.c     Widget *w = WIDGET (b);
b                  73 lib/widget/background.c background_draw (const WBackground *b)
b                  75 lib/widget/background.c     const Widget *w = CONST_WIDGET (b);
b                  77 lib/widget/background.c     tty_setcolor (b->color);
b                  78 lib/widget/background.c     tty_fill_region (w->rect.y, w->rect.x, w->rect.lines, w->rect.cols, b->pattern);
b                  88 lib/widget/background.c     WBackground *b = BACKGROUND (w);
b                  93 lib/widget/background.c         background_adjust (b);
b                  97 lib/widget/background.c         background_draw (b);
b                 112 lib/widget/background.c     WBackground *b;
b                 115 lib/widget/background.c     b = g_new (WBackground, 1);
b                 116 lib/widget/background.c     w = WIDGET (b);
b                 120 lib/widget/background.c     b->color = color;
b                 121 lib/widget/background.c     b->pattern = pattern;
b                 123 lib/widget/background.c     return b;
b                  64 lib/widget/button.c     WButton *b = BUTTON (w);
b                  84 lib/widget/button.c         if (parm == '\n' && b->flags == DEFPUSH_BUTTON)
b                  90 lib/widget/button.c         if (b->text.hotkey != NULL && g_ascii_tolower ((gchar) b->text.hotkey[0]) == parm)
b                 101 lib/widget/button.c         h->ret_value = b->action;
b                 102 lib/widget/button.c         if (b->callback == NULL || b->callback (b, b->action) != 0)
b                 108 lib/widget/button.c         switch (b->flags)
b                 124 lib/widget/button.c         widget_gotoyx (w, 0, b->hotpos + off);
b                 136 lib/widget/button.c         switch (b->flags)
b                 152 lib/widget/button.c         hotkey_draw (w, b->text, focused);
b                 154 lib/widget/button.c         switch (b->flags)
b                 173 lib/widget/button.c         hotkey_free (b->text);
b                 210 lib/widget/button.c     WButton *b;
b                 213 lib/widget/button.c     b = g_new (WButton, 1);
b                 214 lib/widget/button.c     w = WIDGET (b);
b                 216 lib/widget/button.c     b->action = action;
b                 217 lib/widget/button.c     b->flags = flags;
b                 218 lib/widget/button.c     b->text = hotkey_new (text);
b                 219 lib/widget/button.c     r.cols = button_get_len (b);
b                 222 lib/widget/button.c     b->callback = callback;
b                 223 lib/widget/button.c     b->hotpos = (b->text.hotkey != NULL) ? str_term_width1 (b->text.start) : -1;
b                 225 lib/widget/button.c     return b;
b                 231 lib/widget/button.c button_get_text (const WButton *b)
b                 233 lib/widget/button.c     return hotkey_get_text (b->text);
b                 239 lib/widget/button.c button_set_text (WButton *b, const char *text)
b                 241 lib/widget/button.c     Widget *w = WIDGET (b);
b                 245 lib/widget/button.c     if (hotkey_equal (b->text, hk))
b                 251 lib/widget/button.c     hotkey_free (b->text);
b                 252 lib/widget/button.c     b->text = hk;
b                 253 lib/widget/button.c     b->hotpos = (b->text.hotkey != NULL) ? str_term_width1 (b->text.start) : -1;
b                 254 lib/widget/button.c     w->rect.cols = button_get_len (b);
b                 261 lib/widget/button.c button_get_len (const WButton *b)
b                 263 lib/widget/button.c     int ret = hotkey_width (b->text);
b                 265 lib/widget/button.c     switch (b->flags)
b                  48 lib/widget/button.h char *button_get_text (const WButton *b);
b                  49 lib/widget/button.h void button_set_text (WButton *b, const char *text);
b                  50 lib/widget/button.h int button_get_len (const WButton *b);
b                 790 lib/widget/group.c         GList *b;
b                 792 lib/widget/group.c         b = g_list_find (g->widgets, before);
b                 795 lib/widget/group.c         assert (b != NULL);
b                 797 lib/widget/group.c         b = g_list_next (b);
b                 798 lib/widget/group.c         g->widgets = g_list_insert_before (g->widgets, b, ww);
b                 799 lib/widget/group.c         if (b != NULL)
b                 800 lib/widget/group.c             new_current = g_list_previous (b);
b                 394 lib/widget/input_complete.c host_equal_func (gconstpointer a, gconstpointer b)
b                 396 lib/widget/input_complete.c     return (strcmp ((const char *) a, (const char *) b) == 0);
b                 683 lib/widget/input_complete.c match_compare (gconstpointer a, gconstpointer b)
b                 685 lib/widget/input_complete.c     return strcmp (*(char *const *) a, *(char *const *) b);
b                  67 lib/widget/listbox.c listbox_entry_cmp (const void *a, const void *b, void *user_data)
b                  70 lib/widget/listbox.c     const WLEntry *eb = (const WLEntry *) b;
b                 454 lib/widget/widget-common.h widget_overlapped (const Widget *a, const Widget *b)
b                 456 lib/widget/widget-common.h     return rects_are_overlapped (&a->rect, &b->rect);
b                 667 lib/widget/wtools.c     Widget *b;
b                 680 lib/widget/wtools.c     b = WIDGET (button_new (y++, 3, B_CANCEL, NORMAL_BUTTON, b_name, NULL));
b                 681 lib/widget/wtools.c     group_add_widget_autopos (wg, b, WPOS_KEEP_TOP | WPOS_CENTER_HORZ, NULL);
b                1105 src/diffviewer/ydiff.c         BRACKET b;
b                1118 src/diffviewer/ydiff.c             b[DIFF_LEFT].off = bracket[DIFF_LEFT].off;
b                1119 src/diffviewer/ydiff.c             b[DIFF_LEFT].len = (*data)[0];
b                1120 src/diffviewer/ydiff.c             b[DIFF_RIGHT].off = bracket[DIFF_RIGHT].off;
b                1121 src/diffviewer/ydiff.c             b[DIFF_RIGHT].len = (*data)[1];
b                1122 src/diffviewer/ydiff.c             if (!hdiff_multi (s, t, b, min, hdiff, depth))
b                1129 src/diffviewer/ydiff.c                 b[DIFF_LEFT].off = bracket[DIFF_LEFT].off + (*data)[0] + len;
b                1130 src/diffviewer/ydiff.c                 b[DIFF_LEFT].len = (*data2)[0] - (*data)[0] - len;
b                1131 src/diffviewer/ydiff.c                 b[DIFF_RIGHT].off = bracket[DIFF_RIGHT].off + (*data)[1] + len;
b                1132 src/diffviewer/ydiff.c                 b[DIFF_RIGHT].len = (*data2)[1] - (*data)[1] - len;
b                1133 src/diffviewer/ydiff.c                 if (!hdiff_multi (s, t, b, min, hdiff, depth))
b                1137 src/diffviewer/ydiff.c             b[DIFF_LEFT].off = bracket[DIFF_LEFT].off + (*data)[0] + len;
b                1138 src/diffviewer/ydiff.c             b[DIFF_LEFT].len = bracket[DIFF_LEFT].len - (*data)[0] - len;
b                1139 src/diffviewer/ydiff.c             b[DIFF_RIGHT].off = bracket[DIFF_RIGHT].off + (*data)[1] + len;
b                1140 src/diffviewer/ydiff.c             b[DIFF_RIGHT].len = bracket[DIFF_RIGHT].len - (*data)[1] - len;
b                1141 src/diffviewer/ydiff.c             if (!hdiff_multi (s, t, b, min, hdiff, depth))
b                1178 src/diffviewer/ydiff.c     BRACKET b;
b                1186 src/diffviewer/ydiff.c     b[DIFF_LEFT].off = i;
b                1187 src/diffviewer/ydiff.c     b[DIFF_LEFT].len = m - i;
b                1188 src/diffviewer/ydiff.c     b[DIFF_RIGHT].off = i;
b                1189 src/diffviewer/ydiff.c     b[DIFF_RIGHT].len = n - i;
b                1192 src/diffviewer/ydiff.c     return hdiff_multi (s, t, b, min, hdiff, depth);
b                1213 src/diffviewer/ydiff.c     BRACKET *b;
b                1219 src/diffviewer/ydiff.c         b = &g_array_index (hdiff, BRACKET, i);
b                1220 src/diffviewer/ydiff.c         start = (*b)[ord].off;
b                1221 src/diffviewer/ydiff.c         end = start + (*b)[ord].len;
b                2946 src/diffviewer/ydiff.c     WButtonBar *b;
b                2948 src/diffviewer/ydiff.c     b = buttonbar_find (DIALOG (d->owner));
b                2950 src/diffviewer/ydiff.c     buttonbar_set_label (b, 1, Q_ ("ButtonBar|Help"), d->keymap, d);
b                2951 src/diffviewer/ydiff.c     buttonbar_set_label (b, 2, Q_ ("ButtonBar|Save"), d->keymap, d);
b                2952 src/diffviewer/ydiff.c     buttonbar_set_label (b, 4, Q_ ("ButtonBar|Edit"), d->keymap, d);
b                2953 src/diffviewer/ydiff.c     buttonbar_set_label (b, 5, Q_ ("ButtonBar|Merge"), d->keymap, d);
b                2954 src/diffviewer/ydiff.c     buttonbar_set_label (b, 7, Q_ ("ButtonBar|Search"), d->keymap, d);
b                2955 src/diffviewer/ydiff.c     buttonbar_set_label (b, 9, Q_ ("ButtonBar|Options"), d->keymap, d);
b                2956 src/diffviewer/ydiff.c     buttonbar_set_label (b, 10, Q_ ("ButtonBar|Quit"), d->keymap, d);
b                  74 src/editor/edit-impl.h #define edit_query_dialog2(h, t, a, b)    query_dialog (h, t, D_NORMAL, 2, a, b)
b                  75 src/editor/edit-impl.h #define edit_query_dialog3(h, t, a, b, c) query_dialog (h, t, D_NORMAL, 3, a, b, c)
b                 474 src/editor/edit.c     off_t b;
b                 499 src/editor/edit.c     b = edit_buffer_get_current_bol (&edit->buffer);
b                 500 src/editor/edit.c     edit_move_to_prev_col (edit, b);
b                 870 src/editor/edit.c     off_t b;
b                 872 src/editor/edit.c     b = edit_buffer_get_current_bol (&edit->buffer);
b                 873 src/editor/edit.c     edit_cursor_move (edit, b - edit->buffer.curs1);
b                 885 src/editor/edit.c     off_t b;
b                 887 src/editor/edit.c     b = edit_buffer_get_current_eol (&edit->buffer);
b                 888 src/editor/edit.c     edit_cursor_move (edit, b - edit->buffer.curs1);
b                1174 src/editor/edit.c         off_t b;
b                1211 src/editor/edit.c             b = edit_buffer_get_bol (&edit->buffer, edit->mark1);
b                1212 src/editor/edit.c             edit->column1 = (long) edit_move_forward3 (edit, b, 0, edit->mark1);
b                1217 src/editor/edit.c             b = edit_buffer_get_bol (&edit->buffer, edit->mark2);
b                1218 src/editor/edit.c             edit->column2 = (long) edit_move_forward3 (edit, b, 0, edit->mark2);
b                1262 src/editor/edit.c         off_t b;
b                1297 src/editor/edit.c             b = edit_buffer_get_bol (&edit->buffer, edit->mark1);
b                1298 src/editor/edit.c             edit->column1 = (long) edit_move_forward3 (edit, b, 0, edit->mark1);
b                1303 src/editor/edit.c             b = edit_buffer_get_bol (&edit->buffer, edit->mark2);
b                1304 src/editor/edit.c             edit->column2 = (long) edit_move_forward3 (edit, b, 0, edit->mark2);
b                1533 src/editor/edit.c     const char *const b = "{}{[][()(", *p;
b                1540 src/editor/edit.c     p = strchr (b, c);
b                1615 src/editor/edit.c         off_t b;
b                1625 src/editor/edit.c             b = edit_buffer_get_bol (&edit->buffer, cur_bol);
b                1626 src/editor/edit.c             edit_cursor_move (edit, b - edit->buffer.curs1);
b                2869 src/editor/edit.c     off_t b;
b                2871 src/editor/edit.c     b = edit_buffer_get_current_bol (&edit->buffer);
b                2872 src/editor/edit.c     return (long) edit_move_forward3 (edit, b, 0, edit->buffer.curs1);
b                2890 src/editor/edit.c     off_t b;
b                2892 src/editor/edit.c     b = edit_buffer_get_current_bol (&edit->buffer);
b                2893 src/editor/edit.c     edit->curs_col = (long) edit_move_forward3 (edit, b, 0, edit->buffer.curs1);
b                2980 src/editor/edit.c     off_t b;
b                2990 src/editor/edit.c         b = edit_buffer_get_current_bol (&edit->buffer);
b                2992 src/editor/edit.c         line_len = (long) edit_move_forward3 (edit, b, 0, e);
b                3023 src/editor/edit.c                 b = edit_move_forward3 (edit, p, edit->curs_col, 0);
b                3024 src/editor/edit.c                 edit_cursor_move (edit, b - edit->buffer.curs1);
b                3027 src/editor/edit.c                     b = edit_move_forward3 (edit, p, q, 0);
b                3028 src/editor/edit.c                     edit_cursor_move (edit, b - edit->buffer.curs1);
b                 119 src/editor/editbuffer.c     void *b;
b                 129 src/editor/editbuffer.c         b = g_ptr_array_index (buf->b2, p >> S_EDIT_BUF_SIZE);
b                 130 src/editor/editbuffer.c         return (char *) b + EDIT_BUF_SIZE - 1 - (p & M_EDIT_BUF_SIZE);
b                 133 src/editor/editbuffer.c     b = g_ptr_array_index (buf->b1, byte_index >> S_EDIT_BUF_SIZE);
b                 134 src/editor/editbuffer.c     return (char *) b + (byte_index & M_EDIT_BUF_SIZE);
b                 493 src/editor/editbuffer.c     void *b;
b                 503 src/editor/editbuffer.c     b = g_ptr_array_index (buf->b1, buf->curs1 >> S_EDIT_BUF_SIZE);
b                 504 src/editor/editbuffer.c     *((unsigned char *) b + i) = (unsigned char) c;
b                 525 src/editor/editbuffer.c     void *b;
b                 535 src/editor/editbuffer.c     b = g_ptr_array_index (buf->b2, buf->curs2 >> S_EDIT_BUF_SIZE);
b                 536 src/editor/editbuffer.c     *((unsigned char *) b + EDIT_BUF_SIZE - 1 - i) = (unsigned char) c;
b                 557 src/editor/editbuffer.c     void *b;
b                 564 src/editor/editbuffer.c     b = g_ptr_array_index (buf->b2, prev >> S_EDIT_BUF_SIZE);
b                 566 src/editor/editbuffer.c     c = *((unsigned char *) b + EDIT_BUF_SIZE - 1 - i);
b                 573 src/editor/editbuffer.c         b = g_ptr_array_index (buf->b2, j);
b                 597 src/editor/editbuffer.c     void *b;
b                 604 src/editor/editbuffer.c     b = g_ptr_array_index (buf->b1, prev >> S_EDIT_BUF_SIZE);
b                 606 src/editor/editbuffer.c     c = *((unsigned char *) b + i);
b                 613 src/editor/editbuffer.c         b = g_ptr_array_index (buf->b1, j);
b                 701 src/editor/editbuffer.c     void *b;
b                 715 src/editor/editbuffer.c         b = g_malloc0 (EDIT_BUF_SIZE);
b                 716 src/editor/editbuffer.c         g_ptr_array_add (buf->b2, b);
b                 717 src/editor/editbuffer.c         b = (char *) b + EDIT_BUF_SIZE - data_size;
b                 718 src/editor/editbuffer.c         ret = mc_read (fd, b, data_size);
b                 722 src/editor/editbuffer.c             if (*((char *) b + j) == '\n')
b                 735 src/editor/editbuffer.c         b = g_malloc0 (data_size);
b                 736 src/editor/editbuffer.c         g_ptr_array_add (buf->b2, b);
b                 737 src/editor/editbuffer.c         sz = mc_read (fd, b, data_size);
b                 743 src/editor/editbuffer.c             if (*((char *) b + j) == '\n')
b                 776 src/editor/editbuffer.c         b = *b1;
b                 778 src/editor/editbuffer.c         *b2 = b;
b                 814 src/editor/editbuffer.c     void *b;
b                 822 src/editor/editbuffer.c             b = g_ptr_array_index (buf->b1, i);
b                 823 src/editor/editbuffer.c             sz = mc_write (fd, b, data_size);
b                 834 src/editor/editbuffer.c         b = g_ptr_array_index (buf->b1, i);
b                 835 src/editor/editbuffer.c         sz = mc_write (fd, b, data_size);
b                 847 src/editor/editbuffer.c         b = g_ptr_array_index (buf->b2, i);
b                 849 src/editor/editbuffer.c         sz = mc_write (fd, (char *) b + EDIT_BUF_SIZE - data_size, data_size);
b                 859 src/editor/editbuffer.c                 b = g_ptr_array_index (buf->b2, i);
b                 860 src/editor/editbuffer.c                 sz = mc_write (fd, b, data_size);
b                 464 src/editor/editcmd.c     long b, c, d;
b                 471 src/editor/editcmd.c     b = MAX (MIN (c, d), MIN (edit->column1, edit->column2));
b                 479 src/editor/editcmd.c         p = edit_move_forward3 (edit, r, b, 0);
b                 537 src/editor/editcmd.c             off_t b, e;
b                 546 src/editor/editcmd.c             b = edit_buffer_get_current_bol (&edit->buffer);
b                 548 src/editor/editcmd.c             line_width = edit_move_forward3 (edit, b, 0, e);
b                 496 src/editor/editdraw.c edit_draw_this_line (WEdit *edit, off_t b, long row, long start_col, long end_col)
b                 528 src/editor/editdraw.c     q = edit_move_forward3 (edit, b, start_col - edit->start_col, 0);
b                 529 src/editor/editdraw.c     col = (int) edit_move_forward3 (edit, b, 0, q);
b                 562 src/editor/editdraw.c                 for (tws = edit_buffer_get_eol (&edit->buffer, b); tws > b; tws--)
b                 590 src/editor/editdraw.c                         x = (long) edit_move_forward3 (edit, b, 0, q);
b                 823 src/editor/editdraw.c     off_t b;
b                 825 src/editor/editdraw.c     b = edit_buffer_get_bol (&edit->buffer, curs);
b                 826 src/editor/editdraw.c     edit_draw_this_line (edit, b, row, start_column, end_column);
b                 895 src/editor/editdraw.c         long b;
b                 899 src/editor/editdraw.c             b = edit_buffer_get_forward_offset (&edit->buffer, edit->start_display, start_row, 0);
b                 904 src/editor/editdraw.c                 edit_draw_this_line (edit, b, row, start_column, end_column);
b                 905 src/editor/editdraw.c                 b = edit_buffer_get_forward_offset (&edit->buffer, b, 1, 0);
b                 916 src/editor/editdraw.c                 b = edit->start_display;
b                 922 src/editor/editdraw.c                     edit_draw_this_line (edit, b, row, start_column, end_column);
b                 923 src/editor/editdraw.c                     b = edit_buffer_get_forward_offset (&edit->buffer, b, 1, 0);
b                 928 src/editor/editdraw.c             b = edit_buffer_get_current_bol (&edit->buffer);
b                 933 src/editor/editdraw.c                 edit_draw_this_line (edit, b, curs_row, start_column, end_column);
b                 938 src/editor/editdraw.c                 b = edit_buffer_get_forward_offset (&edit->buffer, b, 1, 0);
b                 943 src/editor/editdraw.c                     edit_draw_this_line (edit, b, row, start_column, end_column);
b                 944 src/editor/editdraw.c                     b = edit_buffer_get_forward_offset (&edit->buffer, b, 1, 0);
b                 951 src/editor/editdraw.c                 b = edit_buffer_get_current_bol (&edit->buffer);
b                 952 src/editor/editdraw.c                 b = edit_buffer_get_backward_offset (&edit->buffer, b, 1);
b                 957 src/editor/editdraw.c                     edit_draw_this_line (edit, b, row, start_column, end_column);
b                 964 src/editor/editdraw.c                 b = edit_buffer_get_current_bol (&edit->buffer);
b                 965 src/editor/editdraw.c                 b = edit_buffer_get_forward_offset (&edit->buffer, b, 1, 0);
b                 970 src/editor/editdraw.c                     edit_draw_this_line (edit, b, row, start_column, end_column);
b                 872 src/editor/editwidget.c         WMenuBar *b;
b                 874 src/editor/editwidget.c         b = menubar_find (h);
b                 876 src/editor/editwidget.c         if (!widget_get_state (WIDGET (b), WST_FOCUSED))
b                 913 src/editor/editwidget.c                 menubar_activate (b, drop_menus, -1);
b                 216 src/editor/format.c line_pixel_length (unsigned char *t, off_t b, off_t l, gboolean utf8)
b                 229 src/editor/format.c         b += char_length;
b                 230 src/editor/format.c         tb = (char *) t + b;
b                 236 src/editor/format.c             return b;
b                 266 src/editor/format.c     return b;
b                 836 src/editor/syntax.c     char f[80], b[80], a[80], *p;
b                 858 src/editor/syntax.c         g_strlcpy (b, color->bg, sizeof (b));
b                 859 src/editor/syntax.c         p = strchr (b, '/');
b                 862 src/editor/syntax.c         color->bg = b;
b                 885 src/editor/syntax.c                 g_strlcpy (b, p, sizeof (b));
b                 887 src/editor/syntax.c                 g_strlcpy (b, "default", sizeof (b));
b                 888 src/editor/syntax.c             color->bg = b;
b                 328 src/filemanager/achown.c     WButton *b = BUTTON (w);
b                 334 src/filemanager/achown.c     if (b == b_att[0])
b                 336 src/filemanager/achown.c     else if (b == b_att[1])
b                 344 src/filemanager/achown.c         if (b->hotpos == -1)
b                 345 src/filemanager/achown.c             b->hotpos = 0;
b                 347 src/filemanager/achown.c         flag_pos = f_pos * 3 + b->hotpos;
b                 360 src/filemanager/achown.c             flag_pos = f_pos * 3 + b->hotpos;
b                 364 src/filemanager/achown.c             if (b->hotpos == 2)
b                 374 src/filemanager/achown.c             b->hotpos = flag_pos % 3;
b                 384 src/filemanager/achown.c             b->hotpos = flag_pos % 3;
b                 397 src/filemanager/achown.c             b->hotpos = i;
b                 401 src/filemanager/achown.c             i = b->hotpos;
b                 404 src/filemanager/achown.c             if (b->text.start[flag_pos % 3] == '-')
b                 420 src/filemanager/achown.c             b->hotpos = i;
b                 461 src/filemanager/achown.c     WButton *b;
b                 465 src/filemanager/achown.c     b = button_new (y, x, action, flags, text, callback);
b                 466 src/filemanager/achown.c     w = WIDGET (b);
b                 474 src/filemanager/achown.c     return b;
b                1054 src/filemanager/chattr.c             Widget *b;
b                1056 src/filemanager/chattr.c             b = chattr_but[i++].button;
b                1057 src/filemanager/chattr.c             r = b->rect;
b                1059 src/filemanager/chattr.c             widget_set_size_rect (b, &r);
b                1061 src/filemanager/chattr.c             b = chattr_but[i].button;
b                1062 src/filemanager/chattr.c             r = b->rect;
b                1064 src/filemanager/chattr.c             widget_set_size_rect (b, &r);
b                 112 src/filemanager/dir.c compare_by_names (file_entry_t *a, file_entry_t *b)
b                 117 src/filemanager/dir.c     if (b->name_sort_key == NULL)
b                 118 src/filemanager/dir.c         b->name_sort_key = str_create_key_for_filename (b->fname->str, case_sensitive);
b                 120 src/filemanager/dir.c     return key_collate (a->name_sort_key, b->name_sort_key);
b                 326 src/filemanager/dir.c unsorted (file_entry_t *a, file_entry_t *b)
b                 329 src/filemanager/dir.c     (void) b;
b                 337 src/filemanager/dir.c sort_name (file_entry_t *a, file_entry_t *b)
b                 340 src/filemanager/dir.c     int bd = MY_ISDIR (b);
b                 343 src/filemanager/dir.c         return compare_by_names (a, b);
b                 351 src/filemanager/dir.c sort_vers (file_entry_t *a, file_entry_t *b)
b                 354 src/filemanager/dir.c     int bd = MY_ISDIR (b);
b                 360 src/filemanager/dir.c         result = filevercmp (a->fname->str, b->fname->str);
b                 364 src/filemanager/dir.c         return compare_by_names (a, b);
b                 373 src/filemanager/dir.c sort_ext (file_entry_t *a, file_entry_t *b)
b                 376 src/filemanager/dir.c     int bd = MY_ISDIR (b);
b                 384 src/filemanager/dir.c         if (b->extension_sort_key == NULL)
b                 385 src/filemanager/dir.c             b->extension_sort_key = str_create_key (extension (b->fname->str), case_sensitive);
b                 387 src/filemanager/dir.c         r = str_key_collate (a->extension_sort_key, b->extension_sort_key, case_sensitive);
b                 391 src/filemanager/dir.c         return compare_by_names (a, b);
b                 400 src/filemanager/dir.c sort_time (file_entry_t *a, file_entry_t *b)
b                 403 src/filemanager/dir.c     int bd = MY_ISDIR (b);
b                 407 src/filemanager/dir.c         int result = _GL_CMP (a->st.st_mtime, b->st.st_mtime);
b                 412 src/filemanager/dir.c         return compare_by_names (a, b);
b                 421 src/filemanager/dir.c sort_ctime (file_entry_t *a, file_entry_t *b)
b                 424 src/filemanager/dir.c     int bd = MY_ISDIR (b);
b                 428 src/filemanager/dir.c         int result = _GL_CMP (a->st.st_ctime, b->st.st_ctime);
b                 433 src/filemanager/dir.c         return compare_by_names (a, b);
b                 442 src/filemanager/dir.c sort_atime (file_entry_t *a, file_entry_t *b)
b                 445 src/filemanager/dir.c     int bd = MY_ISDIR (b);
b                 449 src/filemanager/dir.c         int result = _GL_CMP (a->st.st_atime, b->st.st_atime);
b                 454 src/filemanager/dir.c         return compare_by_names (a, b);
b                 463 src/filemanager/dir.c sort_inode (file_entry_t *a, file_entry_t *b)
b                 466 src/filemanager/dir.c     int bd = MY_ISDIR (b);
b                 469 src/filemanager/dir.c         return (a->st.st_ino - b->st.st_ino) * reverse;
b                 477 src/filemanager/dir.c sort_size (file_entry_t *a, file_entry_t *b)
b                 480 src/filemanager/dir.c     int bd = MY_ISDIR (b);
b                 484 src/filemanager/dir.c         int result = _GL_CMP (a->st.st_size, b->st.st_size);
b                 489 src/filemanager/dir.c         return compare_by_names (a, b);
b                 695 src/filemanager/dir.c     struct stat b;
b                 697 src/filemanager/dir.c     if (S_ISLNK (file->st.st_mode) && mc_stat (full_name_vpath, &b) == 0)
b                 698 src/filemanager/dir.c         return is_exe (b.st_mode);
b                  93 src/filemanager/dir.h int unsorted (file_entry_t *a, file_entry_t *b);
b                  94 src/filemanager/dir.h int sort_name (file_entry_t *a, file_entry_t *b);
b                  95 src/filemanager/dir.h int sort_vers (file_entry_t *a, file_entry_t *b);
b                  96 src/filemanager/dir.h int sort_ext (file_entry_t *a, file_entry_t *b);
b                  97 src/filemanager/dir.h int sort_time (file_entry_t *a, file_entry_t *b);
b                  98 src/filemanager/dir.h int sort_atime (file_entry_t *a, file_entry_t *b);
b                  99 src/filemanager/dir.h int sort_ctime (file_entry_t *a, file_entry_t *b);
b                 100 src/filemanager/dir.h int sort_size (file_entry_t *a, file_entry_t *b);
b                 101 src/filemanager/dir.h int sort_inode (file_entry_t *a, file_entry_t *b);
b                 842 src/filemanager/file.c                      const char *a, const char *b)
b                 854 src/filemanager/file.c     width_b = str_term_width1 (b);
b                 864 src/filemanager/file.c             b = str_trunc (b, width);
b                 865 src/filemanager/file.c             msg = g_strdup_printf (fmt, s, b);
b                 871 src/filemanager/file.c             msg = g_strdup_printf (fmt, a, b);
b                 877 src/filemanager/file.c             b = str_trunc (b, width);
b                 879 src/filemanager/file.c         msg = g_strdup_printf (fmt, a, b);
b                 894 src/filemanager/file.c warn_same_file (file_op_context_t *ctx, const char *fmt, const char *a, const char *b)
b                 901 src/filemanager/file.c                                  const char *a, const char *b);
b                 907 src/filemanager/file.c         return parent_call (pntr.p, ctx, 3, strlen (fmt), fmt, strlen (a), a, strlen (b), b);
b                 909 src/filemanager/file.c     return real_warn_same_file (ctx, Foreground, fmt, a, b);
b                 915 src/filemanager/file.c check_same_file (file_op_context_t *ctx, const char *a, const struct stat *ast, const char *b,
b                 922 src/filemanager/file.c         *status = warn_same_file (ctx, _ ("\"%s\"\nand\n\"%s\"\nare the same directory"), a, b);
b                 924 src/filemanager/file.c         *status = warn_same_file (ctx, _ ("\"%s\"\nand\n\"%s\"\nare the same file"), a, b);
b                1636 src/filemanager/filemanager.c midnight_set_buttonbar (WButtonBar *b)
b                1640 src/filemanager/filemanager.c     buttonbar_set_label (b, 1, Q_ ("ButtonBar|Help"), w->keymap, NULL);
b                1641 src/filemanager/filemanager.c     buttonbar_set_label (b, 2, Q_ ("ButtonBar|Menu"), w->keymap, NULL);
b                1642 src/filemanager/filemanager.c     buttonbar_set_label (b, 3, Q_ ("ButtonBar|View"), w->keymap, NULL);
b                1643 src/filemanager/filemanager.c     buttonbar_set_label (b, 4, Q_ ("ButtonBar|Edit"), w->keymap, NULL);
b                1644 src/filemanager/filemanager.c     buttonbar_set_label (b, 5, Q_ ("ButtonBar|Copy"), w->keymap, NULL);
b                1645 src/filemanager/filemanager.c     buttonbar_set_label (b, 6, Q_ ("ButtonBar|RenMov"), w->keymap, NULL);
b                1646 src/filemanager/filemanager.c     buttonbar_set_label (b, 7, Q_ ("ButtonBar|Mkdir"), w->keymap, NULL);
b                1647 src/filemanager/filemanager.c     buttonbar_set_label (b, 8, Q_ ("ButtonBar|Delete"), w->keymap, NULL);
b                1648 src/filemanager/filemanager.c     buttonbar_set_label (b, 9, Q_ ("ButtonBar|PullDn"), w->keymap, NULL);
b                1649 src/filemanager/filemanager.c     buttonbar_set_label (b, 10, Q_ ("ButtonBar|Quit"), w->keymap, NULL);
b                  43 src/filemanager/filemanager.h void midnight_set_buttonbar (WButtonBar *b);
b                 220 src/filemanager/find.c max (int a, int b)
b                 222 src/filemanager/find.c     return (a > b ? a : b);
b                 192 src/filemanager/layout.c max (int a, int b)
b                 194 src/filemanager/layout.c     return a > b ? a : b;
b                 491 src/filemanager/layout.c     int b1, b2, b;
b                 549 src/filemanager/layout.c     b = b1 + b2 + 1;
b                 551 src/filemanager/layout.c     width = max (l1 * 2 + 7, b);
b                 618 src/filemanager/layout.c     group_add_widget (g, button_new (12, (width - b) / 2, B_ENTER, DEFPUSH_BUTTON, ok_button, 0));
b                 620 src/filemanager/layout.c         g, button_new (12, (width - b) / 2 + b1 + 1, B_CANCEL, NORMAL_BUTTON, cancel_button, 0));
b                  99 src/filemanager/panelize.c panelize_entry_cmp_by_label (gconstpointer a, gconstpointer b)
b                 102 src/filemanager/panelize.c     const char *label = (const char *) b;
b                 226 src/filemanager/panelize.c         WButton *b;
b                 228 src/filemanager/panelize.c         b = button_new (y, x, panelize_but[i].ret_cmd, panelize_but[i].flags, panelize_but[i].text,
b                 230 src/filemanager/panelize.c         group_add_widget (g, b);
b                 232 src/filemanager/panelize.c         x += button_get_len (b) + 1;
b                 963 src/filemanager/tree.c     WButtonBar *b;
b                 967 src/filemanager/tree.c     b = buttonbar_find (DIALOG (w->owner));
b                 968 src/filemanager/tree.c     buttonbar_set_label (b, 4,
b                 971 src/filemanager/tree.c     widget_draw (WIDGET (b));
b                1148 src/filemanager/tree.c     WButtonBar *b;
b                1157 src/filemanager/tree.c             b = buttonbar_find (h);
b                1158 src/filemanager/tree.c             widget_draw (WIDGET (b));
b                1163 src/filemanager/tree.c         b = buttonbar_find (h);
b                1164 src/filemanager/tree.c         buttonbar_set_label (b, 1, Q_ ("ButtonBar|Help"), w->keymap, w);
b                1165 src/filemanager/tree.c         buttonbar_set_label (b, 2, Q_ ("ButtonBar|Rescan"), w->keymap, w);
b                1166 src/filemanager/tree.c         buttonbar_set_label (b, 3, Q_ ("ButtonBar|Forget"), w->keymap, w);
b                1168 src/filemanager/tree.c             b, 4, tree_navigation_flag ? Q_ ("ButtonBar|Static") : Q_ ("ButtonBar|Dynamc"),
b                1170 src/filemanager/tree.c         buttonbar_set_label (b, 5, Q_ ("ButtonBar|Copy"), w->keymap, w);
b                1171 src/filemanager/tree.c         buttonbar_set_label (b, 6, Q_ ("ButtonBar|RenMov"), w->keymap, w);
b                1174 src/filemanager/tree.c         buttonbar_set_label (b, 7, Q_ ("ButtonBar|Mkdir"), w->keymap, w);
b                1176 src/filemanager/tree.c         buttonbar_clear_label (b, 7, w);
b                1178 src/filemanager/tree.c         buttonbar_set_label (b, 8, Q_ ("ButtonBar|Rmdir"), w->keymap, w);
b                 198 src/textconf.c #define PRINTF_SECTION(a, b)  (void) printf ("    %-17s %s\n", a, b)
b                 199 src/textconf.c #define PRINTF_SECTION2(a, b) (void) printf ("    %-17s %s/\n", a, b)
b                 200 src/textconf.c #define PRINTF(a, b, c)       (void) printf ("\t%-15s %s/%s\n", a, b, c)
b                 201 src/textconf.c #define PRINTF2(a, b, c)      (void) printf ("\t%-15s %s%s\n", a, b, c)
b                 163 src/vfs/cpio/cpio.c cpio_defer_find (const void *a, const void *b)
b                 166 src/vfs/cpio/cpio.c     const defer_inode *b1 = (const defer_inode *) b;
b                 188 src/vfs/extfs/extfs.c extfs_cmp_archive (const void *a, const void *b)
b                 191 src/vfs/extfs/extfs.c     const char *archive_name = (const char *) b;
b                 546 src/vfs/ftpfs/ftpfs_parse_ls.c     const char *b;
b                 560 src/vfs/ftpfs/ftpfs_parse_ls.c     b = line;
b                 562 src/vfs/ftpfs/ftpfs_parse_ls.c     if (len < 2 || b[0] != '+')
b                 565 src/vfs/ftpfs/ftpfs_parse_ls.c     scan = b + 1;
b                1131 src/vfs/ftpfs/ftpfs_parse_ls.c         char *b = (char *) bufp->data;
b                1134 src/vfs/ftpfs/ftpfs_parse_ls.c         blen = strlen (b);
b                1136 src/vfs/ftpfs/ftpfs_parse_ls.c         if (b[blen - 1] == '\r')
b                1138 src/vfs/ftpfs/ftpfs_parse_ls.c             b[blen - 1] = '\0';
b                1155 src/vfs/ftpfs/ftpfs_parse_ls.c                 tmp_line = g_strndup (b, blen);
b                1196 src/vfs/ftpfs/ftpfs_parse_ls.c             tmp_line = g_strndup (b, blen);
b                 124 src/vfs/sfs/sfs.c cachedfile_compare (const void *a, const void *b)
b                 127 src/vfs/sfs/sfs.c     const char *name = (const char *) b;
b                  74 src/vfs/tar/tar-sparse.c #define INT_BITS_STRLEN_BOUND(b) (((b) * 146 + 484) / 485)
b                  82 src/vfs/tar/tar-sparse.c #define COPY_BUF(arch, b, buf, src)                                                                \
b                  85 src/vfs/tar/tar-sparse.c         char *endp = b->buffer + BLOCKSIZE;                                                        \
b                  94 src/vfs/tar/tar-sparse.c                 tar_set_next_block_after (b);                                                      \
b                  95 src/vfs/tar/tar-sparse.c                 b = tar_find_next_block (arch);                                                    \
b                  96 src/vfs/tar/tar-sparse.c                 if (b == NULL)                                                                     \
b                  99 src/vfs/tar/tar-sparse.c                 src = b->buffer;                                                                   \
b                 100 src/vfs/tar/tar-sparse.c                 endp = b->buffer + BLOCKSIZE;                                                      \
b                  72 src/viewer/coord_cache.c typedef gboolean (*cmp_func_t) (const coord_cache_entry_t *a, const coord_cache_entry_t *b);
b                  96 src/viewer/coord_cache.c mcview_coord_cache_entry_less_offset (const coord_cache_entry_t *a, const coord_cache_entry_t *b)
b                  98 src/viewer/coord_cache.c     return (a->cc_offset < b->cc_offset);
b                 104 src/viewer/coord_cache.c mcview_coord_cache_entry_less_plain (const coord_cache_entry_t *a, const coord_cache_entry_t *b)
b                 106 src/viewer/coord_cache.c     if (a->cc_line < b->cc_line)
b                 109 src/viewer/coord_cache.c     if (a->cc_line == b->cc_line)
b                 110 src/viewer/coord_cache.c         return (a->cc_column < b->cc_column);
b                 118 src/viewer/coord_cache.c mcview_coord_cache_entry_less_nroff (const coord_cache_entry_t *a, const coord_cache_entry_t *b)
b                 120 src/viewer/coord_cache.c     if (a->cc_line < b->cc_line)
b                 123 src/viewer/coord_cache.c     if (a->cc_line == b->cc_line)
b                 124 src/viewer/coord_cache.c         return (a->cc_nroff_column < b->cc_nroff_column);
b                 270 src/viewer/datasource.c mcview_set_byte (WView *view, off_t offset, byte b)
b                 272 src/viewer/datasource.c     (void) &b;
b                  81 src/viewer/display.c     WButtonBar *b;
b                  84 src/viewer/display.c     b = buttonbar_find (h);
b                  85 src/viewer/display.c     buttonbar_set_label (b, 1, Q_ ("ButtonBar|Help"), keymap, w);
b                  90 src/viewer/display.c             buttonbar_set_label (b, 2, Q_ ("ButtonBar|View"), keymap, w);
b                  92 src/viewer/display.c             buttonbar_set_label (b, 2, Q_ ("ButtonBar|Edit"), keymap, w);
b                  94 src/viewer/display.c             buttonbar_set_label (b, 2, "", keymap, WIDGET (view));
b                  96 src/viewer/display.c         buttonbar_set_label (b, 4, Q_ ("ButtonBar|Ascii"), keymap, w);
b                  97 src/viewer/display.c         buttonbar_set_label (b, 6, Q_ ("ButtonBar|Save"), keymap, w);
b                  98 src/viewer/display.c         buttonbar_set_label (b, 7, Q_ ("ButtonBar|HxSrch"), keymap, w);
b                 103 src/viewer/display.c             b, 2, view->mode_flags.wrap ? Q_ ("ButtonBar|UnWrap") : Q_ ("ButtonBar|Wrap"), keymap,
b                 105 src/viewer/display.c         buttonbar_set_label (b, 4, Q_ ("ButtonBar|Hex"), keymap, w);
b                 106 src/viewer/display.c         buttonbar_set_label (b, 6, "", keymap, WIDGET (view));
b                 107 src/viewer/display.c         buttonbar_set_label (b, 7, Q_ ("ButtonBar|Search"), keymap, w);
b                 110 src/viewer/display.c     buttonbar_set_label (b, 5, Q_ ("ButtonBar|Goto"), keymap, w);
b                 112 src/viewer/display.c         b, 8, view->mode_flags.magic ? Q_ ("ButtonBar|Raw") : Q_ ("ButtonBar|Parse"), keymap, w);
b                 116 src/viewer/display.c         buttonbar_set_label (b, 3, Q_ ("ButtonBar|Quit"), keymap, w);
b                 118 src/viewer/display.c             b, 9, view->mode_flags.nroff ? Q_ ("ButtonBar|Unform") : Q_ ("ButtonBar|Format"),
b                 120 src/viewer/display.c         buttonbar_set_label (b, 10, Q_ ("ButtonBar|Quit"), keymap, w);
b                 249 src/viewer/internal.h void mcview_set_byte (WView *view, off_t offset, byte b);
b                 341 src/viewer/internal.h mcview_offset_rounddown (off_t a, off_t b)
b                 343 src/viewer/internal.h     g_assert (b != 0);
b                 344 src/viewer/internal.h     return a - a % b;
b                 237 src/viewer/mcviewer.c     Widget *vw, *b;
b                 254 src/viewer/mcviewer.c     b = WIDGET (buttonbar_new ());
b                 255 src/viewer/mcviewer.c     group_add_widget_autopos (g, b, b->pos_flags, NULL);
b                  33 tests/lib/search/regex_replace_esc_seq.c #define test_helper_check_valid_data(a, b, c, d, e, f)                                             \
b                  35 tests/lib/search/regex_replace_esc_seq.c         ck_assert_msg (a == b, "ret_value != %s", (b) ? "TRUE" : "FALSE");                         \
b                  64 tests/lib/strutil/filevercmp.c test_filevercmp (char const *a, char const *b)
b                  72 tests/lib/strutil/filevercmp.c     result = filevercmp (a, b);
b                  75 tests/lib/strutil/filevercmp.c     blen = strlen (b);
b                  79 tests/lib/strutil/filevercmp.c     memcpy (buffer + alen, b, blen);
b                  38 tests/lib/strutil/str_verscmp.c static char const b[] = "B007502280067.gbp.corp.com";
b                  88 tests/lib/strutil/str_verscmp.c     { a, b, -1 },
b                  89 tests/lib/strutil/str_verscmp.c     { b, c, -1 },
b                  91 tests/lib/strutil/str_verscmp.c     { b, a, 1 },
b                  92 tests/lib/strutil/str_verscmp.c     { c, b, 1 },