a 53 daemons/attrd/attrd_commands.c void write_attribute(attribute_t *a, bool ignore_delay); a 54 daemons/attrd/attrd_commands.c void write_or_elect_attribute(attribute_t *a); a 73 daemons/attrd/attrd_commands.c attribute_t *a = data; a 74 daemons/attrd/attrd_commands.c crm_trace("Dampen interval expired for %s", a->id); a 75 daemons/attrd/attrd_commands.c write_or_elect_attribute(a); a 93 daemons/attrd/attrd_commands.c attribute_t *a = data; a 94 daemons/attrd/attrd_commands.c if(a) { a 95 daemons/attrd/attrd_commands.c free(a->id); a 96 daemons/attrd/attrd_commands.c free(a->set); a 97 daemons/attrd/attrd_commands.c free(a->uuid); a 98 daemons/attrd/attrd_commands.c free(a->user); a 100 daemons/attrd/attrd_commands.c mainloop_timer_del(a->timer); a 101 daemons/attrd/attrd_commands.c g_hash_table_destroy(a->values); a 103 daemons/attrd/attrd_commands.c free(a); a 141 daemons/attrd/attrd_commands.c add_attribute_value_xml(xmlNode *parent, attribute_t *a, attribute_value_t *v, a 146 daemons/attrd/attrd_commands.c crm_xml_add(xml, PCMK__XA_ATTR_NAME, a->id); a 147 daemons/attrd/attrd_commands.c crm_xml_add(xml, PCMK__XA_ATTR_SET, a->set); a 148 daemons/attrd/attrd_commands.c crm_xml_add(xml, PCMK__XA_ATTR_UUID, a->uuid); a 149 daemons/attrd/attrd_commands.c crm_xml_add(xml, PCMK__XA_ATTR_USER, a->user); a 158 daemons/attrd/attrd_commands.c crm_xml_add_int(xml, PCMK__XA_ATTR_DAMPENING, a->timeout_ms / 1000); a 159 daemons/attrd/attrd_commands.c crm_xml_add_int(xml, PCMK__XA_ATTR_IS_PRIVATE, a->is_private); a 170 daemons/attrd/attrd_commands.c attribute_t *a; a 174 daemons/attrd/attrd_commands.c while (g_hash_table_iter_next(&aIter, NULL, (gpointer *) & a)) { a 175 daemons/attrd/attrd_commands.c g_hash_table_iter_init(&vIter, a->values); a 178 daemons/attrd/attrd_commands.c crm_trace("Clear seen flag %s[%s] = %s.", a->id, v->nodename, v->current); a 188 daemons/attrd/attrd_commands.c attribute_t *a = calloc(1, sizeof(attribute_t)); a 190 daemons/attrd/attrd_commands.c a->id = crm_element_value_copy(xml, PCMK__XA_ATTR_NAME); a 191 daemons/attrd/attrd_commands.c a->set = crm_element_value_copy(xml, PCMK__XA_ATTR_SET); a 192 daemons/attrd/attrd_commands.c a->uuid = crm_element_value_copy(xml, PCMK__XA_ATTR_UUID); a 193 daemons/attrd/attrd_commands.c a->values = pcmk__strikey_table(NULL, free_attribute_value); a 195 daemons/attrd/attrd_commands.c crm_element_value_int(xml, PCMK__XA_ATTR_IS_PRIVATE, &a->is_private); a 197 daemons/attrd/attrd_commands.c a->user = crm_element_value_copy(xml, PCMK__XA_ATTR_USER); a 198 daemons/attrd/attrd_commands.c crm_trace("Performing all %s operations as user '%s'", a->id, a->user); a 202 daemons/attrd/attrd_commands.c crm_trace("Created attribute %s with delay %dms (%s)", a->id, dampen, value); a 204 daemons/attrd/attrd_commands.c crm_trace("Created attribute %s with no delay", a->id); a 208 daemons/attrd/attrd_commands.c a->timeout_ms = dampen; a 209 daemons/attrd/attrd_commands.c a->timer = mainloop_timer_add(a->id, a->timeout_ms, FALSE, attribute_timer_cb, a); a 211 daemons/attrd/attrd_commands.c crm_warn("Ignoring invalid delay %s for attribute %s", value, a->id); a 214 daemons/attrd/attrd_commands.c g_hash_table_replace(attributes, a->id, a); a 215 daemons/attrd/attrd_commands.c return a; a 276 daemons/attrd/attrd_commands.c attribute_t *a = NULL; a 322 daemons/attrd/attrd_commands.c a = g_hash_table_lookup(attributes, attr); a 330 daemons/attrd/attrd_commands.c if (a) { a 331 daemons/attrd/attrd_commands.c v = g_hash_table_lookup(a->values, host); a 439 daemons/attrd/attrd_commands.c attribute_t *a; a 448 daemons/attrd/attrd_commands.c a = g_hash_table_lookup(attributes, attr); a 449 daemons/attrd/attrd_commands.c if (a) { a 463 daemons/attrd/attrd_commands.c v = g_hash_table_lookup(a->values, host); a 477 daemons/attrd/attrd_commands.c g_hash_table_iter_init(&iter, a->values); a 701 daemons/attrd/attrd_commands.c attribute_t *a = NULL; a 708 daemons/attrd/attrd_commands.c while (g_hash_table_iter_next(&aIter, NULL, (gpointer *) & a)) { a 709 daemons/attrd/attrd_commands.c g_hash_table_iter_init(&vIter, a->values); a 711 daemons/attrd/attrd_commands.c crm_debug("Syncing %s[%s] = %s to %s", a->id, v->nodename, v->current, peer?peer->uname:"everyone"); a 712 daemons/attrd/attrd_commands.c add_attribute_value_xml(sync, a, v, false); a 732 daemons/attrd/attrd_commands.c attribute_t *a = NULL; a 739 daemons/attrd/attrd_commands.c while (g_hash_table_iter_next(&aIter, NULL, (gpointer *) & a)) { a 740 daemons/attrd/attrd_commands.c if(g_hash_table_remove(a->values, host)) { a 741 daemons/attrd/attrd_commands.c crm_debug("Removed %s[%s] for peer %s", a->id, host, source); a 788 daemons/attrd/attrd_commands.c attribute_t *a = NULL; a 793 daemons/attrd/attrd_commands.c while (g_hash_table_iter_next(&aIter, NULL, (gpointer *) & a)) { a 794 daemons/attrd/attrd_commands.c g_hash_table_iter_init(&vIter, a->values); a 802 daemons/attrd/attrd_commands.c add_attribute_value_xml(sync, a, v, a->timeout_ms && a->timer); a 827 daemons/attrd/attrd_commands.c broadcast_local_value(attribute_t *a) a 829 daemons/attrd/attrd_commands.c attribute_value_t *v = g_hash_table_lookup(a->values, attrd_cluster->uname); a 833 daemons/attrd/attrd_commands.c add_attribute_value_xml(sync, a, v, false); a 844 daemons/attrd/attrd_commands.c attribute_t *a; a 863 daemons/attrd/attrd_commands.c a = g_hash_table_lookup(attributes, attr); a 864 daemons/attrd/attrd_commands.c if (a == NULL) { a 866 daemons/attrd/attrd_commands.c a = create_attribute(xml); a 891 daemons/attrd/attrd_commands.c if (a->timeout_ms != dampen) { a 892 daemons/attrd/attrd_commands.c mainloop_timer_del(a->timer); a 893 daemons/attrd/attrd_commands.c a->timeout_ms = dampen; a 895 daemons/attrd/attrd_commands.c a->timer = mainloop_timer_add(attr, a->timeout_ms, FALSE, a 896 daemons/attrd/attrd_commands.c attribute_timer_cb, a); a 900 daemons/attrd/attrd_commands.c a->timer = NULL; a 907 daemons/attrd/attrd_commands.c write_or_elect_attribute(a); a 921 daemons/attrd/attrd_commands.c g_hash_table_iter_init(&vIter, a->values); a 930 daemons/attrd/attrd_commands.c v = attrd_lookup_or_create_value(a->values, host, xml); a 937 daemons/attrd/attrd_commands.c v = broadcast_local_value(a); a 943 daemons/attrd/attrd_commands.c a->changed = TRUE; a 957 daemons/attrd/attrd_commands.c if (a->timeout_ms && a->timer) { a 958 daemons/attrd/attrd_commands.c crm_trace("Delayed write out (%dms) for %s", a->timeout_ms, attr); a 959 daemons/attrd/attrd_commands.c mainloop_timer_start(a->timer); a 961 daemons/attrd/attrd_commands.c write_or_elect_attribute(a); a 965 daemons/attrd/attrd_commands.c if (is_force_write && a->timeout_ms && a->timer) { a 969 daemons/attrd/attrd_commands.c a->force_write = TRUE; a 994 daemons/attrd/attrd_commands.c write_or_elect_attribute(attribute_t *a) a 997 daemons/attrd/attrd_commands.c write_attribute(a, FALSE); a 1078 daemons/attrd/attrd_commands.c attribute_t *a = g_hash_table_lookup(attributes, name); a 1080 daemons/attrd/attrd_commands.c if(a == NULL) { a 1085 daemons/attrd/attrd_commands.c a->update = 0; a 1094 daemons/attrd/attrd_commands.c if (a->timer && !a->timeout_ms) { a 1096 daemons/attrd/attrd_commands.c mainloop_timer_del(a->timer); a 1097 daemons/attrd/attrd_commands.c a->timer = NULL; a 1111 daemons/attrd/attrd_commands.c call_id, a->id, pcmk_strerror(rc), rc); a 1113 daemons/attrd/attrd_commands.c g_hash_table_iter_init(&iter, a->values); a 1115 daemons/attrd/attrd_commands.c do_crm_log(level, "* %s[%s]=%s", a->id, peer, v->requested); a 1119 daemons/attrd/attrd_commands.c a->changed = TRUE; /* Attempt write out again */ a 1123 daemons/attrd/attrd_commands.c if (a->changed && attrd_election_won()) { a 1128 daemons/attrd/attrd_commands.c write_attribute(a, FALSE); a 1139 daemons/attrd/attrd_commands.c } else if (a->timer) { a 1141 daemons/attrd/attrd_commands.c if (!mainloop_timer_running(a->timer)) { a 1143 daemons/attrd/attrd_commands.c a->timeout_ms, name); a 1144 daemons/attrd/attrd_commands.c mainloop_timer_start(a->timer); a 1151 daemons/attrd/attrd_commands.c a->timer = mainloop_timer_add(a->id, 2000, FALSE, a 1152 daemons/attrd/attrd_commands.c attribute_timer_cb, a); a 1153 daemons/attrd/attrd_commands.c mainloop_timer_start(a->timer); a 1162 daemons/attrd/attrd_commands.c attribute_t *a = NULL; a 1166 daemons/attrd/attrd_commands.c while (g_hash_table_iter_next(&iter, NULL, (gpointer *) & a)) { a 1167 daemons/attrd/attrd_commands.c if (!all && a->unknown_peer_uuids) { a 1169 daemons/attrd/attrd_commands.c a->changed = TRUE; a 1170 daemons/attrd/attrd_commands.c } else if (a->force_write) { a 1172 daemons/attrd/attrd_commands.c a->changed = TRUE; a 1175 daemons/attrd/attrd_commands.c if(all || a->changed) { a 1177 daemons/attrd/attrd_commands.c write_attribute(a, (a->force_write ? TRUE : ignore_delay)); a 1179 daemons/attrd/attrd_commands.c crm_trace("Skipping unchanged attribute %s", a->id); a 1185 daemons/attrd/attrd_commands.c build_update_element(xmlNode *parent, attribute_t *a, const char *nodeid, const char *value) a 1197 daemons/attrd/attrd_commands.c if (a->set) { a 1198 daemons/attrd/attrd_commands.c crm_xml_set_id(xml_obj, "%s", a->set); a 1205 daemons/attrd/attrd_commands.c if (a->uuid) { a 1206 daemons/attrd/attrd_commands.c crm_xml_set_id(xml_obj, "%s", a->uuid); a 1208 daemons/attrd/attrd_commands.c crm_xml_set_id(xml_obj, "%s-%s", set, a->id); a 1210 daemons/attrd/attrd_commands.c crm_xml_add(xml_obj, XML_NVPAIR_ATTR_NAME, a->id); a 1236 daemons/attrd/attrd_commands.c send_alert_attributes_value(attribute_t *a, GHashTable *t) a 1246 daemons/attrd/attrd_commands.c a->id, at->current); a 1248 daemons/attrd/attrd_commands.c a->id, at->nodename, at->current, at->nodeid, rc); a 1253 daemons/attrd/attrd_commands.c write_attribute(attribute_t *a, bool ignore_delay) a 1262 daemons/attrd/attrd_commands.c if (a == NULL) { a 1267 daemons/attrd/attrd_commands.c if (!a->is_private) { a 1271 daemons/attrd/attrd_commands.c if (a->update && (a->update < last_cib_op_done)) { a 1272 daemons/attrd/attrd_commands.c crm_info("Write out of '%s' continuing: update %d considered lost", a->id, a->update); a 1273 daemons/attrd/attrd_commands.c a->update = 0; // Don't log this message again a 1275 daemons/attrd/attrd_commands.c } else if (a->update) { a 1276 daemons/attrd/attrd_commands.c crm_info("Write out of '%s' delayed: update %d in progress", a->id, a->update); a 1279 daemons/attrd/attrd_commands.c } else if (mainloop_timer_running(a->timer)) { a 1284 daemons/attrd/attrd_commands.c mainloop_timer_stop(a->timer); a 1285 daemons/attrd/attrd_commands.c crm_debug("Write out of '%s': timer is running but ignore delay", a->id); a 1287 daemons/attrd/attrd_commands.c crm_info("Write out of '%s' delayed: timer is running", a->id); a 1297 daemons/attrd/attrd_commands.c a->changed = FALSE; a 1300 daemons/attrd/attrd_commands.c a->unknown_peer_uuids = FALSE; a 1303 daemons/attrd/attrd_commands.c a->force_write = FALSE; a 1309 daemons/attrd/attrd_commands.c g_hash_table_iter_init(&iter, a->values); a 1316 daemons/attrd/attrd_commands.c a->id, v->nodename, v->current); a 1327 daemons/attrd/attrd_commands.c if (a->is_private) { a 1334 daemons/attrd/attrd_commands.c a->unknown_peer_uuids = TRUE; a 1337 daemons/attrd/attrd_commands.c a->id, v->nodename, v->current); a 1343 daemons/attrd/attrd_commands.c a->id, v->nodename, v->current, a 1345 daemons/attrd/attrd_commands.c build_update_element(xml_top, a, peer->uuid, v->current); a 1367 daemons/attrd/attrd_commands.c a->id, (a->uuid? a->uuid : "n/a"), (a->set? a->set : "n/a")); a 1372 daemons/attrd/attrd_commands.c a->update = cib_internal_op(the_cib, CIB_OP_MODIFY, NULL, XML_CIB_TAG_STATUS, xml_top, NULL, a 1373 daemons/attrd/attrd_commands.c flags, a->user); a 1376 daemons/attrd/attrd_commands.c a->update, cib_updates, pcmk__plural_s(cib_updates), a 1377 daemons/attrd/attrd_commands.c a->id, (a->uuid? a->uuid : "n/a"), (a->set? a->set : "n/a")); a 1379 daemons/attrd/attrd_commands.c the_cib->cmds->register_callback_full(the_cib, a->update, a 1381 daemons/attrd/attrd_commands.c strdup(a->id), a 1385 daemons/attrd/attrd_commands.c send_alert_attributes_value(a, alert_attribute_value); a 101 daemons/based/based_io.c static int cib_archive_filter(const struct dirent * a) a 106 daemons/based/based_io.c char *a_path = crm_strdup_printf("%s/%s", cib_root, a->d_name); a 110 daemons/based/based_io.c crm_trace("%s - stat failed: %s (%d)", a->d_name, pcmk_strerror(rc), rc); a 116 daemons/based/based_io.c dtype = a->d_type; a 129 daemons/based/based_io.c crm_trace("%s - wrong type (%d)", a->d_name, dtype); a 131 daemons/based/based_io.c } else if(strstr(a->d_name, "cib-") != a->d_name) { a 132 daemons/based/based_io.c crm_trace("%s - wrong prefix", a->d_name); a 134 daemons/based/based_io.c } else if (pcmk__ends_with_ext(a->d_name, ".sig")) { a 135 daemons/based/based_io.c crm_trace("%s - wrong suffix", a->d_name); a 138 daemons/based/based_io.c crm_debug("%s - candidate", a->d_name); a 146 daemons/based/based_io.c static int cib_archive_sort(const struct dirent ** a, const struct dirent **b) a 155 daemons/based/based_io.c char *a_path = crm_strdup_printf("%s/%s", cib_root, a[0]->d_name); a 175 daemons/based/based_io.c a[0]->d_name, (unsigned long)a_age, a 2635 daemons/fenced/fenced_commands.c sort_device_priority(gconstpointer a, gconstpointer b) a 2637 daemons/fenced/fenced_commands.c const stonith_device_t *dev_a = a; a 140 daemons/fenced/fenced_history.c const remote_fencing_op_t **a = (const remote_fencing_op_t **) a_voidp; a 142 daemons/fenced/fenced_history.c gboolean a_pending = ((*a)->state != st_failed) && ((*a)->state != st_done); a 151 daemons/fenced/fenced_history.c } else if ((*b)->completed == (*a)->completed) { a 152 daemons/fenced/fenced_history.c if ((*b)->completed_nsec > (*a)->completed_nsec) { a 154 daemons/fenced/fenced_history.c } else if ((*b)->completed_nsec == (*a)->completed_nsec) { a 157 daemons/fenced/fenced_history.c } else if ((*b)->completed > (*a)->completed) { a 90 daemons/fenced/fenced_remote.c sort_strings(gconstpointer a, gconstpointer b) a 92 daemons/fenced/fenced_remote.c return strcmp(a, b); a 1868 daemons/fenced/fenced_remote.c sort_peers(gconstpointer a, gconstpointer b) a 1870 daemons/fenced/fenced_remote.c const peer_device_info_t *peer_a = a; a 27 devel/coccinelle/test/ref-passed-variables-inited.input.c int a = 1, b, c = 3; a 28 devel/coccinelle/test/ref-passed-variables-inited.input.c foo(&a); a 29 devel/coccinelle/test/ref-passed-variables-inited.input.c baz(a); a 42 include/crm/common/internal.h #define PCMK__NELEM(a) ((int) (sizeof(a)/sizeof(a[0])) ) a 54 include/crm/common/util_compat.h gboolean crm_str_eq(const char *a, const char *b, gboolean use_case); a 57 include/crm/common/util_compat.h gboolean safe_str_neq(const char *a, const char *b); a 60 include/crm/common/util_compat.h #define safe_str_eq(a, b) crm_str_eq(a, b, FALSE) a 91 include/crm/common/util_compat.h gboolean crm_strcase_equal(gconstpointer a, gconstpointer b); a 360 include/crm/pengine/internal.h extern gint sort_rsc_priority(gconstpointer a, gconstpointer b); a 361 include/crm/pengine/internal.h extern gint sort_rsc_index(gconstpointer a, gconstpointer b); a 434 include/crm/pengine/internal.h extern gint sort_op_by_callid(gconstpointer a, gconstpointer b); a 464 include/crm/pengine/internal.h gint sort_node_uname(gconstpointer a, gconstpointer b); a 39 lib/cib/cib_client.c gint ciblib_GCompareFunc(gconstpointer a, gconstpointer b); a 570 lib/cib/cib_client.c ciblib_GCompareFunc(gconstpointer a, gconstpointer b) a 573 lib/cib/cib_client.c const cib_notify_client_t *a_client = a; a 560 lib/cluster/cpg.c const struct cpg_address *const a = *((const struct cpg_address **) first), a 562 lib/cluster/cpg.c if (a->nodeid < b->nodeid) { a 564 lib/cluster/cpg.c } else if (a->nodeid > b->nodeid) { a 106 lib/common/crmcommon_private.h void pcmk__mark_xml_attr_dirty(xmlAttr *a); a 1387 lib/common/iso8601.c crm_time_compare(crm_time_t *a, crm_time_t *b) a 1390 lib/common/iso8601.c crm_time_t *t1 = crm_get_utc_time(a); a 363 lib/common/md5.c #define OP(a, b, c, d, s, T) \ a 366 lib/common/md5.c a += FF (b, c, d) + (*cwp++ = SWAP (*words)) + T; \ a 368 lib/common/md5.c CYCLIC (a, s); \ a 369 lib/common/md5.c a += b; \ a 409 lib/common/md5.c #define OP(f, a, b, c, d, k, s, T) \ a 412 lib/common/md5.c a += f (b, c, d) + correct_words[k] + T; \ a 413 lib/common/md5.c CYCLIC (a, s); \ a 414 lib/common/md5.c a += b; \ a 117 lib/common/nvpair.c pcmk__compare_nvpair(gconstpointer a, gconstpointer b) a 120 lib/common/nvpair.c const pcmk_nvpair_t *pair_a = a; a 123 lib/common/nvpair.c CRM_ASSERT(a != NULL); a 367 lib/common/operations.c should_filter_for_digest(xmlAttrPtr a, void *user_data) a 369 lib/common/operations.c if (strncmp((const char *) a->name, CRM_META "_", a 373 lib/common/operations.c return pcmk__str_any_of((const char *) a->name, a 281 lib/common/patchset.c for (xmlAttrPtr a = pcmk__xe_first_attr(next); a != NULL; a = a->next) { a 282 lib/common/patchset.c const char *p_value = crm_element_value(next, (const char *) a->name); a 284 lib/common/patchset.c xmlSetProp(cib, a->name, (pcmkXmlStr) p_value); a 1112 lib/common/patchset.c sort_change_obj_by_position(gconstpointer a, gconstpointer b) a 1114 lib/common/patchset.c const xml_change_obj_t *change_obj_a = a; a 126 lib/common/schemas.c schema_filter(const struct dirent *a) a 131 lib/common/schemas.c if (strstr(a->d_name, "pacemaker-") != a->d_name) { a 134 lib/common/schemas.c } else if (!pcmk__ends_with_ext(a->d_name, ".rng")) { a 137 lib/common/schemas.c } else if (!version_from_filename(a->d_name, &version)) { a 149 lib/common/schemas.c schema_sort(const struct dirent **a, const struct dirent **b) a 154 lib/common/schemas.c if (!version_from_filename(a[0]->d_name, &a_version) a 620 lib/common/strings.c pcmk__strcase_equal(gconstpointer a, gconstpointer b) a 622 lib/common/strings.c return pcmk__str_eq((const char *)a, (const char *)b, pcmk__str_casei); a 1207 lib/common/strings.c safe_str_neq(const char *a, const char *b) a 1209 lib/common/strings.c if (a == b) { a 1212 lib/common/strings.c } else if (a == NULL || b == NULL) { a 1215 lib/common/strings.c } else if (strcasecmp(a, b) == 0) { a 1222 lib/common/strings.c crm_str_eq(const char *a, const char *b, gboolean use_case) a 1225 lib/common/strings.c return g_strcmp0(a, b) == 0; a 1228 lib/common/strings.c } else if (a == b) { a 1231 lib/common/strings.c } else if (a == NULL || b == NULL) { a 1235 lib/common/strings.c } else if (strcasecmp(a, b) == 0) { a 1257 lib/common/strings.c crm_strcase_equal(gconstpointer a, gconstpointer b) a 1259 lib/common/strings.c return pcmk__strcase_equal(a, b); a 20 lib/common/tests/cmdline/pcmk__cmdline_preproc_test.c #define LISTS_EQ(a, b) { \ a 21 lib/common/tests/cmdline/pcmk__cmdline_preproc_test.c assert_int_equal(g_strv_length((gchar **) (a)), g_strv_length((gchar **) (b))); \ a 22 lib/common/tests/cmdline/pcmk__cmdline_preproc_test.c for (int i = 0; i < g_strv_length((a)); i++) { \ a 23 lib/common/tests/cmdline/pcmk__cmdline_preproc_test.c assert_string_equal((a)[i], (b)[i]); \ a 21 lib/common/tests/scores/score2char_test.c char *a = NULL; a 23 lib/common/tests/scores/score2char_test.c a = score2char(CRM_SCORE_INFINITY * 2); a 24 lib/common/tests/scores/score2char_test.c assert_string_equal(a, CRM_INFINITY_S); a 25 lib/common/tests/scores/score2char_test.c free(a); a 27 lib/common/tests/scores/score2char_test.c a = score2char(-CRM_SCORE_INFINITY * 2); a 28 lib/common/tests/scores/score2char_test.c assert_string_equal(a, CRM_MINUS_INFINITY_S); a 29 lib/common/tests/scores/score2char_test.c free(a); a 35 lib/common/tests/scores/score2char_test.c char *a = NULL; a 37 lib/common/tests/scores/score2char_test.c a = score2char(1024); a 38 lib/common/tests/scores/score2char_test.c assert_string_equal(a, "1024"); a 39 lib/common/tests/scores/score2char_test.c free(a); a 41 lib/common/tests/scores/score2char_test.c a = score2char(0); a 42 lib/common/tests/scores/score2char_test.c assert_string_equal(a, "0"); a 43 lib/common/tests/scores/score2char_test.c free(a); a 45 lib/common/tests/scores/score2char_test.c a = score2char(-1024); a 46 lib/common/tests/scores/score2char_test.c assert_string_equal(a, "-1024"); a 47 lib/common/tests/scores/score2char_test.c free(a); a 29 lib/common/tests/strings/pcmk__scan_double_test.c #define assert_float_equal(a, b, epsilon) assert_true(fabs((a) - (b)) < (epsilon)) a 173 lib/common/xml.c pcmk__mark_xml_attr_dirty(xmlAttr *a) a 175 lib/common/xml.c xmlNode *parent = a->parent; a 178 lib/common/xml.c p = a->_private; a 332 lib/common/xml.c marked_as_deleted(xmlAttrPtr a, void *user_data) a 334 lib/common/xml.c xml_private_t *p = a->_private; a 529 lib/common/xml.c for (xmlAttrPtr a = pcmk__xe_first_attr(src); a != NULL; a = a->next) { a 530 lib/common/xml.c const char *p_name = (const char *) a->name; a 531 lib/common/xml.c const char *p_value = pcmk__xml_attr_value(a); a 546 lib/common/xml.c for (xmlAttrPtr a = pcmk__xe_first_attr(target); a != NULL; a = a->next) { a 547 lib/common/xml.c const char *p_name = (const char *) a->name; a 548 lib/common/xml.c const char *p_value = pcmk__xml_attr_value(a); a 635 lib/common/xml.c for (xmlAttrPtr a = pcmk__xe_first_attr(element); a != NULL; a = next) { a 636 lib/common/xml.c next = a->next; // Grab now because attribute might get removed a 637 lib/common/xml.c if ((match == NULL) || match(a, user_data)) { a 641 lib/common/xml.c (const char *) a->name, (const char *) element->name); a 648 lib/common/xml.c pcmk__set_xml_flags((xml_private_t *) a->_private, a 651 lib/common/xml.c xmlRemoveProp(a); a 1472 lib/common/xml.c for (xmlAttrPtr a = pcmk__xe_first_attr(data); a != NULL; a 1473 lib/common/xml.c a = a->next) { a 1475 lib/common/xml.c xml_private_t *p = a->_private; a 1476 lib/common/xml.c const char *p_name = (const char *) a->name; a 1477 lib/common/xml.c const char *p_value = pcmk__xml_attr_value(a); a 1591 lib/common/xml.c for (xmlAttrPtr a = pcmk__xe_first_attr(data); a != NULL; a = a->next) { a 1592 lib/common/xml.c const char *aname = (const char*) a->name; a 1594 lib/common/xml.c p = a->_private; a 1709 lib/common/xml.c for (xmlAttrPtr a = pcmk__xe_first_attr(data); a != NULL; a = a->next) { a 1710 lib/common/xml.c if (!pcmk__xa_filterable((const char *) (a->name))) { a 1711 lib/common/xml.c dump_xml_attr(a, options, buffer, offset, max); a 1745 lib/common/xml.c for (xmlAttrPtr a = pcmk__xe_first_attr(data); a != NULL; a = a->next) { a 1746 lib/common/xml.c dump_xml_attr(a, options, buffer, offset, max); a 2403 lib/common/xml.c for (xmlAttrPtr a = pcmk__xe_first_attr(xml_node); a != NULL; a = a->next) { a 2404 lib/common/xml.c const char *p_name = (const char *) a->name; a 2581 lib/common/xml.c for (xmlAttrPtr a = pcmk__xe_first_attr(update); a != NULL; a 2582 lib/common/xml.c a = a->next) { a 2583 lib/common/xml.c const char *p_value = pcmk__xml_attr_value(a); a 2586 lib/common/xml.c xmlUnsetProp(target, a->name); a 2587 lib/common/xml.c xmlSetProp(target, a->name, (pcmkXmlStr) p_value); a 2702 lib/common/xml.c for (xmlAttrPtr a = pcmk__xe_first_attr(update); a != NULL; a 2703 lib/common/xml.c a = a->next) { a 2704 lib/common/xml.c const char *p_name = (const char *) a->name; a 2705 lib/common/xml.c const char *p_value = pcmk__xml_attr_value(a); a 756 lib/fencing/st_client.c stonithlib_GCompareFunc(gconstpointer a, gconstpointer b) a 759 lib/fencing/st_client.c const stonith_notify_client_t *a_client = a; a 363 lib/gnu/md5.c #define OP(a, b, c, d, s, T) \ a 366 lib/gnu/md5.c a += FF (b, c, d) + (*cwp++ = SWAP (*words)) + T; \ a 368 lib/gnu/md5.c CYCLIC (a, s); \ a 369 lib/gnu/md5.c a += b; \ a 409 lib/gnu/md5.c #define OP(f, a, b, c, d, k, s, T) \ a 412 lib/gnu/md5.c a += f (b, c, d) + correct_words[k] + T; \ a 413 lib/gnu/md5.c CYCLIC (a, s); \ a 414 lib/gnu/md5.c a += b; \ a 106 lib/gnu/stdalign.in.h # define _Alignas(a) alignas (a) a 113 lib/gnu/stdalign.in.h # define _Alignas(a) __attribute__ ((__aligned__ (a))) a 115 lib/gnu/stdalign.in.h # define _Alignas(a) __declspec (align (a)) a 196 lib/pacemaker/pcmk_graph_consumer.c crm_action_t *a = (crm_action_t *) lpc->data; a 198 lib/pacemaker/pcmk_graph_consumer.c if (a->type == action_type_pseudo) { a 208 lib/pacemaker/pcmk_graph_consumer.c } else if (graph_fns->allowed && !(graph_fns->allowed(graph, a))) { a 35 lib/pacemaker/pcmk_graph_producer.c #define action_node_str(a) \ a 36 lib/pacemaker/pcmk_graph_producer.c (((a)->node == NULL)? "no node" : (a)->node->details->uname) a 479 lib/pacemaker/pcmk_sched_actions.c #define action_node_str(a) \ a 480 lib/pacemaker/pcmk_sched_actions.c (((a)->node == NULL)? "no node" : (a)->node->details->uname) a 1096 lib/pacemaker/pcmk_sched_actions.c sort_action_id(gconstpointer a, gconstpointer b) a 1098 lib/pacemaker/pcmk_sched_actions.c const pe_action_wrapper_t *action_wrapper2 = (const pe_action_wrapper_t *)a; a 1101 lib/pacemaker/pcmk_sched_actions.c if (a == NULL) { a 35 lib/pacemaker/pcmk_sched_bundle.c gint sort_clone_instance(gconstpointer a, gconstpointer b, gpointer data_set); a 20 lib/pacemaker/pcmk_sched_clone.c gint sort_clone_instance(gconstpointer a, gconstpointer b, gpointer data_set); a 24 lib/pacemaker/pcmk_sched_clone.c sort_rsc_id(gconstpointer a, gconstpointer b) a 26 lib/pacemaker/pcmk_sched_clone.c const pe_resource_t *resource1 = (const pe_resource_t *)a; a 253 lib/pacemaker/pcmk_sched_clone.c sort_clone_instance(gconstpointer a, gconstpointer b, gpointer data_set) a 266 lib/pacemaker/pcmk_sched_clone.c const pe_resource_t *resource1 = (const pe_resource_t *)a; a 33 lib/pacemaker/pcmk_sched_colocation.c cmp_dependent_priority(gconstpointer a, gconstpointer b) a 35 lib/pacemaker/pcmk_sched_colocation.c const pcmk__colocation_t *rsc_constraint1 = (const pcmk__colocation_t *) a; a 38 lib/pacemaker/pcmk_sched_colocation.c if (a == NULL) { a 83 lib/pacemaker/pcmk_sched_colocation.c cmp_primary_priority(gconstpointer a, gconstpointer b) a 85 lib/pacemaker/pcmk_sched_colocation.c const pcmk__colocation_t *rsc_constraint1 = (const pcmk__colocation_t *) a; a 88 lib/pacemaker/pcmk_sched_colocation.c if (a == NULL) { a 112 lib/pacemaker/pcmk_sched_nodes.c compare_nodes(gconstpointer a, gconstpointer b, gpointer data) a 114 lib/pacemaker/pcmk_sched_nodes.c const pe_node_t *node1 = (const pe_node_t *) a; a 123 lib/pacemaker/pcmk_sched_nodes.c if (a == NULL) { a 34 lib/pacemaker/pcmk_sched_notif.c compare_notify_entries(gconstpointer a, gconstpointer b) a 37 lib/pacemaker/pcmk_sched_notif.c const notify_entry_t *entry_a = a; a 20 lib/pacemaker/pcmk_sched_promotable.c extern gint sort_clone_instance(gconstpointer a, gconstpointer b, gpointer data_set); a 257 lib/pacemaker/pcmk_sched_promotable.c sort_promotable_instance(gconstpointer a, gconstpointer b, gpointer data_set) a 263 lib/pacemaker/pcmk_sched_promotable.c const pe_resource_t *resource1 = (const pe_resource_t *)a; a 272 lib/pacemaker/pcmk_sched_promotable.c rc = sort_rsc_index(a, b); a 287 lib/pacemaker/pcmk_sched_promotable.c return sort_clone_instance(a, b, data_set); a 589 lib/pacemaker/pcmk_sched_resource.c cmp_resources(gconstpointer a, gconstpointer b, gpointer data) a 591 lib/pacemaker/pcmk_sched_resource.c const pe_resource_t *resource1 = a; a 162 lib/pengine/complex.c for (xmlAttrPtr a = pcmk__xe_first_attr(rsc->xml); a != NULL; a = a->next) { a 163 lib/pengine/complex.c const char *prop_name = (const char *) a->name; a 53 lib/pengine/pe_digest.c attr_in_string(xmlAttrPtr a, void *user_data) a 56 lib/pengine/pe_digest.c char *name = crm_strdup_printf(" %s ", (const char *) a->name); a 60 lib/pengine/pe_digest.c (const char *) a->name, (const char *) user_data); a 69 lib/pengine/pe_digest.c attr_not_in_string(xmlAttrPtr a, void *user_data) a 72 lib/pengine/pe_digest.c char *name = crm_strdup_printf(" %s ", (const char *) a->name); a 76 lib/pengine/pe_digest.c (const char *) a->name, (const char *) user_data); a 23 lib/pengine/pe_output.c compare_attribute(gconstpointer a, gconstpointer b) a 27 lib/pengine/pe_output.c rc = strcmp((const char *)a, (const char *)b); a 327 lib/pengine/rules.c sort_pairs(gconstpointer a, gconstpointer b) a 329 lib/pengine/rules.c const sorted_set_t *pair_a = a; a 332 lib/pengine/rules.c if (a == NULL && b == NULL) { a 334 lib/pengine/rules.c } else if (a == NULL) { a 217 lib/pengine/utils.c sort_node_uname(gconstpointer a, gconstpointer b) a 219 lib/pengine/utils.c return pcmk__numeric_strcasecmp(((const pe_node_t *) a)->details->uname, a 334 lib/pengine/utils.c sort_rsc_index(gconstpointer a, gconstpointer b) a 336 lib/pengine/utils.c const pe_resource_t *resource1 = (const pe_resource_t *)a; a 339 lib/pengine/utils.c if (a == NULL && b == NULL) { a 342 lib/pengine/utils.c if (a == NULL) { a 361 lib/pengine/utils.c sort_rsc_priority(gconstpointer a, gconstpointer b) a 363 lib/pengine/utils.c const pe_resource_t *resource1 = (const pe_resource_t *)a; a 366 lib/pengine/utils.c if (a == NULL && b == NULL) { a 369 lib/pengine/utils.c if (a == NULL) { a 1736 lib/pengine/utils.c sort_op_by_callid(gconstpointer a, gconstpointer b) a 1744 lib/pengine/utils.c const xmlNode *xml_a = a; a 522 lib/services/systemd.c sort_str(gconstpointer a, gconstpointer b) a 524 lib/services/systemd.c if (!a && !b) { a 526 lib/services/systemd.c } else if (!a) { a 531 lib/services/systemd.c return strcasecmp(a, b); a 158 libltdl/libltdl/lt_system.h # define LT__CONC(a, b) a##b a 159 libltdl/libltdl/lt_system.h # define LT_CONC(a, b) LT__CONC(a, b) a 162 libltdl/libltdl/lt_system.h # define LT__CONC3(a, b, c) a##b##c a 163 libltdl/libltdl/lt_system.h # define LT_CONC3(a, b, c) LT__CONC3(a, b, c) a 395 maint/gnulib/lib/acl-internal.c acl_nontrivial (struct acl *a) a 413 maint/gnulib/lib/acl-internal.c return (acl_last (a) != a->acl_ext ? 1 : 0); a 421 maint/gnulib/lib/acl-internal.c acl_nfs4_nontrivial (nfs4_acl_int_t *a) a 424 maint/gnulib/lib/acl-internal.c return (a->aclEntryN > 0 ? 1 : 0); a 426 maint/gnulib/lib/acl-internal.c int count = a->aclEntryN; a 431 maint/gnulib/lib/acl-internal.c nfs4_ace_int_t *ace = &a->aclEntry[i]; a 52 maint/gnulib/lib/acl-internal.h # define MIN(a,b) ((a) < (b) ? (a) : (b)) a 243 maint/gnulib/lib/acl-internal.h extern int acl_nontrivial (struct acl *a); a 287 maint/gnulib/lib/acl-internal.h union { struct acl a; char room[4096]; } u; a 25 maint/gnulib/lib/alphasort.c alphasort (const struct dirent **a, const struct dirent **b) a 27 maint/gnulib/lib/alphasort.c return strcoll ((*a)->d_name, (*b)->d_name); a 32 maint/gnulib/lib/alphasort.c alphasort (const void *a, const void *b) a 34 maint/gnulib/lib/alphasort.c return strcoll ((*(const struct dirent **)a)->d_name, a 44 maint/gnulib/lib/argp-fmtstream.c # define __vsnprintf(s, l, f, a) _IO_vsnprintf (s, l, f, a) a 58 maint/gnulib/lib/bitset.h } a; a 32 maint/gnulib/lib/bitset/array.c #define ABITSET_WORDS(X) ((X)->a.words) a 706 maint/gnulib/lib/bitset/array.c size_t header_size = offsetof (union bitset_union, a.words); a 707 maint/gnulib/lib/bitset/array.c struct bitset_align_struct { char a; union bitset_union b; }; a 121 maint/gnulib/lib/bitset/table.c #define min(a, b) ((a) > (b) ? (b) : (a)) a 122 maint/gnulib/lib/bitset/table.c #define max(a, b) ((a) > (b) ? (a) : (b)) a 54 maint/gnulib/lib/bitset/vector.c #define min(a, b) ((a) > (b) ? (b) : (a)) a 55 maint/gnulib/lib/bitset/vector.c #define max(a, b) ((a) > (b) ? (a) : (b)) a 371 maint/gnulib/lib/cdefs.h # define __attribute_format_strfmon__(a,b) \ a 372 maint/gnulib/lib/cdefs.h __attribute__ ((__format__ (__strfmon__, a, b))) a 374 maint/gnulib/lib/cdefs.h # define __attribute_format_strfmon__(a,b) /* Ignore */ a 670 maint/gnulib/lib/cdefs.h # define __fortified_attr_access(a, o, s) __attribute__ ((__access__ (a, o))) a 672 maint/gnulib/lib/cdefs.h # define __fortified_attr_access(a, o, s) __attr_access ((a, o, s)) a 680 maint/gnulib/lib/cdefs.h # define __fortified_attr_access(a, o, s) a 37 maint/gnulib/lib/closeout.c # define __has_feature(a) false a 351 maint/gnulib/lib/des.c #define DO_PERMUTATION(a, temp, b, offset, mask) \ a 352 maint/gnulib/lib/des.c temp = ((a>>offset) ^ b) & mask; \ a 354 maint/gnulib/lib/des.c a ^= temp<<offset; a 47 maint/gnulib/lib/dfa.c streq (char const *a, char const *b) a 49 maint/gnulib/lib/dfa.c return strcmp (a, b) == 0; a 77 maint/gnulib/lib/dfa.c # define MIN(a,b) ((a) < (b) ? (a) : (b)) a 123 maint/gnulib/lib/dfa.c #define CHARCLASS_INIT(a, b, c, d, e, f, g, h) \ a 125 maint/gnulib/lib/dfa.c CHARCLASS_PAIR (a, b), CHARCLASS_PAIR (c, d), \ a 2426 maint/gnulib/lib/dfa.c compare (const void *a, const void *b) a 2428 maint/gnulib/lib/dfa.c position const *p = a, *q = b; a 97 maint/gnulib/lib/di-set.c struct di_ent const *a = x; a 99 maint/gnulib/lib/di-set.c return a->dev == b->dev; a 106 maint/gnulib/lib/di-set.c struct di_ent *a = v; a 107 maint/gnulib/lib/di-set.c hash_free (a->ino_set); a 108 maint/gnulib/lib/di-set.c free (a); a 27 maint/gnulib/lib/duplocale.c #define SIZEOF(a) (sizeof(a) / sizeof(a[0])) a 43 maint/gnulib/lib/error.c # define _GL_ATTRIBUTE_FORMAT_PRINTF_STANDARD(a, b) a 44 maint/gnulib/lib/error.c # define _GL_ARG_NONNULL(a) a 33 maint/gnulib/lib/fatal-signal.c #define SIZEOF(a) (sizeof(a) / sizeof(a[0])) a 457 maint/gnulib/lib/file-has-acl.c union { struct acl a; char room[4096]; } u; a 459 maint/gnulib/lib/file-has-acl.c if (statacl ((char *) name, STX_NORMAL, &u.a, sizeof (u)) < 0) a 462 maint/gnulib/lib/file-has-acl.c return acl_nontrivial (&u.a); a 65 maint/gnulib/lib/fma.c #define MAX(a,b) ((a) > (b) ? (a) : (b)) a 68 maint/gnulib/lib/fma.c #define MIN(a,b) ((a) < (b) ? (a) : (b)) a 50 maint/gnulib/lib/fnmatch.c # define CONCAT(a,b) __CONCAT(a,b) a 226 maint/gnulib/lib/fts.c # define MAX(a,b) ((a) > (b) ? (a) : (b)) a 233 maint/gnulib/lib/fts.c #define ISDOT(a) (a[0] == '.' && (!a[1] || (a[1] == '.' && !a[2]))) a 234 maint/gnulib/lib/fts.c #define STREQ(a, b) (strcmp (a, b) == 0) a 264 maint/gnulib/lib/fts.c # define fd_ring_print(a, b, c) a 1191 maint/gnulib/lib/fts.c fts_compare_ino (struct _ftsent const **a, struct _ftsent const **b) a 1193 maint/gnulib/lib/fts.c return _GL_CMP (a[0]->fts_statp->st_ino, b[0]->fts_statp->st_ino); a 1810 maint/gnulib/lib/fts.c fts_compar (void const *a, void const *b) a 1817 maint/gnulib/lib/fts.c FTSENT const **pa = (FTSENT const **) a; a 1850 maint/gnulib/lib/fts.c FTSENT **a; a 1853 maint/gnulib/lib/fts.c if (SIZE_MAX / sizeof *a < sp->fts_nitems a 1854 maint/gnulib/lib/fts.c || ! (a = realloc (sp->fts_array, a 1855 maint/gnulib/lib/fts.c sp->fts_nitems * sizeof *a))) { a 1861 maint/gnulib/lib/fts.c sp->fts_array = a; a 33 maint/gnulib/lib/gcd.c GCD (WORD_T a, WORD_T b) a 43 maint/gnulib/lib/gcd.c WORD_T c = a | b; a 47 maint/gnulib/lib/gcd.c if (a & c) a 65 maint/gnulib/lib/gcd.c if (a == b) a 67 maint/gnulib/lib/gcd.c if (a > b) a 69 maint/gnulib/lib/gcd.c a = a - b; a 72 maint/gnulib/lib/gcd.c a = a >> 1; a 73 maint/gnulib/lib/gcd.c while ((a & c) == 0); a 77 maint/gnulib/lib/gcd.c b = b - a; a 86 maint/gnulib/lib/gcd.c return a; a 27 maint/gnulib/lib/gcd.h extern unsigned long gcd (unsigned long a, unsigned long b); a 46 maint/gnulib/lib/gen-uni-tables.c #define SIZEOF(a) (sizeof(a) / sizeof(a[0])) a 10142 maint/gnulib/lib/gen-uni-tables.c compare_casing_rules (const void *a, const void *b) a 10144 maint/gnulib/lib/gen-uni-tables.c struct special_casing_rule *a_rule = *(struct special_casing_rule **) a; a 268 maint/gnulib/lib/get-permissions.c ret = fstatacl (desc, STX_NORMAL, &ctx->u.a, sizeof ctx->u); a 270 maint/gnulib/lib/get-permissions.c ret = statacl ((char *) name, STX_NORMAL, &ctx->u.a, sizeof ctx->u); a 68 maint/gnulib/lib/getcwd.c # define MAX(a, b) ((a) < (b) ? (b) : (a)) a 71 maint/gnulib/lib/getcwd.c # define MIN(a, b) ((a) < (b) ? (a) : (b)) a 51 maint/gnulib/lib/getugroups.c # define STREQ(a, b) (strcmp (a, b) == 0) a 226 maint/gnulib/lib/glob.c size_add_wrapv (size_t a, size_t b, size_t *r) a 229 maint/gnulib/lib/glob.c return __builtin_add_overflow (a, b, r); a 231 maint/gnulib/lib/glob.c *r = a + b; a 232 maint/gnulib/lib/glob.c return *r < a; a 1206 maint/gnulib/lib/glob.c collated_compare (const void *a, const void *b) a 1208 maint/gnulib/lib/glob.c char *const *ps1 = a; char *s1 = *ps1; a 67 maint/gnulib/lib/glthread/thread.c } a; a 76 maint/gnulib/lib/glthread/thread.c void *(*mainfunc) (void *) = main_arg->a.mainfunc; a 77 maint/gnulib/lib/glthread/thread.c void *arg = main_arg->a.arg; a 103 maint/gnulib/lib/glthread/thread.c main_arg->a.mainfunc = mainfunc; a 104 maint/gnulib/lib/glthread/thread.c main_arg->a.arg = arg; a 30 maint/gnulib/lib/hash-triple-simple.c #define STREQ(a, b) (strcmp (a, b) == 0) a 47 maint/gnulib/lib/hash-triple-simple.c struct F_triple const *a = x; a 49 maint/gnulib/lib/hash-triple-simple.c return (SAME_INODE (*a, *b) && STREQ (a->name, b->name)) ? true : false; a 56 maint/gnulib/lib/hash-triple-simple.c struct F_triple *a = x; a 57 maint/gnulib/lib/hash-triple-simple.c free (a->name); a 58 maint/gnulib/lib/hash-triple-simple.c free (a); a 41 maint/gnulib/lib/hash-triple.c struct F_triple const *a = x; a 43 maint/gnulib/lib/hash-triple.c return (SAME_INODE (*a, *b) && same_name (a->name, b->name)) ? true : false; a 451 maint/gnulib/lib/hash.c raw_comparator (const void *a, const void *b) a 453 maint/gnulib/lib/hash.c return a == b; a 35 maint/gnulib/lib/hypot.c double a; a 40 maint/gnulib/lib/hypot.c a = x; a 45 maint/gnulib/lib/hypot.c a = y; a 56 maint/gnulib/lib/hypot.c an = frexp (a, &e); a 45 maint/gnulib/lib/hypotl.c long double a; a 50 maint/gnulib/lib/hypotl.c a = x; a 55 maint/gnulib/lib/hypotl.c a = y; a 66 maint/gnulib/lib/hypotl.c an = frexpl (a, &e); a 27 maint/gnulib/lib/iconv_open.c #define SIZEOF(a) (sizeof(a) / sizeof(a[0])) a 75 maint/gnulib/lib/ino-map.c struct ino_map_ent const *a = x; a 77 maint/gnulib/lib/ino-map.c return a->ino == b->ino; a 28 maint/gnulib/lib/integer_length_l.c #define MIN(a,b) ((a) < (b) ? (a) : (b)) a 169 maint/gnulib/lib/intprops.h #define INT_ADD_RANGE_OVERFLOW(a, b, min, max) \ a 171 maint/gnulib/lib/intprops.h ? (a) < (min) - (b) \ a 172 maint/gnulib/lib/intprops.h : (max) - (b) < (a)) a 176 maint/gnulib/lib/intprops.h #define INT_SUBTRACT_RANGE_OVERFLOW(a, b, min, max) \ a 178 maint/gnulib/lib/intprops.h ? (max) + (b) < (a) \ a 179 maint/gnulib/lib/intprops.h : (a) < (min) + (b)) a 183 maint/gnulib/lib/intprops.h #define INT_NEGATE_RANGE_OVERFLOW(a, min, max) \ a 185 maint/gnulib/lib/intprops.h ? (a) < - (max) \ a 186 maint/gnulib/lib/intprops.h : 0 < (a)) a 192 maint/gnulib/lib/intprops.h #define INT_MULTIPLY_RANGE_OVERFLOW(a, b, min, max) \ a 194 maint/gnulib/lib/intprops.h ? ((a) < 0 \ a 195 maint/gnulib/lib/intprops.h ? (a) < (max) / (b) \ a 198 maint/gnulib/lib/intprops.h : (min) / (b) < (a)) \ a 201 maint/gnulib/lib/intprops.h : ((a) < 0 \ a 202 maint/gnulib/lib/intprops.h ? (a) < (min) / (b) \ a 203 maint/gnulib/lib/intprops.h : (max) / (b) < (a))) a 207 maint/gnulib/lib/intprops.h #define INT_DIVIDE_RANGE_OVERFLOW(a, b, min, max) \ a 208 maint/gnulib/lib/intprops.h ((min) < 0 && (b) == -1 && (a) < - (max)) a 215 maint/gnulib/lib/intprops.h #define INT_REMAINDER_RANGE_OVERFLOW(a, b, min, max) \ a 216 maint/gnulib/lib/intprops.h INT_DIVIDE_RANGE_OVERFLOW (a, b, min, max) a 225 maint/gnulib/lib/intprops.h #define INT_LEFT_SHIFT_RANGE_OVERFLOW(a, b, min, max) \ a 226 maint/gnulib/lib/intprops.h ((a) < 0 \ a 227 maint/gnulib/lib/intprops.h ? (a) < (min) >> (b) \ a 228 maint/gnulib/lib/intprops.h : (max) >> (b) < (a)) a 268 maint/gnulib/lib/intprops.h # define _GL_ADD_OVERFLOW(a, b, min, max) \ a 269 maint/gnulib/lib/intprops.h __builtin_add_overflow_p (a, b, (__typeof__ ((a) + (b))) 0) a 270 maint/gnulib/lib/intprops.h # define _GL_SUBTRACT_OVERFLOW(a, b, min, max) \ a 271 maint/gnulib/lib/intprops.h __builtin_sub_overflow_p (a, b, (__typeof__ ((a) - (b))) 0) a 272 maint/gnulib/lib/intprops.h # define _GL_MULTIPLY_OVERFLOW(a, b, min, max) \ a 273 maint/gnulib/lib/intprops.h __builtin_mul_overflow_p (a, b, (__typeof__ ((a) * (b))) 0) a 275 maint/gnulib/lib/intprops.h # define _GL_ADD_OVERFLOW(a, b, min, max) \ a 276 maint/gnulib/lib/intprops.h ((min) < 0 ? INT_ADD_RANGE_OVERFLOW (a, b, min, max) \ a 277 maint/gnulib/lib/intprops.h : (a) < 0 ? (b) <= (a) + (b) \ a 278 maint/gnulib/lib/intprops.h : (b) < 0 ? (a) <= (a) + (b) \ a 279 maint/gnulib/lib/intprops.h : (a) + (b) < (b)) a 280 maint/gnulib/lib/intprops.h # define _GL_SUBTRACT_OVERFLOW(a, b, min, max) \ a 281 maint/gnulib/lib/intprops.h ((min) < 0 ? INT_SUBTRACT_RANGE_OVERFLOW (a, b, min, max) \ a 282 maint/gnulib/lib/intprops.h : (a) < 0 ? 1 \ a 283 maint/gnulib/lib/intprops.h : (b) < 0 ? (a) - (b) <= (a) \ a 284 maint/gnulib/lib/intprops.h : (a) < (b)) a 285 maint/gnulib/lib/intprops.h # define _GL_MULTIPLY_OVERFLOW(a, b, min, max) \ a 286 maint/gnulib/lib/intprops.h (((min) == 0 && (((a) < 0 && 0 < (b)) || ((b) < 0 && 0 < (a)))) \ a 287 maint/gnulib/lib/intprops.h || INT_MULTIPLY_RANGE_OVERFLOW (a, b, min, max)) a 289 maint/gnulib/lib/intprops.h #define _GL_DIVIDE_OVERFLOW(a, b, min, max) \ a 290 maint/gnulib/lib/intprops.h ((min) < 0 ? (b) == _GL_INT_NEGATE_CONVERT (min, 1) && (a) < - (max) \ a 291 maint/gnulib/lib/intprops.h : (a) < 0 ? (b) <= (a) + (b) - 1 \ a 292 maint/gnulib/lib/intprops.h : (b) < 0 && (a) + (b) <= (a)) a 293 maint/gnulib/lib/intprops.h #define _GL_REMAINDER_OVERFLOW(a, b, min, max) \ a 294 maint/gnulib/lib/intprops.h ((min) < 0 ? (b) == _GL_INT_NEGATE_CONVERT (min, 1) && (a) < - (max) \ a 295 maint/gnulib/lib/intprops.h : (a) < 0 ? (a) % (b) != ((max) - (b) + 1) % (b) \ a 296 maint/gnulib/lib/intprops.h : (b) < 0 && ! _GL_UNSIGNED_NEG_MULTIPLE (a, b, max)) a 302 maint/gnulib/lib/intprops.h #define _GL_UNSIGNED_NEG_MULTIPLE(a, b, max) \ a 305 maint/gnulib/lib/intprops.h ? (a) \ a 306 maint/gnulib/lib/intprops.h : (a) % (_GL_INT_CONVERT (a, _GL_SIGNED_INT_MAXIMUM (b)) + 1)) \ a 307 maint/gnulib/lib/intprops.h : (a) % - (b)) \ a 359 maint/gnulib/lib/intprops.h #define INT_ADD_OVERFLOW(a, b) \ a 360 maint/gnulib/lib/intprops.h _GL_BINARY_OP_OVERFLOW (a, b, _GL_ADD_OVERFLOW) a 361 maint/gnulib/lib/intprops.h #define INT_SUBTRACT_OVERFLOW(a, b) \ a 362 maint/gnulib/lib/intprops.h _GL_BINARY_OP_OVERFLOW (a, b, _GL_SUBTRACT_OVERFLOW) a 364 maint/gnulib/lib/intprops.h # define INT_NEGATE_OVERFLOW(a) INT_SUBTRACT_OVERFLOW (0, a) a 366 maint/gnulib/lib/intprops.h # define INT_NEGATE_OVERFLOW(a) \ a 367 maint/gnulib/lib/intprops.h INT_NEGATE_RANGE_OVERFLOW (a, _GL_INT_MINIMUM (a), _GL_INT_MAXIMUM (a)) a 369 maint/gnulib/lib/intprops.h #define INT_MULTIPLY_OVERFLOW(a, b) \ a 370 maint/gnulib/lib/intprops.h _GL_BINARY_OP_OVERFLOW (a, b, _GL_MULTIPLY_OVERFLOW) a 371 maint/gnulib/lib/intprops.h #define INT_DIVIDE_OVERFLOW(a, b) \ a 372 maint/gnulib/lib/intprops.h _GL_BINARY_OP_OVERFLOW (a, b, _GL_DIVIDE_OVERFLOW) a 373 maint/gnulib/lib/intprops.h #define INT_REMAINDER_OVERFLOW(a, b) \ a 374 maint/gnulib/lib/intprops.h _GL_BINARY_OP_OVERFLOW (a, b, _GL_REMAINDER_OVERFLOW) a 375 maint/gnulib/lib/intprops.h #define INT_LEFT_SHIFT_OVERFLOW(a, b) \ a 376 maint/gnulib/lib/intprops.h INT_LEFT_SHIFT_RANGE_OVERFLOW (a, b, \ a 377 maint/gnulib/lib/intprops.h _GL_INT_MINIMUM (a), _GL_INT_MAXIMUM (a)) a 383 maint/gnulib/lib/intprops.h #define _GL_BINARY_OP_OVERFLOW(a, b, op_result_overflow) \ a 384 maint/gnulib/lib/intprops.h op_result_overflow (a, b, \ a 385 maint/gnulib/lib/intprops.h _GL_INT_MINIMUM (_GL_INT_CONVERT (a, b)), \ a 386 maint/gnulib/lib/intprops.h _GL_INT_MAXIMUM (_GL_INT_CONVERT (a, b))) a 391 maint/gnulib/lib/intprops.h # define INT_ADD_WRAPV(a, b, r) __builtin_add_overflow (a, b, r) a 392 maint/gnulib/lib/intprops.h # define INT_SUBTRACT_WRAPV(a, b, r) __builtin_sub_overflow (a, b, r) a 394 maint/gnulib/lib/intprops.h # define INT_ADD_WRAPV(a, b, r) \ a 395 maint/gnulib/lib/intprops.h _GL_INT_OP_WRAPV (a, b, r, +, _GL_INT_ADD_RANGE_OVERFLOW) a 396 maint/gnulib/lib/intprops.h # define INT_SUBTRACT_WRAPV(a, b, r) \ a 397 maint/gnulib/lib/intprops.h _GL_INT_OP_WRAPV (a, b, r, -, _GL_INT_SUBTRACT_RANGE_OVERFLOW) a 403 maint/gnulib/lib/intprops.h # define INT_MULTIPLY_WRAPV(a, b, r) __builtin_mul_overflow (a, b, r) a 406 maint/gnulib/lib/intprops.h # define INT_MULTIPLY_WRAPV(a, b, r) \ a 407 maint/gnulib/lib/intprops.h ((!_GL_SIGNED_TYPE_OR_EXPR (*(r)) && EXPR_SIGNED (a) && EXPR_SIGNED (b) \ a 408 maint/gnulib/lib/intprops.h && _GL_INT_MULTIPLY_RANGE_OVERFLOW (a, b, 0, (__typeof__ (*(r))) -1)) \ a 409 maint/gnulib/lib/intprops.h ? ((void) __builtin_mul_overflow (a, b, r), 1) \ a 410 maint/gnulib/lib/intprops.h : __builtin_mul_overflow (a, b, r)) a 413 maint/gnulib/lib/intprops.h # define INT_MULTIPLY_WRAPV(a, b, r) \ a 414 maint/gnulib/lib/intprops.h _GL_INT_OP_WRAPV (a, b, r, *, _GL_INT_MULTIPLY_RANGE_OVERFLOW) a 433 maint/gnulib/lib/intprops.h # define _GL_INT_OP_WRAPV(a, b, r, op, overflow) \ a 437 maint/gnulib/lib/intprops.h _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned int, \ a 440 maint/gnulib/lib/intprops.h _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned int, \ a 443 maint/gnulib/lib/intprops.h _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned int, \ a 446 maint/gnulib/lib/intprops.h _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned int, \ a 449 maint/gnulib/lib/intprops.h _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned int, \ a 452 maint/gnulib/lib/intprops.h _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned int, \ a 455 maint/gnulib/lib/intprops.h _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned long int, \ a 458 maint/gnulib/lib/intprops.h _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned long int, \ a 461 maint/gnulib/lib/intprops.h _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned long long int, \ a 464 maint/gnulib/lib/intprops.h _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned long long int, \ a 473 maint/gnulib/lib/intprops.h # define _GL_INT_OP_WRAPV_SMALLISH(a,b,r,op,overflow,st,smin,smax,ut,umax) \ a 475 maint/gnulib/lib/intprops.h ? _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned int, st, smin, smax) \ a 476 maint/gnulib/lib/intprops.h : _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned int, ut, 0, umax)) a 478 maint/gnulib/lib/intprops.h # define _GL_INT_OP_WRAPV_SMALLISH(a,b,r,op,overflow,st,smin,smax,ut,umax) \ a 479 maint/gnulib/lib/intprops.h (overflow (a, b, smin, smax) \ a 480 maint/gnulib/lib/intprops.h ? (overflow (a, b, 0, umax) \ a 481 maint/gnulib/lib/intprops.h ? (*(r) = _GL_INT_OP_WRAPV_VIA_UNSIGNED (a,b,op,unsigned,st), 1) \ a 482 maint/gnulib/lib/intprops.h : (*(r) = _GL_INT_OP_WRAPV_VIA_UNSIGNED (a,b,op,unsigned,st)) < 0) \ a 483 maint/gnulib/lib/intprops.h : (overflow (a, b, 0, umax) \ a 484 maint/gnulib/lib/intprops.h ? (*(r) = _GL_INT_OP_WRAPV_VIA_UNSIGNED (a,b,op,unsigned,st)) >= 0 \ a 485 maint/gnulib/lib/intprops.h : (*(r) = _GL_INT_OP_WRAPV_VIA_UNSIGNED (a,b,op,unsigned,st), 0))) a 488 maint/gnulib/lib/intprops.h # define _GL_INT_OP_WRAPV(a, b, r, op, overflow) \ a 490 maint/gnulib/lib/intprops.h ? _GL_INT_OP_WRAPV_SMALLISH (a, b, r, op, overflow, \ a 494 maint/gnulib/lib/intprops.h ? _GL_INT_OP_WRAPV_SMALLISH (a, b, r, op, overflow, \ a 499 maint/gnulib/lib/intprops.h ? _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned int, \ a 501 maint/gnulib/lib/intprops.h : _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned int, \ a 503 maint/gnulib/lib/intprops.h : _GL_INT_OP_WRAPV_LONGISH(a, b, r, op, overflow)) a 505 maint/gnulib/lib/intprops.h # define _GL_INT_OP_WRAPV_LONGISH(a, b, r, op, overflow) \ a 508 maint/gnulib/lib/intprops.h ? _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned long int, \ a 510 maint/gnulib/lib/intprops.h : _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned long int, \ a 513 maint/gnulib/lib/intprops.h ? _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned long long int, \ a 515 maint/gnulib/lib/intprops.h : _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned long long int, \ a 518 maint/gnulib/lib/intprops.h # define _GL_INT_OP_WRAPV_LONGISH(a, b, r, op, overflow) \ a 520 maint/gnulib/lib/intprops.h ? _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned long int, \ a 522 maint/gnulib/lib/intprops.h : _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned long int, \ a 531 maint/gnulib/lib/intprops.h #define _GL_INT_OP_CALC(a, b, r, op, overflow, ut, t, tmin, tmax) \ a 532 maint/gnulib/lib/intprops.h (overflow (a, b, tmin, tmax) \ a 533 maint/gnulib/lib/intprops.h ? (*(r) = _GL_INT_OP_WRAPV_VIA_UNSIGNED (a, b, op, ut, t), 1) \ a 534 maint/gnulib/lib/intprops.h : (*(r) = _GL_INT_OP_WRAPV_VIA_UNSIGNED (a, b, op, ut, t), 0)) a 553 maint/gnulib/lib/intprops.h #define _GL_INT_OP_WRAPV_VIA_UNSIGNED(a, b, op, ut, t) \ a 554 maint/gnulib/lib/intprops.h ((t) ((ut) (a) op (ut) (b))) a 560 maint/gnulib/lib/intprops.h #define _GL_INT_ADD_RANGE_OVERFLOW(a, b, tmin, tmax) \ a 563 maint/gnulib/lib/intprops.h ? ((EXPR_SIGNED (_GL_INT_CONVERT (a, (tmin) - (b))) || (b) < (tmin)) \ a 564 maint/gnulib/lib/intprops.h && (a) < (tmin) - (b)) \ a 565 maint/gnulib/lib/intprops.h : (a) <= -1 - (b)) \ a 566 maint/gnulib/lib/intprops.h || ((EXPR_SIGNED (a) ? 0 <= (a) : (tmax) < (a)) && (tmax) < (a) + (b))) \ a 567 maint/gnulib/lib/intprops.h : (a) < 0 \ a 569 maint/gnulib/lib/intprops.h ? ((EXPR_SIGNED (_GL_INT_CONVERT (b, (tmin) - (a))) || (a) < (tmin)) \ a 570 maint/gnulib/lib/intprops.h && (b) < (tmin) - (a)) \ a 571 maint/gnulib/lib/intprops.h : (b) <= -1 - (a)) \ a 572 maint/gnulib/lib/intprops.h || ((EXPR_SIGNED (_GL_INT_CONVERT (a, b)) || (tmax) < (b)) \ a 573 maint/gnulib/lib/intprops.h && (tmax) < (a) + (b))) \ a 574 maint/gnulib/lib/intprops.h : (tmax) < (b) || (tmax) - (b) < (a)) a 575 maint/gnulib/lib/intprops.h #define _GL_INT_SUBTRACT_RANGE_OVERFLOW(a, b, tmin, tmax) \ a 576 maint/gnulib/lib/intprops.h (((a) < 0) == ((b) < 0) \ a 577 maint/gnulib/lib/intprops.h ? ((a) < (b) \ a 578 maint/gnulib/lib/intprops.h ? !(tmin) || -1 - (tmin) < (b) - (a) - 1 \ a 579 maint/gnulib/lib/intprops.h : (tmax) < (a) - (b)) \ a 580 maint/gnulib/lib/intprops.h : (a) < 0 \ a 581 maint/gnulib/lib/intprops.h ? ((!EXPR_SIGNED (_GL_INT_CONVERT ((a) - (tmin), b)) && (a) - (tmin) < 0) \ a 582 maint/gnulib/lib/intprops.h || (a) - (tmin) < (b)) \ a 584 maint/gnulib/lib/intprops.h && EXPR_SIGNED (_GL_INT_CONVERT ((tmax) + (b), a))) \ a 586 maint/gnulib/lib/intprops.h || (tmax) + (b) < (a))) a 587 maint/gnulib/lib/intprops.h #define _GL_INT_MULTIPLY_RANGE_OVERFLOW(a, b, tmin, tmax) \ a 589 maint/gnulib/lib/intprops.h ? ((a) < 0 \ a 591 maint/gnulib/lib/intprops.h ? (a) < (tmax) / (b) \ a 595 maint/gnulib/lib/intprops.h <= -1 - (a))) \ a 597 maint/gnulib/lib/intprops.h ? (EXPR_SIGNED (a) \ a 598 maint/gnulib/lib/intprops.h ? 0 < (a) + (tmin) \ a 599 maint/gnulib/lib/intprops.h : 0 < (a) && -1 - (tmin) < (a) - 1) \ a 600 maint/gnulib/lib/intprops.h : (tmin) / (b) < (a)) \ a 603 maint/gnulib/lib/intprops.h : ((a) < 0 \ a 604 maint/gnulib/lib/intprops.h ? (INT_NEGATE_OVERFLOW (_GL_INT_CONVERT (a, tmin)) && (a) == -1 \ a 606 maint/gnulib/lib/intprops.h : (tmin) / (a) < (b)) \ a 607 maint/gnulib/lib/intprops.h : (tmax) / (b) < (a))) a 634 maint/gnulib/lib/intprops.h #define INT_ADD_OK(a, b, r) ! INT_ADD_WRAPV (a, b, r) a 635 maint/gnulib/lib/intprops.h #define INT_SUBTRACT_OK(a, b, r) ! INT_SUBTRACT_WRAPV (a, b, r) a 636 maint/gnulib/lib/intprops.h #define INT_MULTIPLY_OK(a, b, r) ! INT_MULTIPLY_WRAPV (a, b, r) a 24 maint/gnulib/lib/itold.c _Qp_itoq (long double *result, int a) a 27 maint/gnulib/lib/itold.c *result = (double) a; a 204 maint/gnulib/lib/md4.c #define R1(a,b,c,d,k,s) a=rol(a+F(b,c,d)+x[k],s); a 205 maint/gnulib/lib/md4.c #define R2(a,b,c,d,k,s) a=rol(a+G(b,c,d)+x[k]+K1,s); a 206 maint/gnulib/lib/md4.c #define R3(a,b,c,d,k,s) a=rol(a+H(b,c,d)+x[k]+K2,s); a 265 maint/gnulib/lib/md5.c #define OP(a, b, c, d, s, T) \ a 268 maint/gnulib/lib/md5.c a += FF (b, c, d) + (*cwp++ = SWAP (*words)) + T; \ a 270 maint/gnulib/lib/md5.c CYCLIC (a, s); \ a 271 maint/gnulib/lib/md5.c a += b; \ a 311 maint/gnulib/lib/md5.c #define OP(f, a, b, c, d, k, s, T) \ a 314 maint/gnulib/lib/md5.c a += f (b, c, d) + correct_words[k] + T; \ a 315 maint/gnulib/lib/md5.c CYCLIC (a, s); \ a 316 maint/gnulib/lib/md5.c a += b; \ a 66 maint/gnulib/lib/memcmp.c # define CMP_LT_OR_GT(a, b) ((a) > (b) ? 1 : -1) a 68 maint/gnulib/lib/memcmp.c # define CMP_LT_OR_GT(a, b) memcmp_bytes (a, b) a 93 maint/gnulib/lib/memcmp.c memcmp_bytes (op_t a, op_t b) a 95 maint/gnulib/lib/memcmp.c const byte *srcp1 = (const byte *) &a; a 73 maint/gnulib/lib/mini-gmp.c #define GMP_MIN(a, b) ((a) < (b) ? (a) : (b)) a 74 maint/gnulib/lib/mini-gmp.c #define GMP_MAX(a, b) ((a) > (b) ? (a) : (b)) a 76 maint/gnulib/lib/mini-gmp.c #define GMP_CMP(a,b) (((a) > (b)) - ((a) < (b))) a 464 maint/gnulib/lib/mini-gmp.c mp_limb_t a, b, r; a 465 maint/gnulib/lib/mini-gmp.c a = ap[i]; b = bp[i]; a 466 maint/gnulib/lib/mini-gmp.c r = a + cy; a 498 maint/gnulib/lib/mini-gmp.c mp_limb_t a = ap[i]; a 500 maint/gnulib/lib/mini-gmp.c mp_limb_t cy = a < b; a 501 maint/gnulib/lib/mini-gmp.c rp[i] = a - b; a 517 maint/gnulib/lib/mini-gmp.c mp_limb_t a, b; a 518 maint/gnulib/lib/mini-gmp.c a = ap[i]; b = bp[i]; a 521 maint/gnulib/lib/mini-gmp.c cy += (a < b); a 522 maint/gnulib/lib/mini-gmp.c rp[i] = a - b; a 1889 maint/gnulib/lib/mini-gmp.c mpz_cmp (const mpz_t a, const mpz_t b) a 1891 maint/gnulib/lib/mini-gmp.c mp_size_t asize = a->_mp_size; a 1897 maint/gnulib/lib/mini-gmp.c return mpn_cmp (a->_mp_d, b->_mp_d, asize); a 1899 maint/gnulib/lib/mini-gmp.c return mpn_cmp (b->_mp_d, a->_mp_d, -asize); a 1950 maint/gnulib/lib/mini-gmp.c mpz_add_ui (mpz_t r, const mpz_t a, unsigned long b) a 1954 maint/gnulib/lib/mini-gmp.c mpz_add (r, a, bb); a 1959 maint/gnulib/lib/mini-gmp.c mpz_sub_ui (mpz_t r, const mpz_t a, unsigned long b) a 1961 maint/gnulib/lib/mini-gmp.c mpz_ui_sub (r, b, a); a 1966 maint/gnulib/lib/mini-gmp.c mpz_ui_sub (mpz_t r, unsigned long a, const mpz_t b) a 1969 maint/gnulib/lib/mini-gmp.c mpz_add_ui (r, r, a); a 1973 maint/gnulib/lib/mini-gmp.c mpz_abs_add (mpz_t r, const mpz_t a, const mpz_t b) a 1975 maint/gnulib/lib/mini-gmp.c mp_size_t an = GMP_ABS (a->_mp_size); a 1982 maint/gnulib/lib/mini-gmp.c MPZ_SRCPTR_SWAP (a, b); a 1987 maint/gnulib/lib/mini-gmp.c cy = mpn_add (rp, a->_mp_d, an, b->_mp_d, bn); a 1995 maint/gnulib/lib/mini-gmp.c mpz_abs_sub (mpz_t r, const mpz_t a, const mpz_t b) a 1997 maint/gnulib/lib/mini-gmp.c mp_size_t an = GMP_ABS (a->_mp_size); a 2002 maint/gnulib/lib/mini-gmp.c cmp = mpn_cmp4 (a->_mp_d, an, b->_mp_d, bn); a 2006 maint/gnulib/lib/mini-gmp.c gmp_assert_nocarry (mpn_sub (rp, a->_mp_d, an, b->_mp_d, bn)); a 2012 maint/gnulib/lib/mini-gmp.c gmp_assert_nocarry (mpn_sub (rp, b->_mp_d, bn, a->_mp_d, an)); a 2020 maint/gnulib/lib/mini-gmp.c mpz_add (mpz_t r, const mpz_t a, const mpz_t b) a 2024 maint/gnulib/lib/mini-gmp.c if ( (a->_mp_size ^ b->_mp_size) >= 0) a 2025 maint/gnulib/lib/mini-gmp.c rn = mpz_abs_add (r, a, b); a 2027 maint/gnulib/lib/mini-gmp.c rn = mpz_abs_sub (r, a, b); a 2029 maint/gnulib/lib/mini-gmp.c r->_mp_size = a->_mp_size >= 0 ? rn : - rn; a 2033 maint/gnulib/lib/mini-gmp.c mpz_sub (mpz_t r, const mpz_t a, const mpz_t b) a 2037 maint/gnulib/lib/mini-gmp.c if ( (a->_mp_size ^ b->_mp_size) >= 0) a 2038 maint/gnulib/lib/mini-gmp.c rn = mpz_abs_sub (r, a, b); a 2040 maint/gnulib/lib/mini-gmp.c rn = mpz_abs_add (r, a, b); a 2042 maint/gnulib/lib/mini-gmp.c r->_mp_size = a->_mp_size >= 0 ? rn : - rn; a 2531 maint/gnulib/lib/mini-gmp.c mpz_congruent_p (const mpz_t a, const mpz_t b, const mpz_t m) a 2538 maint/gnulib/lib/mini-gmp.c return (mpz_cmp (a, b) == 0); a 2541 maint/gnulib/lib/mini-gmp.c mpz_sub (t, a, b); a 3379 maint/gnulib/lib/mini-gmp.c gmp_jacobi_coprime (mp_limb_t a, mp_limb_t b) a 3384 maint/gnulib/lib/mini-gmp.c assert (a != 0); a 3391 maint/gnulib/lib/mini-gmp.c gmp_ctz(c, a); a 3392 maint/gnulib/lib/mini-gmp.c a >>= 1; a 3396 maint/gnulib/lib/mini-gmp.c a >>= c; a 3399 maint/gnulib/lib/mini-gmp.c if (a < b) a 3401 maint/gnulib/lib/mini-gmp.c if (a == 0) a 3403 maint/gnulib/lib/mini-gmp.c bit ^= a & b; a 3404 maint/gnulib/lib/mini-gmp.c a = b - a; a 3405 maint/gnulib/lib/mini-gmp.c b -= a; a 3409 maint/gnulib/lib/mini-gmp.c a -= b; a 3410 maint/gnulib/lib/mini-gmp.c assert (a != 0); a 3413 maint/gnulib/lib/mini-gmp.c gmp_ctz(c, a); a 52 maint/gnulib/lib/minmax.h # define MAX(a,b) ((a) > (b) ? (a) : (b)) a 57 maint/gnulib/lib/minmax.h # define MIN(a,b) ((a) < (b) ? (a) : (b)) a 139 maint/gnulib/lib/mktime.c shr (long_int a, int b) a 143 maint/gnulib/lib/mktime.c ? a >> b a 144 maint/gnulib/lib/mktime.c : (a + (a < 0)) / (one << b) - (a < 0)); a 189 maint/gnulib/lib/mktime.c isdst_differ (int a, int b) a 191 maint/gnulib/lib/mktime.c return (!a != !b) && (0 <= a) && (0 <= b); a 232 maint/gnulib/lib/mktime.c long_int_avg (long_int a, long_int b) a 234 maint/gnulib/lib/mktime.c return shr (a, 1) + shr (b, 1) + ((a | b) & 1); a 43 maint/gnulib/lib/mpsort.c size_t a = 0; a 53 maint/gnulib/lib/mpsort.c ba = base[a]; a 60 maint/gnulib/lib/mpsort.c a++; a 61 maint/gnulib/lib/mpsort.c if (a == alim) a 63 maint/gnulib/lib/mpsort.c a = b; a 67 maint/gnulib/lib/mpsort.c ba = base[a]; a 78 maint/gnulib/lib/mpsort.c memcpy (tmp, base + a, (alim - a) * sizeof *base); a 62 maint/gnulib/lib/nproc.c #define ARRAY_SIZE(a) (sizeof (a) / sizeof ((a)[0])) a 105 maint/gnulib/lib/nstrftime.c #define SHR(a, b) \ a 107 maint/gnulib/lib/nstrftime.c ? (a) >> (b) \ a 108 maint/gnulib/lib/nstrftime.c : ((a) + ((a) < 0)) / (1 << (b)) - ((a) < 0)) a 339 maint/gnulib/lib/nstrftime.c tm_diff (const struct tm *a, const struct tm *b) a 344 maint/gnulib/lib/nstrftime.c int a4 = SHR (a->tm_year, 2) + SHR (TM_YEAR_BASE, 2) - ! (a->tm_year & 3); a 351 maint/gnulib/lib/nstrftime.c int years = a->tm_year - b->tm_year; a 353 maint/gnulib/lib/nstrftime.c + (a->tm_yday - b->tm_yday)); a 354 maint/gnulib/lib/nstrftime.c return (60 * (60 * (24 * days + (a->tm_hour - b->tm_hour)) a 355 maint/gnulib/lib/nstrftime.c + (a->tm_min - b->tm_min)) a 356 maint/gnulib/lib/nstrftime.c + (a->tm_sec - b->tm_sec)); a 61 maint/gnulib/lib/obstack.c # define MAX(a,b) ((a) > (b) ? (a) : (b)) a 95 maint/gnulib/lib/parse-datetime.y #define SHR(a, b) \ a 97 maint/gnulib/lib/parse-datetime.y ? (a) >> (b) \ a 98 maint/gnulib/lib/parse-datetime.y : (a) / (1 << (b)) - ((a) % (1 << (b)) < 0)) a 102 maint/gnulib/lib/parse-datetime.y #define STREQ(a, b) (strcmp (a, b) == 0) a 1324 maint/gnulib/lib/parse-datetime.y tm_diff (const struct tm *a, const struct tm *b) a 1329 maint/gnulib/lib/parse-datetime.y int a4 = SHR (a->tm_year, 2) + SHR (TM_YEAR_BASE, 2) - ! (a->tm_year & 3); a 1336 maint/gnulib/lib/parse-datetime.y int years = a->tm_year - b->tm_year; a 1338 maint/gnulib/lib/parse-datetime.y + (a->tm_yday - b->tm_yday)); a 1339 maint/gnulib/lib/parse-datetime.y return (60 * (60 * (24 * days + (a->tm_hour - b->tm_hour)) a 1340 maint/gnulib/lib/parse-datetime.y + (a->tm_min - b->tm_min)) a 1341 maint/gnulib/lib/parse-datetime.y + (a->tm_sec - b->tm_sec)); a 92 maint/gnulib/lib/physmem.c #define ARRAY_SIZE(a) (sizeof (a) / sizeof ((a)[0])) a 36 maint/gnulib/lib/printf-args.c PRINTF_FETCHARGS (va_list args, arguments *a) a 41 maint/gnulib/lib/printf-args.c for (i = 0, ap = &a->arg[0]; i < a->count; i++, ap++) a 45 maint/gnulib/lib/printf-args.c ap->a.a_schar = va_arg (args, /*signed char*/ int); a 48 maint/gnulib/lib/printf-args.c ap->a.a_uchar = va_arg (args, /*unsigned char*/ int); a 51 maint/gnulib/lib/printf-args.c ap->a.a_short = va_arg (args, /*short*/ int); a 54 maint/gnulib/lib/printf-args.c ap->a.a_ushort = va_arg (args, /*unsigned short*/ int); a 57 maint/gnulib/lib/printf-args.c ap->a.a_int = va_arg (args, int); a 60 maint/gnulib/lib/printf-args.c ap->a.a_uint = va_arg (args, unsigned int); a 63 maint/gnulib/lib/printf-args.c ap->a.a_longint = va_arg (args, long int); a 66 maint/gnulib/lib/printf-args.c ap->a.a_ulongint = va_arg (args, unsigned long int); a 69 maint/gnulib/lib/printf-args.c ap->a.a_longlongint = va_arg (args, long long int); a 72 maint/gnulib/lib/printf-args.c ap->a.a_ulonglongint = va_arg (args, unsigned long long int); a 75 maint/gnulib/lib/printf-args.c ap->a.a_double = va_arg (args, double); a 78 maint/gnulib/lib/printf-args.c ap->a.a_longdouble = va_arg (args, long double); a 81 maint/gnulib/lib/printf-args.c ap->a.a_char = va_arg (args, int); a 88 maint/gnulib/lib/printf-args.c ap->a.a_wide_char = a 95 maint/gnulib/lib/printf-args.c ap->a.a_string = va_arg (args, const char *); a 99 maint/gnulib/lib/printf-args.c if (ap->a.a_string == NULL) a 100 maint/gnulib/lib/printf-args.c ap->a.a_string = "(NULL)"; a 104 maint/gnulib/lib/printf-args.c ap->a.a_wide_string = va_arg (args, const wchar_t *); a 108 maint/gnulib/lib/printf-args.c if (ap->a.a_wide_string == NULL) a 117 maint/gnulib/lib/printf-args.c ap->a.a_wide_string = wide_null_string; a 122 maint/gnulib/lib/printf-args.c ap->a.a_pointer = va_arg (args, void *); a 125 maint/gnulib/lib/printf-args.c ap->a.a_count_schar_pointer = va_arg (args, signed char *); a 128 maint/gnulib/lib/printf-args.c ap->a.a_count_short_pointer = va_arg (args, short *); a 131 maint/gnulib/lib/printf-args.c ap->a.a_count_int_pointer = va_arg (args, int *); a 134 maint/gnulib/lib/printf-args.c ap->a.a_count_longint_pointer = va_arg (args, long int *); a 137 maint/gnulib/lib/printf-args.c ap->a.a_count_longlongint_pointer = va_arg (args, long long int *); a 142 maint/gnulib/lib/printf-args.c ap->a.a_u8_string = va_arg (args, const uint8_t *); a 146 maint/gnulib/lib/printf-args.c if (ap->a.a_u8_string == NULL) a 150 maint/gnulib/lib/printf-args.c ap->a.a_u8_string = u8_null_string; a 154 maint/gnulib/lib/printf-args.c ap->a.a_u16_string = va_arg (args, const uint16_t *); a 158 maint/gnulib/lib/printf-args.c if (ap->a.a_u16_string == NULL) a 162 maint/gnulib/lib/printf-args.c ap->a.a_u16_string = u16_null_string; a 166 maint/gnulib/lib/printf-args.c ap->a.a_u32_string = va_arg (args, const uint32_t *); a 170 maint/gnulib/lib/printf-args.c if (ap->a.a_u32_string == NULL) a 174 maint/gnulib/lib/printf-args.c ap->a.a_u32_string = u32_null_string; a 126 maint/gnulib/lib/printf-args.h a; a 148 maint/gnulib/lib/printf-args.h int PRINTF_FETCHARGS (va_list args, arguments *a); a 74 maint/gnulib/lib/printf-parse.c PRINTF_PARSE (const CHAR_T *format, DIRECTIVES *d, arguments *a) a 87 maint/gnulib/lib/printf-parse.c a->count = 0; a 89 maint/gnulib/lib/printf-parse.c a->arg = a->direct_alloc_arg; a 106 maint/gnulib/lib/printf-parse.c memory = (argument *) (a->arg != a->direct_alloc_arg \ a 107 maint/gnulib/lib/printf-parse.c ? realloc (a->arg, memory_size) \ a 112 maint/gnulib/lib/printf-parse.c if (a->arg == a->direct_alloc_arg) \ a 113 maint/gnulib/lib/printf-parse.c memcpy (memory, a->arg, a->count * sizeof (argument)); \ a 114 maint/gnulib/lib/printf-parse.c a->arg = memory; \ a 116 maint/gnulib/lib/printf-parse.c while (a->count <= n) \ a 117 maint/gnulib/lib/printf-parse.c a->arg[a->count++].type = TYPE_NONE; \ a 118 maint/gnulib/lib/printf-parse.c if (a->arg[n].type == TYPE_NONE) \ a 119 maint/gnulib/lib/printf-parse.c a->arg[n].type = (_type_); \ a 120 maint/gnulib/lib/printf-parse.c else if (a->arg[n].type != (_type_)) \ a 603 maint/gnulib/lib/printf-parse.c if (a->arg != a->direct_alloc_arg) a 604 maint/gnulib/lib/printf-parse.c free (a->arg); a 611 maint/gnulib/lib/printf-parse.c if (a->arg != a->direct_alloc_arg) a 612 maint/gnulib/lib/printf-parse.c free (a->arg); a 175 maint/gnulib/lib/printf-parse.h ulc_printf_parse (const char *format, char_directives *d, arguments *a); a 177 maint/gnulib/lib/printf-parse.h u8_printf_parse (const uint8_t *format, u8_directives *d, arguments *a); a 180 maint/gnulib/lib/printf-parse.h arguments *a); a 183 maint/gnulib/lib/printf-parse.h arguments *a); a 190 maint/gnulib/lib/printf-parse.h int printf_parse (const char *format, char_directives *d, arguments *a); a 38 maint/gnulib/lib/qsort.c #define SWAP(a, b, size) \ a 42 maint/gnulib/lib/qsort.c char *__a = (a), *__b = (b); \ a 35 maint/gnulib/lib/qsort_r.c thunk_cmp (void *thunk, void const *a, void const *b) a 38 maint/gnulib/lib/qsort_r.c return th->cmp (a, b, th->arg); a 449 maint/gnulib/lib/regex_internal.h # define MAX(a,b) ((a) < (b) ? (b) : (a)) a 452 maint/gnulib/lib/regex_internal.h # define MIN(a,b) ((a) < (b) ? (a) : (b)) a 24 maint/gnulib/lib/same-inode.h # define SAME_INODE(a, b) \ a 25 maint/gnulib/lib/same-inode.h ((a).st_ino[0] == (b).st_ino[0] \ a 26 maint/gnulib/lib/same-inode.h && (a).st_ino[1] == (b).st_ino[1] \ a 27 maint/gnulib/lib/same-inode.h && (a).st_ino[2] == (b).st_ino[2] \ a 28 maint/gnulib/lib/same-inode.h && (a).st_dev == (b).st_dev) a 34 maint/gnulib/lib/same-inode.h # define SAME_INODE(a, b) \ a 35 maint/gnulib/lib/same-inode.h (!((a).st_ino == 0 && (a).st_dev == 0) \ a 36 maint/gnulib/lib/same-inode.h && (a).st_ino == (b).st_ino && (a).st_dev == (b).st_dev) a 39 maint/gnulib/lib/same-inode.h # define SAME_INODE(a, b) 0 a 42 maint/gnulib/lib/same-inode.h # define SAME_INODE(a, b) \ a 43 maint/gnulib/lib/same-inode.h ((a).st_ino == (b).st_ino \ a 44 maint/gnulib/lib/same-inode.h && (a).st_dev == (b).st_dev) a 45 maint/gnulib/lib/same.c # define MIN(a, b) ((a) < (b) ? (a) : (b)) a 51 maint/gnulib/lib/savedir.c direntry_cmp_name (void const *a, void const *b) a 53 maint/gnulib/lib/savedir.c direntry_t const *dea = a; a 63 maint/gnulib/lib/savedir.c direntry_cmp_inode (void const *a, void const *b) a 65 maint/gnulib/lib/savedir.c direntry_t const *dea = a; a 350 maint/gnulib/lib/set-permissions.c union { struct acl a; char room[128]; } u; a 353 maint/gnulib/lib/set-permissions.c u.a.acl_len = (char *) &u.a.acl_ext[0] - (char *) &u.a; /* no entries */ a 354 maint/gnulib/lib/set-permissions.c u.a.acl_mode = mode & ~(S_IXACL | 0777); a 355 maint/gnulib/lib/set-permissions.c u.a.u_access = (mode >> 6) & 7; a 356 maint/gnulib/lib/set-permissions.c u.a.g_access = (mode >> 3) & 7; a 357 maint/gnulib/lib/set-permissions.c u.a.o_access = mode & 7; a 361 maint/gnulib/lib/set-permissions.c type, &u.a, u.a.acl_len, mode); a 364 maint/gnulib/lib/set-permissions.c type, &u.a, u.a.acl_len, mode); a 370 maint/gnulib/lib/set-permissions.c union { nfs4_acl_int_t a; char room[128]; } u; a 374 maint/gnulib/lib/set-permissions.c u.a.aclVersion = NFS4_ACL_INT_STRUCT_VERSION; a 375 maint/gnulib/lib/set-permissions.c u.a.aclEntryN = 0; a 376 maint/gnulib/lib/set-permissions.c ace = &u.a.aclEntry[0]; a 392 maint/gnulib/lib/set-permissions.c u.a.aclEntryN++; a 409 maint/gnulib/lib/set-permissions.c u.a.aclEntryN++; a 426 maint/gnulib/lib/set-permissions.c u.a.aclEntryN++; a 428 maint/gnulib/lib/set-permissions.c u.a.aclLength = (char *) ace - (char *) &u.a; a 432 maint/gnulib/lib/set-permissions.c type, &u.a, u.a.aclLength, mode); a 435 maint/gnulib/lib/set-permissions.c type, &u.a, u.a.aclLength, mode); a 448 maint/gnulib/lib/set-permissions.c ctx->u.a.acl_len = (char *) &ctx->u.a.acl_ext[0] - (char *) &ctx->u.a; /* no entries */ a 449 maint/gnulib/lib/set-permissions.c ctx->u.a.acl_mode = ctx->mode & ~(S_IXACL | 0777); a 450 maint/gnulib/lib/set-permissions.c ctx->u.a.u_access = (ctx->mode >> 6) & 7; a 451 maint/gnulib/lib/set-permissions.c ctx->u.a.g_access = (ctx->mode >> 3) & 7; a 452 maint/gnulib/lib/set-permissions.c ctx->u.a.o_access = ctx->mode & 7; a 714 maint/gnulib/lib/set-permissions.c ret = fchacl (desc, &ctx->u.a, ctx->u.a.acl_len); a 716 maint/gnulib/lib/set-permissions.c ret = chacl ((char *) name, &ctx->u.a, ctx->u.a.acl_len); a 356 maint/gnulib/lib/setenv.c # define STREQ(a, b) (strcmp (a, b) == 0) a 229 maint/gnulib/lib/sha1.c uint32_t a = ctx->A; a 265 maint/gnulib/lib/sha1.c R( a, b, c, d, e, F1, K1, x[ 0] ); a 266 maint/gnulib/lib/sha1.c R( e, a, b, c, d, F1, K1, x[ 1] ); a 267 maint/gnulib/lib/sha1.c R( d, e, a, b, c, F1, K1, x[ 2] ); a 268 maint/gnulib/lib/sha1.c R( c, d, e, a, b, F1, K1, x[ 3] ); a 269 maint/gnulib/lib/sha1.c R( b, c, d, e, a, F1, K1, x[ 4] ); a 270 maint/gnulib/lib/sha1.c R( a, b, c, d, e, F1, K1, x[ 5] ); a 271 maint/gnulib/lib/sha1.c R( e, a, b, c, d, F1, K1, x[ 6] ); a 272 maint/gnulib/lib/sha1.c R( d, e, a, b, c, F1, K1, x[ 7] ); a 273 maint/gnulib/lib/sha1.c R( c, d, e, a, b, F1, K1, x[ 8] ); a 274 maint/gnulib/lib/sha1.c R( b, c, d, e, a, F1, K1, x[ 9] ); a 275 maint/gnulib/lib/sha1.c R( a, b, c, d, e, F1, K1, x[10] ); a 276 maint/gnulib/lib/sha1.c R( e, a, b, c, d, F1, K1, x[11] ); a 277 maint/gnulib/lib/sha1.c R( d, e, a, b, c, F1, K1, x[12] ); a 278 maint/gnulib/lib/sha1.c R( c, d, e, a, b, F1, K1, x[13] ); a 279 maint/gnulib/lib/sha1.c R( b, c, d, e, a, F1, K1, x[14] ); a 280 maint/gnulib/lib/sha1.c R( a, b, c, d, e, F1, K1, x[15] ); a 281 maint/gnulib/lib/sha1.c R( e, a, b, c, d, F1, K1, M(16) ); a 282 maint/gnulib/lib/sha1.c R( d, e, a, b, c, F1, K1, M(17) ); a 283 maint/gnulib/lib/sha1.c R( c, d, e, a, b, F1, K1, M(18) ); a 284 maint/gnulib/lib/sha1.c R( b, c, d, e, a, F1, K1, M(19) ); a 285 maint/gnulib/lib/sha1.c R( a, b, c, d, e, F2, K2, M(20) ); a 286 maint/gnulib/lib/sha1.c R( e, a, b, c, d, F2, K2, M(21) ); a 287 maint/gnulib/lib/sha1.c R( d, e, a, b, c, F2, K2, M(22) ); a 288 maint/gnulib/lib/sha1.c R( c, d, e, a, b, F2, K2, M(23) ); a 289 maint/gnulib/lib/sha1.c R( b, c, d, e, a, F2, K2, M(24) ); a 290 maint/gnulib/lib/sha1.c R( a, b, c, d, e, F2, K2, M(25) ); a 291 maint/gnulib/lib/sha1.c R( e, a, b, c, d, F2, K2, M(26) ); a 292 maint/gnulib/lib/sha1.c R( d, e, a, b, c, F2, K2, M(27) ); a 293 maint/gnulib/lib/sha1.c R( c, d, e, a, b, F2, K2, M(28) ); a 294 maint/gnulib/lib/sha1.c R( b, c, d, e, a, F2, K2, M(29) ); a 295 maint/gnulib/lib/sha1.c R( a, b, c, d, e, F2, K2, M(30) ); a 296 maint/gnulib/lib/sha1.c R( e, a, b, c, d, F2, K2, M(31) ); a 297 maint/gnulib/lib/sha1.c R( d, e, a, b, c, F2, K2, M(32) ); a 298 maint/gnulib/lib/sha1.c R( c, d, e, a, b, F2, K2, M(33) ); a 299 maint/gnulib/lib/sha1.c R( b, c, d, e, a, F2, K2, M(34) ); a 300 maint/gnulib/lib/sha1.c R( a, b, c, d, e, F2, K2, M(35) ); a 301 maint/gnulib/lib/sha1.c R( e, a, b, c, d, F2, K2, M(36) ); a 302 maint/gnulib/lib/sha1.c R( d, e, a, b, c, F2, K2, M(37) ); a 303 maint/gnulib/lib/sha1.c R( c, d, e, a, b, F2, K2, M(38) ); a 304 maint/gnulib/lib/sha1.c R( b, c, d, e, a, F2, K2, M(39) ); a 305 maint/gnulib/lib/sha1.c R( a, b, c, d, e, F3, K3, M(40) ); a 306 maint/gnulib/lib/sha1.c R( e, a, b, c, d, F3, K3, M(41) ); a 307 maint/gnulib/lib/sha1.c R( d, e, a, b, c, F3, K3, M(42) ); a 308 maint/gnulib/lib/sha1.c R( c, d, e, a, b, F3, K3, M(43) ); a 309 maint/gnulib/lib/sha1.c R( b, c, d, e, a, F3, K3, M(44) ); a 310 maint/gnulib/lib/sha1.c R( a, b, c, d, e, F3, K3, M(45) ); a 311 maint/gnulib/lib/sha1.c R( e, a, b, c, d, F3, K3, M(46) ); a 312 maint/gnulib/lib/sha1.c R( d, e, a, b, c, F3, K3, M(47) ); a 313 maint/gnulib/lib/sha1.c R( c, d, e, a, b, F3, K3, M(48) ); a 314 maint/gnulib/lib/sha1.c R( b, c, d, e, a, F3, K3, M(49) ); a 315 maint/gnulib/lib/sha1.c R( a, b, c, d, e, F3, K3, M(50) ); a 316 maint/gnulib/lib/sha1.c R( e, a, b, c, d, F3, K3, M(51) ); a 317 maint/gnulib/lib/sha1.c R( d, e, a, b, c, F3, K3, M(52) ); a 318 maint/gnulib/lib/sha1.c R( c, d, e, a, b, F3, K3, M(53) ); a 319 maint/gnulib/lib/sha1.c R( b, c, d, e, a, F3, K3, M(54) ); a 320 maint/gnulib/lib/sha1.c R( a, b, c, d, e, F3, K3, M(55) ); a 321 maint/gnulib/lib/sha1.c R( e, a, b, c, d, F3, K3, M(56) ); a 322 maint/gnulib/lib/sha1.c R( d, e, a, b, c, F3, K3, M(57) ); a 323 maint/gnulib/lib/sha1.c R( c, d, e, a, b, F3, K3, M(58) ); a 324 maint/gnulib/lib/sha1.c R( b, c, d, e, a, F3, K3, M(59) ); a 325 maint/gnulib/lib/sha1.c R( a, b, c, d, e, F4, K4, M(60) ); a 326 maint/gnulib/lib/sha1.c R( e, a, b, c, d, F4, K4, M(61) ); a 327 maint/gnulib/lib/sha1.c R( d, e, a, b, c, F4, K4, M(62) ); a 328 maint/gnulib/lib/sha1.c R( c, d, e, a, b, F4, K4, M(63) ); a 329 maint/gnulib/lib/sha1.c R( b, c, d, e, a, F4, K4, M(64) ); a 330 maint/gnulib/lib/sha1.c R( a, b, c, d, e, F4, K4, M(65) ); a 331 maint/gnulib/lib/sha1.c R( e, a, b, c, d, F4, K4, M(66) ); a 332 maint/gnulib/lib/sha1.c R( d, e, a, b, c, F4, K4, M(67) ); a 333 maint/gnulib/lib/sha1.c R( c, d, e, a, b, F4, K4, M(68) ); a 334 maint/gnulib/lib/sha1.c R( b, c, d, e, a, F4, K4, M(69) ); a 335 maint/gnulib/lib/sha1.c R( a, b, c, d, e, F4, K4, M(70) ); a 336 maint/gnulib/lib/sha1.c R( e, a, b, c, d, F4, K4, M(71) ); a 337 maint/gnulib/lib/sha1.c R( d, e, a, b, c, F4, K4, M(72) ); a 338 maint/gnulib/lib/sha1.c R( c, d, e, a, b, F4, K4, M(73) ); a 339 maint/gnulib/lib/sha1.c R( b, c, d, e, a, F4, K4, M(74) ); a 340 maint/gnulib/lib/sha1.c R( a, b, c, d, e, F4, K4, M(75) ); a 341 maint/gnulib/lib/sha1.c R( e, a, b, c, d, F4, K4, M(76) ); a 342 maint/gnulib/lib/sha1.c R( d, e, a, b, c, F4, K4, M(77) ); a 343 maint/gnulib/lib/sha1.c R( c, d, e, a, b, F4, K4, M(78) ); a 344 maint/gnulib/lib/sha1.c R( b, c, d, e, a, F4, K4, M(79) ); a 346 maint/gnulib/lib/sha1.c a = ctx->A += a; a 304 maint/gnulib/lib/sha256.c uint32_t a = ctx->state[0]; a 350 maint/gnulib/lib/sha256.c R( a, b, c, d, e, f, g, h, K( 0), x[ 0] ); a 351 maint/gnulib/lib/sha256.c R( h, a, b, c, d, e, f, g, K( 1), x[ 1] ); a 352 maint/gnulib/lib/sha256.c R( g, h, a, b, c, d, e, f, K( 2), x[ 2] ); a 353 maint/gnulib/lib/sha256.c R( f, g, h, a, b, c, d, e, K( 3), x[ 3] ); a 354 maint/gnulib/lib/sha256.c R( e, f, g, h, a, b, c, d, K( 4), x[ 4] ); a 355 maint/gnulib/lib/sha256.c R( d, e, f, g, h, a, b, c, K( 5), x[ 5] ); a 356 maint/gnulib/lib/sha256.c R( c, d, e, f, g, h, a, b, K( 6), x[ 6] ); a 357 maint/gnulib/lib/sha256.c R( b, c, d, e, f, g, h, a, K( 7), x[ 7] ); a 358 maint/gnulib/lib/sha256.c R( a, b, c, d, e, f, g, h, K( 8), x[ 8] ); a 359 maint/gnulib/lib/sha256.c R( h, a, b, c, d, e, f, g, K( 9), x[ 9] ); a 360 maint/gnulib/lib/sha256.c R( g, h, a, b, c, d, e, f, K(10), x[10] ); a 361 maint/gnulib/lib/sha256.c R( f, g, h, a, b, c, d, e, K(11), x[11] ); a 362 maint/gnulib/lib/sha256.c R( e, f, g, h, a, b, c, d, K(12), x[12] ); a 363 maint/gnulib/lib/sha256.c R( d, e, f, g, h, a, b, c, K(13), x[13] ); a 364 maint/gnulib/lib/sha256.c R( c, d, e, f, g, h, a, b, K(14), x[14] ); a 365 maint/gnulib/lib/sha256.c R( b, c, d, e, f, g, h, a, K(15), x[15] ); a 366 maint/gnulib/lib/sha256.c R( a, b, c, d, e, f, g, h, K(16), M(16) ); a 367 maint/gnulib/lib/sha256.c R( h, a, b, c, d, e, f, g, K(17), M(17) ); a 368 maint/gnulib/lib/sha256.c R( g, h, a, b, c, d, e, f, K(18), M(18) ); a 369 maint/gnulib/lib/sha256.c R( f, g, h, a, b, c, d, e, K(19), M(19) ); a 370 maint/gnulib/lib/sha256.c R( e, f, g, h, a, b, c, d, K(20), M(20) ); a 371 maint/gnulib/lib/sha256.c R( d, e, f, g, h, a, b, c, K(21), M(21) ); a 372 maint/gnulib/lib/sha256.c R( c, d, e, f, g, h, a, b, K(22), M(22) ); a 373 maint/gnulib/lib/sha256.c R( b, c, d, e, f, g, h, a, K(23), M(23) ); a 374 maint/gnulib/lib/sha256.c R( a, b, c, d, e, f, g, h, K(24), M(24) ); a 375 maint/gnulib/lib/sha256.c R( h, a, b, c, d, e, f, g, K(25), M(25) ); a 376 maint/gnulib/lib/sha256.c R( g, h, a, b, c, d, e, f, K(26), M(26) ); a 377 maint/gnulib/lib/sha256.c R( f, g, h, a, b, c, d, e, K(27), M(27) ); a 378 maint/gnulib/lib/sha256.c R( e, f, g, h, a, b, c, d, K(28), M(28) ); a 379 maint/gnulib/lib/sha256.c R( d, e, f, g, h, a, b, c, K(29), M(29) ); a 380 maint/gnulib/lib/sha256.c R( c, d, e, f, g, h, a, b, K(30), M(30) ); a 381 maint/gnulib/lib/sha256.c R( b, c, d, e, f, g, h, a, K(31), M(31) ); a 382 maint/gnulib/lib/sha256.c R( a, b, c, d, e, f, g, h, K(32), M(32) ); a 383 maint/gnulib/lib/sha256.c R( h, a, b, c, d, e, f, g, K(33), M(33) ); a 384 maint/gnulib/lib/sha256.c R( g, h, a, b, c, d, e, f, K(34), M(34) ); a 385 maint/gnulib/lib/sha256.c R( f, g, h, a, b, c, d, e, K(35), M(35) ); a 386 maint/gnulib/lib/sha256.c R( e, f, g, h, a, b, c, d, K(36), M(36) ); a 387 maint/gnulib/lib/sha256.c R( d, e, f, g, h, a, b, c, K(37), M(37) ); a 388 maint/gnulib/lib/sha256.c R( c, d, e, f, g, h, a, b, K(38), M(38) ); a 389 maint/gnulib/lib/sha256.c R( b, c, d, e, f, g, h, a, K(39), M(39) ); a 390 maint/gnulib/lib/sha256.c R( a, b, c, d, e, f, g, h, K(40), M(40) ); a 391 maint/gnulib/lib/sha256.c R( h, a, b, c, d, e, f, g, K(41), M(41) ); a 392 maint/gnulib/lib/sha256.c R( g, h, a, b, c, d, e, f, K(42), M(42) ); a 393 maint/gnulib/lib/sha256.c R( f, g, h, a, b, c, d, e, K(43), M(43) ); a 394 maint/gnulib/lib/sha256.c R( e, f, g, h, a, b, c, d, K(44), M(44) ); a 395 maint/gnulib/lib/sha256.c R( d, e, f, g, h, a, b, c, K(45), M(45) ); a 396 maint/gnulib/lib/sha256.c R( c, d, e, f, g, h, a, b, K(46), M(46) ); a 397 maint/gnulib/lib/sha256.c R( b, c, d, e, f, g, h, a, K(47), M(47) ); a 398 maint/gnulib/lib/sha256.c R( a, b, c, d, e, f, g, h, K(48), M(48) ); a 399 maint/gnulib/lib/sha256.c R( h, a, b, c, d, e, f, g, K(49), M(49) ); a 400 maint/gnulib/lib/sha256.c R( g, h, a, b, c, d, e, f, K(50), M(50) ); a 401 maint/gnulib/lib/sha256.c R( f, g, h, a, b, c, d, e, K(51), M(51) ); a 402 maint/gnulib/lib/sha256.c R( e, f, g, h, a, b, c, d, K(52), M(52) ); a 403 maint/gnulib/lib/sha256.c R( d, e, f, g, h, a, b, c, K(53), M(53) ); a 404 maint/gnulib/lib/sha256.c R( c, d, e, f, g, h, a, b, K(54), M(54) ); a 405 maint/gnulib/lib/sha256.c R( b, c, d, e, f, g, h, a, K(55), M(55) ); a 406 maint/gnulib/lib/sha256.c R( a, b, c, d, e, f, g, h, K(56), M(56) ); a 407 maint/gnulib/lib/sha256.c R( h, a, b, c, d, e, f, g, K(57), M(57) ); a 408 maint/gnulib/lib/sha256.c R( g, h, a, b, c, d, e, f, K(58), M(58) ); a 409 maint/gnulib/lib/sha256.c R( f, g, h, a, b, c, d, e, K(59), M(59) ); a 410 maint/gnulib/lib/sha256.c R( e, f, g, h, a, b, c, d, K(60), M(60) ); a 411 maint/gnulib/lib/sha256.c R( d, e, f, g, h, a, b, c, K(61), M(61) ); a 412 maint/gnulib/lib/sha256.c R( c, d, e, f, g, h, a, b, K(62), M(62) ); a 413 maint/gnulib/lib/sha256.c R( b, c, d, e, f, g, h, a, K(63), M(63) ); a 415 maint/gnulib/lib/sha256.c a = ctx->state[0] += a; a 328 maint/gnulib/lib/sha512.c u64 a = ctx->state[0]; a 379 maint/gnulib/lib/sha512.c R( a, b, c, d, e, f, g, h, K( 0), x[ 0] ); a 380 maint/gnulib/lib/sha512.c R( h, a, b, c, d, e, f, g, K( 1), x[ 1] ); a 381 maint/gnulib/lib/sha512.c R( g, h, a, b, c, d, e, f, K( 2), x[ 2] ); a 382 maint/gnulib/lib/sha512.c R( f, g, h, a, b, c, d, e, K( 3), x[ 3] ); a 383 maint/gnulib/lib/sha512.c R( e, f, g, h, a, b, c, d, K( 4), x[ 4] ); a 384 maint/gnulib/lib/sha512.c R( d, e, f, g, h, a, b, c, K( 5), x[ 5] ); a 385 maint/gnulib/lib/sha512.c R( c, d, e, f, g, h, a, b, K( 6), x[ 6] ); a 386 maint/gnulib/lib/sha512.c R( b, c, d, e, f, g, h, a, K( 7), x[ 7] ); a 387 maint/gnulib/lib/sha512.c R( a, b, c, d, e, f, g, h, K( 8), x[ 8] ); a 388 maint/gnulib/lib/sha512.c R( h, a, b, c, d, e, f, g, K( 9), x[ 9] ); a 389 maint/gnulib/lib/sha512.c R( g, h, a, b, c, d, e, f, K(10), x[10] ); a 390 maint/gnulib/lib/sha512.c R( f, g, h, a, b, c, d, e, K(11), x[11] ); a 391 maint/gnulib/lib/sha512.c R( e, f, g, h, a, b, c, d, K(12), x[12] ); a 392 maint/gnulib/lib/sha512.c R( d, e, f, g, h, a, b, c, K(13), x[13] ); a 393 maint/gnulib/lib/sha512.c R( c, d, e, f, g, h, a, b, K(14), x[14] ); a 394 maint/gnulib/lib/sha512.c R( b, c, d, e, f, g, h, a, K(15), x[15] ); a 395 maint/gnulib/lib/sha512.c R( a, b, c, d, e, f, g, h, K(16), M(16) ); a 396 maint/gnulib/lib/sha512.c R( h, a, b, c, d, e, f, g, K(17), M(17) ); a 397 maint/gnulib/lib/sha512.c R( g, h, a, b, c, d, e, f, K(18), M(18) ); a 398 maint/gnulib/lib/sha512.c R( f, g, h, a, b, c, d, e, K(19), M(19) ); a 399 maint/gnulib/lib/sha512.c R( e, f, g, h, a, b, c, d, K(20), M(20) ); a 400 maint/gnulib/lib/sha512.c R( d, e, f, g, h, a, b, c, K(21), M(21) ); a 401 maint/gnulib/lib/sha512.c R( c, d, e, f, g, h, a, b, K(22), M(22) ); a 402 maint/gnulib/lib/sha512.c R( b, c, d, e, f, g, h, a, K(23), M(23) ); a 403 maint/gnulib/lib/sha512.c R( a, b, c, d, e, f, g, h, K(24), M(24) ); a 404 maint/gnulib/lib/sha512.c R( h, a, b, c, d, e, f, g, K(25), M(25) ); a 405 maint/gnulib/lib/sha512.c R( g, h, a, b, c, d, e, f, K(26), M(26) ); a 406 maint/gnulib/lib/sha512.c R( f, g, h, a, b, c, d, e, K(27), M(27) ); a 407 maint/gnulib/lib/sha512.c R( e, f, g, h, a, b, c, d, K(28), M(28) ); a 408 maint/gnulib/lib/sha512.c R( d, e, f, g, h, a, b, c, K(29), M(29) ); a 409 maint/gnulib/lib/sha512.c R( c, d, e, f, g, h, a, b, K(30), M(30) ); a 410 maint/gnulib/lib/sha512.c R( b, c, d, e, f, g, h, a, K(31), M(31) ); a 411 maint/gnulib/lib/sha512.c R( a, b, c, d, e, f, g, h, K(32), M(32) ); a 412 maint/gnulib/lib/sha512.c R( h, a, b, c, d, e, f, g, K(33), M(33) ); a 413 maint/gnulib/lib/sha512.c R( g, h, a, b, c, d, e, f, K(34), M(34) ); a 414 maint/gnulib/lib/sha512.c R( f, g, h, a, b, c, d, e, K(35), M(35) ); a 415 maint/gnulib/lib/sha512.c R( e, f, g, h, a, b, c, d, K(36), M(36) ); a 416 maint/gnulib/lib/sha512.c R( d, e, f, g, h, a, b, c, K(37), M(37) ); a 417 maint/gnulib/lib/sha512.c R( c, d, e, f, g, h, a, b, K(38), M(38) ); a 418 maint/gnulib/lib/sha512.c R( b, c, d, e, f, g, h, a, K(39), M(39) ); a 419 maint/gnulib/lib/sha512.c R( a, b, c, d, e, f, g, h, K(40), M(40) ); a 420 maint/gnulib/lib/sha512.c R( h, a, b, c, d, e, f, g, K(41), M(41) ); a 421 maint/gnulib/lib/sha512.c R( g, h, a, b, c, d, e, f, K(42), M(42) ); a 422 maint/gnulib/lib/sha512.c R( f, g, h, a, b, c, d, e, K(43), M(43) ); a 423 maint/gnulib/lib/sha512.c R( e, f, g, h, a, b, c, d, K(44), M(44) ); a 424 maint/gnulib/lib/sha512.c R( d, e, f, g, h, a, b, c, K(45), M(45) ); a 425 maint/gnulib/lib/sha512.c R( c, d, e, f, g, h, a, b, K(46), M(46) ); a 426 maint/gnulib/lib/sha512.c R( b, c, d, e, f, g, h, a, K(47), M(47) ); a 427 maint/gnulib/lib/sha512.c R( a, b, c, d, e, f, g, h, K(48), M(48) ); a 428 maint/gnulib/lib/sha512.c R( h, a, b, c, d, e, f, g, K(49), M(49) ); a 429 maint/gnulib/lib/sha512.c R( g, h, a, b, c, d, e, f, K(50), M(50) ); a 430 maint/gnulib/lib/sha512.c R( f, g, h, a, b, c, d, e, K(51), M(51) ); a 431 maint/gnulib/lib/sha512.c R( e, f, g, h, a, b, c, d, K(52), M(52) ); a 432 maint/gnulib/lib/sha512.c R( d, e, f, g, h, a, b, c, K(53), M(53) ); a 433 maint/gnulib/lib/sha512.c R( c, d, e, f, g, h, a, b, K(54), M(54) ); a 434 maint/gnulib/lib/sha512.c R( b, c, d, e, f, g, h, a, K(55), M(55) ); a 435 maint/gnulib/lib/sha512.c R( a, b, c, d, e, f, g, h, K(56), M(56) ); a 436 maint/gnulib/lib/sha512.c R( h, a, b, c, d, e, f, g, K(57), M(57) ); a 437 maint/gnulib/lib/sha512.c R( g, h, a, b, c, d, e, f, K(58), M(58) ); a 438 maint/gnulib/lib/sha512.c R( f, g, h, a, b, c, d, e, K(59), M(59) ); a 439 maint/gnulib/lib/sha512.c R( e, f, g, h, a, b, c, d, K(60), M(60) ); a 440 maint/gnulib/lib/sha512.c R( d, e, f, g, h, a, b, c, K(61), M(61) ); a 441 maint/gnulib/lib/sha512.c R( c, d, e, f, g, h, a, b, K(62), M(62) ); a 442 maint/gnulib/lib/sha512.c R( b, c, d, e, f, g, h, a, K(63), M(63) ); a 443 maint/gnulib/lib/sha512.c R( a, b, c, d, e, f, g, h, K(64), M(64) ); a 444 maint/gnulib/lib/sha512.c R( h, a, b, c, d, e, f, g, K(65), M(65) ); a 445 maint/gnulib/lib/sha512.c R( g, h, a, b, c, d, e, f, K(66), M(66) ); a 446 maint/gnulib/lib/sha512.c R( f, g, h, a, b, c, d, e, K(67), M(67) ); a 447 maint/gnulib/lib/sha512.c R( e, f, g, h, a, b, c, d, K(68), M(68) ); a 448 maint/gnulib/lib/sha512.c R( d, e, f, g, h, a, b, c, K(69), M(69) ); a 449 maint/gnulib/lib/sha512.c R( c, d, e, f, g, h, a, b, K(70), M(70) ); a 450 maint/gnulib/lib/sha512.c R( b, c, d, e, f, g, h, a, K(71), M(71) ); a 451 maint/gnulib/lib/sha512.c R( a, b, c, d, e, f, g, h, K(72), M(72) ); a 452 maint/gnulib/lib/sha512.c R( h, a, b, c, d, e, f, g, K(73), M(73) ); a 453 maint/gnulib/lib/sha512.c R( g, h, a, b, c, d, e, f, K(74), M(74) ); a 454 maint/gnulib/lib/sha512.c R( f, g, h, a, b, c, d, e, K(75), M(75) ); a 455 maint/gnulib/lib/sha512.c R( e, f, g, h, a, b, c, d, K(76), M(76) ); a 456 maint/gnulib/lib/sha512.c R( d, e, f, g, h, a, b, c, K(77), M(77) ); a 457 maint/gnulib/lib/sha512.c R( c, d, e, f, g, h, a, b, K(78), M(78) ); a 458 maint/gnulib/lib/sha512.c R( b, c, d, e, f, g, h, a, K(79), M(79) ); a 460 maint/gnulib/lib/sha512.c a = ctx->state[0] = u64plus (ctx->state[0], a); a 38 maint/gnulib/lib/sig-handler.h get_handler (struct sigaction const *a) a 46 maint/gnulib/lib/sig-handler.h return a->sa_handler; a 269 maint/gnulib/lib/sm3.c uint32_t a = ctx->state[0]; a 328 maint/gnulib/lib/sm3.c a, b, c, d, e, f, g, h); a 330 maint/gnulib/lib/sm3.c R1( a, b, c, d, e, f, g, h, T( 0), W1( 0), W1( 4) ); a 331 maint/gnulib/lib/sm3.c R1( d, a, b, c, h, e, f, g, T( 1), W1( 1), W1( 5) ); a 332 maint/gnulib/lib/sm3.c R1( c, d, a, b, g, h, e, f, T( 2), W1( 2), W1( 6) ); a 333 maint/gnulib/lib/sm3.c R1( b, c, d, a, f, g, h, e, T( 3), W1( 3), W1( 7) ); a 334 maint/gnulib/lib/sm3.c R1( a, b, c, d, e, f, g, h, T( 4), W1( 4), W1( 8) ); a 335 maint/gnulib/lib/sm3.c R1( d, a, b, c, h, e, f, g, T( 5), W1( 5), W1( 9) ); a 336 maint/gnulib/lib/sm3.c R1( c, d, a, b, g, h, e, f, T( 6), W1( 6), W1(10) ); a 337 maint/gnulib/lib/sm3.c R1( b, c, d, a, f, g, h, e, T( 7), W1( 7), W1(11) ); a 338 maint/gnulib/lib/sm3.c R1( a, b, c, d, e, f, g, h, T( 8), W1( 8), W1(12) ); a 339 maint/gnulib/lib/sm3.c R1( d, a, b, c, h, e, f, g, T( 9), W1( 9), W1(13) ); a 340 maint/gnulib/lib/sm3.c R1( c, d, a, b, g, h, e, f, T(10), W1(10), W1(14) ); a 341 maint/gnulib/lib/sm3.c R1( b, c, d, a, f, g, h, e, T(11), W1(11), W1(15) ); a 342 maint/gnulib/lib/sm3.c R1( a, b, c, d, e, f, g, h, T(12), W1(12), W2(16) ); a 343 maint/gnulib/lib/sm3.c R1( d, a, b, c, h, e, f, g, T(13), W1(13), W2(17) ); a 344 maint/gnulib/lib/sm3.c R1( c, d, a, b, g, h, e, f, T(14), W1(14), W2(18) ); a 345 maint/gnulib/lib/sm3.c R1( b, c, d, a, f, g, h, e, T(15), W1(15), W2(19) ); a 346 maint/gnulib/lib/sm3.c R2( a, b, c, d, e, f, g, h, T(16), W1(16), W2(20) ); a 347 maint/gnulib/lib/sm3.c R2( d, a, b, c, h, e, f, g, T(17), W1(17), W2(21) ); a 348 maint/gnulib/lib/sm3.c R2( c, d, a, b, g, h, e, f, T(18), W1(18), W2(22) ); a 349 maint/gnulib/lib/sm3.c R2( b, c, d, a, f, g, h, e, T(19), W1(19), W2(23) ); a 350 maint/gnulib/lib/sm3.c R2( a, b, c, d, e, f, g, h, T(20), W1(20), W2(24) ); a 351 maint/gnulib/lib/sm3.c R2( d, a, b, c, h, e, f, g, T(21), W1(21), W2(25) ); a 352 maint/gnulib/lib/sm3.c R2( c, d, a, b, g, h, e, f, T(22), W1(22), W2(26) ); a 353 maint/gnulib/lib/sm3.c R2( b, c, d, a, f, g, h, e, T(23), W1(23), W2(27) ); a 354 maint/gnulib/lib/sm3.c R2( a, b, c, d, e, f, g, h, T(24), W1(24), W2(28) ); a 355 maint/gnulib/lib/sm3.c R2( d, a, b, c, h, e, f, g, T(25), W1(25), W2(29) ); a 356 maint/gnulib/lib/sm3.c R2( c, d, a, b, g, h, e, f, T(26), W1(26), W2(30) ); a 357 maint/gnulib/lib/sm3.c R2( b, c, d, a, f, g, h, e, T(27), W1(27), W2(31) ); a 358 maint/gnulib/lib/sm3.c R2( a, b, c, d, e, f, g, h, T(28), W1(28), W2(32) ); a 359 maint/gnulib/lib/sm3.c R2( d, a, b, c, h, e, f, g, T(29), W1(29), W2(33) ); a 360 maint/gnulib/lib/sm3.c R2( c, d, a, b, g, h, e, f, T(30), W1(30), W2(34) ); a 361 maint/gnulib/lib/sm3.c R2( b, c, d, a, f, g, h, e, T(31), W1(31), W2(35) ); a 362 maint/gnulib/lib/sm3.c R2( a, b, c, d, e, f, g, h, T(32), W1(32), W2(36) ); a 363 maint/gnulib/lib/sm3.c R2( d, a, b, c, h, e, f, g, T(33), W1(33), W2(37) ); a 364 maint/gnulib/lib/sm3.c R2( c, d, a, b, g, h, e, f, T(34), W1(34), W2(38) ); a 365 maint/gnulib/lib/sm3.c R2( b, c, d, a, f, g, h, e, T(35), W1(35), W2(39) ); a 366 maint/gnulib/lib/sm3.c R2( a, b, c, d, e, f, g, h, T(36), W1(36), W2(40) ); a 367 maint/gnulib/lib/sm3.c R2( d, a, b, c, h, e, f, g, T(37), W1(37), W2(41) ); a 368 maint/gnulib/lib/sm3.c R2( c, d, a, b, g, h, e, f, T(38), W1(38), W2(42) ); a 369 maint/gnulib/lib/sm3.c R2( b, c, d, a, f, g, h, e, T(39), W1(39), W2(43) ); a 370 maint/gnulib/lib/sm3.c R2( a, b, c, d, e, f, g, h, T(40), W1(40), W2(44) ); a 371 maint/gnulib/lib/sm3.c R2( d, a, b, c, h, e, f, g, T(41), W1(41), W2(45) ); a 372 maint/gnulib/lib/sm3.c R2( c, d, a, b, g, h, e, f, T(42), W1(42), W2(46) ); a 373 maint/gnulib/lib/sm3.c R2( b, c, d, a, f, g, h, e, T(43), W1(43), W2(47) ); a 374 maint/gnulib/lib/sm3.c R2( a, b, c, d, e, f, g, h, T(44), W1(44), W2(48) ); a 375 maint/gnulib/lib/sm3.c R2( d, a, b, c, h, e, f, g, T(45), W1(45), W2(49) ); a 376 maint/gnulib/lib/sm3.c R2( c, d, a, b, g, h, e, f, T(46), W1(46), W2(50) ); a 377 maint/gnulib/lib/sm3.c R2( b, c, d, a, f, g, h, e, T(47), W1(47), W2(51) ); a 378 maint/gnulib/lib/sm3.c R2( a, b, c, d, e, f, g, h, T(48), W1(48), W2(52) ); a 379 maint/gnulib/lib/sm3.c R2( d, a, b, c, h, e, f, g, T(49), W1(49), W2(53) ); a 380 maint/gnulib/lib/sm3.c R2( c, d, a, b, g, h, e, f, T(50), W1(50), W2(54) ); a 381 maint/gnulib/lib/sm3.c R2( b, c, d, a, f, g, h, e, T(51), W1(51), W2(55) ); a 382 maint/gnulib/lib/sm3.c R2( a, b, c, d, e, f, g, h, T(52), W1(52), W2(56) ); a 383 maint/gnulib/lib/sm3.c R2( d, a, b, c, h, e, f, g, T(53), W1(53), W2(57) ); a 384 maint/gnulib/lib/sm3.c R2( c, d, a, b, g, h, e, f, T(54), W1(54), W2(58) ); a 385 maint/gnulib/lib/sm3.c R2( b, c, d, a, f, g, h, e, T(55), W1(55), W2(59) ); a 386 maint/gnulib/lib/sm3.c R2( a, b, c, d, e, f, g, h, T(56), W1(56), W2(60) ); a 387 maint/gnulib/lib/sm3.c R2( d, a, b, c, h, e, f, g, T(57), W1(57), W2(61) ); a 388 maint/gnulib/lib/sm3.c R2( c, d, a, b, g, h, e, f, T(58), W1(58), W2(62) ); a 389 maint/gnulib/lib/sm3.c R2( b, c, d, a, f, g, h, e, T(59), W1(59), W2(63) ); a 390 maint/gnulib/lib/sm3.c R2( a, b, c, d, e, f, g, h, T(60), W1(60), W2(64) ); a 391 maint/gnulib/lib/sm3.c R2( d, a, b, c, h, e, f, g, T(61), W1(61), W2(65) ); a 392 maint/gnulib/lib/sm3.c R2( c, d, a, b, g, h, e, f, T(62), W1(62), W2(66) ); a 393 maint/gnulib/lib/sm3.c R2( b, c, d, a, f, g, h, e, T(63), W1(63), W2(67) ); a 396 maint/gnulib/lib/sm3.c j, a, b, c, d, e, f, g, h); a 398 maint/gnulib/lib/sm3.c a = ctx->state[0] ^= a; a 106 maint/gnulib/lib/stdalign.in.h # define _Alignas(a) alignas (a) a 114 maint/gnulib/lib/stdalign.in.h # define _Alignas(a) __attribute__ ((__aligned__ (a))) a 116 maint/gnulib/lib/stdalign.in.h # define _Alignas(a) __declspec (align (a)) a 31 maint/gnulib/lib/stdarg.in.h # define va_copy(a,b) ((a) = (b)) a 71 maint/gnulib/lib/str-two-way.h # define MAX(a, b) ((a < b) ? (b) : (a)) a 116 maint/gnulib/lib/str-two-way.h unsigned char a, b; /* Current comparison bytes. */ a 141 maint/gnulib/lib/str-two-way.h a = CANON_ELEMENT (needle[j + k]); a 143 maint/gnulib/lib/str-two-way.h if (a < b) a 150 maint/gnulib/lib/str-two-way.h else if (a == b) a 176 maint/gnulib/lib/str-two-way.h a = CANON_ELEMENT (needle[j + k]); a 178 maint/gnulib/lib/str-two-way.h if (b < a) a 185 maint/gnulib/lib/str-two-way.h else if (a == b) a 31 maint/gnulib/lib/striconveha.c #define SIZEOF(a) (sizeof(a)/sizeof(a[0])) a 35 maint/gnulib/lib/strpbrk.c const char *a = accept; a 36 maint/gnulib/lib/strpbrk.c while (*a != '\0') a 37 maint/gnulib/lib/strpbrk.c if (*a++ == *s) a 51 maint/gnulib/lib/term-style-control.c #define SIZEOF(a) (sizeof(a) / sizeof(a[0])) a 67 maint/gnulib/lib/thrd.c } a; a 76 maint/gnulib/lib/thrd.c thrd_start_t mainfunc = main_arg->a.mainfunc; a 77 maint/gnulib/lib/thrd.c void *arg = main_arg->a.arg; a 109 maint/gnulib/lib/thrd.c main_arg->a.mainfunc = mainfunc; a 110 maint/gnulib/lib/thrd.c main_arg->a.arg = arg; a 29 maint/gnulib/lib/timespec-add.c timespec_add (struct timespec a, struct timespec b) a 31 maint/gnulib/lib/timespec-add.c time_t rs = a.tv_sec; a 33 maint/gnulib/lib/timespec-add.c int ns = a.tv_nsec + b.tv_nsec; a 30 maint/gnulib/lib/timespec-sub.c timespec_sub (struct timespec a, struct timespec b) a 32 maint/gnulib/lib/timespec-sub.c time_t rs = a.tv_sec; a 34 maint/gnulib/lib/timespec-sub.c int ns = a.tv_nsec - b.tv_nsec; a 64 maint/gnulib/lib/timespec.h timespec_cmp (struct timespec a, struct timespec b) a 66 maint/gnulib/lib/timespec.h return 2 * _GL_CMP (a.tv_sec, b.tv_sec) + _GL_CMP (a.tv_nsec, b.tv_nsec); a 72 maint/gnulib/lib/timespec.h timespec_sign (struct timespec a) a 74 maint/gnulib/lib/timespec.h return _GL_CMP (a.tv_sec, 0) + (!a.tv_sec & !!a.tv_nsec); a 86 maint/gnulib/lib/timespec.h timespectod (struct timespec a) a 88 maint/gnulib/lib/timespec.h return a.tv_sec + a.tv_nsec / 1e9; a 134 maint/gnulib/lib/tsearch.c #define CHECK_TREE(a) check_tree(a) a 169 maint/gnulib/lib/tsearch.c #define CHECK_TREE(a) a 44 maint/gnulib/lib/unictype/3level.h #define CONCAT(a,b) CONCAT1(a,b) a 45 maint/gnulib/lib/unictype/3level.h #define CONCAT1(a,b) a##b a 41 maint/gnulib/lib/unictype/3levelbit.h #define CONCAT(a,b) CONCAT1(a,b) a 42 maint/gnulib/lib/unictype/3levelbit.h #define CONCAT1(a,b) a##b a 94 maint/gnulib/lib/unigbrk.in.h uc_is_grapheme_break (ucs4_t a, ucs4_t b) a 119 maint/gnulib/lib/unigbrk/uc-is-grapheme-break.c uc_is_grapheme_break (ucs4_t a, ucs4_t b) a 123 maint/gnulib/lib/unigbrk/uc-is-grapheme-break.c if ((a | b) < 0x300) a 126 maint/gnulib/lib/unigbrk/uc-is-grapheme-break.c return a != '\r' || b != '\n'; a 129 maint/gnulib/lib/unigbrk/uc-is-grapheme-break.c a_gcp = uc_graphemeclusterbreak_property (a); a 38 maint/gnulib/lib/uniname/uniname.c #define SIZEOF(a) (sizeof(a) / sizeof(a[0])) a 24 maint/gnulib/lib/uninorm/decompose-internal.c #define COMPARE(a,b) ((a)->ccc - (b)->ccc) a 40 maint/gnulib/lib/utimecmp.c # define MAX(a, b) ((a) > (b) ? (a) : (b)) a 103 maint/gnulib/lib/utimecmp.c struct fs_res const *a = x; a 105 maint/gnulib/lib/utimecmp.c return a->dev == b->dev; a 296 maint/gnulib/lib/utimecmp.c int a = dst_a_ns; a 304 maint/gnulib/lib/utimecmp.c if ((a % SR10 | c % SR10 | m % SR10) != 0) a 307 maint/gnulib/lib/utimecmp.c for (res = SR10, a /= SR10, c /= SR10, m /= SR10; a 309 maint/gnulib/lib/utimecmp.c && (a % 10 | c % 10 | m % 10) == 0); a 310 maint/gnulib/lib/utimecmp.c res *= 10, a /= 10, c /= 10, m /= 10) a 381 maint/gnulib/lib/utimecmp.c int a = (BILLION * (dst_status.st_mtime & 1) a 386 maint/gnulib/lib/utimecmp.c for (a /= res; a % 10 == 0; a /= 10) a 500 maint/gnulib/lib/vasnprintf.c divide (mpn_t a, mpn_t b, mpn_t *q) a 553 maint/gnulib/lib/vasnprintf.c const mp_limb_t *a_ptr = a.limbs; a 554 maint/gnulib/lib/vasnprintf.c size_t a_len = a.nlimbs; a 932 maint/gnulib/lib/vasnprintf.c convert_to_decimal (mpn_t a, size_t extra_zeroes) a 934 maint/gnulib/lib/vasnprintf.c mp_limb_t *a_ptr = a.limbs; a 935 maint/gnulib/lib/vasnprintf.c size_t a_len = a.nlimbs; a 1776 maint/gnulib/lib/vasnprintf.c const wchar_t *arg = ap->arg[arg_index].a.a_wide_string; a 1811 maint/gnulib/lib/vasnprintf.c const char *arg = ap->arg[arg_index].a.a_string; a 1862 maint/gnulib/lib/vasnprintf.c arguments a; a 1864 maint/gnulib/lib/vasnprintf.c if (PRINTF_PARSE (format, &d, &a) < 0) a 1872 maint/gnulib/lib/vasnprintf.c if (a.arg != a.direct_alloc_arg) \ a 1873 maint/gnulib/lib/vasnprintf.c free (a.arg); a 1875 maint/gnulib/lib/vasnprintf.c if (PRINTF_FETCHARGS (args, &a) < 0) a 2003 maint/gnulib/lib/vasnprintf.c switch (a.arg[dp->arg_index].type) a 2006 maint/gnulib/lib/vasnprintf.c *a.arg[dp->arg_index].a.a_count_schar_pointer = length; a 2009 maint/gnulib/lib/vasnprintf.c *a.arg[dp->arg_index].a.a_count_short_pointer = length; a 2012 maint/gnulib/lib/vasnprintf.c *a.arg[dp->arg_index].a.a_count_int_pointer = length; a 2015 maint/gnulib/lib/vasnprintf.c *a.arg[dp->arg_index].a.a_count_longint_pointer = length; a 2018 maint/gnulib/lib/vasnprintf.c *a.arg[dp->arg_index].a.a_count_longlongint_pointer = length; a 2028 maint/gnulib/lib/vasnprintf.c arg_type type = a.arg[dp->arg_index].type; a 2043 maint/gnulib/lib/vasnprintf.c if (!(a.arg[dp->width_arg_index].type == TYPE_INT)) a 2045 maint/gnulib/lib/vasnprintf.c arg = a.arg[dp->width_arg_index].a.a_int; a 2074 maint/gnulib/lib/vasnprintf.c if (!(a.arg[dp->precision_arg_index].type == TYPE_INT)) a 2076 maint/gnulib/lib/vasnprintf.c arg = a.arg[dp->precision_arg_index].a.a_int; a 2100 maint/gnulib/lib/vasnprintf.c const uint8_t *arg = a.arg[dp->arg_index].a.a_u8_string; a 2225 maint/gnulib/lib/vasnprintf.c const uint16_t *arg = a.arg[dp->arg_index].a.a_u16_string; a 2350 maint/gnulib/lib/vasnprintf.c const uint32_t *arg = a.arg[dp->arg_index].a.a_u32_string; a 2481 maint/gnulib/lib/vasnprintf.c && a.arg[dp->arg_index].type != TYPE_WIDE_STRING a 2483 maint/gnulib/lib/vasnprintf.c && a.arg[dp->arg_index].type == TYPE_WIDE_STRING a 2511 maint/gnulib/lib/vasnprintf.c if (!(a.arg[dp->width_arg_index].type == TYPE_INT)) a 2513 maint/gnulib/lib/vasnprintf.c arg = a.arg[dp->width_arg_index].a.a_int; a 2542 maint/gnulib/lib/vasnprintf.c if (!(a.arg[dp->precision_arg_index].type == TYPE_INT)) a 2544 maint/gnulib/lib/vasnprintf.c arg = a.arg[dp->precision_arg_index].a.a_int; a 2567 maint/gnulib/lib/vasnprintf.c const char *arg = a.arg[dp->arg_index].a.a_string; a 2723 maint/gnulib/lib/vasnprintf.c const wchar_t *arg = a.arg[dp->arg_index].a.a_wide_string; a 2978 maint/gnulib/lib/vasnprintf.c && a.arg[dp->arg_index].type == TYPE_WIDE_CHAR) a 2994 maint/gnulib/lib/vasnprintf.c if (!(a.arg[dp->width_arg_index].type == TYPE_INT)) a 2996 maint/gnulib/lib/vasnprintf.c arg = a.arg[dp->width_arg_index].a.a_int; a 3019 maint/gnulib/lib/vasnprintf.c wchar_t arg = (wchar_t) a.arg[dp->arg_index].a.a_wide_char; a 3184 maint/gnulib/lib/vasnprintf.c || a.arg[dp->arg_index].type == TYPE_DOUBLE a 3187 maint/gnulib/lib/vasnprintf.c || a.arg[dp->arg_index].type == TYPE_LONGDOUBLE a 3193 maint/gnulib/lib/vasnprintf.c arg_type type = a.arg[dp->arg_index].type; a 3212 maint/gnulib/lib/vasnprintf.c if (!(a.arg[dp->width_arg_index].type == TYPE_INT)) a 3214 maint/gnulib/lib/vasnprintf.c arg = a.arg[dp->width_arg_index].a.a_int; a 3242 maint/gnulib/lib/vasnprintf.c if (!(a.arg[dp->precision_arg_index].type == TYPE_INT)) a 3244 maint/gnulib/lib/vasnprintf.c arg = a.arg[dp->precision_arg_index].a.a_int; a 3307 maint/gnulib/lib/vasnprintf.c long double arg = a.arg[dp->arg_index].a.a_longdouble; a 3461 maint/gnulib/lib/vasnprintf.c double arg = a.arg[dp->arg_index].a.a_double; a 3676 maint/gnulib/lib/vasnprintf.c || a.arg[dp->arg_index].type == TYPE_DOUBLE a 3678 maint/gnulib/lib/vasnprintf.c || (a.arg[dp->arg_index].type == TYPE_DOUBLE a 3682 maint/gnulib/lib/vasnprintf.c && is_infinite_or_zero (a.arg[dp->arg_index].a.a_double)) a 3685 maint/gnulib/lib/vasnprintf.c || a.arg[dp->arg_index].type == TYPE_LONGDOUBLE a 3687 maint/gnulib/lib/vasnprintf.c || (a.arg[dp->arg_index].type == TYPE_LONGDOUBLE a 3692 maint/gnulib/lib/vasnprintf.c && is_infinite_or_zerol (a.arg[dp->arg_index].a.a_longdouble)) a 3697 maint/gnulib/lib/vasnprintf.c arg_type type = a.arg[dp->arg_index].type; a 3717 maint/gnulib/lib/vasnprintf.c if (!(a.arg[dp->width_arg_index].type == TYPE_INT)) a 3719 maint/gnulib/lib/vasnprintf.c arg = a.arg[dp->width_arg_index].a.a_int; a 3747 maint/gnulib/lib/vasnprintf.c if (!(a.arg[dp->precision_arg_index].type == TYPE_INT)) a 3749 maint/gnulib/lib/vasnprintf.c arg = a.arg[dp->precision_arg_index].a.a_int; a 3797 maint/gnulib/lib/vasnprintf.c long double arg = a.arg[dp->arg_index].a.a_longdouble; a 3813 maint/gnulib/lib/vasnprintf.c double arg = a.arg[dp->arg_index].a.a_double; a 3854 maint/gnulib/lib/vasnprintf.c long double arg = a.arg[dp->arg_index].a.a_longdouble; a 4322 maint/gnulib/lib/vasnprintf.c double arg = a.arg[dp->arg_index].a.a_double; a 4854 maint/gnulib/lib/vasnprintf.c arg_type type = a.arg[dp->arg_index].type; a 4899 maint/gnulib/lib/vasnprintf.c if (!(a.arg[dp->width_arg_index].type == TYPE_INT)) a 4901 maint/gnulib/lib/vasnprintf.c arg = a.arg[dp->width_arg_index].a.a_int; a 4934 maint/gnulib/lib/vasnprintf.c if (!(a.arg[dp->precision_arg_index].type == TYPE_INT)) a 4936 maint/gnulib/lib/vasnprintf.c arg = a.arg[dp->precision_arg_index].a.a_int; a 4999 maint/gnulib/lib/vasnprintf.c MAX_ROOM_NEEDED (&a, dp->arg_index, dp->conversion, type, a 5179 maint/gnulib/lib/vasnprintf.c if (!(a.arg[dp->width_arg_index].type == TYPE_INT)) a 5181 maint/gnulib/lib/vasnprintf.c prefixes[prefix_count++] = a.arg[dp->width_arg_index].a.a_int; a 5185 maint/gnulib/lib/vasnprintf.c if (!(a.arg[dp->precision_arg_index].type == TYPE_INT)) a 5187 maint/gnulib/lib/vasnprintf.c prefixes[prefix_count++] = a.arg[dp->precision_arg_index].a.a_int; a 5267 maint/gnulib/lib/vasnprintf.c int arg = a.arg[dp->arg_index].a.a_schar; a 5273 maint/gnulib/lib/vasnprintf.c unsigned int arg = a.arg[dp->arg_index].a.a_uchar; a 5279 maint/gnulib/lib/vasnprintf.c int arg = a.arg[dp->arg_index].a.a_short; a 5285 maint/gnulib/lib/vasnprintf.c unsigned int arg = a.arg[dp->arg_index].a.a_ushort; a 5291 maint/gnulib/lib/vasnprintf.c int arg = a.arg[dp->arg_index].a.a_int; a 5297 maint/gnulib/lib/vasnprintf.c unsigned int arg = a.arg[dp->arg_index].a.a_uint; a 5303 maint/gnulib/lib/vasnprintf.c long int arg = a.arg[dp->arg_index].a.a_longint; a 5309 maint/gnulib/lib/vasnprintf.c unsigned long int arg = a.arg[dp->arg_index].a.a_ulongint; a 5315 maint/gnulib/lib/vasnprintf.c long long int arg = a.arg[dp->arg_index].a.a_longlongint; a 5321 maint/gnulib/lib/vasnprintf.c unsigned long long int arg = a.arg[dp->arg_index].a.a_ulonglongint; a 5327 maint/gnulib/lib/vasnprintf.c double arg = a.arg[dp->arg_index].a.a_double; a 5333 maint/gnulib/lib/vasnprintf.c long double arg = a.arg[dp->arg_index].a.a_longdouble; a 5339 maint/gnulib/lib/vasnprintf.c int arg = a.arg[dp->arg_index].a.a_char; a 5346 maint/gnulib/lib/vasnprintf.c wint_t arg = a.arg[dp->arg_index].a.a_wide_char; a 5353 maint/gnulib/lib/vasnprintf.c const char *arg = a.arg[dp->arg_index].a.a_string; a 5360 maint/gnulib/lib/vasnprintf.c const wchar_t *arg = a.arg[dp->arg_index].a.a_wide_string; a 5367 maint/gnulib/lib/vasnprintf.c void *arg = a.arg[dp->arg_index].a.a_pointer; a 5419 maint/gnulib/lib/vasnprintf.c MAX_ROOM_NEEDED (&a, dp->arg_index, a 39 maint/gnulib/lib/wait-process.c #define SIZEOF(a) (sizeof(a) / sizeof(a[0])) a 104 maint/gnulib/tests/macros.h #define STREQ(a, b) (strcmp (a, b) == 0) a 44 maint/gnulib/tests/nap.h diff_timespec (struct timespec a, struct timespec b) a 46 maint/gnulib/tests/nap.h time_t as = a.tv_sec; a 48 maint/gnulib/tests/nap.h int ans = a.tv_nsec; a 29 maint/gnulib/tests/test-alignof.c typedef struct { char a[1]; } struct1; a 30 maint/gnulib/tests/test-alignof.c typedef struct { char a[2]; } struct2; a 31 maint/gnulib/tests/test-alignof.c typedef struct { char a[3]; } struct3; a 32 maint/gnulib/tests/test-alignof.c typedef struct { char a[4]; } struct4; a 257 maint/gnulib/tests/test-argp.c #define NARGS(a) (sizeof(a) / sizeof((a)[0]) - 1) a 259 maint/gnulib/tests/test-argp.c #define init_args(a) memset (&(a), 0, sizeof (a)); a 350 maint/gnulib/tests/test-argp.c struct test_args *args, const char *val, const char *a) a 366 maint/gnulib/tests/test-argp.c if (a) a 370 maint/gnulib/tests/test-argp.c else if (strcmp (argv[index], a)) a 29 maint/gnulib/tests/test-argv-iter.c #define STREQ(a, b) (strcmp (a, b) == 0) a 23 maint/gnulib/tests/test-array-mergesort.c #define COMPARE(a,b) ((a)->x < (b)->x ? -1 : (a)->x > (b)->x ? 1 : 0) a 294 maint/gnulib/tests/test-array-mergesort.c cmp_double (const void *a, const void *b) a 296 maint/gnulib/tests/test-array-mergesort.c return (*(const double *)a < *(const double *)b ? -1 : a 297 maint/gnulib/tests/test-array-mergesort.c *(const double *)a > *(const double *)b ? 1 : a 47 maint/gnulib/tests/test-bitset.c compare (enum bitset_attr a, enum bitset_attr b) a 54 maint/gnulib/tests/test-bitset.c const bitset asrc0 = bitset_create (nbits, a); a 56 maint/gnulib/tests/test-bitset.c const bitset asrc1 = bitset_create (nbits, a); a 58 maint/gnulib/tests/test-bitset.c const bitset asrc2 = bitset_create (nbits, a); a 60 maint/gnulib/tests/test-bitset.c const bitset asrc3 = bitset_create (nbits, a); a 74 maint/gnulib/tests/test-bitset.c bitset adst = bitset_create (nbits, a); a 27 maint/gnulib/tests/test-call_once.c static int a; a 32 maint/gnulib/tests/test-call_once.c a = 42; a 40 maint/gnulib/tests/test-call_once.c ASSERT (a == 42); a 48 maint/gnulib/tests/test-explicit_bzero.c # define explicit_bzero(a, n) memset (a, '\0', n) a 103 maint/gnulib/tests/test-expm1.h DOUBLE a = EXPM1 (x); a 106 maint/gnulib/tests/test-expm1.h DOUBLE err = a + (1 + a) * (b + (1 + b) * c); a 116 maint/gnulib/tests/test-fcntl.c func1 (int a, ...) a 120 maint/gnulib/tests/test-fcntl.c va_start (arg, a); a 121 maint/gnulib/tests/test-fcntl.c if (a < 4) a 132 maint/gnulib/tests/test-fcntl.c func2 (int a, ...) a 136 maint/gnulib/tests/test-fcntl.c va_start (arg, a); a 139 maint/gnulib/tests/test-fcntl.c return func1 (a, p); a 27 maint/gnulib/tests/test-float.c int a[] = { FLT_RADIX }; a 24 maint/gnulib/tests/test-getprogname.c # define STREQ(a, b) (strncmp (a, b, 14) == 0) a 26 maint/gnulib/tests/test-getprogname.c # define STREQ(a, b) (strcmp (a, b) == 0) a 26 maint/gnulib/tests/test-glob-h.c size_t a; a 32 maint/gnulib/tests/test-hash.c #define STREQ(a, b) (strcmp (a, b) == 0) a 172 maint/gnulib/tests/test-intprops.c #define CHECK_BINOP(op, opname, a, b, t, v, vres) \ a 173 maint/gnulib/tests/test-intprops.c VERIFY (INT_##opname##_RANGE_OVERFLOW (a, b, TYPE_MINIMUM (t), \ a 176 maint/gnulib/tests/test-intprops.c VERIFY (INT_##opname##_OVERFLOW (a, b) == (v)) a 177 maint/gnulib/tests/test-intprops.c #define CHECK_SBINOP(op, opname, a, b, t, v, vres) \ a 178 maint/gnulib/tests/test-intprops.c CHECK_BINOP(op, opname, a, b, t, v, vres); \ a 181 maint/gnulib/tests/test-intprops.c ASSERT (INT_##opname##_WRAPV (a, b, &result) == (v)); \ a 182 maint/gnulib/tests/test-intprops.c ASSERT (result == ((v) ? (vres) : ((a) op (b)))); \ a 184 maint/gnulib/tests/test-intprops.c #define CHECK_UNOP(op, opname, a, t, v) \ a 185 maint/gnulib/tests/test-intprops.c VERIFY (INT_##opname##_RANGE_OVERFLOW (a, TYPE_MINIMUM (t), \ a 188 maint/gnulib/tests/test-intprops.c VERIFY (INT_##opname##_OVERFLOW (a) == (v)) a 244 maint/gnulib/tests/test-intprops.c #define CHECK_SUM(a, b, t, v, vres) \ a 245 maint/gnulib/tests/test-intprops.c CHECK_SUM1 (a, b, t, v, vres); \ a 246 maint/gnulib/tests/test-intprops.c CHECK_SUM1 (b, a, t, v, vres) a 247 maint/gnulib/tests/test-intprops.c #define CHECK_SUM_WRAPV(a, b, t, v, vres, okres) \ a 248 maint/gnulib/tests/test-intprops.c CHECK_SUM_WRAPV1 (a, b, t, v, vres, okres); \ a 249 maint/gnulib/tests/test-intprops.c CHECK_SUM_WRAPV1 (b, a, t, v, vres, okres) a 250 maint/gnulib/tests/test-intprops.c #define CHECK_SUM1(a, b, t, v, vres) \ a 251 maint/gnulib/tests/test-intprops.c VERIFY (INT_ADD_OVERFLOW (a, b) == (v)); \ a 252 maint/gnulib/tests/test-intprops.c CHECK_SUM_WRAPV1 (a, b, t, v, vres, (a) + (b)) a 253 maint/gnulib/tests/test-intprops.c #define CHECK_SUM_WRAPV1(a, b, t, v, vres, okres) \ a 256 maint/gnulib/tests/test-intprops.c ASSERT (INT_ADD_WRAPV (a, b, &result) == (v)); \ a 293 maint/gnulib/tests/test-intprops.c #define CHECK_DIFFERENCE(a, b, t, v, vres) \ a 294 maint/gnulib/tests/test-intprops.c VERIFY (INT_SUBTRACT_OVERFLOW (a, b) == (v)) a 295 maint/gnulib/tests/test-intprops.c #define CHECK_SDIFFERENCE(a, b, t, v, vres) \ a 296 maint/gnulib/tests/test-intprops.c CHECK_DIFFERENCE (a, b, t, v, vres); \ a 297 maint/gnulib/tests/test-intprops.c CHECK_SDIFFERENCE_WRAPV (a, b, t, v, vres) a 298 maint/gnulib/tests/test-intprops.c #define CHECK_SDIFFERENCE_WRAPV(a, b, t, v, vres) \ a 301 maint/gnulib/tests/test-intprops.c ASSERT (INT_SUBTRACT_WRAPV (a, b, &result) == (v)); \ a 302 maint/gnulib/tests/test-intprops.c ASSERT (result == ((v) ? (vres) : ((a) - (b)))); \ a 326 maint/gnulib/tests/test-intprops.c #define CHECK_PRODUCT(a, b, t, v, vres) \ a 327 maint/gnulib/tests/test-intprops.c CHECK_PRODUCT1 (a, b, t, v, vres); \ a 328 maint/gnulib/tests/test-intprops.c CHECK_PRODUCT1 (b, a, t, v, vres) a 329 maint/gnulib/tests/test-intprops.c #define CHECK_SPRODUCT(a, b, t, v, vres) \ a 330 maint/gnulib/tests/test-intprops.c CHECK_SPRODUCT1 (a, b, t, v, vres); \ a 331 maint/gnulib/tests/test-intprops.c CHECK_SPRODUCT1 (b, a, t, v, vres) a 332 maint/gnulib/tests/test-intprops.c #define CHECK_SPRODUCT_WRAPV(a, b, t, v, vres) \ a 333 maint/gnulib/tests/test-intprops.c CHECK_SPRODUCT_WRAPV1 (a, b, t, v, vres); \ a 334 maint/gnulib/tests/test-intprops.c CHECK_SPRODUCT_WRAPV1 (b, a, t, v, vres) a 335 maint/gnulib/tests/test-intprops.c #define CHECK_PRODUCT1(a, b, t, v, vres) \ a 336 maint/gnulib/tests/test-intprops.c VERIFY (INT_MULTIPLY_OVERFLOW (a, b) == (v)) a 337 maint/gnulib/tests/test-intprops.c #define CHECK_SPRODUCT1(a, b, t, v, vres) \ a 338 maint/gnulib/tests/test-intprops.c CHECK_PRODUCT1 (a, b, t, v, vres); \ a 339 maint/gnulib/tests/test-intprops.c CHECK_SPRODUCT_WRAPV1 (a, b, t, v, vres) a 340 maint/gnulib/tests/test-intprops.c #define CHECK_SPRODUCT_WRAPV1(a, b, t, v, vres) \ a 343 maint/gnulib/tests/test-intprops.c ASSERT (INT_MULTIPLY_WRAPV (a, b, &result) == (v)); \ a 344 maint/gnulib/tests/test-intprops.c ASSERT (result == ((v) ? (vres) : ((a) * (b)))); \ a 412 maint/gnulib/tests/test-intprops.c #define CHECK_QUOTIENT(a, b, v) VERIFY (INT_DIVIDE_OVERFLOW (a, b) == (v)) a 425 maint/gnulib/tests/test-intprops.c #define CHECK_REMAINDER(a, b, v) VERIFY (INT_REMAINDER_OVERFLOW (a, b) == (v)) a 30 maint/gnulib/tests/test-inttostr.c #define STREQ(a, b) (strcmp (a, b) == 0) a 25 maint/gnulib/tests/test-locale.c int a[] = a 64 maint/gnulib/tests/test-memcasecmp.c char *a = foo + i; a 66 maint/gnulib/tests/test-memcasecmp.c strcpy (a, "--------01111111"); a 68 maint/gnulib/tests/test-memcasecmp.c ASSERT (memcasecmp (a, b, 16) < 0); a 70 maint/gnulib/tests/test-memcmp.c char *a = foo + i; a 72 maint/gnulib/tests/test-memcmp.c strcpy (a, "--------01111111"); a 74 maint/gnulib/tests/test-memcmp.c ASSERT (memcmp (a, b, 16) < 0); a 33 maint/gnulib/tests/test-nstrftime.c #define STREQ(a, b) (strcmp (a, b) == 0) a 27 maint/gnulib/tests/test-once.c static int a; a 32 maint/gnulib/tests/test-once.c a = 42; a 40 maint/gnulib/tests/test-once.c ASSERT (a == 42); a 63 maint/gnulib/tests/test-parse-datetime.c #define SHR(a, b) \ a 65 maint/gnulib/tests/test-parse-datetime.c ? (a) >> (b) \ a 66 maint/gnulib/tests/test-parse-datetime.c : (a) / (1 << (b)) - ((a) % (1 << (b)) < 0)) a 75 maint/gnulib/tests/test-parse-datetime.c tm_diff (struct tm const *a, struct tm const *b) a 79 maint/gnulib/tests/test-parse-datetime.c int a4 = SHR (a->tm_year, 2) + SHR (TM_YEAR_BASE, 2) - ! (a->tm_year & 3); a 86 maint/gnulib/tests/test-parse-datetime.c long int ayear = a->tm_year; a 89 maint/gnulib/tests/test-parse-datetime.c + (a->tm_yday - b->tm_yday)); a 90 maint/gnulib/tests/test-parse-datetime.c return (60 * (60 * (24 * days + (a->tm_hour - b->tm_hour)) a 91 maint/gnulib/tests/test-parse-datetime.c + (a->tm_min - b->tm_min)) a 92 maint/gnulib/tests/test-parse-datetime.c + (a->tm_sec - b->tm_sec)); a 25 maint/gnulib/tests/test-pathmax.c int a = PATH_MAX; a 24 maint/gnulib/tests/test-poll-h.c nfds_t a; a 27 maint/gnulib/tests/test-pthread-once1.c static int a; a 32 maint/gnulib/tests/test-pthread-once1.c a = 42; a 40 maint/gnulib/tests/test-pthread-once1.c ASSERT (a == 42); a 28 maint/gnulib/tests/test-qsort_r.c char const *a = va; a 31 maint/gnulib/tests/test-qsort_r.c return (*a < *b ? -1 : *a > *b) * *arg; a 51 maint/gnulib/tests/test-quotearg.h compare (char const *a, size_t la, char const *b, size_t lb) a 54 maint/gnulib/tests/test-quotearg.h ASSERT (memcmp (a, b, la) == 0); a 33 maint/gnulib/tests/test-safe-alloc.c int a; a 43 maint/gnulib/tests/test-safe-alloc.c ASSERT (p->a == 0 && p->b == 0); a 45 maint/gnulib/tests/test-safe-alloc.c p->a = p->b = 42; a 48 maint/gnulib/tests/test-safe-alloc.c ASSERT (p[0].a == 42 && p[0].b == 42); a 598 maint/gnulib/tests/test-sameacls.c union { struct acl a; char room[4096]; } acl1; a 599 maint/gnulib/tests/test-sameacls.c union { struct acl a; char room[4096]; } acl2; a 602 maint/gnulib/tests/test-sameacls.c if (statacl (file1, STX_NORMAL, &acl1.a, sizeof (acl1)) < 0) a 608 maint/gnulib/tests/test-sameacls.c if (statacl (file2, STX_NORMAL, &acl2.a, sizeof (acl2)) < 0) a 615 maint/gnulib/tests/test-sameacls.c if (acl1.a.acl_len != acl2.a.acl_len) a 618 maint/gnulib/tests/test-sameacls.c file1, file2, acl1.a.acl_len, acl2.a.acl_len); a 621 maint/gnulib/tests/test-sameacls.c if (acl1.a.acl_mode != acl2.a.acl_mode) a 624 maint/gnulib/tests/test-sameacls.c file1, file2, acl1.a.acl_mode, acl2.a.acl_mode); a 627 maint/gnulib/tests/test-sameacls.c if (acl1.a.u_access != acl2.a.u_access a 628 maint/gnulib/tests/test-sameacls.c || acl1.a.g_access != acl2.a.g_access a 629 maint/gnulib/tests/test-sameacls.c || acl1.a.o_access != acl2.a.o_access) a 633 maint/gnulib/tests/test-sameacls.c acl1.a.u_access, acl1.a.g_access, acl1.a.o_access, a 634 maint/gnulib/tests/test-sameacls.c acl2.a.u_access, acl2.a.g_access, acl2.a.o_access); a 637 maint/gnulib/tests/test-sameacls.c if (memcmp (acl1.a.acl_ext, acl2.a.acl_ext, acl1.a.acl_len) != 0) a 24 maint/gnulib/tests/test-sched.c static struct sched_param a; a 38 maint/gnulib/tests/test-sched.c f1 = a.sched_priority; a 26 maint/gnulib/tests/test-signal-h.c size_t a; a 128 maint/gnulib/tests/test-signal-h.c return s.a + s.b + s.c + s.e; a 26 maint/gnulib/tests/test-spawn.c posix_spawnattr_t a; a 31 maint/gnulib/tests/test-stdalign.c typedef struct { char a[1]; } struct1; a 32 maint/gnulib/tests/test-stdalign.c typedef struct { char a[2]; } struct2; a 33 maint/gnulib/tests/test-stdalign.c typedef struct { char a[3]; } struct3; a 34 maint/gnulib/tests/test-stdalign.c typedef struct { char a[4]; } struct4; a 63 maint/gnulib/tests/test-stdbool.c char a[true == 1 ? 1 : -1]; a 27 maint/gnulib/tests/test-stddef.c wchar_t a = 'c'; a 47 maint/gnulib/tests/test-strverscmp.c static char const a[] = "B0075022800016.gbp.corp.com"; a 50 maint/gnulib/tests/test-strverscmp.c ASSERT (strverscmp (a, b) < 0); a 52 maint/gnulib/tests/test-strverscmp.c ASSERT (strverscmp (a, c) < 0); a 53 maint/gnulib/tests/test-strverscmp.c ASSERT (strverscmp (b, a) > 0); a 55 maint/gnulib/tests/test-strverscmp.c ASSERT (strverscmp (c, a) > 0); a 41 maint/gnulib/tests/test-sys_select.c struct timeval a; a 45 maint/gnulib/tests/test-sys_select.c typedef int verify_tv_sec_type[sizeof (time_t) <= sizeof (a.tv_sec) ? 1 : -1]; a 27 maint/gnulib/tests/test-sys_socket.c int a[] = { SHUT_RD, SHUT_WR, SHUT_RDWR }; a 26 maint/gnulib/tests/test-sys_stat.c int a[] = a 24 maint/gnulib/tests/test-sys_time.c struct timeval a; a 28 maint/gnulib/tests/test-sys_time.c typedef int verify_tv_sec_type[sizeof (time_t) <= sizeof (a.tv_sec) ? 1 : -1]; a 24 maint/gnulib/tests/test-sys_uio.c size_t a; a 31 maint/gnulib/tests/test-sys_uio.c return a + b + !!c.iov_base + c.iov_len; a 24 maint/gnulib/tests/test-sys_wait.c static pid_t a; a 46 maint/gnulib/tests/test-sys_wait.c return a ? 1 : 0; a 30 maint/gnulib/tests/test-threads.c once_flag a = ONCE_FLAG_INIT; a 35 maint/gnulib/tests/test-times.c double a = *(double *) p; a 38 maint/gnulib/tests/test-times.c return a < b ? -1 : a > b ? 1 : 0; a 60 maint/gnulib/tests/test-timespec.c valid (struct timespec a) a 62 maint/gnulib/tests/test-timespec.c return 0 <= a.tv_nsec && a.tv_nsec < TIMESPEC_HZ; a 72 maint/gnulib/tests/test-timespec.c cmp (struct timespec a, struct timespec b) a 74 maint/gnulib/tests/test-timespec.c return sign (timespec_cmp (a, b)); a 78 maint/gnulib/tests/test-timespec.c eq (struct timespec a, struct timespec b) a 80 maint/gnulib/tests/test-timespec.c return timespec_cmp (a, b) == 0; a 84 maint/gnulib/tests/test-timespec.c extremal (struct timespec a) a 86 maint/gnulib/tests/test-timespec.c return ((a.tv_sec == TYPE_MINIMUM (time_t) && a.tv_nsec == 0) a 87 maint/gnulib/tests/test-timespec.c || (a.tv_sec == TYPE_MAXIMUM (time_t) a 88 maint/gnulib/tests/test-timespec.c && a.tv_nsec == TIMESPEC_HZ - 1)); a 120 maint/gnulib/tests/test-timespec.c struct timespec a = test[i]; a 122 maint/gnulib/tests/test-timespec.c struct timespec roundtrip = dtotimespec (timespectod (a)); a 127 maint/gnulib/tests/test-timespec.c ASSERT (sign (timespec_sign (a)) == cmp (a, make_timespec (0, 0))); a 129 maint/gnulib/tests/test-timespec.c if (valid (a)) a 135 maint/gnulib/tests/test-timespec.c struct timespec sum = timespec_add (a, b); a 136 maint/gnulib/tests/test-timespec.c struct timespec diff = timespec_sub (a, b); a 137 maint/gnulib/tests/test-timespec.c struct timespec rdiff = timespec_sub (b, a); a 138 maint/gnulib/tests/test-timespec.c ASSERT (cmp (a, b) == sign (i - j)); a 139 maint/gnulib/tests/test-timespec.c ASSERT (eq (sum, timespec_add (b, a))); a 142 maint/gnulib/tests/test-timespec.c ASSERT (eq (a, timespec_sub (sum, b))); a 143 maint/gnulib/tests/test-timespec.c ASSERT (eq (b, timespec_sub (sum, a))); a 152 maint/gnulib/tests/test-timespec.c ASSERT (eq (timespec_add (a, sumbc), a 158 maint/gnulib/tests/test-timespec.c ASSERT (eq (a, timespec_add (diff, b))); a 160 maint/gnulib/tests/test-timespec.c ASSERT (eq (b, timespec_add (rdiff, a))); a 96 maint/gnulib/tests/test-tsearch.c cmp_fn (const void *a, const void *b) a 98 maint/gnulib/tests/test-tsearch.c return *(const int *) a - *(const int *) b; a 26 maint/gnulib/tests/test-uchar.c mbstate_t a = { 0 }; a 81 maint/gnulib/tests/test-userspec.c #define STREQ(a, b) (strcmp (a, b) == 0) a 68 maint/gnulib/tests/test-utimens-common.h ctime_compare (struct stat const *a, struct stat const *b) a 70 maint/gnulib/tests/test-utimens-common.h if (a->st_ctime < b->st_ctime) a 72 maint/gnulib/tests/test-utimens-common.h else if (b->st_ctime < a->st_ctime) a 74 maint/gnulib/tests/test-utimens-common.h else if (get_stat_ctime_ns (a) < get_stat_ctime_ns (b)) a 76 maint/gnulib/tests/test-utimens-common.h else if (get_stat_ctime_ns (b) < get_stat_ctime_ns (a)) a 70 maint/gnulib/tests/test-verify.c f (int a) a 72 maint/gnulib/tests/test-verify.c return a; a 26 maint/gnulib/tests/test-wchar.c wchar_t a = 'c'; a 26 maint/gnulib/tests/test-wctype-h.c wint_t a = 'x'; a 47 maint/gnulib/tests/uninorm/test-u32-normalize-big.c cmp_ucs4_t (const void *a, const void *b) a 49 maint/gnulib/tests/uninorm/test-u32-normalize-big.c ucs4_t a_value = *(const ucs4_t *)a; a 84 maint/gnulib/tests/unistr/test-cmp.h UNIT *a = foo + i; a 88 maint/gnulib/tests/unistr/test-cmp.h a[j] = '-'; a 89 maint/gnulib/tests/unistr/test-cmp.h a[8] = '0'; a 91 maint/gnulib/tests/unistr/test-cmp.h a[j] = '1'; a 97 maint/gnulib/tests/unistr/test-cmp.h ASSERT (U_CMP (a, b, 16) < 0); a 136 tools/crm_node.c sort_node(gconstpointer a, gconstpointer b) a 138 tools/crm_node.c const pcmk_controld_api_node_t *node_a = a; a 312 tools/crm_resource.c compare_id(gconstpointer a, gconstpointer b) a 314 tools/crm_resource.c return strcmp((const char *)a, (const char *)b); a 1609 tools/crm_resource_runtime.c pe_action_t *a = (pe_action_t *)action->data; a 1610 tools/crm_resource_runtime.c if (action_is_pending(a)) { a 1611 tools/crm_resource_runtime.c crm_notice("Waiting for %s (flags=%#.8x)", a->uuid, a->flags); a 1625 tools/crm_resource_runtime.c pe_action_t *a = (pe_action_t *) action->data; a 1627 tools/crm_resource_runtime.c if (!action_is_pending(a)) { a 1631 tools/crm_resource_runtime.c if (a->node) { a 1632 tools/crm_resource_runtime.c out->info(out, "\tAction %d: %s\ton %s", a->id, a->uuid, a->node->details->uname); a 1634 tools/crm_resource_runtime.c out->info(out, "\tAction %d: %s", a->id, a->uuid);