start 35 include/crm/common/iso8601.h crm_time_t *start; start 48 include/crm/common/strings_internal.h int pcmk__parse_ll_range(const char *srcstring, long long *start, long long *end); start 206 include/crm/pengine/internal.h GList *start; /* notify_entry_t* */ start 22 include/crm/pengine/rules_internal.h crm_time_t *pe_parse_xml_duration(crm_time_t * start, xmlNode * duration_spec); start 1110 lib/common/iso8601.c period->start = parse_date(period_str); start 1111 lib/common/iso8601.c if (period->start == NULL) { start 1139 lib/common/iso8601.c period->start = crm_time_new(NULL); start 1149 lib/common/iso8601.c if (period->start == NULL) { start 1150 lib/common/iso8601.c period->start = crm_time_subtract(period->end, period->diff); start 1153 lib/common/iso8601.c period->end = crm_time_add(period->start, period->diff); start 1156 lib/common/iso8601.c if (crm_time_check(period->start) == FALSE) { start 1184 lib/common/iso8601.c crm_time_free(period->start); start 638 lib/common/remote.c time_t start; start 647 lib/common/remote.c start = time(NULL); start 657 lib/common/remote.c timeout = timeout_ms - ((time(NULL) - start) * 1000); start 794 lib/common/remote.c time_t start = time(NULL); start 836 lib/common/remote.c remaining_timeout = timeout_ms - ((time(NULL) - start) * 1000); start 844 lib/common/remote.c time_t start; start 859 lib/common/remote.c if (cb_data->start == 0) { start 874 lib/common/remote.c if ((time(NULL) - cb_data->start) < (cb_data->timeout_ms / 1000)) { start 884 lib/common/remote.c if ((time(NULL) - cb_data->start) < (cb_data->timeout_ms / 1000)) { start 987 lib/common/remote.c cb_data->start = 0; start 990 lib/common/remote.c cb_data->start = time(NULL); start 813 lib/common/strings.c pcmk__parse_ll_range(const char *srcstring, long long *start, long long *end) start 817 lib/common/strings.c CRM_ASSERT(start != NULL && end != NULL); start 819 lib/common/strings.c *start = PCMK__PARSE_INT_DEFAULT; start 840 lib/common/strings.c if (scan_ll(srcstring, start, PCMK__PARSE_INT_DEFAULT, start 856 lib/common/strings.c *start = PCMK__PARSE_INT_DEFAULT; start 863 lib/common/strings.c *end = *start; start 21 lib/common/tests/strings/pcmk__parse_ll_range_test.c long long start, end; start 23 lib/common/tests/strings/pcmk__parse_ll_range_test.c assert_int_equal(pcmk__parse_ll_range(NULL, &start, &end), pcmk_rc_unknown_format); start 24 lib/common/tests/strings/pcmk__parse_ll_range_test.c assert_int_equal(pcmk__parse_ll_range("", &start, &end), pcmk_rc_unknown_format); start 30 lib/common/tests/strings/pcmk__parse_ll_range_test.c long long start, end; start 32 lib/common/tests/strings/pcmk__parse_ll_range_test.c assert_int_equal(pcmk__parse_ll_range("1234", &start, &end), pcmk_rc_ok); start 33 lib/common/tests/strings/pcmk__parse_ll_range_test.c assert_int_equal(start, 1234); start 40 lib/common/tests/strings/pcmk__parse_ll_range_test.c long long start, end; start 42 lib/common/tests/strings/pcmk__parse_ll_range_test.c assert_int_equal(pcmk__parse_ll_range("-", &start, &end), pcmk_rc_unknown_format); start 43 lib/common/tests/strings/pcmk__parse_ll_range_test.c assert_int_equal(start, PCMK__PARSE_INT_DEFAULT); start 50 lib/common/tests/strings/pcmk__parse_ll_range_test.c long long start, end; start 52 lib/common/tests/strings/pcmk__parse_ll_range_test.c assert_int_equal(pcmk__parse_ll_range("2000-", &start, &end), pcmk_rc_ok); start 53 lib/common/tests/strings/pcmk__parse_ll_range_test.c assert_int_equal(start, 2000); start 60 lib/common/tests/strings/pcmk__parse_ll_range_test.c long long start, end; start 62 lib/common/tests/strings/pcmk__parse_ll_range_test.c assert_int_equal(pcmk__parse_ll_range("-2020", &start, &end), pcmk_rc_ok); start 63 lib/common/tests/strings/pcmk__parse_ll_range_test.c assert_int_equal(start, PCMK__PARSE_INT_DEFAULT); start 70 lib/common/tests/strings/pcmk__parse_ll_range_test.c long long start, end; start 72 lib/common/tests/strings/pcmk__parse_ll_range_test.c assert_int_equal(pcmk__parse_ll_range("2000-2020", &start, &end), pcmk_rc_ok); start 73 lib/common/tests/strings/pcmk__parse_ll_range_test.c assert_int_equal(start, 2000); start 76 lib/common/tests/strings/pcmk__parse_ll_range_test.c assert_int_equal(pcmk__parse_ll_range("2000-2020-2030", &start, &end), pcmk_rc_unknown_format); start 82 lib/common/tests/strings/pcmk__parse_ll_range_test.c long long start, end; start 84 lib/common/tests/strings/pcmk__parse_ll_range_test.c assert_int_equal(pcmk__parse_ll_range("2000x-", &start, &end), pcmk_rc_unknown_format); start 85 lib/common/tests/strings/pcmk__parse_ll_range_test.c assert_int_equal(start, PCMK__PARSE_INT_DEFAULT); start 88 lib/common/tests/strings/pcmk__parse_ll_range_test.c assert_int_equal(pcmk__parse_ll_range("-x2000", &start, &end), pcmk_rc_unknown_format); start 89 lib/common/tests/strings/pcmk__parse_ll_range_test.c assert_int_equal(start, PCMK__PARSE_INT_DEFAULT); start 96 lib/common/tests/strings/pcmk__parse_ll_range_test.c long long start, end; start 98 lib/common/tests/strings/pcmk__parse_ll_range_test.c assert_int_equal(pcmk__parse_ll_range("20000000000000000000-", &start, &end), pcmk_rc_unknown_format); start 99 lib/common/tests/strings/pcmk__parse_ll_range_test.c assert_int_equal(pcmk__parse_ll_range("100-20000000000000000000", &start, &end), pcmk_rc_unknown_format); start 1320 lib/common/xml.c replace_text(char *text, int start, size_t *length, const char *replace) start 1327 lib/common/xml.c for (size_t lpc = (*length) - 1; lpc > (start + offset); lpc--) { start 1331 lib/common/xml.c memcpy(text + start, replace, offset + 1); start 307 lib/common/xpath.c char *start = NULL; start 315 lib/common/xpath.c start = strstr(xpath, patt); start 317 lib/common/xpath.c if (!start) { start 322 lib/common/xpath.c start += strlen(patt); start 323 lib/common/xpath.c start++; start 325 lib/common/xpath.c end = strstr(start, "\'"); start 327 lib/common/xpath.c retval = strndup(start, end-start); start 623 lib/lrmd/lrmd_client.c time_t start = time(NULL); start 641 lib/lrmd/lrmd_client.c remaining_timeout = total_timeout - ((time(NULL) - start) * 1000); start 669 lib/pacemaker/pcmk_output.c clock_t start = va_arg(args, clock_t); start 673 lib/pacemaker/pcmk_output.c (end - start) / (float) CLOCKS_PER_SEC); start 682 lib/pacemaker/pcmk_output.c clock_t start = va_arg(args, clock_t); start 685 lib/pacemaker/pcmk_output.c char *duration = pcmk__ftoa((end - start) / (float) CLOCKS_PER_SEC); start 890 lib/pacemaker/pcmk_output.c pe_action_t *start = NULL; start 908 lib/pacemaker/pcmk_output.c start = possible_matches->data; start 912 lib/pacemaker/pcmk_output.c if ((start == NULL) || !pcmk_is_set(start->flags, pe_action_runnable)) { start 958 lib/pacemaker/pcmk_output.c next, start, NULL); start 962 lib/pacemaker/pcmk_output.c next, start, NULL); start 964 lib/pacemaker/pcmk_output.c } else if (start == NULL || pcmk_is_set(start->flags, pe_action_optional)) { start 975 lib/pacemaker/pcmk_output.c } else if (!pcmk_is_set(start->flags, pe_action_runnable)) { start 977 lib/pacemaker/pcmk_output.c NULL, stop, (stop && stop->reason)? stop : start); start 991 lib/pacemaker/pcmk_output.c next, start, NULL); start 1001 lib/pacemaker/pcmk_output.c || (start && !pcmk_is_set(start->flags, pe_action_runnable)))) { start 1021 lib/pacemaker/pcmk_output.c stop_op, (stop_op && stop_op->reason)? stop_op : start) == pcmk_rc_ok) { start 1032 lib/pacemaker/pcmk_output.c next, stop, start); start 1042 lib/pacemaker/pcmk_output.c start, NULL); start 1046 lib/pacemaker/pcmk_output.c next, start, NULL); start 1061 lib/pacemaker/pcmk_output.c start, NULL); start 834 lib/pacemaker/pcmk_sched_clone.c pe_action_t *start = NULL; start 860 lib/pacemaker/pcmk_sched_clone.c start = find_rsc_action(child, RSC_START); start 861 lib/pacemaker/pcmk_sched_clone.c if (start) { start 864 lib/pacemaker/pcmk_sched_clone.c order_actions(last_start, start, pe_order_optional); start 866 lib/pacemaker/pcmk_sched_clone.c last_start = start; start 896 lib/pacemaker/pcmk_sched_clone.c pe_action_t *start = NULL; start 917 lib/pacemaker/pcmk_sched_clone.c start = pcmk__new_rsc_pseudo_action(rsc, RSC_START, !child_starting, true); start 927 lib/pacemaker/pcmk_sched_clone.c *start_notify = pcmk__clone_notif_pseudo_ops(rsc, RSC_START, start, start 804 lib/pacemaker/pcmk_sched_colocation.c pe_action_t *start = find_first_action(child->actions, NULL, RSC_START, NULL); start 806 lib/pacemaker/pcmk_sched_colocation.c if ((start == NULL) || pcmk_is_set(start->flags, pe_action_runnable)) { start 246 lib/pacemaker/pcmk_sched_group.c int start = pe_order_implies_then | pe_order_runnable_left; start 295 lib/pacemaker/pcmk_sched_group.c start|pe_order_implies_first_printed, data_set); start 299 lib/pacemaker/pcmk_sched_group.c start|pe_order_implies_first_printed, start 304 lib/pacemaker/pcmk_sched_group.c pcmk__order_starts(last_rsc, child_rsc, start, data_set); start 310 lib/pacemaker/pcmk_sched_group.c RSC_PROMOTE, start, data_set); start 32 lib/pacemaker/pcmk_sched_native.c static void Recurring(pe_resource_t *rsc, pe_action_t *start, pe_node_t *node, start 34 lib/pacemaker/pcmk_sched_native.c static void RecurringOp(pe_resource_t *rsc, pe_action_t *start, pe_node_t *node, start 36 lib/pacemaker/pcmk_sched_native.c static void Recurring_Stopped(pe_resource_t *rsc, pe_action_t *start, pe_node_t *node, start 38 lib/pacemaker/pcmk_sched_native.c static void RecurringOp_Stopped(pe_resource_t *rsc, pe_action_t *start, pe_node_t *node, start 697 lib/pacemaker/pcmk_sched_native.c RecurringOp(pe_resource_t * rsc, pe_action_t * start, pe_node_t * node, start 749 lib/pacemaker/pcmk_sched_native.c if (start != NULL) { start 751 lib/pacemaker/pcmk_sched_native.c pcmk_is_set(start->flags, pe_action_optional)? "optional" : "mandatory", start 752 lib/pacemaker/pcmk_sched_native.c start->uuid); start 753 lib/pacemaker/pcmk_sched_native.c is_optional = (rsc->cmds->action_flags(start, NULL) & pe_action_optional); start 831 lib/pacemaker/pcmk_sched_native.c if ((start == NULL) || !pcmk_is_set(start->flags, pe_action_runnable)) { start 876 lib/pacemaker/pcmk_sched_native.c Recurring(pe_resource_t * rsc, pe_action_t * start, pe_node_t * node, pe_working_set_t * data_set) start 887 lib/pacemaker/pcmk_sched_native.c RecurringOp(rsc, start, node, operation, data_set); start 894 lib/pacemaker/pcmk_sched_native.c RecurringOp_Stopped(pe_resource_t * rsc, pe_action_t * start, pe_node_t * node, start 1083 lib/pacemaker/pcmk_sched_native.c Recurring_Stopped(pe_resource_t * rsc, pe_action_t * start, pe_node_t * node, pe_working_set_t * data_set) start 1094 lib/pacemaker/pcmk_sched_native.c RecurringOp_Stopped(rsc, start, node, operation, data_set); start 1105 lib/pacemaker/pcmk_sched_native.c pe_action_t *start = NULL; start 1111 lib/pacemaker/pcmk_sched_native.c start = start_action(rsc, chosen, TRUE); start 1124 lib/pacemaker/pcmk_sched_native.c pe__set_action_flags(start, pe_action_migrate_runnable); start 1128 lib/pacemaker/pcmk_sched_native.c pe__set_action_flags(start, pe_action_pseudo); start 1133 lib/pacemaker/pcmk_sched_native.c migrate_from->needs = start->needs; start 1142 lib/pacemaker/pcmk_sched_native.c migrate_to->needs = start->needs; start 1247 lib/pacemaker/pcmk_sched_native.c pe_action_t *start = NULL; start 1366 lib/pacemaker/pcmk_sched_native.c start = start_action(rsc, chosen, TRUE); start 1367 lib/pacemaker/pcmk_sched_native.c pe__set_action_flags(start, pe_action_print_always); start 1395 lib/pacemaker/pcmk_sched_native.c start = start_action(rsc, chosen, TRUE); start 1396 lib/pacemaker/pcmk_sched_native.c if (!pcmk_is_set(start->flags, pe_action_optional)) { start 1430 lib/pacemaker/pcmk_sched_native.c start = start_action(rsc, chosen, TRUE); start 1431 lib/pacemaker/pcmk_sched_native.c Recurring(rsc, start, chosen, data_set); start 1432 lib/pacemaker/pcmk_sched_native.c Recurring_Stopped(rsc, start, chosen, data_set); start 2115 lib/pacemaker/pcmk_sched_native.c pe_action_t *start = NULL; start 2123 lib/pacemaker/pcmk_sched_native.c start = start_action(rsc, next, TRUE); start 2125 lib/pacemaker/pcmk_sched_native.c pcmk__order_vs_unfence(rsc, next, start, pe_order_implies_then, data_set); start 2127 lib/pacemaker/pcmk_sched_native.c if (pcmk_is_set(start->flags, pe_action_runnable) && !optional) { start 2128 lib/pacemaker/pcmk_sched_native.c pe__clear_action_flags(start, pe_action_optional); start 2139 lib/pacemaker/pcmk_sched_native.c pe__set_action_flags(start, pe_action_pseudo); start 2160 lib/pacemaker/pcmk_sched_native.c pe_action_t *start = (pe_action_t *) gIter->data; start 2162 lib/pacemaker/pcmk_sched_native.c if (!pcmk_is_set(start->flags, pe_action_runnable)) { start 619 lib/pacemaker/pcmk_sched_notif.c n_data->start = g_list_prepend(n_data->start, entry); start 673 lib/pacemaker/pcmk_sched_notif.c if ((n_data->start != NULL) start 677 lib/pacemaker/pcmk_sched_notif.c n_data->start = notify_entries_to_strings(n_data->start, start 793 lib/pacemaker/pcmk_sched_notif.c pe_action_t *start = NULL; start 823 lib/pacemaker/pcmk_sched_notif.c if (n_data->start == NULL) { start 886 lib/pacemaker/pcmk_sched_notif.c start = find_first_action(rsc->actions, NULL, RSC_START, NULL); start 887 lib/pacemaker/pcmk_sched_notif.c if (start != NULL) { start 888 lib/pacemaker/pcmk_sched_notif.c pe_action_t *remote_start = find_remote_start(start); start 905 lib/pacemaker/pcmk_sched_notif.c if ((task != start_rsc) || (start == NULL) start 906 lib/pacemaker/pcmk_sched_notif.c || pcmk_is_set(start->flags, pe_action_optional)) { start 946 lib/pacemaker/pcmk_sched_notif.c g_list_free_full(n_data->start, free); start 421 lib/pacemaker/pcmk_sched_probes.c pe_action_t *start = NULL; start 428 lib/pacemaker/pcmk_sched_probes.c start = actions->data; start 432 lib/pacemaker/pcmk_sched_probes.c if (start == NULL) { start 439 lib/pacemaker/pcmk_sched_probes.c for (actions = start->actions_before; actions != NULL; start 455 lib/pacemaker/pcmk_sched_probes.c first->uuid, before->action->uuid, start->uuid); start 463 lib/pacemaker/pcmk_sched_probes.c crm_trace("Not a start op %s for %s", first->uuid, start->uuid); start 469 lib/pacemaker/pcmk_sched_probes.c } else if (uber_parent(first_rsc) == uber_parent(start->rsc)) { start 470 lib/pacemaker/pcmk_sched_probes.c crm_trace("Same parent %s for %s", first_rsc->id, start->uuid); start 474 lib/pacemaker/pcmk_sched_probes.c crm_trace("Not a clone %s for %s", first_rsc->id, start->uuid); start 478 lib/pacemaker/pcmk_sched_probes.c crm_err("Applying %s before %s %d", first->uuid, start->uuid, start 331 lib/pacemaker/pcmk_simulate.c clock_t start = 0; start 338 lib/pacemaker/pcmk_simulate.c start = clock(); start 371 lib/pacemaker/pcmk_simulate.c out->message(out, "profile", xml_file, start, end); start 289 lib/pengine/rules.c pe_parse_xml_duration(crm_time_t * start, xmlNode * duration_spec) start 293 lib/pengine/rules.c crm_time_set(end, start); start 1138 lib/pengine/rules.c crm_time_t *start = NULL; start 1156 lib/pengine/rules.c start = crm_time_new(value); start 1163 lib/pengine/rules.c if (start != NULL && end == NULL && duration_spec != NULL) { start 1164 lib/pengine/rules.c end = pe_parse_xml_duration(start, duration_spec); start 1168 lib/pengine/rules.c if ((start == NULL) && (end == NULL)) { start 1170 lib/pengine/rules.c } else if ((start != NULL) && (crm_time_compare(rule_data->now, start) < 0)) { start 1172 lib/pengine/rules.c crm_time_set_if_earlier(next_change, start); start 1189 lib/pengine/rules.c if (start == NULL) { start 1191 lib/pengine/rules.c } else if (crm_time_compare(rule_data->now, start) > 0) { start 1197 lib/pengine/rules.c crm_time_add_seconds(start, 1); start 1198 lib/pengine/rules.c crm_time_set_if_earlier(next_change, start); start 1212 lib/pengine/rules.c crm_time_free(start); start 1025 lib/services/services_linux.c time_t start = time(NULL); start 1085 lib/services/services_linux.c timeout = op->timeout - (time(NULL) - start) * 1000; start 179 lib/services/services_nagios.c int start = 0, length = 0, read_len = 0; start 190 lib/services/services_nagios.c start = ftell(file_strm); start 193 lib/services/services_nagios.c fseek(file_strm, 0L, start); start 196 lib/services/services_nagios.c CRM_ASSERT(start == ftell(file_strm)); start 206 maint/gnulib/lib/canonicalize-lgpl.c char const *start; start 255 maint/gnulib/lib/canonicalize-lgpl.c start = name; start 269 maint/gnulib/lib/canonicalize-lgpl.c start = name + prefix_len; start 272 maint/gnulib/lib/canonicalize-lgpl.c for ( ; *start; start = end) start 275 maint/gnulib/lib/canonicalize-lgpl.c while (ISSLASH (*start)) start 276 maint/gnulib/lib/canonicalize-lgpl.c ++start; start 279 maint/gnulib/lib/canonicalize-lgpl.c for (end = start; *end && !ISSLASH (*end); ++end) start 284 maint/gnulib/lib/canonicalize-lgpl.c idx_t startlen = end - start; start 288 maint/gnulib/lib/canonicalize-lgpl.c else if (startlen == 1 && start[0] == '.') start 290 maint/gnulib/lib/canonicalize-lgpl.c else if (startlen == 2 && start[0] == '.' && start[1] == '.') start 316 maint/gnulib/lib/canonicalize-lgpl.c dest = __mempcpy (dest, start, startlen); start 190 maint/gnulib/lib/canonicalize.c char const *start; start 248 maint/gnulib/lib/canonicalize.c start = name; start 287 maint/gnulib/lib/canonicalize.c start = name + prefix_len; start 290 maint/gnulib/lib/canonicalize.c for ( ; *start; start = end) start 293 maint/gnulib/lib/canonicalize.c while (ISSLASH (*start)) start 294 maint/gnulib/lib/canonicalize.c ++start; start 297 maint/gnulib/lib/canonicalize.c for (end = start; *end && !ISSLASH (*end); ++end) start 302 maint/gnulib/lib/canonicalize.c idx_t startlen = end - start; start 306 maint/gnulib/lib/canonicalize.c else if (startlen == 1 && start[0] == '.') start 308 maint/gnulib/lib/canonicalize.c else if (startlen == 2 && start[0] == '.' && start[1] == '.') start 334 maint/gnulib/lib/canonicalize.c dest = mempcpy (dest, start, startlen); start 358 maint/gnulib/lib/canonicalize.c else if (*start) start 369 maint/gnulib/lib/canonicalize.c dest[- startlen] = *start; start 376 maint/gnulib/lib/canonicalize.c if (seen_triple (&ht, start, &st)) start 4757 maint/gnulib/lib/gen-uni-tables.c unsigned int start; start 4760 maint/gnulib/lib/gen-uni-tables.c start = ch; start 4767 maint/gnulib/lib/gen-uni-tables.c if (start == end) start 4768 maint/gnulib/lib/gen-uni-tables.c fprintf (stream, " { 0x%04X, 1, 1 }", start); start 4771 maint/gnulib/lib/gen-uni-tables.c start, end); start 4944 maint/gnulib/lib/gen-uni-tables.c typedef struct { unsigned int start; unsigned int end; const char *name; } start 4979 maint/gnulib/lib/gen-uni-tables.c blocks[numblocks].start = i1; start 4983 maint/gnulib/lib/gen-uni-tables.c assert (numblocks == 0 || blocks[numblocks-1].end < blocks[numblocks].start); start 5030 maint/gnulib/lib/gen-uni-tables.c if (blocks[mid].start <= ch) start 5070 maint/gnulib/lib/gen-uni-tables.c fprintf (stream, " { 0x%04X, 0x%04X, \"%s\" }", blocks[i].start, start 343 maint/gnulib/lib/get-rusage-as.c vma_iterate_callback (void *data, uintptr_t start, uintptr_t end, start 348 maint/gnulib/lib/get-rusage-as.c *totalp += end - start; start 340 maint/gnulib/lib/get-rusage-data.c vma_iterate_callback (void *data, uintptr_t start, uintptr_t end, start 345 maint/gnulib/lib/get-rusage-data.c if (start <= lp->brk_value && lp->brk_value - 1 <= end - 1) start 347 maint/gnulib/lib/get-rusage-data.c lp->data_segment_size = end - start; start 187 maint/gnulib/lib/get_progname_of.c char *start = p + 1; start 192 maint/gnulib/lib/get_progname_of.c return strdup (start); start 322 maint/gnulib/lib/git-merge-changelog.c char *start = contents; start 323 maint/gnulib/lib/git-merge-changelog.c while (start < contents_end) start 326 maint/gnulib/lib/git-merge-changelog.c char *ptr = start; start 347 maint/gnulib/lib/git-merge-changelog.c curr = entry_create (start, ptr - start); start 351 maint/gnulib/lib/git-merge-changelog.c start = ptr; start 35 maint/gnulib/lib/gl_sublist.c size_t start; start 72 maint/gnulib/lib/gl_sublist.c return list->end - list->start; start 79 maint/gnulib/lib/gl_sublist.c if (!(index < list->end - list->start)) start 82 maint/gnulib/lib/gl_sublist.c return gl_list_get_at (list->whole, list->start + index); start 89 maint/gnulib/lib/gl_sublist.c if (!(index < list->end - list->start)) start 92 maint/gnulib/lib/gl_sublist.c if (gl_list_nx_set_at (list->whole, list->start + index, elt) == NULL) start 101 maint/gnulib/lib/gl_sublist.c size_t count = list->end - list->start; start 116 maint/gnulib/lib/gl_sublist.c if (!(index < list->end - list->start)) start 128 maint/gnulib/lib/gl_sublist.c if (list->end > list->start) start 137 maint/gnulib/lib/gl_sublist.c size_t count = list->end - list->start; start 147 maint/gnulib/lib/gl_sublist.c if (!(position < list->end - list->start)) start 150 maint/gnulib/lib/gl_sublist.c return gl_list_get_at (list->whole, list->start + position); start 156 maint/gnulib/lib/gl_sublist.c if (!(position < list->end - list->start)) start 159 maint/gnulib/lib/gl_sublist.c if (gl_list_nx_set_at (list->whole, list->start + position, elt) == NULL) start 168 maint/gnulib/lib/gl_sublist.c if (!(start_index <= end_index && end_index <= list->end - list->start)) start 174 maint/gnulib/lib/gl_sublist.c list->start + start_index, start 175 maint/gnulib/lib/gl_sublist.c list->start + end_index, start 178 maint/gnulib/lib/gl_sublist.c return INDEX_TO_NODE (index - list->start); start 189 maint/gnulib/lib/gl_sublist.c if (!(start_index <= end_index && end_index <= list->end - list->start)) start 195 maint/gnulib/lib/gl_sublist.c list->start + start_index, start 196 maint/gnulib/lib/gl_sublist.c list->start + end_index, start 199 maint/gnulib/lib/gl_sublist.c index -= list->start; start 207 maint/gnulib/lib/gl_sublist.c if (gl_list_nx_add_at (list->whole, list->start, elt) == NULL) start 219 maint/gnulib/lib/gl_sublist.c return INDEX_TO_NODE (list->end - list->start - 1); start 226 maint/gnulib/lib/gl_sublist.c if (!(position < list->end - list->start)) start 229 maint/gnulib/lib/gl_sublist.c if (gl_list_nx_add_at (list->whole, list->start + position, elt) == NULL) start 239 maint/gnulib/lib/gl_sublist.c if (!(position < list->end - list->start)) start 243 maint/gnulib/lib/gl_sublist.c if (gl_list_nx_add_at (list->whole, list->start + position, elt) == NULL) start 252 maint/gnulib/lib/gl_sublist.c if (!(position <= list->end - list->start)) start 255 maint/gnulib/lib/gl_sublist.c if (gl_list_nx_add_at (list->whole, list->start + position, elt) == NULL) start 265 maint/gnulib/lib/gl_sublist.c if (!(index < list->end - list->start)) start 268 maint/gnulib/lib/gl_sublist.c return gl_list_remove_at (list->whole, list->start + index); start 274 maint/gnulib/lib/gl_sublist.c if (!(position < list->end - list->start)) start 277 maint/gnulib/lib/gl_sublist.c return gl_list_remove_at (list->whole, list->start + position); start 284 maint/gnulib/lib/gl_sublist.c gl_list_indexof_from_to (list->whole, list->start, list->end, elt); start 302 maint/gnulib/lib/gl_sublist.c return gl_list_iterator_from_to (list->whole, list->start, list->end); start 309 maint/gnulib/lib/gl_sublist.c if (!(start_index <= end_index && end_index <= list->end - list->start)) start 313 maint/gnulib/lib/gl_sublist.c list->start + start_index, start 314 maint/gnulib/lib/gl_sublist.c list->start + end_index); start 341 maint/gnulib/lib/gl_sublist.c list->start, list->end, elt); start 343 maint/gnulib/lib/gl_sublist.c return INDEX_TO_NODE (index - list->start); start 356 maint/gnulib/lib/gl_sublist.c if (!(low <= high && high <= list->end - list->start)) start 362 maint/gnulib/lib/gl_sublist.c list->start + low, list->start + high, elt); start 364 maint/gnulib/lib/gl_sublist.c return INDEX_TO_NODE (index - list->start); start 375 maint/gnulib/lib/gl_sublist.c gl_sortedlist_indexof_from_to (list->whole, compar, list->start, list->end, start 378 maint/gnulib/lib/gl_sublist.c index -= list->start; start 390 maint/gnulib/lib/gl_sublist.c if (!(low <= high && high <= list->end - list->start)) start 395 maint/gnulib/lib/gl_sublist.c list->start + low, list->start + high, start 398 maint/gnulib/lib/gl_sublist.c index -= list->start; start 485 maint/gnulib/lib/gl_sublist.c list->start = whole_list->start + start_index; start 486 maint/gnulib/lib/gl_sublist.c list->end = whole_list->start + end_index; start 491 maint/gnulib/lib/gl_sublist.c list->start = start_index; start 32 maint/gnulib/lib/mbssep.c char *start = *stringp; start 35 maint/gnulib/lib/mbssep.c if (start == NULL) start 41 maint/gnulib/lib/mbssep.c ptr = mbspbrk (start, delim); start 46 maint/gnulib/lib/mbssep.c return start; start 58 maint/gnulib/lib/mbssep.c return start; start 104 maint/gnulib/lib/parse-duration.c parse_hr_min_sec (time_t start, cch_t * pz) start 119 maint/gnulib/lib/parse-duration.c start = scale_n_add (v, start, 60); start 134 maint/gnulib/lib/parse-duration.c return start; start 43 maint/gnulib/lib/pipe-filter-ii.c unsigned int WINAPI (*start) (void *); start 54 maint/gnulib/lib/pipe-filter-ii.c h->start (h->arg); start 61 maint/gnulib/lib/pipe-filter-ii.c _beginthreadex (void *s, unsigned n, unsigned int WINAPI (*start) (void *), start 73 maint/gnulib/lib/pipe-filter-ii.c h->start = start; start 2478 maint/gnulib/lib/regcomp.c Idx i, start, end, start_idx = re_string_cur_idx (regexp); start 2484 maint/gnulib/lib/regcomp.c start = fetch_number (regexp, token, syntax); start 2485 maint/gnulib/lib/regcomp.c if (start == -1) start 2488 maint/gnulib/lib/regcomp.c start = 0; /* We treat "{,m}" as "{0,m}". */ start 2495 maint/gnulib/lib/regcomp.c if (__glibc_likely (start != -2)) start 2498 maint/gnulib/lib/regcomp.c end = ((token->type == OP_CLOSE_DUP_NUM) ? start start 2502 maint/gnulib/lib/regcomp.c if (__glibc_unlikely (start == -2 || end == -2)) start 2524 maint/gnulib/lib/regcomp.c if (__glibc_unlikely ((end != -1 && start > end) start 2532 maint/gnulib/lib/regcomp.c if (__glibc_unlikely (RE_DUP_MAX < (end == -1 ? start : end))) start 2540 maint/gnulib/lib/regcomp.c start = (token->type == OP_DUP_PLUS) ? 1 : 0; start 2548 maint/gnulib/lib/regcomp.c if (__glibc_unlikely (start == 0 && end == 0)) start 2555 maint/gnulib/lib/regcomp.c if (__glibc_unlikely (start > 0)) start 2558 maint/gnulib/lib/regcomp.c for (i = 2; i <= start; ++i) start 2566 maint/gnulib/lib/regcomp.c if (start == end) start 2593 maint/gnulib/lib/regcomp.c for (i = start + 2; i <= end; ++i) start 500 maint/gnulib/lib/regex.h regoff_t *start; start 36 maint/gnulib/lib/regexec.c Idx start, Idx last_start, Idx stop, start 42 maint/gnulib/lib/regexec.c Idx start, regoff_t range, start 46 maint/gnulib/lib/regexec.c const char *string, Idx length, Idx start, start 191 maint/gnulib/lib/regexec.c Idx start, length; start 199 maint/gnulib/lib/regexec.c start = pmatch[0].rm_so; start 204 maint/gnulib/lib/regexec.c start = 0; start 210 maint/gnulib/lib/regexec.c err = re_search_internal (preg, string, length, start, length, start 213 maint/gnulib/lib/regexec.c err = re_search_internal (preg, string, length, start, length, start 272 maint/gnulib/lib/regexec.c Idx start, struct re_registers *regs) start 274 maint/gnulib/lib/regexec.c return re_search_stub (bufp, string, length, start, 0, length, regs, true); start 282 maint/gnulib/lib/regexec.c Idx start, regoff_t range, struct re_registers *regs) start 284 maint/gnulib/lib/regexec.c return re_search_stub (bufp, string, length, start, range, length, regs, start 293 maint/gnulib/lib/regexec.c const char *string2, Idx length2, Idx start, start 297 maint/gnulib/lib/regexec.c start, 0, regs, stop, true); start 305 maint/gnulib/lib/regexec.c const char *string2, Idx length2, Idx start, regoff_t range, start 309 maint/gnulib/lib/regexec.c start, range, regs, stop, false); start 317 maint/gnulib/lib/regexec.c Idx length1, const char *string2, Idx length2, Idx start, start 351 maint/gnulib/lib/regexec.c rval = re_search_stub (bufp, str, len, start, range, stop, regs, start 364 maint/gnulib/lib/regexec.c Idx start, regoff_t range, Idx stop, struct re_registers *regs, start 373 maint/gnulib/lib/regexec.c Idx last_start = start + range; start 376 maint/gnulib/lib/regexec.c if (__glibc_unlikely (start < 0 || start > length)) start 379 maint/gnulib/lib/regexec.c || (0 <= range && last_start < start))) start 382 maint/gnulib/lib/regexec.c || (range < 0 && start <= last_start))) start 391 maint/gnulib/lib/regexec.c if (start < last_start && bufp->fastmap != NULL && !bufp->fastmap_accurate) start 420 maint/gnulib/lib/regexec.c result = re_search_internal (bufp, string, length, start, last_start, stop, start 441 maint/gnulib/lib/regexec.c DEBUG_ASSERT (pmatch[0].rm_so == start); start 442 maint/gnulib/lib/regexec.c rval = pmatch[0].rm_eo - start; start 466 maint/gnulib/lib/regexec.c regs->start = re_malloc (regoff_t, need_regs); start 467 maint/gnulib/lib/regexec.c if (__glibc_unlikely (regs->start == NULL)) start 472 maint/gnulib/lib/regexec.c re_free (regs->start); start 483 maint/gnulib/lib/regexec.c regoff_t *new_start = re_realloc (regs->start, regoff_t, need_regs); start 493 maint/gnulib/lib/regexec.c regs->start = new_start; start 509 maint/gnulib/lib/regexec.c regs->start[i] = pmatch[i].rm_so; start 513 maint/gnulib/lib/regexec.c regs->start[i] = regs->end[i] = -1; start 539 maint/gnulib/lib/regexec.c regs->start = starts; start 546 maint/gnulib/lib/regexec.c regs->start = regs->end = NULL; start 581 maint/gnulib/lib/regexec.c Idx start, Idx last_start, Idx stop, size_t nmatch, start 597 maint/gnulib/lib/regexec.c && start != last_start && !preg->can_be_null) start 622 maint/gnulib/lib/regexec.c if (start != 0 && last_start != 0) start 624 maint/gnulib/lib/regexec.c start = last_start = 0; start 665 maint/gnulib/lib/regexec.c match_first = start; start 670 maint/gnulib/lib/regexec.c incr = (last_start < start) ? -1 : 1; start 671 maint/gnulib/lib/regexec.c left_lim = (last_start < start) ? last_start : start; start 672 maint/gnulib/lib/regexec.c right_lim = (last_start < start) ? start : last_start; start 677 maint/gnulib/lib/regexec.c | (start <= last_start ? 2 : 0) start 785 maint/gnulib/lib/regexec.c start <= last_start ? &match_first : NULL); start 420 maint/gnulib/lib/relocatable.c unsigned long start, end; start 423 maint/gnulib/lib/relocatable.c if (fscanf (fp, "%lx-%lx", &start, &end) != 2) start 425 maint/gnulib/lib/relocatable.c if (address >= start && address <= end - 1) start 980 maint/gnulib/lib/sigsegv.c if (addr >= vma.start start 985 maint/gnulib/lib/sigsegv.c ? (addr >= vma.start) start 1002 maint/gnulib/lib/sigsegv.c uintptr_t current_stack_size = vma.end - vma.start; start 1017 maint/gnulib/lib/sigsegv.c || (old_sp <= vma.start + 4096 start 1018 maint/gnulib/lib/sigsegv.c && vma.start <= old_sp + 4096)) start 1121 maint/gnulib/lib/sigsegv.c uintptr_t current_stack_size = vma.end - vma.start; start 1136 maint/gnulib/lib/sigsegv.c || (old_sp <= vma.start + 4096 start 1137 maint/gnulib/lib/sigsegv.c && vma.start <= old_sp + 4096)) start 506 maint/gnulib/lib/ssfmalloc.h pg_offset_t start; start 544 maint/gnulib/lib/ssfmalloc.h pageptr->gaps[0].start = MEDIUM_BLOCKS_PAGE_FIRST_GAP_START; start 565 maint/gnulib/lib/ssfmalloc.h size_t length = pageptr->gaps[i].end - pageptr->gaps[i].start; start 593 maint/gnulib/lib/ssfmalloc.h size_t result = pageptr->gaps[best_i].start; start 595 maint/gnulib/lib/ssfmalloc.h pageptr->gaps[best_i + 1].start = result + aligned_size; start 642 maint/gnulib/lib/ssfmalloc.h pageptr->common.free_space += gaps[index + 1].start - gaps[index].end; start 643 maint/gnulib/lib/ssfmalloc.h if (pageptr->common.free_space < gaps[index + 1].start - gaps[index].end) start 62 maint/gnulib/lib/stackvma.c return (vma->start - addr <= (vma->start - vma->prev_end) / 2); start 336 maint/gnulib/lib/stackvma.c static int callback (struct callback_locals *locals, uintptr_t start, uintptr_t end); start 355 maint/gnulib/lib/stackvma.c uintptr_t start, end; start 359 maint/gnulib/lib/stackvma.c if (!(rof_scanf_lx (&rof, &start) >= 0 start 366 maint/gnulib/lib/stackvma.c if (start <= auxmap_start && auxmap_end - 1 <= end - 1) start 370 maint/gnulib/lib/stackvma.c if (start < auxmap_start) start 371 maint/gnulib/lib/stackvma.c if (callback (locals, start, auxmap_start)) start 379 maint/gnulib/lib/stackvma.c if (callback (locals, start, end)) start 411 maint/gnulib/lib/stackvma.c uintptr_t start, end; start 417 maint/gnulib/lib/stackvma.c && rof_scanf_lx (&rof, &start) >= 0)) start 429 maint/gnulib/lib/stackvma.c if (start <= auxmap_start && auxmap_end - 1 <= end - 1) start 433 maint/gnulib/lib/stackvma.c if (start < auxmap_start) start 434 maint/gnulib/lib/stackvma.c if (callback (locals, start, auxmap_start)) start 442 maint/gnulib/lib/stackvma.c if (callback (locals, start, end)) start 506 maint/gnulib/lib/stackvma.c unsigned long start = kve->kve_start; start 508 maint/gnulib/lib/stackvma.c if (start <= auxmap_start && auxmap_end - 1 <= end - 1) start 512 maint/gnulib/lib/stackvma.c if (start < auxmap_start) start 513 maint/gnulib/lib/stackvma.c if (callback (locals, start, auxmap_start)) start 521 maint/gnulib/lib/stackvma.c if (callback (locals, start, end)) start 806 maint/gnulib/lib/stackvma.c uintptr_t testaddr = addr - (vma->start - addr); start 810 maint/gnulib/lib/stackvma.c return is_unmapped (testaddr, vma->start - 1); start 844 maint/gnulib/lib/stackvma.c vma->start = mapped_range_start (address); start 871 maint/gnulib/lib/stackvma.c callback (struct callback_locals *locals, uintptr_t start, uintptr_t end) start 874 maint/gnulib/lib/stackvma.c if (locals->address >= start && locals->address <= end - 1) start 876 maint/gnulib/lib/stackvma.c locals->vma->start = start; start 886 maint/gnulib/lib/stackvma.c locals->vma->next_start = start; start 890 maint/gnulib/lib/stackvma.c if (locals->address >= start && locals->address <= end - 1) start 892 maint/gnulib/lib/stackvma.c locals->vma->start = start; start 949 maint/gnulib/lib/stackvma.c callback (struct callback_locals *locals, uintptr_t start, uintptr_t end) start 951 maint/gnulib/lib/stackvma.c if (start == locals->curr_end) start 962 maint/gnulib/lib/stackvma.c locals->vma->start = locals->curr_start; start 980 maint/gnulib/lib/stackvma.c locals->vma->start = locals->curr_start; start 987 maint/gnulib/lib/stackvma.c locals->curr_start = start; locals->curr_end = end; start 1012 maint/gnulib/lib/stackvma.c vma->start = locals.curr_start; start 1060 maint/gnulib/lib/stackvma.c callback (struct callback_locals *locals, uintptr_t start, uintptr_t end) start 1062 maint/gnulib/lib/stackvma.c if (start == locals->curr_end) start 1073 maint/gnulib/lib/stackvma.c locals->vma->start = locals->curr_start; start 1091 maint/gnulib/lib/stackvma.c locals->vma->start = locals->curr_start; start 1098 maint/gnulib/lib/stackvma.c locals->curr_start = start; locals->curr_end = end; start 1123 maint/gnulib/lib/stackvma.c vma->start = locals.curr_start; start 1313 maint/gnulib/lib/stackvma.c uintptr_t testaddr = addr - (vma->start - addr); start 1317 maint/gnulib/lib/stackvma.c return is_unmapped (testaddr, vma->start - 1); start 1351 maint/gnulib/lib/stackvma.c vma->start = mapped_range_start (address); start 1436 maint/gnulib/lib/stackvma.c vma->start = join_address; start 1445 maint/gnulib/lib/stackvma.c vma->start = prev_address; start 1457 maint/gnulib/lib/stackvma.c vma->start = prev_address; start 1522 maint/gnulib/lib/stackvma.c callback (struct callback_locals *locals, uintptr_t start, uintptr_t end) start 1525 maint/gnulib/lib/stackvma.c if (locals->address >= start && locals->address <= end - 1) start 1527 maint/gnulib/lib/stackvma.c locals->vma->start = start; start 1537 maint/gnulib/lib/stackvma.c locals->vma->next_start = start; start 1541 maint/gnulib/lib/stackvma.c if (locals->address >= start && locals->address <= end - 1) start 1543 maint/gnulib/lib/stackvma.c locals->vma->start = start; start 1650 maint/gnulib/lib/stackvma.c uintptr_t start, end; start 1652 maint/gnulib/lib/stackvma.c start = (uintptr_t) mp->pr_vaddr; start 1653 maint/gnulib/lib/stackvma.c end = start + mp->pr_size; start 1654 maint/gnulib/lib/stackvma.c if (start == 0 && end == 0) start 1657 maint/gnulib/lib/stackvma.c if (start <= auxmap_start && auxmap_end - 1 <= end - 1) start 1661 maint/gnulib/lib/stackvma.c if (start < auxmap_start) start 1662 maint/gnulib/lib/stackvma.c if (callback (locals, start, auxmap_start)) start 1670 maint/gnulib/lib/stackvma.c if (callback (locals, start, end)) start 1790 maint/gnulib/lib/stackvma.c uintptr_t start, end; start 1792 maint/gnulib/lib/stackvma.c start = (uintptr_t) mp->pr_vaddr; start 1793 maint/gnulib/lib/stackvma.c end = start + mp->pr_size; start 1794 maint/gnulib/lib/stackvma.c if (start <= auxmap_start && auxmap_end - 1 <= end - 1) start 1798 maint/gnulib/lib/stackvma.c if (start < auxmap_start) start 1799 maint/gnulib/lib/stackvma.c if (callback (locals, start, auxmap_start)) start 1807 maint/gnulib/lib/stackvma.c if (callback (locals, start, end)) start 1875 maint/gnulib/lib/stackvma.c callback (struct callback_locals *locals, uintptr_t start, uintptr_t end) start 1877 maint/gnulib/lib/stackvma.c if (start == locals->curr_end) start 1888 maint/gnulib/lib/stackvma.c locals->vma->start = locals->curr_start; start 1906 maint/gnulib/lib/stackvma.c locals->vma->start = locals->curr_start; start 1913 maint/gnulib/lib/stackvma.c locals->curr_start = start; locals->curr_end = end; start 1938 maint/gnulib/lib/stackvma.c vma->start = locals.curr_start; start 1980 maint/gnulib/lib/stackvma.c callback (struct callback_locals *locals, uintptr_t start, uintptr_t end) start 1983 maint/gnulib/lib/stackvma.c if (locals->address >= start && locals->address <= end - 1) start 1985 maint/gnulib/lib/stackvma.c locals->vma->start = start; start 1995 maint/gnulib/lib/stackvma.c locals->vma->next_start = start; start 1999 maint/gnulib/lib/stackvma.c if (locals->address >= start && locals->address <= end - 1) start 2001 maint/gnulib/lib/stackvma.c locals->vma->start = start; start 2033 maint/gnulib/lib/stackvma.c uintptr_t start, end; start 2035 maint/gnulib/lib/stackvma.c start = (uintptr_t) info.address; start 2036 maint/gnulib/lib/stackvma.c end = start + info.size; start 2038 maint/gnulib/lib/stackvma.c if (callback (locals, start, end)) start 29 maint/gnulib/lib/stackvma.h uintptr_t start; start 28 maint/gnulib/lib/strsep.c char *start = *stringp; start 31 maint/gnulib/lib/strsep.c if (start == NULL) start 38 maint/gnulib/lib/strsep.c return start; start 43 maint/gnulib/lib/strsep.c ptr = strchr (start, delim[0]); start 46 maint/gnulib/lib/strsep.c ptr = strpbrk (start, delim); start 50 maint/gnulib/lib/strsep.c return start; start 56 maint/gnulib/lib/strsep.c return start; start 135 maint/gnulib/lib/timevar.c const struct timevar_time_def *start, start 138 maint/gnulib/lib/timevar.c timer->user += stop->user - start->user; start 139 maint/gnulib/lib/timevar.c timer->sys += stop->sys - start->sys; start 140 maint/gnulib/lib/timevar.c timer->wall += stop->wall - start->wall; start 874 maint/gnulib/lib/unictype.in.h unsigned int start : 1; start 911 maint/gnulib/lib/unictype.in.h ucs4_t start; start 35 maint/gnulib/lib/unictype/block_test.c return ((ucs4_t) (uc - block->start) <= block->end - block->start); start 57 maint/gnulib/lib/unictype/blocks.c else if (uc < blocks[mid_index].start) start 112 maint/gnulib/lib/unigbrk.in.h u8_grapheme_prev (const uint8_t *s, const uint8_t *start) start 115 maint/gnulib/lib/unigbrk.in.h u16_grapheme_prev (const uint16_t *s, const uint16_t *start) start 118 maint/gnulib/lib/unigbrk.in.h u32_grapheme_prev (const uint32_t *s, const uint32_t *start) start 34 maint/gnulib/lib/unigbrk/u16-grapheme-prev.c u16_grapheme_prev (const uint16_t *s, const uint16_t *start) start 38 maint/gnulib/lib/unigbrk/u16-grapheme-prev.c if (s == start) start 41 maint/gnulib/lib/unigbrk/u16-grapheme-prev.c s = u16_prev (&next, s, start); start 42 maint/gnulib/lib/unigbrk/u16-grapheme-prev.c while (s != start) start 47 maint/gnulib/lib/unigbrk/u16-grapheme-prev.c prev_s = u16_prev (&prev, s, start); start 51 maint/gnulib/lib/unigbrk/u16-grapheme-prev.c return start; start 34 maint/gnulib/lib/unigbrk/u32-grapheme-prev.c u32_grapheme_prev (const uint32_t *s, const uint32_t *start) start 38 maint/gnulib/lib/unigbrk/u32-grapheme-prev.c if (s == start) start 41 maint/gnulib/lib/unigbrk/u32-grapheme-prev.c u32_prev (&next, s, start); start 42 maint/gnulib/lib/unigbrk/u32-grapheme-prev.c for (s--; s != start; s--) start 46 maint/gnulib/lib/unigbrk/u32-grapheme-prev.c if (u32_prev (&prev, s, start) == NULL) start 49 maint/gnulib/lib/unigbrk/u32-grapheme-prev.c return start; start 34 maint/gnulib/lib/unigbrk/u8-grapheme-prev.c u8_grapheme_prev (const uint8_t *s, const uint8_t *start) start 38 maint/gnulib/lib/unigbrk/u8-grapheme-prev.c if (s == start) start 41 maint/gnulib/lib/unigbrk/u8-grapheme-prev.c s = u8_prev (&next, s, start); start 42 maint/gnulib/lib/unigbrk/u8-grapheme-prev.c while (s != start) start 47 maint/gnulib/lib/unigbrk/u8-grapheme-prev.c prev_s = u8_prev (&prev, s, start); start 51 maint/gnulib/lib/unigbrk/u8-grapheme-prev.c return start; start 499 maint/gnulib/lib/unistr.in.h u8_prev (ucs4_t *puc, const uint8_t *s, const uint8_t *start); start 501 maint/gnulib/lib/unistr.in.h u16_prev (ucs4_t *puc, const uint16_t *s, const uint16_t *start); start 503 maint/gnulib/lib/unistr.in.h u32_prev (ucs4_t *puc, const uint32_t *s, const uint32_t *start); start 32 maint/gnulib/lib/unistr/u16-prev.c u16_prev (ucs4_t *puc, const uint16_t *s, const uint16_t *start) start 35 maint/gnulib/lib/unistr/u16-prev.c if (s != start) start 45 maint/gnulib/lib/unistr/u16-prev.c if (s - 1 != start) start 32 maint/gnulib/lib/unistr/u32-prev.c u32_prev (ucs4_t *puc, const uint32_t *s, const uint32_t *start) start 34 maint/gnulib/lib/unistr/u32-prev.c if (s != start) start 24 maint/gnulib/lib/unistr/u8-prev.c u8_prev (ucs4_t *puc, const uint8_t *s, const uint8_t *start) start 27 maint/gnulib/lib/unistr/u8-prev.c if (s != start) start 37 maint/gnulib/lib/unistr/u8-prev.c if (s - 1 != start) start 48 maint/gnulib/lib/unistr/u8-prev.c if (s - 2 != start) start 62 maint/gnulib/lib/unistr/u8-prev.c if (s - 3 != start) start 362 maint/gnulib/lib/vma-iter.c unsigned long start, end; start 367 maint/gnulib/lib/vma-iter.c if (!(rof_scanf_lx (&rof, &start) >= 0 start 387 maint/gnulib/lib/vma-iter.c if (start <= auxmap_start && auxmap_end - 1 <= end - 1) start 391 maint/gnulib/lib/vma-iter.c if (start < auxmap_start) start 392 maint/gnulib/lib/vma-iter.c if (callback (data, start, auxmap_start, flags)) start 400 maint/gnulib/lib/vma-iter.c if (callback (data, start, end, flags)) start 426 maint/gnulib/lib/vma-iter.c unsigned long start, end; start 433 maint/gnulib/lib/vma-iter.c && rof_scanf_lx (&rof, &start) >= 0)) start 481 maint/gnulib/lib/vma-iter.c if (start <= auxmap_start && auxmap_end - 1 <= end - 1) start 485 maint/gnulib/lib/vma-iter.c if (start < auxmap_start) start 486 maint/gnulib/lib/vma-iter.c if (callback (data, start, auxmap_start, flags)) start 494 maint/gnulib/lib/vma-iter.c if (callback (data, start, end, flags)) start 534 maint/gnulib/lib/vma-iter.c unsigned long start, end; start 539 maint/gnulib/lib/vma-iter.c if (!(rof_scanf_lx (&rof, &start) >= 0 start 559 maint/gnulib/lib/vma-iter.c if (start <= auxmap_start && auxmap_end - 1 <= end - 1) start 563 maint/gnulib/lib/vma-iter.c if (start < auxmap_start) start 564 maint/gnulib/lib/vma-iter.c if (callback (data, start, auxmap_start, flags)) start 572 maint/gnulib/lib/vma-iter.c if (callback (data, start, end, flags)) start 644 maint/gnulib/lib/vma-iter.c unsigned long start = kve->kve_start; start 653 maint/gnulib/lib/vma-iter.c if (start <= auxmap_start && auxmap_end - 1 <= end - 1) start 657 maint/gnulib/lib/vma-iter.c if (start < auxmap_start) start 658 maint/gnulib/lib/vma-iter.c if (callback (data, start, auxmap_start, flags)) start 666 maint/gnulib/lib/vma-iter.c if (callback (data, start, end, flags)) start 736 maint/gnulib/lib/vma-iter.c unsigned long start = kve->kve_start; start 745 maint/gnulib/lib/vma-iter.c if (start <= auxmap_start && auxmap_end - 1 <= end - 1) start 749 maint/gnulib/lib/vma-iter.c if (start < auxmap_start) start 750 maint/gnulib/lib/vma-iter.c if (callback (data, start, auxmap_start, flags)) start 758 maint/gnulib/lib/vma-iter.c if (callback (data, start, end, flags)) start 823 maint/gnulib/lib/vma-iter.c unsigned long start = kve->kve_start; start 832 maint/gnulib/lib/vma-iter.c if (start <= auxmap_start && auxmap_end - 1 <= end - 1) start 836 maint/gnulib/lib/vma-iter.c if (start < auxmap_start) start 837 maint/gnulib/lib/vma-iter.c if (callback (data, start, auxmap_start, flags)) start 845 maint/gnulib/lib/vma-iter.c if (start != end) start 846 maint/gnulib/lib/vma-iter.c if (callback (data, start, end, flags)) start 962 maint/gnulib/lib/vma-iter.c unsigned long start, end; start 965 maint/gnulib/lib/vma-iter.c start = (unsigned long) mp->pr_vaddr; start 966 maint/gnulib/lib/vma-iter.c end = start + mp->pr_size; start 967 maint/gnulib/lib/vma-iter.c if (start == 0 && end == 0) start 977 maint/gnulib/lib/vma-iter.c if (start <= auxmap_start && auxmap_end - 1 <= end - 1) start 981 maint/gnulib/lib/vma-iter.c if (start < auxmap_start) start 982 maint/gnulib/lib/vma-iter.c if (callback (data, start, auxmap_start, flags)) start 990 maint/gnulib/lib/vma-iter.c if (callback (data, start, end, flags)) start 1087 maint/gnulib/lib/vma-iter.c unsigned long start, end; start 1090 maint/gnulib/lib/vma-iter.c start = (unsigned long) mp->pr_vaddr; start 1091 maint/gnulib/lib/vma-iter.c end = start + mp->pr_size; start 1092 maint/gnulib/lib/vma-iter.c if (start == 0 && end == 0) start 1102 maint/gnulib/lib/vma-iter.c if (start <= auxmap_start && auxmap_end - 1 <= end - 1) start 1106 maint/gnulib/lib/vma-iter.c if (start < auxmap_start) start 1107 maint/gnulib/lib/vma-iter.c if (callback (data, start, auxmap_start, flags)) start 1115 maint/gnulib/lib/vma-iter.c if (callback (data, start, end, flags)) start 1235 maint/gnulib/lib/vma-iter.c unsigned long start, end; start 1238 maint/gnulib/lib/vma-iter.c start = (unsigned long) mp->pr_vaddr; start 1239 maint/gnulib/lib/vma-iter.c end = start + mp->pr_size; start 1247 maint/gnulib/lib/vma-iter.c if (start <= auxmap_start && auxmap_end - 1 <= end - 1) start 1251 maint/gnulib/lib/vma-iter.c if (start < auxmap_start) start 1252 maint/gnulib/lib/vma-iter.c if (callback (data, start, auxmap_start, flags)) start 1260 maint/gnulib/lib/vma-iter.c if (callback (data, start, end, flags)) start 1290 maint/gnulib/lib/vma-iter.c unsigned long start = info.pst_vaddr; start 1291 maint/gnulib/lib/vma-iter.c unsigned long end = start + info.pst_length * pagesize; start 1300 maint/gnulib/lib/vma-iter.c if (callback (data, start, end, flags)) start 1421 maint/gnulib/lib/vma-iter.c uintptr_t start, end; start 1424 maint/gnulib/lib/vma-iter.c start = (uintptr_t)info.BaseAddress; start 1425 maint/gnulib/lib/vma-iter.c end = start + info.RegionSize; start 1451 maint/gnulib/lib/vma-iter.c if (callback (data, start, end, flags)) start 1467 maint/gnulib/lib/vma-iter.c unsigned long start, end; start 1470 maint/gnulib/lib/vma-iter.c start = (unsigned long) info.address; start 1471 maint/gnulib/lib/vma-iter.c end = start + info.size; start 1478 maint/gnulib/lib/vma-iter.c if (callback (data, start, end, flags)) start 1514 maint/gnulib/lib/vma-iter.c uintptr_t start = address; start 1525 maint/gnulib/lib/vma-iter.c if (callback (data, start, end, 0)) start 1607 maint/gnulib/lib/vma-iter.c vma_iterate_callback (void *data, uintptr_t start, uintptr_t end, start 1611 maint/gnulib/lib/vma-iter.c (unsigned long) start, (unsigned long) end, start 34 maint/gnulib/lib/vma-iter.h uintptr_t start, uintptr_t end, start 353 maint/gnulib/tests/test-array_list.c size_t start = RANDOM (end + 1); start 356 maint/gnulib/tests/test-array_list.c iter1 = gl_list_iterator_from_to (list1, start, end); start 357 maint/gnulib/tests/test-array_list.c iter2 = gl_list_iterator_from_to (list2, start, end); start 358 maint/gnulib/tests/test-array_list.c for (i = start; i < end; i++) start 429 maint/gnulib/tests/test-avltree_list.c size_t start = RANDOM (end + 1); start 432 maint/gnulib/tests/test-avltree_list.c iter1 = gl_list_iterator_from_to (list1, start, end); start 433 maint/gnulib/tests/test-avltree_list.c iter2 = gl_list_iterator_from_to (list2, start, end); start 434 maint/gnulib/tests/test-avltree_list.c iter3 = gl_list_iterator_from_to (list3, start, end); start 435 maint/gnulib/tests/test-avltree_list.c for (i = start; i < end; i++) start 459 maint/gnulib/tests/test-avltreehash_list.c size_t start = RANDOM (end + 1); start 462 maint/gnulib/tests/test-avltreehash_list.c iter1 = gl_list_iterator_from_to (list1, start, end); start 463 maint/gnulib/tests/test-avltreehash_list.c iter2 = gl_list_iterator_from_to (list2, start, end); start 464 maint/gnulib/tests/test-avltreehash_list.c iter3 = gl_list_iterator_from_to (list3, start, end); start 465 maint/gnulib/tests/test-avltreehash_list.c for (i = start; i < end; i++) start 425 maint/gnulib/tests/test-carray_list.c size_t start = RANDOM (end + 1); start 428 maint/gnulib/tests/test-carray_list.c iter1 = gl_list_iterator_from_to (list1, start, end); start 429 maint/gnulib/tests/test-carray_list.c iter2 = gl_list_iterator_from_to (list2, start, end); start 430 maint/gnulib/tests/test-carray_list.c iter3 = gl_list_iterator_from_to (list3, start, end); start 431 maint/gnulib/tests/test-carray_list.c for (i = start; i < end; i++) start 75 maint/gnulib/tests/test-explicit_bzero.c vma_iterate_callback (void *data, uintptr_t start, uintptr_t end, start 82 maint/gnulib/tests/test-explicit_bzero.c if (start <= lp->range_start && end > lp->range_start) start 84 maint/gnulib/tests/test-explicit_bzero.c if (start < lp->range_end && end >= lp->range_end) start 85 maint/gnulib/tests/test-explicit_bzero.c lp->range_end = (start > lp->range_start ? start : lp->range_start); start 85 maint/gnulib/tests/test-getopt.h int start; start 96 maint/gnulib/tests/test-getopt.h for (start = OPTIND_MIN; start <= 1; start++) start 114 maint/gnulib/tests/test-getopt.h optind = start; start 128 maint/gnulib/tests/test-getopt.h for (start = OPTIND_MIN; start <= 1; start++) start 147 maint/gnulib/tests/test-getopt.h optind = start; start 161 maint/gnulib/tests/test-getopt.h for (start = OPTIND_MIN; start <= 1; start++) start 179 maint/gnulib/tests/test-getopt.h optind = start; start 193 maint/gnulib/tests/test-getopt.h for (start = OPTIND_MIN; start <= 1; start++) start 212 maint/gnulib/tests/test-getopt.h optind = start; start 228 maint/gnulib/tests/test-getopt.h for (start = OPTIND_MIN; start <= 1; start++) start 245 maint/gnulib/tests/test-getopt.h optind = start; start 259 maint/gnulib/tests/test-getopt.h for (start = OPTIND_MIN; start <= 1; start++) start 277 maint/gnulib/tests/test-getopt.h optind = start; start 291 maint/gnulib/tests/test-getopt.h for (start = OPTIND_MIN; start <= 1; start++) start 311 maint/gnulib/tests/test-getopt.h optind = start; start 328 maint/gnulib/tests/test-getopt.h for (start = OPTIND_MIN; start <= 1; start++) start 345 maint/gnulib/tests/test-getopt.h optind = start; start 359 maint/gnulib/tests/test-getopt.h for (start = OPTIND_MIN; start <= 1; start++) start 377 maint/gnulib/tests/test-getopt.h optind = start; start 391 maint/gnulib/tests/test-getopt.h for (start = OPTIND_MIN; start <= 1; start++) start 409 maint/gnulib/tests/test-getopt.h optind = start; start 427 maint/gnulib/tests/test-getopt.h for (start = OPTIND_MIN; start <= 1; start++) start 447 maint/gnulib/tests/test-getopt.h optind = start; start 461 maint/gnulib/tests/test-getopt.h for (start = OPTIND_MIN; start <= 1; start++) start 481 maint/gnulib/tests/test-getopt.h optind = start; start 495 maint/gnulib/tests/test-getopt.h for (start = OPTIND_MIN; start <= 1; start++) start 515 maint/gnulib/tests/test-getopt.h optind = start; start 529 maint/gnulib/tests/test-getopt.h for (start = OPTIND_MIN; start <= 1; start++) start 549 maint/gnulib/tests/test-getopt.h optind = start; start 563 maint/gnulib/tests/test-getopt.h for (start = OPTIND_MIN; start <= 1; start++) start 583 maint/gnulib/tests/test-getopt.h optind = start; start 597 maint/gnulib/tests/test-getopt.h for (start = OPTIND_MIN; start <= 1; start++) start 617 maint/gnulib/tests/test-getopt.h optind = start; start 633 maint/gnulib/tests/test-getopt.h for (start = OPTIND_MIN; start <= 1; start++) start 649 maint/gnulib/tests/test-getopt.h optind = start; start 663 maint/gnulib/tests/test-getopt.h for (start = OPTIND_MIN; start <= 1; start++) start 679 maint/gnulib/tests/test-getopt.h optind = start; start 693 maint/gnulib/tests/test-getopt.h for (start = OPTIND_MIN; start <= 1; start++) start 709 maint/gnulib/tests/test-getopt.h optind = start; start 725 maint/gnulib/tests/test-getopt.h for (start = OPTIND_MIN; start <= 1; start++) start 746 maint/gnulib/tests/test-getopt.h optind = start; start 792 maint/gnulib/tests/test-getopt.h for (start = OPTIND_MIN; start <= 1; start++) start 818 maint/gnulib/tests/test-getopt.h optind = start; start 875 maint/gnulib/tests/test-getopt.h for (start = OPTIND_MIN; start <= 1; start++) start 896 maint/gnulib/tests/test-getopt.h optind = start; start 923 maint/gnulib/tests/test-getopt.h for (start = OPTIND_MIN; start <= 1; start++) start 949 maint/gnulib/tests/test-getopt.h optind = start; start 998 maint/gnulib/tests/test-getopt.h for (start = OPTIND_MIN; start <= 1; start++) start 1019 maint/gnulib/tests/test-getopt.h optind = start; start 1066 maint/gnulib/tests/test-getopt.h for (start = OPTIND_MIN; start <= 1; start++) start 1087 maint/gnulib/tests/test-getopt.h optind = start; start 1109 maint/gnulib/tests/test-getopt.h for (start = OPTIND_MIN; start <= 1; start++) start 1125 maint/gnulib/tests/test-getopt.h optind = start; start 1140 maint/gnulib/tests/test-getopt.h for (start = OPTIND_MIN; start <= 1; start++) start 1166 maint/gnulib/tests/test-getopt.h optind = start; start 1196 maint/gnulib/tests/test-getopt.h for (start = OPTIND_MIN; start <= 1; start++) start 1217 maint/gnulib/tests/test-getopt.h optind = start; start 1266 maint/gnulib/tests/test-getopt.h for (start = OPTIND_MIN; start <= 1; start++) start 1287 maint/gnulib/tests/test-getopt.h optind = start; start 1309 maint/gnulib/tests/test-getopt.h for (start = OPTIND_MIN; start <= 1; start++) start 1325 maint/gnulib/tests/test-getopt.h optind = start; start 1338 maint/gnulib/tests/test-getopt.h for (start = OPTIND_MIN; start <= 1; start++) start 1355 maint/gnulib/tests/test-getopt.h optind = start; start 1374 maint/gnulib/tests/test-getopt.h for (start = OPTIND_MIN; start <= 1; start++) start 1384 maint/gnulib/tests/test-getopt.h optind = start; start 114 maint/gnulib/tests/test-getopt_long.h int start; start 337 maint/gnulib/tests/test-getopt_long.h for (start = 0; start <= 1; start++) start 354 maint/gnulib/tests/test-getopt_long.h optind = start; start 366 maint/gnulib/tests/test-getopt_long.h for (start = 0; start <= 1; start++) start 384 maint/gnulib/tests/test-getopt_long.h optind = start; start 396 maint/gnulib/tests/test-getopt_long.h for (start = 0; start <= 1; start++) start 413 maint/gnulib/tests/test-getopt_long.h optind = start; start 425 maint/gnulib/tests/test-getopt_long.h for (start = 0; start <= 1; start++) start 443 maint/gnulib/tests/test-getopt_long.h optind = start; start 457 maint/gnulib/tests/test-getopt_long.h for (start = 0; start <= 1; start++) start 474 maint/gnulib/tests/test-getopt_long.h optind = start; start 486 maint/gnulib/tests/test-getopt_long.h for (start = 0; start <= 1; start++) start 504 maint/gnulib/tests/test-getopt_long.h optind = start; start 516 maint/gnulib/tests/test-getopt_long.h for (start = 0; start <= 1; start++) start 536 maint/gnulib/tests/test-getopt_long.h optind = start; start 550 maint/gnulib/tests/test-getopt_long.h for (start = 0; start <= 1; start++) start 567 maint/gnulib/tests/test-getopt_long.h optind = start; start 579 maint/gnulib/tests/test-getopt_long.h for (start = 0; start <= 1; start++) start 599 maint/gnulib/tests/test-getopt_long.h optind = start; start 611 maint/gnulib/tests/test-getopt_long.h for (start = 0; start <= 1; start++) start 631 maint/gnulib/tests/test-getopt_long.h optind = start; start 645 maint/gnulib/tests/test-getopt_long.h for (start = 0; start <= 1; start++) start 661 maint/gnulib/tests/test-getopt_long.h optind = start; start 673 maint/gnulib/tests/test-getopt_long.h for (start = 0; start <= 1; start++) start 690 maint/gnulib/tests/test-getopt_long.h optind = start; start 702 maint/gnulib/tests/test-getopt_long.h for (start = 0; start <= 1; start++) start 721 maint/gnulib/tests/test-getopt_long.h optind = start; start 735 maint/gnulib/tests/test-getopt_long.h for (start = 0; start <= 1; start++) start 751 maint/gnulib/tests/test-getopt_long.h optind = start; start 763 maint/gnulib/tests/test-getopt_long.h for (start = 0; start <= 1; start++) start 780 maint/gnulib/tests/test-getopt_long.h optind = start; start 792 maint/gnulib/tests/test-getopt_long.h for (start = 0; start <= 1; start++) start 811 maint/gnulib/tests/test-getopt_long.h optind = start; start 825 maint/gnulib/tests/test-getopt_long.h for (start = 0; start <= 1; start++) start 841 maint/gnulib/tests/test-getopt_long.h optind = start; start 853 maint/gnulib/tests/test-getopt_long.h for (start = 0; start <= 1; start++) start 871 maint/gnulib/tests/test-getopt_long.h optind = start; start 883 maint/gnulib/tests/test-getopt_long.h for (start = 0; start <= 1; start++) start 903 maint/gnulib/tests/test-getopt_long.h optind = start; start 917 maint/gnulib/tests/test-getopt_long.h for (start = 0; start <= 1; start++) start 933 maint/gnulib/tests/test-getopt_long.h optind = start; start 945 maint/gnulib/tests/test-getopt_long.h for (start = 0; start <= 1; start++) start 962 maint/gnulib/tests/test-getopt_long.h optind = start; start 974 maint/gnulib/tests/test-getopt_long.h for (start = 0; start <= 1; start++) start 991 maint/gnulib/tests/test-getopt_long.h optind = start; start 1005 maint/gnulib/tests/test-getopt_long.h for (start = 0; start <= 1; start++) start 1021 maint/gnulib/tests/test-getopt_long.h optind = start; start 1033 maint/gnulib/tests/test-getopt_long.h for (start = 0; start <= 1; start++) start 1050 maint/gnulib/tests/test-getopt_long.h optind = start; start 1062 maint/gnulib/tests/test-getopt_long.h for (start = 0; start <= 1; start++) start 1079 maint/gnulib/tests/test-getopt_long.h optind = start; start 1091 maint/gnulib/tests/test-getopt_long.h for (start = 0; start <= 1; start++) start 1108 maint/gnulib/tests/test-getopt_long.h optind = start; start 1122 maint/gnulib/tests/test-getopt_long.h for (start = 0; start <= 1; start++) start 1138 maint/gnulib/tests/test-getopt_long.h optind = start; start 1150 maint/gnulib/tests/test-getopt_long.h for (start = 0; start <= 1; start++) start 1167 maint/gnulib/tests/test-getopt_long.h optind = start; start 1179 maint/gnulib/tests/test-getopt_long.h for (start = 0; start <= 1; start++) start 1196 maint/gnulib/tests/test-getopt_long.h optind = start; start 1208 maint/gnulib/tests/test-getopt_long.h for (start = 0; start <= 1; start++) start 1226 maint/gnulib/tests/test-getopt_long.h optind = start; start 1238 maint/gnulib/tests/test-getopt_long.h for (start = 0; start <= 1; start++) start 1256 maint/gnulib/tests/test-getopt_long.h optind = start; start 1270 maint/gnulib/tests/test-getopt_long.h for (start = 0; start <= 1; start++) start 1289 maint/gnulib/tests/test-getopt_long.h optind = start; start 1301 maint/gnulib/tests/test-getopt_long.h for (start = 0; start <= 1; start++) start 1320 maint/gnulib/tests/test-getopt_long.h optind = start; start 1334 maint/gnulib/tests/test-getopt_long.h for (start = 0; start <= 1; start++) start 1352 maint/gnulib/tests/test-getopt_long.h optind = start; start 1364 maint/gnulib/tests/test-getopt_long.h for (start = 0; start <= 1; start++) start 1382 maint/gnulib/tests/test-getopt_long.h optind = start; start 1398 maint/gnulib/tests/test-getopt_long.h for (start = 0; start <= 1; start++) start 1418 maint/gnulib/tests/test-getopt_long.h optind = start; start 1440 maint/gnulib/tests/test-getopt_long.h for (start = 0; start <= 1; start++) start 1465 maint/gnulib/tests/test-getopt_long.h optind = start; start 1492 maint/gnulib/tests/test-getopt_long.h for (start = 0; start <= 1; start++) start 1512 maint/gnulib/tests/test-getopt_long.h optind = start; start 1537 maint/gnulib/tests/test-getopt_long.h for (start = 0; start <= 1; start++) start 1562 maint/gnulib/tests/test-getopt_long.h optind = start; start 1609 maint/gnulib/tests/test-getopt_long.h for (start = 0; start <= 1; start++) start 1629 maint/gnulib/tests/test-getopt_long.h optind = start; start 1652 maint/gnulib/tests/test-getopt_long.h for (start = 0; start <= 1; start++) start 1672 maint/gnulib/tests/test-getopt_long.h optind = start; start 1692 maint/gnulib/tests/test-getopt_long.h for (start = 0; start <= 1; start++) start 1707 maint/gnulib/tests/test-getopt_long.h optind = start; start 1721 maint/gnulib/tests/test-getopt_long.h for (start = 0; start <= 1; start++) start 1746 maint/gnulib/tests/test-getopt_long.h optind = start; start 1773 maint/gnulib/tests/test-getopt_long.h for (start = 0; start <= 1; start++) start 1793 maint/gnulib/tests/test-getopt_long.h optind = start; start 1822 maint/gnulib/tests/test-getopt_long.h int start; start 1825 maint/gnulib/tests/test-getopt_long.h for (start = 0; start <= 1; start++) start 1845 maint/gnulib/tests/test-getopt_long.h optind = start; start 1867 maint/gnulib/tests/test-getopt_long.h for (start = 0; start <= 1; start++) start 1883 maint/gnulib/tests/test-getopt_long.h optind = start; start 1897 maint/gnulib/tests/test-getopt_long.h for (start = 0; start <= 1; start++) start 1914 maint/gnulib/tests/test-getopt_long.h optind = start; start 425 maint/gnulib/tests/test-linked_list.c size_t start = RANDOM (end + 1); start 428 maint/gnulib/tests/test-linked_list.c iter1 = gl_list_iterator_from_to (list1, start, end); start 429 maint/gnulib/tests/test-linked_list.c iter2 = gl_list_iterator_from_to (list2, start, end); start 430 maint/gnulib/tests/test-linked_list.c iter3 = gl_list_iterator_from_to (list3, start, end); start 431 maint/gnulib/tests/test-linked_list.c for (i = start; i < end; i++) start 455 maint/gnulib/tests/test-linkedhash_list.c size_t start = RANDOM (end + 1); start 458 maint/gnulib/tests/test-linkedhash_list.c iter1 = gl_list_iterator_from_to (list1, start, end); start 459 maint/gnulib/tests/test-linkedhash_list.c iter2 = gl_list_iterator_from_to (list2, start, end); start 460 maint/gnulib/tests/test-linkedhash_list.c iter3 = gl_list_iterator_from_to (list3, start, end); start 461 maint/gnulib/tests/test-linkedhash_list.c for (i = start; i < end; i++) start 429 maint/gnulib/tests/test-rbtree_list.c size_t start = RANDOM (end + 1); start 432 maint/gnulib/tests/test-rbtree_list.c iter1 = gl_list_iterator_from_to (list1, start, end); start 433 maint/gnulib/tests/test-rbtree_list.c iter2 = gl_list_iterator_from_to (list2, start, end); start 434 maint/gnulib/tests/test-rbtree_list.c iter3 = gl_list_iterator_from_to (list3, start, end); start 435 maint/gnulib/tests/test-rbtree_list.c for (i = start; i < end; i++) start 459 maint/gnulib/tests/test-rbtreehash_list.c size_t start = RANDOM (end + 1); start 462 maint/gnulib/tests/test-rbtreehash_list.c iter1 = gl_list_iterator_from_to (list1, start, end); start 463 maint/gnulib/tests/test-rbtreehash_list.c iter2 = gl_list_iterator_from_to (list2, start, end); start 464 maint/gnulib/tests/test-rbtreehash_list.c iter3 = gl_list_iterator_from_to (list3, start, end); start 465 maint/gnulib/tests/test-rbtreehash_list.c for (i = start; i < end; i++) start 212 maint/gnulib/tests/test-regex.c free (regs.start); start 249 maint/gnulib/tests/test-regex.c free (regs.start); start 286 maint/gnulib/tests/test-regex.c free (regs.start); start 315 maint/gnulib/tests/test-regex.c free (regs.start); start 373 maint/gnulib/tests/test-regex.c free (regs.start); start 391 maint/gnulib/tests/test-regex.c free (regs.start); start 410 maint/gnulib/tests/test-regex.c free (regs.start); start 432 maint/gnulib/tests/test-regex.c else if (! (regs.start[0] == 0 && regs.end[0] == 1)) start 434 maint/gnulib/tests/test-regex.c pat_sub2, data, (int) regs.start[0], (int) regs.end[0]); start 435 maint/gnulib/tests/test-regex.c else if (! (regs.start[1] == 0 && regs.end[1] == 0)) start 437 maint/gnulib/tests/test-regex.c pat_sub2, data, (int) regs.start[1], (int) regs.end[1]); start 439 maint/gnulib/tests/test-regex.c free (regs.start); start 51 maint/gnulib/tests/test-strnlen.c char *start = page_boundary - i; start 53 maint/gnulib/tests/test-strnlen.c memset (start, 'x', i); start 58 maint/gnulib/tests/test-strnlen.c start[j] = 0; start 59 maint/gnulib/tests/test-strnlen.c ASSERT (strnlen (start, i + j) == j); start 61 maint/gnulib/tests/test-strnlen.c ASSERT (strnlen (start, i) == j); start 62 maint/gnulib/tests/test-strnlen.c ASSERT (strnlen (start, j) == j); start 33 maint/gnulib/tests/test-usleep.c time_t start = time (NULL); start 35 maint/gnulib/tests/test-usleep.c ASSERT (start < time (NULL)); start 26 maint/gnulib/tests/unicase/test-predicate-part1.h typedef struct { ucs4_t start; ucs4_t end; } interval_t; start 28 maint/gnulib/tests/unicase/test-predicate-part2.h for (; c < set[i].start; c++) start 61 maint/gnulib/tests/unictype/test-block_of.c for (c = blocks[i].start; c <= blocks[i].end; c++) start 30 maint/gnulib/tests/unictype/test-block_test.c b.start = 0x20000; start 26 maint/gnulib/tests/unictype/test-predicate-part1.h typedef struct { ucs4_t start; ucs4_t end; } interval_t; start 28 maint/gnulib/tests/unictype/test-predicate-part2.h for (; c < set[i].start; c++) start 100 tools/crm_error.c int start, end, width; start 104 tools/crm_error.c start = pcmk_rc_error - 256; start 108 tools/crm_error.c start = 0; start 113 tools/crm_error.c for (rc = start; rc < end; rc++) { start 100 tools/iso8601.c char *start = crm_time_as_string(dtp->start, flags); start 103 tools/iso8601.c CRM_ASSERT(start != NULL && end != NULL); start 104 tools/iso8601.c do_crm_log(log_level, "Period: %s to %s", start, end); start 105 tools/iso8601.c free(start);