a 95 lib/intprops-internal.h #define _GL_INT_NEGATE_RANGE_OVERFLOW(a, min, max) ((min) < 0 ? (a) < -(max) : 0 < (a)) a 144 lib/intprops-internal.h # define _GL_INT_ADD_WRAPV(a, b, r) __builtin_add_overflow (a, b, r) a 145 lib/intprops-internal.h # define _GL_INT_SUBTRACT_WRAPV(a, b, r) __builtin_sub_overflow (a, b, r) a 147 lib/intprops-internal.h # define _GL_INT_ADD_WRAPV(a, b, r) ckd_add (r, +(a), +(b)) a 148 lib/intprops-internal.h # define _GL_INT_SUBTRACT_WRAPV(a, b, r) ckd_sub (r, +(a), +(b)) a 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) a 151 lib/intprops-internal.h # define _GL_INT_SUBTRACT_WRAPV(a, b, r) \ a 152 lib/intprops-internal.h _GL_INT_OP_WRAPV (a, b, r, -, _GL_INT_SUBTRACT_RANGE_OVERFLOW) a 157 lib/intprops-internal.h # define _GL_INT_MULTIPLY_WRAPV(a, b, r) __builtin_mul_overflow (a, b, r) a 160 lib/intprops-internal.h # define _GL_INT_MULTIPLY_WRAPV(a, b, r) \ a 161 lib/intprops-internal.h ((!_GL_SIGNED_TYPE_OR_EXPR (*(r)) && _GL_EXPR_SIGNED (a) && _GL_EXPR_SIGNED (b) \ a 162 lib/intprops-internal.h && _GL_INT_MULTIPLY_RANGE_OVERFLOW (a, b, (__typeof__ (*(r))) 0, \ a 164 lib/intprops-internal.h ? ((void) __builtin_mul_overflow (a, b, r), 1) \ a 165 lib/intprops-internal.h : __builtin_mul_overflow (a, b, r)) a 168 lib/intprops-internal.h # define _GL_INT_MULTIPLY_WRAPV(a, b, r) ckd_mul (r, +(a), +(b)) a 170 lib/intprops-internal.h # define _GL_INT_MULTIPLY_WRAPV(a, b, r) \ a 171 lib/intprops-internal.h _GL_INT_OP_WRAPV (a, b, r, *, _GL_INT_MULTIPLY_RANGE_OVERFLOW) a 192 lib/intprops-internal.h # define _GL_INT_OP_WRAPV(a, b, r, op, overflow) \ a 194 lib/intprops-internal.h signed char: _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned int, signed char, \ a 196 lib/intprops-internal.h unsigned char: _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned int, unsigned char, \ a 198 lib/intprops-internal.h short int: _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned int, short int, SHRT_MIN, \ a 200 lib/intprops-internal.h unsigned short int: _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned int, \ a 202 lib/intprops-internal.h int: _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned int, int, INT_MIN, INT_MAX), \ a 203 lib/intprops-internal.h unsigned int: _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned int, unsigned int, 0, \ a 205 lib/intprops-internal.h long int: _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned long int, long int, \ a 207 lib/intprops-internal.h unsigned long int: _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned long int, \ a 209 lib/intprops-internal.h long long int: _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned long long int, \ a 211 lib/intprops-internal.h unsigned long long int: _GL_INT_OP_CALC (a, b, r, op, overflow, \ a 223 lib/intprops-internal.h # define _GL_INT_OP_WRAPV_SMALLISH(a, b, r, op, overflow, st, smin, smax, ut, umax) \ a 225 lib/intprops-internal.h ? _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned int, st, smin, smax) \ a 226 lib/intprops-internal.h : _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned int, ut, 0, umax)) a 228 lib/intprops-internal.h # define _GL_INT_OP_WRAPV_SMALLISH(a, b, r, op, overflow, st, smin, smax, ut, umax) \ a 229 lib/intprops-internal.h (overflow (a, b, smin, smax) \ a 230 lib/intprops-internal.h ? (overflow (a, b, 0, umax) \ a 231 lib/intprops-internal.h ? (*(r) = _GL_INT_OP_WRAPV_VIA_UNSIGNED (a, b, op, unsigned, st), 1) \ a 232 lib/intprops-internal.h : (*(r) = _GL_INT_OP_WRAPV_VIA_UNSIGNED (a, b, op, unsigned, st)) < 0) \ a 233 lib/intprops-internal.h : (overflow (a, b, 0, umax) \ a 234 lib/intprops-internal.h ? (*(r) = _GL_INT_OP_WRAPV_VIA_UNSIGNED (a, b, op, unsigned, st)) >= 0 \ a 235 lib/intprops-internal.h : (*(r) = _GL_INT_OP_WRAPV_VIA_UNSIGNED (a, b, op, unsigned, st), 0))) a 238 lib/intprops-internal.h # define _GL_INT_OP_WRAPV(a, b, r, op, overflow) \ a 240 lib/intprops-internal.h ? _GL_INT_OP_WRAPV_SMALLISH (a, b, r, op, overflow, signed char, SCHAR_MIN, \ a 243 lib/intprops-internal.h ? _GL_INT_OP_WRAPV_SMALLISH (a, b, r, op, overflow, short int, SHRT_MIN, SHRT_MAX, \ a 247 lib/intprops-internal.h ? _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned int, int, INT_MIN, INT_MAX) \ a 248 lib/intprops-internal.h : _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned int, unsigned int, 0, \ a 250 lib/intprops-internal.h : _GL_INT_OP_WRAPV_LONGISH (a, b, r, op, overflow)) a 252 lib/intprops-internal.h # define _GL_INT_OP_WRAPV_LONGISH(a, b, r, op, overflow) \ a 255 lib/intprops-internal.h ? _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned long int, long int, \ a 257 lib/intprops-internal.h : _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned long int, \ a 260 lib/intprops-internal.h ? _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned long long int, \ a 262 lib/intprops-internal.h : _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned long long int, \ a 265 lib/intprops-internal.h # define _GL_INT_OP_WRAPV_LONGISH(a, b, r, op, overflow) \ a 266 lib/intprops-internal.h (_GL_EXPR_SIGNED (*(r)) ? _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned long int, \ a 268 lib/intprops-internal.h : _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned long int, \ a 279 lib/intprops-internal.h #define _GL_INT_OP_CALC(a, b, r, op, overflow, ut, t, tmin, tmax) \ a 280 lib/intprops-internal.h (overflow (a, b, tmin, tmax) ? (*(r) = _GL_INT_OP_WRAPV_VIA_UNSIGNED (a, b, op, ut, t), 1) \ a 281 lib/intprops-internal.h : (*(r) = _GL_INT_OP_WRAPV_VIA_UNSIGNED (a, b, op, ut, t), 0)) a 290 lib/intprops-internal.h # define _GL_INT_NEGATE_OVERFLOW(a) __builtin_sub_overflow_p (0, a, (__typeof__ (-(a))) 0) a 292 lib/intprops-internal.h # define _GL_INT_NEGATE_OVERFLOW(a) \ a 293 lib/intprops-internal.h _GL_INT_NEGATE_RANGE_OVERFLOW (a, _GL_INT_MINIMUM (a), _GL_INT_MAXIMUM (a)) a 313 lib/intprops-internal.h #define _GL_INT_OP_WRAPV_VIA_UNSIGNED(a, b, op, ut, t) ((t) ((ut) (a) op (ut) (b))) a 321 lib/intprops-internal.h #define _GL_INT_ADD_RANGE_OVERFLOW(a, b, tmin, tmax) \ a 322 lib/intprops-internal.h ((b) < 0 ? (((tmin) ? ((_GL_EXPR_SIGNED (_GL_INT_CONVERT (a, (tmin) - (b))) || (b) < (tmin)) \ a 323 lib/intprops-internal.h && (a) < (tmin) - (b)) \ a 324 lib/intprops-internal.h : (a) <= -1 - (b)) \ a 325 lib/intprops-internal.h || ((_GL_EXPR_SIGNED (a) ? 0 <= (a) : (tmax) < (a)) && (tmax) < (a) + (b))) \ a 326 lib/intprops-internal.h : (a) < 0 \ a 327 lib/intprops-internal.h ? (((tmin) ? ((_GL_EXPR_SIGNED (_GL_INT_CONVERT (b, (tmin) - (a))) || (a) < (tmin)) \ a 328 lib/intprops-internal.h && (b) < (tmin) - (a)) \ a 329 lib/intprops-internal.h : (b) <= -1 - (a)) \ a 330 lib/intprops-internal.h || ((_GL_EXPR_SIGNED (_GL_INT_CONVERT (a, b)) || (tmax) < (b)) && (tmax) < (a) + (b))) \ a 331 lib/intprops-internal.h : (tmax) < (b) || (tmax) - (b) < (a)) a 332 lib/intprops-internal.h #define _GL_INT_SUBTRACT_RANGE_OVERFLOW(a, b, tmin, tmax) \ a 333 lib/intprops-internal.h (((a) < 0) == ((b) < 0) \ a 334 lib/intprops-internal.h ? ((a) < (b) ? !(tmin) || -1 - (tmin) < (b) - (a) - 1 : (tmax) < (a) - (b)) \ a 335 lib/intprops-internal.h : (a) < 0 ? ((!_GL_EXPR_SIGNED (_GL_INT_CONVERT ((a) - (tmin), b)) && (a) - (tmin) < 0) \ a 336 lib/intprops-internal.h || (a) - (tmin) < (b)) \ a 338 lib/intprops-internal.h && _GL_EXPR_SIGNED (_GL_INT_CONVERT ((tmax) + (b), a))) \ a 340 lib/intprops-internal.h || (tmax) + (b) < (a))) a 341 lib/intprops-internal.h #define _GL_INT_MULTIPLY_RANGE_OVERFLOW(a, b, tmin, tmax) \ a 342 lib/intprops-internal.h ((b) < 0 ? ((a) < 0 ? (_GL_EXPR_SIGNED (_GL_INT_CONVERT (tmax, b)) \ a 343 lib/intprops-internal.h ? (a) < (tmax) / (b) \ a 347 lib/intprops-internal.h <= -1 - (a))) \ a 349 lib/intprops-internal.h ? (_GL_EXPR_SIGNED (a) ? 0 < (a) + (tmin) : 0 < (a) && -1 - (tmin) < (a) - 1) \ a 350 lib/intprops-internal.h : (tmin) / (b) < (a)) \ a 353 lib/intprops-internal.h : ((a) < 0 ? (_GL_INT_NEGATE_OVERFLOW (_GL_INT_CONVERT (a, tmin)) && (a) == -1 \ a 355 lib/intprops-internal.h : (tmin) / (a) < (b)) \ a 356 lib/intprops-internal.h : (tmax) / (b) < (a))) a 110 lib/intprops.h #define INT_ADD_RANGE_OVERFLOW(a, b, min, max) ((b) < 0 ? (a) < (min) - (b) : (max) - (b) < (a)) a 114 lib/intprops.h #define INT_SUBTRACT_RANGE_OVERFLOW(a, b, min, max) \ a 115 lib/intprops.h ((b) < 0 ? (max) + (b) < (a) : (a) < (min) + (b)) a 119 lib/intprops.h #define INT_NEGATE_RANGE_OVERFLOW(a, min, max) _GL_INT_NEGATE_RANGE_OVERFLOW (a, min, max) a 125 lib/intprops.h #define INT_MULTIPLY_RANGE_OVERFLOW(a, b, min, max) \ a 126 lib/intprops.h ((b) < 0 ? ((a) < 0 ? (a) < (max) / (b) \ a 128 lib/intprops.h : (min) / (b) < (a)) \ a 130 lib/intprops.h : ((a) < 0 ? (a) < (min) / (b) : (max) / (b) < (a))) a 134 lib/intprops.h #define INT_DIVIDE_RANGE_OVERFLOW(a, b, min, max) ((min) < 0 && (b) == -1 && (a) < -(max)) a 141 lib/intprops.h #define INT_REMAINDER_RANGE_OVERFLOW(a, b, min, max) INT_DIVIDE_RANGE_OVERFLOW (a, b, min, max) a 150 lib/intprops.h #define INT_LEFT_SHIFT_RANGE_OVERFLOW(a, b, min, max) \ a 151 lib/intprops.h ((a) < 0 ? (a) < (min) >> (b) : (max) >> (b) < (a)) a 158 lib/intprops.h # define _GL_ADD_OVERFLOW(a, b, min, max) \ a 159 lib/intprops.h __builtin_add_overflow_p (a, b, (__typeof__ ((a) + (b))) 0) a 160 lib/intprops.h # define _GL_SUBTRACT_OVERFLOW(a, b, min, max) \ a 161 lib/intprops.h __builtin_sub_overflow_p (a, b, (__typeof__ ((a) - (b))) 0) a 162 lib/intprops.h # define _GL_MULTIPLY_OVERFLOW(a, b, min, max) \ a 163 lib/intprops.h __builtin_mul_overflow_p (a, b, (__typeof__ ((a) * (b))) 0) a 165 lib/intprops.h # define _GL_ADD_OVERFLOW(a, b, min, max) \ a 166 lib/intprops.h ((min) < 0 ? INT_ADD_RANGE_OVERFLOW (a, b, min, max) \ a 167 lib/intprops.h : (a) < 0 ? (b) <= (a) + (b) \ a 168 lib/intprops.h : (b) < 0 ? (a) <= (a) + (b) \ a 169 lib/intprops.h : (a) + (b) < (b)) a 170 lib/intprops.h # define _GL_SUBTRACT_OVERFLOW(a, b, min, max) \ a 171 lib/intprops.h ((min) < 0 ? INT_SUBTRACT_RANGE_OVERFLOW (a, b, min, max) \ a 172 lib/intprops.h : (a) < 0 ? 1 \ a 173 lib/intprops.h : (b) < 0 ? (a) - (b) <= (a) \ a 174 lib/intprops.h : (a) < (b)) a 175 lib/intprops.h # define _GL_MULTIPLY_OVERFLOW(a, b, min, max) \ a 176 lib/intprops.h (((min) == 0 && (((a) < 0 && 0 < (b)) || ((b) < 0 && 0 < (a)))) \ a 177 lib/intprops.h || INT_MULTIPLY_RANGE_OVERFLOW (a, b, min, max)) a 179 lib/intprops.h #define _GL_DIVIDE_OVERFLOW(a, b, min, max) \ a 180 lib/intprops.h ((min) < 0 ? (b) == _GL_INT_NEGATE_CONVERT (min, 1) && (a) < -(max) \ a 181 lib/intprops.h : (a) < 0 ? (b) <= (a) + (b) - 1 \ a 182 lib/intprops.h : (b) < 0 && (a) + (b) <= (a)) a 183 lib/intprops.h #define _GL_REMAINDER_OVERFLOW(a, b, min, max) \ a 184 lib/intprops.h ((min) < 0 ? (b) == _GL_INT_NEGATE_CONVERT (min, 1) && (a) < -(max) \ a 185 lib/intprops.h : (a) < 0 ? (a) % (b) != ((max) - (b) + 1) % (b) \ a 186 lib/intprops.h : (b) < 0 && !_GL_UNSIGNED_NEG_MULTIPLE (a, b, max)) a 192 lib/intprops.h #define _GL_UNSIGNED_NEG_MULTIPLE(a, b, max) \ a 195 lib/intprops.h ? (a) \ a 196 lib/intprops.h : (a) % (_GL_INT_CONVERT (a, _GL_SIGNED_INT_MAXIMUM (b)) + 1)) \ a 197 lib/intprops.h : (a) % -(b)) \ a 254 lib/intprops.h #define INT_ADD_OVERFLOW(a, b) _GL_BINARY_OP_OVERFLOW (a, b, _GL_ADD_OVERFLOW) a 255 lib/intprops.h #define INT_SUBTRACT_OVERFLOW(a, b) _GL_BINARY_OP_OVERFLOW (a, b, _GL_SUBTRACT_OVERFLOW) a 256 lib/intprops.h #define INT_NEGATE_OVERFLOW(a) _GL_INT_NEGATE_OVERFLOW (a) a 257 lib/intprops.h #define INT_MULTIPLY_OVERFLOW(a, b) _GL_BINARY_OP_OVERFLOW (a, b, _GL_MULTIPLY_OVERFLOW) a 258 lib/intprops.h #define INT_DIVIDE_OVERFLOW(a, b) _GL_BINARY_OP_OVERFLOW (a, b, _GL_DIVIDE_OVERFLOW) a 259 lib/intprops.h #define INT_REMAINDER_OVERFLOW(a, b) _GL_BINARY_OP_OVERFLOW (a, b, _GL_REMAINDER_OVERFLOW) a 260 lib/intprops.h #define INT_LEFT_SHIFT_OVERFLOW(a, b) \ a 261 lib/intprops.h INT_LEFT_SHIFT_RANGE_OVERFLOW (a, b, _GL_INT_MINIMUM (a), _GL_INT_MAXIMUM (a)) a 267 lib/intprops.h #define _GL_BINARY_OP_OVERFLOW(a, b, op_result_overflow) \ a 268 lib/intprops.h op_result_overflow (a, b, _GL_INT_MINIMUM (_GL_INT_CONVERT (a, b)), \ a 269 lib/intprops.h _GL_INT_MAXIMUM (_GL_INT_CONVERT (a, b))) a 273 lib/intprops.h #define INT_ADD_WRAPV(a, b, r) _GL_INT_ADD_WRAPV (a, b, r) a 274 lib/intprops.h #define INT_SUBTRACT_WRAPV(a, b, r) _GL_INT_SUBTRACT_WRAPV (a, b, r) a 275 lib/intprops.h #define INT_MULTIPLY_WRAPV(a, b, r) _GL_INT_MULTIPLY_WRAPV (a, b, r) a 304 lib/intprops.h #define INT_ADD_OK(a, b, r) (!INT_ADD_WRAPV (a, b, r)) a 305 lib/intprops.h #define INT_SUBTRACT_OK(a, b, r) (!INT_SUBTRACT_WRAPV (a, b, r)) a 306 lib/intprops.h #define INT_MULTIPLY_OK(a, b, r) (!INT_MULTIPLY_WRAPV (a, b, r)) a 94 lib/skin/ini-file.c string_array_comparator (gconstpointer a, gconstpointer b) a 96 lib/skin/ini-file.c return strcmp (*(char *const *) a, *(char *const *) b); a 31 lib/stdckdint.in.h #define ckd_add(r, a, b) ((bool) _GL_INT_ADD_WRAPV (a, b, r)) a 32 lib/stdckdint.in.h #define ckd_sub(r, a, b) ((bool) _GL_INT_SUBTRACT_WRAPV (a, b, r)) a 33 lib/stdckdint.in.h #define ckd_mul(r, a, b) ((bool) _GL_INT_MULTIPLY_WRAPV (a, b, r)) a 540 lib/strutil.h int filenvercmp (char const *a, ssize_t alen, char const *b, ssize_t blen); a 195 lib/strutil/filevercmp.c filenvercmp (const char *a, ssize_t alen, const char *b, ssize_t blen) a 203 lib/strutil/filevercmp.c aempty = alen < 0 ? a[0] == '\0' : alen == 0; a 213 lib/strutil/filevercmp.c if (a[0] == '.') a 221 lib/strutil/filevercmp.c adot = alen < 0 ? a[1] == '\0' : alen == 1; a 229 lib/strutil/filevercmp.c adotdot = a[1] == '.' && (alen < 0 ? a[2] == '\0' : alen == 2); a 240 lib/strutil/filevercmp.c aprefixlen = file_prefixlen (a, &alen); a 246 lib/strutil/filevercmp.c result = verrevcmp (a, aprefixlen, b, bprefixlen); a 250 lib/strutil/filevercmp.c return (result != 0 || one_pass_only ? result : verrevcmp (a, alen, b, blen)); a 563 lib/tty/key.c select_cmp_by_fd_set (gconstpointer a, gconstpointer b) a 565 lib/tty/key.c const select_t *s = (const select_t *) a; a 574 lib/tty/key.c select_cmp_by_fd (gconstpointer a, gconstpointer b) a 576 lib/tty/key.c const select_t *s = (const select_t *) a; a 76 lib/util.h #define DOZ(a, b) ((a) > (b) ? (a) - (b) : 0) a 990 lib/vfs/direntry.c vfs_s_entry_compare (const void *a, const void *b) a 992 lib/vfs/direntry.c const struct vfs_s_entry *e = (const struct vfs_s_entry *) a; a 91 lib/vfs/gc.c #define VFS_STAMPING(a) ((struct vfs_stamping *) (a)) a 113 lib/vfs/gc.c vfs_stamp_compare (gconstpointer a, gconstpointer b) a 115 lib/vfs/gc.c const struct vfs_stamping *vsa = (const struct vfs_stamping *) a; a 28 lib/vfs/vfs.h #define VFS_CLASS(a) ((struct vfs_class *) (a)) a 39 lib/vfs/vfs.h # define IS_LINEAR(a) 0 a 40 lib/vfs/vfs.h # define NO_LINEAR(a) a a 43 lib/vfs/vfs.h # define IS_LINEAR(a) ((a) == (O_RDONLY | O_LINEAR)) // Return only 0 and 1 ! a 44 lib/vfs/vfs.h # define NO_LINEAR(a) (((a) == (O_RDONLY | O_LINEAR)) ? O_RDONLY : (a)) a 34 lib/vfs/xdirentry.h #define ERRNOR(a, b) \ a 37 lib/vfs/xdirentry.h me->verrno = a; \ a 42 lib/vfs/xdirentry.h #define VFS_SUBCLASS(a) ((struct vfs_s_subclass *) (a)) a 44 lib/vfs/xdirentry.h #define VFS_SUPER(a) ((struct vfs_s_super *) (a)) a 45 lib/vfs/xdirentry.h #define CONST_VFS_SUPER(a) ((const struct vfs_s_super *) (a)) a 46 lib/vfs/xdirentry.h #define VFS_ENTRY(a) ((struct vfs_s_entry *) (a)) a 47 lib/vfs/xdirentry.h #define VFS_INODE(a) ((struct vfs_s_inode *) (a)) a 49 lib/vfs/xdirentry.h #define VFS_FILE_HANDLER(a) ((vfs_file_handler_t *) a) a 50 lib/vfs/xdirentry.h #define VFS_FILE_HANDLER_SUPER(a) VFS_FILE_HANDLER (a)->ino->super a 169 lib/vfs/xdirentry.h int vfs_s_entry_compare (const void *a, const void *b); a 394 lib/widget/input_complete.c host_equal_func (gconstpointer a, gconstpointer b) a 396 lib/widget/input_complete.c return (strcmp ((const char *) a, (const char *) b) == 0); a 683 lib/widget/input_complete.c match_compare (gconstpointer a, gconstpointer b) a 685 lib/widget/input_complete.c return strcmp (*(char *const *) a, *(char *const *) b); a 67 lib/widget/listbox.c listbox_entry_cmp (const void *a, const void *b, void *user_data) a 69 lib/widget/listbox.c const WLEntry *ea = (const WLEntry *) a; a 454 lib/widget/widget-common.h widget_overlapped (const Widget *a, const Widget *b) a 456 lib/widget/widget-common.h return rects_are_overlapped (&a->rect, &b->rect); a 55 src/diffviewer/internal.h int a[2][2]; a 80 src/diffviewer/internal.h GArray *a; a 94 src/diffviewer/internal.h GArray *a[DIFF_COUNT]; a 162 src/diffviewer/search.c if ((size_t) dview->search.last_accessed_num_line >= dview->a[dview->ord]->len) a 163 src/diffviewer/search.c dview->search.last_accessed_num_line = (ssize_t) dview->a[dview->ord]->len; a 169 src/diffviewer/search.c p = (DIFFLN *) &g_array_index (dview->a[dview->ord], DIFFLN, (size_t) ind); a 192 src/diffviewer/search.c else if ((size_t) dview->search.last_accessed_num_line >= dview->a[dview->ord]->len) a 194 src/diffviewer/search.c dview->search.last_accessed_num_line = (ssize_t) dview->a[dview->ord]->len; a 198 src/diffviewer/search.c for (ind = (size_t) ++dview->search.last_accessed_num_line; ind < dview->a[dview->ord]->len; a 203 src/diffviewer/search.c p = (DIFFLN *) &g_array_index (dview->a[dview->ord], DIFFLN, ind); a 747 src/diffviewer/ydiff.c op.a[0][0] = f1; a 748 src/diffviewer/ydiff.c op.a[0][1] = f2; a 750 src/diffviewer/ydiff.c op.a[1][0] = t1; a 751 src/diffviewer/ydiff.c op.a[1][1] = t2; a 919 src/diffviewer/ydiff.c #define F1 a[eff][0] a 920 src/diffviewer/ydiff.c #define F2 a[eff][1] a 921 src/diffviewer/ydiff.c #define T1 a[ord ^ 1][0] a 922 src/diffviewer/ydiff.c #define T2 a[ord ^ 1][1] a 1631 src/diffviewer/ydiff.c GArray *a = ((PRINTER_CTX *) ctx)->a; a 1650 src/diffviewer/ydiff.c g_array_append_val (a, p); a 1656 src/diffviewer/ydiff.c p = &g_array_index (a, DIFFLN, a->len - 1); a 1723 src/diffviewer/ydiff.c ctx.a = dview->a[DIFF_LEFT]; a 1727 src/diffviewer/ydiff.c ctx.a = dview->a[DIFF_RIGHT]; a 1734 src/diffviewer/ydiff.c if (rv != 0 || dview->a[DIFF_LEFT]->len != dview->a[DIFF_RIGHT]->len) a 1749 src/diffviewer/ydiff.c for (i = 0; i < dview->a[DIFF_LEFT]->len; i++) a 1755 src/diffviewer/ydiff.c p = &g_array_index (dview->a[DIFF_LEFT], DIFFLN, i); a 1756 src/diffviewer/ydiff.c q = &g_array_index (dview->a[DIFF_RIGHT], DIFFLN, i); a 1788 src/diffviewer/ydiff.c len = dview->a[DIFF_LEFT]->len; a 1823 src/diffviewer/ydiff.c get_line_numbers (const GArray *a, size_t pos, int *linenum, int *lineofs) a 1830 src/diffviewer/ydiff.c if (a->len != 0) a 1832 src/diffviewer/ydiff.c if (pos >= a->len) a 1833 src/diffviewer/ydiff.c pos = a->len - 1; a 1835 src/diffviewer/ydiff.c p = &g_array_index (a, DIFFLN, pos); a 1858 src/diffviewer/ydiff.c calc_nwidth (const GArray *const *a) a 1863 src/diffviewer/ydiff.c get_line_numbers (a[DIFF_LEFT], a[DIFF_LEFT]->len - 1, &l1, &o1); a 1864 src/diffviewer/ydiff.c get_line_numbers (a[DIFF_RIGHT], a[DIFF_RIGHT]->len - 1, &l2, &o2); a 1873 src/diffviewer/ydiff.c find_prev_hunk (const GArray *a, int pos) a 1876 src/diffviewer/ydiff.c for (; pos > 0 && ((DIFFLN *) &g_array_index (a, DIFFLN, pos))->ch != EQU_CH; pos--) a 1878 src/diffviewer/ydiff.c for (; pos > 0 && ((DIFFLN *) &g_array_index (a, DIFFLN, pos))->ch == EQU_CH; pos--) a 1880 src/diffviewer/ydiff.c for (; pos > 0 && ((DIFFLN *) &g_array_index (a, DIFFLN, pos))->ch != EQU_CH; pos--) a 1882 src/diffviewer/ydiff.c if (pos > 0 && (size_t) pos < a->len) a 1885 src/diffviewer/ydiff.c for (; pos > 0 && ((DIFFLN *) &g_array_index (a, DIFFLN, pos - 1))->ch == EQU_CH; pos--) a 1887 src/diffviewer/ydiff.c for (; pos > 0 && ((DIFFLN *) &g_array_index (a, DIFFLN, pos - 1))->ch != EQU_CH; pos--) a 1897 src/diffviewer/ydiff.c find_next_hunk (const GArray *a, size_t pos) a 1899 src/diffviewer/ydiff.c for (; pos < a->len && ((DIFFLN *) &g_array_index (a, DIFFLN, pos))->ch != EQU_CH; pos++) a 1901 src/diffviewer/ydiff.c for (; pos < a->len && ((DIFFLN *) &g_array_index (a, DIFFLN, pos))->ch == EQU_CH; pos++) a 1921 src/diffviewer/ydiff.c const GArray *a0 = dview->a[DIFF_LEFT]; a 1922 src/diffviewer/ydiff.c const GArray *a1 = dview->a[DIFF_RIGHT]; a 2226 src/diffviewer/ydiff.c if (dview->a[DIFF_LEFT] != NULL) a 2227 src/diffviewer/ydiff.c g_array_free (dview->a[DIFF_LEFT], TRUE); a 2228 src/diffviewer/ydiff.c if (dview->a[DIFF_RIGHT] != NULL) a 2229 src/diffviewer/ydiff.c g_array_free (dview->a[DIFF_RIGHT], TRUE); a 2231 src/diffviewer/ydiff.c dview->a[DIFF_LEFT] = g_array_new (FALSE, FALSE, sizeof (DIFFLN)); a 2232 src/diffviewer/ydiff.c g_array_set_clear_func (dview->a[DIFF_LEFT], cc_free_elt); a 2233 src/diffviewer/ydiff.c dview->a[DIFF_RIGHT] = g_array_new (FALSE, FALSE, sizeof (DIFFLN)); a 2234 src/diffviewer/ydiff.c g_array_set_clear_func (dview->a[DIFF_RIGHT], cc_free_elt); a 2456 src/diffviewer/ydiff.c dview->a[DIFF_LEFT] = g_array_new (FALSE, FALSE, sizeof (DIFFLN)); a 2457 src/diffviewer/ydiff.c g_array_set_clear_func (dview->a[DIFF_LEFT], cc_free_elt); a 2458 src/diffviewer/ydiff.c dview->a[DIFF_RIGHT] = g_array_new (FALSE, FALSE, sizeof (DIFFLN)); a 2459 src/diffviewer/ydiff.c g_array_set_clear_func (dview->a[DIFF_RIGHT], cc_free_elt); a 2481 src/diffviewer/ydiff.c if (dview->a[DIFF_LEFT] != NULL) a 2483 src/diffviewer/ydiff.c g_array_free (dview->a[DIFF_LEFT], TRUE); a 2484 src/diffviewer/ydiff.c dview->a[DIFF_LEFT] = NULL; a 2486 src/diffviewer/ydiff.c if (dview->a[DIFF_RIGHT] != NULL) a 2488 src/diffviewer/ydiff.c g_array_free (dview->a[DIFF_RIGHT], TRUE); a 2489 src/diffviewer/ydiff.c dview->a[DIFF_RIGHT] = NULL; a 2546 src/diffviewer/ydiff.c for (i = dview->skip_rows, j = 0; i < dview->a[ord]->len && j < height; j++, i++) a 2553 src/diffviewer/ydiff.c p = (DIFFLN *) &g_array_index (dview->a[ord], DIFFLN, i); a 2741 src/diffviewer/ydiff.c get_line_numbers (dview->a[ord], dview->skip_rows, &linenum, &lineofs); a 2770 src/diffviewer/ydiff.c dview->display_numbers = calc_nwidth ((const GArray *const *) dview->a); a 2785 src/diffviewer/ydiff.c last = dview->a[DIFF_LEFT]->len - 1; a 2799 src/diffviewer/ydiff.c dview->display_numbers = calc_nwidth ((const GArray *const *) dview->a); a 2878 src/diffviewer/ydiff.c get_line_numbers (dview->a[ord], dview->skip_rows, &linenum, &lineofs); a 2922 src/diffviewer/ydiff.c for (; i < dview->a[ord]->len; i++) a 2926 src/diffviewer/ydiff.c p = &g_array_index (dview->a[ord], DIFFLN, i); a 3048 src/diffviewer/ydiff.c dview->display_numbers ^= calc_nwidth ((const GArray *const *) dview->a); a 3097 src/diffviewer/ydiff.c find_next_hunk (dview->a[DIFF_LEFT], dview->skip_rows); a 3101 src/diffviewer/ydiff.c find_prev_hunk (dview->a[DIFF_LEFT], dview->skip_rows); a 3130 src/diffviewer/ydiff.c dview->skip_rows = dview->search.last_accessed_num_line = dview->a[DIFF_LEFT]->len - 1; a 74 src/editor/edit-impl.h #define edit_query_dialog2(h, t, a, b) query_dialog (h, t, D_NORMAL, 2, a, b) a 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) a 1554 src/editor/edit.c int a; a 1559 src/editor/edit.c a = edit_buffer_get_byte (&edit->buffer, q); a 1569 src/editor/edit.c if (inc > 0 && a == '\n') a 1574 src/editor/edit.c i += (a == c) - (a == d); a 92 src/editor/syntax.c if (*a == NULL) \ a 100 src/editor/syntax.c if (*a != NULL) \ a 836 src/editor/syntax.c char f[80], b[80], a[80], *p; a 896 src/editor/syntax.c g_strlcpy (a, color->attrs, sizeof (a)); a 897 src/editor/syntax.c p = strchr (a, '/'); a 901 src/editor/syntax.c p = a; a 904 src/editor/syntax.c color->attrs = a; a 980 src/editor/syntax.c char **a; a 1007 src/editor/syntax.c a = args + 1; a 1037 src/editor/syntax.c if (strcmp (*a, "left") == 0) a 1039 src/editor/syntax.c a++; a 1040 src/editor/syntax.c g_strlcpy (whole_left, *a, sizeof (whole_left)); a 1042 src/editor/syntax.c else if (strcmp (*a, "right") == 0) a 1044 src/editor/syntax.c a++; a 1045 src/editor/syntax.c g_strlcpy (whole_right, *a, sizeof (whole_right)); a 1049 src/editor/syntax.c g_strlcpy (whole_left, *a, sizeof (whole_left)); a 1050 src/editor/syntax.c g_strlcpy (whole_right, *a, sizeof (whole_right)); a 1052 src/editor/syntax.c a++; a 1063 src/editor/syntax.c if (strcmp (*a, "default") != 0) a 1066 src/editor/syntax.c a++; a 1077 src/editor/syntax.c if (strcmp (*a, "exclusive") == 0) a 1079 src/editor/syntax.c a++; a 1083 src/editor/syntax.c if (strcmp (*a, "whole") == 0) a 1085 src/editor/syntax.c a++; a 1089 src/editor/syntax.c else if (strcmp (*a, "wholeleft") == 0) a 1091 src/editor/syntax.c a++; a 1094 src/editor/syntax.c else if (strcmp (*a, "wholeright") == 0) a 1096 src/editor/syntax.c a++; a 1100 src/editor/syntax.c if (strcmp (*a, "linestart") == 0) a 1102 src/editor/syntax.c a++; a 1106 src/editor/syntax.c c->left = g_string_new (*a++); a 1108 src/editor/syntax.c if (strcmp (*a, "linestart") == 0) a 1110 src/editor/syntax.c a++; a 1114 src/editor/syntax.c c->right = g_string_new (*a++); a 1122 src/editor/syntax.c subst_defines (edit->defines, a, &args[ARGS_LEN]); a 1123 src/editor/syntax.c color.fg = *a; a 1124 src/editor/syntax.c if (*a != NULL) a 1125 src/editor/syntax.c a++; a 1126 src/editor/syntax.c color.bg = *a; a 1127 src/editor/syntax.c if (*a != NULL) a 1128 src/editor/syntax.c a++; a 1129 src/editor/syntax.c color.attrs = *a; a 1130 src/editor/syntax.c if (*a != NULL) a 1131 src/editor/syntax.c a++; a 1159 src/editor/syntax.c if (strcmp (*a, "whole") == 0) a 1161 src/editor/syntax.c a++; a 1165 src/editor/syntax.c else if (strcmp (*a, "wholeleft") == 0) a 1167 src/editor/syntax.c a++; a 1170 src/editor/syntax.c else if (strcmp (*a, "wholeright") == 0) a 1172 src/editor/syntax.c a++; a 1176 src/editor/syntax.c if (strcmp (*a, "linestart") == 0) a 1178 src/editor/syntax.c a++; a 1182 src/editor/syntax.c if (strcmp (*a, "whole") == 0) a 1185 src/editor/syntax.c k->keyword = g_string_new (*a++); a 1186 src/editor/syntax.c subst_defines (edit->defines, a, &args[ARGS_LEN]); a 1187 src/editor/syntax.c color.fg = *a; a 1188 src/editor/syntax.c if (*a != NULL) a 1189 src/editor/syntax.c a++; a 1190 src/editor/syntax.c color.bg = *a; a 1191 src/editor/syntax.c if (*a != NULL) a 1192 src/editor/syntax.c a++; a 1193 src/editor/syntax.c color.attrs = *a; a 1194 src/editor/syntax.c if (*a != NULL) a 1195 src/editor/syntax.c a++; a 1215 src/editor/syntax.c char *key = *a++; a 1228 src/editor/syntax.c while (*a != NULL) a 1229 src/editor/syntax.c *argv++ = g_strdup (*a++); a 112 src/filemanager/dir.c compare_by_names (file_entry_t *a, file_entry_t *b) a 115 src/filemanager/dir.c if (a->name_sort_key == NULL) a 116 src/filemanager/dir.c a->name_sort_key = str_create_key_for_filename (a->fname->str, case_sensitive); a 120 src/filemanager/dir.c return key_collate (a->name_sort_key, b->name_sort_key); a 326 src/filemanager/dir.c unsorted (file_entry_t *a, file_entry_t *b) a 328 src/filemanager/dir.c (void) a; a 337 src/filemanager/dir.c sort_name (file_entry_t *a, file_entry_t *b) a 339 src/filemanager/dir.c int ad = MY_ISDIR (a); a 343 src/filemanager/dir.c return compare_by_names (a, b); a 351 src/filemanager/dir.c sort_vers (file_entry_t *a, file_entry_t *b) a 353 src/filemanager/dir.c int ad = MY_ISDIR (a); a 360 src/filemanager/dir.c result = filevercmp (a->fname->str, b->fname->str); a 364 src/filemanager/dir.c return compare_by_names (a, b); a 373 src/filemanager/dir.c sort_ext (file_entry_t *a, file_entry_t *b) a 375 src/filemanager/dir.c int ad = MY_ISDIR (a); a 382 src/filemanager/dir.c if (a->extension_sort_key == NULL) a 383 src/filemanager/dir.c a->extension_sort_key = str_create_key (extension (a->fname->str), case_sensitive); a 387 src/filemanager/dir.c r = str_key_collate (a->extension_sort_key, b->extension_sort_key, case_sensitive); a 391 src/filemanager/dir.c return compare_by_names (a, b); a 400 src/filemanager/dir.c sort_time (file_entry_t *a, file_entry_t *b) a 402 src/filemanager/dir.c int ad = MY_ISDIR (a); a 407 src/filemanager/dir.c int result = _GL_CMP (a->st.st_mtime, b->st.st_mtime); a 412 src/filemanager/dir.c return compare_by_names (a, b); a 421 src/filemanager/dir.c sort_ctime (file_entry_t *a, file_entry_t *b) a 423 src/filemanager/dir.c int ad = MY_ISDIR (a); a 428 src/filemanager/dir.c int result = _GL_CMP (a->st.st_ctime, b->st.st_ctime); a 433 src/filemanager/dir.c return compare_by_names (a, b); a 442 src/filemanager/dir.c sort_atime (file_entry_t *a, file_entry_t *b) a 444 src/filemanager/dir.c int ad = MY_ISDIR (a); a 449 src/filemanager/dir.c int result = _GL_CMP (a->st.st_atime, b->st.st_atime); a 454 src/filemanager/dir.c return compare_by_names (a, b); a 463 src/filemanager/dir.c sort_inode (file_entry_t *a, file_entry_t *b) a 465 src/filemanager/dir.c int ad = MY_ISDIR (a); a 469 src/filemanager/dir.c return (a->st.st_ino - b->st.st_ino) * reverse; a 477 src/filemanager/dir.c sort_size (file_entry_t *a, file_entry_t *b) a 479 src/filemanager/dir.c int ad = MY_ISDIR (a); a 484 src/filemanager/dir.c int result = _GL_CMP (a->st.st_size, b->st.st_size); a 489 src/filemanager/dir.c return compare_by_names (a, b); a 93 src/filemanager/dir.h int unsorted (file_entry_t *a, file_entry_t *b); a 94 src/filemanager/dir.h int sort_name (file_entry_t *a, file_entry_t *b); a 95 src/filemanager/dir.h int sort_vers (file_entry_t *a, file_entry_t *b); a 96 src/filemanager/dir.h int sort_ext (file_entry_t *a, file_entry_t *b); a 97 src/filemanager/dir.h int sort_time (file_entry_t *a, file_entry_t *b); a 98 src/filemanager/dir.h int sort_atime (file_entry_t *a, file_entry_t *b); a 99 src/filemanager/dir.h int sort_ctime (file_entry_t *a, file_entry_t *b); a 100 src/filemanager/dir.h int sort_size (file_entry_t *a, file_entry_t *b); a 101 src/filemanager/dir.h int sort_inode (file_entry_t *a, file_entry_t *b); a 842 src/filemanager/file.c const char *a, const char *b) a 853 src/filemanager/file.c width_a = str_term_width1 (a); a 863 src/filemanager/file.c s = g_strndup (str_trunc (a, width), width); a 870 src/filemanager/file.c a = str_trunc (a, width); a 871 src/filemanager/file.c msg = g_strdup_printf (fmt, a, b); a 879 src/filemanager/file.c msg = g_strdup_printf (fmt, a, b); a 894 src/filemanager/file.c warn_same_file (file_op_context_t *ctx, const char *fmt, const char *a, const char *b) a 901 src/filemanager/file.c const char *a, const char *b); a 907 src/filemanager/file.c return parent_call (pntr.p, ctx, 3, strlen (fmt), fmt, strlen (a), a, strlen (b), b); a 909 src/filemanager/file.c return real_warn_same_file (ctx, Foreground, fmt, a, b); a 915 src/filemanager/file.c check_same_file (file_op_context_t *ctx, const char *a, const struct stat *ast, const char *b, a 922 src/filemanager/file.c *status = warn_same_file (ctx, _ ("\"%s\"\nand\n\"%s\"\nare the same directory"), a, b); a 924 src/filemanager/file.c *status = warn_same_file (ctx, _ ("\"%s\"\nand\n\"%s\"\nare the same file"), a, b); a 220 src/filemanager/find.c max (int a, int b) a 222 src/filemanager/find.c return (a > b ? a : b); a 192 src/filemanager/layout.c max (int a, int b) a 194 src/filemanager/layout.c return a > b ? a : b; a 99 src/filemanager/panelize.c panelize_entry_cmp_by_label (gconstpointer a, gconstpointer b) a 101 src/filemanager/panelize.c const panelize_entry_t *entry = (const panelize_entry_t *) a; a 197 src/textconf.c #define PRINTF_GROUP(a) (void) printf ("[%s]\n", a) a 198 src/textconf.c #define PRINTF_SECTION(a, b) (void) printf (" %-17s %s\n", a, b) a 199 src/textconf.c #define PRINTF_SECTION2(a, b) (void) printf (" %-17s %s/\n", a, b) a 200 src/textconf.c #define PRINTF(a, b, c) (void) printf ("\t%-15s %s/%s\n", a, b, c) a 201 src/textconf.c #define PRINTF2(a, b, c) (void) printf ("\t%-15s %s%s\n", a, b, c) a 163 src/vfs/cpio/cpio.c cpio_defer_find (const void *a, const void *b) a 165 src/vfs/cpio/cpio.c const defer_inode *a1 = (const defer_inode *) a; a 83 src/vfs/extfs/extfs.c #define EXTFS_SUPER(a) ((struct extfs_super_t *) (a)) a 173 src/vfs/extfs/extfs.c struct vfs_s_super *a = VFS_SUPER (data); a 178 src/vfs/extfs/extfs.c info = &g_array_index (extfs_plugins, extfs_plugin_info_t, EXTFS_SUPER (a)->fstype); a 179 src/vfs/extfs/extfs.c name = g_strconcat (a->name != NULL ? a->name : "", PATH_SEP_STR, info->prefix, a 188 src/vfs/extfs/extfs.c extfs_cmp_archive (const void *a, const void *b) a 190 src/vfs/extfs/extfs.c const struct vfs_s_super *ar = (const struct vfs_s_super *) a; a 737 src/vfs/extfs/extfs.c struct extfs_super_t *a; a 743 src/vfs/extfs/extfs.c a = *archive; a 761 src/vfs/extfs/extfs.c result = extfs_read_archive (pip, a, &error); a 764 src/vfs/extfs/extfs.c VFS_SUPER (a)->me->free (VFS_SUPER (a)); a 790 src/vfs/extfs/extfs.c struct extfs_super_t *a = NULL; a 804 src/vfs/extfs/extfs.c a = EXTFS_SUPER (parc->data); a 805 src/vfs/extfs/extfs.c vfs_stamp (vfs_extfs_ops, (vfsid) a); a 811 src/vfs/extfs/extfs.c result = extfs_open_and_read_archive (fstype, archive_name, &a); a 822 src/vfs/extfs/extfs.c *archive = a; a 1263 src/vfs/ftpfs/ftpfs.c unsigned char *a = (unsigned char *) &((struct sockaddr_in *) &data_addr)->sin_addr; a 1266 src/vfs/ftpfs/ftpfs.c if (ftpfs_command (me, super, WAIT_REPLY, "PORT %u,%u,%u,%u,%u,%u", a[0], a[1], a[2], a[3], a 82 src/vfs/sfs/sfs.c #define COPY_STRING(a) \ a 83 src/vfs/sfs/sfs.c if ((t - pad) + strlen (a) > sizeof (pad)) \ a 90 src/vfs/sfs/sfs.c strcpy (t, a); \ a 91 src/vfs/sfs/sfs.c t += strlen (a); \ a 124 src/vfs/sfs/sfs.c cachedfile_compare (const void *a, const void *b) a 126 src/vfs/sfs/sfs.c const cachedfile *cf = (const cachedfile *) a; a 43 src/vfs/sftpfs/file.c #define SFTP_FILE_HANDLER(a) ((sftpfs_file_handler_t *) a) a 72 src/viewer/coord_cache.c typedef gboolean (*cmp_func_t) (const coord_cache_entry_t *a, const coord_cache_entry_t *b); a 96 src/viewer/coord_cache.c mcview_coord_cache_entry_less_offset (const coord_cache_entry_t *a, const coord_cache_entry_t *b) a 98 src/viewer/coord_cache.c return (a->cc_offset < b->cc_offset); a 104 src/viewer/coord_cache.c mcview_coord_cache_entry_less_plain (const coord_cache_entry_t *a, const coord_cache_entry_t *b) a 106 src/viewer/coord_cache.c if (a->cc_line < b->cc_line) a 109 src/viewer/coord_cache.c if (a->cc_line == b->cc_line) a 110 src/viewer/coord_cache.c return (a->cc_column < b->cc_column); a 118 src/viewer/coord_cache.c mcview_coord_cache_entry_less_nroff (const coord_cache_entry_t *a, const coord_cache_entry_t *b) a 120 src/viewer/coord_cache.c if (a->cc_line < b->cc_line) a 123 src/viewer/coord_cache.c if (a->cc_line == b->cc_line) a 124 src/viewer/coord_cache.c return (a->cc_nroff_column < b->cc_nroff_column); a 341 src/viewer/internal.h mcview_offset_rounddown (off_t a, off_t b) a 344 src/viewer/internal.h return a - a % b; a 33 tests/lib/search/regex_replace_esc_seq.c #define test_helper_check_valid_data(a, b, c, d, e, f) \ a 35 tests/lib/search/regex_replace_esc_seq.c ck_assert_msg (a == b, "ret_value != %s", (b) ? "TRUE" : "FALSE"); \ a 64 tests/lib/strutil/filevercmp.c test_filevercmp (char const *a, char const *b) a 72 tests/lib/strutil/filevercmp.c result = filevercmp (a, b); a 74 tests/lib/strutil/filevercmp.c alen = strlen (a); a 78 tests/lib/strutil/filevercmp.c memcpy (buffer, a, alen); a 37 tests/lib/strutil/str_verscmp.c static char const a[] = "B0075022800016.gbp.corp.com"; a 88 tests/lib/strutil/str_verscmp.c { a, b, -1 }, a 90 tests/lib/strutil/str_verscmp.c { a, c, -1 }, a 91 tests/lib/strutil/str_verscmp.c { b, a, 1 }, a 93 tests/lib/strutil/str_verscmp.c { c, a, 1 },