/third_party/icu/icu4c/source/test/perf/unisetperf/draft/ |
H A D | bitset.cpp | 103 UChar32 start, end; in BitSet() local 110 start=iter.getCodepoint(); in BitSet() 113 start=0x10000; in BitSet() 115 i=start>>6; in BitSet() 132 if(start>0xffff) { in BitSet() 135 b|=~((INT64_C(1)<<(start&0x3f))-1); in BitSet() 138 // Set bits for the start of the range. in BitSet()
|
/third_party/mesa3d/src/compiler/nir/ |
H A D | nir_lower_array_deref_of_vec.c | 47 unsigned start, unsigned end) in build_write_masked_stores() 49 if (start == end - 1) { in build_write_masked_stores() 50 build_write_masked_store(b, vec_deref, value, start); in build_write_masked_stores() 52 unsigned mid = start + (end - start) / 2; in build_write_masked_stores() 54 build_write_masked_stores(b, vec_deref, value, index, start, mid); in build_write_masked_stores() 45 build_write_masked_stores(nir_builder *b, nir_deref_instr *vec_deref, nir_ssa_def *value, nir_ssa_def *index, unsigned start, unsigned end) build_write_masked_stores() argument
|
/third_party/libwebsockets/minimal-examples/http-server/minimal-http-server-dynamic/ |
H A D | minimal-http-server-dynamic.c | 44 uint8_t buf[LWS_PRE + 2048], *start = &buf[LWS_PRE], *p = start, in callback_dynamic_http() local 113 if (lws_finalize_write_http_header(wsi, start, &p, end)) in callback_dynamic_http() 194 if (lws_write(wsi, (uint8_t *)start, lws_ptr_diff_size_t(p, start), (enum lws_write_protocol)n) != in callback_dynamic_http() 195 lws_ptr_diff(p, start)) in callback_dynamic_http()
|
/third_party/musl/src/misc/ |
H A D | getopt_long.c | 62 char *arg, *opt, *start = argv[optind]+1; in __getopt_long_core() local 65 opt = start; in __getopt_long_core() 78 if (cnt==1 && longonly && arg-start == mblen(start, MB_LEN_MAX)) { in __getopt_long_core() 79 int l = arg-start; in __getopt_long_core() 82 for (j=0; j<l && start[j]==optstring[i+j]; j++); in __getopt_long_core()
|
/third_party/node/benchmark/es/ |
H A D | map-bench.js | 16 bench.start(); 29 bench.start(); 42 bench.start(); 58 bench.start(); 81 bench.start(); 94 bench.start();
|
/third_party/mesa3d/src/mesa/math/ |
H A D | m_vector.c | 56 GLfloat (*data)[4] = (GLfloat (*)[4])vec->start; in _mesa_vector4f_clean_elem() 85 STATIC_ASSERT(V4F_START == offsetof(GLvector4f, start)); in _mesa_vector4f_init() 94 v->start = (GLfloat *) storage; in _mesa_vector4f_init() 115 v->start = (GLfloat *) v->storage; in _mesa_vector4f_alloc() 133 v->start = NULL; in _mesa_vector4f_free() 160 printf("data-start\n"); in _mesa_vector4f_print() 161 for (; d != v->start; STRIDE_F(d, v->stride), i++) in _mesa_vector4f_print() 164 printf("start-count(%u)\n", v->count); in _mesa_vector4f_print()
|
/third_party/libdrm/tegra/ |
H A D | job.c | 114 pushbuf->start = calloc(1, job->page_size); in drm_tegra_job_get_pushbuf() 115 if (!pushbuf->start) { in drm_tegra_job_get_pushbuf() 120 pushbuf->end = pushbuf->start + job->page_size / 4; in drm_tegra_job_get_pushbuf() 121 pushbuf->ptr = pushbuf->start; in drm_tegra_job_get_pushbuf() 143 args.gather_data_words = job->pushbuf->ptr - job->pushbuf->start; in drm_tegra_job_submit() 149 args.gather_data_ptr = (uintptr_t)job->pushbuf->start; in drm_tegra_job_submit()
|
/third_party/libexif/test/ |
H A D | test-parse-from-data.c | 160 const char *start = string; in split_ws_string() local 161 const char *p = start; in split_ws_string() 164 size_t len = p-start; in split_ws_string() 169 memcpy(str, start, len); in split_ws_string() 173 start = p+1; in split_ws_string() 176 start = p+1; in split_ws_string()
|
/third_party/node/deps/v8/src/base/platform/ |
H A D | platform-linux.cc | 60 uintptr_t start, end, offset; in GetSharedLibraryAddresses() local 63 if (fscanf(fp, "%" V8PRIxPTR "-%" V8PRIxPTR, &start, &end) != 2) break; in GetSharedLibraryAddresses() 90 snprintf(lib_name, kLibNameLen, "%08" V8PRIxPTR "-%08" V8PRIxPTR, start, in GetSharedLibraryAddresses() 98 // Only adjust {start} based on {offset} if the file isn't the APK, in GetSharedLibraryAddresses() 101 start -= offset; in GetSharedLibraryAddresses() 104 // Adjust {start} based on {offset}. in GetSharedLibraryAddresses() 105 start -= offset; in GetSharedLibraryAddresses() 108 result.push_back(SharedLibraryAddress(lib_name, start, end)); in GetSharedLibraryAddresses() 181 // Skip the gaps at the lower address to the start of boundary. in GetFreeMemoryRangesWithin()
|
/third_party/node/deps/v8/src/heap/cppgc/ |
H A D | explicit-management.cc | 59 if (payload_end == lab.start()) { // Returning to LAB. in FreeUnreferencedObject() 61 normal_page->object_start_bitmap().ClearBit(lab.start()); in FreeUnreferencedObject() 88 if (lab.start() == header.ObjectEnd() && lab.size() >= size_delta) { in Grow() 108 if (lab.start() == header.ObjectEnd()) { in Shrink() 109 DCHECK_EQ(free_start, lab.start() - size_delta); in Shrink() 113 SetMemoryInaccessible(lab.start(), size_delta); in Shrink() 128 // Return success in any case, as we want to avoid that embedders start in Shrink()
|
/third_party/node/deps/v8/src/objects/ |
H A D | visitors.h | 69 // [start, end). Any or all of the values may be modified on return. 71 FullObjectSlot start, FullObjectSlot end) = 0; 80 // [start, end). Any or all of the values may be modified on return. 82 OffHeapObjectSlot start, in VisitRootPointers() 117 // [start, end). Any or all of the values may be modified on return. 118 virtual void VisitPointers(HeapObject host, ObjectSlot start, 120 virtual void VisitPointers(HeapObject host, MaybeObjectSlot start, 133 virtual void VisitCustomWeakPointers(HeapObject host, ObjectSlot start, in VisitCustomWeakPointers() argument 135 VisitPointers(host, start, end); in VisitCustomWeakPointers() 81 VisitRootPointers(Root root, const char* description, OffHeapObjectSlot start, OffHeapObjectSlot end) VisitRootPointers() argument
|
/third_party/rust/crates/aho-corasick/aho-corasick-debug/ |
H A D | main.rs | 33 let start = Instant::now(); in try_main() 37 let count_time = Instant::now().duration_since(start); in try_main() 119 let start = Instant::now(); in automaton() 121 let read_time = Instant::now().duration_since(start); in automaton() 124 let start = Instant::now(); in automaton() 136 let build_time = Instant::now().duration_since(start); in automaton()
|
/third_party/python/Lib/lib2to3/fixes/ |
H A D | fix_tuple_params.py | 56 start = 2 60 start = 0 96 after = start 97 if start == 0: 99 elif is_docstring(suite[0].children[start]): 101 after = start + 1
|
/third_party/python/Lib/lib2to3/pgen2/ |
H A D | parse.py | 36 p.setup([start]) # prepare for parsing 92 def setup(self, start=None): 97 The optional argument is an alternative start symbol; it 98 defaults to the grammar's start symbol. 102 state determined by the (implicit or explicit) start symbol. 105 if start is None: 106 start = self.grammar.start 110 newnode = (start, None, None, []) 111 stackentry = (self.grammar.dfas[start], [all...] |
/third_party/skia/platform_tools/android/skp_gen/ |
H A D | android_skp_capture.py | 27 def __init__(self, start, end, duration, points): 28 self.start = start 35 return device.drag(self.start, self.end, self.duration, self.points) 52 return DragAction(tuple(action_dict['start']), 121 start = time.time() 124 if time.time() - start > timeout:
|
/third_party/rust/crates/regex/bench/src/ffi/ |
H A D | tcl.rs | 101 fn find_at(&self, text: &Text, start: usize) -> Option<(usize, usize)> { in find_at() 107 start as c_int, in find_at() 120 let s = start as c_long + (*info.matches).start; in find_at() 121 let e = start as c_long + (*info.matches).end; in find_at() 186 start: c_long,
|
/kernel/linux/linux-5.10/drivers/net/ethernet/mellanox/mlx5/core/steering/ |
H A D | dr_action.c | 223 u8 start; member 231 .hw_field = MLX5DR_ACTION_MDFY_HW_FLD_L2_1, .start = 16, .end = 47, 234 .hw_field = MLX5DR_ACTION_MDFY_HW_FLD_L2_1, .start = 0, .end = 15, 237 .hw_field = MLX5DR_ACTION_MDFY_HW_FLD_L2_2, .start = 32, .end = 47, 240 .hw_field = MLX5DR_ACTION_MDFY_HW_FLD_L2_0, .start = 16, .end = 47, 243 .hw_field = MLX5DR_ACTION_MDFY_HW_FLD_L2_0, .start = 0, .end = 15, 246 .hw_field = MLX5DR_ACTION_MDFY_HW_FLD_L3_1, .start = 0, .end = 5, 249 .hw_field = MLX5DR_ACTION_MDFY_HW_FLD_L4_0, .start = 48, .end = 56, 253 .hw_field = MLX5DR_ACTION_MDFY_HW_FLD_L4_0, .start = 0, .end = 15, 257 .hw_field = MLX5DR_ACTION_MDFY_HW_FLD_L4_0, .start [all...] |
/device/soc/rockchip/rk3588/kernel/drivers/gpu/drm/rockchip/ |
H A D | rockchip_drm_logo.c | 125 rockchip_drm_free_reserved_area(void *start, void *end, int poison, const char *s) in rockchip_drm_free_reserved_area() argument 130 start = (void *)PAGE_ALIGN((unsigned long)start); in rockchip_drm_free_reserved_area() 132 for (pos = start; pos < end; pos += PAGE_SIZE, pages++) { in rockchip_drm_free_reserved_area() 165 void *start, *end; in rockchip_free_loader_memory() local 171 start = phys_to_virt(logo->dma_addr); in rockchip_free_loader_memory() 180 memblock_free(logo->start, logo->size); in rockchip_free_loader_memory() 181 rockchip_drm_free_reserved_area(start, end, -1, "drm_logo"); in rockchip_free_loader_memory() 193 phys_addr_t start, size; in init_loader_memory() local 211 start in init_loader_memory() [all...] |
/kernel/linux/linux-5.10/arch/m68k/mac/ |
H A D | config.c | 812 scc_a_rsrcs[0].start = (resource_size_t)mac_bi_data.sccbase + 2; in mac_identify() 813 scc_a_rsrcs[0].end = scc_a_rsrcs[0].start; in mac_identify() 817 scc_b_rsrcs[0].start = (resource_size_t)mac_bi_data.sccbase; in mac_identify() 818 scc_b_rsrcs[0].end = scc_b_rsrcs[0].start; in mac_identify() 824 scc_a_rsrcs[1].start = scc_a_rsrcs[1].end = IRQ_MAC_SCC_A; in mac_identify() 825 scc_b_rsrcs[1].start = scc_b_rsrcs[1].end = IRQ_MAC_SCC_B; in mac_identify() 830 scc_a_rsrcs[1].start = scc_a_rsrcs[1].end = IRQ_MAC_SCC; in mac_identify() 831 scc_b_rsrcs[1].start = scc_b_rsrcs[1].end = IRQ_MAC_SCC; in mac_identify() 833 scc_a_rsrcs[1].start = scc_a_rsrcs[1].end = IRQ_AUTO_4; in mac_identify() 834 scc_b_rsrcs[1].start in mac_identify() [all...] |
/kernel/linux/linux-6.6/arch/m68k/mac/ |
H A D | config.c | 813 scc_a_rsrcs[0].start = (resource_size_t)mac_bi_data.sccbase + 2; in mac_identify() 814 scc_a_rsrcs[0].end = scc_a_rsrcs[0].start; in mac_identify() 818 scc_b_rsrcs[0].start = (resource_size_t)mac_bi_data.sccbase; in mac_identify() 819 scc_b_rsrcs[0].end = scc_b_rsrcs[0].start; in mac_identify() 825 scc_a_rsrcs[1].start = scc_a_rsrcs[1].end = IRQ_MAC_SCC_A; in mac_identify() 826 scc_b_rsrcs[1].start = scc_b_rsrcs[1].end = IRQ_MAC_SCC_B; in mac_identify() 831 scc_a_rsrcs[1].start = scc_a_rsrcs[1].end = IRQ_MAC_SCC; in mac_identify() 832 scc_b_rsrcs[1].start = scc_b_rsrcs[1].end = IRQ_MAC_SCC; in mac_identify() 834 scc_a_rsrcs[1].start = scc_a_rsrcs[1].end = IRQ_AUTO_4; in mac_identify() 835 scc_b_rsrcs[1].start in mac_identify() [all...] |
/kernel/linux/linux-5.10/drivers/mfd/ |
H A D | tc6393xb.c | 138 .start = 0x1000, 143 .start = 0x0100, 148 .start = IRQ_TC6393_NAND, 156 .start = 0x800, 161 .start = IRQ_TC6393_MMC, 169 .start = 0x3000, 174 .start = 0x0300, 179 .start = 0x010000, 184 .start = 0x018000, 189 .start [all...] |
/kernel/linux/linux-5.10/fs/ocfs2/ |
H A D | localalloc.c | 613 * We will add ourselves to the transaction passed in, but may start 722 int status, start; in ocfs2_claim_local_alloc_bits() local 734 start = ocfs2_local_alloc_find_clear_bits(osb, alloc, &bits_wanted, in ocfs2_claim_local_alloc_bits() 736 if (start == -1) { in ocfs2_claim_local_alloc_bits() 744 *bit_off = le32_to_cpu(la->la_bm_off) + start; in ocfs2_claim_local_alloc_bits() 756 ocfs2_resmap_claimed_bits(&osb->osb_la_resmap, ac->ac_resv, start, in ocfs2_claim_local_alloc_bits() 760 ocfs2_set_bit(start++, bitmap); in ocfs2_claim_local_alloc_bits() 777 int status, start; in ocfs2_free_local_alloc_bits() local 791 start = bit_off - le32_to_cpu(la->la_bm_off); in ocfs2_free_local_alloc_bits() 804 ocfs2_clear_bit(start in ocfs2_free_local_alloc_bits() 956 int bit_off, left, count, start; ocfs2_sync_local_to_main() local [all...] |
/kernel/linux/linux-6.6/fs/ocfs2/ |
H A D | localalloc.c | 611 * We will add ourselves to the transaction passed in, but may start 720 int status, start; in ocfs2_claim_local_alloc_bits() local 732 start = ocfs2_local_alloc_find_clear_bits(osb, alloc, &bits_wanted, in ocfs2_claim_local_alloc_bits() 734 if (start == -1) { in ocfs2_claim_local_alloc_bits() 742 *bit_off = le32_to_cpu(la->la_bm_off) + start; in ocfs2_claim_local_alloc_bits() 754 ocfs2_resmap_claimed_bits(&osb->osb_la_resmap, ac->ac_resv, start, in ocfs2_claim_local_alloc_bits() 758 ocfs2_set_bit(start++, bitmap); in ocfs2_claim_local_alloc_bits() 775 int status, start; in ocfs2_free_local_alloc_bits() local 789 start = bit_off - le32_to_cpu(la->la_bm_off); in ocfs2_free_local_alloc_bits() 802 ocfs2_clear_bit(start in ocfs2_free_local_alloc_bits() 954 int bit_off, left, count, start; ocfs2_sync_local_to_main() local [all...] |
/kernel/linux/linux-6.6/kernel/bpf/ |
H A D | trampoline.c | 120 ksym->start = (unsigned long) data; in bpf_image_ksym_add() 121 ksym->end = ksym->start + PAGE_SIZE; in bpf_image_ksym_add() 123 perf_event_ksymbol(PERF_RECORD_KSYMBOL_TYPE_BPF, ksym->start, in bpf_image_ksym_add() 130 perf_event_ksymbol(PERF_RECORD_KSYMBOL_TYPE_BPF, ksym->start, in bpf_image_ksym_del() 825 u64 start = NO_START_TIME; in bpf_prog_start_time() local 828 start = sched_clock(); in bpf_prog_start_time() 829 if (unlikely(!start)) in bpf_prog_start_time() 830 start = NO_START_TIME; in bpf_prog_start_time() 832 return start; in bpf_prog_start_time() 846 * This is start tim 863 update_prog_stats(struct bpf_prog *prog, u64 start) update_prog_stats() argument 938 __bpf_prog_exit_sleepable_recur(struct bpf_prog *prog, u64 start, struct bpf_tramp_run_ctx *run_ctx) __bpf_prog_exit_sleepable_recur() argument 961 __bpf_prog_exit_sleepable(struct bpf_prog *prog, u64 start, struct bpf_tramp_run_ctx *run_ctx) __bpf_prog_exit_sleepable() argument [all...] |
/third_party/ffmpeg/libavcodec/ |
H A D | flac_parser.c | 68 int offset; /**< byte offset from start of FLACParseContext->buffer */ 166 uint8_t *start = f->rptr + offset; in flac_fifo_read_wrap() local 169 if (start >= f->end) in flac_fifo_read_wrap() 170 start -= f->end - f->buffer; in flac_fifo_read_wrap() 171 if (f->end - start >= len) in flac_fifo_read_wrap() 172 return start; in flac_fifo_read_wrap() 183 int seg_len = FFMIN(f->end - start, len); in flac_fifo_read_wrap() 184 memcpy(tmp_buf, start, seg_len); in flac_fifo_read_wrap() 188 start += seg_len - (f->end - f->buffer); in flac_fifo_read_wrap() 204 uint8_t *start in flac_fifo_read() local 510 FLACHeaderMarker *start, *end; check_header_mismatch() local [all...] |