/linux-6.1.9/drivers/video/backlight/ |
D | cr_bllcd.c | 157 struct cr_panel *crp; in cr_backlight_probe() local 195 crp = devm_kzalloc(&pdev->dev, sizeof(*crp), GFP_KERNEL); in cr_backlight_probe() 196 if (!crp) { in cr_backlight_probe() 201 crp->cr_backlight_device = bdp; in cr_backlight_probe() 202 crp->cr_lcd_device = ldp; in cr_backlight_probe() 203 crp->cr_backlight_device->props.power = FB_BLANK_UNBLANK; in cr_backlight_probe() 204 crp->cr_backlight_device->props.brightness = 0; in cr_backlight_probe() 205 cr_backlight_set_intensity(crp->cr_backlight_device); in cr_backlight_probe() 206 cr_lcd_set_power(crp->cr_lcd_device, FB_BLANK_UNBLANK); in cr_backlight_probe() 208 platform_set_drvdata(pdev, crp); in cr_backlight_probe() [all …]
|
/linux-6.1.9/tools/perf/util/ |
D | thread-stack.c | 98 struct call_return_processor *crp; member 137 struct call_return_processor *crp, in thread_stack__init() argument 168 ts->crp = crp; in thread_stack__init() 174 struct call_return_processor *crp, in thread_stack__new() argument 202 thread_stack__init(ts, thread, crp, callstack, br_stack_sz)) in thread_stack__new() 302 struct call_return_processor *crp = ts->crp; in thread_stack__call_return() local 335 return crp->process(&cr, parent_db_id, crp->data); in thread_stack__call_return() 340 struct call_return_processor *crp = ts->crp; in __thread_stack__flush() local 343 if (!crp) { in __thread_stack__flush() 443 if (ts->crp || !callstack) in thread_stack__event() [all …]
|
D | thread-stack.h | 103 void call_return_processor__free(struct call_return_processor *crp); 108 struct call_return_processor *crp);
|
D | db-export.c | 32 call_return_processor__free(dbe->crp); in db_export__exit() 33 dbe->crp = NULL; in db_export__exit() 397 if (dbe->crp) { in db_export__sample() 400 dbe->crp); in db_export__sample()
|
D | db-export.h | 65 struct call_return_processor *crp; member
|
/linux-6.1.9/arch/m68k/sun3/ |
D | mmu_emu.c | 358 pgd_t * crp; in mmu_emu_handle_fault() local 361 crp = swapper_pg_dir; in mmu_emu_handle_fault() 366 crp = swapper_pg_dir; in mmu_emu_handle_fault() 368 crp = current->mm->pgd; in mmu_emu_handle_fault() 373 read_flag ? "read" : "write", crp); in mmu_emu_handle_fault() 383 pte = (pte_t *) pgd_val (*(crp + segment)); in mmu_emu_handle_fault() 419 pr_info("seg:%ld crp:%p ->", get_fs().seg, crp); in mmu_emu_handle_fault()
|
/linux-6.1.9/arch/mips/kernel/ |
D | irq_txx9.c | 103 u32 __iomem *crp; in txx9_irq_set_type() local 117 crp = &txx9_ircptr->cr[(unsigned int)irq_nr / 8]; in txx9_irq_set_type() 118 cr = __raw_readl(crp); in txx9_irq_set_type() 122 __raw_writel(cr, crp); in txx9_irq_set_type()
|
/linux-6.1.9/fs/nfsd/ |
D | nfs4recover.c | 174 struct nfs4_client_reclaim *crp; in __nfsd4_create_reclaim_record_grace() local 183 crp = nfs4_client_to_reclaim(name, princhash, nn); in __nfsd4_create_reclaim_record_grace() 184 if (!crp) { in __nfsd4_create_reclaim_record_grace() 188 crp->cr_clp = clp; in __nfsd4_create_reclaim_record_grace() 369 struct nfs4_client_reclaim *crp; in __nfsd4_remove_reclaim_record_grace() local 378 crp = nfsd4_find_reclaim_client(name, nn); in __nfsd4_remove_reclaim_record_grace() 380 if (crp) in __nfsd4_remove_reclaim_record_grace() 381 nfs4_remove_reclaim_record(crp, nn); in __nfsd4_remove_reclaim_record_grace() 679 struct nfs4_client_reclaim *crp; in nfsd4_check_legacy_client() local 701 crp = nfsd4_find_reclaim_client(name, nn); in nfsd4_check_legacy_client() [all …]
|
D | nfs4state.c | 7814 struct nfs4_client_reclaim *crp; in nfs4_has_reclaimed_state() local 7816 crp = nfsd4_find_reclaim_client(name, nn); in nfs4_has_reclaimed_state() 7817 return (crp && crp->cr_clp); in nfs4_has_reclaimed_state() 7831 struct nfs4_client_reclaim *crp; in nfs4_client_to_reclaim() local 7833 crp = alloc_reclaim(); in nfs4_client_to_reclaim() 7834 if (crp) { in nfs4_client_to_reclaim() 7836 INIT_LIST_HEAD(&crp->cr_strhash); in nfs4_client_to_reclaim() 7837 list_add(&crp->cr_strhash, &nn->reclaim_str_hashtbl[strhashval]); in nfs4_client_to_reclaim() 7838 crp->cr_name.data = name.data; in nfs4_client_to_reclaim() 7839 crp->cr_name.len = name.len; in nfs4_client_to_reclaim() [all …]
|
/linux-6.1.9/drivers/pinctrl/renesas/ |
D | core.c | 201 const struct pinmux_cfg_reg *crp, in sh_pfc_config_reg_helper() argument 208 *mapped_regp = sh_pfc_phys_to_virt(pfc, crp->reg); in sh_pfc_config_reg_helper() 210 if (crp->field_width) { in sh_pfc_config_reg_helper() 211 *maskp = (1 << crp->field_width) - 1; in sh_pfc_config_reg_helper() 212 *posp = crp->reg_width - ((in_pos + 1) * crp->field_width); in sh_pfc_config_reg_helper() 214 *maskp = (1 << crp->var_field_width[in_pos]) - 1; in sh_pfc_config_reg_helper() 215 *posp = crp->reg_width; in sh_pfc_config_reg_helper() 217 *posp -= abs(crp->var_field_width[k]); in sh_pfc_config_reg_helper() 222 const struct pinmux_cfg_reg *crp, in sh_pfc_write_config_reg() argument 229 sh_pfc_config_reg_helper(pfc, crp, field, &mapped_reg, &mask, &pos); in sh_pfc_write_config_reg() [all …]
|
/linux-6.1.9/arch/m68k/include/asm/ |
D | mmu_context.h | 234 unsigned long crp[2] = { in switch_mm_0230() local 260 : : "m" (crp[0])); in switch_mm_0230()
|
D | processor.h | 108 unsigned long crp[2]; /* cpu root pointer */ member
|
/linux-6.1.9/arch/m68k/kernel/ |
D | asm-offsets.c | 35 DEFINE(THREAD_CRP, offsetof(struct thread_struct, crp)); in main()
|
/linux-6.1.9/tools/perf/util/scripting-engines/ |
D | trace-event-python.c | 1781 tables->dbe.crp = NULL; in set_table_handlers() 1791 tables->dbe.crp = in set_table_handlers() 1794 if (!tables->dbe.crp) in set_table_handlers() 1816 if (tables->dbe.crp) in set_table_handlers() 1817 tables->dbe.cpr = tables->dbe.crp->cpr; in set_table_handlers()
|
/linux-6.1.9/lib/zstd/compress/ |
D | zstd_compress.c | 1487 const ZSTD_compResetPolicy_e crp, in ZSTD_reset_matchState() argument 1518 DEBUGLOG(4, "reset table : %u", crp!=ZSTDcrp_leaveDirty); in ZSTD_reset_matchState() 1519 if (crp!=ZSTDcrp_leaveDirty) { in ZSTD_reset_matchState() 1561 ZSTD_compResetPolicy_e const crp, in ZSTD_resetCCtx_internal() argument 1691 crp, in ZSTD_resetCCtx_internal()
|
/linux-6.1.9/arch/powerpc/lib/ |
D | sstep.c | 58 unsigned int *crp);
|