Home
last modified time | relevance | path

Searched refs:start (Results 6226 - 6250 of 20662) sorted by relevance

1...<<241242243244245246247248249250>>...827

/third_party/ffmpeg/libavcodec/
H A Dflashsv2enc.c77 uint8_t start, len; member
348 buf[buf_pos++] = (b->start); in write_block()
415 for (i = 0; i < b->start; i++) in encode_bgr()
418 for (; i < b->start + b->len; i++) in encode_bgr()
560 for (i = 0; i < b->start; i++) in encode_15_7()
563 for (; i < b->start + b->len; i++) in encode_15_7()
621 b->start = y; in compare_sl()
622 b->len = y + 1 - b->start; in compare_sl()
659 b->start = 0; in encode_all_blocks()
662 b->start in encode_all_blocks()
[all...]
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/util/
H A DLocaleMatcherTest.java797 long start = System.nanoTime(); in timeLocaleMatcher()
801 long delta = System.nanoTime() - start; in timeLocaleMatcher()
827 long start = System.nanoTime(); in timeMaximize()
833 return System.nanoTime() - start; in timeMaximize()
957 int start = matchSep + 2; in readTestCases()
958 int expLimit = line.indexOf('|', start); in readTestCases()
960 test.expMatch = line.substring(start, limit).trim(); in readTestCases()
962 test.expMatch = line.substring(start, expLimit).trim(); in readTestCases()
963 start = expLimit + 1; in readTestCases()
964 expLimit = line.indexOf('|', start); in readTestCases()
[all...]
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
H A DLocaleMatcherTest.java839 long start = System.nanoTime(); in timeLocaleMatcher()
843 long delta = System.nanoTime() - start; in timeLocaleMatcher()
869 long start = System.nanoTime(); in timeMaximize()
875 return System.nanoTime() - start; in timeMaximize()
999 int start = matchSep + 2; in readTestCases()
1000 int expLimit = line.indexOf('|', start); in readTestCases()
1002 test.expMatch = line.substring(start, limit).trim(); in readTestCases()
1004 test.expMatch = line.substring(start, expLimit).trim(); in readTestCases()
1005 start = expLimit + 1; in readTestCases()
1006 expLimit = line.indexOf('|', start); in readTestCases()
[all...]
/third_party/icu/icu4c/source/i18n/
H A Dalphaindex.cpp98 int32_t start = 0; in binarySearch() local
101 int32_t i = (start + limit) / 2; in binarySearch()
108 if (i == start) { in binarySearch()
109 return ~start; // insert s before *si in binarySearch()
113 if (i == start) { in binarySearch()
114 return ~(start + 1); // insert s after *si in binarySearch()
116 start = i; in binarySearch()
147 int32_t start = 0; in getBucketIndex() local
149 while ((start + 1) < limit) { in getBucketIndex()
150 int32_t i = (start in getBucketIndex()
[all...]
/third_party/node/deps/icu-small/source/i18n/
H A Dalphaindex.cpp98 int32_t start = 0; in binarySearch() local
101 int32_t i = (start + limit) / 2; in binarySearch()
108 if (i == start) { in binarySearch()
109 return ~start; // insert s before *si in binarySearch()
113 if (i == start) { in binarySearch()
114 return ~(start + 1); // insert s after *si in binarySearch()
116 start = i; in binarySearch()
147 int32_t start = 0; in getBucketIndex() local
149 while ((start + 1) < limit) { in getBucketIndex()
150 int32_t i = (start in getBucketIndex()
[all...]
/third_party/mesa3d/src/intel/tools/
H A Daubinator_viewer.cpp55 const uint8_t *start; member
80 file->execs[file->n_execs++].start = file->cursor; in store_exec_begin()
215 while (iter < file->execs[exec_idx].start) { in update_mem_for_exec()
216 iter += aub_read_command(&read, iter, file->execs[exec_idx].start - iter); in update_mem_for_exec()
771 const uint8_t *iter = context.file->execs[window->exec_idx].start; in display_batch_window()
851 ImGui::Text("%s : %i -> %i\n", field->name, field->start, field->end); in display_registers_window()
908 if (show_dwords && field->start / 32 != last_dword) { in display_commands_window()
910 last_dword < field->start / 32; last_dword++) { in display_commands_window()
917 ImGui::Text("%s : %i -> %i\n", field->name, field->start, field->end); in display_commands_window()
929 if (show_dwords && field->start / 3 in display_commands_window()
[all...]
/third_party/mesa3d/src/gallium/drivers/lima/
H A Dlima_draw.c408 PLBU_CMD_INDICES(ctx->index_res->bo->va + draw->start * info->index_size + ctx->index_offset); in lima_pack_plbu_cmd()
412 PLBU_CMD_DRAW_ARRAYS(info->mode, draw->start, draw->count); in lima_pack_plbu_cmd()
838 unsigned start = info->index_size ? (ctx->min_index + draw->index_bias) : draw->start; in lima_update_gp_attribute_info() local
840 + start * pvb->stride; in lima_update_gp_attribute_info()
1094 needs_indices = !panfrost_minmax_cache_get(ctx->index_res->index_cache, draw->start, in lima_draw_vbo_indexed()
1101 panfrost_minmax_cache_add(ctx->index_res->index_cache, draw->start, draw->count, in lima_draw_vbo_indexed()
1121 unsigned start = draw->start; in lima_draw_vbo_count() local
1130 local_draw.start in lima_draw_vbo_count()
[all...]
/third_party/skia/src/core/
H A DSkMaskBlurFilter.cpp349 // We can start the source index at an offset relative to the destination separated by the
641 // start with the non-traditional form of the gaussian filter. In the following r is the value
1006 auto start = SkMask::AlphaIter<SkMask::kBW_Format>(bwStart, 0);
1008 for (int y = 0; y < srcH; ++y, start >>= src.fRowBytes, end >>= src.fRowBytes) {
1010 scanW.blur(start, end, tmpStart, tmpW, tmpStart + tmpW * tmpH);
1015 auto start = SkMask::AlphaIter<SkMask::kA8_Format>(a8Start); local
1017 for (int y = 0; y < srcH; ++y, start >>= src.fRowBytes, end >>= src.fRowBytes) {
1019 scanW.blur(start, end, tmpStart, tmpW, tmpStart + tmpW * tmpH);
1024 auto start = SkMask::AlphaIter<SkMask::kARGB32_Format>(argbStart); local
1026 for (int y = 0; y < srcH; ++y, start >>
1033 auto start = SkMask::AlphaIter<SkMask::kLCD16_Format>(lcdStart); global() local
[all...]
/third_party/skia/third_party/externals/icu/source/i18n/
H A Dalphaindex.cpp98 int32_t start = 0; in binarySearch() local
101 int32_t i = (start + limit) / 2; in binarySearch()
108 if (i == start) { in binarySearch()
109 return ~start; // insert s before *si in binarySearch()
113 if (i == start) { in binarySearch()
114 return ~(start + 1); // insert s after *si in binarySearch()
116 start = i; in binarySearch()
147 int32_t start = 0; in getBucketIndex() local
149 while ((start + 1) < limit) { in getBucketIndex()
150 int32_t i = (start in getBucketIndex()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
H A DHexagonExpandCondsets.cpp341 if (NextI != E && NextI->start.isRegister()) { in updateKillFlags()
342 MachineInstr *DefI = LIS->getInstructionFromIndex(NextI->start); in updateKillFlags()
417 if (!Seg.start.isRegister()) in updateDeadsInRange()
419 MachineInstr *DefI = LIS->getInstructionFromIndex(Seg.start); in updateDeadsInRange()
422 PredDefs.push_back(Seg.start); in updateDeadsInRange()
471 if (!Seg.start.isRegister()) in updateDeadsInRange()
473 MachineInstr *DefI = LIS->getInstructionFromIndex(Seg.start); in updateDeadsInRange()
488 if (!Seg.start.isRegister() || !Range.liveAt(Seg.start.getPrevSlot())) in updateDeadsInRange()
490 MachineInstr *DefI = LIS->getInstructionFromIndex(Seg.start); in updateDeadsInRange()
[all...]
/third_party/python/Lib/test/
H A Dtest_tracemalloc.py112 tracemalloc.start(1)
158 self.assertRaises(ValueError, tracemalloc.start, -1)
161 tracemalloc.start(10)
168 tracemalloc.start(1)
208 tracemalloc.start(4)
297 tracemalloc.start()
365 tracemalloc.start(8)
931 # start and set the number of frames
1035 tracemalloc.start(nframe)
1055 tracemalloc.start(nfram
[all...]
/third_party/rust/crates/serde/serde/src/de/
H A Dimpls.rs2323 // start: Idx,
2334 let (start, end) = tri!(deserializer.deserialize_struct( in deserialize()
2342 Ok(start..end) in deserialize()
2354 let (start, end) = tri!(deserializer.deserialize_struct( in deserialize()
2362 Ok(RangeInclusive::new(start, end)) in deserialize()
2371 pub const FIELDS: &[&str] = &["start", "end"];
2393 formatter.write_str("`start` or `end`") in deserialize()
2401 "start" => Ok(Field::Start), in deserialize()
2412 b"start" => Ok(Field::Start), in deserialize()
2445 let start in visit_seq()
2464 let mut start: Option<Idx> = None; visit_map() variables
2613 let mut start: Option<Idx> = None; visit_map() variables
[all...]
/third_party/icu/icu4c/source/test/intltest/
H A Dregextst.cpp900 // RegexMatcher::start(); in API_Match()
921 int32_t actualStart = matcher->start(i, status); in API_Match()
935 REGEX_ASSERT(matcher->start(0, status) == matcher->start(status)); in API_Match()
938 REGEX_ASSERT_FAIL(matcher->start(-1, status), U_INDEX_OUTOFBOUNDS_ERROR); in API_Match()
939 REGEX_ASSERT_FAIL(matcher->start( 4, status), U_INDEX_OUTOFBOUNDS_ERROR); in API_Match()
941 REGEX_ASSERT_FAIL(matcher->start( 0, status), U_REGEX_INVALID_STATE); in API_Match()
977 REGEX_ASSERT(matcher->start(status) == 1); in API_Match()
979 REGEX_ASSERT(matcher->start(status) == 6); in API_Match()
981 REGEX_ASSERT(matcher->start(statu in API_Match()
3587 int32_t start = groupStarts.elementAti(i); regex_find() local
[all...]
/foundation/arkui/ace_engine/advanced_ui_component/chip/interfaces/
H A Dchip.js113 start: LengthMetrics.vp(6),
119 start: LengthMetrics.vp(4),
217 start: LengthMetrics.vp(16),
223 start: LengthMetrics.vp(12),
1120 start: LengthMetrics.vp(0),
1124 this.label?.localizedLabelMargin?.start?.value !== void 0 &&
1125 this.lengthMetricsToVp(this.label.localizedLabelMargin.start) >= 0
1127 localizedLabelMargin.start = this.label?.localizedLabelMargin?.start;
1134 localizedLabelMargin.start
[all...]
/foundation/arkui/ace_engine/advanced_ui_component/subheader/interfaces/
H A Dsubheader.js249 start: LengthMetrics.vp(getResourceValue('sys.float.margin_left')),
585 start: this.contentMargin ? this.contentMargin.start :
730 start: LengthMetrics.vp((this.contentMargin ?
731 (this.contentMargin.start ? this.contentMargin.start.value : 0) :
812 start: LengthMetrics.vp((this.contentMargin ?
813 (this.contentMargin.start ? this.contentMargin.start.value : 0) :
1060 start
[all...]
/kernel/linux/linux-5.10/drivers/net/dsa/ocelot/
H A Dfelix_vsc9959.c383 .start = 0x0280000,
388 .start = 0x0080000,
393 .start = 0x0200000,
398 .start = 0x0030000,
403 .start = 0x0010000,
408 .start = 0x0040000,
413 .start = 0x0050000,
418 .start = 0x0060000,
423 .start = 0x0090000,
428 .start
[all...]
/kernel/linux/linux-5.10/drivers/net/wireless/ath/ath10k/
H A Dsdio.c565 ath10k_warn(ar, "exceeds length, start recovery\n"); in ath10k_sdio_mbox_rx_alloc()
744 * temp array as a start value. in ath10k_sdio_mbox_rxmsg_pending_handler()
964 ath10k_warn(ar, "read int status fail, start recovery\n"); in ath10k_sdio_mbox_read_int_status()
1271 /* We always read from the start of the mbox address */ in ath10k_sdio_bmi_exchange_msg()
1738 /* set window register to start read cycle */ in ath10k_sdio_hif_diag_read()
1858 /* HIF start/stop */
2118 .start = ath10k_sdio_hif_start,
2296 if (mem_region->start > cur_section->start) { in ath10k_sdio_dump_memory_section()
2297 ath10k_warn(ar, "incorrect memdump region 0x%x with section start addres in ath10k_sdio_dump_memory_section()
[all...]
/kernel/linux/linux-5.10/scripts/
H A Dget_maintainer.pl805 my ($start, $end) = @_;
807 for (my $i = $start; $i < $end; $i++) {
823 my ($start, $end) = @_;
825 for (my $i = $start; $i < $end; $i++) {
867 my $start = find_starting_index($tvi);
874 for ($i = $start; $i < $end; $i++) {
889 for ($i = $start; $i < $end; $i++) {
901 range_is_maintained($start, $end) &&
902 range_has_maintainer($start, $end)) {
925 my $start
[all...]
/kernel/linux/linux-5.10/tools/perf/bench/
H A Dnuma.c816 long start, end; in do_work() local
820 start = lfsr % words; in do_work()
821 end = min(start + 1024, words-1); in do_work()
824 bzero(data + start, (end-start) * sizeof(u64)); in do_work()
826 for (j = start; j < end; j++) in do_work()
1107 struct timeval start0, start, stop, diff; in worker_thread() local
1158 /* Here we will wait for the main process to start us all at once: */ in worker_thread()
1170 start = stop = start0; in worker_thread()
1171 last_perturbance = start in worker_thread()
1505 struct timeval start, stop, diff; __bench_numa() local
[all...]
/kernel/linux/linux-5.10/tools/perf/util/
H A Dsynthetic-events.c277 static bool read_proc_maps_line(struct io *io, __u64 *start, __u64 *end, in read_proc_maps_line() argument
287 if (io__get_hex(io, start) != '-') in read_proc_maps_line()
394 &event->mmap2.start, in perf_event__synthesize_mmap_events()
448 event->mmap2.len -= event->mmap.start; in perf_event__synthesize_mmap_events()
631 event->mmap.start = pos->start; in perf_event__synthesize_modules()
632 event->mmap.len = pos->end - pos->start; in perf_event__synthesize_modules()
819 int start, in __perf_event__synthesize_threads()
847 for (i = start; i < start in __perf_event__synthesize_threads()
814 __perf_event__synthesize_threads(struct perf_tool *tool, perf_event__handler_t process, struct machine *machine, bool mmap_data, struct dirent **dirent, int start, int num) __perf_event__synthesize_threads() argument
883 int start; global() member
[all...]
/kernel/linux/linux-6.6/drivers/virtio/
H A Dvirtio_mem.c130 /* Physical start address of the memory region. */
326 * Calculate the physical start address of a given memory block id.
343 * Calculate the physical start address of a given big block id.
844 static bool virtio_mem_overlaps_range(struct virtio_mem *vm, uint64_t start, in virtio_mem_overlaps_range() argument
847 return start < vm->addr + vm->region_size && vm->addr < start + size; in virtio_mem_overlaps_range()
854 static bool virtio_mem_contains_range(struct virtio_mem *vm, uint64_t start, in virtio_mem_contains_range() argument
857 return start >= vm->addr && start + size <= vm->addr + vm->region_size; in virtio_mem_contains_range()
989 const unsigned long start in virtio_mem_memory_notifier_cb() local
1277 const unsigned long start = page_to_phys(page); virtio_mem_online_page() local
[all...]
/kernel/linux/linux-6.6/drivers/net/wireless/ath/ath10k/
H A Dsdio.c565 ath10k_warn(ar, "exceeds length, start recovery\n"); in ath10k_sdio_mbox_rx_alloc()
744 * temp array as a start value. in ath10k_sdio_mbox_rxmsg_pending_handler()
964 ath10k_warn(ar, "read int status fail, start recovery\n"); in ath10k_sdio_mbox_read_int_status()
1271 /* We always read from the start of the mbox address */ in ath10k_sdio_bmi_exchange_msg()
1738 /* set window register to start read cycle */ in ath10k_sdio_hif_diag_read()
1858 /* HIF start/stop */
2123 .start = ath10k_sdio_hif_start,
2301 if (mem_region->start > cur_section->start) { in ath10k_sdio_dump_memory_section()
2302 ath10k_warn(ar, "incorrect memdump region 0x%x with section start addres in ath10k_sdio_dump_memory_section()
[all...]
/kernel/linux/linux-6.6/tools/perf/bench/
H A Dnuma.c853 long start, end; in do_work() local
857 start = lfsr % words; in do_work()
858 end = min(start + 1024, words-1); in do_work()
861 bzero(data + start, (end-start) * sizeof(u64)); in do_work()
863 for (j = start; j < end; j++) in do_work()
1156 struct timeval start0, start, stop, diff; in worker_thread() local
1207 /* Here we will wait for the main process to start us all at once: */ in worker_thread()
1219 start = stop = start0; in worker_thread()
1220 last_perturbance = start in worker_thread()
1565 struct timeval start, stop, diff; __bench_numa() local
[all...]
/kernel/linux/linux-6.6/scripts/
H A Dget_maintainer.pl805 my ($start, $end) = @_;
807 for (my $i = $start; $i < $end; $i++) {
823 my ($start, $end) = @_;
825 for (my $i = $start; $i < $end; $i++) {
867 my $start = find_starting_index($tvi);
874 for ($i = $start; $i < $end; $i++) {
889 for ($i = $start; $i < $end; $i++) {
901 range_is_maintained($start, $end) &&
902 range_has_maintainer($start, $end)) {
925 my $start
[all...]
/kernel/linux/linux-6.6/mm/
H A Dmm_init.c547 /* Align start of ZONE_MOVABLE on all nids to MAX_ORDER_NR_PAGES */ in find_zone_movable_pfns_for_nodes()
586 * treats start/end as pfns.
694 * We start only with one section of pages, more pages are added as in defer_init()
748 void __meminit reserve_bootmem_region(phys_addr_t start, in reserve_bootmem_region() argument
751 unsigned long start_pfn = PFN_DOWN(start); in reserve_bootmem_region()
1073 unsigned long start = jiffies; in memmap_init_zone_device() local
1082 * the end of that region and start processing the device pages. in memmap_init_zone_device()
1102 nr_pages, jiffies_to_msecs(jiffies - start)); in memmap_init_zone_device()
1164 * @start_pfn: The start PFN to start searchin
1643 unsigned long __maybe_unused start = 0; alloc_node_mem_map() local
1946 unsigned long start, end, mask; node_map_pfn_alignment() local
2198 unsigned long start = jiffies; deferred_init_memmap() local
[all...]

Completed in 48 milliseconds

1...<<241242243244245246247248249250>>...827