Home
last modified time | relevance | path

Searched refs:end_idx (Results 1 – 25 of 1206) sorted by relevance

12345678910>>...49

/dports/www/netsurf/netsurf-3.10/desktop/
H A Dselection.c61 unsigned end_idx; member
83 end_idx); in selection_redraw()
132 old_end = s->end_idx; in selection_set_end()
133 s->end_idx = offset; in selection_set_end()
167 s->end_idx, in selection_copy()
311 s->end_idx = 0; in selection_init()
430 if (idx > s->end_idx) { in selection_track()
528 old_end = s->end_idx; in selection_clear()
532 s->end_idx = 0; in selection_clear()
567 unsigned *end_idx) in selection_highlighted() argument
[all …]
/dports/www/netsurf/netsurf-3.10/content/handlers/html/
H A Dtextselection.c62 unsigned end_idx, in selected_part() argument
116 unsigned end_idx, in coords_from_range() argument
139 end_idx, in coords_from_range()
148 if (box->byte_offset >= end_idx) { in coords_from_range()
222 end_idx, in coords_from_range()
317 unsigned end_idx, in selection_copy() argument
345 end_idx, in selection_copy()
420 end_idx, in selection_copy()
472 unsigned end_idx) in html_textselection_redraw() argument
501 unsigned end_idx, in html_textselection_copy() argument
[all …]
/dports/science/py-scipy/scipy-1.7.1/scipy/spatial/ckdtree/src/
H A Dbuild.cxx19 build(ckdtree *self, ckdtree_intp_t start_idx, intptr_t end_idx, in build() argument
41 n->end_idx = end_idx; in build()
42 n->children = end_idx - start_idx; in build()
44 if (end_idx-start_idx <= self->leafsize) { in build()
63 for (j = start_idx + 1; j < end_idx; ++j) { in build()
110 const auto n_points = end_idx - start_idx; in build()
130 indices + start_idx, indices + end_idx, index_compare); in build()
134 else if (p == end_idx) { in build()
142 if (CKDTREE_UNLIKELY(p == start_idx || p == end_idx)) { in build()
200 build(self, start_idx, end_idx, maxes, mins, _median, _compact); in build_ckdtree()
[all …]
/dports/games/gtypist/gtypist-2.9.5/src/
H A Dcursmenu.c336 <= end_idx; in do_menu()
367 start_idx--; end_idx--; in do_menu()
375 start_idx++; end_idx++; in do_menu()
382 end_idx += start_idx - k; in do_menu()
386 k = end_idx; in do_menu()
387 end_idx = min (end_idx + items_per_page, num_items - 1); in do_menu()
388 start_idx += end_idx - k; in do_menu()
389 cur_choice += end_idx - k; in do_menu()
399 k = end_idx; in do_menu()
400 end_idx = min (end_idx + items_per_page, num_items - 1); in do_menu()
[all …]
/dports/multimedia/v4l_compat/linux-5.13-rc2/drivers/net/wireless/ath/ath9k/
H A Dar9003_aic.c312 int16_t start_idx, end_idx; in ar9003_aic_cal_post_process() local
322 start_idx = end_idx; in ar9003_aic_cal_post_process()
325 if (end_idx < 0) { in ar9003_aic_cal_post_process()
334 (end_idx - i) + in ar9003_aic_cal_post_process()
340 (end_idx - i) + in ar9003_aic_cal_post_process()
344 if (end_idx < 0) { in ar9003_aic_cal_post_process()
348 if (end_idx < 0) { in ar9003_aic_cal_post_process()
357 (start_idx - end_idx) + in ar9003_aic_cal_post_process()
363 (start_idx - end_idx) + in ar9003_aic_cal_post_process()
372 (end_idx - start_idx); in ar9003_aic_cal_post_process()
[all …]
/dports/multimedia/v4l-utils/linux-5.13-rc2/drivers/net/wireless/ath/ath9k/
H A Dar9003_aic.c312 int16_t start_idx, end_idx; in ar9003_aic_cal_post_process() local
322 start_idx = end_idx; in ar9003_aic_cal_post_process()
325 if (end_idx < 0) { in ar9003_aic_cal_post_process()
334 (end_idx - i) + in ar9003_aic_cal_post_process()
340 (end_idx - i) + in ar9003_aic_cal_post_process()
344 if (end_idx < 0) { in ar9003_aic_cal_post_process()
348 if (end_idx < 0) { in ar9003_aic_cal_post_process()
357 (start_idx - end_idx) + in ar9003_aic_cal_post_process()
363 (start_idx - end_idx) + in ar9003_aic_cal_post_process()
372 (end_idx - start_idx); in ar9003_aic_cal_post_process()
[all …]
/dports/multimedia/libv4l/linux-5.13-rc2/drivers/net/wireless/ath/ath9k/
H A Dar9003_aic.c312 int16_t start_idx, end_idx; in ar9003_aic_cal_post_process() local
322 start_idx = end_idx; in ar9003_aic_cal_post_process()
325 if (end_idx < 0) { in ar9003_aic_cal_post_process()
334 (end_idx - i) + in ar9003_aic_cal_post_process()
340 (end_idx - i) + in ar9003_aic_cal_post_process()
344 if (end_idx < 0) { in ar9003_aic_cal_post_process()
348 if (end_idx < 0) { in ar9003_aic_cal_post_process()
357 (start_idx - end_idx) + in ar9003_aic_cal_post_process()
363 (start_idx - end_idx) + in ar9003_aic_cal_post_process()
372 (end_idx - start_idx); in ar9003_aic_cal_post_process()
[all …]
/dports/lang/rust/rustc-1.58.1-src/src/tools/miri/src/
H A Drange_map.rs158 let mut end_idx = first_idx; in iter_mut() localVariable
161 let done = self.v[end_idx].range.end >= offset + len; in iter_mut()
163 end_idx += 1; in iter_mut()
165 done || end_idx < self.v.len(), in iter_mut()
171 if done || self.v[end_idx].data != self.v[equal_since_idx].data { in iter_mut()
180 self.v.splice(equal_since_idx + 1..end_idx, std::iter::empty()); in iter_mut()
182 end_idx -= removed_elems; in iter_mut()
190 equal_since_idx = end_idx; in iter_mut()
199 let end_idx = end_idx - 1; in iter_mut() localVariable
203 self.split_index(end_idx, offset + len); in iter_mut()
[all …]
/dports/devel/py-flynt/flynt-0.69/test/
H A Dtest_lexer.py25 assert s[: chunk.end_idx] == s
34 assert code_in[chunk.start_idx : chunk.end_idx] == "'{}'.format(row_idx)"
44 assert code_in[chunk.start_idx : chunk.end_idx] == expected
54 assert code_in[chunk.start_idx : chunk.end_idx] == expected
72 assert lines[0][: chunk.end_idx] == lines[0]
77 assert lines[1][: chunk.end_idx] == lines[1]
94 assert lines[2][: chunk.end_idx] == lines[2]
109 assert lines[2][chunk.start_idx : chunk.end_idx] == "'{}'.format(row_idx)"
163 code[chunk.start_idx : chunk.end_idx]
/dports/sysutils/xorriso/libisoburn-1.5.0/xorriso/
H A Dopts_d_h.c532 (*idx)= end_idx; in Xorriso_option_external_filter()
678 int ret, i, end_idx; in Xorriso_option_file_size_limit() local
682 if(*idx >= end_idx) in Xorriso_option_file_size_limit()
707 (*idx)= end_idx; in Xorriso_option_file_size_limit()
817 if(i+1>=end_idx) in Xorriso_option_find()
831 if(i+1>=end_idx) in Xorriso_option_find()
844 if(i+2>=end_idx) in Xorriso_option_find()
877 if(i+1>=end_idx) in Xorriso_option_find()
1419 (*idx)= end_idx; in Xorriso_option_find()
1576 (*idx)= end_idx; in Xorriso_option_getfacli()
[all …]
/dports/x11-toolkits/gtksourceview3/gtksourceview-3.24.11/gtksourceview/completion-providers/words/
H A Dgtksourcecompletionwordsutils.c54 guint *end_idx) in find_next_word() argument
92 *end_idx = cur_char - text; in find_next_word()
108 guint end_idx = 0; in _gtk_source_completion_words_utils_scan_words() local
110 while (find_next_word (text, &start_idx, &end_idx)) in _gtk_source_completion_words_utils_scan_words()
115 g_assert (end_idx >= start_idx); in _gtk_source_completion_words_utils_scan_words()
117 word_size = end_idx - start_idx; in _gtk_source_completion_words_utils_scan_words()
127 start_idx = end_idx; in _gtk_source_completion_words_utils_scan_words()
/dports/x11-toolkits/gtksourceview4/gtksourceview-4.8.1/gtksourceview/completion-providers/words/
H A Dgtksourcecompletionwordsutils.c57 guint *end_idx) in find_next_word() argument
95 *end_idx = cur_char - text; in find_next_word()
111 guint end_idx = 0; in _gtk_source_completion_words_utils_scan_words() local
113 while (find_next_word (text, &start_idx, &end_idx)) in _gtk_source_completion_words_utils_scan_words()
118 g_assert (end_idx >= start_idx); in _gtk_source_completion_words_utils_scan_words()
120 word_size = end_idx - start_idx; in _gtk_source_completion_words_utils_scan_words()
130 start_idx = end_idx; in _gtk_source_completion_words_utils_scan_words()
/dports/www/py-csscompressor/csscompressor-0.9.5/csscompressor/
H A D__init__.py128 end_idx = match.end(0) - 1
134 end_idx = css.find(term, end_idx + 1)
136 if end_idx > 0:
141 if css[end_idx - 1] != '\\':
147 end_idx = css.find(')', end_idx)
166 append_idx = end_idx + 1
236 start_idx = end_idx = 0
253 if end_idx < 0:
254 end_idx = total_len
257 token = css[start_idx + 2:end_idx]
[all …]
/dports/emulators/qemu42/qemu-4.2.1/hw/intc/
H A Dspapr_xive.c93 *out_server = end_idx >> 3; in spapr_xive_end_to_target()
97 *out_prio = end_idx & 0x7; in spapr_xive_end_to_target()
348 if (end_idx >= xive->nr_ends) { in spapr_xive_get_end()
923 uint32_t end_idx; in h_int_set_source_config() local
1028 uint32_t end_idx, nvt_idx; in h_int_get_source_config() local
1055 end = &xive->endt[end_idx]; in h_int_get_source_config()
1102 uint32_t end_idx; in h_int_get_queue_info() local
1133 end = &xive->endt[end_idx]; in h_int_get_queue_info()
1189 uint32_t end_idx, nvt_idx; in h_int_set_queue_config() local
1356 uint32_t end_idx; in h_int_get_queue_config() local
[all …]
/dports/emulators/qemu/qemu-6.2.0/hw/intc/
H A Dspapr_xive.c94 *out_server = end_idx >> 3; in spapr_xive_end_to_target()
98 *out_prio = end_idx & 0x7; in spapr_xive_end_to_target()
379 if (end_idx >= xive->nr_ends) { in spapr_xive_get_end()
1019 uint32_t end_idx; in h_int_set_source_config() local
1126 uint32_t end_idx, nvt_idx; in h_int_get_source_config() local
1155 end = &xive->endt[end_idx]; in h_int_get_source_config()
1202 uint32_t end_idx; in h_int_get_queue_info() local
1235 end = &xive->endt[end_idx]; in h_int_get_queue_info()
1291 uint32_t end_idx, nvt_idx; in h_int_set_queue_config() local
1460 uint32_t end_idx; in h_int_get_queue_config() local
[all …]
/dports/emulators/qemu60/qemu-6.0.0/hw/intc/
H A Dspapr_xive.c94 *out_server = end_idx >> 3; in spapr_xive_end_to_target()
98 *out_prio = end_idx & 0x7; in spapr_xive_end_to_target()
379 if (end_idx >= xive->nr_ends) { in spapr_xive_get_end()
1019 uint32_t end_idx; in h_int_set_source_config() local
1126 uint32_t end_idx, nvt_idx; in h_int_get_source_config() local
1155 end = &xive->endt[end_idx]; in h_int_get_source_config()
1202 uint32_t end_idx; in h_int_get_queue_info() local
1235 end = &xive->endt[end_idx]; in h_int_get_queue_info()
1291 uint32_t end_idx, nvt_idx; in h_int_set_queue_config() local
1460 uint32_t end_idx; in h_int_get_queue_config() local
[all …]
/dports/emulators/qemu5/qemu-5.2.0/hw/intc/
H A Dspapr_xive.c93 *out_server = end_idx >> 3; in spapr_xive_end_to_target()
97 *out_prio = end_idx & 0x7; in spapr_xive_end_to_target()
384 if (end_idx >= xive->nr_ends) { in spapr_xive_get_end()
1016 uint32_t end_idx; in h_int_set_source_config() local
1121 uint32_t end_idx, nvt_idx; in h_int_get_source_config() local
1148 end = &xive->endt[end_idx]; in h_int_get_source_config()
1195 uint32_t end_idx; in h_int_get_queue_info() local
1226 end = &xive->endt[end_idx]; in h_int_get_queue_info()
1282 uint32_t end_idx, nvt_idx; in h_int_set_queue_config() local
1449 uint32_t end_idx; in h_int_get_queue_config() local
[all …]
/dports/emulators/qemu-utils/qemu-4.2.1/hw/intc/
H A Dspapr_xive.c93 *out_server = end_idx >> 3; in spapr_xive_end_to_target()
97 *out_prio = end_idx & 0x7; in spapr_xive_end_to_target()
348 if (end_idx >= xive->nr_ends) { in spapr_xive_get_end()
923 uint32_t end_idx; in h_int_set_source_config() local
1028 uint32_t end_idx, nvt_idx; in h_int_get_source_config() local
1055 end = &xive->endt[end_idx]; in h_int_get_source_config()
1102 uint32_t end_idx; in h_int_get_queue_info() local
1133 end = &xive->endt[end_idx]; in h_int_get_queue_info()
1189 uint32_t end_idx, nvt_idx; in h_int_set_queue_config() local
1356 uint32_t end_idx; in h_int_get_queue_config() local
[all …]
/dports/emulators/qemu-guest-agent/qemu-5.0.1/hw/intc/
H A Dspapr_xive.c93 *out_server = end_idx >> 3; in spapr_xive_end_to_target()
97 *out_prio = end_idx & 0x7; in spapr_xive_end_to_target()
384 if (end_idx >= xive->nr_ends) { in spapr_xive_get_end()
1011 uint32_t end_idx; in h_int_set_source_config() local
1116 uint32_t end_idx, nvt_idx; in h_int_get_source_config() local
1143 end = &xive->endt[end_idx]; in h_int_get_source_config()
1190 uint32_t end_idx; in h_int_get_queue_info() local
1221 end = &xive->endt[end_idx]; in h_int_get_queue_info()
1277 uint32_t end_idx, nvt_idx; in h_int_set_queue_config() local
1444 uint32_t end_idx; in h_int_get_queue_config() local
[all …]
/dports/emulators/qemu-cheri/qemu-0a323821042c36e21ea80e58b9545dfc3b0cb8ef/hw/intc/
H A Dspapr_xive.c93 *out_server = end_idx >> 3; in spapr_xive_end_to_target()
97 *out_prio = end_idx & 0x7; in spapr_xive_end_to_target()
384 if (end_idx >= xive->nr_ends) { in spapr_xive_get_end()
1011 uint32_t end_idx; in h_int_set_source_config() local
1116 uint32_t end_idx, nvt_idx; in h_int_get_source_config() local
1143 end = &xive->endt[end_idx]; in h_int_get_source_config()
1190 uint32_t end_idx; in h_int_get_queue_info() local
1221 end = &xive->endt[end_idx]; in h_int_get_queue_info()
1277 uint32_t end_idx, nvt_idx; in h_int_set_queue_config() local
1444 uint32_t end_idx; in h_int_get_queue_config() local
[all …]
/dports/emulators/qemu-devel/qemu-de8ed1055c2ce18c95f597eb10df360dcb534f99/hw/intc/
H A Dspapr_xive.c94 *out_server = end_idx >> 3; in spapr_xive_end_to_target()
98 *out_prio = end_idx & 0x7; in spapr_xive_end_to_target()
379 if (end_idx >= xive->nr_ends) { in spapr_xive_get_end()
1019 uint32_t end_idx; in h_int_set_source_config() local
1126 uint32_t end_idx, nvt_idx; in h_int_get_source_config() local
1155 end = &xive->endt[end_idx]; in h_int_get_source_config()
1202 uint32_t end_idx; in h_int_get_queue_info() local
1235 end = &xive->endt[end_idx]; in h_int_get_queue_info()
1291 uint32_t end_idx, nvt_idx; in h_int_set_queue_config() local
1460 uint32_t end_idx; in h_int_get_queue_config() local
[all …]
/dports/lang/python-legacy/Python-2.7.18/Modules/
H A D_json.c913 while (idx <= end_idx) { in _parse_object_str()
954 if (idx > end_idx) break; in _parse_object_str()
969 if (idx > end_idx || str[idx] != '}') { in _parse_object_str()
1039 while (idx <= end_idx) { in _parse_object_unicode()
1080 if (idx > end_idx) break; in _parse_object_unicode()
1157 while (idx <= end_idx) { in _parse_array_str()
1174 if (idx > end_idx) break; in _parse_array_str()
1224 while (idx <= end_idx) { in _parse_array_unicode()
1241 if (idx > end_idx) break; in _parse_array_unicode()
1316 if (idx > end_idx) { in _match_number_str()
[all …]
/dports/lang/python27/Python-2.7.18/Modules/
H A D_json.c913 while (idx <= end_idx) { in _parse_object_str()
954 if (idx > end_idx) break; in _parse_object_str()
969 if (idx > end_idx || str[idx] != '}') { in _parse_object_str()
1039 while (idx <= end_idx) { in _parse_object_unicode()
1080 if (idx > end_idx) break; in _parse_object_unicode()
1157 while (idx <= end_idx) { in _parse_array_str()
1174 if (idx > end_idx) break; in _parse_array_str()
1224 while (idx <= end_idx) { in _parse_array_unicode()
1241 if (idx > end_idx) break; in _parse_array_unicode()
1316 if (idx > end_idx) { in _match_number_str()
[all …]
/dports/sysutils/uefi-edk2-bhyve-csm/uefi-edk2-aa8d718/AppPkg/Applications/Python/Python-2.7.2/Modules/
H A D_json.c909 while (idx <= end_idx) { in _parse_object_str()
950 if (idx > end_idx) break; in _parse_object_str()
965 if (idx > end_idx || str[idx] != '}') { in _parse_object_str()
1032 while (idx <= end_idx) { in _parse_object_unicode()
1073 if (idx > end_idx) break; in _parse_object_unicode()
1150 while (idx <= end_idx) { in _parse_array_str()
1167 if (idx > end_idx) break; in _parse_array_str()
1217 while (idx <= end_idx) { in _parse_array_unicode()
1234 if (idx > end_idx) break; in _parse_array_unicode()
1309 if (idx > end_idx) { in _match_number_str()
[all …]
/dports/emulators/qemu-powernv/qemu-powernv-3.0.50/hw/intc/
H A Dspapr_xive_hcall.c190 uint32_t end_idx; in h_int_set_source_config() local
235 new_eas.w = SETFIELD(EAS_END_INDEX, new_eas.w, end_idx); in h_int_set_source_config()
283 uint32_t end_idx, nvt_idx; in h_int_get_source_config() local
302 end_idx = GETFIELD(EAS_END_INDEX, eas.w); in h_int_get_source_config()
303 if (xive_router_get_end(xrtr, end_blk, end_idx, &end)) { in h_int_get_source_config()
353 uint32_t end_idx; in h_int_get_queue_info() local
382 if (xive_router_get_end(XIVE_ROUTER(xive), end_blk, end_idx, &end)) { in h_int_get_queue_info()
441 uint32_t end_idx, nvt_idx; in h_int_set_queue_config() local
472 if (xive_router_get_end(xrtr, end_blk, end_idx, &end)) { in h_int_set_queue_config()
539 if (xive_router_set_end(xrtr, end_blk, end_idx, &end)) { in h_int_set_queue_config()
[all …]

12345678910>>...49