b                 146 daemons/based/based_io.c static int cib_archive_sort(const struct dirent ** a, const struct dirent **b)
b                 156 daemons/based/based_io.c     char *b_path = crm_strdup_printf("%s/%s", cib_root, b[0]->d_name);
b                 176 daemons/based/based_io.c 	b[0]->d_name, (unsigned long)b_age, rc);
b                2253 daemons/fenced/fenced_commands.c sort_device_priority(gconstpointer a, gconstpointer b)
b                2256 daemons/fenced/fenced_commands.c     const stonith_device_t *dev_b = b;
b                 141 daemons/fenced/fenced_history.c     const remote_fencing_op_t **b = (const remote_fencing_op_t **) b_voidp;
b                 143 daemons/fenced/fenced_history.c     gboolean b_pending = ((*b)->state != st_failed) && ((*b)->state != st_done);
b                 151 daemons/fenced/fenced_history.c     } else if ((*b)->completed == (*a)->completed) {
b                 153 daemons/fenced/fenced_history.c     } else if ((*b)->completed > (*a)->completed) {
b                  89 daemons/fenced/fenced_remote.c sort_strings(gconstpointer a, gconstpointer b)
b                  91 daemons/fenced/fenced_remote.c     return strcmp(a, b);
b                1672 daemons/fenced/fenced_remote.c sort_peers(gconstpointer a, gconstpointer b)
b                1675 daemons/fenced/fenced_remote.c     const st_query_result_t *peer_b = b;
b                  27 devel/coccinelle/test/ref-passed-variables-inited.input.c 	int a = 1, b, c = 3;
b                  30 devel/coccinelle/test/ref-passed-variables-inited.input.c 	foo(&b);
b                  31 devel/coccinelle/test/ref-passed-variables-inited.input.c 	baz(b);
b                  56 include/crm/common/util.h gboolean crm_strcase_equal(gconstpointer a, gconstpointer b);
b                 262 include/crm/common/util.h gboolean crm_str_eq(const char *a, const char *b, gboolean use_case);
b                 265 include/crm/common/util.h gboolean safe_str_neq(const char *a, const char *b);
b                 268 include/crm/common/util.h #define safe_str_eq(a, b) crm_str_eq(a, b, FALSE)
b                 398 include/crm/pengine/internal.h extern gint sort_rsc_priority(gconstpointer a, gconstpointer b);
b                 399 include/crm/pengine/internal.h extern gint sort_rsc_index(gconstpointer a, gconstpointer b);
b                 472 include/crm/pengine/internal.h extern gint sort_op_by_callid(gconstpointer a, gconstpointer b);
b                 500 include/crm/pengine/internal.h gint sort_node_uname(gconstpointer a, gconstpointer b);
b                  39 lib/cib/cib_client.c gint ciblib_GCompareFunc(gconstpointer a, gconstpointer b);
b                 547 lib/cib/cib_client.c ciblib_GCompareFunc(gconstpointer a, gconstpointer b)
b                 551 lib/cib/cib_client.c     const cib_notify_client_t *b_client = b;
b                 368 lib/cluster/cpg.c                              *const b = *((const struct cpg_address **) second);
b                 369 lib/cluster/cpg.c     if (a->nodeid < b->nodeid) {
b                 371 lib/cluster/cpg.c     } else if (a->nodeid > b->nodeid) {
b                1387 lib/common/iso8601.c crm_time_compare(crm_time_t *a, crm_time_t *b)
b                1391 lib/common/iso8601.c     crm_time_t *t2 = crm_get_utc_time(b);
b                 319 lib/common/md5.c #define FF(b, c, d) (d ^ (b & (c ^ d)))
b                 320 lib/common/md5.c #define FG(b, c, d) FF (d, b, c)
b                 321 lib/common/md5.c #define FH(b, c, d) (b ^ c ^ d)
b                 322 lib/common/md5.c #define FI(b, c, d) (c ^ (b | ~d))
b                 363 lib/common/md5.c #define OP(a, b, c, d, s, T)                                            \
b                 366 lib/common/md5.c           a += FF (b, c, d) + (*cwp++ = SWAP (*words)) + T;             \
b                 369 lib/common/md5.c           a += b;                                                       \
b                 409 lib/common/md5.c #define OP(f, a, b, c, d, k, s, T)                                      \
b                 412 lib/common/md5.c           a += f (b, c, d) + correct_words[k] + T;                      \
b                 414 lib/common/md5.c           a += b;                                                       \
b                 118 lib/common/nvpair.c pcmk__compare_nvpair(gconstpointer a, gconstpointer b)
b                 122 lib/common/nvpair.c     const pcmk_nvpair_t *pair_b = b;
b                 127 lib/common/nvpair.c     CRM_ASSERT(b != NULL);
b                1119 lib/common/patchset.c sort_change_obj_by_position(gconstpointer a, gconstpointer b)
b                1122 lib/common/patchset.c     const xml_change_obj_t *change_obj_b = b;
b                 152 lib/common/schemas.c schema_sort(const struct dirent **a, const struct dirent **b)
b                 158 lib/common/schemas.c         || !version_from_filename(b[0]->d_name, &b_version)) {
b                 563 lib/common/strings.c crm_strcase_equal(gconstpointer a, gconstpointer b)
b                 565 lib/common/strings.c     return pcmk__str_eq((const char *)a, (const char *)b, pcmk__str_casei);
b                1076 lib/common/strings.c gboolean safe_str_neq(const char *a, const char *b);
b                1078 lib/common/strings.c gboolean crm_str_eq(const char *a, const char *b, gboolean use_case);
b                1082 lib/common/strings.c safe_str_neq(const char *a, const char *b)
b                1084 lib/common/strings.c     if (a == b) {
b                1087 lib/common/strings.c     } else if (a == NULL || b == NULL) {
b                1090 lib/common/strings.c     } else if (strcasecmp(a, b) == 0) {
b                1098 lib/common/strings.c crm_str_eq(const char *a, const char *b, gboolean use_case)
b                1101 lib/common/strings.c         return g_strcmp0(a, b) == 0;
b                1104 lib/common/strings.c     } else if (a == b) {
b                1107 lib/common/strings.c     } else if (a == NULL || b == NULL) {
b                1111 lib/common/strings.c     } else if (strcasecmp(a, b) == 0) {
b                1179 lib/fencing/st_client.c stonithlib_GCompareFunc(gconstpointer a, gconstpointer b)
b                1183 lib/fencing/st_client.c     const stonith_notify_client_t *b_client = b;
b                 319 lib/gnu/md5.c  #define FF(b, c, d) (d ^ (b & (c ^ d)))
b                 320 lib/gnu/md5.c  #define FG(b, c, d) FF (d, b, c)
b                 321 lib/gnu/md5.c  #define FH(b, c, d) (b ^ c ^ d)
b                 322 lib/gnu/md5.c  #define FI(b, c, d) (c ^ (b | ~d))
b                 363 lib/gnu/md5.c  #define OP(a, b, c, d, s, T)                                            \
b                 366 lib/gnu/md5.c            a += FF (b, c, d) + (*cwp++ = SWAP (*words)) + T;             \
b                 369 lib/gnu/md5.c            a += b;                                                       \
b                 409 lib/gnu/md5.c  #define OP(f, a, b, c, d, k, s, T)                                      \
b                 412 lib/gnu/md5.c            a += f (b, c, d) + correct_words[k] + T;                      \
b                 414 lib/gnu/md5.c            a += b;                                                       \
b                1156 lib/pacemaker/pcmk_sched_allocate.c sort_rsc_process_order(gconstpointer a, gconstpointer b, gpointer data)
b                1166 lib/pacemaker/pcmk_sched_allocate.c     const pe_resource_t *resource2 = b;
b                  31 lib/pacemaker/pcmk_sched_bundle.c gint sort_clone_instance(gconstpointer a, gconstpointer b, gpointer data_set);
b                  18 lib/pacemaker/pcmk_sched_clone.c gint sort_clone_instance(gconstpointer a, gconstpointer b, gpointer data_set);
b                  22 lib/pacemaker/pcmk_sched_clone.c sort_rsc_id(gconstpointer a, gconstpointer b)
b                  25 lib/pacemaker/pcmk_sched_clone.c     const pe_resource_t *resource2 = (const pe_resource_t *)b;
b                  78 lib/pacemaker/pcmk_sched_clone.c sort_clone_instance(gconstpointer a, gconstpointer b, gpointer data_set)
b                  92 lib/pacemaker/pcmk_sched_clone.c     const pe_resource_t *resource2 = (const pe_resource_t *)b;
b                1207 lib/pacemaker/pcmk_sched_constraints.c sort_cons_priority_lh(gconstpointer a, gconstpointer b)
b                1210 lib/pacemaker/pcmk_sched_constraints.c     const rsc_colocation_t *rsc_constraint2 = (const rsc_colocation_t *)b;
b                1215 lib/pacemaker/pcmk_sched_constraints.c     if (b == NULL) {
b                1255 lib/pacemaker/pcmk_sched_constraints.c sort_cons_priority_rh(gconstpointer a, gconstpointer b)
b                1258 lib/pacemaker/pcmk_sched_constraints.c     const rsc_colocation_t *rsc_constraint2 = (const rsc_colocation_t *)b;
b                1263 lib/pacemaker/pcmk_sched_constraints.c     if (b == NULL) {
b                1450 lib/pacemaker/pcmk_sched_graph.c sort_action_id(gconstpointer a, gconstpointer b)
b                1453 lib/pacemaker/pcmk_sched_graph.c     const pe_action_wrapper_t *action_wrapper1 = (const pe_action_wrapper_t *)b;
b                1458 lib/pacemaker/pcmk_sched_graph.c     if (b == NULL) {
b                  20 lib/pacemaker/pcmk_sched_notif.c sort_notify_entries(gconstpointer a, gconstpointer b)
b                  24 lib/pacemaker/pcmk_sched_notif.c     const notify_entry_t *entry_b = b;
b                  18 lib/pacemaker/pcmk_sched_promotable.c extern gint sort_clone_instance(gconstpointer a, gconstpointer b, gpointer data_set);
b                 240 lib/pacemaker/pcmk_sched_promotable.c sort_promotable_instance(gconstpointer a, gconstpointer b, gpointer data_set)
b                 247 lib/pacemaker/pcmk_sched_promotable.c     const pe_resource_t *resource2 = (const pe_resource_t *)b;
b                 255 lib/pacemaker/pcmk_sched_promotable.c     rc = sort_rsc_index(a, b);
b                 270 lib/pacemaker/pcmk_sched_promotable.c     return sort_clone_instance(a, b, data_set);
b                 153 lib/pacemaker/pcmk_sched_utils.c sort_node_weight(gconstpointer a, gconstpointer b, gpointer data)
b                 156 lib/pacemaker/pcmk_sched_utils.c     const pe_node_t *node2 = (const pe_node_t *)b;
b                 167 lib/pacemaker/pcmk_sched_utils.c     if (b == NULL) {
b                 412 lib/pengine/rules.c sort_pairs(gconstpointer a, gconstpointer b)
b                 415 lib/pengine/rules.c     const sorted_set_t *pair_b = b;
b                 417 lib/pengine/rules.c     if (a == NULL && b == NULL) {
b                 421 lib/pengine/rules.c     } else if (b == NULL) {
b                 215 lib/pengine/utils.c sort_node_uname(gconstpointer a, gconstpointer b)
b                 218 lib/pengine/utils.c                                    ((const pe_node_t *) b)->details->uname);
b                 386 lib/pengine/utils.c sort_rsc_index(gconstpointer a, gconstpointer b)
b                 389 lib/pengine/utils.c     const pe_resource_t *resource2 = (const pe_resource_t *)b;
b                 391 lib/pengine/utils.c     if (a == NULL && b == NULL) {
b                 397 lib/pengine/utils.c     if (b == NULL) {
b                 413 lib/pengine/utils.c sort_rsc_priority(gconstpointer a, gconstpointer b)
b                 416 lib/pengine/utils.c     const pe_resource_t *resource2 = (const pe_resource_t *)b;
b                 418 lib/pengine/utils.c     if (a == NULL && b == NULL) {
b                 424 lib/pengine/utils.c     if (b == NULL) {
b                1713 lib/pengine/utils.c sort_op_by_callid(gconstpointer a, gconstpointer b)
b                1722 lib/pengine/utils.c     const xmlNode *xml_b = b;
b                 381 lib/services/systemd.c sort_str(gconstpointer a, gconstpointer b)
b                 383 lib/services/systemd.c     if (!a && !b) {
b                 387 lib/services/systemd.c     } else if (!b) {
b                 390 lib/services/systemd.c     return strcasecmp(a, b);
b                 158 libltdl/libltdl/lt_system.h #  define LT__CONC(a, b)	a##b
b                 159 libltdl/libltdl/lt_system.h #  define LT_CONC(a, b)		LT__CONC(a, b)
b                 162 libltdl/libltdl/lt_system.h #  define LT__CONC3(a, b, c)	a##b##c
b                 163 libltdl/libltdl/lt_system.h #  define LT_CONC3(a, b, c)	LT__CONC3(a, b, c)
b                  42 tools/crm_mon_runtime.c compare_attribute(gconstpointer a, gconstpointer b)
b                  46 tools/crm_mon_runtime.c     rc = strcmp((const char *)a, (const char *)b);
b                 134 tools/crm_node.c sort_node(gconstpointer a, gconstpointer b)
b                 137 tools/crm_node.c     const pcmk_controld_api_node_t *node_b = b;
b                 280 tools/crm_resource.c compare_id(gconstpointer a, gconstpointer b)
b                 282 tools/crm_resource.c     return strcmp((const char *)a, (const char *)b);