a 92 lib/skin/ini-file.c string_array_comparator (gconstpointer a, gconstpointer b) a 94 lib/skin/ini-file.c return strcmp (*(char *const *) a, *(char *const *) b); a 581 lib/strutil.h int filevercmp (const char *a, const char *b); a 587 lib/strutil.h int filenvercmp (char const *a, ssize_t alen, char const *b, ssize_t blen); a 201 lib/strutil/filevercmp.c filenvercmp (const char *a, ssize_t alen, const char *b, ssize_t blen) a 209 lib/strutil/filevercmp.c aempty = alen < 0 ? a[0] == '\0' : alen == 0; a 219 lib/strutil/filevercmp.c if (a[0] == '.') a 227 lib/strutil/filevercmp.c adot = alen < 0 ? a[1] == '\0' : alen == 1; a 235 lib/strutil/filevercmp.c adotdot = a[1] == '.' && (alen < 0 ? a[2] == '\0' : alen == 2); a 246 lib/strutil/filevercmp.c aprefixlen = file_prefixlen (a, &alen); a 252 lib/strutil/filevercmp.c result = verrevcmp (a, aprefixlen, b, bprefixlen); a 256 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 58 lib/util.h #define DOZ(a, b) ((a) > (b) ? (a) - (b) : 0) a 995 lib/vfs/direntry.c vfs_s_entry_compare (const void *a, const void *b) a 997 lib/vfs/direntry.c const struct vfs_s_entry *e = (const struct vfs_s_entry *) a; a 92 lib/vfs/gc.c #define VFS_STAMPING(a) ((struct vfs_stamping *)(a)) a 112 lib/vfs/gc.c vfs_stamp_compare (gconstpointer a, gconstpointer b) a 114 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 50 lib/vfs/vfs.h #define IS_LINEAR(a) 0 a 51 lib/vfs/vfs.h #define NO_LINEAR(a) a a 54 lib/vfs/vfs.h #define IS_LINEAR(a) ((a) == (O_RDONLY | O_LINEAR)) /* Return only 0 and 1 ! */ a 55 lib/vfs/vfs.h #define NO_LINEAR(a) (((a) == (O_RDONLY | O_LINEAR)) ? O_RDONLY : (a)) a 35 lib/vfs/xdirentry.h #define ERRNOR(a, b) do { me->verrno = a; return b; } while (0) a 37 lib/vfs/xdirentry.h #define VFS_SUBCLASS(a) ((struct vfs_s_subclass *) (a)) a 39 lib/vfs/xdirentry.h #define VFS_SUPER(a) ((struct vfs_s_super *) (a)) a 40 lib/vfs/xdirentry.h #define CONST_VFS_SUPER(a) ((const struct vfs_s_super *) (a)) a 41 lib/vfs/xdirentry.h #define VFS_ENTRY(a) ((struct vfs_s_entry *) (a)) a 42 lib/vfs/xdirentry.h #define VFS_INODE(a) ((struct vfs_s_inode *) (a)) a 44 lib/vfs/xdirentry.h #define VFS_FILE_HANDLER(a) ((vfs_file_handler_t *) a) a 45 lib/vfs/xdirentry.h #define VFS_FILE_HANDLER_SUPER(a) VFS_FILE_HANDLER (a)->ino->super a 165 lib/vfs/xdirentry.h int vfs_s_entry_compare (const void *a, const void *b); a 702 lib/widget/input_complete.c match_compare (const void *a, const void *b) a 704 lib/widget/input_complete.c return strcmp (*(char *const *) a, *(char *const *) b); a 63 lib/widget/listbox.c listbox_entry_cmp (const void *a, const void *b, void *user_data) a 65 lib/widget/listbox.c const WLEntry *ea = (const WLEntry *) a; a 661 lib/widget/widget-common.c widget_overlapped (const Widget * a, const Widget * b) a 663 lib/widget/widget-common.c return !((b->x >= a->x + a->cols) a 664 lib/widget/widget-common.c || (a->x >= b->x + b->cols) || (b->y >= a->y + a->lines) || (a->y >= b->y + b->lines)); a 219 lib/widget/widget-common.h gboolean widget_overlapped (const Widget * a, const Widget * b); a 55 src/diffviewer/internal.h int a[2][2]; a 81 src/diffviewer/internal.h GArray *a; a 95 src/diffviewer/internal.h GArray *a[DIFF_COUNT]; a 150 src/diffviewer/search.c if ((size_t) dview->search.last_accessed_num_line >= dview->a[dview->ord]->len) a 151 src/diffviewer/search.c dview->search.last_accessed_num_line = (ssize_t) dview->a[dview->ord]->len; a 157 src/diffviewer/search.c p = (DIFFLN *) & g_array_index (dview->a[dview->ord], DIFFLN, (size_t) ind); a 181 src/diffviewer/search.c else if ((size_t) dview->search.last_accessed_num_line >= dview->a[dview->ord]->len) a 183 src/diffviewer/search.c dview->search.last_accessed_num_line = (ssize_t) dview->a[dview->ord]->len; a 187 src/diffviewer/search.c for (ind = (size_t)++ dview->search.last_accessed_num_line; ind < dview->a[dview->ord]->len; a 192 src/diffviewer/search.c p = (DIFFLN *) & g_array_index (dview->a[dview->ord], DIFFLN, ind); a 74 src/diffviewer/ydiff.c #define g_array_foreach(a, TP, cbf) \ a 78 src/diffviewer/ydiff.c for (g_array_foreach_i = 0; g_array_foreach_i < a->len; g_array_foreach_i++) \ a 82 src/diffviewer/ydiff.c g_array_foreach_var = &g_array_index (a, TP, g_array_foreach_i); \ a 743 src/diffviewer/ydiff.c op.a[0][0] = f1; a 744 src/diffviewer/ydiff.c op.a[0][1] = f2; a 746 src/diffviewer/ydiff.c op.a[1][0] = t1; a 747 src/diffviewer/ydiff.c op.a[1][1] = t2; a 886 src/diffviewer/ydiff.c #define F1 a[eff][0] a 887 src/diffviewer/ydiff.c #define F2 a[eff][1] a 888 src/diffviewer/ydiff.c #define T1 a[ ord^1 ][0] a 889 src/diffviewer/ydiff.c #define T2 a[ ord^1 ][1] a 1684 src/diffviewer/ydiff.c GArray *a = ((PRINTER_CTX *) ctx)->a; a 1703 src/diffviewer/ydiff.c g_array_append_val (a, p); a 1709 src/diffviewer/ydiff.c p = &g_array_index (a, DIFFLN, a->len - 1); a 1778 src/diffviewer/ydiff.c ctx.a = dview->a[DIFF_LEFT]; a 1782 src/diffviewer/ydiff.c ctx.a = dview->a[DIFF_RIGHT]; a 1789 src/diffviewer/ydiff.c if (rv != 0 || dview->a[DIFF_LEFT]->len != dview->a[DIFF_RIGHT]->len) a 1805 src/diffviewer/ydiff.c for (i = 0; i < dview->a[DIFF_LEFT]->len; i++) a 1811 src/diffviewer/ydiff.c p = &g_array_index (dview->a[DIFF_LEFT], DIFFLN, i); a 1812 src/diffviewer/ydiff.c q = &g_array_index (dview->a[DIFF_RIGHT], DIFFLN, i); a 1847 src/diffviewer/ydiff.c len = dview->a[DIFF_LEFT]->len; a 1882 src/diffviewer/ydiff.c get_line_numbers (const GArray * a, size_t pos, int *linenum, int *lineofs) a 1889 src/diffviewer/ydiff.c if (a->len != 0) a 1891 src/diffviewer/ydiff.c if (pos >= a->len) a 1892 src/diffviewer/ydiff.c pos = a->len - 1; a 1894 src/diffviewer/ydiff.c p = &g_array_index (a, DIFFLN, pos); a 1917 src/diffviewer/ydiff.c calc_nwidth (const GArray * const *a) a 1922 src/diffviewer/ydiff.c get_line_numbers (a[DIFF_LEFT], a[DIFF_LEFT]->len - 1, &l1, &o1); a 1923 src/diffviewer/ydiff.c get_line_numbers (a[DIFF_RIGHT], a[DIFF_RIGHT]->len - 1, &l2, &o2); a 1932 src/diffviewer/ydiff.c find_prev_hunk (const GArray * a, int pos) a 1935 src/diffviewer/ydiff.c while (pos > 0 && ((DIFFLN *) & g_array_index (a, DIFFLN, pos))->ch != EQU_CH) a 1937 src/diffviewer/ydiff.c while (pos > 0 && ((DIFFLN *) & g_array_index (a, DIFFLN, pos))->ch == EQU_CH) a 1939 src/diffviewer/ydiff.c while (pos > 0 && ((DIFFLN *) & g_array_index (a, DIFFLN, pos))->ch != EQU_CH) a 1941 src/diffviewer/ydiff.c if (pos > 0 && (size_t) pos < a->len) a 1944 src/diffviewer/ydiff.c while (pos > 0 && ((DIFFLN *) & g_array_index (a, DIFFLN, pos - 1))->ch == EQU_CH) a 1946 src/diffviewer/ydiff.c while (pos > 0 && ((DIFFLN *) & g_array_index (a, DIFFLN, pos - 1))->ch != EQU_CH) a 1956 src/diffviewer/ydiff.c find_next_hunk (const GArray * a, size_t pos) a 1958 src/diffviewer/ydiff.c while (pos < a->len && ((DIFFLN *) & g_array_index (a, DIFFLN, pos))->ch != EQU_CH) a 1960 src/diffviewer/ydiff.c while (pos < a->len && ((DIFFLN *) & g_array_index (a, DIFFLN, pos))->ch == EQU_CH) a 1980 src/diffviewer/ydiff.c const GArray *a0 = dview->a[DIFF_LEFT]; a 1981 src/diffviewer/ydiff.c const GArray *a1 = dview->a[DIFF_RIGHT]; a 2294 src/diffviewer/ydiff.c if (dview->a[DIFF_LEFT] != NULL) a 2296 src/diffviewer/ydiff.c g_array_foreach (dview->a[DIFF_LEFT], DIFFLN, cc_free_elt); a 2297 src/diffviewer/ydiff.c g_array_free (dview->a[DIFF_LEFT], TRUE); a 2299 src/diffviewer/ydiff.c if (dview->a[DIFF_RIGHT] != NULL) a 2301 src/diffviewer/ydiff.c g_array_foreach (dview->a[DIFF_RIGHT], DIFFLN, cc_free_elt); a 2302 src/diffviewer/ydiff.c g_array_free (dview->a[DIFF_RIGHT], TRUE); a 2305 src/diffviewer/ydiff.c dview->a[DIFF_LEFT] = g_array_new (FALSE, FALSE, sizeof (DIFFLN)); a 2306 src/diffviewer/ydiff.c dview->a[DIFF_RIGHT] = g_array_new (FALSE, FALSE, sizeof (DIFFLN)); a 2446 src/diffviewer/ydiff.c dview->a[DIFF_LEFT] = g_array_new (FALSE, FALSE, sizeof (DIFFLN)); a 2447 src/diffviewer/ydiff.c dview->a[DIFF_RIGHT] = g_array_new (FALSE, FALSE, sizeof (DIFFLN)); a 2507 src/diffviewer/ydiff.c if (dview->a[DIFF_LEFT] != NULL) a 2509 src/diffviewer/ydiff.c g_array_foreach (dview->a[DIFF_LEFT], DIFFLN, cc_free_elt); a 2510 src/diffviewer/ydiff.c g_array_free (dview->a[DIFF_LEFT], TRUE); a 2511 src/diffviewer/ydiff.c dview->a[DIFF_LEFT] = NULL; a 2513 src/diffviewer/ydiff.c if (dview->a[DIFF_RIGHT] != NULL) a 2515 src/diffviewer/ydiff.c g_array_foreach (dview->a[DIFF_RIGHT], DIFFLN, cc_free_elt); a 2516 src/diffviewer/ydiff.c g_array_free (dview->a[DIFF_RIGHT], TRUE); a 2517 src/diffviewer/ydiff.c dview->a[DIFF_RIGHT] = NULL; a 2572 src/diffviewer/ydiff.c for (i = dview->skip_rows, j = 0; i < dview->a[ord]->len && j < height; j++, i++) a 2577 src/diffviewer/ydiff.c p = (DIFFLN *) & g_array_index (dview->a[ord], DIFFLN, i); a 2771 src/diffviewer/ydiff.c get_line_numbers (dview->a[ord], dview->skip_rows, &linenum, &lineofs); a 2800 src/diffviewer/ydiff.c dview->display_numbers = calc_nwidth ((const GArray * const *) dview->a); a 2816 src/diffviewer/ydiff.c last = dview->a[DIFF_LEFT]->len - 1; a 2900 src/diffviewer/ydiff.c get_line_numbers (dview->a[ord], dview->skip_rows, &linenum, &lineofs); a 2948 src/diffviewer/ydiff.c for (; i < dview->a[ord]->len; i++) a 2952 src/diffviewer/ydiff.c p = &g_array_index (dview->a[ord], DIFFLN, i); a 3050 src/diffviewer/ydiff.c dview->display_numbers = calc_nwidth ((const GArray * const *) dview->a); a 3133 src/diffviewer/ydiff.c dview->display_numbers ^= calc_nwidth ((const GArray * const *) dview->a); a 3182 src/diffviewer/ydiff.c find_next_hunk (dview->a[DIFF_LEFT], dview->skip_rows); a 3186 src/diffviewer/ydiff.c find_prev_hunk (dview->a[DIFF_LEFT], dview->skip_rows); a 3215 src/diffviewer/ydiff.c dview->skip_rows = dview->search.last_accessed_num_line = dview->a[DIFF_LEFT]->len - 1; a 76 src/editor/edit-impl.h #define edit_query_dialog2(h,t,a,b) query_dialog (h, t, D_NORMAL, 2, a, b) a 77 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 1540 src/editor/edit.c int a; a 1545 src/editor/edit.c a = edit_buffer_get_byte (&edit->buffer, q); a 1555 src/editor/edit.c if (inc > 0 && a == '\n') a 1560 src/editor/edit.c i += (a == c) - (a == d); a 87 src/editor/syntax.c #define check_a { if (*a == NULL) { result = line; break; } } a 88 src/editor/syntax.c #define check_not_a { if (*a != NULL) { result = line ;break; } } a 803 src/editor/syntax.c char f[80], b[80], a[80], *p; a 863 src/editor/syntax.c g_strlcpy (a, attrs, sizeof (a)); a 864 src/editor/syntax.c p = strchr (a, '/'); a 868 src/editor/syntax.c p = a; a 871 src/editor/syntax.c attrs = a; a 952 src/editor/syntax.c char **a; a 980 src/editor/syntax.c a = args + 1; a 1010 src/editor/syntax.c if (strcmp (*a, "left") == 0) a 1012 src/editor/syntax.c a++; a 1013 src/editor/syntax.c g_strlcpy (whole_left, *a, sizeof (whole_left)); a 1015 src/editor/syntax.c else if (strcmp (*a, "right") == 0) a 1017 src/editor/syntax.c a++; a 1018 src/editor/syntax.c g_strlcpy (whole_right, *a, sizeof (whole_right)); a 1022 src/editor/syntax.c g_strlcpy (whole_left, *a, sizeof (whole_left)); a 1023 src/editor/syntax.c g_strlcpy (whole_right, *a, sizeof (whole_right)); a 1025 src/editor/syntax.c a++; a 1036 src/editor/syntax.c if (strcmp (*a, "default") != 0) a 1039 src/editor/syntax.c a++; a 1050 src/editor/syntax.c if (strcmp (*a, "exclusive") == 0) a 1052 src/editor/syntax.c a++; a 1056 src/editor/syntax.c if (strcmp (*a, "whole") == 0) a 1058 src/editor/syntax.c a++; a 1062 src/editor/syntax.c else if (strcmp (*a, "wholeleft") == 0) a 1064 src/editor/syntax.c a++; a 1067 src/editor/syntax.c else if (strcmp (*a, "wholeright") == 0) a 1069 src/editor/syntax.c a++; a 1073 src/editor/syntax.c if (strcmp (*a, "linestart") == 0) a 1075 src/editor/syntax.c a++; a 1079 src/editor/syntax.c c->left = g_strdup (*a++); a 1081 src/editor/syntax.c if (strcmp (*a, "linestart") == 0) a 1083 src/editor/syntax.c a++; a 1087 src/editor/syntax.c c->right = g_strdup (*a++); a 1095 src/editor/syntax.c subst_defines (edit->defines, a, &args[ARGS_LEN]); a 1096 src/editor/syntax.c fg = *a; a 1097 src/editor/syntax.c if (*a != NULL) a 1098 src/editor/syntax.c a++; a 1099 src/editor/syntax.c bg = *a; a 1100 src/editor/syntax.c if (*a != NULL) a 1101 src/editor/syntax.c a++; a 1102 src/editor/syntax.c attrs = *a; a 1103 src/editor/syntax.c if (*a != NULL) a 1104 src/editor/syntax.c a++; a 1132 src/editor/syntax.c if (strcmp (*a, "whole") == 0) a 1134 src/editor/syntax.c a++; a 1138 src/editor/syntax.c else if (strcmp (*a, "wholeleft") == 0) a 1140 src/editor/syntax.c a++; a 1143 src/editor/syntax.c else if (strcmp (*a, "wholeright") == 0) a 1145 src/editor/syntax.c a++; a 1149 src/editor/syntax.c if (strcmp (*a, "linestart") == 0) a 1151 src/editor/syntax.c a++; a 1155 src/editor/syntax.c if (strcmp (*a, "whole") == 0) a 1158 src/editor/syntax.c k->keyword = g_strdup (*a++); a 1159 src/editor/syntax.c subst_defines (edit->defines, a, &args[ARGS_LEN]); a 1160 src/editor/syntax.c fg = *a; a 1161 src/editor/syntax.c if (*a != NULL) a 1162 src/editor/syntax.c a++; a 1163 src/editor/syntax.c bg = *a; a 1164 src/editor/syntax.c if (*a != NULL) a 1165 src/editor/syntax.c a++; a 1166 src/editor/syntax.c attrs = *a; a 1167 src/editor/syntax.c if (*a != NULL) a 1168 src/editor/syntax.c a++; a 1188 src/editor/syntax.c char *key = *a++; a 1201 src/editor/syntax.c while (*a != NULL) a 1202 src/editor/syntax.c *argv++ = g_strdup (*a++); a 322 src/filemanager/dir.c unsorted (file_entry_t * a, file_entry_t * b) a 324 src/filemanager/dir.c (void) a; a 333 src/filemanager/dir.c sort_name (file_entry_t * a, file_entry_t * b) a 335 src/filemanager/dir.c int ad = MY_ISDIR (a); a 341 src/filemanager/dir.c if (a->sort_key == NULL) a 342 src/filemanager/dir.c a->sort_key = str_create_key_for_filename (a->fname->str, case_sensitive); a 346 src/filemanager/dir.c return key_collate (a->sort_key, b->sort_key); a 355 src/filemanager/dir.c sort_vers (file_entry_t * a, file_entry_t * b) a 357 src/filemanager/dir.c int ad = MY_ISDIR (a); a 361 src/filemanager/dir.c return filevercmp (a->fname->str, b->fname->str) * reverse; a 369 src/filemanager/dir.c sort_ext (file_entry_t * a, file_entry_t * b) a 371 src/filemanager/dir.c int ad = MY_ISDIR (a); a 378 src/filemanager/dir.c if (a->second_sort_key == NULL) a 379 src/filemanager/dir.c a->second_sort_key = str_create_key (extension (a->fname->str), case_sensitive); a 383 src/filemanager/dir.c r = str_key_collate (a->second_sort_key, b->second_sort_key, case_sensitive); a 387 src/filemanager/dir.c return sort_name (a, b); a 396 src/filemanager/dir.c sort_time (file_entry_t * a, file_entry_t * b) a 398 src/filemanager/dir.c int ad = MY_ISDIR (a); a 403 src/filemanager/dir.c int result = _GL_CMP (a->st.st_mtime, b->st.st_mtime); a 408 src/filemanager/dir.c return sort_name (a, b); a 417 src/filemanager/dir.c sort_ctime (file_entry_t * a, file_entry_t * b) a 419 src/filemanager/dir.c int ad = MY_ISDIR (a); a 424 src/filemanager/dir.c int result = _GL_CMP (a->st.st_ctime, b->st.st_ctime); a 429 src/filemanager/dir.c return sort_name (a, b); a 438 src/filemanager/dir.c sort_atime (file_entry_t * a, file_entry_t * b) a 440 src/filemanager/dir.c int ad = MY_ISDIR (a); a 445 src/filemanager/dir.c int result = _GL_CMP (a->st.st_atime, b->st.st_atime); a 450 src/filemanager/dir.c return sort_name (a, b); a 459 src/filemanager/dir.c sort_inode (file_entry_t * a, file_entry_t * b) a 461 src/filemanager/dir.c int ad = MY_ISDIR (a); a 465 src/filemanager/dir.c return (a->st.st_ino - b->st.st_ino) * reverse; a 473 src/filemanager/dir.c sort_size (file_entry_t * a, file_entry_t * b) a 475 src/filemanager/dir.c int ad = MY_ISDIR (a); a 480 src/filemanager/dir.c int result = _GL_CMP (a->st.st_size, b->st.st_size); a 485 src/filemanager/dir.c return sort_name (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 real_warn_same_file (enum OperationMode mode, const char *fmt, const char *a, const char *b) a 850 src/filemanager/file.c msg = g_strdup_printf (fmt, a, b); a 861 src/filemanager/file.c warn_same_file (const char *fmt, const char *a, const char *b) a 868 src/filemanager/file.c FileProgressStatus (*f) (enum OperationMode, const char *fmt, const char *a, const char *b); a 875 src/filemanager/file.c return parent_call (pntr.p, NULL, 3, strlen (fmt), fmt, strlen (a), a, strlen (b), b); a 877 src/filemanager/file.c return real_warn_same_file (Foreground, fmt, a, b); a 883 src/filemanager/file.c check_same_file (const char *a, const struct stat *ast, const char *b, const struct stat *bst, a 890 src/filemanager/file.c *status = warn_same_file (_("\"%s\"\nand\n\"%s\"\nare the same directory"), a, b); a 892 src/filemanager/file.c *status = warn_same_file (_("\"%s\"\nand\n\"%s\"\nare the same file"), a, b); a 224 src/filemanager/find.c max (int a, int b) a 226 src/filemanager/find.c return (a > b ? a : b); a 195 src/filemanager/layout.c max (int a, int b) a 197 src/filemanager/layout.c return a > b ? a : b; a 194 src/textconf.c #define PRINTF_GROUP(a) \ a 195 src/textconf.c (void) printf ("[%s]\n", a) a 196 src/textconf.c #define PRINTF_SECTION(a,b) \ a 197 src/textconf.c (void) printf (" %-17s %s\n", a, b) a 198 src/textconf.c #define PRINTF_SECTION2(a,b) \ a 199 src/textconf.c (void) printf (" %-17s %s/\n", a, b) a 200 src/textconf.c #define PRINTF(a, b, c) \ a 201 src/textconf.c (void) printf ("\t%-15s %s/%s\n", a, b, c) a 202 src/textconf.c #define PRINTF2(a, b, c) \ a 203 src/textconf.c (void) printf ("\t%-15s %s%s\n", a, b, c) a 162 src/vfs/cpio/cpio.c cpio_defer_find (const void *a, const void *b) a 164 src/vfs/cpio/cpio.c const defer_inode *a1 = (const defer_inode *) a; a 77 src/vfs/extfs/extfs.c #define EXTFS_SUPER(a) ((struct extfs_super_t *) (a)) a 167 src/vfs/extfs/extfs.c struct vfs_s_super *a = VFS_SUPER (data); a 172 src/vfs/extfs/extfs.c info = &g_array_index (extfs_plugins, extfs_plugin_info_t, EXTFS_SUPER (a)->fstype); a 174 src/vfs/extfs/extfs.c g_strconcat (a->name != NULL ? a->name : "", PATH_SEP_STR, info->prefix, a 183 src/vfs/extfs/extfs.c extfs_cmp_archive (const void *a, const void *b) a 185 src/vfs/extfs/extfs.c const struct vfs_s_super *ar = (const struct vfs_s_super *) a; a 734 src/vfs/extfs/extfs.c struct extfs_super_t *a; a 740 src/vfs/extfs/extfs.c a = *archive; a 753 src/vfs/extfs/extfs.c result = extfs_read_archive (pip, a, &error); a 756 src/vfs/extfs/extfs.c VFS_SUPER (a)->me->free (VFS_SUPER (a)); a 782 src/vfs/extfs/extfs.c struct extfs_super_t *a = NULL; a 796 src/vfs/extfs/extfs.c a = EXTFS_SUPER (parc->data); a 797 src/vfs/extfs/extfs.c vfs_stamp (vfs_extfs_ops, (vfsid) a); a 803 src/vfs/extfs/extfs.c result = extfs_open_and_read_archive (fstype, archive_name, &a); a 814 src/vfs/extfs/extfs.c *archive = a; a 1252 src/vfs/ftpfs/ftpfs.c unsigned char *a = (unsigned char *) &((struct sockaddr_in *) &data_addr)->sin_addr; a 1256 src/vfs/ftpfs/ftpfs.c "PORT %u,%u,%u,%u,%u,%u", a[0], a[1], a[2], a[3], a 85 src/vfs/sfs/sfs.c #define COPY_STRING(a) \ a 86 src/vfs/sfs/sfs.c if ((t - pad) + strlen (a) > sizeof (pad)) \ a 93 src/vfs/sfs/sfs.c strcpy (t, a); \ a 94 src/vfs/sfs/sfs.c t += strlen (a); \ a 123 src/vfs/sfs/sfs.c cachedfile_compare (const void *a, const void *b) a 125 src/vfs/sfs/sfs.c const cachedfile *cf = (const cachedfile *) a; a 42 src/vfs/sftpfs/file.c #define SFTP_FILE_HANDLER(a) ((sftpfs_file_handler_t *) a) a 70 src/viewer/coord_cache.c typedef gboolean (*cmp_func_t) (const coord_cache_entry_t * a, const coord_cache_entry_t * b); a 104 src/viewer/coord_cache.c mcview_coord_cache_entry_less_offset (const coord_cache_entry_t * a, const coord_cache_entry_t * b) a 106 src/viewer/coord_cache.c return (a->cc_offset < b->cc_offset); a 112 src/viewer/coord_cache.c mcview_coord_cache_entry_less_plain (const coord_cache_entry_t * a, const coord_cache_entry_t * b) a 114 src/viewer/coord_cache.c if (a->cc_line < b->cc_line) a 117 src/viewer/coord_cache.c if (a->cc_line == b->cc_line) a 118 src/viewer/coord_cache.c return (a->cc_column < b->cc_column); a 127 src/viewer/coord_cache.c mcview_coord_cache_entry_less_nroff (const coord_cache_entry_t * a, const coord_cache_entry_t * b) a 129 src/viewer/coord_cache.c if (a->cc_line < b->cc_line) a 132 src/viewer/coord_cache.c if (a->cc_line == b->cc_line) a 133 src/viewer/coord_cache.c return (a->cc_nroff_column < b->cc_nroff_column); a 357 src/viewer/internal.h mcview_offset_rounddown (off_t a, off_t b) a 360 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 90 tests/lib/strutil/str_verscmp.c { a, b, -1 }, a 92 tests/lib/strutil/str_verscmp.c { a, c, -1 }, a 93 tests/lib/strutil/str_verscmp.c { b, a, 1 }, a 95 tests/lib/strutil/str_verscmp.c { c, a, 1 }