/kernel/linux/linux-5.10/arch/mips/txx9/generic/ |
H A D | setup.c | 70 txx9_reg_res.start = base & 0xfffffffffULL; in txx9_reg_res_init() 392 .start = base, in txx9_wdt_init() 418 .start = base, in txx9_spi_init() 422 .start = irq, in txx9_spi_init() 497 ioport_resource.start = 0; in plat_mem_setup() 499 iomem_resource.start = 0; in plat_mem_setup() 618 .start = addr, in txx9_physmap_flash_init() 656 .start = baseaddr, in txx9_ndfmc_init() 794 .start = baseaddr, in txx9_dmac_init() 799 .start in txx9_dmac_init() [all...] |
/kernel/linux/linux-5.10/drivers/gpu/drm/meson/ |
H A D | meson_overlay.c | 243 int temp, start, end; in meson_overlay_setup_scaler_params() local 285 start = video_top + video_height / 2 - ((h_in << 17) / ratio_y); in meson_overlay_setup_scaler_params() 286 end = (h_in << 18) / ratio_y + start - 1; in meson_overlay_setup_scaler_params() 288 if (video_top < 0 && start < 0) in meson_overlay_setup_scaler_params() 289 vd_start_lines = (-(start) * ratio_y) >> 18; in meson_overlay_setup_scaler_params() 290 else if (start < video_top) in meson_overlay_setup_scaler_params() 291 vd_start_lines = ((video_top - start) * ratio_y) >> 18; in meson_overlay_setup_scaler_params() 316 start >>= 1; in meson_overlay_setup_scaler_params() 320 vsc_startp = max_t(int, start, in meson_overlay_setup_scaler_params() 339 start in meson_overlay_setup_scaler_params() [all...] |
/kernel/linux/linux-5.10/drivers/video/fbdev/ |
H A D | s1d13xxxfb.c | 372 u32 start; in s1d13xxxfb_pan_display() local 380 start = (info->fix.line_length >> 1) * var->yoffset; in s1d13xxxfb_pan_display() 384 s1d13xxxfb_writereg(par, S1DREG_LCD_DISP_START0, (start & 0xff)); in s1d13xxxfb_pan_display() 385 s1d13xxxfb_writereg(par, S1DREG_LCD_DISP_START1, ((start >> 8) & 0xff)); in s1d13xxxfb_pan_display() 386 s1d13xxxfb_writereg(par, S1DREG_LCD_DISP_START2, ((start >> 16) & 0x0f)); in s1d13xxxfb_pan_display() 389 s1d13xxxfb_writereg(par, S1DREG_CRT_DISP_START0, (start & 0xff)); in s1d13xxxfb_pan_display() 390 s1d13xxxfb_writereg(par, S1DREG_CRT_DISP_START1, ((start >> 8) & 0xff)); in s1d13xxxfb_pan_display() 391 s1d13xxxfb_writereg(par, S1DREG_CRT_DISP_START2, ((start >> 16) & 0x0f)); in s1d13xxxfb_pan_display() 746 release_mem_region(pdev->resource[0].start, in __s1d13xxxfb_remove() 748 release_mem_region(pdev->resource[1].start, in __s1d13xxxfb_remove() [all...] |
/kernel/linux/linux-5.10/scripts/genksyms/ |
H A D | genksyms.c | 58 static struct string_list *concat_list(struct string_list *start, ...); 350 static struct string_list *concat_list(struct string_list *start, ...) in concat_list() argument 355 if (!start) in concat_list() 357 for (va_start(ap, start); (n = va_arg(ap, struct string_list *));) { in concat_list() 360 n2->next = start; in concat_list() 361 start = n; in concat_list() 364 return start; in concat_list() 378 struct string_list *copy_list_range(struct string_list *start, in copy_list_range() argument 383 if (start == end) in copy_list_range() 385 n = res = copy_node(start); in copy_list_range() [all...] |
/kernel/linux/linux-5.10/fs/btrfs/ |
H A D | dev-replace.c | 574 switch (args->start.cont_reading_from_srcdev_mode) { in btrfs_dev_replace_by_ioctl() 582 if ((args->start.srcdevid == 0 && args->start.srcdev_name[0] == '\0') || in btrfs_dev_replace_by_ioctl() 583 args->start.tgtdev_name[0] == '\0') in btrfs_dev_replace_by_ioctl() 586 ret = btrfs_dev_replace_start(fs_info, args->start.tgtdev_name, in btrfs_dev_replace_by_ioctl() 587 args->start.srcdevid, in btrfs_dev_replace_by_ioctl() 588 args->start.srcdev_name, in btrfs_dev_replace_by_ioctl() 589 args->start.cont_reading_from_srcdev_mode); in btrfs_dev_replace_by_ioctl() 628 u64 start = 0; in btrfs_set_target_alloc_state() local 635 while (!find_first_extent_bit(&srcdev->alloc_state, start, in btrfs_set_target_alloc_state() 657 u64 start = 0; btrfs_dev_replace_update_device_in_mapping_tree() local [all...] |
H A D | ordered-data.c | 646 * Used to start IO or wait for a given ordered extent to finish. 654 u64 start = entry->file_offset; in btrfs_start_ordered_extent() local 655 u64 end = start + entry->num_bytes - 1; in btrfs_start_ordered_extent() 662 * start IO on any dirty ones so the wait doesn't stall waiting in btrfs_start_ordered_extent() 666 filemap_fdatawrite_range(inode->vfs_inode.i_mapping, start, end); in btrfs_start_ordered_extent() 676 int btrfs_wait_ordered_range(struct inode *inode, u64 start, u64 len) in btrfs_wait_ordered_range() argument 684 if (start + len < start) { in btrfs_wait_ordered_range() 687 orig_end = start + len - 1; in btrfs_wait_ordered_range() 692 /* start I in btrfs_wait_ordered_range() 915 btrfs_lock_and_flush_ordered_range(struct btrfs_inode *inode, u64 start, u64 end, struct extent_state **cached_state) btrfs_lock_and_flush_ordered_range() argument [all...] |
/kernel/linux/linux-6.6/drivers/video/fbdev/ |
H A D | s1d13xxxfb.c | 372 u32 start; in s1d13xxxfb_pan_display() local 380 start = (info->fix.line_length >> 1) * var->yoffset; in s1d13xxxfb_pan_display() 384 s1d13xxxfb_writereg(par, S1DREG_LCD_DISP_START0, (start & 0xff)); in s1d13xxxfb_pan_display() 385 s1d13xxxfb_writereg(par, S1DREG_LCD_DISP_START1, ((start >> 8) & 0xff)); in s1d13xxxfb_pan_display() 386 s1d13xxxfb_writereg(par, S1DREG_LCD_DISP_START2, ((start >> 16) & 0x0f)); in s1d13xxxfb_pan_display() 389 s1d13xxxfb_writereg(par, S1DREG_CRT_DISP_START0, (start & 0xff)); in s1d13xxxfb_pan_display() 390 s1d13xxxfb_writereg(par, S1DREG_CRT_DISP_START1, ((start >> 8) & 0xff)); in s1d13xxxfb_pan_display() 391 s1d13xxxfb_writereg(par, S1DREG_CRT_DISP_START2, ((start >> 16) & 0x0f)); in s1d13xxxfb_pan_display() 745 release_mem_region(pdev->resource[0].start, in __s1d13xxxfb_remove() 747 release_mem_region(pdev->resource[1].start, in __s1d13xxxfb_remove() [all...] |
/kernel/linux/linux-6.6/drivers/gpu/drm/meson/ |
H A D | meson_overlay.c | 248 int temp, start, end; in meson_overlay_setup_scaler_params() local 290 start = video_top + video_height / 2 - ((h_in << 17) / ratio_y); in meson_overlay_setup_scaler_params() 291 end = (h_in << 18) / ratio_y + start - 1; in meson_overlay_setup_scaler_params() 293 if (video_top < 0 && start < 0) in meson_overlay_setup_scaler_params() 294 vd_start_lines = (-(start) * ratio_y) >> 18; in meson_overlay_setup_scaler_params() 295 else if (start < video_top) in meson_overlay_setup_scaler_params() 296 vd_start_lines = ((video_top - start) * ratio_y) >> 18; in meson_overlay_setup_scaler_params() 321 start >>= 1; in meson_overlay_setup_scaler_params() 325 vsc_startp = max_t(int, start, in meson_overlay_setup_scaler_params() 344 start in meson_overlay_setup_scaler_params() [all...] |
/kernel/linux/linux-6.6/net/sunrpc/xprtrdma/ |
H A D | svc_rdma_rw.c | 24 * because scatterlist entries after the first have to start on 860 unsigned int start, length; in svc_rdma_read_multiple_chunks() local 863 start = 0; in svc_rdma_read_multiple_chunks() 866 ret = svc_rdma_copy_inline_range(info, start, length); in svc_rdma_read_multiple_chunks() 879 start += length; in svc_rdma_read_multiple_chunks() 881 ret = svc_rdma_copy_inline_range(info, start, length); in svc_rdma_read_multiple_chunks() 886 start += length; in svc_rdma_read_multiple_chunks() 887 length = head->rc_byte_len - start; in svc_rdma_read_multiple_chunks() 888 ret = svc_rdma_copy_inline_range(info, start, length); in svc_rdma_read_multiple_chunks() 947 * Currently these chunks always start a in svc_rdma_read_data_item() 1023 unsigned int start, length; svc_rdma_read_call_chunk() local [all...] |
/kernel/linux/linux-6.6/scripts/genksyms/ |
H A D | genksyms.c | 58 static struct string_list *concat_list(struct string_list *start, ...); 350 static struct string_list *concat_list(struct string_list *start, ...) in concat_list() argument 355 if (!start) in concat_list() 357 for (va_start(ap, start); (n = va_arg(ap, struct string_list *));) { in concat_list() 360 n2->next = start; in concat_list() 361 start = n; in concat_list() 364 return start; in concat_list() 378 struct string_list *copy_list_range(struct string_list *start, in copy_list_range() argument 383 if (start == end) in copy_list_range() 385 n = res = copy_node(start); in copy_list_range() [all...] |
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
H A D | RuleBasedNumberFormat.java | 1297 // parsePosition tells us where to start parsing. We copy the in parse() 1704 // start by stripping the trailing whitespace from all the rules in init() 1748 int start = 0; in init() 1751 p = descBuf.indexOf(";%", start); in init() 1755 ruleSetDescriptions[curRuleSet] = descBuf.substring(start, p + 1); in init() 1771 start = p + 1; in init() 1894 int start = 0; in stripWhitespace() 1895 while (start < descriptionLength) { in stripWhitespace() 1897 while (start < descriptionLength in stripWhitespace() 1898 && PatternProps.isWhiteSpace(description.charAt(start))) in stripWhitespace() [all...] |
/third_party/icu/icu4c/source/test/cintltst/ |
H A D | utransts.c | 101 static void Xreplace(UReplaceable* rep, int32_t start, int32_t limit, in Xreplace() argument 104 int32_t newLen = Xlength(rep) + limit - start + textLength; in Xreplace() 106 u_strncpy(newText, x->text, start); in Xreplace() 107 u_strncpy(newText + start, text, textLength); in Xreplace() 108 u_strcpy(newText + start + textLength, x->text + limit); in Xreplace() 114 static void Xcopy(UReplaceable* rep, int32_t start, int32_t limit, int32_t dest) { in Xcopy() argument 116 int32_t newLen = Xlength(rep) + limit - start; in Xcopy() 119 u_strncpy(newText + dest, x->text + start, limit - start); in Xcopy() 120 u_strcpy(newText + dest + limit - start, in Xcopy() 126 Xextract(UReplaceable* rep, int32_t start, int32_t limit, UChar* dst) Xextract() argument [all...] |
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
H A D | RuleBasedNumberFormat.java | 1268 // parsePosition tells us where to start parsing. We copy the in parse() 1665 // start by stripping the trailing whitespace from all the rules in init() 1709 int start = 0; in init() 1712 p = descBuf.indexOf(";%", start); in init() 1716 ruleSetDescriptions[curRuleSet] = descBuf.substring(start, p + 1); in init() 1732 start = p + 1; in init() 1855 int start = 0; in stripWhitespace() 1856 while (start < descriptionLength) { in stripWhitespace() 1858 while (start < descriptionLength in stripWhitespace() 1859 && PatternProps.isWhiteSpace(description.charAt(start))) in stripWhitespace() [all...] |
/third_party/libunwind/libunwind/src/dwarf/ |
H A D | Gfind_proc_info-lsb.c | 254 const char *dlname, unw_word_t start, unw_word_t end) in locate_debug_info() 268 Debug (4, "checking %p: %lx-%lx\n", w, (long)w->start, (long)w->end); in locate_debug_info() 269 if (addr >= w->start && addr < w->end) in locate_debug_info() 301 fdesc->start = start; in locate_debug_info() 434 unw_word_t start, unw_word_t end) in dwarf_find_debug_frame() 441 fdesc = locate_debug_info (unw_local_addr_space, ip, segbase, obj_name, start, in dwarf_find_debug_frame() 498 di->start_ip = fdesc->start; in dwarf_find_debug_frame() 588 unw_word_t start, end; in dwarf_callback() local 749 means relative to the start o in dwarf_callback() 253 locate_debug_info(unw_addr_space_t as, unw_word_t addr, unw_word_t segbase, const char *dlname, unw_word_t start, unw_word_t end) locate_debug_info() argument 432 dwarf_find_debug_frame(int found, unw_dyn_info_t *di_debug, unw_word_t ip, unw_word_t segbase, const char* obj_name, unw_word_t start, unw_word_t end) dwarf_find_debug_frame() argument 873 int32_t start = 0; remote_lookup() local [all...] |
/third_party/mesa3d/src/gallium/drivers/lima/ |
H A D | lima_parser.c | 151 lima_parse_vs(FILE *fp, uint32_t *data, int size, uint32_t start) in lima_parse_vs() argument 162 start + i * 4, i * 4, *value1, *value2); in lima_parse_vs() 343 uint32_t start = *value1 & 0x00ffffff; in parse_plbu_draw_arrays() local 346 fprintf(fp, "\t/* DRAW_ARRAYS: count: %d, start: %d, mode: %d (0x%x) */\n", in parse_plbu_draw_arrays() 347 count, start, mode, mode); in parse_plbu_draw_arrays() 354 uint32_t start = *value1 & 0x00ffffff; in parse_plbu_draw_elements() local 357 fprintf(fp, "\t/* DRAW_ELEMENTS: count: %d, start: %d, mode: %d (0x%x) */\n", in parse_plbu_draw_elements() 358 count, start, mode, mode); in parse_plbu_draw_elements() 374 lima_parse_plbu(FILE *fp, uint32_t *data, int size, uint32_t start) in lima_parse_plbu() argument 384 start in lima_parse_plbu() 716 lima_parse_render_state(FILE *fp, uint32_t *data, int size, uint32_t start) lima_parse_render_state() argument 734 parse_texture(FILE *fp, uint32_t *data, uint32_t start, uint32_t offset) parse_texture() argument 836 lima_parse_texture_descriptor(FILE *fp, uint32_t *data, int size, uint32_t start, uint32_t offset) lima_parse_texture_descriptor() argument [all...] |
/third_party/node/deps/openssl/openssl/apps/lib/ |
H A D | opt.c | 864 /* If word doesn't start with a -, we're done. */ in opt_next() 1065 char start[80 + 1]; in opt_print() local 1084 memset(start, ' ', sizeof(start) - 1); in opt_print() 1085 start[sizeof(start) - 1] = '\0'; in opt_print() 1089 start[width] = '\0'; in opt_print() 1090 opt_printf_stderr("%s %s\n", start, help); in opt_print() 1095 p = start; in opt_print() 1108 if ((int)(p - start) > in opt_print() 1122 char start[80 + 1]; opt_help() local [all...] |
/third_party/openssl/apps/lib/ |
H A D | opt.c | 859 /* If word doesn't start with a -, we're done. */ in opt_next() 1060 char start[80 + 1]; in opt_print() local 1079 memset(start, ' ', sizeof(start) - 1); in opt_print() 1080 start[sizeof(start) - 1] = '\0'; in opt_print() 1084 start[width] = '\0'; in opt_print() 1085 opt_printf_stderr("%s %s\n", start, help); in opt_print() 1090 p = start; in opt_print() 1103 if ((int)(p - start) > in opt_print() 1117 char start[80 + 1]; opt_help() local [all...] |
/kernel/linux/linux-5.10/arch/arm/mach-pxa/ |
H A D | mp900.c | 48 .start = 0x0d000000, 53 .start = 0x0d000000 + 4, 58 .start = 61,
|
/kernel/linux/linux-5.10/arch/ia64/scripts/ |
H A D | unwcheck.py | 31 if not func: func = "[%#x-%#x]" % (start, end) 46 start = int(m.group(2), 16) 48 slots = 3 * (end - start) / 16
|
/kernel/linux/linux-5.10/arch/mips/generic/ |
H A D | board-ranchu.c | 37 unsigned int start, count; in ranchu_measure_hpt_freq() local 55 start = read_c0_count(); in ranchu_measure_hpt_freq() 62 count = read_c0_count() - start; in ranchu_measure_hpt_freq()
|
/kernel/linux/linux-5.10/arch/powerpc/include/asm/book3s/64/ |
H A D | tlbflush-hash.h | 103 unsigned long start, unsigned long end) in hash__flush_tlb_range() 107 static inline void hash__flush_tlb_kernel_range(unsigned long start, in hash__flush_tlb_kernel_range() argument 116 extern void __flush_hash_table_range(unsigned long start, unsigned long end); 102 hash__flush_tlb_range(struct vm_area_struct *vma, unsigned long start, unsigned long end) hash__flush_tlb_range() argument
|
/kernel/linux/linux-5.10/arch/mips/rb532/ |
H A D | setup.c | 23 .start = PCI0_BASE_ADDR, 52 pci_reg = ioremap(pci0_res[0].start, in plat_mem_setup() 53 pci0_res[0].end - pci0_res[0].start); in plat_mem_setup()
|
/kernel/linux/linux-5.10/arch/nios2/mm/ |
H A D | dma-mapping.c | 65 unsigned long start = (unsigned long)page_address(page); in arch_dma_prep_coherent() local 67 flush_dcache_range(start, start + size); in arch_dma_prep_coherent()
|
/kernel/linux/linux-5.10/arch/sh/mm/ |
H A D | nommu.c | 47 void local_flush_tlb_range(struct vm_area_struct *vma, unsigned long start, in local_flush_tlb_range() argument 63 void local_flush_tlb_kernel_range(unsigned long start, unsigned long end) in local_flush_tlb_kernel_range() argument 91 void __init page_table_range_init(unsigned long start, unsigned long end, in page_table_range_init() argument
|
/kernel/linux/linux-5.10/arch/powerpc/platforms/82xx/ |
H A D | pq2.c | 51 if (of_address_to_resource(np, 0, &r) || r.end - r.start < 0x10b) in pq2_pci_add_bridge() 62 setup_indirect_pci(hose, r.start + 0x100, r.start + 0x104, 0); in pq2_pci_add_bridge()
|